diff --git a/Craps/craps.go b/Craps/craps.go index 632a250..bf2456b 100644 --- a/Craps/craps.go +++ b/Craps/craps.go @@ -58,7 +58,7 @@ func PlayCraps(bet int, firstSum int, secondSum int) { } func isWinner(firstSum int, secondSum int) bool { - if (!((firstSum >= 2 && firstSum <= 12) && (secondSum >= 2 && firstSum <= 12))){ + if (!((firstSum >= 2 && firstSum <= 12) && (secondSum >= 2 && secondSum <= 12))){ panic("first and second sum should be from 2 to 12") } diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index f260699..0000000 --- a/Dockerfile +++ /dev/null @@ -1,60 +0,0 @@ -ARG FROSTFS_HUB_IMAGE=truecloudlab/frostfs -ARG NEOGO_HUB_IMAGE=nspccdev/neo-go - -ARG FROSTFS_CORE_TAG=0.36.0 -ARG FROSTFS_GATES_TAG=0.27.0 -ARG NEOGO_TAG=0.101.1 - -FROM ${NEOGO_HUB_IMAGE}:${NEOGO_TAG} as neo-go -FROM ${FROSTFS_HUB_IMAGE}-adm:${FROSTFS_CORE_TAG} as frostfs-adm -FROM ${FROSTFS_HUB_IMAGE}-cli:${FROSTFS_CORE_TAG} as frostfs-cli -FROM ${FROSTFS_HUB_IMAGE}-ir:${FROSTFS_CORE_TAG} as frostfs-ir -FROM ${FROSTFS_HUB_IMAGE}-storage:${FROSTFS_CORE_TAG} as frostfs-storage -FROM ${FROSTFS_HUB_IMAGE}-s3-gw:${FROSTFS_GATES_TAG} as frostfs-s3-gw -FROM ${FROSTFS_HUB_IMAGE}-http-gw:${FROSTFS_GATES_TAG} as frostfs-http-gw - -# Executable image -FROM alpine AS frostfs-aio -RUN apk add --no-cache \ - bash \ - ca-certificates \ - jq \ - expect \ - iputils \ - curl - -WORKDIR / - -COPY --from=neo-go /usr/bin/neo-go /usr/bin/neo-go -COPY --from=frostfs-adm /bin/frostfs-adm /usr/bin/frostfs-adm -COPY --from=frostfs-cli /bin/frostfs-cli /usr/bin/frostfs-cli -COPY --from=frostfs-ir /bin/frostfs-ir /usr/bin/frostfs-ir -COPY --from=frostfs-storage /bin/frostfs-node /usr/bin/frostfs-node -COPY --from=frostfs-s3-gw /bin/frostfs-s3-gw /usr/bin/frostfs-s3-gw -COPY --from=frostfs-s3-gw /bin/frostfs-s3-authmate /usr/bin/frostfs-s3-authmate -COPY --from=frostfs-http-gw /bin/frostfs-http-gw /usr/bin/frostfs-http-gw - -COPY ./adm/frostfs-adm.yml /config/frostfs-adm.yml -COPY ./ir/cli-cfg.yaml /config/cli-cfg-ir.yaml -COPY ./ir/config.yaml /config/config-ir.yaml -COPY ./morph/protocol.privnet.yml /config/protocol.privnet.yml -COPY ./morph/node-wallet.json /config/alphabet/az.json -COPY ./morph/node-wallet.json /config/node-wallet.json -COPY ./morph/node-config.yaml /config/node-config.yaml -COPY ./http-gw/http-gw-config.yaml /config/http-gw-config.yaml -COPY ./http-gw/http-gw-wallet.json /config/http-gw-wallet.json -COPY ./s3-gw/rules.json /config/bearer-rules.json -COPY ./s3-gw/s3-gw-config.yaml /config/s3-gw-config.yaml -COPY ./s3-gw/s3-gw-wallet.json /config/s3-gw-wallet.json -COPY ./s3-gw/user-wallet.json /config/user-wallet.json -COPY ./sn/cli-cfg.yaml /config/cli-cfg-sn.yaml -COPY ./sn/wallet.json /config/wallet-sn.json -COPY ./sn/config.yaml /config/config-sn.yaml -COPY ./vendor/locode_db /config/locode.db -COPY ./vendor/contracts/ /config/contracts - -COPY ./bin/init-aio.sh /config/bin/init-aio.sh - -ENV AUTHMATE_WALLET_PASSPHRASE="" - -ENTRYPOINT ["/config/bin/init-aio.sh"] diff --git a/Dockerfile.local b/Dockerfile.local deleted file mode 100644 index 4d403a9..0000000 --- a/Dockerfile.local +++ /dev/null @@ -1,45 +0,0 @@ -# Executable image -FROM alpine AS frostfs-aio -RUN apk add --no-cache \ - bash \ - ca-certificates \ - jq \ - expect \ - iputils \ - curl - -WORKDIR / - -COPY ./bin/neo-go /usr/bin/neo-go -COPY ./bin/frostfs-adm /usr/bin/frostfs-adm -COPY ./bin/frostfs-cli /usr/bin/frostfs-cli -COPY ./bin/frostfs-ir /usr/bin/frostfs-ir -COPY ./bin/frostfs-node /usr/bin/frostfs-node -COPY ./bin/frostfs-s3-gw /usr/bin/frostfs-s3-gw -COPY ./bin/frostfs-s3-authmate /usr/bin/frostfs-s3-authmate -COPY ./bin/frostfs-http-gw /usr/bin/frostfs-http-gw - -COPY ./adm/frostfs-adm.yml /config/frostfs-adm.yml -COPY ./ir/cli-cfg.yaml /config/cli-cfg-ir.yaml -COPY ./ir/config.yaml /config/config-ir.yaml -COPY ./morph/protocol.privnet.yml /config/protocol.privnet.yml -COPY ./morph/node-wallet.json /config/alphabet/az.json -COPY ./morph/node-wallet.json /config/node-wallet.json -COPY ./morph/node-config.yaml /config/node-config.yaml -COPY ./http-gw/http-gw-config.yaml /config/http-gw-config.yaml -COPY ./http-gw/http-gw-wallet.json /config/http-gw-wallet.json -COPY ./s3-gw/rules.json /config/bearer-rules.json -COPY ./s3-gw/s3-gw-config.yaml /config/s3-gw-config.yaml -COPY ./s3-gw/s3-gw-wallet.json /config/s3-gw-wallet.json -COPY ./s3-gw/user-wallet.json /config/user-wallet.json -COPY ./sn/cli-cfg.yaml /config/cli-cfg-sn.yaml -COPY ./sn/wallet.json /config/wallet-sn.json -COPY ./sn/config.yaml /config/config-sn.yaml -COPY ./vendor/locode_db /config/locode.db -COPY ./vendor/contracts/ /config/contracts - -COPY ./bin/init-aio.sh /config/bin/init-aio.sh - -ENV AUTHMATE_WALLET_PASSPHRASE="" - -ENTRYPOINT ["/config/bin/init-aio.sh"] diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f288702..0000000 --- a/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/Makefile b/Makefile deleted file mode 100644 index 53ef6de..0000000 --- a/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -#!/usr/bin/make -f - -include .env -include help.mk - -# Common variables -REPO=$(notdir $(shell pwd)) -VERSION ?= "$(shell git describe --tags --match "v*" 2>/dev/null || git rev-parse --short HEAD | sed 's/^v//')" - -# Variables for docker -NEOGO_HUB_IMAGE ?= "nspccdev/neo-go" -NEOGO_HUB_TAG ?= "0.101.1" -FROSTFS_HUB_IMAGE ?= "truecloudlab/frostfs" -FROSTFS_CORE_TAG ?= "0.36.0" -FROSTFS_GATES_TAG ?= "0.27.0" -AIO_IMAGE ?= "truecloudlab/frostfs-aio" - -# Variables for compose -COMPOSE_CMD_UP ?= docker-compose up -d -COMPOSE_CMD_DOWN ?= docker-compose down - -COMPOSE_V2 = "$(shell docker compose version --short | grep -q '^2' && echo true)" -ifeq ($(COMPOSE_V2), "true") - COMPOSE_CMD_UP = docker compose up -d --wait - COMPOSE_CMD_DOWN = docker compose down -endif - -# Variables for S3 -S3_BEARER_RULES ?= "/config/bearer-rules.json" -S3_GATE_PUBLIC_KEY ?= "0312fe65b101565de74eedf477afb43417ff5f795732506cfddc8e044c5a030d76" - -# Build aio Docker image -image-aio: - @echo "⇒ Build aio docker image" - @docker build \ - --rm \ - --build-arg FROSTFS_HUB_IMAGE=$(FROSTFS_HUB_IMAGE) \ - --build-arg FROSTFS_CORE_TAG=$(FROSTFS_CORE_TAG) \ - --build-arg FROSTFS_GATES_TAG=$(FROSTFS_GATES_TAG) \ - --build-arg NEOGO_HUB_IMAGE=$(NEOGO_HUB_IMAGE) \ - --build-arg NEOGO_TAG=$(NEOGO_HUB_TAG) \ - -f Dockerfile \ - -t $(AIO_IMAGE):$(AIO_VERSION) . - -# Build aio Docker image from all local pre-built binaries -image-aio-local: - @echo "⇒ Build aio docker image from all local pre-built binaries" - @docker build \ - --rm \ - -f Dockerfile.local \ - -t $(AIO_IMAGE):$(AIO_VERSION) . - -# Start AIO -up: - @$(COMPOSE_CMD_UP) - -# Stop AIO -down: - @$(COMPOSE_CMD_DOWN) - -# Clean up -clean: - @$(COMPOSE_CMD_DOWN) --volumes - -# Generate S3 credentials -s3cred: - @docker exec aio /usr/bin/frostfs-s3-authmate issue-secret \ - --wallet /config/user-wallet.json \ - --peer localhost:8080 \ - --gate-public-key $(S3_GATE_PUBLIC_KEY) \ - --container-placement-policy "REP 1" \ - --bearer-rules $(S3_BEARER_RULES) - -# Generate S3 credentials based on imported wallets -s3cred-custom: - @docker exec aio /usr/bin/frostfs-s3-authmate issue-secret \ - --wallet /wallets/$(wallet) \ - --peer localhost:8080 \ - --gate-public-key $(S3_GATE_PUBLIC_KEY) \ - --container-placement-policy "REP 1" \ - --bearer-rules $(S3_BEARER_RULES) - -# Tick new epoch in side chain -tick.epoch: - @docker exec aio /usr/bin/frostfs-adm --config /config/frostfs-adm.yml morph force-new-epoch - -# Show current version -version: - @echo $(VERSION) - @echo "frostfs-node: $(AIO_VERSION)" - @echo "neo-go: $(NEOGO_VERSION)" diff --git a/README.md b/README.md deleted file mode 100644 index c92e367..0000000 --- a/README.md +++ /dev/null @@ -1,316 +0,0 @@ -# FrostFS All-in-One - -This repository contains Dockerfile for FrostFS All-in-One image and helper -scripts to start container. All-in-One image contains binaries and config -files for: -- neo-go -- frostfs-ir -- frostfs-storage -- frostfs-cli -- frostfs-adm -- frostfs-s3-gw -- frostfs-s3-authmate -- frostfs-http-gw - -Entrypoint script starts blockchain, inner ring, storage, s3, and http gateway -services and configures it in the initial start. - -| Service | Port | -|-----------------------------|-------| -| neo-go RPC | 30333 | -| FrostFS Storage gRPC API | 8080 | -| FrostFS Storage Control API | 16513 | -| FrostFS HTTP Gateway | 8081 | -| FrostFS S3 Gateway | 8084 | - -# Limitations - -All-in-One image contains single storage node, so the only viable policy for -containers is `REP 1`. - - -# Prerequisites - -- docker v20.10 or higher -- docker-compose v2.10 or higher -- make v3.82 or higher - -> Makefile script runs docker-compose with `--wait` flag, which is introduced in -> docker-compose v2. You can use older version of docker-compose by executing it -> manually. - -# Quick Start - -Clone repository and start container with docker-compose. - -``` sh -$ git clone https://git.frostfs.info/TrueCloudLab/frostfs-aio.git -$ cd frostfs-aio -$ make up tick.epoch -``` - -Initial start initializes the storage configuration. Its readiness is based -on a healthcheck done by `docker-compose`. - -Container can be stopped with: - -``` sh -$ make down -``` - -Data and the system configuration is stored in container's volume. -Next time container is started, it will take less time to initialize. - -Before updating image version, reset `frostfs-aio` by clearing its local volume -before starting container. - -``` -$ make clean -``` - -Also, you may have to make sure the storage node is in the network map. - -``` sh -$ docker exec -ti aio frostfs-cli netmap snapshot -c /config/cli-cfg-sn.yaml --rpc-endpoint 127.0.0.1:8080 -Epoch: 45 -Node 1: 022bb4041c50d607ff871dec7e4cd7778388e0ea6849d84ccbd9aa8f32e16a8131 ONLINE /dns4/localhost/tcp/8080 - Continent: Europe - Country: Germany - CountryCode: DE - Deployed: Private - Location: Falkenstein - Price: 10 - SubDiv: Sachsen - SubDivCode: SN - UN-LOCODE: DE FKS -``` - -If you don't see the output like this, you can wait for the new Epoch to come -or force the starting of new epoch. - -``` sh -$ make tick.epoch -Current epoch: 1, increase to 2. -Waiting for transactions to persist... -``` - -# Build images - -## Standard image - -Build frostfs-aio image with this command. - -``` sh -$ make image-aio -``` - -## Image with local binaries - -Put all the needed pre-built binaries to the `frostfs-aio/bin/`: - -- neo-go -- frostfs-adm -- frostfs-cli -- frostfs-ir -- frostfs-node -- frostfs-s3-gw -- frostfs-s3-authmate -- frostfs-http-gw - -Make sure they all have the `x` right for the execution enabled. -Build frostfs-aio image using pre-built local binaries for all the services. - -``` sh -$ make image-aio-local -``` - - -# Simple storage - - -## S3 interface - -### Setup S3 - -As soon as the storage node is in the network map (see above) you can generate S3 -credentials: - -``` sh -$ make s3cred -{ - "access_key_id": "EXArWh8x1zeHG3851s1RtoCo7dowxF6rhLGA15nbMffT0AKRSjJ5fmcqf3Ht2VCAkfmPQUVARghRB77xHCA1BoN2p", - "secret_access_key": "d70c1dba83f0f90bb231f06f1ce0e0dfbcfb122f4b4345a3c18d3869c359b79f", - "owner_private_key": "140947599afd9ca89af4b358c3176eb046e554d942a0dc99a8e06f3e43c8f4ad", - "wallet_public_key": "0324e76288fcb900100d01802a14ef977cca45ad073561230446df14b344c858b6", - "container_id": "EXArWh8x1zeHG3851s1RtoCo7dowxF6rhLGA15nbMffT" -} -``` - -Now let's configure an S3 client (AWS CLI will be used as example): - -``` sh -$ aws configure -AWS Access Key ID []: EXArWh8x1zeHG3851s1RtoCo7dowxF6rhLGA15nbMffT0AKRSjJ5fmcqf3Ht2VCAkfmPQUVARghRB77xHCA1BoN2p -AWS Secret Access Key []: d70c1dba83f0f90bb231f06f1ce0e0dfbcfb122f4b4345a3c18d3869c359b79f -Default region name []: us-east-1 -Default output format []: json -``` - -### Create a container - -``` sh -$ aws s3api --endpoint http://localhost:8084 create-bucket --bucket koty --acl public-read-write -``` - -### Put an object - -``` sh -$ aws s3api --endpoint http://localhost:8084 put-object --bucket koty --key kot --body cat.jpg -{ - "ETag": "8677919550a90ff7106584285f25a70ac9e7aa38bdb4ed17d34bbfb366fd71b7" -} -``` - -### List objects - -``` sh -$ aws s3api --endpoint http://localhost:8084 list-objects --bucket koty -{ - "Contents": [ - { - "Key": "kot", - "LastModified": "2023-02-17T15:01:52+00:00", - "ETag": "8677919550a90ff7106584285f25a70ac9e7aa38bdb4ed17d34bbfb366fd71b7", - "Size": 174512, - "Owner": { - "DisplayName": "NWeByJPgNC97F83hTUnSbnZSBKaFvk5HNw", - "ID": "NWeByJPgNC97F83hTUnSbnZSBKaFvk5HNw" - } - } - ] -} -``` - -### S3 credentials from custom wallets - -Credentials made by `make s3cred` command are based on the private key from -`s3-gw/user-wallet.json` file. If you need to create credential for different -users, use wallets from `wallets` dir. - -```sh -$ make s3cred-custom wallet=wallet2.json -{ - "access_key_id": "jHhL5B33o16R4jQsb8wm9A3RRdS6KrTB5N4bja9Jys904W7xXFNKqem2ACvTRWRYJsZMCUikYFSokN7pPJziWyDi", - "secret_access_key": "21bb64fafa32c82417fd8b97ac56cc8a085998a3852632d52fe7042453daa440", - "owner_private_key": "10f6f9d7a47bb0bf68363ad8a99fe69f1493f8b6e1665b3e4e83feb2d5c7ee39", - "wallet_public_key": "03e38759973a6bb722baabc2dd84036a39f0b2f53d32fec45a4dacde8a50fe4b70", - "container_id": "jHhL5B33o16R4jQsb8wm9A3RRdS6KrTB5N4bja9Jys9" -} -``` - -To get credentials from custom wallet, place it in `wallets` dir before start. -Make sure that wallet account has empty password. - -### Making a custom wallet - -Command line interface of `neo-go` is used to create new wallets. Both `neo-go` -from the image or [downloaded binary](https://github.com/nspcc-dev/neo-go/releases) -can be used. We stick to the one in the image in this example. - -Invoke a shell of the running container: -```bash -$ docker exec -it aio bash -``` - -Create a new wallet: - -```bash -$ neo-go wallet init -a --wallet /wallets/new-wallet.json -``` - -- key `-a` means the new wallet must have an account. -- key `--wallet /wallets/new-wallet.json` sets the outputh path for the new wallet. -The image keeps wallets at `/wallets` for simplicity. - -Then `neo-go` asks for the account name and its password using interactive -mode. Leave the password empty. - -```bash -Enter the name of the account > Some Name -Enter new password > -Confirm password > -``` - -If everything is rigth, the stdout will show a pretty-printed contents of the wallet: -```bash -{ - "version": "1.0", - "accounts": [ - { - "address": "NapWfRshCv9T3UyGxSfPr6NKiTFa5sVwQx", - "key": "6PYKKPtBRuKvTqjAuUZk5hVDgG5aZ3HQvp1hSQg5jDyUF9JaP5Jcy3kWiV", - "label": "Some Name", - "contract": { - "script": "DCECGXJggQTMyMhYS9YtWzTP+3FbiGLn2h7za1zSNgMDkIxBVuezJw==", - "parameters": [ - { - "name": "parameter0", - "type": "Signature" - } - ], - "deployed": false - }, - "lock": false, - "isDefault": false - } - ], - "scrypt": { - "n": 16384, - "r": 8, - "p": 8 - }, - "extra": { - "Tokens": null - } - } - -wallet successfully created, file location is /wallets/new-wallet.json -``` - - -## frostfs-cli interface - -### Create container with frostfs-cli - -``` sh -$ frostfs-cli -r localhost:8080 -w /config/user-wallet.json \ - --address NWeByJPgNC97F83hTUnSbnZSBKaFvk5HNw \ - container create \ - --policy "REP 1" --basic-acl public-read-write --await -container ID: GfWw35kHds7gKWmSvW7Zi4U39K7NMLK8EfXBQ5FPJA46 -awaiting... -container has been persisted on sidechain -``` - -### Put an object with frostfs-cli - -``` sh -$ frostfs-cli -r localhost:8080 -w /config/user-wallet.json \ - --address NWeByJPgNC97F83hTUnSbnZSBKaFvk5HNw \ - object put \ - --cid GfWw35kHds7gKWmSvW7Zi4U39K7NMLK8EfXBQ5FPJA46 \ - --file cat.jpg -[cat.jpg] Object successfully stored - OID: HByVC9A34i22BnzW3n83z9vEMxuYZoC7nNu11ZvGeCTe - CID: GfWw35kHds7gKWmSvW7Zi4U39K7NMLK8EfXBQ5FPJA46 -``` - -### Get and object with frostfs-cli - -``` sh -$ frostfs-cli -r localhost:8080 -w /config/user-wallet.json \ - --address NWeByJPgNC97F83hTUnSbnZSBKaFvk5HNw \ - object get \ - --cid GfWw35kHds7gKWmSvW7Zi4U39K7NMLK8EfXBQ5FPJA46 \ - --oid HByVC9A34i22BnzW3n83z9vEMxuYZoC7nNu11ZvGeCTe > new_cat.jpg -``` diff --git a/adm/frostfs-adm.yml b/adm/frostfs-adm.yml deleted file mode 100644 index b053cbf..0000000 --- a/adm/frostfs-adm.yml +++ /dev/null @@ -1,16 +0,0 @@ -rpc-endpoint: http://localhost:30333 -alphabet-wallets: /config/alphabet/ -network: - max_object_size: 67108864 - epoch_duration: 240 - basic_income_rate: 0 - homomorphic_hash_disabled: false - fee: - audit: 10000 - candidate: 10000000000 - container: 0 - container_alias: 0 - withdraw: 100000000 -credentials: - az: "one" - contract: "one" diff --git a/bin/init-aio.sh b/bin/init-aio.sh deleted file mode 100755 index 095f26f..0000000 --- a/bin/init-aio.sh +++ /dev/null @@ -1,71 +0,0 @@ -#!/bin/bash - -stage() { - echo "================================================================================" - echo "$@" - echo "================================================================================" -} - -die() { - echo "$@" 1>&2 - exit 1 -} - -runBlockchain() { - stage "Starting the blockchain" - - /usr/bin/neo-go node --config-path /config --privnet & - - while [[ "$(curl -s -o /dev/null -w %{http_code} localhost:30333)" != "422" ]]; - do - sleep 2; - done -} - -configure() { - stage "Configuring the blockchain" - - /usr/bin/frostfs-adm morph init --config /config/frostfs-adm.yml --contracts /config/contracts || die "Failed to initialize Alphabet wallets" - - /usr/bin/frostfs-adm morph refill-gas --config /config/frostfs-adm.yml --storage-wallet /config/wallet-sn.json --gas 10.0 || die "Failed to transfer GAS to alphabet wallets" -} - -runServices() { - stage "Running services" - - /usr/bin/frostfs-ir --config /config/config-ir.yaml & - - while [[ -z "$(/usr/bin/frostfs-cli control healthcheck --ir --endpoint localhost:16512 -c /config/cli-cfg-ir.yaml | grep 'Health status: READY')" ]]; - do - sleep 2; - done - - set -m - /usr/bin/frostfs-node --config /config/config-sn.yaml & - - while [[ -z "$(/usr/bin/frostfs-cli control healthcheck --endpoint localhost:16513 -c /config/cli-cfg-sn.yaml | grep 'Health status: READY')" ]]; - do - sleep 2 - done - - while [[ -z "$(/usr/bin/frostfs-cli control healthcheck --endpoint localhost:16513 -c /config/cli-cfg-sn.yaml | grep 'Network status: ONLINE')" ]]; - do - /usr/bin/frostfs-adm morph force-new-epoch --config /config/frostfs-adm.yml || die "Failed to update epoch" - sleep 2 - done - - /usr/bin/frostfs-s3-gw --config /config/s3-gw-config.yaml & - /usr/bin/frostfs-http-gw --config /config/http-gw-config.yaml & -} - - -if [ ! -e "/data/chain/morph.bolt" ]; -then - runBlockchain - configure -else - runBlockchain -fi -runServices -stage "aio container started" -fg diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index b803fd0..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- - -version: "2.4" -services: - aio: - image: ${AIO_IMAGE}:${AIO_VERSION} - container_name: aio - domainname: frostfs - hostname: aio - restart: always - stop_signal: SIGKILL - healthcheck: - test: curl --fail http://localhost:8083 - interval: 2s - retries: 100 - start_period: 2s - timeout: 2s - volumes: - - data:/data - - ./wallets:/wallets - ports: - - "8081:8081" # HTTP Gateway - - "30333:30333" # RPC - - "8080:8080" # FrostFS API RPC - - "8084:8084" # S3 Gateway - - "16513:16513" # Control service - -volumes: - data: diff --git a/help.mk b/help.mk deleted file mode 100644 index 2796501..0000000 --- a/help.mk +++ /dev/null @@ -1,11 +0,0 @@ -.PHONY: help - -# Show this help prompt -help: - @echo ' Usage:' - @echo '' - @echo ' make ' - @echo '' - @echo ' Targets:' - @echo '' - @awk '/^#/{ comment = substr($$0,3) } comment && /^[a-zA-Z][a-zA-Z0-9.%_/-]+ ?:/{ print " ", $$1, comment }' $(MAKEFILE_LIST) | column -t -s ':' | grep -v 'IGNORE' | sort -u diff --git a/http-gw/http-gw-config.yaml b/http-gw/http-gw-config.yaml deleted file mode 100644 index 105236b..0000000 --- a/http-gw/http-gw-config.yaml +++ /dev/null @@ -1,36 +0,0 @@ -logger: - level: debug - -rebalance_timer: 5m # Interval to check nodes health - -connect_timeout: 60s # Timeout to dial node - -request_timeout: 300s # Timeout to check node health during rebalance - -# The order in which resolvers are used to find an container id by name -resolve_order: - - nns - -server: - - address: 0.0.0.0:8081 - -pprof: - enabled: false # Enable pprof. - address: localhost:8082 -prometheus: - enabled: true # Enable metrics. - address: localhost:8083 - -# Wallet settings -wallet: - path: /config/http-gw-wallet.json # Path to wallet - address: NMUTD9nsxSf3KM2pTHaqwjq67Lv7GdG3oG - passphrase: one # Passphrase to decrypt wallet - -peers: - 0: - address: grpc://localhost:8080 - priority: 1 - weight: 1 - -rpc_endpoint: http://localhost:30333 diff --git a/http-gw/http-gw-wallet.json b/http-gw/http-gw-wallet.json deleted file mode 100644 index b2cc76e..0000000 --- a/http-gw/http-gw-wallet.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": "1.0", - "accounts": - [ - { - "address": "NMUTD9nsxSf3KM2pTHaqwjq67Lv7GdG3oG", - "key": "6PYNwfes95HfJW1VAtiaR1MRi24UU8NTGbb6t2MSUeehQk8NvYY3oshDym", - "label": "", - "contract": - { - "script": "DCECXLyJu9NhUvi9GzPXiePKZw8jT1zGH5SWzE1TdYwIr79BVuezJw==", - "parameters": - [ - { - "name": "parameter0", - "type": "Signature" - } - ], - "deployed": false - }, - "lock": false, - "isDefault": false - } - ], - "scrypt": - { - "n": 16384, - "r": 8, - "p": 8 - }, - "extra": - { - "Tokens": null - } -} \ No newline at end of file diff --git a/ir/cli-cfg.yaml b/ir/cli-cfg.yaml deleted file mode 100644 index 4b87242..0000000 --- a/ir/cli-cfg.yaml +++ /dev/null @@ -1,2 +0,0 @@ -wallet: /config/node-wallet.json -password: "one" diff --git a/ir/config.yaml b/ir/config.yaml deleted file mode 100644 index e94c6bb..0000000 --- a/ir/config.yaml +++ /dev/null @@ -1,63 +0,0 @@ -wallet: - path: /config/node-wallet.json - address: Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn - password: 'one' - -without_mainnet: true - -morph: - endpoint: - client: - - address: ws://localhost:30333/ws - validators: 02b3622bf4017bdfe317c58aed5f4c753f206b7db896046fa7d774bbc4bf7f8dc2 - -timers: - emit: 50 - stop_estimation: - mul: 1 - div: 4 - collect_basic_income: - mul: 1 - div: 2 - distribute_basic_income: - mul: 3 - div: 4 - -emit: - storage: - amount: 400000000 - -audit: - pdp: - max_sleep_interval: 100ms - -netmap_cleaner: - enabled: true - threshold: 3 - -locode: - db: - path: /config/locode.db - -workers: - netmap: 100 - balance: 100 - frostfs: 100 - container: 100 - alphabet: 100 - reputation: 100 - -logger: - level: info - -pprof: - enabled: false - address: localhost:6661 - -prometheus: - enabled: false - address: localhost:6662 - -control: - grpc: - endpoint: localhost:16512 diff --git a/log.log b/log.log deleted file mode 100644 index 1d726c4..0000000 --- a/log.log +++ /dev/null @@ -1,63920 +0,0 @@ -2023-12-15T14:12:09.920Z INFO initial gas supply is not set or wrong, setting default value {"InitialGASSupply": "52000000"} -2023-12-15T14:12:09.920Z INFO P2PNotaryRequestPayloadPool size is not set or wrong, setting default value {"P2PNotaryRequestPayloadPoolSize": 1000} -2023-12-15T14:12:09.920Z INFO MaxBlockSize is not set or wrong, setting default value {"MaxBlockSize": 262144} -2023-12-15T14:12:09.920Z INFO MaxBlockSystemFee is not set or wrong, setting default value {"MaxBlockSystemFee": 900000000000} -2023-12-15T14:12:09.920Z INFO MaxTransactionsPerBlock is not set or wrong, using default value {"MaxTransactionsPerBlock": 512} -2023-12-15T14:12:09.920Z INFO MaxValidUntilBlockIncrement is not set or wrong, using default value {"MaxValidUntilBlockIncrement": 86400} -2023-12-15T14:12:09.920Z INFO NativeActivations are not set, using default values -2023-12-15T14:12:09.920Z INFO Hardforks are not set, using default value -2023-12-15T14:12:09.925Z INFO no storage version found! creating genesis block -2023-12-15T14:12:09.927Z INFO starting service {"service": "Prometheus", "endpoint": ":20001"} -2023-12-15T14:12:09.927Z INFO service hasn't started since it's disabled {"service": "Pprof"} -2023-12-15T14:12:09.927Z INFO ExtensiblePoolSize is not set or wrong, using default value {"ExtensiblePoolSize": 20} -2023-12-15T14:12:10.847Z INFO SessionExpirationTime is not set or wrong, setting default value {"SessionExpirationTime": 1} -2023-12-15T14:12:10.847Z INFO SessionPoolSize is not set or wrong, setting default value {"SessionPoolSize": 20} -2023-12-15T14:12:10.847Z INFO MaxWebSocketClients is not set or wrong, setting default value {"MaxWebSocketClients": 64} -2023-12-15T14:12:10.847Z INFO starting rpc-server {"endpoint": ":30333"} -2023-12-15T14:12:10.848Z INFO node started {"blockHeight": 0, "headerHeight": 0} -2023-12-15T14:12:10.848Z INFO node reached synchronized state, starting services -2023-12-15T14:12:10.848Z INFO starting state validation service -2023-12-15T14:12:10.848Z INFO starting consensus service -2023-12-15T14:12:10.848Z INFO initializing dbft {"height": 1, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:10.848Z INFO sending PrepareRequest {"height": 1, "view": 0} -2023-12-15T14:12:10.848Z INFO sending Commit {"height": 1, "view": 0} -2023-12-15T14:12:10.849Z INFO approving block {"height": 1, "hash": "05d5344278200c2a9e3a7de3ac98cb8acc6738c4d49d3721de6ded6d7387a7b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c466e08bf64c0423f3e3c12211c844e5eee005d20cb94a6e5f4ec11a83b89f21"} -2023-12-15T14:12:10.849Z INFO starting notary service -2023-12-15T14:12:10.849Z INFO RPC server already started -2023-12-15T14:12:10.850Z INFO initializing dbft {"height": 2, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:10.933Z INFO persisted to disk {"blocks": 1, "keys": 117, "headerHeight": 1, "blockHeight": 1, "took": "5.963408ms"} -2023-12-15T14:12:11.850Z INFO sending PrepareRequest {"height": 2, "view": 0} -2023-12-15T14:12:11.850Z INFO sending Commit {"height": 2, "view": 0} -2023-12-15T14:12:11.851Z INFO approving block {"height": 2, "hash": "2539a2d149a4e2e060231eebf28c26b8aa6999979112fec5de60084c268b14e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05d5344278200c2a9e3a7de3ac98cb8acc6738c4d49d3721de6ded6d7387a7b8"} -2023-12-15T14:12:11.852Z INFO initializing dbft {"height": 3, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:11.877Z INFO Error encountered with rpc request {"code": -32602, "cause": "invalid method 'GET', please retry with 'POST'", "method": "", "params": "[]"} -2023-12-15T14:12:11.934Z INFO persisted to disk {"blocks": 1, "keys": 20, "headerHeight": 2, "blockHeight": 2, "took": "5.300368ms"} -2023-12-15T14:12:12.852Z INFO sending PrepareRequest {"height": 3, "view": 0} -2023-12-15T14:12:12.852Z INFO sending Commit {"height": 3, "view": 0} -2023-12-15T14:12:12.853Z INFO approving block {"height": 3, "hash": "34d4015ee5af113b566f0d55df300b2db5e86f82b995fcbbadc1a0ec7a51b571", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2539a2d149a4e2e060231eebf28c26b8aa6999979112fec5de60084c268b14e8"} -2023-12-15T14:12:12.854Z INFO initializing dbft {"height": 4, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:12.931Z INFO persisted to disk {"blocks": 1, "keys": 20, "headerHeight": 3, "blockHeight": 3, "took": "2.39267ms"} -2023-12-15T14:12:13.854Z INFO sending PrepareRequest {"height": 4, "view": 0} -2023-12-15T14:12:13.854Z INFO sending Commit {"height": 4, "view": 0} -2023-12-15T14:12:13.854Z INFO approving block {"height": 4, "hash": "80f6de66e29877da1ab59179f73f6b224ebef6cbc8cba399612486b7fb679209", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34d4015ee5af113b566f0d55df300b2db5e86f82b995fcbbadc1a0ec7a51b571"} -2023-12-15T14:12:13.856Z INFO initializing dbft {"height": 5, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:13.932Z INFO persisted to disk {"blocks": 1, "keys": 20, "headerHeight": 4, "blockHeight": 4, "took": "2.631623ms"} -2023-12-15T14:12:13.992Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[8a08497311d368771df3017e3442fa6f6dfe5b58484e48b4ba27d8d41a01ed57 Application]"} -2023-12-15T14:12:14.856Z INFO sending PrepareRequest {"height": 5, "view": 0} -2023-12-15T14:12:14.856Z INFO sending Commit {"height": 5, "view": 0} -2023-12-15T14:12:14.856Z INFO approving block {"height": 5, "hash": "e4628d418d4c4b78e116119445a07fe224a07d3da011d7e95d2196d032e017b2", "tx_count": 1, "merkle": "57ed011ad4d827bab4484e48585bfe6d6ffa42347e01f31d7768d3117349088a", "prev": "80f6de66e29877da1ab59179f73f6b224ebef6cbc8cba399612486b7fb679209"} -2023-12-15T14:12:14.857Z INFO initializing dbft {"height": 6, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:14.936Z INFO persisted to disk {"blocks": 1, "keys": 32, "headerHeight": 5, "blockHeight": 5, "took": "4.953288ms"} -2023-12-15T14:12:15.001Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[0872dcd16ee5b40b3f8ecf525fd19227b35c05418b9ef7ccdcbbf0f97928d4a4 Application]"} -2023-12-15T14:12:15.857Z INFO sending PrepareRequest {"height": 6, "view": 0} -2023-12-15T14:12:15.857Z INFO sending Commit {"height": 6, "view": 0} -2023-12-15T14:12:15.858Z INFO approving block {"height": 6, "hash": "d9a63278a4403cc35d95dd39ebc82f3b9127cd86f1bb0351f28dfc32d48748dd", "tx_count": 1, "merkle": "a4d42879f9f0bbdcccf79e8b41055cb32792d15f52cf8e3f0bb4e56ed1dc7208", "prev": "e4628d418d4c4b78e116119445a07fe224a07d3da011d7e95d2196d032e017b2"} -2023-12-15T14:12:15.859Z INFO initializing dbft {"height": 7, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:15.938Z INFO persisted to disk {"blocks": 1, "keys": 32, "headerHeight": 6, "blockHeight": 6, "took": "6.718878ms"} -2023-12-15T14:12:16.003Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[1]"} -2023-12-15T14:12:16.020Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[8caaa4b8ef8e4818c95223a8180672d9929cd7b11354680754e6910b121e2f88 Application]"} -2023-12-15T14:12:16.859Z INFO sending PrepareRequest {"height": 7, "view": 0} -2023-12-15T14:12:16.859Z INFO sending Commit {"height": 7, "view": 0} -2023-12-15T14:12:16.859Z INFO approving block {"height": 7, "hash": "6999f047340724e90facc2263e0fd71722abe8e0c7d6846eb938422f99e3a9dc", "tx_count": 1, "merkle": "882f1e120b91e65407685413b1d79c92d9720618a82352c918488eefb8a4aa8c", "prev": "d9a63278a4403cc35d95dd39ebc82f3b9127cd86f1bb0351f28dfc32d48748dd"} -2023-12-15T14:12:16.862Z INFO initializing dbft {"height": 8, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:16.937Z INFO persisted to disk {"blocks": 1, "keys": 46, "headerHeight": 7, "blockHeight": 7, "took": "4.900313ms"} -2023-12-15T14:12:17.033Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[403ec6d719e56e1ab123ac4090f4315e920c34b9]"} -2023-12-15T14:12:17.036Z INFO runtime log {"tx": "a3fcd735235c51f444a26267993e58e109b4c45c99a633ecc73dcc74d92d7b59", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "az contract initialized"} -2023-12-15T14:12:17.043Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[c17c56ac4b181e86621967e4684ad26ce1e10fd0]"} -2023-12-15T14:12:17.045Z INFO runtime log {"tx": "eb0898a46c250381fdfe5847640ccca5bef6b1bde69b206715f66dc5791da3dc", "script": "c17c56ac4b181e86621967e4684ad26ce1e10fd0", "msg": "audit contract initialized"} -2023-12-15T14:12:17.051Z INFO runtime log {"tx": "eb0898a46c250381fdfe5847640ccca5bef6b1bde69b206715f66dc5791da3dc", "script": "c17c56ac4b181e86621967e4684ad26ce1e10fd0", "msg": "audit contract initialized"} -2023-12-15T14:12:17.057Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[4ccb07a3dc2d2137f1b3fac6421b366792d9900a]"} -2023-12-15T14:12:17.060Z INFO runtime log {"tx": "d16f6a8f76dd0ddabb2f2e7c5282e7e4d470339e1f794f38c4afef1a9479f9af", "script": "4ccb07a3dc2d2137f1b3fac6421b366792d9900a", "msg": "balance contract initialized"} -2023-12-15T14:12:17.068Z INFO runtime log {"tx": "d16f6a8f76dd0ddabb2f2e7c5282e7e4d470339e1f794f38c4afef1a9479f9af", "script": "4ccb07a3dc2d2137f1b3fac6421b366792d9900a", "msg": "balance contract initialized"} -2023-12-15T14:12:17.077Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[b9dd888a52273883aa3ba7ab2b46847567bed0e6]"} -2023-12-15T14:12:17.085Z INFO runtime log {"tx": "b6d1ebb3cde53075bf892a00cd380c4e80dff99e0c654ebee4dcbb160e53ec8f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "container contract initialized"} -2023-12-15T14:12:17.097Z INFO runtime log {"tx": "b6d1ebb3cde53075bf892a00cd380c4e80dff99e0c654ebee4dcbb160e53ec8f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "container contract initialized"} -2023-12-15T14:12:17.110Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[30c3bdab6fc285a7b2489c2ba8af87a8013a1feb]"} -2023-12-15T14:12:17.112Z INFO runtime log {"tx": "a8471334965081b15c94ce5a506d61b8f6d8352741915c9ddd188d662d8e4db4", "script": "30c3bdab6fc285a7b2489c2ba8af87a8013a1feb", "msg": "frostfsid contract initialized"} -2023-12-15T14:12:17.118Z INFO runtime log {"tx": "a8471334965081b15c94ce5a506d61b8f6d8352741915c9ddd188d662d8e4db4", "script": "30c3bdab6fc285a7b2489c2ba8af87a8013a1feb", "msg": "frostfsid contract initialized"} -2023-12-15T14:12:17.125Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[a9dc350d936b140f93ecc85999e2392d915b8989]"} -2023-12-15T14:12:17.128Z INFO runtime log {"tx": "a2528eb182b186fbbd317094629a78b1ae5b93a642a45c1390bb32e700c71717", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "netmap contract initialized"} -2023-12-15T14:12:17.136Z INFO runtime log {"tx": "a2528eb182b186fbbd317094629a78b1ae5b93a642a45c1390bb32e700c71717", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "netmap contract initialized"} -2023-12-15T14:12:17.146Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[df5ef8ffcf46530d9c1de2d7e6e41eaa6500df9d]"} -2023-12-15T14:12:17.148Z INFO runtime log {"tx": "cf78ba88a6f1b6b690a2528d2543a82fc91858846e66621c75420b28f17e5366", "script": "df5ef8ffcf46530d9c1de2d7e6e41eaa6500df9d", "msg": "proxy contract initialized"} -2023-12-15T14:12:17.153Z INFO runtime log {"tx": "cf78ba88a6f1b6b690a2528d2543a82fc91858846e66621c75420b28f17e5366", "script": "df5ef8ffcf46530d9c1de2d7e6e41eaa6500df9d", "msg": "proxy contract initialized"} -2023-12-15T14:12:17.158Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[d400cd570fd03f231607e203893ab6c0820de918]"} -2023-12-15T14:12:17.160Z INFO runtime log {"tx": "5504ae2f47c04fa40460c56af9dcb46a98eab20589193254cd3e464d671a9148", "script": "d400cd570fd03f231607e203893ab6c0820de918", "msg": "reputation contract initialized"} -2023-12-15T14:12:17.166Z INFO runtime log {"tx": "5504ae2f47c04fa40460c56af9dcb46a98eab20589193254cd3e464d671a9148", "script": "d400cd570fd03f231607e203893ab6c0820de918", "msg": "reputation contract initialized"} -2023-12-15T14:12:17.173Z INFO Error encountered with rpc request {"code": -100, "method": "getcontractstate", "params": "[35c53e321092c9c230bb8570b7c078658a7bca3a]"} -2023-12-15T14:12:17.198Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[e89123d5407697a14f5480e533436036cb8b042ed144f37ffd21b9f5bc8664b5 Application]"} -2023-12-15T14:12:17.860Z INFO sending PrepareRequest {"height": 8, "view": 0} -2023-12-15T14:12:17.861Z INFO sending Commit {"height": 8, "view": 0} -2023-12-15T14:12:17.861Z INFO approving block {"height": 8, "hash": "3a05b1ee86dac4a676abf1e5a8dffae2c77e67f84d9091e9f4c2004e54f0c621", "tx_count": 9, "merkle": "542f6d8a245385d8665a069b46c630e5ec1bddab4bed37d1dc57e7a4684fbfdf", "prev": "6999f047340724e90facc2263e0fd71722abe8e0c7d6846eb938422f99e3a9dc"} -2023-12-15T14:12:17.862Z INFO runtime log {"tx": "494ba80a97eb28eaad7e25be01acdbb65db0e5681ff138631d5fb321eb363617", "script": "df5ef8ffcf46530d9c1de2d7e6e41eaa6500df9d", "msg": "proxy contract initialized"} -2023-12-15T14:12:17.862Z INFO runtime log {"tx": "abb4cbfd6be57cfbe3b92c701a6a2e009f84cb652a2003d5fb9ed62cda0f7bf1", "script": "d400cd570fd03f231607e203893ab6c0820de918", "msg": "reputation contract initialized"} -2023-12-15T14:12:17.863Z INFO runtime log {"tx": "344b899f52d3e0f06814613671726aca16d0bc87db540628081c15464ee4b266", "script": "30c3bdab6fc285a7b2489c2ba8af87a8013a1feb", "msg": "frostfsid contract initialized"} -2023-12-15T14:12:17.863Z INFO runtime log {"tx": "430fa5297ccb304fe3f0c1ccc1ff3c1beabec267a8ea1dc6dea6b4adee0540da", "script": "c17c56ac4b181e86621967e4684ad26ce1e10fd0", "msg": "audit contract initialized"} -2023-12-15T14:12:17.864Z INFO runtime log {"tx": "c292fdeeafd71c22e6dd5ba7f82749651c70bfc398a5fae5b6b628c3cfe76a0b", "script": "4ccb07a3dc2d2137f1b3fac6421b366792d9900a", "msg": "balance contract initialized"} -2023-12-15T14:12:17.865Z INFO runtime log {"tx": "8a034107abe0e538d2cf524dd8370dbd3e8ab9c021ec30bddd279026cab2d02a", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "netmap contract initialized"} -2023-12-15T14:12:17.867Z INFO runtime log {"tx": "769930725af10fff71beee1cac119d372ffa9d9a7c7648509daa9d53621cef68", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "container contract initialized"} -2023-12-15T14:12:17.868Z INFO runtime log {"tx": "e89123d5407697a14f5480e533436036cb8b042ed144f37ffd21b9f5bc8664b5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "az contract initialized"} -2023-12-15T14:12:17.869Z INFO initializing dbft {"height": 9, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:17.942Z INFO persisted to disk {"blocks": 1, "keys": 247, "headerHeight": 8, "blockHeight": 8, "took": "9.041693ms"} -2023-12-15T14:12:18.258Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[b1031d390f190649374c4f62f4011738de63dd1c45669a015af9ce188829bab7 Application]"} -2023-12-15T14:12:18.861Z INFO sending PrepareRequest {"height": 9, "view": 0} -2023-12-15T14:12:18.862Z INFO sending Commit {"height": 9, "view": 0} -2023-12-15T14:12:18.862Z INFO approving block {"height": 9, "hash": "c3fa8d570993f9240a6cc5d2e427ee837c8978471ff90fc231b43e6b5a4e80bd", "tx_count": 1, "merkle": "b7ba298818cef95a019a66451cdd63de381701f4624f4c374906190f391d03b1", "prev": "3a05b1ee86dac4a676abf1e5a8dffae2c77e67f84d9091e9f4c2004e54f0c621"} -2023-12-15T14:12:18.863Z INFO initializing dbft {"height": 10, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:18.937Z INFO persisted to disk {"blocks": 1, "keys": 31, "headerHeight": 9, "blockHeight": 9, "took": "3.278669ms"} -2023-12-15T14:12:19.269Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[0de8eae52db9e416690e76279e438d2484391ad84a2e4639e67f42d6265604cd Application]"} -2023-12-15T14:12:19.863Z INFO sending PrepareRequest {"height": 10, "view": 0} -2023-12-15T14:12:19.863Z INFO sending Commit {"height": 10, "view": 0} -2023-12-15T14:12:19.863Z INFO approving block {"height": 10, "hash": "0eaf8468aa7c9af289c4fdb6db2be29973c18171fd408a17ef94d032f3c74fec", "tx_count": 1, "merkle": "cd045626d6427fe639462e4ad81a3984248d439e27760e6916e4b92de5eae80d", "prev": "c3fa8d570993f9240a6cc5d2e427ee837c8978471ff90fc231b43e6b5a4e80bd"} -2023-12-15T14:12:19.866Z INFO initializing dbft {"height": 11, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:19.938Z INFO persisted to disk {"blocks": 1, "keys": 32, "headerHeight": 10, "blockHeight": 10, "took": "3.805032ms"} -2023-12-15T14:12:20.279Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[0827a89690a8aec7baba9f1776e01e15e8981e900e16c074910811b09320e026 Application]"} -2023-12-15T14:12:20.865Z INFO sending PrepareRequest {"height": 11, "view": 0} -2023-12-15T14:12:20.865Z INFO sending Commit {"height": 11, "view": 0} -2023-12-15T14:12:20.865Z INFO approving block {"height": 11, "hash": "ef0a7aa9e6c37f2997e509305e219a22ce3b1fba8549dcb41436cff3edf0f0d7", "tx_count": 1, "merkle": "26e02093b011089174c0160e901e98e8151ee076179fbabac7aea89096a82708", "prev": "0eaf8468aa7c9af289c4fdb6db2be29973c18171fd408a17ef94d032f3c74fec"} -2023-12-15T14:12:20.866Z INFO initializing dbft {"height": 12, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:20.938Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 11, "blockHeight": 11, "took": "3.896504ms"} -2023-12-15T14:12:21.297Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[40f88872c19e5a76465365245d3b2225e4ba7173f47a707232c0afb0212199bb Application]"} -2023-12-15T14:12:21.866Z INFO sending PrepareRequest {"height": 12, "view": 0} -2023-12-15T14:12:21.866Z INFO sending Commit {"height": 12, "view": 0} -2023-12-15T14:12:21.866Z INFO approving block {"height": 12, "hash": "6e652fadcd2030c0726b2617a7ad04c6e991c4965a2e4beb24adf1fa26ed9ae6", "tx_count": 1, "merkle": "bb992121b0afc03272707af47371bae425223b5d24655346765a9ec17288f840", "prev": "ef0a7aa9e6c37f2997e509305e219a22ce3b1fba8549dcb41436cff3edf0f0d7"} -2023-12-15T14:12:21.867Z INFO initializing dbft {"height": 13, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:21.939Z INFO persisted to disk {"blocks": 1, "keys": 59, "headerHeight": 12, "blockHeight": 12, "took": "3.795968ms"} -2023-12-15T14:12:22.377Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[671a52a4f98d884c31037320ffc1d8a98dbd0e4d5d8fc00654f30ee71f9f8af4 Application]"} -2023-12-15T14:12:22.867Z INFO sending PrepareRequest {"height": 13, "view": 0} -2023-12-15T14:12:22.867Z INFO sending Commit {"height": 13, "view": 0} -2023-12-15T14:12:22.867Z INFO approving block {"height": 13, "hash": "06be9e0a0aa88d16fad09e7521604fdefd614eaccbcea7142e6cc19963fcae35", "tx_count": 10, "merkle": "d55a8777240c1c05dbe73a75802ef814079f22bf3f2d18b958db423dd496726b", "prev": "6e652fadcd2030c0726b2617a7ad04c6e991c4965a2e4beb24adf1fa26ed9ae6"} -2023-12-15T14:12:22.885Z INFO initializing dbft {"height": 14, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:22.943Z INFO persisted to disk {"blocks": 1, "keys": 231, "headerHeight": 13, "blockHeight": 13, "took": "6.644174ms"} -2023-12-15T14:12:23.868Z INFO sending PrepareRequest {"height": 14, "view": 0} -2023-12-15T14:12:23.868Z INFO sending Commit {"height": 14, "view": 0} -2023-12-15T14:12:23.869Z INFO approving block {"height": 14, "hash": "c576b06b6ef88399dbec0009bda926164b4fea6f06aa6d25026eeb25bf3c5515", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06be9e0a0aa88d16fad09e7521604fdefd614eaccbcea7142e6cc19963fcae35"} -2023-12-15T14:12:23.870Z INFO initializing dbft {"height": 15, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:23.941Z INFO persisted to disk {"blocks": 1, "keys": 20, "headerHeight": 14, "blockHeight": 14, "took": "3.924962ms"} -2023-12-15T14:12:24.870Z INFO sending PrepareRequest {"height": 15, "view": 0} -2023-12-15T14:12:24.870Z INFO sending Commit {"height": 15, "view": 0} -2023-12-15T14:12:24.870Z INFO approving block {"height": 15, "hash": "6055a6dfe4a9ad0b948d04ddbe24e43b5ca08f46b8b73605939218965df8a8cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c576b06b6ef88399dbec0009bda926164b4fea6f06aa6d25026eeb25bf3c5515"} -2023-12-15T14:12:24.872Z INFO initializing dbft {"height": 16, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:24.919Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[faa56bc5320f9ff2b56c04e435997cce87d35a439010a4c358d69cfa804939da Application]"} -2023-12-15T14:12:24.940Z INFO persisted to disk {"blocks": 1, "keys": 20, "headerHeight": 15, "blockHeight": 15, "took": "2.553025ms"} -2023-12-15T14:12:25.872Z INFO sending PrepareRequest {"height": 16, "view": 0} -2023-12-15T14:12:25.872Z INFO sending Commit {"height": 16, "view": 0} -2023-12-15T14:12:25.872Z INFO approving block {"height": 16, "hash": "ea974e8bf9b2687d8246fe88d540607c776ac8db186e2388a88e300f802f4c85", "tx_count": 1, "merkle": "da394980fa9cd658c3a41090435ad387ce7c9935e4046cb5f29f0f32c56ba5fa", "prev": "6055a6dfe4a9ad0b948d04ddbe24e43b5ca08f46b8b73605939218965df8a8cf"} -2023-12-15T14:12:25.874Z INFO initializing dbft {"height": 17, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:25.941Z info frostfs-ir/main.go:124 pprof is disabled, skip -2023-12-15T14:12:25.941Z info frostfs-ir/main.go:124 prometheus is disabled, skip -2023-12-15T14:12:25.942Z INFO persisted to disk {"blocks": 1, "keys": 32, "headerHeight": 16, "blockHeight": 16, "took": "3.136045ms"} -2023-12-15T14:12:26.467Z info innerring/initialization.go:180 notary support {"sidechain_enabled": true, "mainchain_enabled": false} -2023-12-15T14:12:26.488Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary_type": "addPeer"} -2023-12-15T14:12:26.488Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary_type": "updateState"} -2023-12-15T14:12:26.488Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary type": "addPeer"} -2023-12-15T14:12:26.488Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary type": "updateState"} -2023-12-15T14:12:26.488Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "put"} -2023-12-15T14:12:26.489Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "putNamed"} -2023-12-15T14:12:26.489Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "delete"} -2023-12-15T14:12:26.489Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "setEACL"} -2023-12-15T14:12:26.489Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "put"} -2023-12-15T14:12:26.489Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "putNamed"} -2023-12-15T14:12:26.489Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "delete"} -2023-12-15T14:12:26.489Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "setEACL"} -2023-12-15T14:12:26.489Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "d400cd570fd03f231607e203893ab6c0820de918", "notary_type": "put"} -2023-12-15T14:12:26.489Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "d400cd570fd03f231607e203893ab6c0820de918", "notary type": "put"} -2023-12-15T14:12:26.490Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "35c53e321092c9c230bb8570b7c078658a7bca3a", "notary_type": "put"} -2023-12-15T14:12:26.490Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "35c53e321092c9c230bb8570b7c078658a7bca3a", "notary type": "put"} -2023-12-15T14:12:26.501Z info client/notary.go:214 notary deposit invoke {"amount": 499959877800, "expire_at": 4294967295, "vub": 19, "tx_hash": "25dfb04f89f4297579f29d7f8e0b67747f2a66c13e0142b424e7c88ce8ed3c23"} -2023-12-15T14:12:26.501Z info innerring/notary.go:89 waiting to accept side notary deposit -2023-12-15T14:12:26.502Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[25dfb04f89f4297579f29d7f8e0b67747f2a66c13e0142b424e7c88ce8ed3c23 Application]"} -2023-12-15T14:12:26.873Z INFO sending PrepareRequest {"height": 17, "view": 0} -2023-12-15T14:12:26.873Z INFO sending Commit {"height": 17, "view": 0} -2023-12-15T14:12:26.874Z INFO approving block {"height": 17, "hash": "cb8cdacf4c408d935211499ebb229bc2baf3c3c772b66170ac9c9ac7629cefc7", "tx_count": 1, "merkle": "233cede88cc8e724b442013ec1662a7f74670b8e7f9df2797529f4894fb0df25", "prev": "ea974e8bf9b2687d8246fe88d540607c776ac8db186e2388a88e300f802f4c85"} -2023-12-15T14:12:26.875Z INFO initializing dbft {"height": 18, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:26.943Z INFO persisted to disk {"blocks": 1, "keys": 31, "headerHeight": 17, "blockHeight": 17, "took": "3.456071ms"} -2023-12-15T14:12:27.006Z INFO runtime log {"tx": "f9973d16a133aac7f899249060a9942bc5222494d98d47b492a78d02863a3568", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "az: successfully voted for validator"} -2023-12-15T14:12:27.013Z info frostfs-ir/main.go:83 application started {"version": "v0.36.0"} -2023-12-15T14:12:27.013Z info taskmanager/listen.go:15 process routine {"component": "Audit task manager", "queue_capacity": 100} -2023-12-15T14:12:27.874Z INFO sending PrepareRequest {"height": 18, "view": 0} -2023-12-15T14:12:27.875Z INFO sending Commit {"height": 18, "view": 0} -2023-12-15T14:12:27.875Z INFO approving block {"height": 18, "hash": "6481d25b741fea9749051ac1ecbd9b4ac01862efe30b1331fd2bf87fc03dccf8", "tx_count": 1, "merkle": "ce841876f43806795ddb03b88580a79358563785d30092d07466159435d0a7cd", "prev": "cb8cdacf4c408d935211499ebb229bc2baf3c3c772b66170ac9c9ac7629cefc7"} -2023-12-15T14:12:27.876Z INFO runtime log {"tx": "cda7d03594156674d09200d38537565893a78085b803db5d790638f4761884ce", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "az: successfully voted for validator"} -2023-12-15T14:12:27.877Z INFO initializing dbft {"height": 19, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:27.944Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 18, "blockHeight": 18, "took": "3.540294ms"} -2023-12-15T14:12:27.954Z info frostfs-node/main.go:73 initializing pprof service... -2023-12-15T14:12:27.954Z info frostfs-node/httpcomponent.go:24 pprof is disabled -2023-12-15T14:12:27.954Z info frostfs-node/main.go:75 pprof service has been successfully initialized -2023-12-15T14:12:27.954Z info frostfs-node/main.go:73 initializing metrics service... -2023-12-15T14:12:27.954Z info frostfs-node/httpcomponent.go:24 metrics is disabled -2023-12-15T14:12:27.954Z info frostfs-node/main.go:75 metrics service has been successfully initialized -2023-12-15T14:12:27.954Z info frostfs-node/main.go:73 initializing tracing service... -2023-12-15T14:12:27.958Z info frostfs-node/main.go:75 tracing service has been successfully initialized -2023-12-15T14:12:27.958Z debug metabase/control.go:28 created directory for Metabase {"path": "/data/metabase.db"} -2023-12-15T14:12:27.960Z debug metabase/control.go:49 opened boltDB instance for Metabase -2023-12-15T14:12:27.961Z debug metabase/control.go:51 checking metabase version -2023-12-15T14:12:27.965Z info frostfs-node/config.go:878 shard attached to engine {"id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-15T14:12:27.965Z info frostfs-node/main.go:73 initializing storage engine service... -2023-12-15T14:12:27.965Z debug blobstor/control.go:12 opening... {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-15T14:12:27.965Z debug metabase/control.go:28 created directory for Metabase {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "path": "/data/metabase.db"} -2023-12-15T14:12:27.965Z debug metabase/control.go:49 opened boltDB instance for Metabase {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-15T14:12:27.965Z debug metabase/control.go:51 checking metabase version {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-15T14:12:27.967Z debug blobstor/control.go:32 initializing... {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-15T14:12:27.968Z debug blobovniczatree/control.go:21 initializing Blobovnicza's -2023-12-15T14:12:27.968Z debug blobovnicza/control.go:17 creating directory for BoltDB {"component": "Blobovnicza", "path": "/data/blob/blobovnicza/0/0", "ro": false} -2023-12-15T14:12:27.968Z debug blobovnicza/control.go:31 opening BoltDB {"component": "Blobovnicza", "path": "/data/blob/blobovnicza/0/0", "permissions": "-rwxrwxrwx"} -2023-12-15T14:12:27.970Z debug blobovnicza/control.go:47 initializing... {"component": "Blobovnicza", "object size limit": 1048576, "storage size limit": 4294967296} -2023-12-15T14:12:27.970Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[0:32768]"} -2023-12-15T14:12:27.970Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[32769:65536]"} -2023-12-15T14:12:27.970Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[65537:131072]"} -2023-12-15T14:12:27.971Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[131073:262144]"} -2023-12-15T14:12:27.971Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[262145:524288]"} -2023-12-15T14:12:27.971Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[524289:1048576]"} -2023-12-15T14:12:27.975Z debug blobovniczatree/control.go:39 blobovnicza successfully initialized, closing... {"id": "0/0"} -2023-12-15T14:12:27.975Z debug blobovnicza/control.go:89 closing BoltDB {"component": "Blobovnicza", "path": "/data/blob/blobovnicza/0/0"} -2023-12-15T14:12:27.980Z info frostfs-node/main.go:75 storage engine service has been successfully initialized -2023-12-15T14:12:27.981Z info frostfs-node/main.go:73 initializing gRPC service... -2023-12-15T14:12:27.981Z info frostfs-node/main.go:75 gRPC service has been successfully initialized -2023-12-15T14:12:27.981Z info frostfs-node/main.go:73 initializing netmap service... -2023-12-15T14:12:28.000Z info frostfs-node/morph.go:83 notary support {"sidechain_enabled": true} -2023-12-15T14:12:28.000Z debug frostfs-node/morph.go:98 morph.cache_ttl fetched from network {"value": 1} -2023-12-15T14:12:28.002Z info frostfs-node/netmap.go:296 initial network state {"epoch": 0, "state": "undefined"} -2023-12-15T14:12:28.002Z info frostfs-node/main.go:75 netmap service has been successfully initialized -2023-12-15T14:12:28.002Z info frostfs-node/main.go:73 initializing accounting service... -2023-12-15T14:12:28.002Z info frostfs-node/main.go:75 accounting service has been successfully initialized -2023-12-15T14:12:28.002Z info frostfs-node/main.go:73 initializing container service... -2023-12-15T14:12:28.002Z info frostfs-node/main.go:75 container service has been successfully initialized -2023-12-15T14:12:28.002Z info frostfs-node/main.go:73 initializing session service... -2023-12-15T14:12:28.002Z info frostfs-node/main.go:75 session service has been successfully initialized -2023-12-15T14:12:28.002Z info frostfs-node/main.go:73 initializing reputation service... -2023-12-15T14:12:28.002Z info frostfs-node/main.go:75 reputation service has been successfully initialized -2023-12-15T14:12:28.002Z info frostfs-node/main.go:73 initializing notification service... -2023-12-15T14:12:28.002Z info frostfs-node/main.go:75 notification service has been successfully initialized -2023-12-15T14:12:28.003Z info frostfs-node/main.go:73 initializing object service... -2023-12-15T14:12:28.003Z info frostfs-node/main.go:75 object service has been successfully initialized -2023-12-15T14:12:28.004Z info frostfs-node/main.go:73 initializing tree service... -2023-12-15T14:12:28.004Z info frostfs-node/main.go:75 tree service has been successfully initialized -2023-12-15T14:12:28.004Z info frostfs-node/main.go:73 initializing control service... -2023-12-15T14:12:28.004Z info frostfs-node/main.go:75 control service has been successfully initialized -2023-12-15T14:12:28.004Z info frostfs-node/main.go:73 initializing morph notifications service... -2023-12-15T14:12:28.004Z debug event/listener.go:459 registered new event parser {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-15T14:12:28.004Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "PutSuccess"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "PutSuccess"} -2023-12-15T14:12:28.004Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "DeleteSuccess"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "DeleteSuccess"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "DeleteSuccess"} -2023-12-15T14:12:28.004Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StartEstimation"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StartEstimation"} -2023-12-15T14:12:28.004Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StopEstimation"} -2023-12-15T14:12:28.004Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StopEstimation"} -2023-12-15T14:12:28.004Z info frostfs-node/main.go:75 morph notifications service has been successfully initialized -2023-12-15T14:12:28.004Z info frostfs-node/main.go:114 starting NATS service... -2023-12-15T14:12:28.004Z info frostfs-node/main.go:118 NATS service started successfully -2023-12-15T14:12:28.004Z info frostfs-node/main.go:114 starting gRPC service... -2023-12-15T14:12:28.004Z info frostfs-node/main.go:114 starting notary service... -2023-12-15T14:12:28.004Z info frostfs-node/grpc.go:103 start listening gRPC endpoint {"endpoint": "[::]:8080"} -2023-12-15T14:12:28.008Z info client/notary.go:214 notary deposit invoke {"amount": 500000000, "expire_at": 4294967295, "vub": 21, "tx_hash": "bff68f5261986810aadbaba81b0d679860ff8f33701aac477ff0f5dce09aa346"} -2023-12-15T14:12:28.009Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[bff68f5261986810aadbaba81b0d679860ff8f33701aac477ff0f5dce09aa346 Application]"} -2023-12-15T14:12:28.876Z INFO sending PrepareRequest {"height": 19, "view": 0} -2023-12-15T14:12:28.876Z INFO sending Commit {"height": 19, "view": 0} -2023-12-15T14:12:28.877Z INFO approving block {"height": 19, "hash": "5904ab7d1341892c07b5c475588f12f75f09286201c69609bd06a3b6f09fe182", "tx_count": 1, "merkle": "46a39ae0dcf5f07f47ac1a70338fff6098670d1ba8abdbaa10689861528ff6bf", "prev": "6481d25b741fea9749051ac1ecbd9b4ac01862efe30b1331fd2bf87fc03dccf8"} -2023-12-15T14:12:28.878Z INFO initializing dbft {"height": 20, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:28.944Z INFO persisted to disk {"blocks": 1, "keys": 46, "headerHeight": 19, "blockHeight": 19, "took": "2.769522ms"} -2023-12-15T14:12:29.012Z info frostfs-node/main.go:118 notary service started successfully -2023-12-15T14:12:29.012Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "OFFLINE"} -2023-12-15T14:12:29.020Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 100, "fallback_valid_for": 40, "tx_hash": "c85fb8a3d0c5f3317af24df332ebdec37bdf2ec3677a32aadf8970d24c6ff4f6"} -2023-12-15T14:12:29.021Z info frostfs-node/main.go:145 application started {"version": "v0.36.0"} -2023-12-15T14:12:29.021Z info frostfs-node/main.go:114 starting morph notification service... -2023-12-15T14:12:29.021Z info frostfs-node/main.go:114 starting control service... -2023-12-15T14:12:29.021Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:12:29.023Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T14:12:29.025Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:12:29.025Z info netmap/process_peers.go:65 approving network map candidate {"key": "022bb4041c50d607ff871dec7e4cd7778388e0ea6849d84ccbd9aa8f32e16a8131"} -2023-12-15T14:12:29.878Z INFO sending PrepareRequest {"height": 20, "view": 0} -2023-12-15T14:12:29.878Z INFO sending Commit {"height": 20, "view": 0} -2023-12-15T14:12:29.879Z INFO approving block {"height": 20, "hash": "ebc262e0c368bdaf88d3133b486c528dedbd93542eeea79f584f53a85f66e0a7", "tx_count": 1, "merkle": "c08d1858c3459bb0fcc20348723c59332126ba1f9615f62a4a9ab230c0329be1", "prev": "5904ab7d1341892c07b5c475588f12f75f09286201c69609bd06a3b6f09fe182"} -2023-12-15T14:12:29.881Z INFO initializing dbft {"height": 21, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:29.881Z debug event/listener.go:330 event parser not set {"script hash LE": "a9dc350d936b140f93ecc85999e2392d915b8989", "event type": "AddPeerSuccess"} -2023-12-15T14:12:29.882Z debug frostfs-node/morph.go:229 new block {"index": 20} -2023-12-15T14:12:29.946Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 20, "blockHeight": 20, "took": "4.044238ms"} -2023-12-15T14:12:30.879Z INFO sending PrepareRequest {"height": 21, "view": 0} -2023-12-15T14:12:30.880Z INFO sending Commit {"height": 21, "view": 0} -2023-12-15T14:12:30.880Z INFO approving block {"height": 21, "hash": "f17958c6ffca5df62768b94c05aa8ef10f51afa6d3cf6eb0b395782cbae95aec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebc262e0c368bdaf88d3133b486c528dedbd93542eeea79f584f53a85f66e0a7"} -2023-12-15T14:12:30.882Z INFO initializing dbft {"height": 22, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:30.882Z debug frostfs-node/morph.go:229 new block {"index": 21} -2023-12-15T14:12:30.933Z INFO runtime log {"tx": "49e945465f7de450fac92782682948c5e395032b6faadda7d8c54b40eeb9f822", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:12:30.938Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[3dbfb7a0168a663b7c353851a8ce4a2aa448e39e6062d03f04de370c0dec432e Application]"} -2023-12-15T14:12:30.945Z INFO persisted to disk {"blocks": 1, "keys": 27, "headerHeight": 21, "blockHeight": 21, "took": "2.216409ms"} -2023-12-15T14:12:31.881Z INFO sending PrepareRequest {"height": 22, "view": 0} -2023-12-15T14:12:31.882Z INFO sending Commit {"height": 22, "view": 0} -2023-12-15T14:12:31.882Z INFO approving block {"height": 22, "hash": "64f8b26f7368943576b75ebb155e94e689c71284bb7ddba1f7fe1647f6753d5d", "tx_count": 1, "merkle": "2e43ec0d0c37de043fd062609ee348a42a4acea85138357c3b668a16a0b7bf3d", "prev": "f17958c6ffca5df62768b94c05aa8ef10f51afa6d3cf6eb0b395782cbae95aec"} -2023-12-15T14:12:31.883Z INFO runtime log {"tx": "3dbfb7a0168a663b7c353851a8ce4a2aa448e39e6062d03f04de370c0dec432e", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:12:31.885Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 1} -2023-12-15T14:12:31.885Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 1} -2023-12-15T14:12:31.885Z INFO initializing dbft {"height": 23, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:31.886Z debug frostfs-node/morph.go:229 new block {"index": 22} -2023-12-15T14:12:31.885Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:12:31.886Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 1} -2023-12-15T14:12:31.886Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:12:31.886Z debug controller/calls.go:95 starting to report local trust values {"epoch": 0} -2023-12-15T14:12:31.886Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 0} -2023-12-15T14:12:31.886Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 1} -2023-12-15T14:12:31.887Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 1} -2023-12-15T14:12:31.890Z debug controller/calls.go:146 reporting successfully finished {"epoch": 0} -2023-12-15T14:12:31.890Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 0} -2023-12-15T14:12:31.891Z INFO runtime log {"tx": "d10e59431b58723da948e121fcb201b0dfb487564609036ef713e65fe8911366", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:12:31.892Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:12:31.895Z info client/notary.go:214 notary deposit invoke {"amount": 243856460, "expire_at": 4294967295, "vub": 25, "tx_hash": "234d6dad5473a3ad258f3ffe577069e5a2b27c6f9dc8f6809d64ebd8ad2f18cd"} -2023-12-15T14:12:31.904Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:12:31.904Z info audit/handlers.go:13 new round of audit {"epoch": 1} -2023-12-15T14:12:31.904Z info settlement/calls.go:26 new audit settlement event {"epoch": 1} -2023-12-15T14:12:31.904Z info settlement/handlers.go:14 process audit settlements {"epoch": 1} -2023-12-15T14:12:31.904Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 1} -2023-12-15T14:12:31.905Z info settlement/handlers.go:18 audit processing finished {"epoch": 1} -2023-12-15T14:12:31.908Z info audit/process.go:39 select containers for audit {"epoch": 1, "amount": 0} -2023-12-15T14:12:31.910Z info client/notary.go:214 notary deposit invoke {"amount": 250152598320, "expire_at": 4294967295, "vub": 25, "tx_hash": "5afcb11ca2b4b6a168599df8047e65c4383f27473b88ff120286652c54385ff4"} -2023-12-15T14:12:31.946Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 22, "blockHeight": 22, "took": "2.714129ms"} -2023-12-15T14:12:32.883Z INFO sending PrepareRequest {"height": 23, "view": 0} -2023-12-15T14:12:32.884Z INFO sending Commit {"height": 23, "view": 0} -2023-12-15T14:12:32.884Z INFO approving block {"height": 23, "hash": "43e2a24dc381ca0a095681b0dff72ff15b6853643f18b3f332d31709e8642333", "tx_count": 3, "merkle": "103bc13d4280c6c379b78e0b5f3a57db67589284a144a12ad4898f15932cfbbe", "prev": "64f8b26f7368943576b75ebb155e94e689c71284bb7ddba1f7fe1647f6753d5d"} -2023-12-15T14:12:32.885Z INFO runtime log {"tx": "dce07808c090b06a5101124be68e4908051c87ee2ef46c147dc3ac1952b92e81", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:12:32.887Z INFO initializing dbft {"height": 24, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:32.887Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 0} -2023-12-15T14:12:32.887Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 0} -2023-12-15T14:12:32.887Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 0} -2023-12-15T14:12:32.888Z debug frostfs-node/morph.go:229 new block {"index": 23} -2023-12-15T14:12:32.950Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 23, "blockHeight": 23, "took": "5.058111ms"} -2023-12-15T14:12:33.885Z INFO sending PrepareRequest {"height": 24, "view": 0} -2023-12-15T14:12:33.885Z INFO sending Commit {"height": 24, "view": 0} -2023-12-15T14:12:33.886Z INFO approving block {"height": 24, "hash": "03828fb68ad980cb4c72a691614d764e47d0714c02d885c56ab124a0494d23c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43e2a24dc381ca0a095681b0dff72ff15b6853643f18b3f332d31709e8642333"} -2023-12-15T14:12:33.887Z INFO initializing dbft {"height": 25, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:33.887Z debug frostfs-node/morph.go:229 new block {"index": 24} -2023-12-15T14:12:33.949Z INFO persisted to disk {"blocks": 1, "keys": 27, "headerHeight": 24, "blockHeight": 24, "took": "3.796234ms"} -2023-12-15T14:12:34.887Z INFO sending PrepareRequest {"height": 25, "view": 0} -2023-12-15T14:12:34.887Z INFO sending Commit {"height": 25, "view": 0} -2023-12-15T14:12:34.888Z INFO approving block {"height": 25, "hash": "fc390db0ba82ff7ed107a465c62c91b0d51ec5a80a51df7d4f9135b8bc65b477", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03828fb68ad980cb4c72a691614d764e47d0714c02d885c56ab124a0494d23c0"} -2023-12-15T14:12:34.889Z INFO initializing dbft {"height": 26, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:34.890Z debug frostfs-node/morph.go:229 new block {"index": 25} -2023-12-15T14:12:34.936Z info frostfs-http-gw/app.go:152 add connection {"address": "grpc://localhost:8080", "weight": 1, "priority": 1} -2023-12-15T14:12:34.947Z debug session/executor.go:31 serving request... {"component": "SessionService", "request": "Create"} -2023-12-15T14:12:34.949Z INFO persisted to disk {"blocks": 1, "keys": 27, "headerHeight": 25, "blockHeight": 25, "took": "3.452967ms"} -2023-12-15T14:12:34.957Z info frostfs-http-gw/app.go:327 starting application {"app_name": "frostfs-http-gw", "version": "v0.27.0"} -2023-12-15T14:12:34.957Z info frostfs-http-gw/app.go:450 added path /upload/{cid} -2023-12-15T14:12:34.957Z info frostfs-http-gw/app.go:453 added path /get/{cid}/{oid} -2023-12-15T14:12:34.957Z info frostfs-http-gw/app.go:456 added path /get_by_attribute/{cid}/{attr_key}/{attr_val:*} -2023-12-15T14:12:34.957Z info frostfs-http-gw/app.go:458 added path /zip/{cid}/{prefix} -2023-12-15T14:12:34.957Z info s3-gw/app.go:239 using credentials {"FrostFS": "0312fe65b101565de74eedf477afb43417ff5f795732506cfddc8e044c5a030d76"} -2023-12-15T14:12:34.957Z info s3-gw/app_settings.go:175 added connection peer {"address": "localhost:8080", "weight": 1} -2023-12-15T14:12:34.958Z warn s3-gw/app_settings.go:163 skip, empty address -2023-12-15T14:12:34.958Z info metrics/service.go:33 service hasn't started since it's disabled {"service": "Pprof"} -2023-12-15T14:12:34.958Z info metrics/service.go:27 service is running {"service": "Prometheus", "endpoint": "localhost:8083"} -2023-12-15T14:12:34.958Z info frostfs-http-gw/app.go:499 add server {"address": "0.0.0.0:8081", "tls enabled": false, "tls cert": "", "tls key": ""} -2023-12-15T14:12:34.959Z info frostfs-http-gw/app.go:350 starting server {"address": "0.0.0.0:8081"} -2023-12-15T14:12:34.968Z debug session/executor.go:31 serving request... {"component": "SessionService", "request": "Create"} -2023-12-15T14:12:34.984Z info s3-gw/app.go:123 init tree service {"endpoints": ["localhost:8080"]} -2023-12-15T14:12:34.985Z warn handler/api.go:69 notificator is disabled, s3 won't produce notification events -2023-12-15T14:12:34.985Z warn metrics/app.go:21 metrics are disabled -2023-12-15T14:12:34.986Z info s3-gw/app.go:502 add server {"address": "0.0.0.0:8084", "tls enabled": false, "tls cert": "", "tls key": ""} -2023-12-15T14:12:34.986Z info s3-gw/app.go:360 application started {"name": "frostfs-s3-gw", "version": "v0.27.0"} -2023-12-15T14:12:34.986Z info s3-gw/app.go:380 fetch domains, prepare to use API {"domains": []} -2023-12-15T14:12:34.988Z info s3-gw/service.go:27 service hasn't started since it's disabled {"service": "Pprof"} -2023-12-15T14:12:34.988Z info s3-gw/service.go:27 service hasn't started since it's disabled {"service": "Prometheus"} -2023-12-15T14:12:34.988Z info s3-gw/app.go:393 starting server {"address": "0.0.0.0:8084"} -2023-12-15T14:12:35.889Z INFO sending PrepareRequest {"height": 26, "view": 0} -2023-12-15T14:12:35.889Z INFO sending Commit {"height": 26, "view": 0} -2023-12-15T14:12:35.889Z INFO approving block {"height": 26, "hash": "23a38e0373ff983630820b3059258bc6a9e1e6e8e10d28a2fc07692e6fbf119b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc390db0ba82ff7ed107a465c62c91b0d51ec5a80a51df7d4f9135b8bc65b477"} -2023-12-15T14:12:35.890Z INFO initializing dbft {"height": 27, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:35.891Z debug frostfs-node/morph.go:229 new block {"index": 26} -2023-12-15T14:12:35.949Z INFO persisted to disk {"blocks": 1, "keys": 27, "headerHeight": 26, "blockHeight": 26, "took": "2.244492ms"} -2023-12-15T14:12:36.890Z INFO sending PrepareRequest {"height": 27, "view": 0} -2023-12-15T14:12:36.891Z INFO sending Commit {"height": 27, "view": 0} -2023-12-15T14:12:36.891Z INFO approving block {"height": 27, "hash": "dc8e814a3ce78666a62256814de354870b6453143163e9e4a5eaec98092bb84e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23a38e0373ff983630820b3059258bc6a9e1e6e8e10d28a2fc07692e6fbf119b"} -2023-12-15T14:12:36.892Z INFO initializing dbft {"height": 28, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:36.893Z debug frostfs-node/morph.go:229 new block {"index": 27} -2023-12-15T14:12:36.951Z INFO persisted to disk {"blocks": 1, "keys": 27, "headerHeight": 27, "blockHeight": 27, "took": "3.538378ms"} -2023-12-15T14:12:37.892Z INFO sending PrepareRequest {"height": 28, "view": 0} -2023-12-15T14:12:37.892Z INFO sending Commit {"height": 28, "view": 0} -2023-12-15T14:12:37.893Z INFO approving block {"height": 28, "hash": "a477955997fee9f51b0c37a8d4c9230f26f2c121c9a9a4dba8a98682938479e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc8e814a3ce78666a62256814de354870b6453143163e9e4a5eaec98092bb84e"} -2023-12-15T14:12:37.894Z INFO initializing dbft {"height": 29, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:37.895Z debug frostfs-node/morph.go:229 new block {"index": 28} -2023-12-15T14:12:37.952Z INFO persisted to disk {"blocks": 1, "keys": 27, "headerHeight": 28, "blockHeight": 28, "took": "3.671827ms"} -2023-12-15T14:12:38.372Z INFO runtime log {"tx": "144f88a4030faa14e755752e82e4f7e1994fcc22aa2b80ccb9db5d27ce0921ba", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:12:38.377Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[923c1b9c28d47d59e110d993fce86e5ef6cdc2a6c3ac2465a3c94c9077d317c2 Application]"} -2023-12-15T14:12:38.893Z INFO sending PrepareRequest {"height": 29, "view": 0} -2023-12-15T14:12:38.893Z INFO sending Commit {"height": 29, "view": 0} -2023-12-15T14:12:38.894Z INFO approving block {"height": 29, "hash": "dfeec79e6f39bdf040fabee94d3ebb2111c9ec956618a4309f6f50314a8ad55f", "tx_count": 1, "merkle": "c217d377904cc9a36524acc3a6c2cdf65e6ee8fc93d910e1597dd4289c1b3c92", "prev": "a477955997fee9f51b0c37a8d4c9230f26f2c121c9a9a4dba8a98682938479e3"} -2023-12-15T14:12:38.894Z INFO runtime log {"tx": "923c1b9c28d47d59e110d993fce86e5ef6cdc2a6c3ac2465a3c94c9077d317c2", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:12:38.895Z INFO initializing dbft {"height": 30, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:38.896Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 2} -2023-12-15T14:12:38.896Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 2} -2023-12-15T14:12:38.896Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:12:38.896Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:12:38.896Z debug frostfs-node/morph.go:229 new block {"index": 29} -2023-12-15T14:12:38.896Z debug controller/calls.go:95 starting to report local trust values {"epoch": 1} -2023-12-15T14:12:38.896Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 2} -2023-12-15T14:12:38.896Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 1} -2023-12-15T14:12:38.896Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 2} -2023-12-15T14:12:38.896Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 2} -2023-12-15T14:12:38.896Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T14:12:38.898Z debug controller/calls.go:146 reporting successfully finished {"epoch": 1} -2023-12-15T14:12:38.898Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 1} -2023-12-15T14:12:38.900Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:12:38.901Z INFO runtime log {"tx": "b25c9318c34faddab30d4668b62c2ebc2e30e2ca3c30b4a45a73fa3d8de2f8b3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:12:38.903Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 32, "tx_hash": "6685aa2bf7e0bfdd45868a91e8cb21178e137897f00737ae9007d2271e645a5d"} -2023-12-15T14:12:38.908Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:12:38.908Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 100, "fallback_valid_for": 40, "tx_hash": "f3c84092e806c586f696954f95cce233e7361d5019afb50a7de90a61bed486a7"} -2023-12-15T14:12:38.908Z info audit/handlers.go:13 new round of audit {"epoch": 2} -2023-12-15T14:12:38.908Z info settlement/calls.go:26 new audit settlement event {"epoch": 2} -2023-12-15T14:12:38.909Z info settlement/handlers.go:14 process audit settlements {"epoch": 2} -2023-12-15T14:12:38.909Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 2} -2023-12-15T14:12:38.910Z info settlement/handlers.go:18 audit processing finished {"epoch": 2} -2023-12-15T14:12:38.911Z info audit/process.go:39 select containers for audit {"epoch": 2, "amount": 0} -2023-12-15T14:12:38.911Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T14:12:38.913Z info client/notary.go:214 notary deposit invoke {"amount": 125260433755, "expire_at": 4294967295, "vub": 32, "tx_hash": "393b007b0b31014ea021f4ab9ef656a3ce176e2c23d14c1e610fdcebe24d116b"} -2023-12-15T14:12:38.953Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 29, "blockHeight": 29, "took": "4.487981ms"} -2023-12-15T14:12:39.895Z INFO sending PrepareRequest {"height": 30, "view": 0} -2023-12-15T14:12:39.895Z INFO sending Commit {"height": 30, "view": 0} -2023-12-15T14:12:39.895Z INFO approving block {"height": 30, "hash": "07590842e7b4c37def08742844dd7e376e621310f0c29400cb2d8ad7f55f9f37", "tx_count": 3, "merkle": "f5bba5e18c818284ca38b76cf395a9383fe762970e4f715c217871dd535a4715", "prev": "dfeec79e6f39bdf040fabee94d3ebb2111c9ec956618a4309f6f50314a8ad55f"} -2023-12-15T14:12:39.897Z INFO runtime log {"tx": "60c1d89bbcb87896d48488b1af78e7787ecc176bda1981dc50ec5fc1f5c48766", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:12:39.898Z INFO initializing dbft {"height": 31, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:39.899Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 1} -2023-12-15T14:12:39.900Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 1} -2023-12-15T14:12:39.900Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 1} -2023-12-15T14:12:39.900Z debug frostfs-node/morph.go:229 new block {"index": 30} -2023-12-15T14:12:39.956Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 30, "blockHeight": 30, "took": "6.128539ms"} -2023-12-15T14:12:40.896Z INFO sending PrepareRequest {"height": 31, "view": 0} -2023-12-15T14:12:40.896Z INFO sending Commit {"height": 31, "view": 0} -2023-12-15T14:12:40.897Z INFO approving block {"height": 31, "hash": "9cd2230819aa02bf25945398c2142647ec136ebdf44b158fe4ecb9cd15dd47be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07590842e7b4c37def08742844dd7e376e621310f0c29400cb2d8ad7f55f9f37"} -2023-12-15T14:12:40.898Z INFO initializing dbft {"height": 32, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:40.899Z debug frostfs-node/morph.go:229 new block {"index": 31} -2023-12-15T14:12:40.954Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 31, "blockHeight": 31, "took": "4.043724ms"} -2023-12-15T14:12:41.898Z INFO sending PrepareRequest {"height": 32, "view": 0} -2023-12-15T14:12:41.898Z INFO sending Commit {"height": 32, "view": 0} -2023-12-15T14:12:41.899Z INFO approving block {"height": 32, "hash": "4683584a3f80cd979a104ad0e855eb226b29f11b6b9a2f17b3d8b09a2795692b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cd2230819aa02bf25945398c2142647ec136ebdf44b158fe4ecb9cd15dd47be"} -2023-12-15T14:12:41.901Z INFO initializing dbft {"height": 33, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:41.902Z debug frostfs-node/morph.go:229 new block {"index": 32} -2023-12-15T14:12:41.954Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 32, "blockHeight": 32, "took": "3.379534ms"} -2023-12-15T14:12:42.899Z INFO sending PrepareRequest {"height": 33, "view": 0} -2023-12-15T14:12:42.900Z INFO sending Commit {"height": 33, "view": 0} -2023-12-15T14:12:42.900Z INFO approving block {"height": 33, "hash": "ed19c220578258307d022f360664c1439c61aeb6bc38efb8ccf3a09eabf44a07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4683584a3f80cd979a104ad0e855eb226b29f11b6b9a2f17b3d8b09a2795692b"} -2023-12-15T14:12:42.901Z INFO initializing dbft {"height": 34, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:42.901Z debug frostfs-node/morph.go:229 new block {"index": 33} -2023-12-15T14:12:42.956Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 33, "blockHeight": 33, "took": "4.970394ms"} -2023-12-15T14:12:43.901Z INFO sending PrepareRequest {"height": 34, "view": 0} -2023-12-15T14:12:43.901Z INFO sending Commit {"height": 34, "view": 0} -2023-12-15T14:12:43.901Z INFO approving block {"height": 34, "hash": "23109fcf694c378df8d367ab8183cea22ce66d1a859e9bc4a6c701cef4a85e63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed19c220578258307d022f360664c1439c61aeb6bc38efb8ccf3a09eabf44a07"} -2023-12-15T14:12:43.903Z INFO initializing dbft {"height": 35, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:43.904Z debug frostfs-node/morph.go:229 new block {"index": 34} -2023-12-15T14:12:43.954Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 34, "blockHeight": 34, "took": "2.298217ms"} -2023-12-15T14:12:44.903Z INFO sending PrepareRequest {"height": 35, "view": 0} -2023-12-15T14:12:44.903Z INFO sending Commit {"height": 35, "view": 0} -2023-12-15T14:12:44.903Z INFO approving block {"height": 35, "hash": "6fc3d1c176b516cd2ed858f43df4a3128f29c6cea177417ebf4392f83140cbec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23109fcf694c378df8d367ab8183cea22ce66d1a859e9bc4a6c701cef4a85e63"} -2023-12-15T14:12:44.905Z INFO initializing dbft {"height": 36, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:44.905Z debug frostfs-node/morph.go:229 new block {"index": 35} -2023-12-15T14:12:44.956Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 35, "blockHeight": 35, "took": "3.309427ms"} -2023-12-15T14:12:45.904Z INFO sending PrepareRequest {"height": 36, "view": 0} -2023-12-15T14:12:45.904Z INFO sending Commit {"height": 36, "view": 0} -2023-12-15T14:12:45.905Z INFO approving block {"height": 36, "hash": "ba87ec128c80bee2851e67cfa4735bfd72004a2c072200c49d51b3573eb7375b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fc3d1c176b516cd2ed858f43df4a3128f29c6cea177417ebf4392f83140cbec"} -2023-12-15T14:12:45.906Z INFO initializing dbft {"height": 37, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:45.907Z debug frostfs-node/morph.go:229 new block {"index": 36} -2023-12-15T14:12:45.956Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 36, "blockHeight": 36, "took": "3.021041ms"} -2023-12-15T14:12:46.906Z INFO sending PrepareRequest {"height": 37, "view": 0} -2023-12-15T14:12:46.906Z INFO sending Commit {"height": 37, "view": 0} -2023-12-15T14:12:46.906Z INFO approving block {"height": 37, "hash": "917484b5357690c044c4ea60ff580a196a6673b1e3025e0e5868d23d96d74f47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba87ec128c80bee2851e67cfa4735bfd72004a2c072200c49d51b3573eb7375b"} -2023-12-15T14:12:46.908Z INFO initializing dbft {"height": 38, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:46.909Z debug frostfs-node/morph.go:229 new block {"index": 37} -2023-12-15T14:12:46.957Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 37, "blockHeight": 37, "took": "2.885684ms"} -2023-12-15T14:12:47.907Z INFO sending PrepareRequest {"height": 38, "view": 0} -2023-12-15T14:12:47.907Z INFO sending Commit {"height": 38, "view": 0} -2023-12-15T14:12:47.907Z INFO approving block {"height": 38, "hash": "6f78191598962083b96ebd1a1f48ed80926469fc34aff775766d3538f74b436a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "917484b5357690c044c4ea60ff580a196a6673b1e3025e0e5868d23d96d74f47"} -2023-12-15T14:12:47.909Z INFO initializing dbft {"height": 39, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:47.909Z debug frostfs-node/morph.go:229 new block {"index": 38} -2023-12-15T14:12:47.957Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 38, "blockHeight": 38, "took": "2.987397ms"} -2023-12-15T14:12:48.909Z INFO sending PrepareRequest {"height": 39, "view": 0} -2023-12-15T14:12:48.909Z INFO sending Commit {"height": 39, "view": 0} -2023-12-15T14:12:48.909Z INFO approving block {"height": 39, "hash": "4d6ea022add71927e27f13d3e509b473f08199468fa69656ab35c478f74bd998", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f78191598962083b96ebd1a1f48ed80926469fc34aff775766d3538f74b436a"} -2023-12-15T14:12:48.910Z INFO initializing dbft {"height": 40, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:48.911Z debug frostfs-node/morph.go:229 new block {"index": 39} -2023-12-15T14:12:48.957Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 39, "blockHeight": 39, "took": "2.371429ms"} -2023-12-15T14:12:49.911Z INFO sending PrepareRequest {"height": 40, "view": 0} -2023-12-15T14:12:49.911Z INFO sending Commit {"height": 40, "view": 0} -2023-12-15T14:12:49.911Z INFO approving block {"height": 40, "hash": "eb19a6ec157d5a6ae4b7337462d668d4ed97b58ccfafb7b04b3bd41c2c7a7a5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d6ea022add71927e27f13d3e509b473f08199468fa69656ab35c478f74bd998"} -2023-12-15T14:12:49.913Z INFO initializing dbft {"height": 41, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:49.914Z debug frostfs-node/morph.go:229 new block {"index": 40} -2023-12-15T14:12:49.958Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 40, "blockHeight": 40, "took": "2.304387ms"} -2023-12-15T14:12:50.912Z INFO sending PrepareRequest {"height": 41, "view": 0} -2023-12-15T14:12:50.912Z INFO sending Commit {"height": 41, "view": 0} -2023-12-15T14:12:50.913Z INFO approving block {"height": 41, "hash": "8415c2135f9deaba488698e320e453d7282072a45b63aeba854745fc0c2a4492", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb19a6ec157d5a6ae4b7337462d668d4ed97b58ccfafb7b04b3bd41c2c7a7a5d"} -2023-12-15T14:12:50.914Z INFO initializing dbft {"height": 42, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:50.915Z debug frostfs-node/morph.go:229 new block {"index": 41} -2023-12-15T14:12:50.958Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 41, "blockHeight": 41, "took": "2.292996ms"} -2023-12-15T14:12:51.914Z INFO sending PrepareRequest {"height": 42, "view": 0} -2023-12-15T14:12:51.914Z INFO sending Commit {"height": 42, "view": 0} -2023-12-15T14:12:51.914Z INFO approving block {"height": 42, "hash": "75f6638902d42daabe01b13911d622af63fbbc81ebf87278b3c8edac9f041ba5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8415c2135f9deaba488698e320e453d7282072a45b63aeba854745fc0c2a4492"} -2023-12-15T14:12:51.916Z INFO initializing dbft {"height": 43, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:51.917Z debug frostfs-node/morph.go:229 new block {"index": 42} -2023-12-15T14:12:51.960Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 42, "blockHeight": 42, "took": "3.676739ms"} -2023-12-15T14:12:52.915Z INFO sending PrepareRequest {"height": 43, "view": 0} -2023-12-15T14:12:52.916Z INFO sending Commit {"height": 43, "view": 0} -2023-12-15T14:12:52.916Z INFO approving block {"height": 43, "hash": "05ba7a52fc124b5867fbe1aac9b0f56d584b37a80f17a9809f13c20f8044da56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75f6638902d42daabe01b13911d622af63fbbc81ebf87278b3c8edac9f041ba5"} -2023-12-15T14:12:52.918Z INFO initializing dbft {"height": 44, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:52.918Z debug frostfs-node/morph.go:229 new block {"index": 43} -2023-12-15T14:12:52.961Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 43, "blockHeight": 43, "took": "3.578462ms"} -2023-12-15T14:12:53.917Z INFO sending PrepareRequest {"height": 44, "view": 0} -2023-12-15T14:12:53.917Z INFO sending Commit {"height": 44, "view": 0} -2023-12-15T14:12:53.917Z INFO approving block {"height": 44, "hash": "805eb6f778bef60d9f8aece70431f612362633aa05a239521be0312dbf3a29cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05ba7a52fc124b5867fbe1aac9b0f56d584b37a80f17a9809f13c20f8044da56"} -2023-12-15T14:12:53.919Z INFO initializing dbft {"height": 45, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:53.920Z debug frostfs-node/morph.go:229 new block {"index": 44} -2023-12-15T14:12:53.962Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 44, "blockHeight": 44, "took": "3.75863ms"} -2023-12-15T14:12:54.918Z INFO sending PrepareRequest {"height": 45, "view": 0} -2023-12-15T14:12:54.919Z INFO sending Commit {"height": 45, "view": 0} -2023-12-15T14:12:54.919Z INFO approving block {"height": 45, "hash": "626b1e11a6ac2fad2bb1f419d9d2c268e953384e860440c7fdbffd211302690e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "805eb6f778bef60d9f8aece70431f612362633aa05a239521be0312dbf3a29cc"} -2023-12-15T14:12:54.921Z INFO initializing dbft {"height": 46, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:54.922Z debug frostfs-node/morph.go:229 new block {"index": 45} -2023-12-15T14:12:54.965Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 45, "blockHeight": 45, "took": "7.021054ms"} -2023-12-15T14:12:55.920Z INFO sending PrepareRequest {"height": 46, "view": 0} -2023-12-15T14:12:55.921Z INFO sending Commit {"height": 46, "view": 0} -2023-12-15T14:12:55.921Z INFO approving block {"height": 46, "hash": "8dc4e34676dc2cb84d1287910a1d080c00f36698c36618cafad7ccda506eb79e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "626b1e11a6ac2fad2bb1f419d9d2c268e953384e860440c7fdbffd211302690e"} -2023-12-15T14:12:55.923Z INFO initializing dbft {"height": 47, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:55.924Z debug frostfs-node/morph.go:229 new block {"index": 46} -2023-12-15T14:12:55.962Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 46, "blockHeight": 46, "took": "3.485452ms"} -2023-12-15T14:12:56.922Z INFO sending PrepareRequest {"height": 47, "view": 0} -2023-12-15T14:12:56.923Z INFO sending Commit {"height": 47, "view": 0} -2023-12-15T14:12:56.923Z INFO approving block {"height": 47, "hash": "21868636cf67ba6eda8b5b94b5fe5903394f19b2c2dced704e08f9ec880beecc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8dc4e34676dc2cb84d1287910a1d080c00f36698c36618cafad7ccda506eb79e"} -2023-12-15T14:12:56.925Z INFO initializing dbft {"height": 48, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:56.926Z debug frostfs-node/morph.go:229 new block {"index": 47} -2023-12-15T14:12:56.963Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 47, "blockHeight": 47, "took": "3.524233ms"} -2023-12-15T14:12:57.924Z INFO sending PrepareRequest {"height": 48, "view": 0} -2023-12-15T14:12:57.924Z INFO sending Commit {"height": 48, "view": 0} -2023-12-15T14:12:57.924Z INFO approving block {"height": 48, "hash": "6a35471b09efee1da440ba97632b7d154fe650e746076e967403b22a8fe524c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21868636cf67ba6eda8b5b94b5fe5903394f19b2c2dced704e08f9ec880beecc"} -2023-12-15T14:12:57.927Z INFO initializing dbft {"height": 49, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:57.928Z debug frostfs-node/morph.go:229 new block {"index": 48} -2023-12-15T14:12:57.963Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 48, "blockHeight": 48, "took": "3.592125ms"} -2023-12-15T14:12:58.925Z INFO sending PrepareRequest {"height": 49, "view": 0} -2023-12-15T14:12:58.926Z INFO sending Commit {"height": 49, "view": 0} -2023-12-15T14:12:58.926Z INFO approving block {"height": 49, "hash": "caa4af196aa41ce132cbb3b2a5eb0468c27cc701c1629676ef95a9c9e358f379", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a35471b09efee1da440ba97632b7d154fe650e746076e967403b22a8fe524c7"} -2023-12-15T14:12:58.927Z INFO initializing dbft {"height": 50, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:58.927Z debug frostfs-node/morph.go:229 new block {"index": 49} -2023-12-15T14:12:58.963Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 49, "blockHeight": 49, "took": "2.280087ms"} -2023-12-15T14:12:59.927Z INFO sending PrepareRequest {"height": 50, "view": 0} -2023-12-15T14:12:59.928Z INFO sending Commit {"height": 50, "view": 0} -2023-12-15T14:12:59.928Z INFO approving block {"height": 50, "hash": "c2f6b546ee77b6f470c5c6185c63eb1152b842c6b13c06901c278e9ac78ac8fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "caa4af196aa41ce132cbb3b2a5eb0468c27cc701c1629676ef95a9c9e358f379"} -2023-12-15T14:12:59.930Z INFO initializing dbft {"height": 51, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:12:59.931Z debug frostfs-node/morph.go:229 new block {"index": 50} -2023-12-15T14:12:59.965Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 50, "blockHeight": 50, "took": "4.067976ms"} -2023-12-15T14:13:00.929Z INFO sending PrepareRequest {"height": 51, "view": 0} -2023-12-15T14:13:00.929Z INFO sending Commit {"height": 51, "view": 0} -2023-12-15T14:13:00.929Z INFO approving block {"height": 51, "hash": "6dd919976e8c8d1505348067a775ec994d0d335a0d258f3970b0ba6052872187", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2f6b546ee77b6f470c5c6185c63eb1152b842c6b13c06901c278e9ac78ac8fb"} -2023-12-15T14:13:00.930Z INFO initializing dbft {"height": 52, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:00.931Z debug frostfs-node/morph.go:229 new block {"index": 51} -2023-12-15T14:13:00.964Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 51, "blockHeight": 51, "took": "2.41811ms"} -2023-12-15T14:13:01.930Z INFO sending PrepareRequest {"height": 52, "view": 0} -2023-12-15T14:13:01.930Z INFO sending Commit {"height": 52, "view": 0} -2023-12-15T14:13:01.930Z INFO approving block {"height": 52, "hash": "3383dd040d21a6af39fe6279090dae991fd7349c7cc916af0f094a8157d983d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dd919976e8c8d1505348067a775ec994d0d335a0d258f3970b0ba6052872187"} -2023-12-15T14:13:01.932Z INFO initializing dbft {"height": 53, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:01.932Z debug frostfs-node/morph.go:229 new block {"index": 52} -2023-12-15T14:13:01.965Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 52, "blockHeight": 52, "took": "2.349132ms"} -2023-12-15T14:13:02.932Z INFO sending PrepareRequest {"height": 53, "view": 0} -2023-12-15T14:13:02.932Z INFO sending Commit {"height": 53, "view": 0} -2023-12-15T14:13:02.932Z INFO approving block {"height": 53, "hash": "13f8243b597179f43472ab9858e652cd527861fd3c7c8e6d546806ba161b8d2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3383dd040d21a6af39fe6279090dae991fd7349c7cc916af0f094a8157d983d7"} -2023-12-15T14:13:02.934Z INFO initializing dbft {"height": 54, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:02.935Z debug frostfs-node/morph.go:229 new block {"index": 53} -2023-12-15T14:13:02.968Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 53, "blockHeight": 53, "took": "5.308766ms"} -2023-12-15T14:13:03.934Z INFO sending PrepareRequest {"height": 54, "view": 0} -2023-12-15T14:13:03.934Z INFO sending Commit {"height": 54, "view": 0} -2023-12-15T14:13:03.934Z INFO approving block {"height": 54, "hash": "257bf767ca98e4d4c451b7307da5680e01c7342721ea34a4632d14257fb055dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13f8243b597179f43472ab9858e652cd527861fd3c7c8e6d546806ba161b8d2f"} -2023-12-15T14:13:03.936Z INFO initializing dbft {"height": 55, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:03.937Z debug frostfs-node/morph.go:229 new block {"index": 54} -2023-12-15T14:13:03.966Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 54, "blockHeight": 54, "took": "2.583932ms"} -2023-12-15T14:13:04.935Z INFO sending PrepareRequest {"height": 55, "view": 0} -2023-12-15T14:13:04.935Z INFO sending Commit {"height": 55, "view": 0} -2023-12-15T14:13:04.936Z INFO approving block {"height": 55, "hash": "1c527d494bfdaccf32c359faa8b32a4c9530044766e3cdb9f7be91436507afe8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "257bf767ca98e4d4c451b7307da5680e01c7342721ea34a4632d14257fb055dc"} -2023-12-15T14:13:04.937Z INFO initializing dbft {"height": 56, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:04.938Z debug frostfs-node/morph.go:229 new block {"index": 55} -2023-12-15T14:13:04.968Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 55, "blockHeight": 55, "took": "4.137351ms"} -2023-12-15T14:13:05.937Z INFO sending PrepareRequest {"height": 56, "view": 0} -2023-12-15T14:13:05.937Z INFO sending Commit {"height": 56, "view": 0} -2023-12-15T14:13:05.937Z INFO approving block {"height": 56, "hash": "8eb0442c715e04b07292c551d0397b736e59d95744c3a5592e3f286da8139966", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c527d494bfdaccf32c359faa8b32a4c9530044766e3cdb9f7be91436507afe8"} -2023-12-15T14:13:05.938Z INFO initializing dbft {"height": 57, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:05.939Z debug frostfs-node/morph.go:229 new block {"index": 56} -2023-12-15T14:13:05.969Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 56, "blockHeight": 56, "took": "4.167851ms"} -2023-12-15T14:13:06.938Z INFO sending PrepareRequest {"height": 57, "view": 0} -2023-12-15T14:13:06.938Z INFO sending Commit {"height": 57, "view": 0} -2023-12-15T14:13:06.939Z INFO approving block {"height": 57, "hash": "9d88b72e6ca6c2ff768a81189f254d3b3d7d7da7aab66785f95fed751271bd97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8eb0442c715e04b07292c551d0397b736e59d95744c3a5592e3f286da8139966"} -2023-12-15T14:13:06.941Z INFO initializing dbft {"height": 58, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:06.941Z debug frostfs-node/morph.go:229 new block {"index": 57} -2023-12-15T14:13:06.970Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 57, "blockHeight": 57, "took": "3.394532ms"} -2023-12-15T14:13:07.940Z INFO sending PrepareRequest {"height": 58, "view": 0} -2023-12-15T14:13:07.940Z INFO sending Commit {"height": 58, "view": 0} -2023-12-15T14:13:07.941Z INFO approving block {"height": 58, "hash": "4afca41f9ab775362a9c40ea5c9dd69e2f3430a84e2bfd319514b1953dfd284d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d88b72e6ca6c2ff768a81189f254d3b3d7d7da7aab66785f95fed751271bd97"} -2023-12-15T14:13:07.942Z INFO initializing dbft {"height": 59, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:07.943Z debug frostfs-node/morph.go:229 new block {"index": 58} -2023-12-15T14:13:07.972Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 58, "blockHeight": 58, "took": "5.403978ms"} -2023-12-15T14:13:08.941Z INFO sending PrepareRequest {"height": 59, "view": 0} -2023-12-15T14:13:08.942Z INFO sending Commit {"height": 59, "view": 0} -2023-12-15T14:13:08.942Z INFO approving block {"height": 59, "hash": "c3d390efe73361d49cfa055fab6dd6aba29091482b604a0040bfa11ad8220d7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4afca41f9ab775362a9c40ea5c9dd69e2f3430a84e2bfd319514b1953dfd284d"} -2023-12-15T14:13:08.944Z INFO initializing dbft {"height": 60, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:08.944Z debug frostfs-node/morph.go:229 new block {"index": 59} -2023-12-15T14:13:08.971Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 59, "blockHeight": 59, "took": "3.232668ms"} -2023-12-15T14:13:09.943Z INFO sending PrepareRequest {"height": 60, "view": 0} -2023-12-15T14:13:09.943Z INFO sending Commit {"height": 60, "view": 0} -2023-12-15T14:13:09.944Z INFO approving block {"height": 60, "hash": "1a6fbba52d74ab73612ef4f1116d5c457e5f6bdb5d59640f4b201180cdb7b161", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3d390efe73361d49cfa055fab6dd6aba29091482b604a0040bfa11ad8220d7c"} -2023-12-15T14:13:09.945Z INFO initializing dbft {"height": 61, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:09.946Z debug frostfs-node/morph.go:229 new block {"index": 60} -2023-12-15T14:13:09.971Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 60, "blockHeight": 60, "took": "3.393085ms"} -2023-12-15T14:13:10.945Z INFO sending PrepareRequest {"height": 61, "view": 0} -2023-12-15T14:13:10.945Z INFO sending Commit {"height": 61, "view": 0} -2023-12-15T14:13:10.945Z INFO approving block {"height": 61, "hash": "dbb555e43fc38f982d9478bf76552924554d8519e0b524bb0bae2a7ec432ac0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a6fbba52d74ab73612ef4f1116d5c457e5f6bdb5d59640f4b201180cdb7b161"} -2023-12-15T14:13:10.947Z INFO initializing dbft {"height": 62, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:10.947Z debug frostfs-node/morph.go:229 new block {"index": 61} -2023-12-15T14:13:10.972Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 61, "blockHeight": 61, "took": "3.720738ms"} -2023-12-15T14:13:11.947Z INFO sending PrepareRequest {"height": 62, "view": 0} -2023-12-15T14:13:11.947Z INFO sending Commit {"height": 62, "view": 0} -2023-12-15T14:13:11.947Z INFO approving block {"height": 62, "hash": "26e1bf55e2272b8b50033ac514e889da61808e8f27738b615d6f6f5e98941912", "tx_count": 2, "merkle": "e031c01c1ea9bd70d724b917f1d81153d0f45640e892df36bd87a95f62fb503e", "prev": "dbb555e43fc38f982d9478bf76552924554d8519e0b524bb0bae2a7ec432ac0b"} -2023-12-15T14:13:11.949Z INFO initializing dbft {"height": 63, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:11.950Z debug frostfs-node/morph.go:229 new block {"index": 62} -2023-12-15T14:13:11.952Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T14:13:11.952Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T14:13:11.974Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 62, "blockHeight": 62, "took": "4.632202ms"} -2023-12-15T14:13:12.948Z INFO sending PrepareRequest {"height": 63, "view": 0} -2023-12-15T14:13:12.949Z INFO sending Commit {"height": 63, "view": 0} -2023-12-15T14:13:12.949Z INFO approving block {"height": 63, "hash": "819024bc1ef480cf617443cdde5783907b998b289ce079072148f378a56668f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26e1bf55e2272b8b50033ac514e889da61808e8f27738b615d6f6f5e98941912"} -2023-12-15T14:13:12.951Z INFO initializing dbft {"height": 64, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:12.952Z debug frostfs-node/morph.go:229 new block {"index": 63} -2023-12-15T14:13:12.974Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 63, "blockHeight": 63, "took": "4.500512ms"} -2023-12-15T14:13:13.950Z INFO sending PrepareRequest {"height": 64, "view": 0} -2023-12-15T14:13:13.950Z INFO sending Commit {"height": 64, "view": 0} -2023-12-15T14:13:13.950Z INFO approving block {"height": 64, "hash": "fd11b0de8524f7218d24b3141ddb34434391800d1857130054b9d1baa94ad9e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "819024bc1ef480cf617443cdde5783907b998b289ce079072148f378a56668f7"} -2023-12-15T14:13:13.952Z INFO initializing dbft {"height": 65, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:13.952Z debug frostfs-node/morph.go:229 new block {"index": 64} -2023-12-15T14:13:13.972Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 64, "blockHeight": 64, "took": "2.552694ms"} -2023-12-15T14:13:14.951Z INFO sending PrepareRequest {"height": 65, "view": 0} -2023-12-15T14:13:14.951Z INFO sending Commit {"height": 65, "view": 0} -2023-12-15T14:13:14.952Z INFO approving block {"height": 65, "hash": "02634171968155034d1c21c945d475e5f13d824e85b4cc2c15018369151e8b4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd11b0de8524f7218d24b3141ddb34434391800d1857130054b9d1baa94ad9e5"} -2023-12-15T14:13:14.952Z INFO initializing dbft {"height": 66, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:14.953Z debug frostfs-node/morph.go:229 new block {"index": 65} -2023-12-15T14:13:14.973Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 65, "blockHeight": 65, "took": "2.335868ms"} -2023-12-15T14:13:15.953Z INFO sending PrepareRequest {"height": 66, "view": 0} -2023-12-15T14:13:15.953Z INFO sending Commit {"height": 66, "view": 0} -2023-12-15T14:13:15.953Z INFO approving block {"height": 66, "hash": "85a58972d25d759b946a8f8b3153779206f76ee5ceb90b131e93f9cf0638ddef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02634171968155034d1c21c945d475e5f13d824e85b4cc2c15018369151e8b4c"} -2023-12-15T14:13:15.954Z INFO initializing dbft {"height": 67, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:15.955Z debug frostfs-node/morph.go:229 new block {"index": 66} -2023-12-15T14:13:15.975Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 66, "blockHeight": 66, "took": "4.006422ms"} -2023-12-15T14:13:16.955Z INFO sending PrepareRequest {"height": 67, "view": 0} -2023-12-15T14:13:16.955Z INFO sending Commit {"height": 67, "view": 0} -2023-12-15T14:13:16.955Z INFO approving block {"height": 67, "hash": "d2b366ae0247d45cc3081a50de856bf0517a045baa0e91b9a8c625a81d32f784", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85a58972d25d759b946a8f8b3153779206f76ee5ceb90b131e93f9cf0638ddef"} -2023-12-15T14:13:16.956Z INFO initializing dbft {"height": 68, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:16.957Z debug frostfs-node/morph.go:229 new block {"index": 67} -2023-12-15T14:13:16.958Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:13:16.961Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:13:16.962Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:13:16.975Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 67, "blockHeight": 67, "took": "2.865984ms"} -2023-12-15T14:13:17.956Z INFO sending PrepareRequest {"height": 68, "view": 0} -2023-12-15T14:13:17.956Z INFO sending Commit {"height": 68, "view": 0} -2023-12-15T14:13:17.957Z INFO approving block {"height": 68, "hash": "aad9bcccfe90053e561838ece56c23381fbabc9d1b2a07a9ac7fd4a41e7f06eb", "tx_count": 2, "merkle": "db93f03e7e37e1f4df6c0c91bbb7d13097453ebf00f63d42f5f3c5013bc17214", "prev": "d2b366ae0247d45cc3081a50de856bf0517a045baa0e91b9a8c625a81d32f784"} -2023-12-15T14:13:17.957Z INFO runtime log {"tx": "061813db94aa294c24e2e0d1d9aadf2391ef5dadfdd5fb8a03fc5591c238c99f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:13:17.957Z INFO runtime log {"tx": "061813db94aa294c24e2e0d1d9aadf2391ef5dadfdd5fb8a03fc5591c238c99f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:13:17.958Z INFO initializing dbft {"height": 69, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:17.959Z debug frostfs-node/morph.go:229 new block {"index": 68} -2023-12-15T14:13:17.978Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 68, "blockHeight": 68, "took": "4.345807ms"} -2023-12-15T14:13:18.958Z INFO sending PrepareRequest {"height": 69, "view": 0} -2023-12-15T14:13:18.958Z INFO sending Commit {"height": 69, "view": 0} -2023-12-15T14:13:18.959Z INFO approving block {"height": 69, "hash": "cad2dd7f46a207fadce952077770a0195542deb9b2e2149aa010031e30f2157c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad9bcccfe90053e561838ece56c23381fbabc9d1b2a07a9ac7fd4a41e7f06eb"} -2023-12-15T14:13:18.960Z INFO initializing dbft {"height": 70, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:18.961Z debug frostfs-node/morph.go:229 new block {"index": 69} -2023-12-15T14:13:18.978Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 69, "blockHeight": 69, "took": "3.860103ms"} -2023-12-15T14:13:19.959Z INFO sending PrepareRequest {"height": 70, "view": 0} -2023-12-15T14:13:19.959Z INFO sending Commit {"height": 70, "view": 0} -2023-12-15T14:13:19.960Z INFO approving block {"height": 70, "hash": "28b2ec4a259813546259cf57d01461e7650e1995fac847ebf94cc8e64d6f7ab8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cad2dd7f46a207fadce952077770a0195542deb9b2e2149aa010031e30f2157c"} -2023-12-15T14:13:19.960Z INFO initializing dbft {"height": 71, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:19.961Z debug frostfs-node/morph.go:229 new block {"index": 70} -2023-12-15T14:13:19.977Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 70, "blockHeight": 70, "took": "2.273266ms"} -2023-12-15T14:13:20.961Z INFO sending PrepareRequest {"height": 71, "view": 0} -2023-12-15T14:13:20.961Z INFO sending Commit {"height": 71, "view": 0} -2023-12-15T14:13:20.961Z INFO approving block {"height": 71, "hash": "2f1bacfa3563acc8fd348770f7f1a96dd5aa56526f26c4f737936756a1d4fc79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28b2ec4a259813546259cf57d01461e7650e1995fac847ebf94cc8e64d6f7ab8"} -2023-12-15T14:13:20.962Z INFO initializing dbft {"height": 72, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:20.962Z debug frostfs-node/morph.go:229 new block {"index": 71} -2023-12-15T14:13:20.977Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 71, "blockHeight": 71, "took": "2.322888ms"} -2023-12-15T14:13:21.963Z INFO sending PrepareRequest {"height": 72, "view": 0} -2023-12-15T14:13:21.963Z INFO sending Commit {"height": 72, "view": 0} -2023-12-15T14:13:21.963Z INFO approving block {"height": 72, "hash": "71358a19404e1c030365dd46539a5003d5c937c8829cb39e8614a1e9c1f90cf6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f1bacfa3563acc8fd348770f7f1a96dd5aa56526f26c4f737936756a1d4fc79"} -2023-12-15T14:13:21.964Z INFO initializing dbft {"height": 73, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:21.965Z debug frostfs-node/morph.go:229 new block {"index": 72} -2023-12-15T14:13:21.979Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 72, "blockHeight": 72, "took": "3.100442ms"} -2023-12-15T14:13:22.964Z INFO sending PrepareRequest {"height": 73, "view": 0} -2023-12-15T14:13:22.965Z INFO sending Commit {"height": 73, "view": 0} -2023-12-15T14:13:22.965Z INFO approving block {"height": 73, "hash": "e80a5ebb5a34c3d3d3b741ea3eb5caa9cd709bf9b40c204cbc1663d7049f2888", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71358a19404e1c030365dd46539a5003d5c937c8829cb39e8614a1e9c1f90cf6"} -2023-12-15T14:13:22.966Z INFO initializing dbft {"height": 74, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:22.967Z debug frostfs-node/morph.go:229 new block {"index": 73} -2023-12-15T14:13:22.980Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 73, "blockHeight": 73, "took": "3.467062ms"} -2023-12-15T14:13:23.966Z INFO sending PrepareRequest {"height": 74, "view": 0} -2023-12-15T14:13:23.966Z INFO sending Commit {"height": 74, "view": 0} -2023-12-15T14:13:23.967Z INFO approving block {"height": 74, "hash": "3b0c366696352fc528ba11faa2b4f8d5e859564a1a125b6fe5f4e28e191fbf05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e80a5ebb5a34c3d3d3b741ea3eb5caa9cd709bf9b40c204cbc1663d7049f2888"} -2023-12-15T14:13:23.968Z INFO initializing dbft {"height": 75, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:23.969Z debug frostfs-node/morph.go:229 new block {"index": 74} -2023-12-15T14:13:23.980Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 74, "blockHeight": 74, "took": "3.129852ms"} -2023-12-15T14:13:24.968Z INFO sending PrepareRequest {"height": 75, "view": 0} -2023-12-15T14:13:24.968Z INFO sending Commit {"height": 75, "view": 0} -2023-12-15T14:13:24.968Z INFO approving block {"height": 75, "hash": "cd928016125e77d51a3a2917b0f0b88f88d45a59525e3ebf9943438b05a6c163", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b0c366696352fc528ba11faa2b4f8d5e859564a1a125b6fe5f4e28e191fbf05"} -2023-12-15T14:13:24.969Z INFO initializing dbft {"height": 76, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:24.970Z debug frostfs-node/morph.go:229 new block {"index": 75} -2023-12-15T14:13:24.982Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 75, "blockHeight": 75, "took": "4.231329ms"} -2023-12-15T14:13:25.969Z INFO sending PrepareRequest {"height": 76, "view": 0} -2023-12-15T14:13:25.969Z INFO sending Commit {"height": 76, "view": 0} -2023-12-15T14:13:25.970Z INFO approving block {"height": 76, "hash": "b0d8bbf21f3f119abb12f1b485e0c68f666a8ffb59b2098256504bda62c6a806", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd928016125e77d51a3a2917b0f0b88f88d45a59525e3ebf9943438b05a6c163"} -2023-12-15T14:13:25.971Z INFO initializing dbft {"height": 77, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:25.972Z debug frostfs-node/morph.go:229 new block {"index": 76} -2023-12-15T14:13:25.982Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 76, "blockHeight": 76, "took": "3.465481ms"} -2023-12-15T14:13:26.971Z INFO sending PrepareRequest {"height": 77, "view": 0} -2023-12-15T14:13:26.971Z INFO sending Commit {"height": 77, "view": 0} -2023-12-15T14:13:26.971Z INFO approving block {"height": 77, "hash": "2ee248f9c3e11afe79f46e2227eaaab6f96148789f198d8e13c7e7ce7cc01624", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0d8bbf21f3f119abb12f1b485e0c68f666a8ffb59b2098256504bda62c6a806"} -2023-12-15T14:13:26.972Z INFO initializing dbft {"height": 78, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:26.972Z debug frostfs-node/morph.go:229 new block {"index": 77} -2023-12-15T14:13:26.981Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 77, "blockHeight": 77, "took": "2.349498ms"} -2023-12-15T14:13:27.973Z INFO sending PrepareRequest {"height": 78, "view": 0} -2023-12-15T14:13:27.973Z INFO sending Commit {"height": 78, "view": 0} -2023-12-15T14:13:27.973Z INFO approving block {"height": 78, "hash": "48849adbd66478d12faf61915074b35b8aeb979bfaf8a93759330cd5c0b673ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ee248f9c3e11afe79f46e2227eaaab6f96148789f198d8e13c7e7ce7cc01624"} -2023-12-15T14:13:27.974Z INFO initializing dbft {"height": 79, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:27.974Z debug frostfs-node/morph.go:229 new block {"index": 78} -2023-12-15T14:13:27.982Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 78, "blockHeight": 78, "took": "2.469372ms"} -2023-12-15T14:13:28.974Z INFO sending PrepareRequest {"height": 79, "view": 0} -2023-12-15T14:13:28.974Z INFO sending Commit {"height": 79, "view": 0} -2023-12-15T14:13:28.974Z INFO approving block {"height": 79, "hash": "1b51e75b548c9b94a2d2694415518e58ce2600f12fd458af1c46045c4252285a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48849adbd66478d12faf61915074b35b8aeb979bfaf8a93759330cd5c0b673ba"} -2023-12-15T14:13:28.975Z INFO initializing dbft {"height": 80, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:28.976Z debug frostfs-node/morph.go:229 new block {"index": 79} -2023-12-15T14:13:28.984Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 79, "blockHeight": 79, "took": "4.039978ms"} -2023-12-15T14:13:29.976Z INFO sending PrepareRequest {"height": 80, "view": 0} -2023-12-15T14:13:29.976Z INFO sending Commit {"height": 80, "view": 0} -2023-12-15T14:13:29.977Z INFO approving block {"height": 80, "hash": "7aec590a56b44ea529134308d742bb4c887f6a3015a1be75d450b074c9f6e139", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b51e75b548c9b94a2d2694415518e58ce2600f12fd458af1c46045c4252285a"} -2023-12-15T14:13:29.978Z INFO initializing dbft {"height": 81, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:29.978Z debug frostfs-node/morph.go:229 new block {"index": 80} -2023-12-15T14:13:29.984Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 80, "blockHeight": 80, "took": "3.31569ms"} -2023-12-15T14:13:30.978Z INFO sending PrepareRequest {"height": 81, "view": 0} -2023-12-15T14:13:30.978Z INFO sending Commit {"height": 81, "view": 0} -2023-12-15T14:13:30.978Z INFO approving block {"height": 81, "hash": "d614d890d95bdebe5b6a60fa18a006e78bc2aded1c376694e86ec84a0b8c169b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7aec590a56b44ea529134308d742bb4c887f6a3015a1be75d450b074c9f6e139"} -2023-12-15T14:13:30.979Z INFO initializing dbft {"height": 82, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:30.980Z debug frostfs-node/morph.go:229 new block {"index": 81} -2023-12-15T14:13:30.985Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 81, "blockHeight": 81, "took": "3.964228ms"} -2023-12-15T14:13:31.979Z INFO sending PrepareRequest {"height": 82, "view": 0} -2023-12-15T14:13:31.979Z INFO sending Commit {"height": 82, "view": 0} -2023-12-15T14:13:31.980Z INFO approving block {"height": 82, "hash": "416456dbde3525e573c86ebafa2bfbaaf60dbdb69b86994774f3eb00c46e7986", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d614d890d95bdebe5b6a60fa18a006e78bc2aded1c376694e86ec84a0b8c169b"} -2023-12-15T14:13:31.981Z INFO initializing dbft {"height": 83, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:31.981Z debug frostfs-node/morph.go:229 new block {"index": 82} -2023-12-15T14:13:31.987Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 0 epoch for daughters"} -2023-12-15T14:13:31.989Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 82, "blockHeight": 82, "took": "7.107074ms"} -2023-12-15T14:13:32.981Z INFO sending PrepareRequest {"height": 83, "view": 0} -2023-12-15T14:13:32.981Z INFO sending Commit {"height": 83, "view": 0} -2023-12-15T14:13:32.982Z INFO approving block {"height": 83, "hash": "719e558ee2d2d61bb4de08986c5409ebd0368a424fd4b5d6bb6572dfbd1d1fae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "416456dbde3525e573c86ebafa2bfbaaf60dbdb69b86994774f3eb00c46e7986"} -2023-12-15T14:13:32.983Z INFO initializing dbft {"height": 84, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:32.984Z debug frostfs-node/morph.go:229 new block {"index": 83} -2023-12-15T14:13:32.987Z INFO persisted to disk {"blocks": 0, "keys": 2, "headerHeight": 83, "blockHeight": 82, "took": "4.197428ms"} -2023-12-15T14:13:33.983Z INFO sending PrepareRequest {"height": 84, "view": 0} -2023-12-15T14:13:33.983Z INFO sending Commit {"height": 84, "view": 0} -2023-12-15T14:13:33.983Z INFO approving block {"height": 84, "hash": "9fa99fb005ee1aca3e2c34e66e0702d3b89f151e0adcc8198efc8a9e73c60305", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "719e558ee2d2d61bb4de08986c5409ebd0368a424fd4b5d6bb6572dfbd1d1fae"} -2023-12-15T14:13:33.984Z INFO initializing dbft {"height": 85, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:33.985Z debug frostfs-node/morph.go:229 new block {"index": 84} -2023-12-15T14:13:33.988Z INFO persisted to disk {"blocks": 1, "keys": 27, "headerHeight": 83, "blockHeight": 83, "took": "4.101751ms"} -2023-12-15T14:13:34.984Z INFO sending PrepareRequest {"height": 85, "view": 0} -2023-12-15T14:13:34.984Z INFO sending Commit {"height": 85, "view": 0} -2023-12-15T14:13:34.984Z INFO approving block {"height": 85, "hash": "36e4018e90daa4ae18e132f76b411b77906554f0189ba6f7f15d08fae0e73205", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fa99fb005ee1aca3e2c34e66e0702d3b89f151e0adcc8198efc8a9e73c60305"} -2023-12-15T14:13:34.985Z INFO initializing dbft {"height": 86, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:34.986Z debug frostfs-node/morph.go:229 new block {"index": 85} -2023-12-15T14:13:34.987Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 84, "blockHeight": 84, "took": "3.03035ms"} -2023-12-15T14:13:35.986Z INFO sending PrepareRequest {"height": 86, "view": 0} -2023-12-15T14:13:35.986Z INFO sending Commit {"height": 86, "view": 0} -2023-12-15T14:13:35.986Z INFO approving block {"height": 86, "hash": "d7f56208a21d4264cfc3319a654f1e9caac4f4f6396b1004c27550f4f28c6bc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36e4018e90daa4ae18e132f76b411b77906554f0189ba6f7f15d08fae0e73205"} -2023-12-15T14:13:35.987Z INFO initializing dbft {"height": 87, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:35.987Z debug frostfs-node/morph.go:229 new block {"index": 86} -2023-12-15T14:13:35.988Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 85, "blockHeight": 85, "took": "4.011467ms"} -2023-12-15T14:13:36.987Z INFO sending PrepareRequest {"height": 87, "view": 0} -2023-12-15T14:13:36.988Z INFO sending Commit {"height": 87, "view": 0} -2023-12-15T14:13:36.988Z INFO approving block {"height": 87, "hash": "554c7da9cde549ed301ec249ac96d5001f7027921cdbb6766d807bf3599fc18b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7f56208a21d4264cfc3319a654f1e9caac4f4f6396b1004c27550f4f28c6bc0"} -2023-12-15T14:13:36.988Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 86, "blockHeight": 86, "took": "3.716966ms"} -2023-12-15T14:13:36.989Z INFO initializing dbft {"height": 88, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:36.989Z debug frostfs-node/morph.go:229 new block {"index": 87} -2023-12-15T14:13:37.989Z INFO sending PrepareRequest {"height": 88, "view": 0} -2023-12-15T14:13:37.990Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 87, "blockHeight": 87, "took": "3.991283ms"} -2023-12-15T14:13:37.990Z INFO sending Commit {"height": 88, "view": 0} -2023-12-15T14:13:37.990Z INFO approving block {"height": 88, "hash": "d1dea9a6bd2027d4e1c6500790e9197cd7cfd719af810b180b3bbf939a63b8e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "554c7da9cde549ed301ec249ac96d5001f7027921cdbb6766d807bf3599fc18b"} -2023-12-15T14:13:37.991Z INFO initializing dbft {"height": 89, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:37.992Z debug frostfs-node/morph.go:229 new block {"index": 88} -2023-12-15T14:13:38.990Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 88, "blockHeight": 88, "took": "4.113333ms"} -2023-12-15T14:13:38.991Z INFO sending PrepareRequest {"height": 89, "view": 0} -2023-12-15T14:13:38.991Z INFO sending Commit {"height": 89, "view": 0} -2023-12-15T14:13:38.991Z INFO approving block {"height": 89, "hash": "6af3f39c08bc7d79541ef9d5223234fe0f451a4c75a3e4e95a35e0857787e826", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1dea9a6bd2027d4e1c6500790e9197cd7cfd719af810b180b3bbf939a63b8e9"} -2023-12-15T14:13:38.992Z INFO initializing dbft {"height": 90, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:38.993Z debug frostfs-node/morph.go:229 new block {"index": 89} -2023-12-15T14:13:38.996Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 1 epoch for daughters"} -2023-12-15T14:13:38.999Z INFO runtime log {"tx": "1ceba0b5213d33e4db454ca634c749a57b7e2ad84271d08777a12f4e95f230b3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:13:39.990Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 89, "blockHeight": 89, "took": "3.796331ms"} -2023-12-15T14:13:39.992Z INFO sending PrepareRequest {"height": 90, "view": 0} -2023-12-15T14:13:39.992Z INFO sending Commit {"height": 90, "view": 0} -2023-12-15T14:13:39.992Z INFO approving block {"height": 90, "hash": "92e95d86c062d399cf5ea4b9c3424a81beb6229d1fc0f77552121857468c3496", "tx_count": 1, "merkle": "030aeaa6f420c7ef8c2047e489c77a077bf4ede8250e0c4262dc86115eeffd52", "prev": "6af3f39c08bc7d79541ef9d5223234fe0f451a4c75a3e4e95a35e0857787e826"} -2023-12-15T14:13:39.993Z INFO runtime log {"tx": "52fdef5e1186dc62420c0e25e8edf47b077ac789e447208cefc720f4a6ea0a03", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:13:39.994Z INFO initializing dbft {"height": 91, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:39.994Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 1} -2023-12-15T14:13:39.994Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 1} -2023-12-15T14:13:39.994Z debug frostfs-node/morph.go:229 new block {"index": 90} -2023-12-15T14:13:40.990Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 90, "blockHeight": 90, "took": "2.466432ms"} -2023-12-15T14:13:40.993Z INFO sending PrepareRequest {"height": 91, "view": 0} -2023-12-15T14:13:40.993Z INFO sending Commit {"height": 91, "view": 0} -2023-12-15T14:13:40.993Z INFO approving block {"height": 91, "hash": "6658341efdc5c4f215d76767d54fcb08aa9b793eb3857b4c5526b176445e07f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92e95d86c062d399cf5ea4b9c3424a81beb6229d1fc0f77552121857468c3496"} -2023-12-15T14:13:40.994Z INFO initializing dbft {"height": 92, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:40.994Z debug frostfs-node/morph.go:229 new block {"index": 91} -2023-12-15T14:13:41.992Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 91, "blockHeight": 91, "took": "4.13894ms"} -2023-12-15T14:13:41.994Z INFO sending PrepareRequest {"height": 92, "view": 0} -2023-12-15T14:13:41.995Z INFO sending Commit {"height": 92, "view": 0} -2023-12-15T14:13:41.995Z INFO approving block {"height": 92, "hash": "0e85d3931d7417de736dec765d6ebcb99705a3fc2e2477730e74713631bb8ee3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6658341efdc5c4f215d76767d54fcb08aa9b793eb3857b4c5526b176445e07f5"} -2023-12-15T14:13:41.996Z INFO initializing dbft {"height": 93, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:41.997Z debug frostfs-node/morph.go:229 new block {"index": 92} -2023-12-15T14:13:42.992Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 92, "blockHeight": 92, "took": "3.776345ms"} -2023-12-15T14:13:42.996Z INFO sending PrepareRequest {"height": 93, "view": 0} -2023-12-15T14:13:42.996Z INFO sending Commit {"height": 93, "view": 0} -2023-12-15T14:13:42.997Z INFO approving block {"height": 93, "hash": "b8b188eaa9ebd2e3caf181f31eaf9f4940de1d1645ab682021ec38c35cae5ab0", "tx_count": 1, "merkle": "ce944c850c3da066095ec84908748b39a04ffcb1a53359a268efedaed71a0ad0", "prev": "0e85d3931d7417de736dec765d6ebcb99705a3fc2e2477730e74713631bb8ee3"} -2023-12-15T14:13:42.998Z INFO initializing dbft {"height": 94, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:42.999Z debug frostfs-node/morph.go:229 new block {"index": 93} -2023-12-15T14:13:43.994Z INFO persisted to disk {"blocks": 1, "keys": 40, "headerHeight": 93, "blockHeight": 93, "took": "4.803524ms"} -2023-12-15T14:13:43.998Z INFO sending PrepareRequest {"height": 94, "view": 0} -2023-12-15T14:13:43.999Z INFO sending Commit {"height": 94, "view": 0} -2023-12-15T14:13:43.999Z INFO approving block {"height": 94, "hash": "bb65a9be4ba7539811311866ec6239deeada948370ad6d1a5225d9b03366c453", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8b188eaa9ebd2e3caf181f31eaf9f4940de1d1645ab682021ec38c35cae5ab0"} -2023-12-15T14:13:44.001Z INFO initializing dbft {"height": 95, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:44.001Z debug frostfs-node/morph.go:229 new block {"index": 94} -2023-12-15T14:13:44.994Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 94, "blockHeight": 94, "took": "3.599956ms"} -2023-12-15T14:13:45.000Z INFO sending PrepareRequest {"height": 95, "view": 0} -2023-12-15T14:13:45.000Z INFO sending Commit {"height": 95, "view": 0} -2023-12-15T14:13:45.000Z INFO approving block {"height": 95, "hash": "b447826267953e7546982b0aafd8e0b2f04494b5a6f30d54b716a116a55d4afa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb65a9be4ba7539811311866ec6239deeada948370ad6d1a5225d9b03366c453"} -2023-12-15T14:13:45.002Z INFO initializing dbft {"height": 96, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:45.002Z debug frostfs-node/morph.go:229 new block {"index": 95} -2023-12-15T14:13:45.993Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 95, "blockHeight": 95, "took": "2.430331ms"} -2023-12-15T14:13:46.001Z INFO sending PrepareRequest {"height": 96, "view": 0} -2023-12-15T14:13:46.001Z INFO sending Commit {"height": 96, "view": 0} -2023-12-15T14:13:46.001Z INFO approving block {"height": 96, "hash": "7a779dce76de0fe86dd2055d5acf69b5ade7dda572f32f1505c2bed185263b68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b447826267953e7546982b0aafd8e0b2f04494b5a6f30d54b716a116a55d4afa"} -2023-12-15T14:13:46.002Z INFO initializing dbft {"height": 97, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:46.003Z debug frostfs-node/morph.go:229 new block {"index": 96} -2023-12-15T14:13:46.994Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 96, "blockHeight": 96, "took": "3.380503ms"} -2023-12-15T14:13:47.003Z INFO sending PrepareRequest {"height": 97, "view": 0} -2023-12-15T14:13:47.003Z INFO sending Commit {"height": 97, "view": 0} -2023-12-15T14:13:47.003Z INFO approving block {"height": 97, "hash": "44a4d4c452123b2ccc6232ecef27759f42d61a4d059ac92d5421dad7d04b82ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a779dce76de0fe86dd2055d5acf69b5ade7dda572f32f1505c2bed185263b68"} -2023-12-15T14:13:47.004Z INFO initializing dbft {"height": 98, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:47.005Z debug frostfs-node/morph.go:229 new block {"index": 97} -2023-12-15T14:13:47.994Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 97, "blockHeight": 97, "took": "2.351259ms"} -2023-12-15T14:13:48.004Z INFO sending PrepareRequest {"height": 98, "view": 0} -2023-12-15T14:13:48.005Z INFO sending Commit {"height": 98, "view": 0} -2023-12-15T14:13:48.005Z INFO approving block {"height": 98, "hash": "e1cd975edde72a89299a17ab06cb877eb4cee8943c222dc40b4ae874c655de96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44a4d4c452123b2ccc6232ecef27759f42d61a4d059ac92d5421dad7d04b82ab"} -2023-12-15T14:13:48.006Z INFO initializing dbft {"height": 99, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:48.006Z debug frostfs-node/morph.go:229 new block {"index": 98} -2023-12-15T14:13:48.995Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 98, "blockHeight": 98, "took": "2.960707ms"} -2023-12-15T14:13:49.006Z INFO sending PrepareRequest {"height": 99, "view": 0} -2023-12-15T14:13:49.006Z INFO sending Commit {"height": 99, "view": 0} -2023-12-15T14:13:49.006Z INFO approving block {"height": 99, "hash": "aca578b68a273b184807a6976765cd853ae734bb148c206392c0a4318c611321", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1cd975edde72a89299a17ab06cb877eb4cee8943c222dc40b4ae874c655de96"} -2023-12-15T14:13:49.007Z INFO initializing dbft {"height": 100, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:49.008Z debug frostfs-node/morph.go:229 new block {"index": 99} -2023-12-15T14:13:49.996Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 99, "blockHeight": 99, "took": "2.72836ms"} -2023-12-15T14:13:50.007Z INFO sending PrepareRequest {"height": 100, "view": 0} -2023-12-15T14:13:50.008Z INFO sending Commit {"height": 100, "view": 0} -2023-12-15T14:13:50.008Z INFO approving block {"height": 100, "hash": "20ee5b7e8d93d16fa94cfc0cc668a9352172b834934ea71719bb0505d1ff5a85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aca578b68a273b184807a6976765cd853ae734bb148c206392c0a4318c611321"} -2023-12-15T14:13:50.008Z INFO initializing dbft {"height": 101, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:50.009Z debug frostfs-node/morph.go:229 new block {"index": 100} -2023-12-15T14:13:50.995Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 100, "blockHeight": 100, "took": "2.317659ms"} -2023-12-15T14:13:51.009Z INFO sending PrepareRequest {"height": 101, "view": 0} -2023-12-15T14:13:51.009Z INFO sending Commit {"height": 101, "view": 0} -2023-12-15T14:13:51.009Z INFO approving block {"height": 101, "hash": "e060c9238df822c3848dd0ef2ad995a20c0590c030fb8a9d8ffd976a66023d15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20ee5b7e8d93d16fa94cfc0cc668a9352172b834934ea71719bb0505d1ff5a85"} -2023-12-15T14:13:51.010Z INFO initializing dbft {"height": 102, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:51.010Z debug frostfs-node/morph.go:229 new block {"index": 101} -2023-12-15T14:13:51.999Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 101, "blockHeight": 101, "took": "5.655416ms"} -2023-12-15T14:13:52.010Z INFO sending PrepareRequest {"height": 102, "view": 0} -2023-12-15T14:13:52.011Z INFO sending Commit {"height": 102, "view": 0} -2023-12-15T14:13:52.011Z INFO approving block {"height": 102, "hash": "12e6e06407ca3856cf91e4c5a31de0ddf63703312912a36115c6f0ec41239f50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e060c9238df822c3848dd0ef2ad995a20c0590c030fb8a9d8ffd976a66023d15"} -2023-12-15T14:13:52.012Z INFO initializing dbft {"height": 103, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:52.012Z debug frostfs-node/morph.go:229 new block {"index": 102} -2023-12-15T14:13:52.998Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 102, "blockHeight": 102, "took": "3.85467ms"} -2023-12-15T14:13:53.012Z INFO sending PrepareRequest {"height": 103, "view": 0} -2023-12-15T14:13:53.012Z INFO sending Commit {"height": 103, "view": 0} -2023-12-15T14:13:53.012Z INFO approving block {"height": 103, "hash": "9893ec66db0ecbdb3501cbc45d9bb0642f42480d7157ca9acbe1e65b280d50ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12e6e06407ca3856cf91e4c5a31de0ddf63703312912a36115c6f0ec41239f50"} -2023-12-15T14:13:53.014Z INFO initializing dbft {"height": 104, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:53.014Z debug frostfs-node/morph.go:229 new block {"index": 103} -2023-12-15T14:13:54.000Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 103, "blockHeight": 103, "took": "4.935059ms"} -2023-12-15T14:13:54.013Z INFO sending PrepareRequest {"height": 104, "view": 0} -2023-12-15T14:13:54.013Z INFO sending Commit {"height": 104, "view": 0} -2023-12-15T14:13:54.014Z INFO approving block {"height": 104, "hash": "ebec405e8416dcb819fed39f350485c8544ebd31fcc40172ced3ac021ee581ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9893ec66db0ecbdb3501cbc45d9bb0642f42480d7157ca9acbe1e65b280d50ce"} -2023-12-15T14:13:54.014Z INFO initializing dbft {"height": 105, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:54.015Z debug frostfs-node/morph.go:229 new block {"index": 104} -2023-12-15T14:13:55.001Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 104, "blockHeight": 104, "took": "5.866955ms"} -2023-12-15T14:13:55.015Z INFO sending PrepareRequest {"height": 105, "view": 0} -2023-12-15T14:13:55.015Z INFO sending Commit {"height": 105, "view": 0} -2023-12-15T14:13:55.016Z INFO approving block {"height": 105, "hash": "d2fbfaec4a8b1fa21532879cd6cd6a35e736efb53a63289f9bda9bbcc70ce316", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebec405e8416dcb819fed39f350485c8544ebd31fcc40172ced3ac021ee581ab"} -2023-12-15T14:13:55.017Z INFO initializing dbft {"height": 106, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:55.017Z debug frostfs-node/morph.go:229 new block {"index": 105} -2023-12-15T14:13:56.000Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 105, "blockHeight": 105, "took": "4.045135ms"} -2023-12-15T14:13:56.017Z INFO sending PrepareRequest {"height": 106, "view": 0} -2023-12-15T14:13:56.017Z INFO sending Commit {"height": 106, "view": 0} -2023-12-15T14:13:56.017Z INFO approving block {"height": 106, "hash": "21265d93a9740fb55d8135407057b79c4d36432c42101551a1045d99dddefd14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2fbfaec4a8b1fa21532879cd6cd6a35e736efb53a63289f9bda9bbcc70ce316"} -2023-12-15T14:13:56.019Z INFO initializing dbft {"height": 107, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:56.019Z debug frostfs-node/morph.go:229 new block {"index": 106} -2023-12-15T14:13:57.000Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 106, "blockHeight": 106, "took": "3.65687ms"} -2023-12-15T14:13:57.018Z INFO sending PrepareRequest {"height": 107, "view": 0} -2023-12-15T14:13:57.018Z INFO sending Commit {"height": 107, "view": 0} -2023-12-15T14:13:57.018Z INFO approving block {"height": 107, "hash": "59e7cfe35b66543efdaa0a93e24f6424c5e6e506ff245add1b562b7198f482fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21265d93a9740fb55d8135407057b79c4d36432c42101551a1045d99dddefd14"} -2023-12-15T14:13:57.019Z INFO initializing dbft {"height": 108, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:57.019Z debug frostfs-node/morph.go:229 new block {"index": 107} -2023-12-15T14:13:58.002Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 107, "blockHeight": 107, "took": "5.380396ms"} -2023-12-15T14:13:58.019Z INFO sending PrepareRequest {"height": 108, "view": 0} -2023-12-15T14:13:58.019Z INFO sending Commit {"height": 108, "view": 0} -2023-12-15T14:13:58.019Z INFO approving block {"height": 108, "hash": "264e96659361e24dc108136ab3bea47bbc7a5c9a9c6e92eea70ded5a2c9bbbf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59e7cfe35b66543efdaa0a93e24f6424c5e6e506ff245add1b562b7198f482fa"} -2023-12-15T14:13:58.020Z INFO initializing dbft {"height": 109, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:58.020Z debug frostfs-node/morph.go:229 new block {"index": 108} -2023-12-15T14:13:59.003Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 108, "blockHeight": 108, "took": "5.553482ms"} -2023-12-15T14:13:59.020Z INFO sending PrepareRequest {"height": 109, "view": 0} -2023-12-15T14:13:59.020Z INFO sending Commit {"height": 109, "view": 0} -2023-12-15T14:13:59.020Z INFO approving block {"height": 109, "hash": "5e89ff3dadaeead7ce1ebf9b24f7c8a267a7427d4cf98c28363e20538e8a0c4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "264e96659361e24dc108136ab3bea47bbc7a5c9a9c6e92eea70ded5a2c9bbbf9"} -2023-12-15T14:13:59.021Z INFO initializing dbft {"height": 110, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:13:59.022Z debug frostfs-node/morph.go:229 new block {"index": 109} -2023-12-15T14:14:00.003Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 109, "blockHeight": 109, "took": "5.765518ms"} -2023-12-15T14:14:00.021Z INFO sending PrepareRequest {"height": 110, "view": 0} -2023-12-15T14:14:00.022Z INFO sending Commit {"height": 110, "view": 0} -2023-12-15T14:14:00.022Z INFO approving block {"height": 110, "hash": "76b02856811a84fe6aa823541750e6bfc3fbfa8c4eede9f33552f30e748dfca7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e89ff3dadaeead7ce1ebf9b24f7c8a267a7427d4cf98c28363e20538e8a0c4c"} -2023-12-15T14:14:00.023Z INFO initializing dbft {"height": 111, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:00.023Z debug frostfs-node/morph.go:229 new block {"index": 110} -2023-12-15T14:14:01.004Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 110, "blockHeight": 110, "took": "5.790169ms"} -2023-12-15T14:14:01.023Z INFO sending PrepareRequest {"height": 111, "view": 0} -2023-12-15T14:14:01.023Z INFO sending Commit {"height": 111, "view": 0} -2023-12-15T14:14:01.024Z INFO approving block {"height": 111, "hash": "8aa888327d059e260fb5916390fa12a7ce58a1dbab0a18a27019a2bb052d0296", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76b02856811a84fe6aa823541750e6bfc3fbfa8c4eede9f33552f30e748dfca7"} -2023-12-15T14:14:01.025Z INFO initializing dbft {"height": 112, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:01.025Z debug frostfs-node/morph.go:229 new block {"index": 111} -2023-12-15T14:14:02.001Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 111, "blockHeight": 111, "took": "2.500293ms"} -2023-12-15T14:14:02.024Z INFO sending PrepareRequest {"height": 112, "view": 0} -2023-12-15T14:14:02.025Z INFO sending Commit {"height": 112, "view": 0} -2023-12-15T14:14:02.025Z INFO approving block {"height": 112, "hash": "fd1ec68f4967cac254585571b3bdbd6d325c8a8a693fb9813ceac867aef72440", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8aa888327d059e260fb5916390fa12a7ce58a1dbab0a18a27019a2bb052d0296"} -2023-12-15T14:14:02.026Z INFO initializing dbft {"height": 113, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:02.026Z debug frostfs-node/morph.go:229 new block {"index": 112} -2023-12-15T14:14:03.004Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 112, "blockHeight": 112, "took": "4.9441ms"} -2023-12-15T14:14:03.026Z INFO sending PrepareRequest {"height": 113, "view": 0} -2023-12-15T14:14:03.026Z INFO sending Commit {"height": 113, "view": 0} -2023-12-15T14:14:03.027Z INFO approving block {"height": 113, "hash": "22fc8fd38fcc63ac5c1e1644b2d9ebc0d8f802068e1d14070a31ddbd52e7d8db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd1ec68f4967cac254585571b3bdbd6d325c8a8a693fb9813ceac867aef72440"} -2023-12-15T14:14:03.028Z INFO initializing dbft {"height": 114, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:03.028Z debug frostfs-node/morph.go:229 new block {"index": 113} -2023-12-15T14:14:04.003Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 113, "blockHeight": 113, "took": "2.795736ms"} -2023-12-15T14:14:04.027Z INFO sending PrepareRequest {"height": 114, "view": 0} -2023-12-15T14:14:04.028Z INFO sending Commit {"height": 114, "view": 0} -2023-12-15T14:14:04.028Z INFO approving block {"height": 114, "hash": "84b6ac0e0b240acf613ab80d23a517542c9df7edaea68b0c2bc9845e94a5a757", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22fc8fd38fcc63ac5c1e1644b2d9ebc0d8f802068e1d14070a31ddbd52e7d8db"} -2023-12-15T14:14:04.028Z INFO initializing dbft {"height": 115, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:04.029Z debug frostfs-node/morph.go:229 new block {"index": 114} -2023-12-15T14:14:05.003Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 114, "blockHeight": 114, "took": "2.975776ms"} -2023-12-15T14:14:05.029Z INFO sending PrepareRequest {"height": 115, "view": 0} -2023-12-15T14:14:05.029Z INFO sending Commit {"height": 115, "view": 0} -2023-12-15T14:14:05.029Z INFO approving block {"height": 115, "hash": "10ca699b162cb891e1e30ff7fb3c2336f074d041599e08d6389750d58cc4a473", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84b6ac0e0b240acf613ab80d23a517542c9df7edaea68b0c2bc9845e94a5a757"} -2023-12-15T14:14:05.030Z INFO initializing dbft {"height": 116, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:05.031Z debug frostfs-node/morph.go:229 new block {"index": 115} -2023-12-15T14:14:06.004Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 115, "blockHeight": 115, "took": "2.716009ms"} -2023-12-15T14:14:06.031Z INFO sending PrepareRequest {"height": 116, "view": 0} -2023-12-15T14:14:06.031Z INFO sending Commit {"height": 116, "view": 0} -2023-12-15T14:14:06.031Z INFO approving block {"height": 116, "hash": "60c00f3ec04630ad9c830af9a759c16d16c97e0bafa1bfe4ad301259f6eb8558", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10ca699b162cb891e1e30ff7fb3c2336f074d041599e08d6389750d58cc4a473"} -2023-12-15T14:14:06.033Z INFO initializing dbft {"height": 117, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:06.033Z debug frostfs-node/morph.go:229 new block {"index": 116} -2023-12-15T14:14:07.007Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 116, "blockHeight": 116, "took": "5.806651ms"} -2023-12-15T14:14:07.033Z INFO sending PrepareRequest {"height": 117, "view": 0} -2023-12-15T14:14:07.033Z INFO sending Commit {"height": 117, "view": 0} -2023-12-15T14:14:07.033Z INFO approving block {"height": 117, "hash": "daa8798ea16844ba7987705f3eea0fd82b5c4fa7495d39bce0b6f2ba18db8016", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60c00f3ec04630ad9c830af9a759c16d16c97e0bafa1bfe4ad301259f6eb8558"} -2023-12-15T14:14:07.034Z INFO initializing dbft {"height": 118, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:07.035Z debug frostfs-node/morph.go:229 new block {"index": 117} -2023-12-15T14:14:07.037Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:14:07.041Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:14:07.041Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:14:08.009Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 117, "blockHeight": 117, "took": "6.200105ms"} -2023-12-15T14:14:08.034Z INFO sending PrepareRequest {"height": 118, "view": 0} -2023-12-15T14:14:08.035Z INFO sending Commit {"height": 118, "view": 0} -2023-12-15T14:14:08.035Z INFO approving block {"height": 118, "hash": "88a284c1dccd6c3d723f4a27ee2990ef7fd7e868a5ef0c2fefb844e3a4bd4ee3", "tx_count": 2, "merkle": "67c4a1f067a4f578c975ee8a1cc8bb773d87ea5462c51e7d22c8524b884e666f", "prev": "daa8798ea16844ba7987705f3eea0fd82b5c4fa7495d39bce0b6f2ba18db8016"} -2023-12-15T14:14:08.036Z INFO runtime log {"tx": "a7c9009ddab455bd0ab2c8452e77f6212954e8e85df6e92c4b6c3815f98fa3a5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:14:08.036Z INFO runtime log {"tx": "a7c9009ddab455bd0ab2c8452e77f6212954e8e85df6e92c4b6c3815f98fa3a5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:14:08.037Z INFO initializing dbft {"height": 119, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:08.038Z debug frostfs-node/morph.go:229 new block {"index": 118} -2023-12-15T14:14:09.010Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 118, "blockHeight": 118, "took": "7.154015ms"} -2023-12-15T14:14:09.036Z INFO sending PrepareRequest {"height": 119, "view": 0} -2023-12-15T14:14:09.036Z INFO sending Commit {"height": 119, "view": 0} -2023-12-15T14:14:09.037Z INFO approving block {"height": 119, "hash": "3caf8e6c17972becd27bc6626e34e61e92a014f3bde5e53ed51f6f70fc506efd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88a284c1dccd6c3d723f4a27ee2990ef7fd7e868a5ef0c2fefb844e3a4bd4ee3"} -2023-12-15T14:14:09.038Z INFO initializing dbft {"height": 120, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:09.038Z debug frostfs-node/morph.go:229 new block {"index": 119} -2023-12-15T14:14:10.007Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 119, "blockHeight": 119, "took": "3.269085ms"} -2023-12-15T14:14:10.038Z INFO sending PrepareRequest {"height": 120, "view": 0} -2023-12-15T14:14:10.038Z INFO sending Commit {"height": 120, "view": 0} -2023-12-15T14:14:10.038Z INFO approving block {"height": 120, "hash": "2f7355a4c1a35b96c96014d1e3e0401ae7a60d5a6e7cb9df23d43722e29b13f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3caf8e6c17972becd27bc6626e34e61e92a014f3bde5e53ed51f6f70fc506efd"} -2023-12-15T14:14:10.039Z INFO initializing dbft {"height": 121, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:10.040Z debug frostfs-node/morph.go:229 new block {"index": 120} -2023-12-15T14:14:11.007Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 120, "blockHeight": 120, "took": "2.619887ms"} -2023-12-15T14:14:11.039Z INFO sending PrepareRequest {"height": 121, "view": 0} -2023-12-15T14:14:11.039Z INFO sending Commit {"height": 121, "view": 0} -2023-12-15T14:14:11.039Z INFO approving block {"height": 121, "hash": "203e101c186506b364bded26e096b79a08a4844ba40d9e5926b409b8b0659cfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f7355a4c1a35b96c96014d1e3e0401ae7a60d5a6e7cb9df23d43722e29b13f5"} -2023-12-15T14:14:11.040Z INFO initializing dbft {"height": 122, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:11.041Z debug frostfs-node/morph.go:229 new block {"index": 121} -2023-12-15T14:14:12.009Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 121, "blockHeight": 121, "took": "3.605655ms"} -2023-12-15T14:14:12.041Z INFO sending PrepareRequest {"height": 122, "view": 0} -2023-12-15T14:14:12.041Z INFO sending Commit {"height": 122, "view": 0} -2023-12-15T14:14:12.041Z INFO approving block {"height": 122, "hash": "d7a2a9b7df4dee477d99877eccf68ff37c02cf0fa9cafaf7f836bf9b629951bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "203e101c186506b364bded26e096b79a08a4844ba40d9e5926b409b8b0659cfd"} -2023-12-15T14:14:12.042Z INFO initializing dbft {"height": 123, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:12.042Z debug frostfs-node/morph.go:229 new block {"index": 122} -2023-12-15T14:14:13.009Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 122, "blockHeight": 122, "took": "3.944925ms"} -2023-12-15T14:14:13.042Z INFO sending PrepareRequest {"height": 123, "view": 0} -2023-12-15T14:14:13.043Z INFO sending Commit {"height": 123, "view": 0} -2023-12-15T14:14:13.043Z INFO approving block {"height": 123, "hash": "d2f52a98a54c3cea4cc59bbc69d8a6c762b64c9a8b5f92badb609a7479ff1718", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7a2a9b7df4dee477d99877eccf68ff37c02cf0fa9cafaf7f836bf9b629951bf"} -2023-12-15T14:14:13.044Z INFO initializing dbft {"height": 124, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:13.045Z debug frostfs-node/morph.go:229 new block {"index": 123} -2023-12-15T14:14:14.010Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 123, "blockHeight": 123, "took": "3.461872ms"} -2023-12-15T14:14:14.044Z INFO sending PrepareRequest {"height": 124, "view": 0} -2023-12-15T14:14:14.044Z INFO sending Commit {"height": 124, "view": 0} -2023-12-15T14:14:14.045Z INFO approving block {"height": 124, "hash": "4c37d4b07ed192f099b8e009d31b7542276797383fc494ccb1c4a0587998b782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2f52a98a54c3cea4cc59bbc69d8a6c762b64c9a8b5f92badb609a7479ff1718"} -2023-12-15T14:14:14.046Z INFO initializing dbft {"height": 125, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:14.047Z debug frostfs-node/morph.go:229 new block {"index": 124} -2023-12-15T14:14:15.010Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 124, "blockHeight": 124, "took": "2.939966ms"} -2023-12-15T14:14:15.046Z INFO sending PrepareRequest {"height": 125, "view": 0} -2023-12-15T14:14:15.046Z INFO sending Commit {"height": 125, "view": 0} -2023-12-15T14:14:15.046Z INFO approving block {"height": 125, "hash": "bb0ced9791eea8a1b41e6cc710e4dd65acaf68707af6c2e765489d1157d29330", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c37d4b07ed192f099b8e009d31b7542276797383fc494ccb1c4a0587998b782"} -2023-12-15T14:14:15.048Z INFO initializing dbft {"height": 126, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:15.048Z debug frostfs-node/morph.go:229 new block {"index": 125} -2023-12-15T14:14:16.011Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 125, "blockHeight": 125, "took": "3.997547ms"} -2023-12-15T14:14:16.047Z INFO sending PrepareRequest {"height": 126, "view": 0} -2023-12-15T14:14:16.047Z INFO sending Commit {"height": 126, "view": 0} -2023-12-15T14:14:16.048Z INFO approving block {"height": 126, "hash": "9dea7517e02c0c0d15d0308b1a3b8ceed35c7530c1f3035a8227e20a869149d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb0ced9791eea8a1b41e6cc710e4dd65acaf68707af6c2e765489d1157d29330"} -2023-12-15T14:14:16.049Z INFO initializing dbft {"height": 127, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:16.049Z debug frostfs-node/morph.go:229 new block {"index": 126} -2023-12-15T14:14:17.013Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 126, "blockHeight": 126, "took": "4.751992ms"} -2023-12-15T14:14:17.049Z INFO sending PrepareRequest {"height": 127, "view": 0} -2023-12-15T14:14:17.049Z INFO sending Commit {"height": 127, "view": 0} -2023-12-15T14:14:17.049Z INFO approving block {"height": 127, "hash": "b54e3998135fd3a89e3537adb04eec911a2f0252f6a9edf81dcb98be4cd61ac1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9dea7517e02c0c0d15d0308b1a3b8ceed35c7530c1f3035a8227e20a869149d2"} -2023-12-15T14:14:17.050Z INFO initializing dbft {"height": 128, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:17.051Z debug frostfs-node/morph.go:229 new block {"index": 127} -2023-12-15T14:14:18.013Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 127, "blockHeight": 127, "took": "3.952125ms"} -2023-12-15T14:14:18.050Z INFO sending PrepareRequest {"height": 128, "view": 0} -2023-12-15T14:14:18.050Z INFO sending Commit {"height": 128, "view": 0} -2023-12-15T14:14:18.050Z INFO approving block {"height": 128, "hash": "50d9b9590053ce7e7c7fbf2585a92baa793ce01d2d258e54c4ca98146fa79a62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b54e3998135fd3a89e3537adb04eec911a2f0252f6a9edf81dcb98be4cd61ac1"} -2023-12-15T14:14:18.051Z INFO initializing dbft {"height": 129, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:18.051Z debug frostfs-node/morph.go:229 new block {"index": 128} -2023-12-15T14:14:19.012Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 128, "blockHeight": 128, "took": "2.480412ms"} -2023-12-15T14:14:19.052Z INFO sending PrepareRequest {"height": 129, "view": 0} -2023-12-15T14:14:19.052Z INFO sending Commit {"height": 129, "view": 0} -2023-12-15T14:14:19.052Z INFO approving block {"height": 129, "hash": "58871f6ffe97e03852c0165ccbc21cb3a8d45883a8975a3f929a69cee2c118ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50d9b9590053ce7e7c7fbf2585a92baa793ce01d2d258e54c4ca98146fa79a62"} -2023-12-15T14:14:19.053Z INFO initializing dbft {"height": 130, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:19.054Z debug frostfs-node/morph.go:229 new block {"index": 129} -2023-12-15T14:14:20.013Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 129, "blockHeight": 129, "took": "2.983837ms"} -2023-12-15T14:14:20.053Z INFO sending PrepareRequest {"height": 130, "view": 0} -2023-12-15T14:14:20.053Z INFO sending Commit {"height": 130, "view": 0} -2023-12-15T14:14:20.054Z INFO approving block {"height": 130, "hash": "915693ed139f2eee54df8f3266333154c7c807810b48ed0fcac6f959863405f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58871f6ffe97e03852c0165ccbc21cb3a8d45883a8975a3f929a69cee2c118ef"} -2023-12-15T14:14:20.055Z INFO initializing dbft {"height": 131, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:20.056Z debug frostfs-node/morph.go:229 new block {"index": 130} -2023-12-15T14:14:21.015Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 130, "blockHeight": 130, "took": "4.463996ms"} -2023-12-15T14:14:21.055Z INFO sending PrepareRequest {"height": 131, "view": 0} -2023-12-15T14:14:21.055Z INFO sending Commit {"height": 131, "view": 0} -2023-12-15T14:14:21.055Z INFO approving block {"height": 131, "hash": "65a2f0fa98f2b3284851b539d0b53dd4fe5ee2db3df7dfbb2ccce011ade5c338", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "915693ed139f2eee54df8f3266333154c7c807810b48ed0fcac6f959863405f4"} -2023-12-15T14:14:21.056Z INFO initializing dbft {"height": 132, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:21.057Z debug frostfs-node/morph.go:229 new block {"index": 131} -2023-12-15T14:14:22.014Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 131, "blockHeight": 131, "took": "2.619936ms"} -2023-12-15T14:14:22.056Z INFO sending PrepareRequest {"height": 132, "view": 0} -2023-12-15T14:14:22.056Z INFO sending Commit {"height": 132, "view": 0} -2023-12-15T14:14:22.057Z INFO approving block {"height": 132, "hash": "55eb8dd8383ac3fe568cd54440359573219cdcf1b185fe6c8bb7865063a5a30d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65a2f0fa98f2b3284851b539d0b53dd4fe5ee2db3df7dfbb2ccce011ade5c338"} -2023-12-15T14:14:22.057Z INFO initializing dbft {"height": 133, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:22.058Z debug frostfs-node/morph.go:229 new block {"index": 132} -2023-12-15T14:14:23.016Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 132, "blockHeight": 132, "took": "4.125545ms"} -2023-12-15T14:14:23.058Z INFO sending PrepareRequest {"height": 133, "view": 0} -2023-12-15T14:14:23.058Z INFO sending Commit {"height": 133, "view": 0} -2023-12-15T14:14:23.058Z INFO approving block {"height": 133, "hash": "af6369f63c8fe08109dbc5c26eb4d8f1056ddc66950bd2fc2ed249e59452577e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55eb8dd8383ac3fe568cd54440359573219cdcf1b185fe6c8bb7865063a5a30d"} -2023-12-15T14:14:23.060Z INFO initializing dbft {"height": 134, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:23.060Z debug frostfs-node/morph.go:229 new block {"index": 133} -2023-12-15T14:14:24.016Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 133, "blockHeight": 133, "took": "3.450576ms"} -2023-12-15T14:14:24.059Z INFO sending PrepareRequest {"height": 134, "view": 0} -2023-12-15T14:14:24.060Z INFO sending Commit {"height": 134, "view": 0} -2023-12-15T14:14:24.060Z INFO approving block {"height": 134, "hash": "0c8a15fc40269f5ed5fb07deb71902957e27824236bf491ee6e6d87962e95d21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af6369f63c8fe08109dbc5c26eb4d8f1056ddc66950bd2fc2ed249e59452577e"} -2023-12-15T14:14:24.061Z INFO initializing dbft {"height": 135, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:24.062Z debug frostfs-node/morph.go:229 new block {"index": 134} -2023-12-15T14:14:25.019Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 134, "blockHeight": 134, "took": "5.874335ms"} -2023-12-15T14:14:25.061Z INFO sending PrepareRequest {"height": 135, "view": 0} -2023-12-15T14:14:25.061Z INFO sending Commit {"height": 135, "view": 0} -2023-12-15T14:14:25.062Z INFO approving block {"height": 135, "hash": "75707aa7656fbddd9aed86305f214cc650a3a23d688fd9933dfa019e86fefd7e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c8a15fc40269f5ed5fb07deb71902957e27824236bf491ee6e6d87962e95d21"} -2023-12-15T14:14:25.063Z INFO initializing dbft {"height": 136, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:25.063Z debug frostfs-node/morph.go:229 new block {"index": 135} -2023-12-15T14:14:26.018Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 135, "blockHeight": 135, "took": "3.948651ms"} -2023-12-15T14:14:26.063Z INFO sending PrepareRequest {"height": 136, "view": 0} -2023-12-15T14:14:26.063Z INFO sending Commit {"height": 136, "view": 0} -2023-12-15T14:14:26.063Z INFO approving block {"height": 136, "hash": "fd8f3cdd84940d5afd99d8c86717de785cd091a20bc7ddb82b25f91c756af8d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75707aa7656fbddd9aed86305f214cc650a3a23d688fd9933dfa019e86fefd7e"} -2023-12-15T14:14:26.065Z INFO initializing dbft {"height": 137, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:26.065Z debug frostfs-node/morph.go:229 new block {"index": 136} -2023-12-15T14:14:27.019Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 136, "blockHeight": 136, "took": "4.338734ms"} -2023-12-15T14:14:27.064Z INFO sending PrepareRequest {"height": 137, "view": 0} -2023-12-15T14:14:27.064Z INFO sending Commit {"height": 137, "view": 0} -2023-12-15T14:14:27.064Z INFO approving block {"height": 137, "hash": "6a093f00c02f3729445d1ede7a32807007fa126b97c7d151a75f52e4f2ea52dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd8f3cdd84940d5afd99d8c86717de785cd091a20bc7ddb82b25f91c756af8d7"} -2023-12-15T14:14:27.065Z INFO initializing dbft {"height": 138, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:27.066Z debug frostfs-node/morph.go:229 new block {"index": 137} -2023-12-15T14:14:28.019Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 137, "blockHeight": 137, "took": "3.877643ms"} -2023-12-15T14:14:28.065Z INFO sending PrepareRequest {"height": 138, "view": 0} -2023-12-15T14:14:28.065Z INFO sending Commit {"height": 138, "view": 0} -2023-12-15T14:14:28.065Z INFO approving block {"height": 138, "hash": "6116208592b6c1e16512e7369ed324c11f208ef3bfdc164f6f155e506cb4f130", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a093f00c02f3729445d1ede7a32807007fa126b97c7d151a75f52e4f2ea52dd"} -2023-12-15T14:14:28.066Z INFO initializing dbft {"height": 139, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:28.066Z debug frostfs-node/morph.go:229 new block {"index": 138} -2023-12-15T14:14:29.020Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 138, "blockHeight": 138, "took": "3.493095ms"} -2023-12-15T14:14:29.067Z INFO sending PrepareRequest {"height": 139, "view": 0} -2023-12-15T14:14:29.067Z INFO sending Commit {"height": 139, "view": 0} -2023-12-15T14:14:29.067Z INFO approving block {"height": 139, "hash": "9540b2a3a7c1c77f6b9f0a532dccac129785ca4c42ba5ec5a6bcd34c8c61f07e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6116208592b6c1e16512e7369ed324c11f208ef3bfdc164f6f155e506cb4f130"} -2023-12-15T14:14:29.068Z INFO initializing dbft {"height": 140, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:29.069Z debug frostfs-node/morph.go:229 new block {"index": 139} -2023-12-15T14:14:30.020Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 139, "blockHeight": 139, "took": "3.529325ms"} -2023-12-15T14:14:30.068Z INFO sending PrepareRequest {"height": 140, "view": 0} -2023-12-15T14:14:30.068Z INFO sending Commit {"height": 140, "view": 0} -2023-12-15T14:14:30.069Z INFO approving block {"height": 140, "hash": "98df8da9fa6431c7d5b0ee02dade628155d141b70d3236a9397f79edbd4fe525", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9540b2a3a7c1c77f6b9f0a532dccac129785ca4c42ba5ec5a6bcd34c8c61f07e"} -2023-12-15T14:14:30.070Z INFO initializing dbft {"height": 141, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:30.070Z debug frostfs-node/morph.go:229 new block {"index": 140} -2023-12-15T14:14:31.021Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 140, "blockHeight": 140, "took": "3.882803ms"} -2023-12-15T14:14:31.070Z INFO sending PrepareRequest {"height": 141, "view": 0} -2023-12-15T14:14:31.070Z INFO sending Commit {"height": 141, "view": 0} -2023-12-15T14:14:31.071Z INFO approving block {"height": 141, "hash": "d2786802941a0be4c92073d6d0d3213db57127a9836936c8f294285ddb974ac8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98df8da9fa6431c7d5b0ee02dade628155d141b70d3236a9397f79edbd4fe525"} -2023-12-15T14:14:31.072Z INFO initializing dbft {"height": 142, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:31.072Z debug frostfs-node/morph.go:229 new block {"index": 141} -2023-12-15T14:14:32.021Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 141, "blockHeight": 141, "took": "3.519772ms"} -2023-12-15T14:14:32.071Z INFO sending PrepareRequest {"height": 142, "view": 0} -2023-12-15T14:14:32.071Z INFO sending Commit {"height": 142, "view": 0} -2023-12-15T14:14:32.072Z INFO approving block {"height": 142, "hash": "98f916f98b63d9df05ac50595697fa8f0769d6fc8c9903a9c84844fa0fbb1e25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2786802941a0be4c92073d6d0d3213db57127a9836936c8f294285ddb974ac8"} -2023-12-15T14:14:32.072Z INFO initializing dbft {"height": 143, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:32.073Z debug frostfs-node/morph.go:229 new block {"index": 142} -2023-12-15T14:14:32.076Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 0, "iteration": 1, "error": "no data for 0 iteration in 0 epoch for consumers's trusts"} -2023-12-15T14:14:33.031Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 142, "blockHeight": 142, "took": "12.00384ms"} -2023-12-15T14:14:33.072Z INFO sending PrepareRequest {"height": 143, "view": 0} -2023-12-15T14:14:33.073Z INFO sending Commit {"height": 143, "view": 0} -2023-12-15T14:14:33.073Z INFO approving block {"height": 143, "hash": "e74db1bfc1aa132fee89433bdb0846e627a293291ffe200521461e8efcb46e56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98f916f98b63d9df05ac50595697fa8f0769d6fc8c9903a9c84844fa0fbb1e25"} -2023-12-15T14:14:33.074Z INFO initializing dbft {"height": 144, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:33.075Z debug frostfs-node/morph.go:229 new block {"index": 143} -2023-12-15T14:14:34.022Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 143, "blockHeight": 143, "took": "2.675044ms"} -2023-12-15T14:14:34.074Z INFO sending PrepareRequest {"height": 144, "view": 0} -2023-12-15T14:14:34.074Z INFO sending Commit {"height": 144, "view": 0} -2023-12-15T14:14:34.074Z INFO approving block {"height": 144, "hash": "93ca3848753c1e5b3346f118b561fe3aa61d7bf5d2d35529936be348b630497a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e74db1bfc1aa132fee89433bdb0846e627a293291ffe200521461e8efcb46e56"} -2023-12-15T14:14:34.075Z INFO initializing dbft {"height": 145, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:34.075Z debug frostfs-node/morph.go:229 new block {"index": 144} -2023-12-15T14:14:35.028Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 144, "blockHeight": 144, "took": "8.714621ms"} -2023-12-15T14:14:35.075Z INFO sending PrepareRequest {"height": 145, "view": 0} -2023-12-15T14:14:35.075Z INFO sending Commit {"height": 145, "view": 0} -2023-12-15T14:14:35.075Z INFO approving block {"height": 145, "hash": "9a6a44fa5444df6afc8fc6e10da295b4774037546b811ea96911660b7f400172", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93ca3848753c1e5b3346f118b561fe3aa61d7bf5d2d35529936be348b630497a"} -2023-12-15T14:14:35.076Z INFO initializing dbft {"height": 146, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:35.077Z debug frostfs-node/morph.go:229 new block {"index": 145} -2023-12-15T14:14:36.026Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 145, "blockHeight": 145, "took": "6.367716ms"} -2023-12-15T14:14:36.077Z INFO sending PrepareRequest {"height": 146, "view": 0} -2023-12-15T14:14:36.078Z INFO sending Commit {"height": 146, "view": 0} -2023-12-15T14:14:36.078Z INFO approving block {"height": 146, "hash": "247379e99fba6c33d00c706046767af899852b8ddf76d07f286ab984dcc64fd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a6a44fa5444df6afc8fc6e10da295b4774037546b811ea96911660b7f400172"} -2023-12-15T14:14:36.080Z INFO initializing dbft {"height": 147, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:36.081Z debug frostfs-node/morph.go:229 new block {"index": 146} -2023-12-15T14:14:37.027Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 146, "blockHeight": 146, "took": "6.380566ms"} -2023-12-15T14:14:37.080Z INFO sending PrepareRequest {"height": 147, "view": 0} -2023-12-15T14:14:37.080Z INFO sending Commit {"height": 147, "view": 0} -2023-12-15T14:14:37.081Z INFO approving block {"height": 147, "hash": "c7a3b2b0b607f7ea853ed8f3409b0cde531cd2a99d070561e20230282a59799e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "247379e99fba6c33d00c706046767af899852b8ddf76d07f286ab984dcc64fd1"} -2023-12-15T14:14:37.082Z INFO initializing dbft {"height": 148, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:37.083Z debug frostfs-node/morph.go:229 new block {"index": 147} -2023-12-15T14:14:38.027Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 147, "blockHeight": 147, "took": "5.016316ms"} -2023-12-15T14:14:38.081Z INFO sending PrepareRequest {"height": 148, "view": 0} -2023-12-15T14:14:38.082Z INFO sending Commit {"height": 148, "view": 0} -2023-12-15T14:14:38.082Z INFO approving block {"height": 148, "hash": "a97c9162662c3f467cb3dba98aac5dce63a8fd12f191c2ab1ba9a343dc6ff80e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7a3b2b0b607f7ea853ed8f3409b0cde531cd2a99d070561e20230282a59799e"} -2023-12-15T14:14:38.083Z INFO initializing dbft {"height": 149, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:38.084Z debug frostfs-node/morph.go:229 new block {"index": 148} -2023-12-15T14:14:39.029Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 148, "blockHeight": 148, "took": "6.617969ms"} -2023-12-15T14:14:39.083Z INFO sending PrepareRequest {"height": 149, "view": 0} -2023-12-15T14:14:39.083Z INFO sending Commit {"height": 149, "view": 0} -2023-12-15T14:14:39.083Z INFO approving block {"height": 149, "hash": "028c1add6036ea069dcbe5b94b6092a7e6762d3e6a5f6d03076fd2988ad96947", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a97c9162662c3f467cb3dba98aac5dce63a8fd12f191c2ab1ba9a343dc6ff80e"} -2023-12-15T14:14:39.085Z INFO initializing dbft {"height": 150, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:39.086Z debug frostfs-node/morph.go:229 new block {"index": 149} -2023-12-15T14:14:39.090Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 1, "iteration": 1, "error": "no data for 0 iteration in 1 epoch for consumers's trusts"} -2023-12-15T14:14:39.092Z info settlement/calls.go:61 start basic income collection {"epoch": 1} -2023-12-15T14:14:40.029Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 149, "blockHeight": 149, "took": "6.160358ms"} -2023-12-15T14:14:40.085Z INFO sending PrepareRequest {"height": 150, "view": 0} -2023-12-15T14:14:40.085Z INFO sending Commit {"height": 150, "view": 0} -2023-12-15T14:14:40.086Z INFO approving block {"height": 150, "hash": "2fa988d38236a3c2d3d8520700f878fe6b407c9879f4fdb9ddf2acf340a004cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "028c1add6036ea069dcbe5b94b6092a7e6762d3e6a5f6d03076fd2988ad96947"} -2023-12-15T14:14:40.087Z INFO initializing dbft {"height": 151, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:40.088Z debug frostfs-node/morph.go:229 new block {"index": 150} -2023-12-15T14:14:41.029Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 150, "blockHeight": 150, "took": "4.47463ms"} -2023-12-15T14:14:41.087Z INFO sending PrepareRequest {"height": 151, "view": 0} -2023-12-15T14:14:41.087Z INFO sending Commit {"height": 151, "view": 0} -2023-12-15T14:14:41.087Z INFO approving block {"height": 151, "hash": "9699a8ae73f5d895323133a7e4c8726e31b364f38984320633fb9faab4f4f570", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fa988d38236a3c2d3d8520700f878fe6b407c9879f4fdb9ddf2acf340a004cd"} -2023-12-15T14:14:41.088Z INFO initializing dbft {"height": 152, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:41.089Z debug frostfs-node/morph.go:229 new block {"index": 151} -2023-12-15T14:14:42.029Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 151, "blockHeight": 151, "took": "3.798665ms"} -2023-12-15T14:14:42.089Z INFO sending PrepareRequest {"height": 152, "view": 0} -2023-12-15T14:14:42.089Z INFO sending Commit {"height": 152, "view": 0} -2023-12-15T14:14:42.089Z INFO approving block {"height": 152, "hash": "5d088082cea6cca6a9bc339a3a59cd561d42e6d17a02af7e8056ce8c505e78ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9699a8ae73f5d895323133a7e4c8726e31b364f38984320633fb9faab4f4f570"} -2023-12-15T14:14:42.090Z INFO initializing dbft {"height": 153, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:42.090Z debug frostfs-node/morph.go:229 new block {"index": 152} -2023-12-15T14:14:43.029Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 152, "blockHeight": 152, "took": "4.099305ms"} -2023-12-15T14:14:43.090Z INFO sending PrepareRequest {"height": 153, "view": 0} -2023-12-15T14:14:43.090Z INFO sending Commit {"height": 153, "view": 0} -2023-12-15T14:14:43.090Z INFO approving block {"height": 153, "hash": "2ce003f1e3df6568cc10b45beae269cb13951fa02ca9f8342bb780fca684184e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d088082cea6cca6a9bc339a3a59cd561d42e6d17a02af7e8056ce8c505e78ca"} -2023-12-15T14:14:43.091Z INFO initializing dbft {"height": 154, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:43.092Z debug frostfs-node/morph.go:229 new block {"index": 153} -2023-12-15T14:14:44.030Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 153, "blockHeight": 153, "took": "3.978757ms"} -2023-12-15T14:14:44.092Z INFO sending PrepareRequest {"height": 154, "view": 0} -2023-12-15T14:14:44.092Z INFO sending Commit {"height": 154, "view": 0} -2023-12-15T14:14:44.092Z INFO approving block {"height": 154, "hash": "5405d33d5959be22f56b05907b6dc5daca41025d83551322c379cfb1a1c37412", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ce003f1e3df6568cc10b45beae269cb13951fa02ca9f8342bb780fca684184e"} -2023-12-15T14:14:44.093Z INFO initializing dbft {"height": 155, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:44.094Z debug frostfs-node/morph.go:229 new block {"index": 154} -2023-12-15T14:14:45.036Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 154, "blockHeight": 154, "took": "9.942436ms"} -2023-12-15T14:14:45.094Z INFO sending PrepareRequest {"height": 155, "view": 0} -2023-12-15T14:14:45.094Z INFO sending Commit {"height": 155, "view": 0} -2023-12-15T14:14:45.094Z INFO approving block {"height": 155, "hash": "13fc1d916f5b0e384d9d0310a2ec80cf48f933515a3e15c48813f06d4c3635e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5405d33d5959be22f56b05907b6dc5daca41025d83551322c379cfb1a1c37412"} -2023-12-15T14:14:45.096Z INFO initializing dbft {"height": 156, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:45.096Z debug frostfs-node/morph.go:229 new block {"index": 155} -2023-12-15T14:14:46.036Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 155, "blockHeight": 155, "took": "8.916496ms"} -2023-12-15T14:14:46.096Z INFO sending PrepareRequest {"height": 156, "view": 0} -2023-12-15T14:14:46.097Z INFO sending Commit {"height": 156, "view": 0} -2023-12-15T14:14:46.097Z INFO approving block {"height": 156, "hash": "411001fe1566db2bc62a6f9bc8796b106bc2fc1bc2f46d68589242617230d6d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13fc1d916f5b0e384d9d0310a2ec80cf48f933515a3e15c48813f06d4c3635e3"} -2023-12-15T14:14:46.098Z INFO initializing dbft {"height": 157, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:46.099Z debug frostfs-node/morph.go:229 new block {"index": 156} -2023-12-15T14:14:47.035Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 156, "blockHeight": 156, "took": "7.008154ms"} -2023-12-15T14:14:47.098Z INFO sending PrepareRequest {"height": 157, "view": 0} -2023-12-15T14:14:47.098Z INFO sending Commit {"height": 157, "view": 0} -2023-12-15T14:14:47.099Z INFO approving block {"height": 157, "hash": "c2c91137c82f281d692903ee51a0df8e6623eb781e76139975305f5ad49ba528", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "411001fe1566db2bc62a6f9bc8796b106bc2fc1bc2f46d68589242617230d6d9"} -2023-12-15T14:14:47.101Z INFO initializing dbft {"height": 158, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:47.101Z debug frostfs-node/morph.go:229 new block {"index": 157} -2023-12-15T14:14:48.034Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 157, "blockHeight": 157, "took": "4.979368ms"} -2023-12-15T14:14:48.100Z INFO sending PrepareRequest {"height": 158, "view": 0} -2023-12-15T14:14:48.100Z INFO sending Commit {"height": 158, "view": 0} -2023-12-15T14:14:48.100Z INFO approving block {"height": 158, "hash": "c969d90b5ab3573bcd5d64adc98de5df29db8490c06c0ef46196d934d512f1b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2c91137c82f281d692903ee51a0df8e6623eb781e76139975305f5ad49ba528"} -2023-12-15T14:14:48.102Z INFO initializing dbft {"height": 159, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:48.103Z debug frostfs-node/morph.go:229 new block {"index": 158} -2023-12-15T14:14:49.036Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 158, "blockHeight": 158, "took": "6.50934ms"} -2023-12-15T14:14:49.101Z INFO sending PrepareRequest {"height": 159, "view": 0} -2023-12-15T14:14:49.102Z INFO sending Commit {"height": 159, "view": 0} -2023-12-15T14:14:49.102Z INFO approving block {"height": 159, "hash": "404b4cfc54ed87f0e46deaeabbdea3a97906744b6142bda22c8da5394be7d9a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c969d90b5ab3573bcd5d64adc98de5df29db8490c06c0ef46196d934d512f1b8"} -2023-12-15T14:14:49.103Z INFO initializing dbft {"height": 160, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:49.104Z debug frostfs-node/morph.go:229 new block {"index": 159} -2023-12-15T14:14:50.040Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 159, "blockHeight": 159, "took": "9.859247ms"} -2023-12-15T14:14:50.103Z INFO sending PrepareRequest {"height": 160, "view": 0} -2023-12-15T14:14:50.104Z INFO sending Commit {"height": 160, "view": 0} -2023-12-15T14:14:50.104Z INFO approving block {"height": 160, "hash": "e88a559e5272e8bf7da5e9d15bcac9464cae417417d2cf9bf5f501dac1736efa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "404b4cfc54ed87f0e46deaeabbdea3a97906744b6142bda22c8da5394be7d9a2"} -2023-12-15T14:14:50.105Z INFO initializing dbft {"height": 161, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:50.106Z debug frostfs-node/morph.go:229 new block {"index": 160} -2023-12-15T14:14:51.049Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 160, "blockHeight": 160, "took": "17.746076ms"} -2023-12-15T14:14:51.105Z INFO sending PrepareRequest {"height": 161, "view": 0} -2023-12-15T14:14:51.105Z INFO sending Commit {"height": 161, "view": 0} -2023-12-15T14:14:51.106Z INFO approving block {"height": 161, "hash": "3405402650b5fc14e4d2eb20e307b4d1d0a981c3c54d2ed966563f72ecaf0f7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e88a559e5272e8bf7da5e9d15bcac9464cae417417d2cf9bf5f501dac1736efa"} -2023-12-15T14:14:51.107Z INFO initializing dbft {"height": 162, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:51.108Z debug frostfs-node/morph.go:229 new block {"index": 161} -2023-12-15T14:14:52.039Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 161, "blockHeight": 161, "took": "7.003314ms"} -2023-12-15T14:14:52.107Z INFO sending PrepareRequest {"height": 162, "view": 0} -2023-12-15T14:14:52.107Z INFO sending Commit {"height": 162, "view": 0} -2023-12-15T14:14:52.107Z INFO approving block {"height": 162, "hash": "a720bc8cc0f9fbe8cc084c9e908519e2886af3c34ff1060fdfbc2e53dafc720f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3405402650b5fc14e4d2eb20e307b4d1d0a981c3c54d2ed966563f72ecaf0f7b"} -2023-12-15T14:14:52.109Z INFO initializing dbft {"height": 163, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:52.110Z debug frostfs-node/morph.go:229 new block {"index": 162} -2023-12-15T14:14:53.040Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 162, "blockHeight": 162, "took": "7.936742ms"} -2023-12-15T14:14:53.109Z INFO sending PrepareRequest {"height": 163, "view": 0} -2023-12-15T14:14:53.109Z INFO sending Commit {"height": 163, "view": 0} -2023-12-15T14:14:53.109Z INFO approving block {"height": 163, "hash": "a07bcbaa2c367393f7a830db4f797600801235a916571450d5cc68feab9cf252", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a720bc8cc0f9fbe8cc084c9e908519e2886af3c34ff1060fdfbc2e53dafc720f"} -2023-12-15T14:14:53.110Z INFO initializing dbft {"height": 164, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:53.111Z debug frostfs-node/morph.go:229 new block {"index": 163} -2023-12-15T14:14:54.042Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 163, "blockHeight": 163, "took": "8.926232ms"} -2023-12-15T14:14:54.111Z INFO sending PrepareRequest {"height": 164, "view": 0} -2023-12-15T14:14:54.112Z INFO sending Commit {"height": 164, "view": 0} -2023-12-15T14:14:54.112Z INFO approving block {"height": 164, "hash": "ed2ba95fb37c28b08cbab9cf8f94b1f791a240fe09310b1318b0cb15bf418fe3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a07bcbaa2c367393f7a830db4f797600801235a916571450d5cc68feab9cf252"} -2023-12-15T14:14:54.115Z INFO initializing dbft {"height": 165, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:54.116Z debug frostfs-node/morph.go:229 new block {"index": 164} -2023-12-15T14:14:55.041Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 164, "blockHeight": 164, "took": "6.881197ms"} -2023-12-15T14:14:55.114Z INFO sending PrepareRequest {"height": 165, "view": 0} -2023-12-15T14:14:55.114Z INFO sending Commit {"height": 165, "view": 0} -2023-12-15T14:14:55.114Z INFO approving block {"height": 165, "hash": "9e54c64eec624ba85a2af5c12f2e64e17ffe0a6fc77424dfd6614089ad13fa7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed2ba95fb37c28b08cbab9cf8f94b1f791a240fe09310b1318b0cb15bf418fe3"} -2023-12-15T14:14:55.116Z INFO initializing dbft {"height": 166, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:55.117Z debug frostfs-node/morph.go:229 new block {"index": 165} -2023-12-15T14:14:56.043Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 165, "blockHeight": 165, "took": "8.089691ms"} -2023-12-15T14:14:56.116Z INFO sending PrepareRequest {"height": 166, "view": 0} -2023-12-15T14:14:56.116Z INFO sending Commit {"height": 166, "view": 0} -2023-12-15T14:14:56.117Z INFO approving block {"height": 166, "hash": "775b62bddd5de8597298d0f0c3d0b2afe03b4b1a8d94de2d3bef60d993924acb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e54c64eec624ba85a2af5c12f2e64e17ffe0a6fc77424dfd6614089ad13fa7c"} -2023-12-15T14:14:56.118Z INFO initializing dbft {"height": 167, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:56.119Z debug frostfs-node/morph.go:229 new block {"index": 166} -2023-12-15T14:14:57.041Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 166, "blockHeight": 166, "took": "5.141407ms"} -2023-12-15T14:14:57.118Z INFO sending PrepareRequest {"height": 167, "view": 0} -2023-12-15T14:14:57.119Z INFO sending Commit {"height": 167, "view": 0} -2023-12-15T14:14:57.119Z INFO approving block {"height": 167, "hash": "7c85e5682986b815a1142635fe4eece1e743b8955bb241b95f2ffd65c7ac7ce1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "775b62bddd5de8597298d0f0c3d0b2afe03b4b1a8d94de2d3bef60d993924acb"} -2023-12-15T14:14:57.121Z INFO initializing dbft {"height": 168, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:57.121Z debug frostfs-node/morph.go:229 new block {"index": 167} -2023-12-15T14:14:57.124Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:14:57.129Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:14:57.129Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:14:58.044Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 167, "blockHeight": 167, "took": "7.31991ms"} -2023-12-15T14:14:58.121Z INFO sending PrepareRequest {"height": 168, "view": 0} -2023-12-15T14:14:58.121Z INFO sending Commit {"height": 168, "view": 0} -2023-12-15T14:14:58.121Z INFO approving block {"height": 168, "hash": "1fb675f7252f45c19db11d6abe949906d3a7a5f8b5c2f588f96de8783d5968e2", "tx_count": 2, "merkle": "200a433bf754507bb84145ae7db882c17dca043048cb108d07cecc95e1e723e9", "prev": "7c85e5682986b815a1142635fe4eece1e743b8955bb241b95f2ffd65c7ac7ce1"} -2023-12-15T14:14:58.122Z INFO runtime log {"tx": "6930237424051e27758d036a36e42bd84f98e516e96c46504e1f3d6d5cca0ce5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:14:58.123Z INFO runtime log {"tx": "6930237424051e27758d036a36e42bd84f98e516e96c46504e1f3d6d5cca0ce5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:14:58.124Z INFO initializing dbft {"height": 169, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:58.125Z debug frostfs-node/morph.go:229 new block {"index": 168} -2023-12-15T14:14:59.045Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 168, "blockHeight": 168, "took": "7.474816ms"} -2023-12-15T14:14:59.123Z INFO sending PrepareRequest {"height": 169, "view": 0} -2023-12-15T14:14:59.123Z INFO sending Commit {"height": 169, "view": 0} -2023-12-15T14:14:59.124Z INFO approving block {"height": 169, "hash": "779298a55f747dd7296a549799d539a4fcec3e03cdd2356a91b98b64b42c5b81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1fb675f7252f45c19db11d6abe949906d3a7a5f8b5c2f588f96de8783d5968e2"} -2023-12-15T14:14:59.125Z INFO initializing dbft {"height": 170, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:14:59.126Z debug frostfs-node/morph.go:229 new block {"index": 169} -2023-12-15T14:15:00.043Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 169, "blockHeight": 169, "took": "4.739376ms"} -2023-12-15T14:15:00.124Z INFO sending PrepareRequest {"height": 170, "view": 0} -2023-12-15T14:15:00.125Z INFO sending Commit {"height": 170, "view": 0} -2023-12-15T14:15:00.125Z INFO approving block {"height": 170, "hash": "8013622c25ea07cb701e572c904287e42ff2d1538f19aeb0238a52ebf0010307", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "779298a55f747dd7296a549799d539a4fcec3e03cdd2356a91b98b64b42c5b81"} -2023-12-15T14:15:00.127Z INFO initializing dbft {"height": 171, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:00.127Z debug frostfs-node/morph.go:229 new block {"index": 170} -2023-12-15T14:15:01.046Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 170, "blockHeight": 170, "took": "6.389061ms"} -2023-12-15T14:15:01.127Z INFO sending PrepareRequest {"height": 171, "view": 0} -2023-12-15T14:15:01.127Z INFO sending Commit {"height": 171, "view": 0} -2023-12-15T14:15:01.128Z INFO approving block {"height": 171, "hash": "b415af6be159ad96d71799636cc61cc2d54dfb264b4bbc0b07d6364f3e8b00db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8013622c25ea07cb701e572c904287e42ff2d1538f19aeb0238a52ebf0010307"} -2023-12-15T14:15:01.129Z INFO initializing dbft {"height": 172, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:01.130Z debug frostfs-node/morph.go:229 new block {"index": 171} -2023-12-15T14:15:02.045Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 171, "blockHeight": 171, "took": "4.526076ms"} -2023-12-15T14:15:02.129Z INFO sending PrepareRequest {"height": 172, "view": 0} -2023-12-15T14:15:02.129Z INFO sending Commit {"height": 172, "view": 0} -2023-12-15T14:15:02.130Z INFO approving block {"height": 172, "hash": "562eb422af1e80551435520a784de865233ab20a28921114c88e79dee5d61bba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b415af6be159ad96d71799636cc61cc2d54dfb264b4bbc0b07d6364f3e8b00db"} -2023-12-15T14:15:02.132Z INFO initializing dbft {"height": 173, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:02.133Z debug frostfs-node/morph.go:229 new block {"index": 172} -2023-12-15T14:15:03.047Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 172, "blockHeight": 172, "took": "6.451499ms"} -2023-12-15T14:15:03.131Z INFO sending PrepareRequest {"height": 173, "view": 0} -2023-12-15T14:15:03.131Z INFO sending Commit {"height": 173, "view": 0} -2023-12-15T14:15:03.132Z INFO approving block {"height": 173, "hash": "a3c3f2a001dc5cd7258ae1c6076aa8ec3c6918394fc710534fa0e69908b486ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "562eb422af1e80551435520a784de865233ab20a28921114c88e79dee5d61bba"} -2023-12-15T14:15:03.134Z INFO initializing dbft {"height": 174, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:03.134Z debug frostfs-node/morph.go:229 new block {"index": 173} -2023-12-15T14:15:04.049Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 173, "blockHeight": 173, "took": "7.084493ms"} -2023-12-15T14:15:04.133Z INFO sending PrepareRequest {"height": 174, "view": 0} -2023-12-15T14:15:04.133Z INFO sending Commit {"height": 174, "view": 0} -2023-12-15T14:15:04.134Z INFO approving block {"height": 174, "hash": "e765fd50d32f035d6b0317972d611fa23fa6b3cbea04e17d2f3a6ad6df64fbcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3c3f2a001dc5cd7258ae1c6076aa8ec3c6918394fc710534fa0e69908b486ad"} -2023-12-15T14:15:04.135Z INFO initializing dbft {"height": 175, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:04.135Z debug frostfs-node/morph.go:229 new block {"index": 174} -2023-12-15T14:15:05.047Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 174, "blockHeight": 174, "took": "4.538982ms"} -2023-12-15T14:15:05.135Z INFO sending PrepareRequest {"height": 175, "view": 0} -2023-12-15T14:15:05.135Z INFO sending Commit {"height": 175, "view": 0} -2023-12-15T14:15:05.136Z INFO approving block {"height": 175, "hash": "5aea310f139a0f7a353f82c760cbe62164c33a53f64d25d86c9b5116a6d164be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e765fd50d32f035d6b0317972d611fa23fa6b3cbea04e17d2f3a6ad6df64fbcd"} -2023-12-15T14:15:05.138Z INFO initializing dbft {"height": 176, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:05.138Z debug frostfs-node/morph.go:229 new block {"index": 175} -2023-12-15T14:15:06.049Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 175, "blockHeight": 175, "took": "5.253683ms"} -2023-12-15T14:15:06.137Z INFO sending PrepareRequest {"height": 176, "view": 0} -2023-12-15T14:15:06.137Z INFO sending Commit {"height": 176, "view": 0} -2023-12-15T14:15:06.137Z INFO approving block {"height": 176, "hash": "4896d03306be4fc435d62c2a160896505939e8ad0556fd3a97176873d929845c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aea310f139a0f7a353f82c760cbe62164c33a53f64d25d86c9b5116a6d164be"} -2023-12-15T14:15:06.139Z INFO initializing dbft {"height": 177, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:06.140Z debug frostfs-node/morph.go:229 new block {"index": 176} -2023-12-15T14:15:07.050Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 176, "blockHeight": 176, "took": "5.965912ms"} -2023-12-15T14:15:07.138Z INFO sending PrepareRequest {"height": 177, "view": 0} -2023-12-15T14:15:07.139Z INFO sending Commit {"height": 177, "view": 0} -2023-12-15T14:15:07.139Z INFO approving block {"height": 177, "hash": "5219200742b4201794cb3b4a5fd6be9a705f8b09c35eecbb0895f9c58c7aee74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4896d03306be4fc435d62c2a160896505939e8ad0556fd3a97176873d929845c"} -2023-12-15T14:15:07.140Z INFO initializing dbft {"height": 178, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:07.141Z debug frostfs-node/morph.go:229 new block {"index": 177} -2023-12-15T14:15:08.053Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 177, "blockHeight": 177, "took": "8.124276ms"} -2023-12-15T14:15:08.140Z INFO sending PrepareRequest {"height": 178, "view": 0} -2023-12-15T14:15:08.141Z INFO sending Commit {"height": 178, "view": 0} -2023-12-15T14:15:08.141Z INFO approving block {"height": 178, "hash": "a246ee33d57aa9dc31518b7515f3e81dd2f40af082a5d1ab713a269502f095d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5219200742b4201794cb3b4a5fd6be9a705f8b09c35eecbb0895f9c58c7aee74"} -2023-12-15T14:15:08.143Z INFO initializing dbft {"height": 179, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:08.144Z debug frostfs-node/morph.go:229 new block {"index": 178} -2023-12-15T14:15:09.052Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 178, "blockHeight": 178, "took": "5.81707ms"} -2023-12-15T14:15:09.143Z INFO sending PrepareRequest {"height": 179, "view": 0} -2023-12-15T14:15:09.143Z INFO sending Commit {"height": 179, "view": 0} -2023-12-15T14:15:09.144Z INFO approving block {"height": 179, "hash": "ee6a490bac027eaae410bc3e912e803834cabcd927e6a851cb3e36035c409cbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a246ee33d57aa9dc31518b7515f3e81dd2f40af082a5d1ab713a269502f095d7"} -2023-12-15T14:15:09.145Z INFO initializing dbft {"height": 180, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:09.146Z debug frostfs-node/morph.go:229 new block {"index": 179} -2023-12-15T14:15:10.055Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 179, "blockHeight": 179, "took": "8.577383ms"} -2023-12-15T14:15:10.145Z INFO sending PrepareRequest {"height": 180, "view": 0} -2023-12-15T14:15:10.145Z INFO sending Commit {"height": 180, "view": 0} -2023-12-15T14:15:10.146Z INFO approving block {"height": 180, "hash": "7d226cdfe08c5a0295efc9c408a65f55acb6da9aa8ca6fa1c42f60c61b00e4e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee6a490bac027eaae410bc3e912e803834cabcd927e6a851cb3e36035c409cbc"} -2023-12-15T14:15:10.147Z INFO initializing dbft {"height": 181, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:10.148Z debug frostfs-node/morph.go:229 new block {"index": 180} -2023-12-15T14:15:11.053Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 180, "blockHeight": 180, "took": "5.664336ms"} -2023-12-15T14:15:11.147Z INFO sending PrepareRequest {"height": 181, "view": 0} -2023-12-15T14:15:11.147Z INFO sending Commit {"height": 181, "view": 0} -2023-12-15T14:15:11.148Z INFO approving block {"height": 181, "hash": "9cd5424ce150d0c9aabec0807a2cb05524c2b5f95004b6bfee06fb4896eda069", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d226cdfe08c5a0295efc9c408a65f55acb6da9aa8ca6fa1c42f60c61b00e4e6"} -2023-12-15T14:15:11.149Z INFO initializing dbft {"height": 182, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:11.150Z debug frostfs-node/morph.go:229 new block {"index": 181} -2023-12-15T14:15:12.055Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 181, "blockHeight": 181, "took": "7.224852ms"} -2023-12-15T14:15:12.149Z INFO sending PrepareRequest {"height": 182, "view": 0} -2023-12-15T14:15:12.149Z INFO sending Commit {"height": 182, "view": 0} -2023-12-15T14:15:12.150Z INFO approving block {"height": 182, "hash": "65a56aeb77356797a63ce1c0d06a3a82ebc48114966e76a9ab506005cbe6fc7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cd5424ce150d0c9aabec0807a2cb05524c2b5f95004b6bfee06fb4896eda069"} -2023-12-15T14:15:12.151Z INFO initializing dbft {"height": 183, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:12.152Z debug frostfs-node/morph.go:229 new block {"index": 182} -2023-12-15T14:15:13.056Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 182, "blockHeight": 182, "took": "7.89558ms"} -2023-12-15T14:15:13.151Z INFO sending PrepareRequest {"height": 183, "view": 0} -2023-12-15T14:15:13.151Z INFO sending Commit {"height": 183, "view": 0} -2023-12-15T14:15:13.151Z INFO approving block {"height": 183, "hash": "482f38e203a56823c9394c81bdd19b228691643268d5cac8f87a627af876c3fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65a56aeb77356797a63ce1c0d06a3a82ebc48114966e76a9ab506005cbe6fc7b"} -2023-12-15T14:15:13.153Z INFO initializing dbft {"height": 184, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:13.154Z debug frostfs-node/morph.go:229 new block {"index": 183} -2023-12-15T14:15:14.058Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 183, "blockHeight": 183, "took": "8.226157ms"} -2023-12-15T14:15:14.152Z INFO sending PrepareRequest {"height": 184, "view": 0} -2023-12-15T14:15:14.153Z INFO sending Commit {"height": 184, "view": 0} -2023-12-15T14:15:14.153Z INFO approving block {"height": 184, "hash": "65c53e1c1fd5bc7d0cb8c6e1901f73bd6c8db2c36ff4d819bd3693a404909cff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "482f38e203a56823c9394c81bdd19b228691643268d5cac8f87a627af876c3fd"} -2023-12-15T14:15:14.154Z INFO initializing dbft {"height": 185, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:14.155Z debug frostfs-node/morph.go:229 new block {"index": 184} -2023-12-15T14:15:15.054Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 184, "blockHeight": 184, "took": "3.519922ms"} -2023-12-15T14:15:15.154Z INFO sending PrepareRequest {"height": 185, "view": 0} -2023-12-15T14:15:15.154Z INFO sending Commit {"height": 185, "view": 0} -2023-12-15T14:15:15.154Z INFO approving block {"height": 185, "hash": "94adca7c13ed7ced4b7457139605c4536d6b203601c8c9600e8430bb69629212", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65c53e1c1fd5bc7d0cb8c6e1901f73bd6c8db2c36ff4d819bd3693a404909cff"} -2023-12-15T14:15:15.155Z INFO initializing dbft {"height": 186, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:15.156Z debug frostfs-node/morph.go:229 new block {"index": 185} -2023-12-15T14:15:16.055Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 185, "blockHeight": 185, "took": "4.034568ms"} -2023-12-15T14:15:16.156Z INFO sending PrepareRequest {"height": 186, "view": 0} -2023-12-15T14:15:16.157Z INFO sending Commit {"height": 186, "view": 0} -2023-12-15T14:15:16.157Z INFO approving block {"height": 186, "hash": "ace1a782b86e2c17f366c79335e87538ecee57f6da5cfe53e2dfd4732d4eb8f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94adca7c13ed7ced4b7457139605c4536d6b203601c8c9600e8430bb69629212"} -2023-12-15T14:15:16.159Z INFO initializing dbft {"height": 187, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:16.160Z debug frostfs-node/morph.go:229 new block {"index": 186} -2023-12-15T14:15:17.060Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 186, "blockHeight": 186, "took": "8.464401ms"} -2023-12-15T14:15:17.159Z INFO sending PrepareRequest {"height": 187, "view": 0} -2023-12-15T14:15:17.159Z INFO sending Commit {"height": 187, "view": 0} -2023-12-15T14:15:17.159Z INFO approving block {"height": 187, "hash": "67810cf2a050dafaa59cd22f9e76398f6fa79825e87055b4381d2ee1e0964c5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ace1a782b86e2c17f366c79335e87538ecee57f6da5cfe53e2dfd4732d4eb8f3"} -2023-12-15T14:15:17.160Z INFO initializing dbft {"height": 188, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:17.161Z debug frostfs-node/morph.go:229 new block {"index": 187} -2023-12-15T14:15:18.062Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 187, "blockHeight": 187, "took": "9.23337ms"} -2023-12-15T14:15:18.160Z INFO sending PrepareRequest {"height": 188, "view": 0} -2023-12-15T14:15:18.161Z INFO sending Commit {"height": 188, "view": 0} -2023-12-15T14:15:18.161Z INFO approving block {"height": 188, "hash": "069fa9d9af77340d08a4f7cd5dcdc9ae0f9dc58b2ff90dd84b24b9cc8651ea5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67810cf2a050dafaa59cd22f9e76398f6fa79825e87055b4381d2ee1e0964c5d"} -2023-12-15T14:15:18.163Z INFO initializing dbft {"height": 189, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:18.164Z debug frostfs-node/morph.go:229 new block {"index": 188} -2023-12-15T14:15:19.060Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 188, "blockHeight": 188, "took": "7.291023ms"} -2023-12-15T14:15:19.162Z INFO sending PrepareRequest {"height": 189, "view": 0} -2023-12-15T14:15:19.163Z INFO sending Commit {"height": 189, "view": 0} -2023-12-15T14:15:19.163Z INFO approving block {"height": 189, "hash": "4fdcda977524b94b7a9c4e6acf563e6a0246fdc6b78de923e1dfc8a2bf59dab4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "069fa9d9af77340d08a4f7cd5dcdc9ae0f9dc58b2ff90dd84b24b9cc8651ea5e"} -2023-12-15T14:15:19.164Z INFO initializing dbft {"height": 190, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:19.165Z debug frostfs-node/morph.go:229 new block {"index": 189} -2023-12-15T14:15:20.058Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 189, "blockHeight": 189, "took": "4.088306ms"} -2023-12-15T14:15:20.165Z INFO sending PrepareRequest {"height": 190, "view": 0} -2023-12-15T14:15:20.165Z INFO sending Commit {"height": 190, "view": 0} -2023-12-15T14:15:20.165Z INFO approving block {"height": 190, "hash": "fa59162cc750b18af65fbd51ab99481ebda010b8a8e670bb4ac6e3976bcc0fbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fdcda977524b94b7a9c4e6acf563e6a0246fdc6b78de923e1dfc8a2bf59dab4"} -2023-12-15T14:15:20.167Z INFO initializing dbft {"height": 191, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:20.168Z debug frostfs-node/morph.go:229 new block {"index": 190} -2023-12-15T14:15:21.062Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 190, "blockHeight": 190, "took": "8.092131ms"} -2023-12-15T14:15:21.167Z INFO sending PrepareRequest {"height": 191, "view": 0} -2023-12-15T14:15:21.167Z INFO sending Commit {"height": 191, "view": 0} -2023-12-15T14:15:21.168Z INFO approving block {"height": 191, "hash": "98f6152faa60b398f82b4471abc80ae53825a81524a4ce65a0ed38e3e9a1da5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa59162cc750b18af65fbd51ab99481ebda010b8a8e670bb4ac6e3976bcc0fbe"} -2023-12-15T14:15:21.170Z INFO initializing dbft {"height": 192, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:21.170Z debug frostfs-node/morph.go:229 new block {"index": 191} -2023-12-15T14:15:22.061Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 191, "blockHeight": 191, "took": "5.790522ms"} -2023-12-15T14:15:22.169Z INFO sending PrepareRequest {"height": 192, "view": 0} -2023-12-15T14:15:22.170Z INFO sending Commit {"height": 192, "view": 0} -2023-12-15T14:15:22.170Z INFO approving block {"height": 192, "hash": "09a4ca27df8ff97c45518c777d732a7fa9d68285f4907f796f65d4198f0cad78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98f6152faa60b398f82b4471abc80ae53825a81524a4ce65a0ed38e3e9a1da5d"} -2023-12-15T14:15:22.171Z INFO initializing dbft {"height": 193, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:22.172Z debug frostfs-node/morph.go:229 new block {"index": 192} -2023-12-15T14:15:23.063Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 192, "blockHeight": 192, "took": "6.901552ms"} -2023-12-15T14:15:23.171Z INFO sending PrepareRequest {"height": 193, "view": 0} -2023-12-15T14:15:23.171Z INFO sending Commit {"height": 193, "view": 0} -2023-12-15T14:15:23.172Z INFO approving block {"height": 193, "hash": "1923c5cc31e3391b140b3cab278d58b4748ec59ffad2038bc190162dcbaf4a76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09a4ca27df8ff97c45518c777d732a7fa9d68285f4907f796f65d4198f0cad78"} -2023-12-15T14:15:23.173Z INFO initializing dbft {"height": 194, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:23.174Z debug frostfs-node/morph.go:229 new block {"index": 193} -2023-12-15T14:15:24.064Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 193, "blockHeight": 193, "took": "7.128707ms"} -2023-12-15T14:15:24.172Z INFO sending PrepareRequest {"height": 194, "view": 0} -2023-12-15T14:15:24.173Z INFO sending Commit {"height": 194, "view": 0} -2023-12-15T14:15:24.173Z INFO approving block {"height": 194, "hash": "4ae7644d8995c9b4fe35d61025c0f7363a168016b1f20d197a66eab2d5699135", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1923c5cc31e3391b140b3cab278d58b4748ec59ffad2038bc190162dcbaf4a76"} -2023-12-15T14:15:24.175Z INFO initializing dbft {"height": 195, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:24.176Z debug frostfs-node/morph.go:229 new block {"index": 194} -2023-12-15T14:15:25.067Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 194, "blockHeight": 194, "took": "9.287868ms"} -2023-12-15T14:15:25.174Z INFO sending PrepareRequest {"height": 195, "view": 0} -2023-12-15T14:15:25.174Z INFO sending Commit {"height": 195, "view": 0} -2023-12-15T14:15:25.175Z INFO approving block {"height": 195, "hash": "f60095c2c102d9b4053ea56a29035ea5076ba794b82aedc4c3034be0e26ef375", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ae7644d8995c9b4fe35d61025c0f7363a168016b1f20d197a66eab2d5699135"} -2023-12-15T14:15:25.176Z INFO initializing dbft {"height": 196, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:25.177Z debug frostfs-node/morph.go:229 new block {"index": 195} -2023-12-15T14:15:26.064Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 195, "blockHeight": 195, "took": "5.733124ms"} -2023-12-15T14:15:26.177Z INFO sending PrepareRequest {"height": 196, "view": 0} -2023-12-15T14:15:26.177Z INFO sending Commit {"height": 196, "view": 0} -2023-12-15T14:15:26.177Z INFO approving block {"height": 196, "hash": "32f8f16197c69ee07e79be108ee3e980fa8d3ca81830cdf9cdd98c550ef58f77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f60095c2c102d9b4053ea56a29035ea5076ba794b82aedc4c3034be0e26ef375"} -2023-12-15T14:15:26.179Z INFO initializing dbft {"height": 197, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:26.180Z debug frostfs-node/morph.go:229 new block {"index": 196} -2023-12-15T14:15:27.066Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 196, "blockHeight": 196, "took": "6.705002ms"} -2023-12-15T14:15:27.179Z INFO sending PrepareRequest {"height": 197, "view": 0} -2023-12-15T14:15:27.180Z INFO sending Commit {"height": 197, "view": 0} -2023-12-15T14:15:27.181Z INFO approving block {"height": 197, "hash": "7ebc30b6e35aa0a682877fa07c0ee73919cbcd7c051989c0aa77833a42135cd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32f8f16197c69ee07e79be108ee3e980fa8d3ca81830cdf9cdd98c550ef58f77"} -2023-12-15T14:15:27.182Z INFO initializing dbft {"height": 198, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:27.183Z debug frostfs-node/morph.go:229 new block {"index": 197} -2023-12-15T14:15:28.063Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 197, "blockHeight": 197, "took": "2.669674ms"} -2023-12-15T14:15:28.182Z INFO sending PrepareRequest {"height": 198, "view": 0} -2023-12-15T14:15:28.182Z INFO sending Commit {"height": 198, "view": 0} -2023-12-15T14:15:28.183Z INFO approving block {"height": 198, "hash": "8cd0af10d06241ce8a441824c824abcfa4878db45adbf808438f89907496eaf1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ebc30b6e35aa0a682877fa07c0ee73919cbcd7c051989c0aa77833a42135cd6"} -2023-12-15T14:15:28.184Z INFO initializing dbft {"height": 199, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:28.184Z debug frostfs-node/morph.go:229 new block {"index": 198} -2023-12-15T14:15:29.066Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 198, "blockHeight": 198, "took": "5.163491ms"} -2023-12-15T14:15:29.184Z INFO sending PrepareRequest {"height": 199, "view": 0} -2023-12-15T14:15:29.184Z INFO sending Commit {"height": 199, "view": 0} -2023-12-15T14:15:29.184Z INFO approving block {"height": 199, "hash": "21ba898fe1b2b5d6118ad66fc617bafc1668fba22dd723bb1344dcc5aaf1ff7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cd0af10d06241ce8a441824c824abcfa4878db45adbf808438f89907496eaf1"} -2023-12-15T14:15:29.185Z INFO initializing dbft {"height": 200, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:29.186Z debug frostfs-node/morph.go:229 new block {"index": 199} -2023-12-15T14:15:30.069Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 199, "blockHeight": 199, "took": "7.279422ms"} -2023-12-15T14:15:30.186Z INFO sending PrepareRequest {"height": 200, "view": 0} -2023-12-15T14:15:30.186Z INFO sending Commit {"height": 200, "view": 0} -2023-12-15T14:15:30.187Z INFO approving block {"height": 200, "hash": "7ba1e010e6032524e18573f8a257bb1712aeb2213fe8cb19a9a3ddf230e54169", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21ba898fe1b2b5d6118ad66fc617bafc1668fba22dd723bb1344dcc5aaf1ff7f"} -2023-12-15T14:15:30.189Z INFO initializing dbft {"height": 201, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:30.189Z debug frostfs-node/morph.go:229 new block {"index": 200} -2023-12-15T14:15:31.071Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 200, "blockHeight": 200, "took": "8.161248ms"} -2023-12-15T14:15:31.188Z INFO sending PrepareRequest {"height": 201, "view": 0} -2023-12-15T14:15:31.188Z INFO sending Commit {"height": 201, "view": 0} -2023-12-15T14:15:31.188Z INFO approving block {"height": 201, "hash": "4195a89e4ef8545c0e08263e98c5cdde178f033ca1d606b0f117e67dd2df8296", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ba1e010e6032524e18573f8a257bb1712aeb2213fe8cb19a9a3ddf230e54169"} -2023-12-15T14:15:31.190Z INFO initializing dbft {"height": 202, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:31.191Z debug frostfs-node/morph.go:229 new block {"index": 201} -2023-12-15T14:15:32.068Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 201, "blockHeight": 201, "took": "5.168514ms"} -2023-12-15T14:15:32.189Z INFO sending PrepareRequest {"height": 202, "view": 0} -2023-12-15T14:15:32.189Z INFO sending Commit {"height": 202, "view": 0} -2023-12-15T14:15:32.190Z INFO approving block {"height": 202, "hash": "5d61c293d4cb575261ce41b2e89fd6580f681866e40cb9b49da101a091da3a91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4195a89e4ef8545c0e08263e98c5cdde178f033ca1d606b0f117e67dd2df8296"} -2023-12-15T14:15:32.191Z INFO initializing dbft {"height": 203, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:32.192Z debug frostfs-node/morph.go:229 new block {"index": 202} -2023-12-15T14:15:32.197Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 0, "iteration": 2, "error": "no data for 1 iteration in 0 epoch for consumers's trusts"} -2023-12-15T14:15:33.070Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 202, "blockHeight": 202, "took": "5.328486ms"} -2023-12-15T14:15:33.191Z INFO sending PrepareRequest {"height": 203, "view": 0} -2023-12-15T14:15:33.191Z INFO sending Commit {"height": 203, "view": 0} -2023-12-15T14:15:33.191Z INFO approving block {"height": 203, "hash": "f41199a7bd3546cf0f28aca6a2774cd38e0dd6772a98c3989e6a9019dad2b5b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d61c293d4cb575261ce41b2e89fd6580f681866e40cb9b49da101a091da3a91"} -2023-12-15T14:15:33.192Z INFO initializing dbft {"height": 204, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:33.193Z debug frostfs-node/morph.go:229 new block {"index": 203} -2023-12-15T14:15:34.068Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 203, "blockHeight": 203, "took": "3.651457ms"} -2023-12-15T14:15:34.193Z INFO sending PrepareRequest {"height": 204, "view": 0} -2023-12-15T14:15:34.193Z INFO sending Commit {"height": 204, "view": 0} -2023-12-15T14:15:34.193Z INFO approving block {"height": 204, "hash": "e856b0f38d9eb18b9e1dc09e841726f849499c5095f2c20acf37ef6c856d738d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f41199a7bd3546cf0f28aca6a2774cd38e0dd6772a98c3989e6a9019dad2b5b5"} -2023-12-15T14:15:34.195Z INFO initializing dbft {"height": 205, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:34.195Z debug frostfs-node/morph.go:229 new block {"index": 204} -2023-12-15T14:15:35.072Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 204, "blockHeight": 204, "took": "6.382846ms"} -2023-12-15T14:15:35.195Z INFO sending PrepareRequest {"height": 205, "view": 0} -2023-12-15T14:15:35.195Z INFO sending Commit {"height": 205, "view": 0} -2023-12-15T14:15:35.195Z INFO approving block {"height": 205, "hash": "795259326fb43ab6510a2d3968741ef5ef96e69f365f36dfb6308f1cc822d00f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e856b0f38d9eb18b9e1dc09e841726f849499c5095f2c20acf37ef6c856d738d"} -2023-12-15T14:15:35.196Z INFO initializing dbft {"height": 206, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:35.197Z debug frostfs-node/morph.go:229 new block {"index": 205} -2023-12-15T14:15:36.070Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 205, "blockHeight": 205, "took": "4.333706ms"} -2023-12-15T14:15:36.196Z INFO sending PrepareRequest {"height": 206, "view": 0} -2023-12-15T14:15:36.197Z INFO sending Commit {"height": 206, "view": 0} -2023-12-15T14:15:36.197Z INFO approving block {"height": 206, "hash": "0430af3161535ed6c669f968be78993a679ad2e8a3f057c27508515ca16824db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "795259326fb43ab6510a2d3968741ef5ef96e69f365f36dfb6308f1cc822d00f"} -2023-12-15T14:15:36.198Z INFO initializing dbft {"height": 207, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:36.199Z debug frostfs-node/morph.go:229 new block {"index": 206} -2023-12-15T14:15:37.072Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 206, "blockHeight": 206, "took": "5.287503ms"} -2023-12-15T14:15:37.198Z INFO sending PrepareRequest {"height": 207, "view": 0} -2023-12-15T14:15:37.198Z INFO sending Commit {"height": 207, "view": 0} -2023-12-15T14:15:37.198Z INFO approving block {"height": 207, "hash": "8fbe60da468d09ad148deb6f3daf9571fab8d98359a3ebc85f835bc3bf57ffde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0430af3161535ed6c669f968be78993a679ad2e8a3f057c27508515ca16824db"} -2023-12-15T14:15:37.199Z INFO initializing dbft {"height": 208, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:37.199Z debug frostfs-node/morph.go:229 new block {"index": 207} -2023-12-15T14:15:38.072Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 207, "blockHeight": 207, "took": "4.949475ms"} -2023-12-15T14:15:38.199Z INFO sending PrepareRequest {"height": 208, "view": 0} -2023-12-15T14:15:38.199Z INFO sending Commit {"height": 208, "view": 0} -2023-12-15T14:15:38.200Z INFO approving block {"height": 208, "hash": "0e8f52c2ef89207ca2b41358eca2106ceda5f28a07a59dcbd92a7e613a173277", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fbe60da468d09ad148deb6f3daf9571fab8d98359a3ebc85f835bc3bf57ffde"} -2023-12-15T14:15:38.201Z INFO initializing dbft {"height": 209, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:38.202Z debug frostfs-node/morph.go:229 new block {"index": 208} -2023-12-15T14:15:39.074Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 208, "blockHeight": 208, "took": "5.719029ms"} -2023-12-15T14:15:39.201Z INFO sending PrepareRequest {"height": 209, "view": 0} -2023-12-15T14:15:39.201Z INFO sending Commit {"height": 209, "view": 0} -2023-12-15T14:15:39.201Z INFO approving block {"height": 209, "hash": "ba77dddf2c05bca1315c428b2b9b21724e02933da954129caf4e503001edcb70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e8f52c2ef89207ca2b41358eca2106ceda5f28a07a59dcbd92a7e613a173277"} -2023-12-15T14:15:39.203Z INFO initializing dbft {"height": 210, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:39.203Z debug frostfs-node/morph.go:229 new block {"index": 209} -2023-12-15T14:15:39.207Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 1, "iteration": 2, "error": "no data for 1 iteration in 1 epoch for consumers's trusts"} -2023-12-15T14:15:39.208Z info settlement/calls.go:106 start basic income distribution {"epoch": 1} -2023-12-15T14:15:40.073Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 209, "blockHeight": 209, "took": "4.040186ms"} -2023-12-15T14:15:40.202Z INFO sending PrepareRequest {"height": 210, "view": 0} -2023-12-15T14:15:40.202Z INFO sending Commit {"height": 210, "view": 0} -2023-12-15T14:15:40.203Z INFO approving block {"height": 210, "hash": "c600ab974a65b6f25140d287d13c91e21775dbf8ff5ecf359e97ecae9749c1c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba77dddf2c05bca1315c428b2b9b21724e02933da954129caf4e503001edcb70"} -2023-12-15T14:15:40.204Z INFO initializing dbft {"height": 211, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:40.204Z debug frostfs-node/morph.go:229 new block {"index": 210} -2023-12-15T14:15:41.075Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 210, "blockHeight": 210, "took": "5.509742ms"} -2023-12-15T14:15:41.204Z INFO sending PrepareRequest {"height": 211, "view": 0} -2023-12-15T14:15:41.204Z INFO sending Commit {"height": 211, "view": 0} -2023-12-15T14:15:41.205Z INFO approving block {"height": 211, "hash": "c9eefad8c790dda5b78575ddb962c366c78479cbfe5971fb2005d668c612462e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c600ab974a65b6f25140d287d13c91e21775dbf8ff5ecf359e97ecae9749c1c3"} -2023-12-15T14:15:41.206Z INFO initializing dbft {"height": 212, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:41.207Z debug frostfs-node/morph.go:229 new block {"index": 211} -2023-12-15T14:15:42.076Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 211, "blockHeight": 211, "took": "5.478088ms"} -2023-12-15T14:15:42.205Z INFO sending PrepareRequest {"height": 212, "view": 0} -2023-12-15T14:15:42.205Z INFO sending Commit {"height": 212, "view": 0} -2023-12-15T14:15:42.205Z INFO approving block {"height": 212, "hash": "6ee3c02cb33e45458649d8a5ccd258051e90e530fa90a7203a75f4a3b45479d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9eefad8c790dda5b78575ddb962c366c78479cbfe5971fb2005d668c612462e"} -2023-12-15T14:15:42.206Z INFO initializing dbft {"height": 213, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:42.207Z debug frostfs-node/morph.go:229 new block {"index": 212} -2023-12-15T14:15:43.075Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 212, "blockHeight": 212, "took": "4.016085ms"} -2023-12-15T14:15:43.207Z INFO sending PrepareRequest {"height": 213, "view": 0} -2023-12-15T14:15:43.207Z INFO sending Commit {"height": 213, "view": 0} -2023-12-15T14:15:43.208Z INFO approving block {"height": 213, "hash": "d4010e9b25e92cce538bb26af4ed4f4fadaf15830de5814aa78b5e3f46126a91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ee3c02cb33e45458649d8a5ccd258051e90e530fa90a7203a75f4a3b45479d3"} -2023-12-15T14:15:43.210Z INFO initializing dbft {"height": 214, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:43.211Z debug frostfs-node/morph.go:229 new block {"index": 213} -2023-12-15T14:15:44.078Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 213, "blockHeight": 213, "took": "5.830836ms"} -2023-12-15T14:15:44.209Z INFO sending PrepareRequest {"height": 214, "view": 0} -2023-12-15T14:15:44.209Z INFO sending Commit {"height": 214, "view": 0} -2023-12-15T14:15:44.209Z INFO approving block {"height": 214, "hash": "6d2bd1228502a8c818cb9a33c1f2e866d5d77ebf10478e5e7e00deae5a8479e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4010e9b25e92cce538bb26af4ed4f4fadaf15830de5814aa78b5e3f46126a91"} -2023-12-15T14:15:44.210Z INFO initializing dbft {"height": 215, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:44.211Z debug frostfs-node/morph.go:229 new block {"index": 214} -2023-12-15T14:15:45.078Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 214, "blockHeight": 214, "took": "5.632994ms"} -2023-12-15T14:15:45.210Z INFO sending PrepareRequest {"height": 215, "view": 0} -2023-12-15T14:15:45.211Z INFO sending Commit {"height": 215, "view": 0} -2023-12-15T14:15:45.211Z INFO approving block {"height": 215, "hash": "a7838e25acb2629786920006dd5660131b5875c32d48b2cb1c0404c86d96810f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d2bd1228502a8c818cb9a33c1f2e866d5d77ebf10478e5e7e00deae5a8479e3"} -2023-12-15T14:15:45.212Z INFO initializing dbft {"height": 216, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:45.213Z debug frostfs-node/morph.go:229 new block {"index": 215} -2023-12-15T14:15:46.079Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 215, "blockHeight": 215, "took": "5.699176ms"} -2023-12-15T14:15:46.212Z INFO sending PrepareRequest {"height": 216, "view": 0} -2023-12-15T14:15:46.212Z INFO sending Commit {"height": 216, "view": 0} -2023-12-15T14:15:46.212Z INFO approving block {"height": 216, "hash": "ce772edccfc8443cf34eae09a3151454fc06f54d91d82b86f5ea828b52161bf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7838e25acb2629786920006dd5660131b5875c32d48b2cb1c0404c86d96810f"} -2023-12-15T14:15:46.214Z INFO initializing dbft {"height": 217, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:46.214Z debug frostfs-node/morph.go:229 new block {"index": 216} -2023-12-15T14:15:47.077Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 216, "blockHeight": 216, "took": "3.919384ms"} -2023-12-15T14:15:47.213Z INFO sending PrepareRequest {"height": 217, "view": 0} -2023-12-15T14:15:47.213Z INFO sending Commit {"height": 217, "view": 0} -2023-12-15T14:15:47.214Z INFO approving block {"height": 217, "hash": "396ad45da258469818230ca8e6a33fb1c03f8cfc70922b7ec25436ca251a5700", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce772edccfc8443cf34eae09a3151454fc06f54d91d82b86f5ea828b52161bf3"} -2023-12-15T14:15:47.214Z INFO initializing dbft {"height": 218, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:47.215Z debug frostfs-node/morph.go:229 new block {"index": 217} -2023-12-15T14:15:47.216Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:15:47.217Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:15:47.217Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:15:48.077Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 217, "blockHeight": 217, "took": "2.689085ms"} -2023-12-15T14:15:48.215Z INFO sending PrepareRequest {"height": 218, "view": 0} -2023-12-15T14:15:48.215Z INFO sending Commit {"height": 218, "view": 0} -2023-12-15T14:15:48.215Z INFO approving block {"height": 218, "hash": "c8a18732958e5f2d8debeb860b98adcfa2774cbac6ad8c2c3a174e73af511267", "tx_count": 2, "merkle": "287d486a2c91fa8e674c6fafa182ba82cb9fbb0ac4470c3b39188e22468a4881", "prev": "396ad45da258469818230ca8e6a33fb1c03f8cfc70922b7ec25436ca251a5700"} -2023-12-15T14:15:48.216Z INFO runtime log {"tx": "f8b389bb6ad3058e7a991a92027b01ef2e4ae0094a5460288c148a0d50d67a64", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:15:48.216Z INFO runtime log {"tx": "f8b389bb6ad3058e7a991a92027b01ef2e4ae0094a5460288c148a0d50d67a64", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:15:48.217Z INFO initializing dbft {"height": 219, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:48.219Z debug frostfs-node/morph.go:229 new block {"index": 218} -2023-12-15T14:15:49.079Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 218, "blockHeight": 218, "took": "4.100586ms"} -2023-12-15T14:15:49.216Z INFO sending PrepareRequest {"height": 219, "view": 0} -2023-12-15T14:15:49.216Z INFO sending Commit {"height": 219, "view": 0} -2023-12-15T14:15:49.217Z INFO approving block {"height": 219, "hash": "a3c5fae013de06580240cd48da0e330441f3b5a1a4f0c7eeab6cb363f55a4957", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8a18732958e5f2d8debeb860b98adcfa2774cbac6ad8c2c3a174e73af511267"} -2023-12-15T14:15:49.218Z INFO initializing dbft {"height": 220, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:49.218Z debug frostfs-node/morph.go:229 new block {"index": 219} -2023-12-15T14:15:50.079Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 219, "blockHeight": 219, "took": "3.620333ms"} -2023-12-15T14:15:50.218Z INFO sending PrepareRequest {"height": 220, "view": 0} -2023-12-15T14:15:50.218Z INFO sending Commit {"height": 220, "view": 0} -2023-12-15T14:15:50.218Z INFO approving block {"height": 220, "hash": "99145016660f5ff1e8598a5cdb47deba5b3b19ac1f6c2563efa32f01607c3ad0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3c5fae013de06580240cd48da0e330441f3b5a1a4f0c7eeab6cb363f55a4957"} -2023-12-15T14:15:50.220Z INFO initializing dbft {"height": 221, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:50.221Z debug frostfs-node/morph.go:229 new block {"index": 220} -2023-12-15T14:15:51.080Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 220, "blockHeight": 220, "took": "4.006293ms"} -2023-12-15T14:15:51.219Z INFO sending PrepareRequest {"height": 221, "view": 0} -2023-12-15T14:15:51.220Z INFO sending Commit {"height": 221, "view": 0} -2023-12-15T14:15:51.220Z INFO approving block {"height": 221, "hash": "f7dfbccbbc3ec1fcd077f60eb3503055f272f35fa0795fc5f96d1e12edfc9aca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99145016660f5ff1e8598a5cdb47deba5b3b19ac1f6c2563efa32f01607c3ad0"} -2023-12-15T14:15:51.221Z INFO initializing dbft {"height": 222, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:51.222Z debug frostfs-node/morph.go:229 new block {"index": 221} -2023-12-15T14:15:52.081Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 221, "blockHeight": 221, "took": "4.457098ms"} -2023-12-15T14:15:52.221Z INFO sending PrepareRequest {"height": 222, "view": 0} -2023-12-15T14:15:52.221Z INFO sending Commit {"height": 222, "view": 0} -2023-12-15T14:15:52.222Z INFO approving block {"height": 222, "hash": "be0a1d769153101b8aec6b2fd0af0fa2e3a5e3b34c9ee034ea1f4645dbffb670", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7dfbccbbc3ec1fcd077f60eb3503055f272f35fa0795fc5f96d1e12edfc9aca"} -2023-12-15T14:15:52.223Z INFO initializing dbft {"height": 223, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:52.223Z debug frostfs-node/morph.go:229 new block {"index": 222} -2023-12-15T14:15:53.083Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 222, "blockHeight": 222, "took": "5.569ms"} -2023-12-15T14:15:53.223Z INFO sending PrepareRequest {"height": 223, "view": 0} -2023-12-15T14:15:53.223Z INFO sending Commit {"height": 223, "view": 0} -2023-12-15T14:15:53.223Z INFO approving block {"height": 223, "hash": "7d569b04c2ad4bb91a6c01b7a427f2ca8e9c9bd0c1ffcbaef8924984992d8d05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be0a1d769153101b8aec6b2fd0af0fa2e3a5e3b34c9ee034ea1f4645dbffb670"} -2023-12-15T14:15:53.224Z INFO initializing dbft {"height": 224, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:53.225Z debug frostfs-node/morph.go:229 new block {"index": 223} -2023-12-15T14:15:54.081Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 223, "blockHeight": 223, "took": "2.724749ms"} -2023-12-15T14:15:54.225Z INFO sending PrepareRequest {"height": 224, "view": 0} -2023-12-15T14:15:54.225Z INFO sending Commit {"height": 224, "view": 0} -2023-12-15T14:15:54.225Z INFO approving block {"height": 224, "hash": "7484e37250b4dc52a96155f1827eb9d61872f5a585b3711980f148ce00d4637d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d569b04c2ad4bb91a6c01b7a427f2ca8e9c9bd0c1ffcbaef8924984992d8d05"} -2023-12-15T14:15:54.226Z INFO initializing dbft {"height": 225, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:54.226Z debug frostfs-node/morph.go:229 new block {"index": 224} -2023-12-15T14:15:55.083Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 224, "blockHeight": 224, "took": "4.12256ms"} -2023-12-15T14:15:55.226Z INFO sending PrepareRequest {"height": 225, "view": 0} -2023-12-15T14:15:55.227Z INFO sending Commit {"height": 225, "view": 0} -2023-12-15T14:15:55.227Z INFO approving block {"height": 225, "hash": "9448e94d7bd670a6b9e120b8e2cfb1e333daca7fc38accf7272298f6bade6ed2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7484e37250b4dc52a96155f1827eb9d61872f5a585b3711980f148ce00d4637d"} -2023-12-15T14:15:55.228Z INFO initializing dbft {"height": 226, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:55.229Z debug frostfs-node/morph.go:229 new block {"index": 225} -2023-12-15T14:15:56.083Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 225, "blockHeight": 225, "took": "4.045538ms"} -2023-12-15T14:15:56.228Z INFO sending PrepareRequest {"height": 226, "view": 0} -2023-12-15T14:15:56.228Z INFO sending Commit {"height": 226, "view": 0} -2023-12-15T14:15:56.228Z INFO approving block {"height": 226, "hash": "3084a6e081698658e744b001e48ac48a01713951bb558e314728fbfdc7d31b4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9448e94d7bd670a6b9e120b8e2cfb1e333daca7fc38accf7272298f6bade6ed2"} -2023-12-15T14:15:56.229Z INFO initializing dbft {"height": 227, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:56.230Z debug frostfs-node/morph.go:229 new block {"index": 226} -2023-12-15T14:15:57.085Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 226, "blockHeight": 226, "took": "5.018714ms"} -2023-12-15T14:15:57.229Z INFO sending PrepareRequest {"height": 227, "view": 0} -2023-12-15T14:15:57.230Z INFO sending Commit {"height": 227, "view": 0} -2023-12-15T14:15:57.230Z INFO approving block {"height": 227, "hash": "cd97ac6579d7eb64f5e76069d0e24a8545ee7cfc22dbc9ffe5d389a68c664276", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3084a6e081698658e744b001e48ac48a01713951bb558e314728fbfdc7d31b4d"} -2023-12-15T14:15:57.231Z INFO initializing dbft {"height": 228, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:57.232Z debug frostfs-node/morph.go:229 new block {"index": 227} -2023-12-15T14:15:58.087Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 227, "blockHeight": 227, "took": "6.333275ms"} -2023-12-15T14:15:58.232Z INFO sending PrepareRequest {"height": 228, "view": 0} -2023-12-15T14:15:58.232Z INFO sending Commit {"height": 228, "view": 0} -2023-12-15T14:15:58.232Z INFO approving block {"height": 228, "hash": "9e628211d548221484213bdc569f0c088169799af8fca96b108279b71feb4069", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd97ac6579d7eb64f5e76069d0e24a8545ee7cfc22dbc9ffe5d389a68c664276"} -2023-12-15T14:15:58.234Z INFO initializing dbft {"height": 229, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:58.234Z debug frostfs-node/morph.go:229 new block {"index": 228} -2023-12-15T14:15:59.085Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 228, "blockHeight": 228, "took": "3.619948ms"} -2023-12-15T14:15:59.233Z INFO sending PrepareRequest {"height": 229, "view": 0} -2023-12-15T14:15:59.234Z INFO sending Commit {"height": 229, "view": 0} -2023-12-15T14:15:59.234Z INFO approving block {"height": 229, "hash": "395d7e135c8fedbd032bb779997ba3878da76c3acf12b8e39d487d5a6a18f836", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e628211d548221484213bdc569f0c088169799af8fca96b108279b71feb4069"} -2023-12-15T14:15:59.236Z INFO initializing dbft {"height": 230, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:15:59.236Z debug frostfs-node/morph.go:229 new block {"index": 229} -2023-12-15T14:16:00.085Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 229, "blockHeight": 229, "took": "3.211535ms"} -2023-12-15T14:16:00.235Z INFO sending PrepareRequest {"height": 230, "view": 0} -2023-12-15T14:16:00.235Z INFO sending Commit {"height": 230, "view": 0} -2023-12-15T14:16:00.236Z INFO approving block {"height": 230, "hash": "a1babff90d5227d9737ecbdefaf989807b3985e4aab6e16c1adb6cc1790f5e2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "395d7e135c8fedbd032bb779997ba3878da76c3acf12b8e39d487d5a6a18f836"} -2023-12-15T14:16:00.237Z INFO initializing dbft {"height": 231, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:00.237Z debug frostfs-node/morph.go:229 new block {"index": 230} -2023-12-15T14:16:01.086Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 230, "blockHeight": 230, "took": "4.137585ms"} -2023-12-15T14:16:01.236Z INFO sending PrepareRequest {"height": 231, "view": 0} -2023-12-15T14:16:01.236Z INFO sending Commit {"height": 231, "view": 0} -2023-12-15T14:16:01.237Z INFO approving block {"height": 231, "hash": "8fd507a0712655f6ad36fdb191912d100ee58d5598ceb1756b9387cfae2eed77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1babff90d5227d9737ecbdefaf989807b3985e4aab6e16c1adb6cc1790f5e2d"} -2023-12-15T14:16:01.238Z INFO initializing dbft {"height": 232, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:01.238Z debug frostfs-node/morph.go:229 new block {"index": 231} -2023-12-15T14:16:02.089Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 231, "blockHeight": 231, "took": "6.028762ms"} -2023-12-15T14:16:02.238Z INFO sending PrepareRequest {"height": 232, "view": 0} -2023-12-15T14:16:02.238Z INFO sending Commit {"height": 232, "view": 0} -2023-12-15T14:16:02.239Z INFO approving block {"height": 232, "hash": "31ac6677514e761f5cc7ddb94276c59f3c4975fc0131477b5fa724ce6121d6c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fd507a0712655f6ad36fdb191912d100ee58d5598ceb1756b9387cfae2eed77"} -2023-12-15T14:16:02.240Z INFO initializing dbft {"height": 233, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:02.241Z debug frostfs-node/morph.go:229 new block {"index": 232} -2023-12-15T14:16:03.089Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 232, "blockHeight": 232, "took": "5.651246ms"} -2023-12-15T14:16:03.239Z INFO sending PrepareRequest {"height": 233, "view": 0} -2023-12-15T14:16:03.240Z INFO sending Commit {"height": 233, "view": 0} -2023-12-15T14:16:03.240Z INFO approving block {"height": 233, "hash": "aff4f41d6e2e5eb3983ec79b7a6c00764ae596d30beb926ef5d93983070dd528", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31ac6677514e761f5cc7ddb94276c59f3c4975fc0131477b5fa724ce6121d6c3"} -2023-12-15T14:16:03.241Z INFO initializing dbft {"height": 234, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:03.242Z debug frostfs-node/morph.go:229 new block {"index": 233} -2023-12-15T14:16:04.088Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 233, "blockHeight": 233, "took": "4.160922ms"} -2023-12-15T14:16:04.241Z INFO sending PrepareRequest {"height": 234, "view": 0} -2023-12-15T14:16:04.241Z INFO sending Commit {"height": 234, "view": 0} -2023-12-15T14:16:04.241Z INFO approving block {"height": 234, "hash": "08731c3024254a6ba7f990078cfcedeae4ace7d678552b3e4fc0513a7539aec8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aff4f41d6e2e5eb3983ec79b7a6c00764ae596d30beb926ef5d93983070dd528"} -2023-12-15T14:16:04.242Z INFO initializing dbft {"height": 235, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:04.242Z debug frostfs-node/morph.go:229 new block {"index": 234} -2023-12-15T14:16:05.090Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 234, "blockHeight": 234, "took": "5.44028ms"} -2023-12-15T14:16:05.243Z INFO sending PrepareRequest {"height": 235, "view": 0} -2023-12-15T14:16:05.243Z INFO sending Commit {"height": 235, "view": 0} -2023-12-15T14:16:05.243Z INFO approving block {"height": 235, "hash": "445bf16d00d444dbe8bf1c744c5a270264785e33eb885b3c78a2bdc94f9d8849", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08731c3024254a6ba7f990078cfcedeae4ace7d678552b3e4fc0513a7539aec8"} -2023-12-15T14:16:05.244Z INFO initializing dbft {"height": 236, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:05.245Z debug frostfs-node/morph.go:229 new block {"index": 235} -2023-12-15T14:16:06.091Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 235, "blockHeight": 235, "took": "6.18071ms"} -2023-12-15T14:16:06.244Z INFO sending PrepareRequest {"height": 236, "view": 0} -2023-12-15T14:16:06.244Z INFO sending Commit {"height": 236, "view": 0} -2023-12-15T14:16:06.245Z INFO approving block {"height": 236, "hash": "adea8a92b3041d2bd7d246ba23f43d740e9b3ad96037fb8cc7e9bd2d55d0229c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "445bf16d00d444dbe8bf1c744c5a270264785e33eb885b3c78a2bdc94f9d8849"} -2023-12-15T14:16:06.246Z INFO initializing dbft {"height": 237, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:06.246Z debug frostfs-node/morph.go:229 new block {"index": 236} -2023-12-15T14:16:07.092Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 236, "blockHeight": 236, "took": "6.184682ms"} -2023-12-15T14:16:07.246Z INFO sending PrepareRequest {"height": 237, "view": 0} -2023-12-15T14:16:07.246Z INFO sending Commit {"height": 237, "view": 0} -2023-12-15T14:16:07.246Z INFO approving block {"height": 237, "hash": "d434555a5e0f8ad69234d30866daf6bade85e2656083a6e210d3d1d031549ead", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adea8a92b3041d2bd7d246ba23f43d740e9b3ad96037fb8cc7e9bd2d55d0229c"} -2023-12-15T14:16:07.247Z INFO initializing dbft {"height": 238, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:07.248Z debug frostfs-node/morph.go:229 new block {"index": 237} -2023-12-15T14:16:08.092Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 237, "blockHeight": 237, "took": "5.044877ms"} -2023-12-15T14:16:08.247Z INFO sending PrepareRequest {"height": 238, "view": 0} -2023-12-15T14:16:08.247Z INFO sending Commit {"height": 238, "view": 0} -2023-12-15T14:16:08.247Z INFO approving block {"height": 238, "hash": "9c9e8ee95a1b32da7cd6cbc6f43c48c1d00aa41f86a651fdab71b15c1a2ee8b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d434555a5e0f8ad69234d30866daf6bade85e2656083a6e210d3d1d031549ead"} -2023-12-15T14:16:08.249Z INFO initializing dbft {"height": 239, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:08.249Z debug frostfs-node/morph.go:229 new block {"index": 238} -2023-12-15T14:16:09.094Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 238, "blockHeight": 238, "took": "6.48757ms"} -2023-12-15T14:16:09.248Z INFO sending PrepareRequest {"height": 239, "view": 0} -2023-12-15T14:16:09.249Z INFO sending Commit {"height": 239, "view": 0} -2023-12-15T14:16:09.249Z INFO approving block {"height": 239, "hash": "846e7cb0486b1b3cef1c7e01d37aae261682daaaa3d5fc93c40c091c6e3c5784", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c9e8ee95a1b32da7cd6cbc6f43c48c1d00aa41f86a651fdab71b15c1a2ee8b4"} -2023-12-15T14:16:09.250Z INFO initializing dbft {"height": 240, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:09.251Z debug frostfs-node/morph.go:229 new block {"index": 239} -2023-12-15T14:16:10.091Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 239, "blockHeight": 239, "took": "3.013598ms"} -2023-12-15T14:16:10.250Z INFO sending PrepareRequest {"height": 240, "view": 0} -2023-12-15T14:16:10.250Z INFO sending Commit {"height": 240, "view": 0} -2023-12-15T14:16:10.250Z INFO approving block {"height": 240, "hash": "19ed1f171674983e9695d4065c04e1c590c4b055e1a4069cf454f3711559a135", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "846e7cb0486b1b3cef1c7e01d37aae261682daaaa3d5fc93c40c091c6e3c5784"} -2023-12-15T14:16:10.251Z INFO initializing dbft {"height": 241, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:10.252Z debug frostfs-node/morph.go:229 new block {"index": 240} -2023-12-15T14:16:10.255Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:16:10.258Z INFO runtime log {"tx": "c5b265c98ba4e590978fe1f74e379394b4d5bc2821a58ebce1a83e08006c5ba5", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:16:11.094Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 240, "blockHeight": 240, "took": "6.047404ms"} -2023-12-15T14:16:11.251Z INFO sending PrepareRequest {"height": 241, "view": 0} -2023-12-15T14:16:11.251Z INFO sending Commit {"height": 241, "view": 0} -2023-12-15T14:16:11.252Z INFO approving block {"height": 241, "hash": "0643a1f5600d0879f2a397a6bd34f72e9f3b4155ff3bfa9eb461249a992d4369", "tx_count": 1, "merkle": "0fdd4a8f857d294f35b5ffd4a601b27995fc0ab2f85ac568bce82722c52d7f61", "prev": "19ed1f171674983e9695d4065c04e1c590c4b055e1a4069cf454f3711559a135"} -2023-12-15T14:16:11.253Z INFO runtime log {"tx": "617f2dc52227e8bc68c55af8b20afc9579b201a6d4ffb5354f297d858f4add0f", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:16:11.254Z INFO initializing dbft {"height": 242, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:11.255Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 3} -2023-12-15T14:16:11.255Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 3} -2023-12-15T14:16:11.255Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:16:11.255Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:16:11.255Z debug controller/calls.go:95 starting to report local trust values {"epoch": 2} -2023-12-15T14:16:11.255Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 2} -2023-12-15T14:16:11.255Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 3} -2023-12-15T14:16:11.256Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 3} -2023-12-15T14:16:11.256Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 3} -2023-12-15T14:16:11.256Z debug frostfs-node/morph.go:229 new block {"index": 241} -2023-12-15T14:16:11.259Z debug controller/calls.go:146 reporting successfully finished {"epoch": 2} -2023-12-15T14:16:11.259Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 2} -2023-12-15T14:16:11.260Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:16:11.261Z INFO runtime log {"tx": "97f93714ff86d4a4184efececa8fe731556a629be3b07de3725cd24496ac2494", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:16:11.263Z info client/notary.go:214 notary deposit invoke {"amount": 909643149, "expire_at": 4294967295, "vub": 244, "tx_hash": "711ef4c57dbe729dd5a5e6b5d29e348f0260801f04f246f666a29900bbf25531"} -2023-12-15T14:16:11.268Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:16:11.268Z info audit/handlers.go:13 new round of audit {"epoch": 3} -2023-12-15T14:16:11.268Z info settlement/calls.go:26 new audit settlement event {"epoch": 3} -2023-12-15T14:16:11.268Z info settlement/handlers.go:14 process audit settlements {"epoch": 3} -2023-12-15T14:16:11.269Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 3} -2023-12-15T14:16:11.271Z info settlement/handlers.go:18 audit processing finished {"epoch": 3} -2023-12-15T14:16:11.272Z info audit/process.go:39 select containers for audit {"epoch": 3, "amount": 0} -2023-12-15T14:16:11.274Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 244, "tx_hash": "54d471cd87078373e8ea17aed1f64b069ffaa04edd17af8080df461a27a4c04f"} -2023-12-15T14:16:12.096Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 241, "blockHeight": 241, "took": "6.397337ms"} -2023-12-15T14:16:12.253Z INFO sending PrepareRequest {"height": 242, "view": 0} -2023-12-15T14:16:12.253Z INFO sending Commit {"height": 242, "view": 0} -2023-12-15T14:16:12.253Z INFO approving block {"height": 242, "hash": "cf7b44561d2d04ccfdcd620b17ed83805acce45fdcb652ae80683a6df0c5747b", "tx_count": 3, "merkle": "93be422cfa68bac1d00488e1a4cd9d0c2026b1407f01d0a2002bc000961de3d4", "prev": "0643a1f5600d0879f2a397a6bd34f72e9f3b4155ff3bfa9eb461249a992d4369"} -2023-12-15T14:16:12.254Z INFO runtime log {"tx": "5a5e6e8c87c42fcc953d3475dc5ec38d822a581e18f9b2bb4d08cd230746e9cc", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:16:12.255Z INFO initializing dbft {"height": 243, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:12.256Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 2} -2023-12-15T14:16:12.256Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 2} -2023-12-15T14:16:12.256Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 2} -2023-12-15T14:16:12.257Z debug frostfs-node/morph.go:229 new block {"index": 242} -2023-12-15T14:16:13.097Z INFO persisted to disk {"blocks": 1, "keys": 55, "headerHeight": 242, "blockHeight": 242, "took": "6.514753ms"} -2023-12-15T14:16:13.254Z INFO sending PrepareRequest {"height": 243, "view": 0} -2023-12-15T14:16:13.255Z INFO sending Commit {"height": 243, "view": 0} -2023-12-15T14:16:13.255Z INFO approving block {"height": 243, "hash": "ca3f2c895fef6e61274125d22f8137cb37958ff160cd803501e1c9051e5d59ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf7b44561d2d04ccfdcd620b17ed83805acce45fdcb652ae80683a6df0c5747b"} -2023-12-15T14:16:13.256Z INFO initializing dbft {"height": 244, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:13.256Z debug frostfs-node/morph.go:229 new block {"index": 243} -2023-12-15T14:16:14.096Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 243, "blockHeight": 243, "took": "4.363875ms"} -2023-12-15T14:16:14.256Z INFO sending PrepareRequest {"height": 244, "view": 0} -2023-12-15T14:16:14.257Z INFO sending Commit {"height": 244, "view": 0} -2023-12-15T14:16:14.257Z INFO approving block {"height": 244, "hash": "29409b751853879ac7357de5c4f983f5745171a8e41f1f87fd20d2cfbfe8c538", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca3f2c895fef6e61274125d22f8137cb37958ff160cd803501e1c9051e5d59ae"} -2023-12-15T14:16:14.258Z INFO initializing dbft {"height": 245, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:14.259Z debug frostfs-node/morph.go:229 new block {"index": 244} -2023-12-15T14:16:15.096Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 244, "blockHeight": 244, "took": "4.22267ms"} -2023-12-15T14:16:15.258Z INFO sending PrepareRequest {"height": 245, "view": 0} -2023-12-15T14:16:15.258Z INFO sending Commit {"height": 245, "view": 0} -2023-12-15T14:16:15.258Z INFO approving block {"height": 245, "hash": "b9edc32b3936bcc19a389871fe167e4d0765ca683a21bdfef122e06b0107c657", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29409b751853879ac7357de5c4f983f5745171a8e41f1f87fd20d2cfbfe8c538"} -2023-12-15T14:16:15.259Z INFO initializing dbft {"height": 246, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:15.259Z debug frostfs-node/morph.go:229 new block {"index": 245} -2023-12-15T14:16:16.096Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 245, "blockHeight": 245, "took": "3.404615ms"} -2023-12-15T14:16:16.259Z INFO sending PrepareRequest {"height": 246, "view": 0} -2023-12-15T14:16:16.260Z INFO sending Commit {"height": 246, "view": 0} -2023-12-15T14:16:16.260Z INFO approving block {"height": 246, "hash": "318a826bcf3fb6181ba58b703311ff7ef18a0d7143a2335c2b749d6ef94b10cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9edc32b3936bcc19a389871fe167e4d0765ca683a21bdfef122e06b0107c657"} -2023-12-15T14:16:16.261Z INFO initializing dbft {"height": 247, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:16.262Z debug frostfs-node/morph.go:229 new block {"index": 246} -2023-12-15T14:16:17.095Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 246, "blockHeight": 246, "took": "2.431441ms"} -2023-12-15T14:16:17.261Z INFO sending PrepareRequest {"height": 247, "view": 0} -2023-12-15T14:16:17.261Z INFO sending Commit {"height": 247, "view": 0} -2023-12-15T14:16:17.261Z INFO approving block {"height": 247, "hash": "25d87900239dfa27390c2e468dca5100b12508b34b066d647476fbce9dda8f29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "318a826bcf3fb6181ba58b703311ff7ef18a0d7143a2335c2b749d6ef94b10cd"} -2023-12-15T14:16:17.262Z INFO initializing dbft {"height": 248, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:17.263Z debug frostfs-node/morph.go:229 new block {"index": 247} -2023-12-15T14:16:18.098Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 247, "blockHeight": 247, "took": "4.309176ms"} -2023-12-15T14:16:18.262Z INFO sending PrepareRequest {"height": 248, "view": 0} -2023-12-15T14:16:18.263Z INFO sending Commit {"height": 248, "view": 0} -2023-12-15T14:16:18.263Z INFO approving block {"height": 248, "hash": "2254ba944d5e0a7535bd29ab23ac27bb7402154c9e80cc1c0821e038856303b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25d87900239dfa27390c2e468dca5100b12508b34b066d647476fbce9dda8f29"} -2023-12-15T14:16:18.264Z INFO initializing dbft {"height": 249, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:18.265Z debug frostfs-node/morph.go:229 new block {"index": 248} -2023-12-15T14:16:19.098Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 248, "blockHeight": 248, "took": "4.023638ms"} -2023-12-15T14:16:19.264Z INFO sending PrepareRequest {"height": 249, "view": 0} -2023-12-15T14:16:19.264Z INFO sending Commit {"height": 249, "view": 0} -2023-12-15T14:16:19.264Z INFO approving block {"height": 249, "hash": "282eeef2d21f78f043d94f16e2b0ac6e28b7602590e49ab2abc3cfc6d3301c2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2254ba944d5e0a7535bd29ab23ac27bb7402154c9e80cc1c0821e038856303b8"} -2023-12-15T14:16:19.265Z INFO initializing dbft {"height": 250, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:19.266Z debug frostfs-node/morph.go:229 new block {"index": 249} -2023-12-15T14:16:20.098Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 249, "blockHeight": 249, "took": "3.310797ms"} -2023-12-15T14:16:20.266Z INFO sending PrepareRequest {"height": 250, "view": 0} -2023-12-15T14:16:20.266Z INFO sending Commit {"height": 250, "view": 0} -2023-12-15T14:16:20.266Z INFO approving block {"height": 250, "hash": "82fee1304da52597cb50c75c5f653c7a46597fc29e7b3880aa4bf7826112e74c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "282eeef2d21f78f043d94f16e2b0ac6e28b7602590e49ab2abc3cfc6d3301c2c"} -2023-12-15T14:16:20.267Z INFO initializing dbft {"height": 251, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:20.267Z debug frostfs-node/morph.go:229 new block {"index": 250} -2023-12-15T14:16:21.098Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 250, "blockHeight": 250, "took": "2.836593ms"} -2023-12-15T14:16:21.267Z INFO sending PrepareRequest {"height": 251, "view": 0} -2023-12-15T14:16:21.267Z INFO sending Commit {"height": 251, "view": 0} -2023-12-15T14:16:21.267Z INFO approving block {"height": 251, "hash": "998ed5379239b88d7d20eeadcf39070889d6d988ea1ca8f5c494ede42ca2bb34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82fee1304da52597cb50c75c5f653c7a46597fc29e7b3880aa4bf7826112e74c"} -2023-12-15T14:16:21.268Z INFO initializing dbft {"height": 252, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:21.268Z debug frostfs-node/morph.go:229 new block {"index": 251} -2023-12-15T14:16:22.100Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 251, "blockHeight": 251, "took": "4.066919ms"} -2023-12-15T14:16:22.269Z INFO sending PrepareRequest {"height": 252, "view": 0} -2023-12-15T14:16:22.269Z INFO sending Commit {"height": 252, "view": 0} -2023-12-15T14:16:22.269Z INFO approving block {"height": 252, "hash": "0d680f44ed6536c8ebb54b95f4e80c748f6ab2b2f158d0f8f9b4025836abbe3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "998ed5379239b88d7d20eeadcf39070889d6d988ea1ca8f5c494ede42ca2bb34"} -2023-12-15T14:16:22.270Z INFO initializing dbft {"height": 253, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:22.270Z debug frostfs-node/morph.go:229 new block {"index": 252} -2023-12-15T14:16:23.100Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 252, "blockHeight": 252, "took": "4.109863ms"} -2023-12-15T14:16:23.270Z INFO sending PrepareRequest {"height": 253, "view": 0} -2023-12-15T14:16:23.271Z INFO sending Commit {"height": 253, "view": 0} -2023-12-15T14:16:23.271Z INFO approving block {"height": 253, "hash": "a434aa1d167e216a073d353c1d6587fad07149c5412b04a6128dafb9c9e25d2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d680f44ed6536c8ebb54b95f4e80c748f6ab2b2f158d0f8f9b4025836abbe3f"} -2023-12-15T14:16:23.273Z INFO initializing dbft {"height": 254, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:23.273Z debug frostfs-node/morph.go:229 new block {"index": 253} -2023-12-15T14:16:24.101Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 253, "blockHeight": 253, "took": "4.033859ms"} -2023-12-15T14:16:24.273Z INFO sending PrepareRequest {"height": 254, "view": 0} -2023-12-15T14:16:24.273Z INFO sending Commit {"height": 254, "view": 0} -2023-12-15T14:16:24.274Z INFO approving block {"height": 254, "hash": "55b3cd9212f94a990db777b697543b1346a87ad04f810fd728d67aeec129aff3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a434aa1d167e216a073d353c1d6587fad07149c5412b04a6128dafb9c9e25d2e"} -2023-12-15T14:16:24.275Z INFO initializing dbft {"height": 255, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:24.275Z debug frostfs-node/morph.go:229 new block {"index": 254} -2023-12-15T14:16:25.104Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 254, "blockHeight": 254, "took": "6.787308ms"} -2023-12-15T14:16:25.274Z INFO sending PrepareRequest {"height": 255, "view": 0} -2023-12-15T14:16:25.275Z INFO sending Commit {"height": 255, "view": 0} -2023-12-15T14:16:25.275Z INFO approving block {"height": 255, "hash": "11a0953e8fce16373a650844783c0a7846877ede96bc164e8258840d179ac446", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55b3cd9212f94a990db777b697543b1346a87ad04f810fd728d67aeec129aff3"} -2023-12-15T14:16:25.276Z INFO initializing dbft {"height": 256, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:25.277Z debug frostfs-node/morph.go:229 new block {"index": 255} -2023-12-15T14:16:26.101Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 255, "blockHeight": 255, "took": "2.828563ms"} -2023-12-15T14:16:26.276Z INFO sending PrepareRequest {"height": 256, "view": 0} -2023-12-15T14:16:26.276Z INFO sending Commit {"height": 256, "view": 0} -2023-12-15T14:16:26.276Z INFO approving block {"height": 256, "hash": "afbd53f881d2b4c99257b553d0f0f16edd0b1d51352b408a82f1c71d35ce31fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11a0953e8fce16373a650844783c0a7846877ede96bc164e8258840d179ac446"} -2023-12-15T14:16:26.277Z INFO initializing dbft {"height": 257, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:26.277Z debug frostfs-node/morph.go:229 new block {"index": 256} -2023-12-15T14:16:27.104Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 256, "blockHeight": 256, "took": "4.465881ms"} -2023-12-15T14:16:27.277Z INFO sending PrepareRequest {"height": 257, "view": 0} -2023-12-15T14:16:27.277Z INFO sending Commit {"height": 257, "view": 0} -2023-12-15T14:16:27.278Z INFO approving block {"height": 257, "hash": "6d058df3c4dd4baee09c1e5f9e2b7d1540e808828ee26ca419d8c7a0d93cac67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afbd53f881d2b4c99257b553d0f0f16edd0b1d51352b408a82f1c71d35ce31fa"} -2023-12-15T14:16:27.279Z INFO initializing dbft {"height": 258, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:27.280Z debug frostfs-node/morph.go:229 new block {"index": 257} -2023-12-15T14:16:28.104Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 257, "blockHeight": 257, "took": "4.126495ms"} -2023-12-15T14:16:28.279Z INFO sending PrepareRequest {"height": 258, "view": 0} -2023-12-15T14:16:28.279Z INFO sending Commit {"height": 258, "view": 0} -2023-12-15T14:16:28.280Z INFO approving block {"height": 258, "hash": "446f0a40776cb1820f3cb6b02537e15c393288105aecd7d66b8fa9ac2223cc8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d058df3c4dd4baee09c1e5f9e2b7d1540e808828ee26ca419d8c7a0d93cac67"} -2023-12-15T14:16:28.281Z INFO initializing dbft {"height": 259, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:28.282Z debug frostfs-node/morph.go:229 new block {"index": 258} -2023-12-15T14:16:29.105Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 258, "blockHeight": 258, "took": "3.935806ms"} -2023-12-15T14:16:29.281Z INFO sending PrepareRequest {"height": 259, "view": 0} -2023-12-15T14:16:29.281Z INFO sending Commit {"height": 259, "view": 0} -2023-12-15T14:16:29.282Z INFO approving block {"height": 259, "hash": "1782577ddc8b73d219da8bb8554cd6202595cf6bdd29f2d1aec871ca89ba7ad3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "446f0a40776cb1820f3cb6b02537e15c393288105aecd7d66b8fa9ac2223cc8d"} -2023-12-15T14:16:29.283Z INFO initializing dbft {"height": 260, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:29.283Z debug frostfs-node/morph.go:229 new block {"index": 259} -2023-12-15T14:16:30.104Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 259, "blockHeight": 259, "took": "2.684799ms"} -2023-12-15T14:16:30.282Z INFO sending PrepareRequest {"height": 260, "view": 0} -2023-12-15T14:16:30.282Z INFO sending Commit {"height": 260, "view": 0} -2023-12-15T14:16:30.283Z INFO approving block {"height": 260, "hash": "1e1bc1743de719eccb745d35b8f0775da65a85bb11fe305f76d603bf0666109d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1782577ddc8b73d219da8bb8554cd6202595cf6bdd29f2d1aec871ca89ba7ad3"} -2023-12-15T14:16:30.283Z INFO initializing dbft {"height": 261, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:30.284Z debug frostfs-node/morph.go:229 new block {"index": 260} -2023-12-15T14:16:31.108Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 260, "blockHeight": 260, "took": "5.872996ms"} -2023-12-15T14:16:31.283Z INFO sending PrepareRequest {"height": 261, "view": 0} -2023-12-15T14:16:31.284Z INFO sending Commit {"height": 261, "view": 0} -2023-12-15T14:16:31.284Z INFO approving block {"height": 261, "hash": "b7a3d49bf2958815319dd3f0fb767a106d2fb363c4365d9848ffdc2d5a2be9ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e1bc1743de719eccb745d35b8f0775da65a85bb11fe305f76d603bf0666109d"} -2023-12-15T14:16:31.285Z INFO initializing dbft {"height": 262, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:31.286Z debug frostfs-node/morph.go:229 new block {"index": 261} -2023-12-15T14:16:32.110Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 261, "blockHeight": 261, "took": "7.043481ms"} -2023-12-15T14:16:32.286Z INFO sending PrepareRequest {"height": 262, "view": 0} -2023-12-15T14:16:32.286Z INFO sending Commit {"height": 262, "view": 0} -2023-12-15T14:16:32.286Z INFO approving block {"height": 262, "hash": "8cffce58dc521a5c964acdfbde3af484ed2ce64ea28259d1959c0dab8fed0002", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7a3d49bf2958815319dd3f0fb767a106d2fb363c4365d9848ffdc2d5a2be9ec"} -2023-12-15T14:16:32.287Z INFO initializing dbft {"height": 263, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:32.288Z debug frostfs-node/morph.go:229 new block {"index": 262} -2023-12-15T14:16:32.292Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 0, "iteration": 3, "error": "no data for 2 iteration in 0 epoch for consumers's trusts"} -2023-12-15T14:16:33.107Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 262, "blockHeight": 262, "took": "3.779891ms"} -2023-12-15T14:16:33.288Z INFO sending PrepareRequest {"height": 263, "view": 0} -2023-12-15T14:16:33.288Z INFO sending Commit {"height": 263, "view": 0} -2023-12-15T14:16:33.288Z INFO approving block {"height": 263, "hash": "aa87a7b5bbe041a719624e6d16284b273d91c6c70d626ab219625f730ac7dbed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cffce58dc521a5c964acdfbde3af484ed2ce64ea28259d1959c0dab8fed0002"} -2023-12-15T14:16:33.290Z INFO initializing dbft {"height": 264, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:33.290Z debug frostfs-node/morph.go:229 new block {"index": 263} -2023-12-15T14:16:34.108Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 263, "blockHeight": 263, "took": "4.090123ms"} -2023-12-15T14:16:34.289Z INFO sending PrepareRequest {"height": 264, "view": 0} -2023-12-15T14:16:34.289Z INFO sending Commit {"height": 264, "view": 0} -2023-12-15T14:16:34.290Z INFO approving block {"height": 264, "hash": "b3b8abd9fe9a320bf67afd3821f5aabfef2eac3940ef9ea123222e7d49cef165", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa87a7b5bbe041a719624e6d16284b273d91c6c70d626ab219625f730ac7dbed"} -2023-12-15T14:16:34.291Z INFO initializing dbft {"height": 265, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:34.292Z debug frostfs-node/morph.go:229 new block {"index": 264} -2023-12-15T14:16:35.110Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 264, "blockHeight": 264, "took": "5.279256ms"} -2023-12-15T14:16:35.290Z INFO sending PrepareRequest {"height": 265, "view": 0} -2023-12-15T14:16:35.291Z INFO sending Commit {"height": 265, "view": 0} -2023-12-15T14:16:35.291Z INFO approving block {"height": 265, "hash": "cc48ebbaf1809d1d2aa42eb0d64871a8f99475df6e2db53f0766edd45064eac5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3b8abd9fe9a320bf67afd3821f5aabfef2eac3940ef9ea123222e7d49cef165"} -2023-12-15T14:16:35.292Z INFO initializing dbft {"height": 266, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:35.292Z debug frostfs-node/morph.go:229 new block {"index": 265} -2023-12-15T14:16:36.109Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 265, "blockHeight": 265, "took": "4.456851ms"} -2023-12-15T14:16:36.292Z INFO sending PrepareRequest {"height": 266, "view": 0} -2023-12-15T14:16:36.292Z INFO sending Commit {"height": 266, "view": 0} -2023-12-15T14:16:36.293Z INFO approving block {"height": 266, "hash": "66b63e7783a286e77d28c6497e0da00bfc27ae04b781aabc18464480bf652259", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc48ebbaf1809d1d2aa42eb0d64871a8f99475df6e2db53f0766edd45064eac5"} -2023-12-15T14:16:36.294Z INFO initializing dbft {"height": 267, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:36.294Z debug frostfs-node/morph.go:229 new block {"index": 266} -2023-12-15T14:16:37.109Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 266, "blockHeight": 266, "took": "3.75085ms"} -2023-12-15T14:16:37.294Z INFO sending PrepareRequest {"height": 267, "view": 0} -2023-12-15T14:16:37.294Z INFO sending Commit {"height": 267, "view": 0} -2023-12-15T14:16:37.295Z INFO approving block {"height": 267, "hash": "1902a34eb2fe893cf7dc4bd187dedf341efd74fb7b4484fda7b76763b2580657", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66b63e7783a286e77d28c6497e0da00bfc27ae04b781aabc18464480bf652259"} -2023-12-15T14:16:37.296Z INFO initializing dbft {"height": 268, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:37.297Z debug frostfs-node/morph.go:229 new block {"index": 267} -2023-12-15T14:16:37.299Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:16:37.304Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:16:37.304Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:16:38.110Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 267, "blockHeight": 267, "took": "4.365459ms"} -2023-12-15T14:16:38.296Z INFO sending PrepareRequest {"height": 268, "view": 0} -2023-12-15T14:16:38.296Z INFO sending Commit {"height": 268, "view": 0} -2023-12-15T14:16:38.297Z INFO approving block {"height": 268, "hash": "e55fb6d77796f492d0b86137f4fc39fda358e52c8dcb590bb94e39055d25e2de", "tx_count": 2, "merkle": "6dcd8ff3cfba4323976b81be50835d1663c023ea53b91ae2c9c6d385c492dda6", "prev": "1902a34eb2fe893cf7dc4bd187dedf341efd74fb7b4484fda7b76763b2580657"} -2023-12-15T14:16:38.298Z INFO runtime log {"tx": "e64c0ed01560b6006bbd25306b327c133a8130440372f6531f9a8fdfbe1b3555", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:16:38.298Z INFO runtime log {"tx": "e64c0ed01560b6006bbd25306b327c133a8130440372f6531f9a8fdfbe1b3555", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:16:38.299Z INFO initializing dbft {"height": 269, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:38.300Z debug frostfs-node/morph.go:229 new block {"index": 268} -2023-12-15T14:16:39.114Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 268, "blockHeight": 268, "took": "7.254143ms"} -2023-12-15T14:16:39.297Z INFO sending PrepareRequest {"height": 269, "view": 0} -2023-12-15T14:16:39.297Z INFO sending Commit {"height": 269, "view": 0} -2023-12-15T14:16:39.298Z INFO approving block {"height": 269, "hash": "57308fc3294f9eabbb076a760f2adc29ce6499a7e92a56576e0f667ce755b8f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e55fb6d77796f492d0b86137f4fc39fda358e52c8dcb590bb94e39055d25e2de"} -2023-12-15T14:16:39.298Z INFO initializing dbft {"height": 270, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:39.299Z debug frostfs-node/morph.go:229 new block {"index": 269} -2023-12-15T14:16:39.302Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 1, "iteration": 3, "error": "no data for 2 iteration in 1 epoch for consumers's trusts"} -2023-12-15T14:16:40.111Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 269, "blockHeight": 269, "took": "3.910022ms"} -2023-12-15T14:16:40.299Z INFO sending PrepareRequest {"height": 270, "view": 0} -2023-12-15T14:16:40.300Z INFO sending Commit {"height": 270, "view": 0} -2023-12-15T14:16:40.300Z INFO approving block {"height": 270, "hash": "f585102f5014b26cb3aa3fb7d6c324a8c778215951ba94ade410f7b4f94754ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57308fc3294f9eabbb076a760f2adc29ce6499a7e92a56576e0f667ce755b8f2"} -2023-12-15T14:16:40.301Z INFO initializing dbft {"height": 271, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:40.302Z debug frostfs-node/morph.go:229 new block {"index": 270} -2023-12-15T14:16:41.112Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 270, "blockHeight": 270, "took": "3.182873ms"} -2023-12-15T14:16:41.301Z INFO sending PrepareRequest {"height": 271, "view": 0} -2023-12-15T14:16:41.301Z INFO sending Commit {"height": 271, "view": 0} -2023-12-15T14:16:41.302Z INFO approving block {"height": 271, "hash": "dfe49f9129f2b91fa7102cb06d482ca47d94e8de3ce1c3ccec637262115276eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f585102f5014b26cb3aa3fb7d6c324a8c778215951ba94ade410f7b4f94754ff"} -2023-12-15T14:16:41.302Z INFO initializing dbft {"height": 272, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:41.303Z debug frostfs-node/morph.go:229 new block {"index": 271} -2023-12-15T14:16:42.114Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 271, "blockHeight": 271, "took": "5.47578ms"} -2023-12-15T14:16:42.303Z INFO sending PrepareRequest {"height": 272, "view": 0} -2023-12-15T14:16:42.303Z INFO sending Commit {"height": 272, "view": 0} -2023-12-15T14:16:42.304Z INFO approving block {"height": 272, "hash": "2d6b9c8a38c699d7980265fbfa22fd1e0635981ff64005440f0dc271a222dfad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfe49f9129f2b91fa7102cb06d482ca47d94e8de3ce1c3ccec637262115276eb"} -2023-12-15T14:16:42.305Z INFO initializing dbft {"height": 273, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:42.306Z debug frostfs-node/morph.go:229 new block {"index": 272} -2023-12-15T14:16:43.114Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 272, "blockHeight": 272, "took": "4.540243ms"} -2023-12-15T14:16:43.305Z INFO sending PrepareRequest {"height": 273, "view": 0} -2023-12-15T14:16:43.305Z INFO sending Commit {"height": 273, "view": 0} -2023-12-15T14:16:43.305Z INFO approving block {"height": 273, "hash": "6a4e663d5d556d999d22c4ac62eb89092d4bc4d8df3d9ee160f26c5e69403451", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d6b9c8a38c699d7980265fbfa22fd1e0635981ff64005440f0dc271a222dfad"} -2023-12-15T14:16:43.306Z INFO initializing dbft {"height": 274, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:43.307Z debug frostfs-node/morph.go:229 new block {"index": 273} -2023-12-15T14:16:44.116Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 273, "blockHeight": 273, "took": "5.49602ms"} -2023-12-15T14:16:44.306Z INFO sending PrepareRequest {"height": 274, "view": 0} -2023-12-15T14:16:44.306Z INFO sending Commit {"height": 274, "view": 0} -2023-12-15T14:16:44.307Z INFO approving block {"height": 274, "hash": "1f6462b0a5adf47a5dd78bb46c24de5436d741b6eebd63e76228e7b375a5e4f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a4e663d5d556d999d22c4ac62eb89092d4bc4d8df3d9ee160f26c5e69403451"} -2023-12-15T14:16:44.308Z INFO initializing dbft {"height": 275, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:44.308Z debug frostfs-node/morph.go:229 new block {"index": 274} -2023-12-15T14:16:45.116Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 274, "blockHeight": 274, "took": "5.119222ms"} -2023-12-15T14:16:45.308Z INFO sending PrepareRequest {"height": 275, "view": 0} -2023-12-15T14:16:45.308Z INFO sending Commit {"height": 275, "view": 0} -2023-12-15T14:16:45.308Z INFO approving block {"height": 275, "hash": "8a67c82c5556a2cf8601c7f9fcee661da5776e8c9e89e25007c77450582a929c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f6462b0a5adf47a5dd78bb46c24de5436d741b6eebd63e76228e7b375a5e4f7"} -2023-12-15T14:16:45.309Z INFO initializing dbft {"height": 276, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:45.310Z debug frostfs-node/morph.go:229 new block {"index": 275} -2023-12-15T14:16:46.113Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 275, "blockHeight": 275, "took": "2.363279ms"} -2023-12-15T14:16:46.309Z INFO sending PrepareRequest {"height": 276, "view": 0} -2023-12-15T14:16:46.310Z INFO sending Commit {"height": 276, "view": 0} -2023-12-15T14:16:46.310Z INFO approving block {"height": 276, "hash": "3e79c396b51e68d97e2c9cd3bcb5cf29031f8d5464cba0a99a0e55f4c7cf72cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a67c82c5556a2cf8601c7f9fcee661da5776e8c9e89e25007c77450582a929c"} -2023-12-15T14:16:46.312Z INFO initializing dbft {"height": 277, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:46.312Z debug frostfs-node/morph.go:229 new block {"index": 276} -2023-12-15T14:16:47.116Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 276, "blockHeight": 276, "took": "4.531975ms"} -2023-12-15T14:16:47.311Z INFO sending PrepareRequest {"height": 277, "view": 0} -2023-12-15T14:16:47.311Z INFO sending Commit {"height": 277, "view": 0} -2023-12-15T14:16:47.312Z INFO approving block {"height": 277, "hash": "3224d7e6c6d53de6e13fad50919d9bfe9e7a363cd7af015762c8859939e36130", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e79c396b51e68d97e2c9cd3bcb5cf29031f8d5464cba0a99a0e55f4c7cf72cd"} -2023-12-15T14:16:47.314Z INFO initializing dbft {"height": 278, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:47.316Z debug frostfs-node/morph.go:229 new block {"index": 277} -2023-12-15T14:16:48.117Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 277, "blockHeight": 277, "took": "4.323736ms"} -2023-12-15T14:16:48.313Z INFO sending PrepareRequest {"height": 278, "view": 0} -2023-12-15T14:16:48.313Z INFO sending Commit {"height": 278, "view": 0} -2023-12-15T14:16:48.313Z INFO approving block {"height": 278, "hash": "314464bd2cda8ab21a9608da783433c5a41fb259efdc46a1a6b790cae0f8f064", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3224d7e6c6d53de6e13fad50919d9bfe9e7a363cd7af015762c8859939e36130"} -2023-12-15T14:16:48.314Z INFO initializing dbft {"height": 279, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:48.314Z debug frostfs-node/morph.go:229 new block {"index": 278} -2023-12-15T14:16:49.119Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 278, "blockHeight": 278, "took": "6.051266ms"} -2023-12-15T14:16:49.314Z INFO sending PrepareRequest {"height": 279, "view": 0} -2023-12-15T14:16:49.314Z INFO sending Commit {"height": 279, "view": 0} -2023-12-15T14:16:49.315Z INFO approving block {"height": 279, "hash": "38f58aa92eadd8cf5cea89110becfb6281a6944a72d13922e59cd853859fcb39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "314464bd2cda8ab21a9608da783433c5a41fb259efdc46a1a6b790cae0f8f064"} -2023-12-15T14:16:49.316Z INFO initializing dbft {"height": 280, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:49.317Z debug frostfs-node/morph.go:229 new block {"index": 279} -2023-12-15T14:16:50.121Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 279, "blockHeight": 279, "took": "7.039355ms"} -2023-12-15T14:16:50.316Z INFO sending PrepareRequest {"height": 280, "view": 0} -2023-12-15T14:16:50.316Z INFO sending Commit {"height": 280, "view": 0} -2023-12-15T14:16:50.316Z INFO approving block {"height": 280, "hash": "54c40e71de2773ef10f214a6c16ad587040f488e7910037ff2ce88c2bf87b749", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38f58aa92eadd8cf5cea89110becfb6281a6944a72d13922e59cd853859fcb39"} -2023-12-15T14:16:50.318Z INFO initializing dbft {"height": 281, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:50.318Z debug frostfs-node/morph.go:229 new block {"index": 280} -2023-12-15T14:16:51.120Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 280, "blockHeight": 280, "took": "6.06421ms"} -2023-12-15T14:16:51.318Z INFO sending PrepareRequest {"height": 281, "view": 0} -2023-12-15T14:16:51.318Z INFO sending Commit {"height": 281, "view": 0} -2023-12-15T14:16:51.318Z INFO approving block {"height": 281, "hash": "25d49807e71ec5f3a6e9969b848e22288b5c3f57e58af82fbeccca0f64de11dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54c40e71de2773ef10f214a6c16ad587040f488e7910037ff2ce88c2bf87b749"} -2023-12-15T14:16:51.320Z INFO initializing dbft {"height": 282, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:51.320Z debug frostfs-node/morph.go:229 new block {"index": 281} -2023-12-15T14:16:52.120Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 281, "blockHeight": 281, "took": "4.566056ms"} -2023-12-15T14:16:52.319Z INFO sending PrepareRequest {"height": 282, "view": 0} -2023-12-15T14:16:52.319Z INFO sending Commit {"height": 282, "view": 0} -2023-12-15T14:16:52.320Z INFO approving block {"height": 282, "hash": "1b0ee1ec4fe3bf20b9afe40263bf0ba300bfb450eff093fddaa0b0bd385b4792", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25d49807e71ec5f3a6e9969b848e22288b5c3f57e58af82fbeccca0f64de11dd"} -2023-12-15T14:16:52.321Z INFO initializing dbft {"height": 283, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:52.322Z debug frostfs-node/morph.go:229 new block {"index": 282} -2023-12-15T14:16:53.122Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 282, "blockHeight": 282, "took": "6.077994ms"} -2023-12-15T14:16:53.321Z INFO sending PrepareRequest {"height": 283, "view": 0} -2023-12-15T14:16:53.321Z INFO sending Commit {"height": 283, "view": 0} -2023-12-15T14:16:53.321Z INFO approving block {"height": 283, "hash": "70fffb2c96cb6207bd9581d044fae5e344d94ec2485b2abeeb4b835377200872", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b0ee1ec4fe3bf20b9afe40263bf0ba300bfb450eff093fddaa0b0bd385b4792"} -2023-12-15T14:16:53.323Z INFO initializing dbft {"height": 284, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:53.324Z debug frostfs-node/morph.go:229 new block {"index": 283} -2023-12-15T14:16:54.119Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 283, "blockHeight": 283, "took": "2.719766ms"} -2023-12-15T14:16:54.322Z INFO sending PrepareRequest {"height": 284, "view": 0} -2023-12-15T14:16:54.322Z INFO sending Commit {"height": 284, "view": 0} -2023-12-15T14:16:54.323Z INFO approving block {"height": 284, "hash": "8d3250df3340aab8b955454f022897ba1912a4c0ad8ce0873cf08ce1d3466b31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70fffb2c96cb6207bd9581d044fae5e344d94ec2485b2abeeb4b835377200872"} -2023-12-15T14:16:54.324Z INFO initializing dbft {"height": 285, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:54.325Z debug frostfs-node/morph.go:229 new block {"index": 284} -2023-12-15T14:16:55.122Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 284, "blockHeight": 284, "took": "4.962651ms"} -2023-12-15T14:16:55.323Z INFO sending PrepareRequest {"height": 285, "view": 0} -2023-12-15T14:16:55.324Z INFO sending Commit {"height": 285, "view": 0} -2023-12-15T14:16:55.324Z INFO approving block {"height": 285, "hash": "f2cda93403a56283c2bd4248f4f9d0b1c50e4c6353c20c584850f6a925f08ac4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d3250df3340aab8b955454f022897ba1912a4c0ad8ce0873cf08ce1d3466b31"} -2023-12-15T14:16:55.325Z INFO initializing dbft {"height": 286, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:55.326Z debug frostfs-node/morph.go:229 new block {"index": 285} -2023-12-15T14:16:56.123Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 285, "blockHeight": 285, "took": "6.419896ms"} -2023-12-15T14:16:56.325Z INFO sending PrepareRequest {"height": 286, "view": 0} -2023-12-15T14:16:56.325Z INFO sending Commit {"height": 286, "view": 0} -2023-12-15T14:16:56.325Z INFO approving block {"height": 286, "hash": "00fd278d8ca4539bef0a5275b47da9f8026d05f92e4c1b843fbab8bed52f71a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2cda93403a56283c2bd4248f4f9d0b1c50e4c6353c20c584850f6a925f08ac4"} -2023-12-15T14:16:56.326Z INFO initializing dbft {"height": 287, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:56.326Z debug frostfs-node/morph.go:229 new block {"index": 286} -2023-12-15T14:16:57.122Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 286, "blockHeight": 286, "took": "4.801459ms"} -2023-12-15T14:16:57.326Z INFO sending PrepareRequest {"height": 287, "view": 0} -2023-12-15T14:16:57.326Z INFO sending Commit {"height": 287, "view": 0} -2023-12-15T14:16:57.327Z INFO approving block {"height": 287, "hash": "bc2d3e6ad4837dc71553b78eaa77fa185238de8bbec62dd2f3e1acaaea1b1be1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00fd278d8ca4539bef0a5275b47da9f8026d05f92e4c1b843fbab8bed52f71a6"} -2023-12-15T14:16:57.327Z INFO initializing dbft {"height": 288, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:57.328Z debug frostfs-node/morph.go:229 new block {"index": 287} -2023-12-15T14:16:58.123Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 287, "blockHeight": 287, "took": "4.63183ms"} -2023-12-15T14:16:58.327Z INFO sending PrepareRequest {"height": 288, "view": 0} -2023-12-15T14:16:58.327Z INFO sending Commit {"height": 288, "view": 0} -2023-12-15T14:16:58.328Z INFO approving block {"height": 288, "hash": "7a3cea0c76472832509c35f7ded7eefae313941b6b1c650a235c18bb5e268710", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc2d3e6ad4837dc71553b78eaa77fa185238de8bbec62dd2f3e1acaaea1b1be1"} -2023-12-15T14:16:58.329Z INFO initializing dbft {"height": 289, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:58.329Z debug frostfs-node/morph.go:229 new block {"index": 288} -2023-12-15T14:16:59.123Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 288, "blockHeight": 288, "took": "4.159657ms"} -2023-12-15T14:16:59.329Z INFO sending PrepareRequest {"height": 289, "view": 0} -2023-12-15T14:16:59.329Z INFO sending Commit {"height": 289, "view": 0} -2023-12-15T14:16:59.329Z INFO approving block {"height": 289, "hash": "3acd64d95f529851d5e9eebed4d362d86eb9fbd73fcb439842e27c957fd00738", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a3cea0c76472832509c35f7ded7eefae313941b6b1c650a235c18bb5e268710"} -2023-12-15T14:16:59.330Z INFO initializing dbft {"height": 290, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:16:59.331Z debug frostfs-node/morph.go:229 new block {"index": 289} -2023-12-15T14:17:00.126Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 289, "blockHeight": 289, "took": "6.174139ms"} -2023-12-15T14:17:00.331Z INFO sending PrepareRequest {"height": 290, "view": 0} -2023-12-15T14:17:00.331Z INFO sending Commit {"height": 290, "view": 0} -2023-12-15T14:17:00.331Z INFO approving block {"height": 290, "hash": "f30d0ead1b0c7798a042d9d0d7975163b23010d375a9a20972083703f8998667", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3acd64d95f529851d5e9eebed4d362d86eb9fbd73fcb439842e27c957fd00738"} -2023-12-15T14:17:00.333Z INFO initializing dbft {"height": 291, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:00.333Z debug frostfs-node/morph.go:229 new block {"index": 290} -2023-12-15T14:17:01.125Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 290, "blockHeight": 290, "took": "4.392878ms"} -2023-12-15T14:17:01.333Z INFO sending PrepareRequest {"height": 291, "view": 0} -2023-12-15T14:17:01.333Z INFO sending Commit {"height": 291, "view": 0} -2023-12-15T14:17:01.333Z INFO approving block {"height": 291, "hash": "3bbff2a74d3d6b6be517b7dbbbb2d0567b388f58c5b06856c12460f514e5cf49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f30d0ead1b0c7798a042d9d0d7975163b23010d375a9a20972083703f8998667"} -2023-12-15T14:17:01.335Z INFO initializing dbft {"height": 292, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:01.336Z debug frostfs-node/morph.go:229 new block {"index": 291} -2023-12-15T14:17:02.126Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 291, "blockHeight": 291, "took": "5.370127ms"} -2023-12-15T14:17:02.335Z INFO sending PrepareRequest {"height": 292, "view": 0} -2023-12-15T14:17:02.335Z INFO sending Commit {"height": 292, "view": 0} -2023-12-15T14:17:02.335Z INFO approving block {"height": 292, "hash": "531d446dc195699c94fe8df0ba5383c5ece1ca36de021ff3bdb5e7ba7426015d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bbff2a74d3d6b6be517b7dbbbb2d0567b388f58c5b06856c12460f514e5cf49"} -2023-12-15T14:17:02.336Z INFO initializing dbft {"height": 293, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:02.337Z debug frostfs-node/morph.go:229 new block {"index": 292} -2023-12-15T14:17:03.126Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 292, "blockHeight": 292, "took": "4.405284ms"} -2023-12-15T14:17:03.336Z INFO sending PrepareRequest {"height": 293, "view": 0} -2023-12-15T14:17:03.337Z INFO sending Commit {"height": 293, "view": 0} -2023-12-15T14:17:03.337Z INFO approving block {"height": 293, "hash": "dd062bb550905d6d53e68fc4249b7d57be4120724c162b68fe2ed280269ebc3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "531d446dc195699c94fe8df0ba5383c5ece1ca36de021ff3bdb5e7ba7426015d"} -2023-12-15T14:17:03.338Z INFO initializing dbft {"height": 294, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:03.339Z debug frostfs-node/morph.go:229 new block {"index": 293} -2023-12-15T14:17:04.125Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 293, "blockHeight": 293, "took": "3.337193ms"} -2023-12-15T14:17:04.338Z INFO sending PrepareRequest {"height": 294, "view": 0} -2023-12-15T14:17:04.338Z INFO sending Commit {"height": 294, "view": 0} -2023-12-15T14:17:04.338Z INFO approving block {"height": 294, "hash": "75be6f08400029e291f013908cafa9cafcd46a9bf002916271165ddcf9b34faf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd062bb550905d6d53e68fc4249b7d57be4120724c162b68fe2ed280269ebc3b"} -2023-12-15T14:17:04.339Z INFO initializing dbft {"height": 295, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:04.339Z debug frostfs-node/morph.go:229 new block {"index": 294} -2023-12-15T14:17:05.130Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 294, "blockHeight": 294, "took": "7.857744ms"} -2023-12-15T14:17:05.339Z INFO sending PrepareRequest {"height": 295, "view": 0} -2023-12-15T14:17:05.339Z INFO sending Commit {"height": 295, "view": 0} -2023-12-15T14:17:05.339Z INFO approving block {"height": 295, "hash": "935345529e5c4b321ea3de6a0e524496f8a4685f8e446f759c8d636172ec48a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75be6f08400029e291f013908cafa9cafcd46a9bf002916271165ddcf9b34faf"} -2023-12-15T14:17:05.340Z INFO initializing dbft {"height": 296, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:05.341Z debug frostfs-node/morph.go:229 new block {"index": 295} -2023-12-15T14:17:06.127Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 295, "blockHeight": 295, "took": "4.12079ms"} -2023-12-15T14:17:06.341Z INFO sending PrepareRequest {"height": 296, "view": 0} -2023-12-15T14:17:06.341Z INFO sending Commit {"height": 296, "view": 0} -2023-12-15T14:17:06.341Z INFO approving block {"height": 296, "hash": "52f17892d6fc5483b47806b9e9754c7fc841665edcd1b8d20f4592e5a49d8c17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "935345529e5c4b321ea3de6a0e524496f8a4685f8e446f759c8d636172ec48a6"} -2023-12-15T14:17:06.343Z INFO initializing dbft {"height": 297, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:06.343Z debug frostfs-node/morph.go:229 new block {"index": 296} -2023-12-15T14:17:07.126Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 296, "blockHeight": 296, "took": "2.712463ms"} -2023-12-15T14:17:07.342Z INFO sending PrepareRequest {"height": 297, "view": 0} -2023-12-15T14:17:07.342Z INFO sending Commit {"height": 297, "view": 0} -2023-12-15T14:17:07.342Z INFO approving block {"height": 297, "hash": "134e2c2e98efbaf06b5342f02d4ba491a22d058e0eeeaee8ec6492d16659e30a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52f17892d6fc5483b47806b9e9754c7fc841665edcd1b8d20f4592e5a49d8c17"} -2023-12-15T14:17:07.343Z INFO initializing dbft {"height": 298, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:07.343Z debug frostfs-node/morph.go:229 new block {"index": 297} -2023-12-15T14:17:08.128Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 297, "blockHeight": 297, "took": "4.612755ms"} -2023-12-15T14:17:08.344Z INFO sending PrepareRequest {"height": 298, "view": 0} -2023-12-15T14:17:08.344Z INFO sending Commit {"height": 298, "view": 0} -2023-12-15T14:17:08.344Z INFO approving block {"height": 298, "hash": "73c4ac682de3322cfd3caef5c4172cfc1556bd96af12ed4f1713bba9c8cf75bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "134e2c2e98efbaf06b5342f02d4ba491a22d058e0eeeaee8ec6492d16659e30a"} -2023-12-15T14:17:08.345Z INFO initializing dbft {"height": 299, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:08.346Z debug frostfs-node/morph.go:229 new block {"index": 298} -2023-12-15T14:17:09.132Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 298, "blockHeight": 298, "took": "7.345982ms"} -2023-12-15T14:17:09.346Z INFO sending PrepareRequest {"height": 299, "view": 0} -2023-12-15T14:17:09.346Z INFO sending Commit {"height": 299, "view": 0} -2023-12-15T14:17:09.346Z INFO approving block {"height": 299, "hash": "9438f9e0b007b0f1ef418848813afecd95ac84e16b1a633741a0ddca4ffa550c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73c4ac682de3322cfd3caef5c4172cfc1556bd96af12ed4f1713bba9c8cf75bf"} -2023-12-15T14:17:09.348Z INFO initializing dbft {"height": 300, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:09.349Z debug frostfs-node/morph.go:229 new block {"index": 299} -2023-12-15T14:17:10.131Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 299, "blockHeight": 299, "took": "5.769308ms"} -2023-12-15T14:17:10.347Z INFO sending PrepareRequest {"height": 300, "view": 0} -2023-12-15T14:17:10.347Z INFO sending Commit {"height": 300, "view": 0} -2023-12-15T14:17:10.348Z INFO approving block {"height": 300, "hash": "2ac729814133e5090599fa7150f9613dccda017fa9b0880fb056a76c67278749", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9438f9e0b007b0f1ef418848813afecd95ac84e16b1a633741a0ddca4ffa550c"} -2023-12-15T14:17:10.349Z INFO initializing dbft {"height": 301, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:10.350Z debug frostfs-node/morph.go:229 new block {"index": 300} -2023-12-15T14:17:11.131Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 300, "blockHeight": 300, "took": "5.464083ms"} -2023-12-15T14:17:11.349Z INFO sending PrepareRequest {"height": 301, "view": 0} -2023-12-15T14:17:11.349Z INFO sending Commit {"height": 301, "view": 0} -2023-12-15T14:17:11.350Z INFO approving block {"height": 301, "hash": "ecd9177bb4bc219aabe1e732a9317e0a85beb06c5e118a132103e9e46abe49e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ac729814133e5090599fa7150f9613dccda017fa9b0880fb056a76c67278749"} -2023-12-15T14:17:11.351Z INFO initializing dbft {"height": 302, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:11.352Z debug frostfs-node/morph.go:229 new block {"index": 301} -2023-12-15T14:17:11.358Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 2 epoch for daughters"} -2023-12-15T14:17:11.360Z INFO runtime log {"tx": "2f3adebbc58111b8a2b0b0be807c1d36ed46aaf4977753b7f4f091bf8b297086", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:17:12.134Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 301, "blockHeight": 301, "took": "6.781978ms"} -2023-12-15T14:17:12.351Z INFO sending PrepareRequest {"height": 302, "view": 0} -2023-12-15T14:17:12.351Z INFO sending Commit {"height": 302, "view": 0} -2023-12-15T14:17:12.351Z INFO approving block {"height": 302, "hash": "b2477a32f9a2d37f8049d85b04e5ca77ea316390cd845d914c499de0c56b996a", "tx_count": 1, "merkle": "32f7a10f2167984f9f5ce4050ae5bd55a235bba3c1352ae1089e1934e8d28e61", "prev": "ecd9177bb4bc219aabe1e732a9317e0a85beb06c5e118a132103e9e46abe49e5"} -2023-12-15T14:17:12.352Z INFO runtime log {"tx": "618ed2e834199e08e12a35c1a3bb35a255bde50a05e45c9f4f9867210fa1f732", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:17:12.353Z INFO initializing dbft {"height": 303, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:12.353Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 2} -2023-12-15T14:17:12.353Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 2} -2023-12-15T14:17:12.354Z debug frostfs-node/morph.go:229 new block {"index": 302} -2023-12-15T14:17:13.134Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 302, "blockHeight": 302, "took": "6.917912ms"} -2023-12-15T14:17:13.352Z INFO sending PrepareRequest {"height": 303, "view": 0} -2023-12-15T14:17:13.353Z INFO sending Commit {"height": 303, "view": 0} -2023-12-15T14:17:13.353Z INFO approving block {"height": 303, "hash": "ea4fc7737ae46a08d4e60206293231b8c457875150de5329800a90d986e72bee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2477a32f9a2d37f8049d85b04e5ca77ea316390cd845d914c499de0c56b996a"} -2023-12-15T14:17:13.353Z INFO initializing dbft {"height": 304, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:13.354Z debug frostfs-node/morph.go:229 new block {"index": 303} -2023-12-15T14:17:14.132Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 303, "blockHeight": 303, "took": "3.611006ms"} -2023-12-15T14:17:14.354Z INFO sending PrepareRequest {"height": 304, "view": 0} -2023-12-15T14:17:14.354Z INFO sending Commit {"height": 304, "view": 0} -2023-12-15T14:17:14.354Z INFO approving block {"height": 304, "hash": "5a42e1128c156375b1b008ac4aa67a9babe507a0f5249d5885b7b5aa0b8d4203", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea4fc7737ae46a08d4e60206293231b8c457875150de5329800a90d986e72bee"} -2023-12-15T14:17:14.355Z INFO initializing dbft {"height": 305, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:14.355Z debug frostfs-node/morph.go:229 new block {"index": 304} -2023-12-15T14:17:15.132Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 304, "blockHeight": 304, "took": "3.661136ms"} -2023-12-15T14:17:15.355Z INFO sending PrepareRequest {"height": 305, "view": 0} -2023-12-15T14:17:15.355Z INFO sending Commit {"height": 305, "view": 0} -2023-12-15T14:17:15.356Z INFO approving block {"height": 305, "hash": "532bd4443378e2dff9968a02c570a28ff9d77ca65ac00ac5f8dd721e49039b6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a42e1128c156375b1b008ac4aa67a9babe507a0f5249d5885b7b5aa0b8d4203"} -2023-12-15T14:17:15.356Z INFO initializing dbft {"height": 306, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:15.357Z debug frostfs-node/morph.go:229 new block {"index": 305} -2023-12-15T14:17:16.133Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 305, "blockHeight": 305, "took": "3.908744ms"} -2023-12-15T14:17:16.357Z INFO sending PrepareRequest {"height": 306, "view": 0} -2023-12-15T14:17:16.357Z INFO sending Commit {"height": 306, "view": 0} -2023-12-15T14:17:16.358Z INFO approving block {"height": 306, "hash": "988c737f67aa351a7498e473234d2bba8823d052c9c390fe50ea06a3699979b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "532bd4443378e2dff9968a02c570a28ff9d77ca65ac00ac5f8dd721e49039b6f"} -2023-12-15T14:17:16.359Z INFO initializing dbft {"height": 307, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:16.360Z debug frostfs-node/morph.go:229 new block {"index": 306} -2023-12-15T14:17:17.133Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 306, "blockHeight": 306, "took": "3.844071ms"} -2023-12-15T14:17:17.359Z INFO sending PrepareRequest {"height": 307, "view": 0} -2023-12-15T14:17:17.359Z INFO sending Commit {"height": 307, "view": 0} -2023-12-15T14:17:17.359Z INFO approving block {"height": 307, "hash": "3393c931ee15a10c88103af337365c633cd641cf0324fcc5aaaf9805468a4e13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "988c737f67aa351a7498e473234d2bba8823d052c9c390fe50ea06a3699979b7"} -2023-12-15T14:17:17.360Z INFO initializing dbft {"height": 308, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:17.361Z debug frostfs-node/morph.go:229 new block {"index": 307} -2023-12-15T14:17:18.136Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 307, "blockHeight": 307, "took": "5.572726ms"} -2023-12-15T14:17:18.360Z INFO sending PrepareRequest {"height": 308, "view": 0} -2023-12-15T14:17:18.360Z INFO sending Commit {"height": 308, "view": 0} -2023-12-15T14:17:18.361Z INFO approving block {"height": 308, "hash": "6ef5ea26fec6384bbff8d16b5a81842a9adab369530da55ba3a0ae9b65d0e211", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3393c931ee15a10c88103af337365c633cd641cf0324fcc5aaaf9805468a4e13"} -2023-12-15T14:17:18.362Z INFO initializing dbft {"height": 309, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:18.363Z debug frostfs-node/morph.go:229 new block {"index": 308} -2023-12-15T14:17:19.136Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 308, "blockHeight": 308, "took": "4.709164ms"} -2023-12-15T14:17:19.362Z INFO sending PrepareRequest {"height": 309, "view": 0} -2023-12-15T14:17:19.362Z INFO sending Commit {"height": 309, "view": 0} -2023-12-15T14:17:19.363Z INFO approving block {"height": 309, "hash": "b68ea5b2c8c36cce0f259adb655b0182628730d1e440fc55e87164a000051044", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ef5ea26fec6384bbff8d16b5a81842a9adab369530da55ba3a0ae9b65d0e211"} -2023-12-15T14:17:19.364Z INFO initializing dbft {"height": 310, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:19.365Z debug frostfs-node/morph.go:229 new block {"index": 309} -2023-12-15T14:17:20.139Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 309, "blockHeight": 309, "took": "7.767977ms"} -2023-12-15T14:17:20.364Z INFO sending PrepareRequest {"height": 310, "view": 0} -2023-12-15T14:17:20.364Z INFO sending Commit {"height": 310, "view": 0} -2023-12-15T14:17:20.364Z INFO approving block {"height": 310, "hash": "d86fe8a7a8c00fac8aa414a9fee00a2ad66e86474beeb82998cdf95233f0402e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b68ea5b2c8c36cce0f259adb655b0182628730d1e440fc55e87164a000051044"} -2023-12-15T14:17:20.365Z INFO initializing dbft {"height": 311, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:20.366Z debug frostfs-node/morph.go:229 new block {"index": 310} -2023-12-15T14:17:21.136Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 310, "blockHeight": 310, "took": "3.812601ms"} -2023-12-15T14:17:21.365Z INFO sending PrepareRequest {"height": 311, "view": 0} -2023-12-15T14:17:21.366Z INFO sending Commit {"height": 311, "view": 0} -2023-12-15T14:17:21.366Z INFO approving block {"height": 311, "hash": "22dc0fc888d70359490993c3f6d29090c9ff0bb899bbcc433a11f4b58733e886", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d86fe8a7a8c00fac8aa414a9fee00a2ad66e86474beeb82998cdf95233f0402e"} -2023-12-15T14:17:21.367Z INFO initializing dbft {"height": 312, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:21.368Z debug frostfs-node/morph.go:229 new block {"index": 311} -2023-12-15T14:17:22.137Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 311, "blockHeight": 311, "took": "4.139623ms"} -2023-12-15T14:17:22.367Z INFO sending PrepareRequest {"height": 312, "view": 0} -2023-12-15T14:17:22.367Z INFO sending Commit {"height": 312, "view": 0} -2023-12-15T14:17:22.367Z INFO approving block {"height": 312, "hash": "ab0d0eb6228a1fa57cb551c12e263fc60c06af80912e354fd5fccc1776a75467", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22dc0fc888d70359490993c3f6d29090c9ff0bb899bbcc433a11f4b58733e886"} -2023-12-15T14:17:22.368Z INFO initializing dbft {"height": 313, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:22.369Z debug frostfs-node/morph.go:229 new block {"index": 312} -2023-12-15T14:17:23.138Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 312, "blockHeight": 312, "took": "4.464095ms"} -2023-12-15T14:17:23.368Z INFO sending PrepareRequest {"height": 313, "view": 0} -2023-12-15T14:17:23.369Z INFO sending Commit {"height": 313, "view": 0} -2023-12-15T14:17:23.369Z INFO approving block {"height": 313, "hash": "ef60a103e6908dcc6d44c5f30783eed1eb65e455431c6375cc04c5d6e41b69f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab0d0eb6228a1fa57cb551c12e263fc60c06af80912e354fd5fccc1776a75467"} -2023-12-15T14:17:23.370Z INFO initializing dbft {"height": 314, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:23.371Z debug frostfs-node/morph.go:229 new block {"index": 313} -2023-12-15T14:17:24.139Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 313, "blockHeight": 313, "took": "5.024639ms"} -2023-12-15T14:17:24.370Z INFO sending PrepareRequest {"height": 314, "view": 0} -2023-12-15T14:17:24.370Z INFO sending Commit {"height": 314, "view": 0} -2023-12-15T14:17:24.370Z INFO approving block {"height": 314, "hash": "7c06665005a0875f3de71e8fdf1b5cfe315a9568cc43fd62b7bbfb86823feac1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef60a103e6908dcc6d44c5f30783eed1eb65e455431c6375cc04c5d6e41b69f1"} -2023-12-15T14:17:24.371Z INFO initializing dbft {"height": 315, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:24.372Z debug frostfs-node/morph.go:229 new block {"index": 314} -2023-12-15T14:17:25.138Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 314, "blockHeight": 314, "took": "3.396296ms"} -2023-12-15T14:17:25.371Z INFO sending PrepareRequest {"height": 315, "view": 0} -2023-12-15T14:17:25.371Z INFO sending Commit {"height": 315, "view": 0} -2023-12-15T14:17:25.372Z INFO approving block {"height": 315, "hash": "af7f2a8b4a280f491a77cdb9d75682a21fb6e0db520b707c85b432c2e3b6244b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c06665005a0875f3de71e8fdf1b5cfe315a9568cc43fd62b7bbfb86823feac1"} -2023-12-15T14:17:25.373Z INFO initializing dbft {"height": 316, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:25.374Z debug frostfs-node/morph.go:229 new block {"index": 315} -2023-12-15T14:17:26.141Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 315, "blockHeight": 315, "took": "5.694203ms"} -2023-12-15T14:17:26.373Z INFO sending PrepareRequest {"height": 316, "view": 0} -2023-12-15T14:17:26.373Z INFO sending Commit {"height": 316, "view": 0} -2023-12-15T14:17:26.373Z INFO approving block {"height": 316, "hash": "27156da4c6052cfd240d0a57165f1700d3c494f924b15fe91da25a8ee79a87d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af7f2a8b4a280f491a77cdb9d75682a21fb6e0db520b707c85b432c2e3b6244b"} -2023-12-15T14:17:26.374Z INFO initializing dbft {"height": 317, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:26.375Z debug frostfs-node/morph.go:229 new block {"index": 316} -2023-12-15T14:17:27.140Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 316, "blockHeight": 316, "took": "3.834901ms"} -2023-12-15T14:17:27.374Z INFO sending PrepareRequest {"height": 317, "view": 0} -2023-12-15T14:17:27.374Z INFO sending Commit {"height": 317, "view": 0} -2023-12-15T14:17:27.375Z INFO approving block {"height": 317, "hash": "6489787069f20fb8eb57cb97cecfd84354993779044ff4dc1d0fb0cb866cf3a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27156da4c6052cfd240d0a57165f1700d3c494f924b15fe91da25a8ee79a87d5"} -2023-12-15T14:17:27.376Z INFO initializing dbft {"height": 318, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:27.376Z debug frostfs-node/morph.go:229 new block {"index": 317} -2023-12-15T14:17:27.379Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:17:27.382Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:17:27.383Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:17:28.141Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 317, "blockHeight": 317, "took": "4.009286ms"} -2023-12-15T14:17:28.376Z INFO sending PrepareRequest {"height": 318, "view": 0} -2023-12-15T14:17:28.376Z INFO sending Commit {"height": 318, "view": 0} -2023-12-15T14:17:28.377Z INFO approving block {"height": 318, "hash": "8ce78f3cdb45ad333867c6b3a162267d21207d4e0718e5a31d442f9e45ac80cc", "tx_count": 2, "merkle": "56a5803201b6371d957c91a6fff106477654ea76c9b6d5ce6ba1592f5e229636", "prev": "6489787069f20fb8eb57cb97cecfd84354993779044ff4dc1d0fb0cb866cf3a7"} -2023-12-15T14:17:28.377Z INFO runtime log {"tx": "83e9273d2a11734272e9f527d7a311e1f1e1d8ed8113ad4fc3f9723f2a092c75", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:17:28.378Z INFO runtime log {"tx": "83e9273d2a11734272e9f527d7a311e1f1e1d8ed8113ad4fc3f9723f2a092c75", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:17:28.378Z INFO initializing dbft {"height": 319, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:28.379Z debug frostfs-node/morph.go:229 new block {"index": 318} -2023-12-15T14:17:29.143Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 318, "blockHeight": 318, "took": "5.727329ms"} -2023-12-15T14:17:29.378Z INFO sending PrepareRequest {"height": 319, "view": 0} -2023-12-15T14:17:29.378Z INFO sending Commit {"height": 319, "view": 0} -2023-12-15T14:17:29.378Z INFO approving block {"height": 319, "hash": "8dbe88d02d774e85077f5e4ad2e874af4c13818cfed9ea78ec048d1b31b70b98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ce78f3cdb45ad333867c6b3a162267d21207d4e0718e5a31d442f9e45ac80cc"} -2023-12-15T14:17:29.379Z INFO initializing dbft {"height": 320, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:29.380Z debug frostfs-node/morph.go:229 new block {"index": 319} -2023-12-15T14:17:30.141Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 319, "blockHeight": 319, "took": "2.654237ms"} -2023-12-15T14:17:30.379Z INFO sending PrepareRequest {"height": 320, "view": 0} -2023-12-15T14:17:30.380Z INFO sending Commit {"height": 320, "view": 0} -2023-12-15T14:17:30.380Z INFO approving block {"height": 320, "hash": "a7268c53ff820cc938b1f623bb9ceb7040e5834fc5c68c53e87bb992c936f304", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8dbe88d02d774e85077f5e4ad2e874af4c13818cfed9ea78ec048d1b31b70b98"} -2023-12-15T14:17:30.381Z INFO initializing dbft {"height": 321, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:30.382Z debug frostfs-node/morph.go:229 new block {"index": 320} -2023-12-15T14:17:31.143Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 320, "blockHeight": 320, "took": "4.208279ms"} -2023-12-15T14:17:31.381Z INFO sending PrepareRequest {"height": 321, "view": 0} -2023-12-15T14:17:31.381Z INFO sending Commit {"height": 321, "view": 0} -2023-12-15T14:17:31.381Z INFO approving block {"height": 321, "hash": "253f644229d7fcd602d07f63123d80a7a658d0c5cb40ae208db0b4c9554f821d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7268c53ff820cc938b1f623bb9ceb7040e5834fc5c68c53e87bb992c936f304"} -2023-12-15T14:17:31.382Z INFO initializing dbft {"height": 322, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:31.383Z debug frostfs-node/morph.go:229 new block {"index": 321} -2023-12-15T14:17:32.143Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 321, "blockHeight": 321, "took": "3.629277ms"} -2023-12-15T14:17:32.382Z INFO sending PrepareRequest {"height": 322, "view": 0} -2023-12-15T14:17:32.382Z INFO sending Commit {"height": 322, "view": 0} -2023-12-15T14:17:32.382Z INFO approving block {"height": 322, "hash": "93af38ccd06138dbf56862d680733ca39698e3ec9f72b021079c0ba3415bebba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "253f644229d7fcd602d07f63123d80a7a658d0c5cb40ae208db0b4c9554f821d"} -2023-12-15T14:17:32.383Z INFO initializing dbft {"height": 323, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:32.383Z debug frostfs-node/morph.go:229 new block {"index": 322} -2023-12-15T14:17:33.144Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 322, "blockHeight": 322, "took": "4.198239ms"} -2023-12-15T14:17:33.383Z INFO sending PrepareRequest {"height": 323, "view": 0} -2023-12-15T14:17:33.383Z INFO sending Commit {"height": 323, "view": 0} -2023-12-15T14:17:33.384Z INFO approving block {"height": 323, "hash": "07d61d245340351ddca8427c842923d69bf197de1eac8263f370e8d5869078e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93af38ccd06138dbf56862d680733ca39698e3ec9f72b021079c0ba3415bebba"} -2023-12-15T14:17:33.385Z INFO initializing dbft {"height": 324, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:33.385Z debug frostfs-node/morph.go:229 new block {"index": 323} -2023-12-15T14:17:34.144Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 323, "blockHeight": 323, "took": "2.930866ms"} -2023-12-15T14:17:34.385Z INFO sending PrepareRequest {"height": 324, "view": 0} -2023-12-15T14:17:34.385Z INFO sending Commit {"height": 324, "view": 0} -2023-12-15T14:17:34.386Z INFO approving block {"height": 324, "hash": "ea447e266990f37fea95c78c85feb25e457e4a46423c43789af56f3291675501", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07d61d245340351ddca8427c842923d69bf197de1eac8263f370e8d5869078e4"} -2023-12-15T14:17:34.387Z INFO initializing dbft {"height": 325, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:34.388Z debug frostfs-node/morph.go:229 new block {"index": 324} -2023-12-15T14:17:35.145Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 324, "blockHeight": 324, "took": "3.073007ms"} -2023-12-15T14:17:35.387Z INFO sending PrepareRequest {"height": 325, "view": 0} -2023-12-15T14:17:35.387Z INFO sending Commit {"height": 325, "view": 0} -2023-12-15T14:17:35.387Z INFO approving block {"height": 325, "hash": "53ac99c44bfdd7a764dc4cc8de52e8446463cf5ae207ccc5454ab55747b81d40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea447e266990f37fea95c78c85feb25e457e4a46423c43789af56f3291675501"} -2023-12-15T14:17:35.388Z INFO initializing dbft {"height": 326, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:35.388Z debug frostfs-node/morph.go:229 new block {"index": 325} -2023-12-15T14:17:36.145Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 325, "blockHeight": 325, "took": "3.509403ms"} -2023-12-15T14:17:36.388Z INFO sending PrepareRequest {"height": 326, "view": 0} -2023-12-15T14:17:36.388Z INFO sending Commit {"height": 326, "view": 0} -2023-12-15T14:17:36.388Z INFO approving block {"height": 326, "hash": "18847eea1f00b060972532e48cdbe23030c78aa6a45867cc2b441d83ed2a4bb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53ac99c44bfdd7a764dc4cc8de52e8446463cf5ae207ccc5454ab55747b81d40"} -2023-12-15T14:17:36.389Z INFO initializing dbft {"height": 327, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:36.389Z debug frostfs-node/morph.go:229 new block {"index": 326} -2023-12-15T14:17:37.146Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 326, "blockHeight": 326, "took": "3.446561ms"} -2023-12-15T14:17:37.389Z INFO sending PrepareRequest {"height": 327, "view": 0} -2023-12-15T14:17:37.390Z INFO sending Commit {"height": 327, "view": 0} -2023-12-15T14:17:37.390Z INFO approving block {"height": 327, "hash": "fe1272a86a9f4c118f97de16e75ae6e4e5f3b307a7e0ce9c6c3c592d088fbc3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18847eea1f00b060972532e48cdbe23030c78aa6a45867cc2b441d83ed2a4bb5"} -2023-12-15T14:17:37.392Z INFO initializing dbft {"height": 328, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:37.392Z debug frostfs-node/morph.go:229 new block {"index": 327} -2023-12-15T14:17:38.147Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 327, "blockHeight": 327, "took": "4.301007ms"} -2023-12-15T14:17:38.391Z INFO sending PrepareRequest {"height": 328, "view": 0} -2023-12-15T14:17:38.391Z INFO sending Commit {"height": 328, "view": 0} -2023-12-15T14:17:38.391Z INFO approving block {"height": 328, "hash": "1ed93c211cd626a343227b539051e1503c75ebf03c9f6dbd4b8c4b37400920d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe1272a86a9f4c118f97de16e75ae6e4e5f3b307a7e0ce9c6c3c592d088fbc3b"} -2023-12-15T14:17:38.393Z INFO initializing dbft {"height": 329, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:38.393Z debug frostfs-node/morph.go:229 new block {"index": 328} -2023-12-15T14:17:39.146Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 328, "blockHeight": 328, "took": "2.941627ms"} -2023-12-15T14:17:39.392Z INFO sending PrepareRequest {"height": 329, "view": 0} -2023-12-15T14:17:39.392Z INFO sending Commit {"height": 329, "view": 0} -2023-12-15T14:17:39.393Z INFO approving block {"height": 329, "hash": "3665f515389104674523a998baf52ef03017dfb849ea6f8c6c44662cf51fe7d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ed93c211cd626a343227b539051e1503c75ebf03c9f6dbd4b8c4b37400920d0"} -2023-12-15T14:17:39.394Z INFO initializing dbft {"height": 330, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:39.395Z debug frostfs-node/morph.go:229 new block {"index": 329} -2023-12-15T14:17:40.146Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 329, "blockHeight": 329, "took": "2.71465ms"} -2023-12-15T14:17:40.394Z INFO sending PrepareRequest {"height": 330, "view": 0} -2023-12-15T14:17:40.394Z INFO sending Commit {"height": 330, "view": 0} -2023-12-15T14:17:40.394Z INFO approving block {"height": 330, "hash": "6878fd86847e9278fdb2c4b0ca6fb7c6f051ab64dbdfe9b7a76a86ab99ffd479", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3665f515389104674523a998baf52ef03017dfb849ea6f8c6c44662cf51fe7d6"} -2023-12-15T14:17:40.395Z INFO initializing dbft {"height": 331, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:40.396Z debug frostfs-node/morph.go:229 new block {"index": 330} -2023-12-15T14:17:41.151Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 330, "blockHeight": 330, "took": "6.83031ms"} -2023-12-15T14:17:41.396Z INFO sending PrepareRequest {"height": 331, "view": 0} -2023-12-15T14:17:41.396Z INFO sending Commit {"height": 331, "view": 0} -2023-12-15T14:17:41.396Z INFO approving block {"height": 331, "hash": "a3b852456e68637230e93d6e1fa20219cfbd76d6d63e87a0fbaa4cc8534b2359", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6878fd86847e9278fdb2c4b0ca6fb7c6f051ab64dbdfe9b7a76a86ab99ffd479"} -2023-12-15T14:17:41.397Z INFO initializing dbft {"height": 332, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:41.397Z debug frostfs-node/morph.go:229 new block {"index": 331} -2023-12-15T14:17:42.149Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 331, "blockHeight": 331, "took": "4.123187ms"} -2023-12-15T14:17:42.398Z INFO sending PrepareRequest {"height": 332, "view": 0} -2023-12-15T14:17:42.398Z INFO sending Commit {"height": 332, "view": 0} -2023-12-15T14:17:42.398Z INFO approving block {"height": 332, "hash": "ba6c17b9bcf65ae26c88d8032214364fc6c87b003d2e6553ab38fb179685e6c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3b852456e68637230e93d6e1fa20219cfbd76d6d63e87a0fbaa4cc8534b2359"} -2023-12-15T14:17:42.400Z INFO initializing dbft {"height": 333, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:42.400Z debug frostfs-node/morph.go:229 new block {"index": 332} -2023-12-15T14:17:43.150Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 332, "blockHeight": 332, "took": "4.007154ms"} -2023-12-15T14:17:43.400Z INFO sending PrepareRequest {"height": 333, "view": 0} -2023-12-15T14:17:43.400Z INFO sending Commit {"height": 333, "view": 0} -2023-12-15T14:17:43.400Z INFO approving block {"height": 333, "hash": "ece61df22b25ee9b9103a1438119ca941172961bb96414ee2af888b8c9487f1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba6c17b9bcf65ae26c88d8032214364fc6c87b003d2e6553ab38fb179685e6c5"} -2023-12-15T14:17:43.401Z INFO initializing dbft {"height": 334, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:43.402Z debug frostfs-node/morph.go:229 new block {"index": 333} -2023-12-15T14:17:44.150Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 333, "blockHeight": 333, "took": "3.911531ms"} -2023-12-15T14:17:44.402Z INFO sending PrepareRequest {"height": 334, "view": 0} -2023-12-15T14:17:44.402Z INFO sending Commit {"height": 334, "view": 0} -2023-12-15T14:17:44.402Z INFO approving block {"height": 334, "hash": "95252c24ad6d9c47cbd84ee3691bbbd5dd5437ff0fc4696e222a1159fe32e142", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ece61df22b25ee9b9103a1438119ca941172961bb96414ee2af888b8c9487f1e"} -2023-12-15T14:17:44.404Z INFO initializing dbft {"height": 335, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:44.404Z debug frostfs-node/morph.go:229 new block {"index": 334} -2023-12-15T14:17:45.154Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 334, "blockHeight": 334, "took": "6.446552ms"} -2023-12-15T14:17:45.403Z INFO sending PrepareRequest {"height": 335, "view": 0} -2023-12-15T14:17:45.403Z INFO sending Commit {"height": 335, "view": 0} -2023-12-15T14:17:45.404Z INFO approving block {"height": 335, "hash": "9882e32d8d13fe5fafb1ff6a9d9b465b38dcb55299b0ea0314047bdf131e5bf7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95252c24ad6d9c47cbd84ee3691bbbd5dd5437ff0fc4696e222a1159fe32e142"} -2023-12-15T14:17:45.405Z INFO initializing dbft {"height": 336, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:45.406Z debug frostfs-node/morph.go:229 new block {"index": 335} -2023-12-15T14:17:46.154Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 335, "blockHeight": 335, "took": "6.278554ms"} -2023-12-15T14:17:46.404Z INFO sending PrepareRequest {"height": 336, "view": 0} -2023-12-15T14:17:46.405Z INFO sending Commit {"height": 336, "view": 0} -2023-12-15T14:17:46.405Z INFO approving block {"height": 336, "hash": "b03048a33bd512ebad66001558eb3c9f37f148e480713fe0246947899a0962fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9882e32d8d13fe5fafb1ff6a9d9b465b38dcb55299b0ea0314047bdf131e5bf7"} -2023-12-15T14:17:46.406Z INFO initializing dbft {"height": 337, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:46.407Z debug frostfs-node/morph.go:229 new block {"index": 336} -2023-12-15T14:17:47.154Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 336, "blockHeight": 336, "took": "6.286264ms"} -2023-12-15T14:17:47.406Z INFO sending PrepareRequest {"height": 337, "view": 0} -2023-12-15T14:17:47.406Z INFO sending Commit {"height": 337, "view": 0} -2023-12-15T14:17:47.407Z INFO approving block {"height": 337, "hash": "b399246d575123968e821e694d6374aaddd6a256d8aac4fee6b240ea47f1e0ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b03048a33bd512ebad66001558eb3c9f37f148e480713fe0246947899a0962fa"} -2023-12-15T14:17:47.408Z INFO initializing dbft {"height": 338, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:47.409Z debug frostfs-node/morph.go:229 new block {"index": 337} -2023-12-15T14:17:48.153Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 337, "blockHeight": 337, "took": "4.770129ms"} -2023-12-15T14:17:48.407Z INFO sending PrepareRequest {"height": 338, "view": 0} -2023-12-15T14:17:48.408Z INFO sending Commit {"height": 338, "view": 0} -2023-12-15T14:17:48.408Z INFO approving block {"height": 338, "hash": "a5f42c0bcf7eaa93837f7f7e9d5c1e1a72ce8ab32183df8dddce04815c50cb9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b399246d575123968e821e694d6374aaddd6a256d8aac4fee6b240ea47f1e0ae"} -2023-12-15T14:17:48.409Z INFO initializing dbft {"height": 339, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:48.410Z debug frostfs-node/morph.go:229 new block {"index": 338} -2023-12-15T14:17:49.153Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 338, "blockHeight": 338, "took": "3.938272ms"} -2023-12-15T14:17:49.409Z INFO sending PrepareRequest {"height": 339, "view": 0} -2023-12-15T14:17:49.409Z INFO sending Commit {"height": 339, "view": 0} -2023-12-15T14:17:49.410Z INFO approving block {"height": 339, "hash": "c8d92fc91da3ccaa0f821a16fb52792fc1b847cb1c2a1ffff6a8b13541a3c4da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5f42c0bcf7eaa93837f7f7e9d5c1e1a72ce8ab32183df8dddce04815c50cb9d"} -2023-12-15T14:17:49.411Z INFO initializing dbft {"height": 340, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:49.411Z debug frostfs-node/morph.go:229 new block {"index": 339} -2023-12-15T14:17:50.153Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 339, "blockHeight": 339, "took": "4.029889ms"} -2023-12-15T14:17:50.410Z INFO sending PrepareRequest {"height": 340, "view": 0} -2023-12-15T14:17:50.411Z INFO sending Commit {"height": 340, "view": 0} -2023-12-15T14:17:50.411Z INFO approving block {"height": 340, "hash": "20ce983bf828737f33db1cc60fd5e030b162f3cc1981e82e21beb50a0e6c1da5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8d92fc91da3ccaa0f821a16fb52792fc1b847cb1c2a1ffff6a8b13541a3c4da"} -2023-12-15T14:17:50.412Z INFO initializing dbft {"height": 341, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:50.413Z debug frostfs-node/morph.go:229 new block {"index": 340} -2023-12-15T14:17:51.155Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 340, "blockHeight": 340, "took": "4.927165ms"} -2023-12-15T14:17:51.412Z INFO sending PrepareRequest {"height": 341, "view": 0} -2023-12-15T14:17:51.412Z INFO sending Commit {"height": 341, "view": 0} -2023-12-15T14:17:51.412Z INFO approving block {"height": 341, "hash": "bb9f6f6af4de2659b99ac1e01633f44827c24ed1385b21989842647e8b83f401", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20ce983bf828737f33db1cc60fd5e030b162f3cc1981e82e21beb50a0e6c1da5"} -2023-12-15T14:17:51.413Z INFO initializing dbft {"height": 342, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:51.413Z debug frostfs-node/morph.go:229 new block {"index": 341} -2023-12-15T14:17:52.154Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 341, "blockHeight": 341, "took": "3.967747ms"} -2023-12-15T14:17:52.413Z INFO sending PrepareRequest {"height": 342, "view": 0} -2023-12-15T14:17:52.413Z INFO sending Commit {"height": 342, "view": 0} -2023-12-15T14:17:52.414Z INFO approving block {"height": 342, "hash": "ec3f3e9f2eac2b86e989c0a9fc9da2c88a7213af1f0d15209791bdd72be6c96b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb9f6f6af4de2659b99ac1e01633f44827c24ed1385b21989842647e8b83f401"} -2023-12-15T14:17:52.414Z INFO initializing dbft {"height": 343, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:52.415Z debug frostfs-node/morph.go:229 new block {"index": 342} -2023-12-15T14:17:53.156Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 342, "blockHeight": 342, "took": "5.531062ms"} -2023-12-15T14:17:53.415Z INFO sending PrepareRequest {"height": 343, "view": 0} -2023-12-15T14:17:53.415Z INFO sending Commit {"height": 343, "view": 0} -2023-12-15T14:17:53.415Z INFO approving block {"height": 343, "hash": "01ce1231a0cfa011832931fda185fa017f1dea5a45fd9e28215f8e0bd7cfdb84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec3f3e9f2eac2b86e989c0a9fc9da2c88a7213af1f0d15209791bdd72be6c96b"} -2023-12-15T14:17:53.416Z INFO initializing dbft {"height": 344, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:53.417Z debug frostfs-node/morph.go:229 new block {"index": 343} -2023-12-15T14:17:54.156Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 343, "blockHeight": 343, "took": "3.805991ms"} -2023-12-15T14:17:54.416Z INFO sending PrepareRequest {"height": 344, "view": 0} -2023-12-15T14:17:54.416Z INFO sending Commit {"height": 344, "view": 0} -2023-12-15T14:17:54.416Z INFO approving block {"height": 344, "hash": "dcedc4029e93f34c9bf7cc97bf64e766e0ae93b53569df8302fcbabb1cb7e5b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01ce1231a0cfa011832931fda185fa017f1dea5a45fd9e28215f8e0bd7cfdb84"} -2023-12-15T14:17:54.418Z INFO initializing dbft {"height": 345, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:54.418Z debug frostfs-node/morph.go:229 new block {"index": 344} -2023-12-15T14:17:55.158Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 344, "blockHeight": 344, "took": "5.919462ms"} -2023-12-15T14:17:55.417Z INFO sending PrepareRequest {"height": 345, "view": 0} -2023-12-15T14:17:55.418Z INFO sending Commit {"height": 345, "view": 0} -2023-12-15T14:17:55.418Z INFO approving block {"height": 345, "hash": "bad3efa4e674cbef9dfcfca4a39aed352005e548216c21bd16cc36737f01b218", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcedc4029e93f34c9bf7cc97bf64e766e0ae93b53569df8302fcbabb1cb7e5b1"} -2023-12-15T14:17:55.419Z INFO initializing dbft {"height": 346, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:55.420Z debug frostfs-node/morph.go:229 new block {"index": 345} -2023-12-15T14:17:56.157Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 345, "blockHeight": 345, "took": "3.737016ms"} -2023-12-15T14:17:56.419Z INFO sending PrepareRequest {"height": 346, "view": 0} -2023-12-15T14:17:56.419Z INFO sending Commit {"height": 346, "view": 0} -2023-12-15T14:17:56.419Z INFO approving block {"height": 346, "hash": "81fc47d6c66cb89dc6a1f1495f30d08953352c788c20ae453539a7e9be9bd77f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bad3efa4e674cbef9dfcfca4a39aed352005e548216c21bd16cc36737f01b218"} -2023-12-15T14:17:56.421Z INFO initializing dbft {"height": 347, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:56.421Z debug frostfs-node/morph.go:229 new block {"index": 346} -2023-12-15T14:17:57.160Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 346, "blockHeight": 346, "took": "5.759769ms"} -2023-12-15T14:17:57.421Z INFO sending PrepareRequest {"height": 347, "view": 0} -2023-12-15T14:17:57.421Z INFO sending Commit {"height": 347, "view": 0} -2023-12-15T14:17:57.421Z INFO approving block {"height": 347, "hash": "db3b8f23f8b4b9ea5b8a0518c2048cd16ade8a5c3c6d6f45be18fe855ffa4006", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81fc47d6c66cb89dc6a1f1495f30d08953352c788c20ae453539a7e9be9bd77f"} -2023-12-15T14:17:57.422Z INFO initializing dbft {"height": 348, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:57.423Z debug frostfs-node/morph.go:229 new block {"index": 347} -2023-12-15T14:17:58.160Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 347, "blockHeight": 347, "took": "5.968218ms"} -2023-12-15T14:17:58.423Z INFO sending PrepareRequest {"height": 348, "view": 0} -2023-12-15T14:17:58.423Z INFO sending Commit {"height": 348, "view": 0} -2023-12-15T14:17:58.423Z INFO approving block {"height": 348, "hash": "a17777ca401f6b2629ed25dd7973b912460e4444b1cd81c948cfb32b623d60fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db3b8f23f8b4b9ea5b8a0518c2048cd16ade8a5c3c6d6f45be18fe855ffa4006"} -2023-12-15T14:17:58.424Z INFO initializing dbft {"height": 349, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:58.425Z debug frostfs-node/morph.go:229 new block {"index": 348} -2023-12-15T14:17:59.159Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 348, "blockHeight": 348, "took": "3.981018ms"} -2023-12-15T14:17:59.424Z INFO sending PrepareRequest {"height": 349, "view": 0} -2023-12-15T14:17:59.424Z INFO sending Commit {"height": 349, "view": 0} -2023-12-15T14:17:59.424Z INFO approving block {"height": 349, "hash": "aabe4c91e7559b20ba7c394aa4c09176426d6eb8575ab7653de75da22c28dad2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a17777ca401f6b2629ed25dd7973b912460e4444b1cd81c948cfb32b623d60fe"} -2023-12-15T14:17:59.425Z INFO initializing dbft {"height": 350, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:17:59.426Z debug frostfs-node/morph.go:229 new block {"index": 349} -2023-12-15T14:18:00.159Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 349, "blockHeight": 349, "took": "3.2165ms"} -2023-12-15T14:18:00.425Z INFO sending PrepareRequest {"height": 350, "view": 0} -2023-12-15T14:18:00.426Z INFO sending Commit {"height": 350, "view": 0} -2023-12-15T14:18:00.426Z INFO approving block {"height": 350, "hash": "ea3e5f002640c4f3091874aa2ee9a3b6331f6b3ee3b67d7c67f268793cf45104", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aabe4c91e7559b20ba7c394aa4c09176426d6eb8575ab7653de75da22c28dad2"} -2023-12-15T14:18:00.427Z INFO initializing dbft {"height": 351, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:00.427Z debug frostfs-node/morph.go:229 new block {"index": 350} -2023-12-15T14:18:01.159Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 350, "blockHeight": 350, "took": "2.664159ms"} -2023-12-15T14:18:01.427Z INFO sending PrepareRequest {"height": 351, "view": 0} -2023-12-15T14:18:01.427Z INFO sending Commit {"height": 351, "view": 0} -2023-12-15T14:18:01.428Z INFO approving block {"height": 351, "hash": "ebd66faf199dc7e35ebe944208add85353c0250b5a3499d5a6b8b3ac722d6da2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea3e5f002640c4f3091874aa2ee9a3b6331f6b3ee3b67d7c67f268793cf45104"} -2023-12-15T14:18:01.428Z INFO initializing dbft {"height": 352, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:01.429Z debug frostfs-node/morph.go:229 new block {"index": 351} -2023-12-15T14:18:02.164Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 351, "blockHeight": 351, "took": "7.068317ms"} -2023-12-15T14:18:02.429Z INFO sending PrepareRequest {"height": 352, "view": 0} -2023-12-15T14:18:02.429Z INFO sending Commit {"height": 352, "view": 0} -2023-12-15T14:18:02.431Z INFO approving block {"height": 352, "hash": "bdd89cdb38605bebe2d7decc66eb2c97e9d2b92760287c2ffc80d7fd25eb3059", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebd66faf199dc7e35ebe944208add85353c0250b5a3499d5a6b8b3ac722d6da2"} -2023-12-15T14:18:02.432Z INFO initializing dbft {"height": 353, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:02.434Z debug frostfs-node/morph.go:229 new block {"index": 352} -2023-12-15T14:18:03.160Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 352, "blockHeight": 352, "took": "2.98817ms"} -2023-12-15T14:18:03.432Z INFO sending PrepareRequest {"height": 353, "view": 0} -2023-12-15T14:18:03.433Z INFO sending Commit {"height": 353, "view": 0} -2023-12-15T14:18:03.433Z INFO approving block {"height": 353, "hash": "6ad66106322bded0717838ea9c3085b9c7f8c6db8260e7b486d1f8af0e6566ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdd89cdb38605bebe2d7decc66eb2c97e9d2b92760287c2ffc80d7fd25eb3059"} -2023-12-15T14:18:03.434Z INFO initializing dbft {"height": 354, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:03.435Z debug frostfs-node/morph.go:229 new block {"index": 353} -2023-12-15T14:18:04.165Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 353, "blockHeight": 353, "took": "7.481985ms"} -2023-12-15T14:18:04.434Z INFO sending PrepareRequest {"height": 354, "view": 0} -2023-12-15T14:18:04.434Z INFO sending Commit {"height": 354, "view": 0} -2023-12-15T14:18:04.434Z INFO approving block {"height": 354, "hash": "442f1a1f12e06e7c8689d9622ae85f099ac6a0dfbf9993db2f1e53eb625cb8af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ad66106322bded0717838ea9c3085b9c7f8c6db8260e7b486d1f8af0e6566ea"} -2023-12-15T14:18:04.435Z INFO initializing dbft {"height": 355, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:04.436Z debug frostfs-node/morph.go:229 new block {"index": 354} -2023-12-15T14:18:05.161Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 354, "blockHeight": 354, "took": "3.128491ms"} -2023-12-15T14:18:05.435Z INFO sending PrepareRequest {"height": 355, "view": 0} -2023-12-15T14:18:05.435Z INFO sending Commit {"height": 355, "view": 0} -2023-12-15T14:18:05.436Z INFO approving block {"height": 355, "hash": "439d2ee2e22dbed66eca537d18953100b8dec4a609f00d81a7366c42acf8090d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "442f1a1f12e06e7c8689d9622ae85f099ac6a0dfbf9993db2f1e53eb625cb8af"} -2023-12-15T14:18:05.437Z INFO initializing dbft {"height": 356, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:05.437Z debug frostfs-node/morph.go:229 new block {"index": 355} -2023-12-15T14:18:06.162Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 355, "blockHeight": 355, "took": "3.08062ms"} -2023-12-15T14:18:06.437Z INFO sending PrepareRequest {"height": 356, "view": 0} -2023-12-15T14:18:06.437Z INFO sending Commit {"height": 356, "view": 0} -2023-12-15T14:18:06.437Z INFO approving block {"height": 356, "hash": "ca2652151d212d251fb7f134355c4f52caf9b48b8ebaf7ef0f03621fbb8b60ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "439d2ee2e22dbed66eca537d18953100b8dec4a609f00d81a7366c42acf8090d"} -2023-12-15T14:18:06.439Z INFO initializing dbft {"height": 357, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:06.439Z debug frostfs-node/morph.go:229 new block {"index": 356} -2023-12-15T14:18:07.165Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 356, "blockHeight": 356, "took": "5.772879ms"} -2023-12-15T14:18:07.438Z INFO sending PrepareRequest {"height": 357, "view": 0} -2023-12-15T14:18:07.438Z INFO sending Commit {"height": 357, "view": 0} -2023-12-15T14:18:07.439Z INFO approving block {"height": 357, "hash": "794a59580a3c9cd66b24cb50282d98f4bbd367116d4e654a825c4fd0ade58115", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca2652151d212d251fb7f134355c4f52caf9b48b8ebaf7ef0f03621fbb8b60ef"} -2023-12-15T14:18:07.440Z INFO initializing dbft {"height": 358, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:07.441Z debug frostfs-node/morph.go:229 new block {"index": 357} -2023-12-15T14:18:08.166Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 357, "blockHeight": 357, "took": "6.322194ms"} -2023-12-15T14:18:08.440Z INFO sending PrepareRequest {"height": 358, "view": 0} -2023-12-15T14:18:08.440Z INFO sending Commit {"height": 358, "view": 0} -2023-12-15T14:18:08.440Z INFO approving block {"height": 358, "hash": "52f8ae9bd9cf2961457b93e5ea8152dd5e0d79313ed50a92deb5bfcd007e50ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "794a59580a3c9cd66b24cb50282d98f4bbd367116d4e654a825c4fd0ade58115"} -2023-12-15T14:18:08.441Z INFO initializing dbft {"height": 359, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:08.442Z debug frostfs-node/morph.go:229 new block {"index": 358} -2023-12-15T14:18:09.166Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 358, "blockHeight": 358, "took": "6.373709ms"} -2023-12-15T14:18:09.441Z INFO sending PrepareRequest {"height": 359, "view": 0} -2023-12-15T14:18:09.441Z INFO sending Commit {"height": 359, "view": 0} -2023-12-15T14:18:09.441Z INFO approving block {"height": 359, "hash": "21821ab144b69eea8f3f9ba3bda044b3193041aec53ceafba577545a8eef46ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52f8ae9bd9cf2961457b93e5ea8152dd5e0d79313ed50a92deb5bfcd007e50ce"} -2023-12-15T14:18:09.442Z INFO initializing dbft {"height": 360, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:09.443Z debug frostfs-node/morph.go:229 new block {"index": 359} -2023-12-15T14:18:10.164Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 359, "blockHeight": 359, "took": "3.914122ms"} -2023-12-15T14:18:10.442Z INFO sending PrepareRequest {"height": 360, "view": 0} -2023-12-15T14:18:10.443Z INFO sending Commit {"height": 360, "view": 0} -2023-12-15T14:18:10.443Z INFO approving block {"height": 360, "hash": "48b0b151c37be49997020e23c206ca695756eb8170828afe714f99751b2097d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21821ab144b69eea8f3f9ba3bda044b3193041aec53ceafba577545a8eef46ea"} -2023-12-15T14:18:10.444Z INFO initializing dbft {"height": 361, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:10.445Z debug frostfs-node/morph.go:229 new block {"index": 360} -2023-12-15T14:18:11.166Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 360, "blockHeight": 360, "took": "4.147561ms"} -2023-12-15T14:18:11.444Z INFO sending PrepareRequest {"height": 361, "view": 0} -2023-12-15T14:18:11.444Z INFO sending Commit {"height": 361, "view": 0} -2023-12-15T14:18:11.444Z INFO approving block {"height": 361, "hash": "4ae9320247eb8028904cc7d119d332e93931eb0d1a5623ddbf5fc039cc4458cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48b0b151c37be49997020e23c206ca695756eb8170828afe714f99751b2097d3"} -2023-12-15T14:18:11.446Z INFO initializing dbft {"height": 362, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:11.446Z debug frostfs-node/morph.go:229 new block {"index": 361} -2023-12-15T14:18:11.450Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 2, "iteration": 1, "error": "no data for 0 iteration in 2 epoch for consumers's trusts"} -2023-12-15T14:18:11.452Z info settlement/calls.go:61 start basic income collection {"epoch": 2} -2023-12-15T14:18:12.167Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 361, "blockHeight": 361, "took": "4.182731ms"} -2023-12-15T14:18:12.445Z INFO sending PrepareRequest {"height": 362, "view": 0} -2023-12-15T14:18:12.446Z INFO sending Commit {"height": 362, "view": 0} -2023-12-15T14:18:12.446Z INFO approving block {"height": 362, "hash": "e1aca8844c2b41a87837959dc01418a9e011aaae2d72d782e4bf19df3da369ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ae9320247eb8028904cc7d119d332e93931eb0d1a5623ddbf5fc039cc4458cc"} -2023-12-15T14:18:12.447Z INFO initializing dbft {"height": 363, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:12.448Z debug frostfs-node/morph.go:229 new block {"index": 362} -2023-12-15T14:18:13.169Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 362, "blockHeight": 362, "took": "5.911199ms"} -2023-12-15T14:18:13.447Z INFO sending PrepareRequest {"height": 363, "view": 0} -2023-12-15T14:18:13.447Z INFO sending Commit {"height": 363, "view": 0} -2023-12-15T14:18:13.448Z INFO approving block {"height": 363, "hash": "4e4c3945222a4a06dff51e47b4afa15dba876408a388eac08739865686aa600b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1aca8844c2b41a87837959dc01418a9e011aaae2d72d782e4bf19df3da369ed"} -2023-12-15T14:18:13.449Z INFO initializing dbft {"height": 364, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:13.450Z debug frostfs-node/morph.go:229 new block {"index": 363} -2023-12-15T14:18:14.169Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 363, "blockHeight": 363, "took": "5.896362ms"} -2023-12-15T14:18:14.448Z INFO sending PrepareRequest {"height": 364, "view": 0} -2023-12-15T14:18:14.448Z INFO sending Commit {"height": 364, "view": 0} -2023-12-15T14:18:14.449Z INFO approving block {"height": 364, "hash": "203a245ad61cc44c14b0e75642ce3ffee595d5581498db8a58c83274b341a8d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e4c3945222a4a06dff51e47b4afa15dba876408a388eac08739865686aa600b"} -2023-12-15T14:18:14.450Z INFO initializing dbft {"height": 365, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:14.450Z debug frostfs-node/morph.go:229 new block {"index": 364} -2023-12-15T14:18:15.170Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 364, "blockHeight": 364, "took": "6.16559ms"} -2023-12-15T14:18:15.450Z INFO sending PrepareRequest {"height": 365, "view": 0} -2023-12-15T14:18:15.450Z INFO sending Commit {"height": 365, "view": 0} -2023-12-15T14:18:15.451Z INFO approving block {"height": 365, "hash": "f10d55c030529e0c71fa74860d4821ea5ffa192def4361ab6cb190bb951c0ba0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "203a245ad61cc44c14b0e75642ce3ffee595d5581498db8a58c83274b341a8d1"} -2023-12-15T14:18:15.452Z INFO initializing dbft {"height": 366, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:15.452Z debug frostfs-node/morph.go:229 new block {"index": 365} -2023-12-15T14:18:16.169Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 365, "blockHeight": 365, "took": "3.984646ms"} -2023-12-15T14:18:16.451Z INFO sending PrepareRequest {"height": 366, "view": 0} -2023-12-15T14:18:16.452Z INFO sending Commit {"height": 366, "view": 0} -2023-12-15T14:18:16.452Z INFO approving block {"height": 366, "hash": "1005d96737f8401d1d923b5994c0f9deea726a44fc98c7f7fda51e5a7a2fc415", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f10d55c030529e0c71fa74860d4821ea5ffa192def4361ab6cb190bb951c0ba0"} -2023-12-15T14:18:16.454Z INFO initializing dbft {"height": 367, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:16.454Z debug frostfs-node/morph.go:229 new block {"index": 366} -2023-12-15T14:18:17.171Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 366, "blockHeight": 366, "took": "6.49209ms"} -2023-12-15T14:18:17.453Z INFO sending PrepareRequest {"height": 367, "view": 0} -2023-12-15T14:18:17.453Z INFO sending Commit {"height": 367, "view": 0} -2023-12-15T14:18:17.453Z INFO approving block {"height": 367, "hash": "81b59511d5d7abe2d0ad8a98b17dc15470035624099de4c9ba469b62b524274f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1005d96737f8401d1d923b5994c0f9deea726a44fc98c7f7fda51e5a7a2fc415"} -2023-12-15T14:18:17.454Z INFO initializing dbft {"height": 368, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:17.455Z debug frostfs-node/morph.go:229 new block {"index": 367} -2023-12-15T14:18:17.457Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:18:17.457Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:18:17.458Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:18:18.169Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 367, "blockHeight": 367, "took": "3.912135ms"} -2023-12-15T14:18:18.455Z INFO sending PrepareRequest {"height": 368, "view": 0} -2023-12-15T14:18:18.455Z INFO sending Commit {"height": 368, "view": 0} -2023-12-15T14:18:18.455Z INFO approving block {"height": 368, "hash": "949d0d2dbac25d6fb155a6d866dd6dd5fb34a19548783006b869fdf98dfd25bf", "tx_count": 2, "merkle": "c7d03df63503066e0d628e1e944f0d467e51f1c737464068ec583124ff4fe5b9", "prev": "81b59511d5d7abe2d0ad8a98b17dc15470035624099de4c9ba469b62b524274f"} -2023-12-15T14:18:18.456Z INFO runtime log {"tx": "19a61e97431e194968cb1b00b100cbdd3cc0d4af5bea5ab27179228ed1fad4f9", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:18:18.456Z INFO runtime log {"tx": "19a61e97431e194968cb1b00b100cbdd3cc0d4af5bea5ab27179228ed1fad4f9", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:18:18.457Z INFO initializing dbft {"height": 369, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:18.458Z debug frostfs-node/morph.go:229 new block {"index": 368} -2023-12-15T14:18:19.173Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 368, "blockHeight": 368, "took": "6.490108ms"} -2023-12-15T14:18:19.456Z INFO sending PrepareRequest {"height": 369, "view": 0} -2023-12-15T14:18:19.456Z INFO sending Commit {"height": 369, "view": 0} -2023-12-15T14:18:19.457Z INFO approving block {"height": 369, "hash": "4c42158a90810168b839cf4c2134c6ac43bf2127ffbf8ef1d878824b331a1e35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "949d0d2dbac25d6fb155a6d866dd6dd5fb34a19548783006b869fdf98dfd25bf"} -2023-12-15T14:18:19.458Z INFO initializing dbft {"height": 370, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:19.459Z debug frostfs-node/morph.go:229 new block {"index": 369} -2023-12-15T14:18:20.171Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 369, "blockHeight": 369, "took": "4.216573ms"} -2023-12-15T14:18:20.457Z INFO sending PrepareRequest {"height": 370, "view": 0} -2023-12-15T14:18:20.458Z INFO sending Commit {"height": 370, "view": 0} -2023-12-15T14:18:20.458Z INFO approving block {"height": 370, "hash": "236bba3e3cf196d165b1791a7329859a308b280c31ac73684b541ae3ab813938", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c42158a90810168b839cf4c2134c6ac43bf2127ffbf8ef1d878824b331a1e35"} -2023-12-15T14:18:20.459Z INFO initializing dbft {"height": 371, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:20.460Z debug frostfs-node/morph.go:229 new block {"index": 370} -2023-12-15T14:18:21.171Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 370, "blockHeight": 370, "took": "4.474997ms"} -2023-12-15T14:18:21.459Z INFO sending PrepareRequest {"height": 371, "view": 0} -2023-12-15T14:18:21.459Z INFO sending Commit {"height": 371, "view": 0} -2023-12-15T14:18:21.460Z INFO approving block {"height": 371, "hash": "1ddd3834512cb093ba027134630ec9561f6dfe8b3af7ee4aefb8d29045161f9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "236bba3e3cf196d165b1791a7329859a308b280c31ac73684b541ae3ab813938"} -2023-12-15T14:18:21.461Z INFO initializing dbft {"height": 372, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:21.462Z debug frostfs-node/morph.go:229 new block {"index": 371} -2023-12-15T14:18:22.170Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 371, "blockHeight": 371, "took": "2.799943ms"} -2023-12-15T14:18:22.460Z INFO sending PrepareRequest {"height": 372, "view": 0} -2023-12-15T14:18:22.461Z INFO sending Commit {"height": 372, "view": 0} -2023-12-15T14:18:22.461Z INFO approving block {"height": 372, "hash": "729e846716fc33928d2bd2cf7e577615bcd4a84a5fd18df36be663a81048b8d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ddd3834512cb093ba027134630ec9561f6dfe8b3af7ee4aefb8d29045161f9f"} -2023-12-15T14:18:22.462Z INFO initializing dbft {"height": 373, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:22.463Z debug frostfs-node/morph.go:229 new block {"index": 372} -2023-12-15T14:18:23.172Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 372, "blockHeight": 372, "took": "4.043138ms"} -2023-12-15T14:18:23.462Z INFO sending PrepareRequest {"height": 373, "view": 0} -2023-12-15T14:18:23.462Z INFO sending Commit {"height": 373, "view": 0} -2023-12-15T14:18:23.462Z INFO approving block {"height": 373, "hash": "dee94770a398cfe7e3a93b7c14a35421301541db7a2551b4b800e09b53e891f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "729e846716fc33928d2bd2cf7e577615bcd4a84a5fd18df36be663a81048b8d9"} -2023-12-15T14:18:23.464Z INFO initializing dbft {"height": 374, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:23.464Z debug frostfs-node/morph.go:229 new block {"index": 373} -2023-12-15T14:18:24.172Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 373, "blockHeight": 373, "took": "3.964086ms"} -2023-12-15T14:18:24.463Z INFO sending PrepareRequest {"height": 374, "view": 0} -2023-12-15T14:18:24.463Z INFO sending Commit {"height": 374, "view": 0} -2023-12-15T14:18:24.463Z INFO approving block {"height": 374, "hash": "4ebef253cd6b1854028b921680862ab5772f35a7854bc9d1474963b1edc77f66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dee94770a398cfe7e3a93b7c14a35421301541db7a2551b4b800e09b53e891f6"} -2023-12-15T14:18:24.464Z INFO initializing dbft {"height": 375, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:24.465Z debug frostfs-node/morph.go:229 new block {"index": 374} -2023-12-15T14:18:25.172Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 374, "blockHeight": 374, "took": "2.962937ms"} -2023-12-15T14:18:25.465Z INFO sending PrepareRequest {"height": 375, "view": 0} -2023-12-15T14:18:25.465Z INFO sending Commit {"height": 375, "view": 0} -2023-12-15T14:18:25.465Z INFO approving block {"height": 375, "hash": "0d071ba7e99c3eb9a0db1b3213058e1c74acb7a2b46454ba8bc705f79ad70dd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ebef253cd6b1854028b921680862ab5772f35a7854bc9d1474963b1edc77f66"} -2023-12-15T14:18:25.466Z INFO initializing dbft {"height": 376, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:25.467Z debug frostfs-node/morph.go:229 new block {"index": 375} -2023-12-15T14:18:26.173Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 375, "blockHeight": 375, "took": "4.039308ms"} -2023-12-15T14:18:26.466Z INFO sending PrepareRequest {"height": 376, "view": 0} -2023-12-15T14:18:26.466Z INFO sending Commit {"height": 376, "view": 0} -2023-12-15T14:18:26.466Z INFO approving block {"height": 376, "hash": "08d156c0f02f1f08f64c13ac970c482b91376af113715f6bab4c36abfebab8ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d071ba7e99c3eb9a0db1b3213058e1c74acb7a2b46454ba8bc705f79ad70dd7"} -2023-12-15T14:18:26.467Z INFO initializing dbft {"height": 377, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:26.468Z debug frostfs-node/morph.go:229 new block {"index": 376} -2023-12-15T14:18:27.174Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 376, "blockHeight": 376, "took": "3.939016ms"} -2023-12-15T14:18:27.467Z INFO sending PrepareRequest {"height": 377, "view": 0} -2023-12-15T14:18:27.468Z INFO sending Commit {"height": 377, "view": 0} -2023-12-15T14:18:27.468Z INFO approving block {"height": 377, "hash": "5b18efbff57eac933cb5757ce4bdb924ca93468fc00bfc9778d89fd4e39e49d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08d156c0f02f1f08f64c13ac970c482b91376af113715f6bab4c36abfebab8ac"} -2023-12-15T14:18:27.469Z INFO initializing dbft {"height": 378, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:27.469Z debug frostfs-node/morph.go:229 new block {"index": 377} -2023-12-15T14:18:28.177Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 377, "blockHeight": 377, "took": "6.087182ms"} -2023-12-15T14:18:28.469Z INFO sending PrepareRequest {"height": 378, "view": 0} -2023-12-15T14:18:28.469Z INFO sending Commit {"height": 378, "view": 0} -2023-12-15T14:18:28.470Z INFO approving block {"height": 378, "hash": "70de5701ed97b5b2d14d4732394981f76146486ef2243890928686be662b8284", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b18efbff57eac933cb5757ce4bdb924ca93468fc00bfc9778d89fd4e39e49d6"} -2023-12-15T14:18:28.471Z INFO initializing dbft {"height": 379, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:28.472Z debug frostfs-node/morph.go:229 new block {"index": 378} -2023-12-15T14:18:29.175Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 378, "blockHeight": 378, "took": "3.060004ms"} -2023-12-15T14:18:29.471Z INFO sending PrepareRequest {"height": 379, "view": 0} -2023-12-15T14:18:29.471Z INFO sending Commit {"height": 379, "view": 0} -2023-12-15T14:18:29.471Z INFO approving block {"height": 379, "hash": "e04722162d8b0f23a694a7fa68094c614757d60c4299c73cda1c882adbb971d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70de5701ed97b5b2d14d4732394981f76146486ef2243890928686be662b8284"} -2023-12-15T14:18:29.473Z INFO initializing dbft {"height": 380, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:29.473Z debug frostfs-node/morph.go:229 new block {"index": 379} -2023-12-15T14:18:30.176Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 379, "blockHeight": 379, "took": "3.473399ms"} -2023-12-15T14:18:30.472Z INFO sending PrepareRequest {"height": 380, "view": 0} -2023-12-15T14:18:30.473Z INFO sending Commit {"height": 380, "view": 0} -2023-12-15T14:18:30.473Z INFO approving block {"height": 380, "hash": "298adbed7d5d89e14a039f52541a4688ea6dca7b9e1a948b4a4a60fb55ff7214", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e04722162d8b0f23a694a7fa68094c614757d60c4299c73cda1c882adbb971d8"} -2023-12-15T14:18:30.474Z INFO initializing dbft {"height": 381, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:30.475Z debug frostfs-node/morph.go:229 new block {"index": 380} -2023-12-15T14:18:31.177Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 380, "blockHeight": 380, "took": "4.439237ms"} -2023-12-15T14:18:31.473Z INFO sending PrepareRequest {"height": 381, "view": 0} -2023-12-15T14:18:31.474Z INFO sending Commit {"height": 381, "view": 0} -2023-12-15T14:18:31.474Z INFO approving block {"height": 381, "hash": "d338eda395029785b59b3bb8d36012c3db6657a3fe533110c5204fbbd58c0ef6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "298adbed7d5d89e14a039f52541a4688ea6dca7b9e1a948b4a4a60fb55ff7214"} -2023-12-15T14:18:31.475Z INFO initializing dbft {"height": 382, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:31.475Z debug frostfs-node/morph.go:229 new block {"index": 381} -2023-12-15T14:18:32.177Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 381, "blockHeight": 381, "took": "4.110503ms"} -2023-12-15T14:18:32.475Z INFO sending PrepareRequest {"height": 382, "view": 0} -2023-12-15T14:18:32.475Z INFO sending Commit {"height": 382, "view": 0} -2023-12-15T14:18:32.475Z INFO approving block {"height": 382, "hash": "ee77ea838ed056e83e4cb4289d811c47775a6b50d4f3e204dc19b1403847d13a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d338eda395029785b59b3bb8d36012c3db6657a3fe533110c5204fbbd58c0ef6"} -2023-12-15T14:18:32.476Z INFO initializing dbft {"height": 383, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:32.476Z debug frostfs-node/morph.go:229 new block {"index": 382} -2023-12-15T14:18:33.180Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 382, "blockHeight": 382, "took": "6.37566ms"} -2023-12-15T14:18:33.476Z INFO sending PrepareRequest {"height": 383, "view": 0} -2023-12-15T14:18:33.476Z INFO sending Commit {"height": 383, "view": 0} -2023-12-15T14:18:33.476Z INFO approving block {"height": 383, "hash": "adac5ed4f8fc0d815e223dbf53881596d64395683684a6c94ed06e4c8047129b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee77ea838ed056e83e4cb4289d811c47775a6b50d4f3e204dc19b1403847d13a"} -2023-12-15T14:18:33.478Z INFO initializing dbft {"height": 384, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:33.478Z debug frostfs-node/morph.go:229 new block {"index": 383} -2023-12-15T14:18:34.180Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 383, "blockHeight": 383, "took": "4.974022ms"} -2023-12-15T14:18:34.478Z INFO sending PrepareRequest {"height": 384, "view": 0} -2023-12-15T14:18:34.478Z INFO sending Commit {"height": 384, "view": 0} -2023-12-15T14:18:34.478Z INFO approving block {"height": 384, "hash": "bf859a4f7b0f8e68c331502087ce192aaa6d1e6907af9f391e611e35f463ab37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adac5ed4f8fc0d815e223dbf53881596d64395683684a6c94ed06e4c8047129b"} -2023-12-15T14:18:34.480Z INFO initializing dbft {"height": 385, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:34.480Z debug frostfs-node/morph.go:229 new block {"index": 384} -2023-12-15T14:18:35.181Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 384, "blockHeight": 384, "took": "6.206234ms"} -2023-12-15T14:18:35.479Z INFO sending PrepareRequest {"height": 385, "view": 0} -2023-12-15T14:18:35.479Z INFO sending Commit {"height": 385, "view": 0} -2023-12-15T14:18:35.479Z INFO approving block {"height": 385, "hash": "08be8022ceb7441758ec8ffd68b0de0201f73aa7c9716c5112bd35fc12a03298", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf859a4f7b0f8e68c331502087ce192aaa6d1e6907af9f391e611e35f463ab37"} -2023-12-15T14:18:35.480Z INFO initializing dbft {"height": 386, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:35.481Z debug frostfs-node/morph.go:229 new block {"index": 385} -2023-12-15T14:18:36.180Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 385, "blockHeight": 385, "took": "4.833307ms"} -2023-12-15T14:18:36.480Z INFO sending PrepareRequest {"height": 386, "view": 0} -2023-12-15T14:18:36.481Z INFO sending Commit {"height": 386, "view": 0} -2023-12-15T14:18:36.481Z INFO approving block {"height": 386, "hash": "833190184dcdd3f407644bef35a36ec392f21c7e526c321104f5e58df775dd03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08be8022ceb7441758ec8ffd68b0de0201f73aa7c9716c5112bd35fc12a03298"} -2023-12-15T14:18:36.482Z INFO initializing dbft {"height": 387, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:36.483Z debug frostfs-node/morph.go:229 new block {"index": 386} -2023-12-15T14:18:37.180Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 386, "blockHeight": 386, "took": "4.360983ms"} -2023-12-15T14:18:37.482Z INFO sending PrepareRequest {"height": 387, "view": 0} -2023-12-15T14:18:37.482Z INFO sending Commit {"height": 387, "view": 0} -2023-12-15T14:18:37.482Z INFO approving block {"height": 387, "hash": "426d36d3ab8bee1159efcec8e6dc2986033ab35a2ff68ab4352e5500f57f7092", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "833190184dcdd3f407644bef35a36ec392f21c7e526c321104f5e58df775dd03"} -2023-12-15T14:18:37.483Z INFO initializing dbft {"height": 388, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:37.484Z debug frostfs-node/morph.go:229 new block {"index": 387} -2023-12-15T14:18:38.181Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 387, "blockHeight": 387, "took": "4.399655ms"} -2023-12-15T14:18:38.484Z INFO sending PrepareRequest {"height": 388, "view": 0} -2023-12-15T14:18:38.484Z INFO sending Commit {"height": 388, "view": 0} -2023-12-15T14:18:38.484Z INFO approving block {"height": 388, "hash": "a519f4811cffe4d4a5b2befde30f6eaf8d67bdb1cfa9c06bfb126b545436b456", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "426d36d3ab8bee1159efcec8e6dc2986033ab35a2ff68ab4352e5500f57f7092"} -2023-12-15T14:18:38.486Z INFO initializing dbft {"height": 389, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:38.486Z debug frostfs-node/morph.go:229 new block {"index": 388} -2023-12-15T14:18:39.183Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 388, "blockHeight": 388, "took": "6.003882ms"} -2023-12-15T14:18:39.485Z INFO sending PrepareRequest {"height": 389, "view": 0} -2023-12-15T14:18:39.485Z INFO sending Commit {"height": 389, "view": 0} -2023-12-15T14:18:39.486Z INFO approving block {"height": 389, "hash": "e37efb115c05747d2f8130b246055b9002cb80eb190a470726d777294b12b94e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a519f4811cffe4d4a5b2befde30f6eaf8d67bdb1cfa9c06bfb126b545436b456"} -2023-12-15T14:18:39.487Z INFO initializing dbft {"height": 390, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:39.488Z debug frostfs-node/morph.go:229 new block {"index": 389} -2023-12-15T14:18:40.181Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 389, "blockHeight": 389, "took": "3.132399ms"} -2023-12-15T14:18:40.487Z INFO sending PrepareRequest {"height": 390, "view": 0} -2023-12-15T14:18:40.487Z INFO sending Commit {"height": 390, "view": 0} -2023-12-15T14:18:40.487Z INFO approving block {"height": 390, "hash": "9473cfd66aac7565f18ba77ad6b9db05f5b13d5504683379e20f017f1fea6baf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e37efb115c05747d2f8130b246055b9002cb80eb190a470726d777294b12b94e"} -2023-12-15T14:18:40.488Z INFO initializing dbft {"height": 391, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:40.489Z debug frostfs-node/morph.go:229 new block {"index": 390} -2023-12-15T14:18:41.183Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 390, "blockHeight": 390, "took": "4.563537ms"} -2023-12-15T14:18:41.488Z INFO sending PrepareRequest {"height": 391, "view": 0} -2023-12-15T14:18:41.488Z INFO sending Commit {"height": 391, "view": 0} -2023-12-15T14:18:41.488Z INFO approving block {"height": 391, "hash": "7791b0e2998320c4405d0e1eba95f5f5a71ef64de1f0757e2e0430785ce37435", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9473cfd66aac7565f18ba77ad6b9db05f5b13d5504683379e20f017f1fea6baf"} -2023-12-15T14:18:41.490Z INFO initializing dbft {"height": 392, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:41.490Z debug frostfs-node/morph.go:229 new block {"index": 391} -2023-12-15T14:18:42.185Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 391, "blockHeight": 391, "took": "5.442957ms"} -2023-12-15T14:18:42.489Z INFO sending PrepareRequest {"height": 392, "view": 0} -2023-12-15T14:18:42.489Z INFO sending Commit {"height": 392, "view": 0} -2023-12-15T14:18:42.490Z INFO approving block {"height": 392, "hash": "efd7a3d4f84382fd219e5acb08409872497c605a8e6cf0d6ee87857485fabd14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7791b0e2998320c4405d0e1eba95f5f5a71ef64de1f0757e2e0430785ce37435"} -2023-12-15T14:18:42.491Z INFO initializing dbft {"height": 393, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:42.491Z debug frostfs-node/morph.go:229 new block {"index": 392} -2023-12-15T14:18:43.185Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 392, "blockHeight": 392, "took": "5.563742ms"} -2023-12-15T14:18:43.490Z INFO sending PrepareRequest {"height": 393, "view": 0} -2023-12-15T14:18:43.490Z INFO sending Commit {"height": 393, "view": 0} -2023-12-15T14:18:43.491Z INFO approving block {"height": 393, "hash": "a450648dc2bfbfa4902e495d9b81fdf1e139ec85732796aa3d1d22378dbf2588", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efd7a3d4f84382fd219e5acb08409872497c605a8e6cf0d6ee87857485fabd14"} -2023-12-15T14:18:43.492Z INFO initializing dbft {"height": 394, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:43.492Z debug frostfs-node/morph.go:229 new block {"index": 393} -2023-12-15T14:18:44.184Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 393, "blockHeight": 393, "took": "4.255105ms"} -2023-12-15T14:18:44.492Z INFO sending PrepareRequest {"height": 394, "view": 0} -2023-12-15T14:18:44.492Z INFO sending Commit {"height": 394, "view": 0} -2023-12-15T14:18:44.493Z INFO approving block {"height": 394, "hash": "bea4f32cd5ddb2309b44b664c91e6be6e0916495e68a4a9947464d4bb806ef1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a450648dc2bfbfa4902e495d9b81fdf1e139ec85732796aa3d1d22378dbf2588"} -2023-12-15T14:18:44.494Z INFO initializing dbft {"height": 395, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:44.494Z debug frostfs-node/morph.go:229 new block {"index": 394} -2023-12-15T14:18:45.185Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 394, "blockHeight": 394, "took": "4.074147ms"} -2023-12-15T14:18:45.494Z INFO sending PrepareRequest {"height": 395, "view": 0} -2023-12-15T14:18:45.494Z INFO sending Commit {"height": 395, "view": 0} -2023-12-15T14:18:45.494Z INFO approving block {"height": 395, "hash": "f324cb5a23a594dc18a08c18b5aa6dc6525b25e9723b4199a6805b07702723ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bea4f32cd5ddb2309b44b664c91e6be6e0916495e68a4a9947464d4bb806ef1c"} -2023-12-15T14:18:45.496Z INFO initializing dbft {"height": 396, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:45.496Z debug frostfs-node/morph.go:229 new block {"index": 395} -2023-12-15T14:18:46.185Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 395, "blockHeight": 395, "took": "4.083069ms"} -2023-12-15T14:18:46.495Z INFO sending PrepareRequest {"height": 396, "view": 0} -2023-12-15T14:18:46.495Z INFO sending Commit {"height": 396, "view": 0} -2023-12-15T14:18:46.495Z INFO approving block {"height": 396, "hash": "5a28147d65b7dd4303fe3caaf37386ee85607a7f893c5f7616c126858bc71bcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f324cb5a23a594dc18a08c18b5aa6dc6525b25e9723b4199a6805b07702723ff"} -2023-12-15T14:18:46.496Z INFO initializing dbft {"height": 397, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:46.497Z debug frostfs-node/morph.go:229 new block {"index": 396} -2023-12-15T14:18:47.186Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 396, "blockHeight": 396, "took": "4.541089ms"} -2023-12-15T14:18:47.496Z INFO sending PrepareRequest {"height": 397, "view": 0} -2023-12-15T14:18:47.496Z INFO sending Commit {"height": 397, "view": 0} -2023-12-15T14:18:47.497Z INFO approving block {"height": 397, "hash": "fb1381d0ec68620873a00da3b876e569fee7ce6c5f425bb0cb281f0b3e301e51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a28147d65b7dd4303fe3caaf37386ee85607a7f893c5f7616c126858bc71bcf"} -2023-12-15T14:18:47.497Z INFO initializing dbft {"height": 398, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:47.498Z debug frostfs-node/morph.go:229 new block {"index": 397} -2023-12-15T14:18:48.186Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 397, "blockHeight": 397, "took": "3.948815ms"} -2023-12-15T14:18:48.498Z INFO sending PrepareRequest {"height": 398, "view": 0} -2023-12-15T14:18:48.498Z INFO sending Commit {"height": 398, "view": 0} -2023-12-15T14:18:48.499Z INFO approving block {"height": 398, "hash": "0bb431eb7a2d3403b2d4494a7fca9aa589b360f59aa3b8e47eaebb607d5b42ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb1381d0ec68620873a00da3b876e569fee7ce6c5f425bb0cb281f0b3e301e51"} -2023-12-15T14:18:48.500Z INFO initializing dbft {"height": 399, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:48.501Z debug frostfs-node/morph.go:229 new block {"index": 398} -2023-12-15T14:18:49.189Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 398, "blockHeight": 398, "took": "5.980059ms"} -2023-12-15T14:18:49.500Z INFO sending PrepareRequest {"height": 399, "view": 0} -2023-12-15T14:18:49.500Z INFO sending Commit {"height": 399, "view": 0} -2023-12-15T14:18:49.500Z INFO approving block {"height": 399, "hash": "57fa99e6e342f9a1ef0af7274a672a9a82d8b65e2fecefb80386a0fa99285982", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bb431eb7a2d3403b2d4494a7fca9aa589b360f59aa3b8e47eaebb607d5b42ab"} -2023-12-15T14:18:49.502Z INFO initializing dbft {"height": 400, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:49.502Z debug frostfs-node/morph.go:229 new block {"index": 399} -2023-12-15T14:18:50.188Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 399, "blockHeight": 399, "took": "5.503881ms"} -2023-12-15T14:18:50.501Z INFO sending PrepareRequest {"height": 400, "view": 0} -2023-12-15T14:18:50.501Z INFO sending Commit {"height": 400, "view": 0} -2023-12-15T14:18:50.501Z INFO approving block {"height": 400, "hash": "1e8f0db53a287eaf6d5fd39d91d9b3a220aeed38ffbef3f37833b7b1c1167694", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57fa99e6e342f9a1ef0af7274a672a9a82d8b65e2fecefb80386a0fa99285982"} -2023-12-15T14:18:50.503Z INFO initializing dbft {"height": 401, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:50.503Z debug frostfs-node/morph.go:229 new block {"index": 400} -2023-12-15T14:18:51.186Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 400, "blockHeight": 400, "took": "2.718789ms"} -2023-12-15T14:18:51.502Z INFO sending PrepareRequest {"height": 401, "view": 0} -2023-12-15T14:18:51.502Z INFO sending Commit {"height": 401, "view": 0} -2023-12-15T14:18:51.503Z INFO approving block {"height": 401, "hash": "1ff7c67d15ca733c1d36844a405a4540db2f0fd8b1672a53ceacddb7b84e377f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e8f0db53a287eaf6d5fd39d91d9b3a220aeed38ffbef3f37833b7b1c1167694"} -2023-12-15T14:18:51.504Z INFO initializing dbft {"height": 402, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:51.505Z debug frostfs-node/morph.go:229 new block {"index": 401} -2023-12-15T14:18:52.187Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 401, "blockHeight": 401, "took": "3.75771ms"} -2023-12-15T14:18:52.503Z INFO sending PrepareRequest {"height": 402, "view": 0} -2023-12-15T14:18:52.504Z INFO sending Commit {"height": 402, "view": 0} -2023-12-15T14:18:52.504Z INFO approving block {"height": 402, "hash": "ce32f34a6a9bf2ef205553737a47d5b4cff122d5c229e9e3a0892591c017bce0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ff7c67d15ca733c1d36844a405a4540db2f0fd8b1672a53ceacddb7b84e377f"} -2023-12-15T14:18:52.504Z INFO initializing dbft {"height": 403, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:52.505Z debug frostfs-node/morph.go:229 new block {"index": 402} -2023-12-15T14:18:53.190Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 402, "blockHeight": 402, "took": "5.735157ms"} -2023-12-15T14:18:53.505Z INFO sending PrepareRequest {"height": 403, "view": 0} -2023-12-15T14:18:53.505Z INFO sending Commit {"height": 403, "view": 0} -2023-12-15T14:18:53.505Z INFO approving block {"height": 403, "hash": "224891c5a6460154bec49ddeafe3cb3c38b93c26c36753a7d15c98932cbc1ccf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce32f34a6a9bf2ef205553737a47d5b4cff122d5c229e9e3a0892591c017bce0"} -2023-12-15T14:18:53.506Z INFO initializing dbft {"height": 404, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:53.507Z debug frostfs-node/morph.go:229 new block {"index": 403} -2023-12-15T14:18:54.188Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 403, "blockHeight": 403, "took": "3.864276ms"} -2023-12-15T14:18:54.507Z INFO sending PrepareRequest {"height": 404, "view": 0} -2023-12-15T14:18:54.507Z INFO sending Commit {"height": 404, "view": 0} -2023-12-15T14:18:54.507Z INFO approving block {"height": 404, "hash": "51a6c24f4b727c7a9d8bae57ef524c4592d028c1788bc7fb08e515dff3f04704", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "224891c5a6460154bec49ddeafe3cb3c38b93c26c36753a7d15c98932cbc1ccf"} -2023-12-15T14:18:54.508Z INFO initializing dbft {"height": 405, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:54.509Z debug frostfs-node/morph.go:229 new block {"index": 404} -2023-12-15T14:18:55.191Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 404, "blockHeight": 404, "took": "6.392778ms"} -2023-12-15T14:18:55.508Z INFO sending PrepareRequest {"height": 405, "view": 0} -2023-12-15T14:18:55.508Z INFO sending Commit {"height": 405, "view": 0} -2023-12-15T14:18:55.508Z INFO approving block {"height": 405, "hash": "be583c8692d081f922bcfc9a15ae7a05301ba88d6f4aebb0105f748cdedba6b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51a6c24f4b727c7a9d8bae57ef524c4592d028c1788bc7fb08e515dff3f04704"} -2023-12-15T14:18:55.509Z INFO initializing dbft {"height": 406, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:55.509Z debug frostfs-node/morph.go:229 new block {"index": 405} -2023-12-15T14:18:56.189Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 405, "blockHeight": 405, "took": "3.807982ms"} -2023-12-15T14:18:56.508Z INFO sending PrepareRequest {"height": 406, "view": 0} -2023-12-15T14:18:56.509Z INFO sending Commit {"height": 406, "view": 0} -2023-12-15T14:18:56.509Z INFO approving block {"height": 406, "hash": "eab5770f8c1ab9d03f4c95bab36c74292b78ea73c6be4e921f524f2420ecd33e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be583c8692d081f922bcfc9a15ae7a05301ba88d6f4aebb0105f748cdedba6b3"} -2023-12-15T14:18:56.509Z INFO initializing dbft {"height": 407, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:56.510Z debug frostfs-node/morph.go:229 new block {"index": 406} -2023-12-15T14:18:57.190Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 406, "blockHeight": 406, "took": "4.514102ms"} -2023-12-15T14:18:57.510Z INFO sending PrepareRequest {"height": 407, "view": 0} -2023-12-15T14:18:57.510Z INFO sending Commit {"height": 407, "view": 0} -2023-12-15T14:18:57.510Z INFO approving block {"height": 407, "hash": "cb2f8d34df5f07dd609aa5e1076af742cf7feead68840ea082d7b724d68f92f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eab5770f8c1ab9d03f4c95bab36c74292b78ea73c6be4e921f524f2420ecd33e"} -2023-12-15T14:18:57.511Z INFO initializing dbft {"height": 408, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:57.511Z debug frostfs-node/morph.go:229 new block {"index": 407} -2023-12-15T14:18:58.192Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 407, "blockHeight": 407, "took": "5.664372ms"} -2023-12-15T14:18:58.511Z INFO sending PrepareRequest {"height": 408, "view": 0} -2023-12-15T14:18:58.511Z INFO sending Commit {"height": 408, "view": 0} -2023-12-15T14:18:58.512Z INFO approving block {"height": 408, "hash": "99a8161e4f8054b4b12e89b12a32db633e8e26e317078ff786b862849eee4a5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb2f8d34df5f07dd609aa5e1076af742cf7feead68840ea082d7b724d68f92f7"} -2023-12-15T14:18:58.512Z INFO initializing dbft {"height": 409, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:58.513Z debug frostfs-node/morph.go:229 new block {"index": 408} -2023-12-15T14:18:59.193Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 408, "blockHeight": 408, "took": "6.06536ms"} -2023-12-15T14:18:59.513Z INFO sending PrepareRequest {"height": 409, "view": 0} -2023-12-15T14:18:59.513Z INFO sending Commit {"height": 409, "view": 0} -2023-12-15T14:18:59.513Z INFO approving block {"height": 409, "hash": "6ff946a559d70ef8ca590ff84f9442e60336ee9ce9896f8f11a6d62364bee399", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99a8161e4f8054b4b12e89b12a32db633e8e26e317078ff786b862849eee4a5a"} -2023-12-15T14:18:59.514Z INFO initializing dbft {"height": 410, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:18:59.514Z debug frostfs-node/morph.go:229 new block {"index": 409} -2023-12-15T14:19:00.192Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 409, "blockHeight": 409, "took": "4.96595ms"} -2023-12-15T14:19:00.514Z INFO sending PrepareRequest {"height": 410, "view": 0} -2023-12-15T14:19:00.514Z INFO sending Commit {"height": 410, "view": 0} -2023-12-15T14:19:00.515Z INFO approving block {"height": 410, "hash": "7d24ba2438acf639ecdf695af1520da8846107a66154f41f232cce86e9909597", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ff946a559d70ef8ca590ff84f9442e60336ee9ce9896f8f11a6d62364bee399"} -2023-12-15T14:19:00.516Z INFO initializing dbft {"height": 411, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:00.517Z debug frostfs-node/morph.go:229 new block {"index": 410} -2023-12-15T14:19:01.194Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 410, "blockHeight": 410, "took": "6.325814ms"} -2023-12-15T14:19:01.516Z INFO sending PrepareRequest {"height": 411, "view": 0} -2023-12-15T14:19:01.516Z INFO sending Commit {"height": 411, "view": 0} -2023-12-15T14:19:01.517Z INFO approving block {"height": 411, "hash": "c4f924e7c16b09eb0473916126c3777f22c5e07019c4158f41300162be9918ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d24ba2438acf639ecdf695af1520da8846107a66154f41f232cce86e9909597"} -2023-12-15T14:19:01.518Z INFO initializing dbft {"height": 412, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:01.518Z debug frostfs-node/morph.go:229 new block {"index": 411} -2023-12-15T14:19:02.192Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 411, "blockHeight": 411, "took": "3.60541ms"} -2023-12-15T14:19:02.517Z INFO sending PrepareRequest {"height": 412, "view": 0} -2023-12-15T14:19:02.517Z INFO sending Commit {"height": 412, "view": 0} -2023-12-15T14:19:02.518Z INFO approving block {"height": 412, "hash": "f0232d5a6a21827d4ec75083a3209468ed3092f4f576bc8e2866e7483164fecb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4f924e7c16b09eb0473916126c3777f22c5e07019c4158f41300162be9918ea"} -2023-12-15T14:19:02.519Z INFO initializing dbft {"height": 413, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:02.519Z debug frostfs-node/morph.go:229 new block {"index": 412} -2023-12-15T14:19:03.193Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 412, "blockHeight": 412, "took": "3.716209ms"} -2023-12-15T14:19:03.519Z INFO sending PrepareRequest {"height": 413, "view": 0} -2023-12-15T14:19:03.519Z INFO sending Commit {"height": 413, "view": 0} -2023-12-15T14:19:03.519Z INFO approving block {"height": 413, "hash": "f026a36f1ccefefd9472d83c0f2ce9dfcbf958e016f51540f0869f4b136b5cf8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0232d5a6a21827d4ec75083a3209468ed3092f4f576bc8e2866e7483164fecb"} -2023-12-15T14:19:03.520Z INFO initializing dbft {"height": 414, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:03.520Z debug frostfs-node/morph.go:229 new block {"index": 413} -2023-12-15T14:19:04.195Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 413, "blockHeight": 413, "took": "5.666886ms"} -2023-12-15T14:19:04.520Z INFO sending PrepareRequest {"height": 414, "view": 0} -2023-12-15T14:19:04.521Z INFO sending Commit {"height": 414, "view": 0} -2023-12-15T14:19:04.521Z INFO approving block {"height": 414, "hash": "2a798b2b9a68442f987d053ade06fa36f65c6e3848c9706c20e951c62bf262c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f026a36f1ccefefd9472d83c0f2ce9dfcbf958e016f51540f0869f4b136b5cf8"} -2023-12-15T14:19:04.522Z INFO initializing dbft {"height": 415, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:04.523Z debug frostfs-node/morph.go:229 new block {"index": 414} -2023-12-15T14:19:05.195Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 414, "blockHeight": 414, "took": "5.406846ms"} -2023-12-15T14:19:05.522Z INFO sending PrepareRequest {"height": 415, "view": 0} -2023-12-15T14:19:05.522Z INFO sending Commit {"height": 415, "view": 0} -2023-12-15T14:19:05.523Z INFO approving block {"height": 415, "hash": "6cb5db78db6077b092f1a51e21d724b155e6285da81161a3eb7c220e598f0620", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a798b2b9a68442f987d053ade06fa36f65c6e3848c9706c20e951c62bf262c3"} -2023-12-15T14:19:05.524Z INFO initializing dbft {"height": 416, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:05.524Z debug frostfs-node/morph.go:229 new block {"index": 415} -2023-12-15T14:19:06.195Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 415, "blockHeight": 415, "took": "4.263424ms"} -2023-12-15T14:19:06.523Z INFO sending PrepareRequest {"height": 416, "view": 0} -2023-12-15T14:19:06.524Z INFO sending Commit {"height": 416, "view": 0} -2023-12-15T14:19:06.524Z INFO approving block {"height": 416, "hash": "775694bebcf1043194ecaf850b1084ee08ebebe15e56dd88a08e55968acc2318", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cb5db78db6077b092f1a51e21d724b155e6285da81161a3eb7c220e598f0620"} -2023-12-15T14:19:06.525Z INFO initializing dbft {"height": 417, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:06.526Z debug frostfs-node/morph.go:229 new block {"index": 416} -2023-12-15T14:19:07.195Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 416, "blockHeight": 416, "took": "4.408398ms"} -2023-12-15T14:19:07.525Z INFO sending PrepareRequest {"height": 417, "view": 0} -2023-12-15T14:19:07.525Z INFO sending Commit {"height": 417, "view": 0} -2023-12-15T14:19:07.525Z INFO approving block {"height": 417, "hash": "1c424f6ae00dc889fb8edc5abcdaf49308b764b9a8db4fde334d373f64b51ccf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "775694bebcf1043194ecaf850b1084ee08ebebe15e56dd88a08e55968acc2318"} -2023-12-15T14:19:07.527Z INFO initializing dbft {"height": 418, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:07.527Z debug frostfs-node/morph.go:229 new block {"index": 417} -2023-12-15T14:19:07.529Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:19:07.533Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:19:07.533Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:19:08.196Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 417, "blockHeight": 417, "took": "4.233065ms"} -2023-12-15T14:19:08.527Z INFO sending PrepareRequest {"height": 418, "view": 0} -2023-12-15T14:19:08.527Z INFO sending Commit {"height": 418, "view": 0} -2023-12-15T14:19:08.527Z INFO approving block {"height": 418, "hash": "50675dae97f27a544c9a423cdb86f26b5ef315e28f98258554b16392c702c9a3", "tx_count": 2, "merkle": "e07cd2d1782d98391edc12b2c37c881f13a1f8f4139c61385877cd821173c02a", "prev": "1c424f6ae00dc889fb8edc5abcdaf49308b764b9a8db4fde334d373f64b51ccf"} -2023-12-15T14:19:08.528Z INFO runtime log {"tx": "1af076ac0449eee4f5de2f10fc2cae718254476fcf55e36f7b2830f315dbfec1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:19:08.528Z INFO runtime log {"tx": "1af076ac0449eee4f5de2f10fc2cae718254476fcf55e36f7b2830f315dbfec1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:19:08.529Z INFO initializing dbft {"height": 419, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:08.530Z debug frostfs-node/morph.go:229 new block {"index": 418} -2023-12-15T14:19:09.198Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 418, "blockHeight": 418, "took": "6.157085ms"} -2023-12-15T14:19:09.528Z INFO sending PrepareRequest {"height": 419, "view": 0} -2023-12-15T14:19:09.528Z INFO sending Commit {"height": 419, "view": 0} -2023-12-15T14:19:09.528Z INFO approving block {"height": 419, "hash": "66461f9440941bea8a85f558b62f48c84c394f7a711fc4ab06f7b70049a3b128", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50675dae97f27a544c9a423cdb86f26b5ef315e28f98258554b16392c702c9a3"} -2023-12-15T14:19:09.530Z INFO initializing dbft {"height": 420, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:09.530Z debug frostfs-node/morph.go:229 new block {"index": 419} -2023-12-15T14:19:10.197Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 419, "blockHeight": 419, "took": "4.555942ms"} -2023-12-15T14:19:10.529Z INFO sending PrepareRequest {"height": 420, "view": 0} -2023-12-15T14:19:10.529Z INFO sending Commit {"height": 420, "view": 0} -2023-12-15T14:19:10.530Z INFO approving block {"height": 420, "hash": "3aa20cc4a85a5a1bd9eeaafb173fe7a55969a77d51914395406bfb93099ab7e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66461f9440941bea8a85f558b62f48c84c394f7a711fc4ab06f7b70049a3b128"} -2023-12-15T14:19:10.531Z INFO initializing dbft {"height": 421, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:10.532Z debug frostfs-node/morph.go:229 new block {"index": 420} -2023-12-15T14:19:11.196Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 420, "blockHeight": 420, "took": "2.844003ms"} -2023-12-15T14:19:11.530Z INFO sending PrepareRequest {"height": 421, "view": 0} -2023-12-15T14:19:11.531Z INFO sending Commit {"height": 421, "view": 0} -2023-12-15T14:19:11.531Z INFO approving block {"height": 421, "hash": "406111a024bc7933e53c13f378639f875895faffed29dbe35123a54379149aa5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3aa20cc4a85a5a1bd9eeaafb173fe7a55969a77d51914395406bfb93099ab7e4"} -2023-12-15T14:19:11.533Z INFO initializing dbft {"height": 422, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:11.533Z debug frostfs-node/morph.go:229 new block {"index": 421} -2023-12-15T14:19:11.535Z info settlement/calls.go:106 start basic income distribution {"epoch": 2} -2023-12-15T14:19:11.537Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 2, "iteration": 2, "error": "no data for 1 iteration in 2 epoch for consumers's trusts"} -2023-12-15T14:19:12.197Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 421, "blockHeight": 421, "took": "2.759061ms"} -2023-12-15T14:19:12.532Z INFO sending PrepareRequest {"height": 422, "view": 0} -2023-12-15T14:19:12.532Z INFO sending Commit {"height": 422, "view": 0} -2023-12-15T14:19:12.532Z INFO approving block {"height": 422, "hash": "48de6be52a02425e0990115073002713d1557be25ae9d07603aa36b1439028a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "406111a024bc7933e53c13f378639f875895faffed29dbe35123a54379149aa5"} -2023-12-15T14:19:12.534Z INFO initializing dbft {"height": 423, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:12.534Z debug frostfs-node/morph.go:229 new block {"index": 422} -2023-12-15T14:19:13.199Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 422, "blockHeight": 422, "took": "4.388668ms"} -2023-12-15T14:19:13.533Z INFO sending PrepareRequest {"height": 423, "view": 0} -2023-12-15T14:19:13.533Z INFO sending Commit {"height": 423, "view": 0} -2023-12-15T14:19:13.534Z INFO approving block {"height": 423, "hash": "9f1035481c1c5d16664aa33811d3018c4fb83a8e2cc863eb11989d1587c41e0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48de6be52a02425e0990115073002713d1557be25ae9d07603aa36b1439028a6"} -2023-12-15T14:19:13.534Z INFO initializing dbft {"height": 424, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:13.535Z debug frostfs-node/morph.go:229 new block {"index": 423} -2023-12-15T14:19:14.198Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 423, "blockHeight": 423, "took": "2.941697ms"} -2023-12-15T14:19:14.535Z INFO sending PrepareRequest {"height": 424, "view": 0} -2023-12-15T14:19:14.535Z INFO sending Commit {"height": 424, "view": 0} -2023-12-15T14:19:14.536Z INFO approving block {"height": 424, "hash": "55f5bb95a9bd43f0a908ad62da6c00debc7c30d51456dcbd397e882332d231fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f1035481c1c5d16664aa33811d3018c4fb83a8e2cc863eb11989d1587c41e0e"} -2023-12-15T14:19:14.538Z INFO initializing dbft {"height": 425, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:14.538Z debug frostfs-node/morph.go:229 new block {"index": 424} -2023-12-15T14:19:15.198Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 424, "blockHeight": 424, "took": "2.861074ms"} -2023-12-15T14:19:15.537Z INFO sending PrepareRequest {"height": 425, "view": 0} -2023-12-15T14:19:15.538Z INFO sending Commit {"height": 425, "view": 0} -2023-12-15T14:19:15.538Z INFO approving block {"height": 425, "hash": "b44d8c93596de65e36494fd9703bffd92b860378cc41c4bd1c4f51d3fc3d3d0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55f5bb95a9bd43f0a908ad62da6c00debc7c30d51456dcbd397e882332d231fe"} -2023-12-15T14:19:15.539Z INFO initializing dbft {"height": 426, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:15.540Z debug frostfs-node/morph.go:229 new block {"index": 425} -2023-12-15T14:19:16.200Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 425, "blockHeight": 425, "took": "4.041489ms"} -2023-12-15T14:19:16.539Z INFO sending PrepareRequest {"height": 426, "view": 0} -2023-12-15T14:19:16.539Z INFO sending Commit {"height": 426, "view": 0} -2023-12-15T14:19:16.539Z INFO approving block {"height": 426, "hash": "ddaa917c4a5dc2830f116cadcf7fb7d645ae22038de3e9fce2bb367a41f2b3e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b44d8c93596de65e36494fd9703bffd92b860378cc41c4bd1c4f51d3fc3d3d0e"} -2023-12-15T14:19:16.541Z INFO initializing dbft {"height": 427, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:16.541Z debug frostfs-node/morph.go:229 new block {"index": 426} -2023-12-15T14:19:17.200Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 426, "blockHeight": 426, "took": "4.000748ms"} -2023-12-15T14:19:17.540Z INFO sending PrepareRequest {"height": 427, "view": 0} -2023-12-15T14:19:17.540Z INFO sending Commit {"height": 427, "view": 0} -2023-12-15T14:19:17.541Z INFO approving block {"height": 427, "hash": "528b575405ac229b288fc943c295a927b5ed431e857fe0312013bfa7792214da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddaa917c4a5dc2830f116cadcf7fb7d645ae22038de3e9fce2bb367a41f2b3e2"} -2023-12-15T14:19:17.541Z INFO initializing dbft {"height": 428, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:17.542Z debug frostfs-node/morph.go:229 new block {"index": 427} -2023-12-15T14:19:18.204Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 427, "blockHeight": 427, "took": "7.093188ms"} -2023-12-15T14:19:18.542Z INFO sending PrepareRequest {"height": 428, "view": 0} -2023-12-15T14:19:18.542Z INFO sending Commit {"height": 428, "view": 0} -2023-12-15T14:19:18.542Z INFO approving block {"height": 428, "hash": "00a5704fb0eb12c417c17edef11c5861694924f995765a1b1b7941f76c0446d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "528b575405ac229b288fc943c295a927b5ed431e857fe0312013bfa7792214da"} -2023-12-15T14:19:18.543Z INFO initializing dbft {"height": 429, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:18.544Z debug frostfs-node/morph.go:229 new block {"index": 428} -2023-12-15T14:19:19.203Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 428, "blockHeight": 428, "took": "5.746659ms"} -2023-12-15T14:19:19.543Z INFO sending PrepareRequest {"height": 429, "view": 0} -2023-12-15T14:19:19.544Z INFO sending Commit {"height": 429, "view": 0} -2023-12-15T14:19:19.544Z INFO approving block {"height": 429, "hash": "8963048e740b683d6b1314cdc4606f5126a3648848edb4be323c74af32f4d974", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00a5704fb0eb12c417c17edef11c5861694924f995765a1b1b7941f76c0446d3"} -2023-12-15T14:19:19.545Z INFO initializing dbft {"height": 430, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:19.546Z debug frostfs-node/morph.go:229 new block {"index": 429} -2023-12-15T14:19:20.204Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 429, "blockHeight": 429, "took": "6.50092ms"} -2023-12-15T14:19:20.545Z INFO sending PrepareRequest {"height": 430, "view": 0} -2023-12-15T14:19:20.545Z INFO sending Commit {"height": 430, "view": 0} -2023-12-15T14:19:20.545Z INFO approving block {"height": 430, "hash": "9d84f47c64686f4118d6600c806687be155895b671272448ee9a985bd3c83e71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8963048e740b683d6b1314cdc4606f5126a3648848edb4be323c74af32f4d974"} -2023-12-15T14:19:20.546Z INFO initializing dbft {"height": 431, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:20.547Z debug frostfs-node/morph.go:229 new block {"index": 430} -2023-12-15T14:19:21.203Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 430, "blockHeight": 430, "took": "4.94713ms"} -2023-12-15T14:19:21.547Z INFO sending PrepareRequest {"height": 431, "view": 0} -2023-12-15T14:19:21.547Z INFO sending Commit {"height": 431, "view": 0} -2023-12-15T14:19:21.547Z INFO approving block {"height": 431, "hash": "150a3d2f9a2f67394e1c74ae5f59d553d3613aa825bc8237cff51b00513939c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d84f47c64686f4118d6600c806687be155895b671272448ee9a985bd3c83e71"} -2023-12-15T14:19:21.548Z INFO initializing dbft {"height": 432, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:21.549Z debug frostfs-node/morph.go:229 new block {"index": 431} -2023-12-15T14:19:22.203Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 431, "blockHeight": 431, "took": "4.125621ms"} -2023-12-15T14:19:22.548Z INFO sending PrepareRequest {"height": 432, "view": 0} -2023-12-15T14:19:22.548Z INFO sending Commit {"height": 432, "view": 0} -2023-12-15T14:19:22.549Z INFO approving block {"height": 432, "hash": "f8f70e49ac2905335eebd732a60e54d86fe6fd5075ac3eee9e5431ecaa8896f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "150a3d2f9a2f67394e1c74ae5f59d553d3613aa825bc8237cff51b00513939c6"} -2023-12-15T14:19:22.550Z INFO initializing dbft {"height": 433, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:22.551Z debug frostfs-node/morph.go:229 new block {"index": 432} -2023-12-15T14:19:23.204Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 432, "blockHeight": 432, "took": "4.029467ms"} -2023-12-15T14:19:23.550Z INFO sending PrepareRequest {"height": 433, "view": 0} -2023-12-15T14:19:23.550Z INFO sending Commit {"height": 433, "view": 0} -2023-12-15T14:19:23.551Z INFO approving block {"height": 433, "hash": "abe2dcfb3eec0ad4034791e64f28f2cfce4884b1d1d968a2ccd40ef72c14413b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8f70e49ac2905335eebd732a60e54d86fe6fd5075ac3eee9e5431ecaa8896f3"} -2023-12-15T14:19:23.552Z INFO initializing dbft {"height": 434, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:23.552Z debug frostfs-node/morph.go:229 new block {"index": 433} -2023-12-15T14:19:24.207Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 433, "blockHeight": 433, "took": "5.395398ms"} -2023-12-15T14:19:24.551Z INFO sending PrepareRequest {"height": 434, "view": 0} -2023-12-15T14:19:24.551Z INFO sending Commit {"height": 434, "view": 0} -2023-12-15T14:19:24.551Z INFO approving block {"height": 434, "hash": "fcdecaa0e8cf7ac9106b229761fe52f73c9edbffa7c1e57a3acd702e8b3eb196", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abe2dcfb3eec0ad4034791e64f28f2cfce4884b1d1d968a2ccd40ef72c14413b"} -2023-12-15T14:19:24.552Z INFO initializing dbft {"height": 435, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:24.553Z debug frostfs-node/morph.go:229 new block {"index": 434} -2023-12-15T14:19:25.206Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 434, "blockHeight": 434, "took": "4.758149ms"} -2023-12-15T14:19:25.553Z INFO sending PrepareRequest {"height": 435, "view": 0} -2023-12-15T14:19:25.553Z INFO sending Commit {"height": 435, "view": 0} -2023-12-15T14:19:25.554Z INFO approving block {"height": 435, "hash": "876422a322bfa8c32dfe875d12932ced1fbf0314f09f676653abdaae95f38676", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcdecaa0e8cf7ac9106b229761fe52f73c9edbffa7c1e57a3acd702e8b3eb196"} -2023-12-15T14:19:25.555Z INFO initializing dbft {"height": 436, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:25.556Z debug frostfs-node/morph.go:229 new block {"index": 435} -2023-12-15T14:19:26.208Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 435, "blockHeight": 435, "took": "5.884132ms"} -2023-12-15T14:19:26.555Z INFO sending PrepareRequest {"height": 436, "view": 0} -2023-12-15T14:19:26.555Z INFO sending Commit {"height": 436, "view": 0} -2023-12-15T14:19:26.556Z INFO approving block {"height": 436, "hash": "744c8f2e87b58a8610cf3441100c0b6d433e5d22a86485bb205fc235efc02d21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "876422a322bfa8c32dfe875d12932ced1fbf0314f09f676653abdaae95f38676"} -2023-12-15T14:19:26.556Z INFO initializing dbft {"height": 437, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:26.557Z debug frostfs-node/morph.go:229 new block {"index": 436} -2023-12-15T14:19:27.207Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 436, "blockHeight": 436, "took": "4.262254ms"} -2023-12-15T14:19:27.558Z INFO sending PrepareRequest {"height": 437, "view": 0} -2023-12-15T14:19:27.558Z INFO sending Commit {"height": 437, "view": 0} -2023-12-15T14:19:27.558Z INFO approving block {"height": 437, "hash": "7f771684cb7d679e0999180708f230655ad4803f1e059097587c4181dbec4108", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "744c8f2e87b58a8610cf3441100c0b6d433e5d22a86485bb205fc235efc02d21"} -2023-12-15T14:19:27.560Z INFO initializing dbft {"height": 438, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:27.561Z debug frostfs-node/morph.go:229 new block {"index": 437} -2023-12-15T14:19:28.209Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 437, "blockHeight": 437, "took": "5.614654ms"} -2023-12-15T14:19:28.560Z INFO sending PrepareRequest {"height": 438, "view": 0} -2023-12-15T14:19:28.560Z INFO sending Commit {"height": 438, "view": 0} -2023-12-15T14:19:28.560Z INFO approving block {"height": 438, "hash": "f78f562dcc25fc5df8643ebefdc6d9f304bdc6464af1467bafe8b99a4c57321c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f771684cb7d679e0999180708f230655ad4803f1e059097587c4181dbec4108"} -2023-12-15T14:19:28.562Z INFO initializing dbft {"height": 439, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:28.562Z debug frostfs-node/morph.go:229 new block {"index": 438} -2023-12-15T14:19:29.209Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 438, "blockHeight": 438, "took": "4.628856ms"} -2023-12-15T14:19:29.562Z INFO sending PrepareRequest {"height": 439, "view": 0} -2023-12-15T14:19:29.562Z INFO sending Commit {"height": 439, "view": 0} -2023-12-15T14:19:29.562Z INFO approving block {"height": 439, "hash": "85b4d482aaeff714dec5ec8f22e10bb4a89f4131f64695b7c1775492b4a49478", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f78f562dcc25fc5df8643ebefdc6d9f304bdc6464af1467bafe8b99a4c57321c"} -2023-12-15T14:19:29.563Z INFO initializing dbft {"height": 440, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:29.563Z debug frostfs-node/morph.go:229 new block {"index": 439} -2023-12-15T14:19:30.209Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 439, "blockHeight": 439, "took": "3.851473ms"} -2023-12-15T14:19:30.563Z INFO sending PrepareRequest {"height": 440, "view": 0} -2023-12-15T14:19:30.563Z INFO sending Commit {"height": 440, "view": 0} -2023-12-15T14:19:30.564Z INFO approving block {"height": 440, "hash": "0a36d2ac0165bef884721323b8b3d78a3fb8a3671f78e2cd615a828d831687af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85b4d482aaeff714dec5ec8f22e10bb4a89f4131f64695b7c1775492b4a49478"} -2023-12-15T14:19:30.565Z INFO initializing dbft {"height": 441, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:30.566Z debug frostfs-node/morph.go:229 new block {"index": 440} -2023-12-15T14:19:31.210Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 440, "blockHeight": 440, "took": "4.161233ms"} -2023-12-15T14:19:31.565Z INFO sending PrepareRequest {"height": 441, "view": 0} -2023-12-15T14:19:31.565Z INFO sending Commit {"height": 441, "view": 0} -2023-12-15T14:19:31.565Z INFO approving block {"height": 441, "hash": "eb0aadd2cd8331bedc3cd74d018954bc4ebb068a63a76a9ea52513ba1bfd0ab2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a36d2ac0165bef884721323b8b3d78a3fb8a3671f78e2cd615a828d831687af"} -2023-12-15T14:19:31.567Z INFO initializing dbft {"height": 442, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:31.567Z debug frostfs-node/morph.go:229 new block {"index": 441} -2023-12-15T14:19:32.212Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 441, "blockHeight": 441, "took": "5.992183ms"} -2023-12-15T14:19:32.566Z INFO sending PrepareRequest {"height": 442, "view": 0} -2023-12-15T14:19:32.566Z INFO sending Commit {"height": 442, "view": 0} -2023-12-15T14:19:32.566Z INFO approving block {"height": 442, "hash": "839bce117429b0f619aa3ec41a7b9e9cd7661101db9faee87e6851b2bbefe24d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb0aadd2cd8331bedc3cd74d018954bc4ebb068a63a76a9ea52513ba1bfd0ab2"} -2023-12-15T14:19:32.567Z INFO initializing dbft {"height": 443, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:32.568Z debug frostfs-node/morph.go:229 new block {"index": 442} -2023-12-15T14:19:33.210Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 442, "blockHeight": 442, "took": "3.251858ms"} -2023-12-15T14:19:33.568Z INFO sending PrepareRequest {"height": 443, "view": 0} -2023-12-15T14:19:33.568Z INFO sending Commit {"height": 443, "view": 0} -2023-12-15T14:19:33.568Z INFO approving block {"height": 443, "hash": "9db0c8f64156eb21b62ad5a44b9e656f76d37256645f47bff793e8339879f378", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "839bce117429b0f619aa3ec41a7b9e9cd7661101db9faee87e6851b2bbefe24d"} -2023-12-15T14:19:33.569Z INFO initializing dbft {"height": 444, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:33.570Z debug frostfs-node/morph.go:229 new block {"index": 443} -2023-12-15T14:19:34.214Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 443, "blockHeight": 443, "took": "6.361256ms"} -2023-12-15T14:19:34.569Z INFO sending PrepareRequest {"height": 444, "view": 0} -2023-12-15T14:19:34.569Z INFO sending Commit {"height": 444, "view": 0} -2023-12-15T14:19:34.569Z INFO approving block {"height": 444, "hash": "3915b673b25057a3d01f3c926ac5cb3a3fceb3f101d979e9db774a06a5f3a580", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9db0c8f64156eb21b62ad5a44b9e656f76d37256645f47bff793e8339879f378"} -2023-12-15T14:19:34.570Z INFO initializing dbft {"height": 445, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:34.571Z debug frostfs-node/morph.go:229 new block {"index": 444} -2023-12-15T14:19:35.212Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 444, "blockHeight": 444, "took": "4.578755ms"} -2023-12-15T14:19:35.571Z INFO sending PrepareRequest {"height": 445, "view": 0} -2023-12-15T14:19:35.571Z INFO sending Commit {"height": 445, "view": 0} -2023-12-15T14:19:35.572Z INFO approving block {"height": 445, "hash": "9fdfaae92170f2843b9c1b45da8aa3d4f97230d30e1f8f3daebfd511bc597d90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3915b673b25057a3d01f3c926ac5cb3a3fceb3f101d979e9db774a06a5f3a580"} -2023-12-15T14:19:35.573Z INFO initializing dbft {"height": 446, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:35.574Z debug frostfs-node/morph.go:229 new block {"index": 445} -2023-12-15T14:19:36.214Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 445, "blockHeight": 445, "took": "6.011379ms"} -2023-12-15T14:19:36.572Z INFO sending PrepareRequest {"height": 446, "view": 0} -2023-12-15T14:19:36.572Z INFO sending Commit {"height": 446, "view": 0} -2023-12-15T14:19:36.572Z INFO approving block {"height": 446, "hash": "dbce42c4bff2c75fe0ed93050565b63b75dfbe98ab03044ad1c5cab04cae1503", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fdfaae92170f2843b9c1b45da8aa3d4f97230d30e1f8f3daebfd511bc597d90"} -2023-12-15T14:19:36.574Z INFO initializing dbft {"height": 447, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:36.574Z debug frostfs-node/morph.go:229 new block {"index": 446} -2023-12-15T14:19:37.212Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 446, "blockHeight": 446, "took": "3.79094ms"} -2023-12-15T14:19:37.574Z INFO sending PrepareRequest {"height": 447, "view": 0} -2023-12-15T14:19:37.574Z INFO sending Commit {"height": 447, "view": 0} -2023-12-15T14:19:37.575Z INFO approving block {"height": 447, "hash": "4749d61ad16e9d4d158b714938e47ec3b92f6a58d866c5b11412683ccd884b54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbce42c4bff2c75fe0ed93050565b63b75dfbe98ab03044ad1c5cab04cae1503"} -2023-12-15T14:19:37.575Z INFO initializing dbft {"height": 448, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:37.576Z debug frostfs-node/morph.go:229 new block {"index": 447} -2023-12-15T14:19:38.213Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 447, "blockHeight": 447, "took": "3.918621ms"} -2023-12-15T14:19:38.575Z INFO sending PrepareRequest {"height": 448, "view": 0} -2023-12-15T14:19:38.576Z INFO sending Commit {"height": 448, "view": 0} -2023-12-15T14:19:38.576Z INFO approving block {"height": 448, "hash": "7d531dd6f584f9aca8ab40bbaa37acf3b3a6a1e70084c24d35e3bcae344c81ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4749d61ad16e9d4d158b714938e47ec3b92f6a58d866c5b11412683ccd884b54"} -2023-12-15T14:19:38.577Z INFO initializing dbft {"height": 449, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:38.578Z debug frostfs-node/morph.go:229 new block {"index": 448} -2023-12-15T14:19:39.214Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 448, "blockHeight": 448, "took": "4.504681ms"} -2023-12-15T14:19:39.577Z INFO sending PrepareRequest {"height": 449, "view": 0} -2023-12-15T14:19:39.577Z INFO sending Commit {"height": 449, "view": 0} -2023-12-15T14:19:39.578Z INFO approving block {"height": 449, "hash": "20824b3a5ae21f6ad75ad2ce6a2e04d935c80d3d860c7e1dc155f2b7ea31837e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d531dd6f584f9aca8ab40bbaa37acf3b3a6a1e70084c24d35e3bcae344c81ef"} -2023-12-15T14:19:39.579Z INFO initializing dbft {"height": 450, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:39.580Z debug frostfs-node/morph.go:229 new block {"index": 449} -2023-12-15T14:19:40.215Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 449, "blockHeight": 449, "took": "4.827579ms"} -2023-12-15T14:19:40.578Z INFO sending PrepareRequest {"height": 450, "view": 0} -2023-12-15T14:19:40.578Z INFO sending Commit {"height": 450, "view": 0} -2023-12-15T14:19:40.579Z INFO approving block {"height": 450, "hash": "8e6766b951ef1d77568f2f33a8939c02d5f350b3e12e74cce7120c43c8fae70e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20824b3a5ae21f6ad75ad2ce6a2e04d935c80d3d860c7e1dc155f2b7ea31837e"} -2023-12-15T14:19:40.580Z INFO initializing dbft {"height": 451, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:40.581Z debug frostfs-node/morph.go:229 new block {"index": 450} -2023-12-15T14:19:41.215Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 450, "blockHeight": 450, "took": "4.184082ms"} -2023-12-15T14:19:41.580Z INFO sending PrepareRequest {"height": 451, "view": 0} -2023-12-15T14:19:41.580Z INFO sending Commit {"height": 451, "view": 0} -2023-12-15T14:19:41.581Z INFO approving block {"height": 451, "hash": "ad529b2960534d447335437429974cddd3d9f54ac5193e9b1fa0edee6b1d4b69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e6766b951ef1d77568f2f33a8939c02d5f350b3e12e74cce7120c43c8fae70e"} -2023-12-15T14:19:41.582Z INFO initializing dbft {"height": 452, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:41.582Z debug frostfs-node/morph.go:229 new block {"index": 451} -2023-12-15T14:19:42.216Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 451, "blockHeight": 451, "took": "3.905614ms"} -2023-12-15T14:19:42.582Z INFO sending PrepareRequest {"height": 452, "view": 0} -2023-12-15T14:19:42.582Z INFO sending Commit {"height": 452, "view": 0} -2023-12-15T14:19:42.583Z INFO approving block {"height": 452, "hash": "c3c48f552ab6dccda1e9ad46bad7d60e1a908c22c77b297ced8e741fdb9f9a3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad529b2960534d447335437429974cddd3d9f54ac5193e9b1fa0edee6b1d4b69"} -2023-12-15T14:19:42.584Z INFO initializing dbft {"height": 453, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:42.584Z debug frostfs-node/morph.go:229 new block {"index": 452} -2023-12-15T14:19:43.220Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 452, "blockHeight": 452, "took": "8.080175ms"} -2023-12-15T14:19:43.583Z INFO sending PrepareRequest {"height": 453, "view": 0} -2023-12-15T14:19:43.584Z INFO sending Commit {"height": 453, "view": 0} -2023-12-15T14:19:43.584Z INFO approving block {"height": 453, "hash": "0ad75411b730dd7bf40830ec9e15eb9107ad0325ad5ffb6f5bb9aeea1291de4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3c48f552ab6dccda1e9ad46bad7d60e1a908c22c77b297ced8e741fdb9f9a3e"} -2023-12-15T14:19:43.585Z INFO initializing dbft {"height": 454, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:43.586Z debug frostfs-node/morph.go:229 new block {"index": 453} -2023-12-15T14:19:44.219Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 453, "blockHeight": 453, "took": "5.971638ms"} -2023-12-15T14:19:44.585Z INFO sending PrepareRequest {"height": 454, "view": 0} -2023-12-15T14:19:44.585Z INFO sending Commit {"height": 454, "view": 0} -2023-12-15T14:19:44.585Z INFO approving block {"height": 454, "hash": "0720a4912e2e28c1a4481e45ba82ef6dadaca869f6a55920e2ea503cfd018688", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ad75411b730dd7bf40830ec9e15eb9107ad0325ad5ffb6f5bb9aeea1291de4c"} -2023-12-15T14:19:44.586Z INFO initializing dbft {"height": 455, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:44.587Z debug frostfs-node/morph.go:229 new block {"index": 454} -2023-12-15T14:19:45.217Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 454, "blockHeight": 454, "took": "3.941429ms"} -2023-12-15T14:19:45.586Z INFO sending PrepareRequest {"height": 455, "view": 0} -2023-12-15T14:19:45.587Z INFO sending Commit {"height": 455, "view": 0} -2023-12-15T14:19:45.587Z INFO approving block {"height": 455, "hash": "8f4f5668f483742db760cbbbd408fefc86b84a7df8e498846d2e037afa2c93d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0720a4912e2e28c1a4481e45ba82ef6dadaca869f6a55920e2ea503cfd018688"} -2023-12-15T14:19:45.588Z INFO initializing dbft {"height": 456, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:45.589Z debug frostfs-node/morph.go:229 new block {"index": 455} -2023-12-15T14:19:46.219Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 455, "blockHeight": 455, "took": "4.78983ms"} -2023-12-15T14:19:46.588Z INFO sending PrepareRequest {"height": 456, "view": 0} -2023-12-15T14:19:46.588Z INFO sending Commit {"height": 456, "view": 0} -2023-12-15T14:19:46.588Z INFO approving block {"height": 456, "hash": "5537d4f395c726303b770675ed1aabb8ad0371218f6173f2ad5ee81715dcb724", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f4f5668f483742db760cbbbd408fefc86b84a7df8e498846d2e037afa2c93d2"} -2023-12-15T14:19:46.589Z INFO initializing dbft {"height": 457, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:46.590Z debug frostfs-node/morph.go:229 new block {"index": 456} -2023-12-15T14:19:47.221Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 456, "blockHeight": 456, "took": "7.138368ms"} -2023-12-15T14:19:47.590Z INFO sending PrepareRequest {"height": 457, "view": 0} -2023-12-15T14:19:47.590Z INFO sending Commit {"height": 457, "view": 0} -2023-12-15T14:19:47.590Z INFO approving block {"height": 457, "hash": "4c4f29d7d3f609f3ebbc62c7b1d7a1b5683eb5af2fe888a07247a89cc9332b9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5537d4f395c726303b770675ed1aabb8ad0371218f6173f2ad5ee81715dcb724"} -2023-12-15T14:19:47.591Z INFO initializing dbft {"height": 458, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:47.591Z debug frostfs-node/morph.go:229 new block {"index": 457} -2023-12-15T14:19:48.219Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 457, "blockHeight": 457, "took": "4.330666ms"} -2023-12-15T14:19:48.591Z INFO sending PrepareRequest {"height": 458, "view": 0} -2023-12-15T14:19:48.591Z INFO sending Commit {"height": 458, "view": 0} -2023-12-15T14:19:48.592Z INFO approving block {"height": 458, "hash": "9994e71d06daa43e914d777d59d0dc2db0b1dcf7519ef9a78dfaa93b302378a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c4f29d7d3f609f3ebbc62c7b1d7a1b5683eb5af2fe888a07247a89cc9332b9a"} -2023-12-15T14:19:48.593Z INFO initializing dbft {"height": 459, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:48.593Z debug frostfs-node/morph.go:229 new block {"index": 458} -2023-12-15T14:19:49.221Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 458, "blockHeight": 458, "took": "5.589717ms"} -2023-12-15T14:19:49.593Z INFO sending PrepareRequest {"height": 459, "view": 0} -2023-12-15T14:19:49.593Z INFO sending Commit {"height": 459, "view": 0} -2023-12-15T14:19:49.593Z INFO approving block {"height": 459, "hash": "5c74b59dd059c40c74eef106621ab202d2c45430d0d2d40ea83e58f94f8a57e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9994e71d06daa43e914d777d59d0dc2db0b1dcf7519ef9a78dfaa93b302378a4"} -2023-12-15T14:19:49.594Z INFO initializing dbft {"height": 460, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:49.595Z debug frostfs-node/morph.go:229 new block {"index": 459} -2023-12-15T14:19:50.220Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 459, "blockHeight": 459, "took": "3.418081ms"} -2023-12-15T14:19:50.594Z INFO sending PrepareRequest {"height": 460, "view": 0} -2023-12-15T14:19:50.594Z INFO sending Commit {"height": 460, "view": 0} -2023-12-15T14:19:50.594Z INFO approving block {"height": 460, "hash": "d848a78fbb692800fbcd736efd2c5c3325e34c07067e4a1c51e3ba78b114056c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c74b59dd059c40c74eef106621ab202d2c45430d0d2d40ea83e58f94f8a57e1"} -2023-12-15T14:19:50.595Z INFO initializing dbft {"height": 461, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:50.596Z debug frostfs-node/morph.go:229 new block {"index": 460} -2023-12-15T14:19:51.221Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 460, "blockHeight": 460, "took": "4.433429ms"} -2023-12-15T14:19:51.596Z INFO sending PrepareRequest {"height": 461, "view": 0} -2023-12-15T14:19:51.596Z INFO sending Commit {"height": 461, "view": 0} -2023-12-15T14:19:51.596Z INFO approving block {"height": 461, "hash": "413746219ea76bdb748269266d531914a42e220602286d5bd91024d21ed5dcb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d848a78fbb692800fbcd736efd2c5c3325e34c07067e4a1c51e3ba78b114056c"} -2023-12-15T14:19:51.598Z INFO initializing dbft {"height": 462, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:51.598Z debug frostfs-node/morph.go:229 new block {"index": 461} -2023-12-15T14:19:52.221Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 461, "blockHeight": 461, "took": "4.121391ms"} -2023-12-15T14:19:52.597Z INFO sending PrepareRequest {"height": 462, "view": 0} -2023-12-15T14:19:52.597Z INFO sending Commit {"height": 462, "view": 0} -2023-12-15T14:19:52.598Z INFO approving block {"height": 462, "hash": "3467f9ddcd99f116a179e2c2f56e68cab660cc7bc37b82028cff0011a9680309", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "413746219ea76bdb748269266d531914a42e220602286d5bd91024d21ed5dcb6"} -2023-12-15T14:19:52.599Z INFO initializing dbft {"height": 463, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:52.600Z debug frostfs-node/morph.go:229 new block {"index": 462} -2023-12-15T14:19:53.224Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 462, "blockHeight": 462, "took": "6.458104ms"} -2023-12-15T14:19:53.599Z INFO sending PrepareRequest {"height": 463, "view": 0} -2023-12-15T14:19:53.599Z INFO sending Commit {"height": 463, "view": 0} -2023-12-15T14:19:53.600Z INFO approving block {"height": 463, "hash": "a4a39f5cf323866c31568938bc4f4f9fac1a098a6e6b03e6488c5ffa6fe64dcb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3467f9ddcd99f116a179e2c2f56e68cab660cc7bc37b82028cff0011a9680309"} -2023-12-15T14:19:53.601Z INFO initializing dbft {"height": 464, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:53.602Z debug frostfs-node/morph.go:229 new block {"index": 463} -2023-12-15T14:19:54.223Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 463, "blockHeight": 463, "took": "4.674306ms"} -2023-12-15T14:19:54.600Z INFO sending PrepareRequest {"height": 464, "view": 0} -2023-12-15T14:19:54.600Z INFO sending Commit {"height": 464, "view": 0} -2023-12-15T14:19:54.601Z INFO approving block {"height": 464, "hash": "e78730bfb8595ace169a1f9ed1e72da575f2774377c193d7556d586454c3fc4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4a39f5cf323866c31568938bc4f4f9fac1a098a6e6b03e6488c5ffa6fe64dcb"} -2023-12-15T14:19:54.602Z INFO initializing dbft {"height": 465, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:54.602Z debug frostfs-node/morph.go:229 new block {"index": 464} -2023-12-15T14:19:55.225Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 464, "blockHeight": 464, "took": "6.426222ms"} -2023-12-15T14:19:55.602Z INFO sending PrepareRequest {"height": 465, "view": 0} -2023-12-15T14:19:55.602Z INFO sending Commit {"height": 465, "view": 0} -2023-12-15T14:19:55.602Z INFO approving block {"height": 465, "hash": "aeb00aa6865a88c27cf9ef8f989661ea186de3438e2650a0cd0dce7ac31c2dcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e78730bfb8595ace169a1f9ed1e72da575f2774377c193d7556d586454c3fc4d"} -2023-12-15T14:19:55.603Z INFO initializing dbft {"height": 466, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:55.603Z debug frostfs-node/morph.go:229 new block {"index": 465} -2023-12-15T14:19:56.223Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 465, "blockHeight": 465, "took": "3.809141ms"} -2023-12-15T14:19:56.603Z INFO sending PrepareRequest {"height": 466, "view": 0} -2023-12-15T14:19:56.603Z INFO sending Commit {"height": 466, "view": 0} -2023-12-15T14:19:56.603Z INFO approving block {"height": 466, "hash": "140bfc5705a39b173a72687d910a511875bbab80961bd9bd6570cf80b6ef7fcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aeb00aa6865a88c27cf9ef8f989661ea186de3438e2650a0cd0dce7ac31c2dcc"} -2023-12-15T14:19:56.604Z INFO initializing dbft {"height": 467, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:56.604Z debug frostfs-node/morph.go:229 new block {"index": 466} -2023-12-15T14:19:57.224Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 466, "blockHeight": 466, "took": "4.727545ms"} -2023-12-15T14:19:57.604Z INFO sending PrepareRequest {"height": 467, "view": 0} -2023-12-15T14:19:57.605Z INFO sending Commit {"height": 467, "view": 0} -2023-12-15T14:19:57.605Z INFO approving block {"height": 467, "hash": "7313a9d87f88d4726d1292ca3682b12b6a4658c5a522cc4234a81bf86aa76711", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "140bfc5705a39b173a72687d910a511875bbab80961bd9bd6570cf80b6ef7fcd"} -2023-12-15T14:19:57.606Z INFO initializing dbft {"height": 468, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:57.607Z debug frostfs-node/morph.go:229 new block {"index": 467} -2023-12-15T14:19:57.609Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:19:57.612Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:19:57.612Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:19:58.224Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 467, "blockHeight": 467, "took": "4.544828ms"} -2023-12-15T14:19:58.606Z INFO sending PrepareRequest {"height": 468, "view": 0} -2023-12-15T14:19:58.607Z INFO sending Commit {"height": 468, "view": 0} -2023-12-15T14:19:58.607Z INFO approving block {"height": 468, "hash": "4da2a162decdfb6df7ee34146d0f3c54935430061f0126beb64f0235a90ef4e5", "tx_count": 2, "merkle": "76390a7b6b40e09dfc282312630ba696a989b1a4e2e4fa67ddfbe9a5b23460ea", "prev": "7313a9d87f88d4726d1292ca3682b12b6a4658c5a522cc4234a81bf86aa76711"} -2023-12-15T14:19:58.608Z INFO runtime log {"tx": "312e67ba4f1d1f86ee503f55aab28ef8034822af90bdb67fda1b8e52781db82f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:19:58.608Z INFO runtime log {"tx": "312e67ba4f1d1f86ee503f55aab28ef8034822af90bdb67fda1b8e52781db82f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:19:58.609Z INFO initializing dbft {"height": 469, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:58.610Z debug frostfs-node/morph.go:229 new block {"index": 468} -2023-12-15T14:19:59.229Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 468, "blockHeight": 468, "took": "8.063543ms"} -2023-12-15T14:19:59.608Z INFO sending PrepareRequest {"height": 469, "view": 0} -2023-12-15T14:19:59.608Z INFO sending Commit {"height": 469, "view": 0} -2023-12-15T14:19:59.609Z INFO approving block {"height": 469, "hash": "ff45ace02df14cda934a621e2e5adfec52f718c2baa7d3df774fe073c593b2fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4da2a162decdfb6df7ee34146d0f3c54935430061f0126beb64f0235a90ef4e5"} -2023-12-15T14:19:59.610Z INFO initializing dbft {"height": 470, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:19:59.610Z debug frostfs-node/morph.go:229 new block {"index": 469} -2023-12-15T14:20:00.224Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 469, "blockHeight": 469, "took": "2.590825ms"} -2023-12-15T14:20:00.609Z INFO sending PrepareRequest {"height": 470, "view": 0} -2023-12-15T14:20:00.609Z INFO sending Commit {"height": 470, "view": 0} -2023-12-15T14:20:00.610Z INFO approving block {"height": 470, "hash": "b30d9dc397e9f532b830543e7211ad98f9e5b93ce6114ce1c431427f921ba509", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff45ace02df14cda934a621e2e5adfec52f718c2baa7d3df774fe073c593b2fb"} -2023-12-15T14:20:00.611Z INFO initializing dbft {"height": 471, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:00.611Z debug frostfs-node/morph.go:229 new block {"index": 470} -2023-12-15T14:20:01.225Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 470, "blockHeight": 470, "took": "2.817052ms"} -2023-12-15T14:20:01.611Z INFO sending PrepareRequest {"height": 471, "view": 0} -2023-12-15T14:20:01.611Z INFO sending Commit {"height": 471, "view": 0} -2023-12-15T14:20:01.611Z INFO approving block {"height": 471, "hash": "bfc0d2b3e8416ff169a7c2e6c668b77b0f20260f39b7f0a63ceb336d255e2361", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b30d9dc397e9f532b830543e7211ad98f9e5b93ce6114ce1c431427f921ba509"} -2023-12-15T14:20:01.613Z INFO initializing dbft {"height": 472, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:01.613Z debug frostfs-node/morph.go:229 new block {"index": 471} -2023-12-15T14:20:02.225Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 471, "blockHeight": 471, "took": "3.005058ms"} -2023-12-15T14:20:02.612Z INFO sending PrepareRequest {"height": 472, "view": 0} -2023-12-15T14:20:02.612Z INFO sending Commit {"height": 472, "view": 0} -2023-12-15T14:20:02.613Z INFO approving block {"height": 472, "hash": "c758354f7715ee50c40977d07e430cb1fe9cd31653dddf46c1917fdad7388508", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfc0d2b3e8416ff169a7c2e6c668b77b0f20260f39b7f0a63ceb336d255e2361"} -2023-12-15T14:20:02.613Z INFO initializing dbft {"height": 473, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:02.614Z debug frostfs-node/morph.go:229 new block {"index": 472} -2023-12-15T14:20:03.225Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 472, "blockHeight": 472, "took": "2.42258ms"} -2023-12-15T14:20:03.614Z INFO sending PrepareRequest {"height": 473, "view": 0} -2023-12-15T14:20:03.614Z INFO sending Commit {"height": 473, "view": 0} -2023-12-15T14:20:03.614Z INFO approving block {"height": 473, "hash": "642526204f79b514ba03392d8710607af8191b91ff2effacca475d0e2756bc91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c758354f7715ee50c40977d07e430cb1fe9cd31653dddf46c1917fdad7388508"} -2023-12-15T14:20:03.616Z INFO initializing dbft {"height": 474, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:03.616Z debug frostfs-node/morph.go:229 new block {"index": 473} -2023-12-15T14:20:04.226Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 473, "blockHeight": 473, "took": "3.09485ms"} -2023-12-15T14:20:04.615Z INFO sending PrepareRequest {"height": 474, "view": 0} -2023-12-15T14:20:04.615Z INFO sending Commit {"height": 474, "view": 0} -2023-12-15T14:20:04.615Z INFO approving block {"height": 474, "hash": "06d7d017a9ca1fcca93c03b6d07049210a720ec68cbe65daea22c33f276664a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "642526204f79b514ba03392d8710607af8191b91ff2effacca475d0e2756bc91"} -2023-12-15T14:20:04.616Z INFO initializing dbft {"height": 475, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:04.617Z debug frostfs-node/morph.go:229 new block {"index": 474} -2023-12-15T14:20:05.228Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 474, "blockHeight": 474, "took": "4.413658ms"} -2023-12-15T14:20:05.617Z INFO sending PrepareRequest {"height": 475, "view": 0} -2023-12-15T14:20:05.617Z INFO sending Commit {"height": 475, "view": 0} -2023-12-15T14:20:05.618Z INFO approving block {"height": 475, "hash": "dbf0e3f4d1cb1bf7a584c4f9f555ccc0838f1b47714666c6bd6c6bd47eaba9f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06d7d017a9ca1fcca93c03b6d07049210a720ec68cbe65daea22c33f276664a3"} -2023-12-15T14:20:05.619Z INFO initializing dbft {"height": 476, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:05.620Z debug frostfs-node/morph.go:229 new block {"index": 475} -2023-12-15T14:20:06.231Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 475, "blockHeight": 475, "took": "6.399353ms"} -2023-12-15T14:20:06.619Z INFO sending PrepareRequest {"height": 476, "view": 0} -2023-12-15T14:20:06.619Z INFO sending Commit {"height": 476, "view": 0} -2023-12-15T14:20:06.620Z INFO approving block {"height": 476, "hash": "8d913b9bcfa2b3a24065be2c0289e1cc80a08ea4fd71b7f42b5cee94dde1965e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbf0e3f4d1cb1bf7a584c4f9f555ccc0838f1b47714666c6bd6c6bd47eaba9f1"} -2023-12-15T14:20:06.620Z INFO initializing dbft {"height": 477, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:06.621Z debug frostfs-node/morph.go:229 new block {"index": 476} -2023-12-15T14:20:07.230Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 476, "blockHeight": 476, "took": "5.234892ms"} -2023-12-15T14:20:07.621Z INFO sending PrepareRequest {"height": 477, "view": 0} -2023-12-15T14:20:07.621Z INFO sending Commit {"height": 477, "view": 0} -2023-12-15T14:20:07.622Z INFO approving block {"height": 477, "hash": "00df33845d6b71605945ddceb210e5958991e6c601d0734f372a2766aab90135", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d913b9bcfa2b3a24065be2c0289e1cc80a08ea4fd71b7f42b5cee94dde1965e"} -2023-12-15T14:20:07.623Z INFO initializing dbft {"height": 478, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:07.623Z debug frostfs-node/morph.go:229 new block {"index": 477} -2023-12-15T14:20:08.232Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 477, "blockHeight": 477, "took": "6.664235ms"} -2023-12-15T14:20:08.622Z INFO sending PrepareRequest {"height": 478, "view": 0} -2023-12-15T14:20:08.623Z INFO sending Commit {"height": 478, "view": 0} -2023-12-15T14:20:08.623Z INFO approving block {"height": 478, "hash": "fad34bc4002bf0befafa8b709b41b5d0b37dcca9c2f641e36a7cb22dfcfe1243", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00df33845d6b71605945ddceb210e5958991e6c601d0734f372a2766aab90135"} -2023-12-15T14:20:08.624Z INFO initializing dbft {"height": 479, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:08.625Z debug frostfs-node/morph.go:229 new block {"index": 478} -2023-12-15T14:20:09.231Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 478, "blockHeight": 478, "took": "4.968471ms"} -2023-12-15T14:20:09.624Z INFO sending PrepareRequest {"height": 479, "view": 0} -2023-12-15T14:20:09.624Z INFO sending Commit {"height": 479, "view": 0} -2023-12-15T14:20:09.624Z INFO approving block {"height": 479, "hash": "51d202bff9eb5fa1882e9eb970def53cce1b2eb6c1295729faaf8d7ff6b845fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fad34bc4002bf0befafa8b709b41b5d0b37dcca9c2f641e36a7cb22dfcfe1243"} -2023-12-15T14:20:09.625Z INFO initializing dbft {"height": 480, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:09.626Z debug frostfs-node/morph.go:229 new block {"index": 479} -2023-12-15T14:20:10.230Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 479, "blockHeight": 479, "took": "3.428314ms"} -2023-12-15T14:20:10.626Z INFO sending PrepareRequest {"height": 480, "view": 0} -2023-12-15T14:20:10.626Z INFO sending Commit {"height": 480, "view": 0} -2023-12-15T14:20:10.627Z INFO approving block {"height": 480, "hash": "202560e3a47a5725b76b8a651c8de6a1a988fa0c79062e32cc3a3be079db231d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51d202bff9eb5fa1882e9eb970def53cce1b2eb6c1295729faaf8d7ff6b845fc"} -2023-12-15T14:20:10.628Z INFO initializing dbft {"height": 481, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:10.629Z debug frostfs-node/morph.go:229 new block {"index": 480} -2023-12-15T14:20:11.231Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 480, "blockHeight": 480, "took": "4.668096ms"} -2023-12-15T14:20:11.627Z INFO sending PrepareRequest {"height": 481, "view": 0} -2023-12-15T14:20:11.628Z INFO sending Commit {"height": 481, "view": 0} -2023-12-15T14:20:11.628Z INFO approving block {"height": 481, "hash": "fb3d7451a972c87874f4ef885c84a0d23104c9170453fdafba50072e493d5ab9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "202560e3a47a5725b76b8a651c8de6a1a988fa0c79062e32cc3a3be079db231d"} -2023-12-15T14:20:11.629Z INFO initializing dbft {"height": 482, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:11.630Z debug frostfs-node/morph.go:229 new block {"index": 481} -2023-12-15T14:20:11.633Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:20:11.635Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 2, "iteration": 3, "error": "no data for 2 iteration in 2 epoch for consumers's trusts"} -2023-12-15T14:20:11.635Z INFO runtime log {"tx": "5bca82663b058dfa51825824bd109f75a34623205b581a46f5bc369da8196d89", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:20:12.231Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 481, "blockHeight": 481, "took": "4.226543ms"} -2023-12-15T14:20:12.629Z INFO sending PrepareRequest {"height": 482, "view": 0} -2023-12-15T14:20:12.629Z INFO sending Commit {"height": 482, "view": 0} -2023-12-15T14:20:12.629Z INFO approving block {"height": 482, "hash": "21407ccf986ba2b0c281865520afe57a26acd116dc693564d75c8fbc18e2f412", "tx_count": 1, "merkle": "ad80870d18713f3ed1bad8303af536cbfccd14b75f70df7e83e7dc84659fae8a", "prev": "fb3d7451a972c87874f4ef885c84a0d23104c9170453fdafba50072e493d5ab9"} -2023-12-15T14:20:12.630Z INFO runtime log {"tx": "8aae9f6584dce7837edf705fb714cdfccb36f53a30d8bad13e3f71180d8780ad", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:20:12.632Z INFO initializing dbft {"height": 483, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:12.632Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 4} -2023-12-15T14:20:12.633Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 4} -2023-12-15T14:20:12.633Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:20:12.633Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T14:20:12.633Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:20:12.633Z debug controller/calls.go:95 starting to report local trust values {"epoch": 3} -2023-12-15T14:20:12.633Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 4} -2023-12-15T14:20:12.633Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 3} -2023-12-15T14:20:12.633Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 4} -2023-12-15T14:20:12.633Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 4} -2023-12-15T14:20:12.633Z debug frostfs-node/morph.go:229 new block {"index": 482} -2023-12-15T14:20:12.637Z debug controller/calls.go:146 reporting successfully finished {"epoch": 3} -2023-12-15T14:20:12.637Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 3} -2023-12-15T14:20:12.638Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:20:12.641Z INFO runtime log {"tx": "e49c2affee50b3b15df5c9a75c8797b9a531100df73297ef9ccfaf8d01417d42", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:20:12.642Z info client/notary.go:214 notary deposit invoke {"amount": 1448678035, "expire_at": 4294967295, "vub": 485, "tx_hash": "23fa4e7a2562f07d555094659babed991d438fd1ae1f54d218e5117bf06ebb66"} -2023-12-15T14:20:12.646Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 600, "fallback_valid_for": 40, "tx_hash": "d162f9f51bc7eb952d713f7717a6fc91819d4356fa3ddb175612081f1274b69e"} -2023-12-15T14:20:12.648Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T14:20:12.650Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:20:12.651Z info audit/handlers.go:13 new round of audit {"epoch": 4} -2023-12-15T14:20:12.651Z info settlement/calls.go:26 new audit settlement event {"epoch": 4} -2023-12-15T14:20:12.651Z info settlement/handlers.go:14 process audit settlements {"epoch": 4} -2023-12-15T14:20:12.651Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 4} -2023-12-15T14:20:12.652Z info settlement/handlers.go:18 audit processing finished {"epoch": 4} -2023-12-15T14:20:12.653Z info audit/process.go:39 select containers for audit {"epoch": 4, "amount": 0} -2023-12-15T14:20:12.655Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 485, "tx_hash": "43406255734929453541d198faab611a961b04b252ddd6a840e8ee54501a512d"} -2023-12-15T14:20:13.234Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 482, "blockHeight": 482, "took": "6.765265ms"} -2023-12-15T14:20:13.630Z INFO sending PrepareRequest {"height": 483, "view": 0} -2023-12-15T14:20:13.630Z INFO sending Commit {"height": 483, "view": 0} -2023-12-15T14:20:13.630Z INFO approving block {"height": 483, "hash": "f7ca39f00fa2853bb9428640aad622957de016677f5ab9957d1965251e86fd6c", "tx_count": 3, "merkle": "814b3742cfcb5488ed7e6eba54f15e5abe7468ab46e69e68a595c00665dbe470", "prev": "21407ccf986ba2b0c281865520afe57a26acd116dc693564d75c8fbc18e2f412"} -2023-12-15T14:20:13.631Z INFO runtime log {"tx": "f40906670b542b1af67cbfc4f2b8071136fc7ae885ec564e25158029d463acd5", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:20:13.632Z INFO initializing dbft {"height": 484, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:13.632Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 3} -2023-12-15T14:20:13.633Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 3} -2023-12-15T14:20:13.633Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 3} -2023-12-15T14:20:13.633Z debug frostfs-node/morph.go:229 new block {"index": 483} -2023-12-15T14:20:14.234Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 483, "blockHeight": 483, "took": "6.338545ms"} -2023-12-15T14:20:14.631Z INFO sending PrepareRequest {"height": 484, "view": 0} -2023-12-15T14:20:14.632Z INFO sending Commit {"height": 484, "view": 0} -2023-12-15T14:20:14.632Z INFO approving block {"height": 484, "hash": "fa1d89e5d066ffe1c2ed85902cab9e45ccc67def3fe7096fecc548ca88100e68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7ca39f00fa2853bb9428640aad622957de016677f5ab9957d1965251e86fd6c"} -2023-12-15T14:20:14.633Z INFO initializing dbft {"height": 485, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:14.633Z debug frostfs-node/morph.go:229 new block {"index": 484} -2023-12-15T14:20:15.232Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 484, "blockHeight": 484, "took": "3.760529ms"} -2023-12-15T14:20:15.633Z INFO sending PrepareRequest {"height": 485, "view": 0} -2023-12-15T14:20:15.633Z INFO sending Commit {"height": 485, "view": 0} -2023-12-15T14:20:15.634Z INFO approving block {"height": 485, "hash": "86731d0fccb5d0e8479e6a87c84f8643da8f34440139acb0d50807a23d081682", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa1d89e5d066ffe1c2ed85902cab9e45ccc67def3fe7096fecc548ca88100e68"} -2023-12-15T14:20:15.636Z INFO initializing dbft {"height": 486, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:15.636Z debug frostfs-node/morph.go:229 new block {"index": 485} -2023-12-15T14:20:16.235Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 485, "blockHeight": 485, "took": "5.990072ms"} -2023-12-15T14:20:16.634Z INFO sending PrepareRequest {"height": 486, "view": 0} -2023-12-15T14:20:16.635Z INFO sending Commit {"height": 486, "view": 0} -2023-12-15T14:20:16.635Z INFO approving block {"height": 486, "hash": "22626b19818cf1b332ae252ac2982ddfe9d76fbf86df7d04cc617f605dc2846f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86731d0fccb5d0e8479e6a87c84f8643da8f34440139acb0d50807a23d081682"} -2023-12-15T14:20:16.636Z INFO initializing dbft {"height": 487, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:16.636Z debug frostfs-node/morph.go:229 new block {"index": 486} -2023-12-15T14:20:17.233Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 486, "blockHeight": 486, "took": "3.703084ms"} -2023-12-15T14:20:17.636Z INFO sending PrepareRequest {"height": 487, "view": 0} -2023-12-15T14:20:17.637Z INFO sending Commit {"height": 487, "view": 0} -2023-12-15T14:20:17.637Z INFO approving block {"height": 487, "hash": "94908f9864d8a2f4e818ae0d0d5d569073c54fd3f1c7f729e73e41b15e7967b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22626b19818cf1b332ae252ac2982ddfe9d76fbf86df7d04cc617f605dc2846f"} -2023-12-15T14:20:17.638Z INFO initializing dbft {"height": 488, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:17.639Z debug frostfs-node/morph.go:229 new block {"index": 487} -2023-12-15T14:20:18.233Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 487, "blockHeight": 487, "took": "3.30617ms"} -2023-12-15T14:20:18.638Z INFO sending PrepareRequest {"height": 488, "view": 0} -2023-12-15T14:20:18.638Z INFO sending Commit {"height": 488, "view": 0} -2023-12-15T14:20:18.638Z INFO approving block {"height": 488, "hash": "4d93c7ffd902e8315bff3bbca0abbe1be3a81421a0fdc6da86497578a16dcadf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94908f9864d8a2f4e818ae0d0d5d569073c54fd3f1c7f729e73e41b15e7967b0"} -2023-12-15T14:20:18.639Z INFO initializing dbft {"height": 489, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:18.640Z debug frostfs-node/morph.go:229 new block {"index": 488} -2023-12-15T14:20:19.234Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 488, "blockHeight": 488, "took": "3.920322ms"} -2023-12-15T14:20:19.640Z INFO sending PrepareRequest {"height": 489, "view": 0} -2023-12-15T14:20:19.640Z INFO sending Commit {"height": 489, "view": 0} -2023-12-15T14:20:19.640Z INFO approving block {"height": 489, "hash": "72858944c30825d355869fb3a8eedbff7d337ac435b9d8d125fd725a7f818dd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d93c7ffd902e8315bff3bbca0abbe1be3a81421a0fdc6da86497578a16dcadf"} -2023-12-15T14:20:19.642Z INFO initializing dbft {"height": 490, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:19.643Z debug frostfs-node/morph.go:229 new block {"index": 489} -2023-12-15T14:20:20.234Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 489, "blockHeight": 489, "took": "2.936162ms"} -2023-12-15T14:20:20.642Z INFO sending PrepareRequest {"height": 490, "view": 0} -2023-12-15T14:20:20.642Z INFO sending Commit {"height": 490, "view": 0} -2023-12-15T14:20:20.642Z INFO approving block {"height": 490, "hash": "f9b69d2dea00f2f58f07e0098fdddc4ddd3378bcbf7b6629864b614c216d026e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72858944c30825d355869fb3a8eedbff7d337ac435b9d8d125fd725a7f818dd4"} -2023-12-15T14:20:20.643Z INFO initializing dbft {"height": 491, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:20.643Z debug frostfs-node/morph.go:229 new block {"index": 490} -2023-12-15T14:20:21.234Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 490, "blockHeight": 490, "took": "2.8226ms"} -2023-12-15T14:20:21.643Z INFO sending PrepareRequest {"height": 491, "view": 0} -2023-12-15T14:20:21.643Z INFO sending Commit {"height": 491, "view": 0} -2023-12-15T14:20:21.643Z INFO approving block {"height": 491, "hash": "30961924ac9743595fefbcdbae457db2c1f260d1226dee5f6c0b0f2ba958a03a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9b69d2dea00f2f58f07e0098fdddc4ddd3378bcbf7b6629864b614c216d026e"} -2023-12-15T14:20:21.644Z INFO initializing dbft {"height": 492, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:21.645Z debug frostfs-node/morph.go:229 new block {"index": 491} -2023-12-15T14:20:22.236Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 491, "blockHeight": 491, "took": "3.933701ms"} -2023-12-15T14:20:22.645Z INFO sending PrepareRequest {"height": 492, "view": 0} -2023-12-15T14:20:22.645Z INFO sending Commit {"height": 492, "view": 0} -2023-12-15T14:20:22.645Z INFO approving block {"height": 492, "hash": "d802aaad4960bc233acc6e8d8beee7bc8ec37201e6d2c1c26f9f4c6bb5deb14b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30961924ac9743595fefbcdbae457db2c1f260d1226dee5f6c0b0f2ba958a03a"} -2023-12-15T14:20:22.647Z INFO initializing dbft {"height": 493, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:22.647Z debug frostfs-node/morph.go:229 new block {"index": 492} -2023-12-15T14:20:23.237Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 492, "blockHeight": 492, "took": "4.740522ms"} -2023-12-15T14:20:23.646Z INFO sending PrepareRequest {"height": 493, "view": 0} -2023-12-15T14:20:23.646Z INFO sending Commit {"height": 493, "view": 0} -2023-12-15T14:20:23.646Z INFO approving block {"height": 493, "hash": "1c78b2bb0ca7466892971434da2b5b64206eeb3c3cf7814feb29c0859a83215f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d802aaad4960bc233acc6e8d8beee7bc8ec37201e6d2c1c26f9f4c6bb5deb14b"} -2023-12-15T14:20:23.647Z INFO initializing dbft {"height": 494, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:23.648Z debug frostfs-node/morph.go:229 new block {"index": 493} -2023-12-15T14:20:24.237Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 493, "blockHeight": 493, "took": "3.954172ms"} -2023-12-15T14:20:24.648Z INFO sending PrepareRequest {"height": 494, "view": 0} -2023-12-15T14:20:24.648Z INFO sending Commit {"height": 494, "view": 0} -2023-12-15T14:20:24.649Z INFO approving block {"height": 494, "hash": "c9dd2e9bda2acf08d7e14e74518ec7bc9491d41d84469ac52f583cd72e43fac9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c78b2bb0ca7466892971434da2b5b64206eeb3c3cf7814feb29c0859a83215f"} -2023-12-15T14:20:24.650Z INFO initializing dbft {"height": 495, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:24.651Z debug frostfs-node/morph.go:229 new block {"index": 494} -2023-12-15T14:20:25.237Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 494, "blockHeight": 494, "took": "4.20123ms"} -2023-12-15T14:20:25.649Z INFO sending PrepareRequest {"height": 495, "view": 0} -2023-12-15T14:20:25.649Z INFO sending Commit {"height": 495, "view": 0} -2023-12-15T14:20:25.650Z INFO approving block {"height": 495, "hash": "c32eb96f56d65797f5d7575488e4190adf5df93e7ac97f2e01b3dd95aee7dbd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9dd2e9bda2acf08d7e14e74518ec7bc9491d41d84469ac52f583cd72e43fac9"} -2023-12-15T14:20:25.650Z INFO initializing dbft {"height": 496, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:25.651Z debug frostfs-node/morph.go:229 new block {"index": 495} -2023-12-15T14:20:26.238Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 495, "blockHeight": 495, "took": "3.989443ms"} -2023-12-15T14:20:26.650Z INFO sending PrepareRequest {"height": 496, "view": 0} -2023-12-15T14:20:26.651Z INFO sending Commit {"height": 496, "view": 0} -2023-12-15T14:20:26.651Z INFO approving block {"height": 496, "hash": "d860c77b1ccc1e803fb926a8eefb47da9dd72d33b3cef57abe191e8db542d2c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c32eb96f56d65797f5d7575488e4190adf5df93e7ac97f2e01b3dd95aee7dbd4"} -2023-12-15T14:20:26.652Z INFO initializing dbft {"height": 497, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:26.652Z debug frostfs-node/morph.go:229 new block {"index": 496} -2023-12-15T14:20:27.236Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 496, "blockHeight": 496, "took": "2.561826ms"} -2023-12-15T14:20:27.652Z INFO sending PrepareRequest {"height": 497, "view": 0} -2023-12-15T14:20:27.653Z INFO sending Commit {"height": 497, "view": 0} -2023-12-15T14:20:27.653Z INFO approving block {"height": 497, "hash": "7726728a3589340acb8046995f442705be6758afcbcf4ad05793f2b68237f6bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d860c77b1ccc1e803fb926a8eefb47da9dd72d33b3cef57abe191e8db542d2c0"} -2023-12-15T14:20:27.655Z INFO initializing dbft {"height": 498, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:27.655Z debug frostfs-node/morph.go:229 new block {"index": 497} -2023-12-15T14:20:28.238Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 497, "blockHeight": 497, "took": "3.558845ms"} -2023-12-15T14:20:28.654Z INFO sending PrepareRequest {"height": 498, "view": 0} -2023-12-15T14:20:28.654Z INFO sending Commit {"height": 498, "view": 0} -2023-12-15T14:20:28.654Z INFO approving block {"height": 498, "hash": "f26f634d35568e47d1a45d7926b60b6d322de3e22e8ca5849fcfa9e039afdcf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7726728a3589340acb8046995f442705be6758afcbcf4ad05793f2b68237f6bd"} -2023-12-15T14:20:28.655Z INFO initializing dbft {"height": 499, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:28.655Z debug frostfs-node/morph.go:229 new block {"index": 498} -2023-12-15T14:20:29.239Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 498, "blockHeight": 498, "took": "3.981456ms"} -2023-12-15T14:20:29.655Z INFO sending PrepareRequest {"height": 499, "view": 0} -2023-12-15T14:20:29.656Z INFO sending Commit {"height": 499, "view": 0} -2023-12-15T14:20:29.656Z INFO approving block {"height": 499, "hash": "85d2ecead9330def1c4f8ebf6ba096108d9f10d934853919a8726fb1fd47d884", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f26f634d35568e47d1a45d7926b60b6d322de3e22e8ca5849fcfa9e039afdcf9"} -2023-12-15T14:20:29.657Z INFO initializing dbft {"height": 500, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:29.658Z debug frostfs-node/morph.go:229 new block {"index": 499} -2023-12-15T14:20:30.240Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 499, "blockHeight": 499, "took": "3.274489ms"} -2023-12-15T14:20:30.657Z INFO sending PrepareRequest {"height": 500, "view": 0} -2023-12-15T14:20:30.657Z INFO sending Commit {"height": 500, "view": 0} -2023-12-15T14:20:30.657Z INFO approving block {"height": 500, "hash": "ef3e77f71ce4ed2c5dfab9b47c52b7d84891ec642ffd2adcd4fb51afd5b2b4cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85d2ecead9330def1c4f8ebf6ba096108d9f10d934853919a8726fb1fd47d884"} -2023-12-15T14:20:30.658Z INFO initializing dbft {"height": 501, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:30.658Z debug frostfs-node/morph.go:229 new block {"index": 500} -2023-12-15T14:20:31.240Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 500, "blockHeight": 500, "took": "3.484502ms"} -2023-12-15T14:20:31.658Z INFO sending PrepareRequest {"height": 501, "view": 0} -2023-12-15T14:20:31.658Z INFO sending Commit {"height": 501, "view": 0} -2023-12-15T14:20:31.659Z INFO approving block {"height": 501, "hash": "ea6ef1c0e4f21890365600838be78f162c3c4cf3428937eac720ef1ff8ab306d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef3e77f71ce4ed2c5dfab9b47c52b7d84891ec642ffd2adcd4fb51afd5b2b4cc"} -2023-12-15T14:20:31.660Z INFO initializing dbft {"height": 502, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:31.661Z debug frostfs-node/morph.go:229 new block {"index": 501} -2023-12-15T14:20:32.242Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 501, "blockHeight": 501, "took": "5.044847ms"} -2023-12-15T14:20:32.660Z INFO sending PrepareRequest {"height": 502, "view": 0} -2023-12-15T14:20:32.660Z INFO sending Commit {"height": 502, "view": 0} -2023-12-15T14:20:32.660Z INFO approving block {"height": 502, "hash": "2dea5718ab8b5c4790ab03b04db2c245be5e50b9622f6dd0f67cc06540cf808f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea6ef1c0e4f21890365600838be78f162c3c4cf3428937eac720ef1ff8ab306d"} -2023-12-15T14:20:32.662Z INFO initializing dbft {"height": 503, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:32.663Z debug frostfs-node/morph.go:229 new block {"index": 502} -2023-12-15T14:20:33.243Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 502, "blockHeight": 502, "took": "4.831847ms"} -2023-12-15T14:20:33.661Z INFO sending PrepareRequest {"height": 503, "view": 0} -2023-12-15T14:20:33.661Z INFO sending Commit {"height": 503, "view": 0} -2023-12-15T14:20:33.661Z INFO approving block {"height": 503, "hash": "8e6bd393b70639d1cfe295699ade5086c6b59d5f8e8067cd9591a818bae4ebf6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2dea5718ab8b5c4790ab03b04db2c245be5e50b9622f6dd0f67cc06540cf808f"} -2023-12-15T14:20:33.662Z INFO initializing dbft {"height": 504, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:33.663Z debug frostfs-node/morph.go:229 new block {"index": 503} -2023-12-15T14:20:34.242Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 503, "blockHeight": 503, "took": "3.786971ms"} -2023-12-15T14:20:34.663Z INFO sending PrepareRequest {"height": 504, "view": 0} -2023-12-15T14:20:34.663Z INFO sending Commit {"height": 504, "view": 0} -2023-12-15T14:20:34.663Z INFO approving block {"height": 504, "hash": "c0d4b1728db0efac3698bdea8fc354cdc9434035555de1bb50c1dfa2963f9240", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e6bd393b70639d1cfe295699ade5086c6b59d5f8e8067cd9591a818bae4ebf6"} -2023-12-15T14:20:34.665Z INFO initializing dbft {"height": 505, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:34.665Z debug frostfs-node/morph.go:229 new block {"index": 504} -2023-12-15T14:20:35.243Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 504, "blockHeight": 504, "took": "3.5157ms"} -2023-12-15T14:20:35.664Z INFO sending PrepareRequest {"height": 505, "view": 0} -2023-12-15T14:20:35.665Z INFO sending Commit {"height": 505, "view": 0} -2023-12-15T14:20:35.665Z INFO approving block {"height": 505, "hash": "21b0db4d8131b06486cbcc1767db40b988f0b990c80ff532ecc4f74ed6b7a474", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0d4b1728db0efac3698bdea8fc354cdc9434035555de1bb50c1dfa2963f9240"} -2023-12-15T14:20:35.666Z INFO initializing dbft {"height": 506, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:35.667Z debug frostfs-node/morph.go:229 new block {"index": 505} -2023-12-15T14:20:36.244Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 505, "blockHeight": 505, "took": "4.195239ms"} -2023-12-15T14:20:36.666Z INFO sending PrepareRequest {"height": 506, "view": 0} -2023-12-15T14:20:36.666Z INFO sending Commit {"height": 506, "view": 0} -2023-12-15T14:20:36.667Z INFO approving block {"height": 506, "hash": "c8a3d238e1034277746c08e9e76a6cfb9b96576136528d98a3b111168b6c9204", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21b0db4d8131b06486cbcc1767db40b988f0b990c80ff532ecc4f74ed6b7a474"} -2023-12-15T14:20:36.669Z INFO initializing dbft {"height": 507, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:36.670Z debug frostfs-node/morph.go:229 new block {"index": 506} -2023-12-15T14:20:37.244Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 506, "blockHeight": 506, "took": "3.774979ms"} -2023-12-15T14:20:37.668Z INFO sending PrepareRequest {"height": 507, "view": 0} -2023-12-15T14:20:37.668Z INFO sending Commit {"height": 507, "view": 0} -2023-12-15T14:20:37.668Z INFO approving block {"height": 507, "hash": "47e5f79ffcf1737086fdc1044bb5650bccc2f8f12e7da9fb285185eb35adbcd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8a3d238e1034277746c08e9e76a6cfb9b96576136528d98a3b111168b6c9204"} -2023-12-15T14:20:37.670Z INFO initializing dbft {"height": 508, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:37.671Z debug frostfs-node/morph.go:229 new block {"index": 507} -2023-12-15T14:20:38.244Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 507, "blockHeight": 507, "took": "2.714355ms"} -2023-12-15T14:20:38.670Z INFO sending PrepareRequest {"height": 508, "view": 0} -2023-12-15T14:20:38.670Z INFO sending Commit {"height": 508, "view": 0} -2023-12-15T14:20:38.670Z INFO approving block {"height": 508, "hash": "a97163bf86fb74d6e213e4fe5faebae6e05980ad88ed1a5bbde11a2d1a8783c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47e5f79ffcf1737086fdc1044bb5650bccc2f8f12e7da9fb285185eb35adbcd5"} -2023-12-15T14:20:38.671Z INFO initializing dbft {"height": 509, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:38.672Z debug frostfs-node/morph.go:229 new block {"index": 508} -2023-12-15T14:20:39.246Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 508, "blockHeight": 508, "took": "4.121301ms"} -2023-12-15T14:20:39.671Z INFO sending PrepareRequest {"height": 509, "view": 0} -2023-12-15T14:20:39.671Z INFO sending Commit {"height": 509, "view": 0} -2023-12-15T14:20:39.671Z INFO approving block {"height": 509, "hash": "fe00cba27dfa5a4b65a7da2f8a671c349d9ecedc56d7790712407de273c1b353", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a97163bf86fb74d6e213e4fe5faebae6e05980ad88ed1a5bbde11a2d1a8783c3"} -2023-12-15T14:20:39.672Z INFO initializing dbft {"height": 510, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:39.673Z debug frostfs-node/morph.go:229 new block {"index": 509} -2023-12-15T14:20:40.249Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 509, "blockHeight": 509, "took": "6.531101ms"} -2023-12-15T14:20:40.672Z INFO sending PrepareRequest {"height": 510, "view": 0} -2023-12-15T14:20:40.672Z INFO sending Commit {"height": 510, "view": 0} -2023-12-15T14:20:40.673Z INFO approving block {"height": 510, "hash": "f0ba44054c383de6678e9ad2282327c7436fbd1685b5570940872d88876c2f66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe00cba27dfa5a4b65a7da2f8a671c349d9ecedc56d7790712407de273c1b353"} -2023-12-15T14:20:40.674Z INFO initializing dbft {"height": 511, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:40.675Z debug frostfs-node/morph.go:229 new block {"index": 510} -2023-12-15T14:20:41.248Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 510, "blockHeight": 510, "took": "5.327745ms"} -2023-12-15T14:20:41.673Z INFO sending PrepareRequest {"height": 511, "view": 0} -2023-12-15T14:20:41.674Z INFO sending Commit {"height": 511, "view": 0} -2023-12-15T14:20:41.674Z INFO approving block {"height": 511, "hash": "f9e2a789b253bf8013ec042d59607ca6e6fc1776b681221ed2bdf14e8e9e3414", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0ba44054c383de6678e9ad2282327c7436fbd1685b5570940872d88876c2f66"} -2023-12-15T14:20:41.675Z INFO initializing dbft {"height": 512, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:41.676Z debug frostfs-node/morph.go:229 new block {"index": 511} -2023-12-15T14:20:42.253Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 511, "blockHeight": 511, "took": "8.826226ms"} -2023-12-15T14:20:42.675Z INFO sending PrepareRequest {"height": 512, "view": 0} -2023-12-15T14:20:42.676Z INFO sending Commit {"height": 512, "view": 0} -2023-12-15T14:20:42.676Z INFO approving block {"height": 512, "hash": "0fcd6cbccf51e61eb5328d9864366c9512579c31fc48c934349d5fb53ea39f38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9e2a789b253bf8013ec042d59607ca6e6fc1776b681221ed2bdf14e8e9e3414"} -2023-12-15T14:20:42.679Z INFO initializing dbft {"height": 513, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:42.680Z debug frostfs-node/morph.go:229 new block {"index": 512} -2023-12-15T14:20:43.250Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 512, "blockHeight": 512, "took": "5.632984ms"} -2023-12-15T14:20:43.677Z INFO sending PrepareRequest {"height": 513, "view": 0} -2023-12-15T14:20:43.678Z INFO sending Commit {"height": 513, "view": 0} -2023-12-15T14:20:43.678Z INFO approving block {"height": 513, "hash": "84119aef6a6fca0d2efa397a2e12e6703b205be7c1c9e63529eb03ecb8dc17ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fcd6cbccf51e61eb5328d9864366c9512579c31fc48c934349d5fb53ea39f38"} -2023-12-15T14:20:43.680Z INFO initializing dbft {"height": 514, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:43.680Z debug frostfs-node/morph.go:229 new block {"index": 513} -2023-12-15T14:20:44.254Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 513, "blockHeight": 513, "took": "8.56043ms"} -2023-12-15T14:20:44.679Z INFO sending PrepareRequest {"height": 514, "view": 0} -2023-12-15T14:20:44.679Z INFO sending Commit {"height": 514, "view": 0} -2023-12-15T14:20:44.680Z INFO approving block {"height": 514, "hash": "786f730b62f72a5cfb1f3b09ebed6d483586408e25263bbbf3561dd69588ba13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84119aef6a6fca0d2efa397a2e12e6703b205be7c1c9e63529eb03ecb8dc17ee"} -2023-12-15T14:20:44.682Z INFO initializing dbft {"height": 515, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:44.683Z debug frostfs-node/morph.go:229 new block {"index": 514} -2023-12-15T14:20:45.253Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 514, "blockHeight": 514, "took": "6.428547ms"} -2023-12-15T14:20:45.681Z INFO sending PrepareRequest {"height": 515, "view": 0} -2023-12-15T14:20:45.682Z INFO sending Commit {"height": 515, "view": 0} -2023-12-15T14:20:45.682Z INFO approving block {"height": 515, "hash": "e27e426147e1d707d65d27536764270532053b259209c2edd71a3797888eaf4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "786f730b62f72a5cfb1f3b09ebed6d483586408e25263bbbf3561dd69588ba13"} -2023-12-15T14:20:45.684Z INFO initializing dbft {"height": 516, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:45.684Z debug frostfs-node/morph.go:229 new block {"index": 515} -2023-12-15T14:20:46.252Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 515, "blockHeight": 515, "took": "4.000548ms"} -2023-12-15T14:20:46.683Z INFO sending PrepareRequest {"height": 516, "view": 0} -2023-12-15T14:20:46.683Z INFO sending Commit {"height": 516, "view": 0} -2023-12-15T14:20:46.683Z INFO approving block {"height": 516, "hash": "7837a585492c0cdb9a0db07e4d318f8bed0d3eb8f50fa80647156374402cb7ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e27e426147e1d707d65d27536764270532053b259209c2edd71a3797888eaf4d"} -2023-12-15T14:20:46.685Z INFO initializing dbft {"height": 517, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:46.686Z debug frostfs-node/morph.go:229 new block {"index": 516} -2023-12-15T14:20:47.252Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 516, "blockHeight": 516, "took": "3.350519ms"} -2023-12-15T14:20:47.684Z INFO sending PrepareRequest {"height": 517, "view": 0} -2023-12-15T14:20:47.685Z INFO sending Commit {"height": 517, "view": 0} -2023-12-15T14:20:47.685Z INFO approving block {"height": 517, "hash": "84764bc5d6831d149dc254d0756c3946c0ee85885b91bca414a9f8764e305350", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7837a585492c0cdb9a0db07e4d318f8bed0d3eb8f50fa80647156374402cb7ee"} -2023-12-15T14:20:47.687Z INFO initializing dbft {"height": 518, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:47.687Z debug frostfs-node/morph.go:229 new block {"index": 517} -2023-12-15T14:20:47.689Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:20:47.691Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:20:47.691Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:20:48.253Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 517, "blockHeight": 517, "took": "3.971756ms"} -2023-12-15T14:20:48.686Z INFO sending PrepareRequest {"height": 518, "view": 0} -2023-12-15T14:20:48.686Z INFO sending Commit {"height": 518, "view": 0} -2023-12-15T14:20:48.687Z INFO approving block {"height": 518, "hash": "f5929521d3a90fe32a9fd05277b14efccd2f7476a7edbb8f72a6806086da8441", "tx_count": 2, "merkle": "a0becf95e10d44ea7c7110ba0301bd023d2b6bca516a8b11310731a40ab10429", "prev": "84764bc5d6831d149dc254d0756c3946c0ee85885b91bca414a9f8764e305350"} -2023-12-15T14:20:48.687Z INFO runtime log {"tx": "18768b9b3d5a08f1bda725e2dc4f4382526951bdb42ff054f4a9492da5c3ffb0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:20:48.687Z INFO runtime log {"tx": "18768b9b3d5a08f1bda725e2dc4f4382526951bdb42ff054f4a9492da5c3ffb0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:20:48.688Z INFO initializing dbft {"height": 519, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:48.689Z debug frostfs-node/morph.go:229 new block {"index": 518} -2023-12-15T14:20:49.257Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 518, "blockHeight": 518, "took": "6.985863ms"} -2023-12-15T14:20:49.688Z INFO sending PrepareRequest {"height": 519, "view": 0} -2023-12-15T14:20:49.688Z INFO sending Commit {"height": 519, "view": 0} -2023-12-15T14:20:49.688Z INFO approving block {"height": 519, "hash": "634f8a776d9a758e5d277612900ccde8009507d2257f4fa5853fd7a1063d289a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5929521d3a90fe32a9fd05277b14efccd2f7476a7edbb8f72a6806086da8441"} -2023-12-15T14:20:49.689Z INFO initializing dbft {"height": 520, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:49.690Z debug frostfs-node/morph.go:229 new block {"index": 519} -2023-12-15T14:20:50.255Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 519, "blockHeight": 519, "took": "4.649692ms"} -2023-12-15T14:20:50.690Z INFO sending PrepareRequest {"height": 520, "view": 0} -2023-12-15T14:20:50.690Z INFO sending Commit {"height": 520, "view": 0} -2023-12-15T14:20:50.690Z INFO approving block {"height": 520, "hash": "bea7ac1a66f911340f4e664dda12a5a223242a349789658df3000f18d69bbcbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "634f8a776d9a758e5d277612900ccde8009507d2257f4fa5853fd7a1063d289a"} -2023-12-15T14:20:50.692Z INFO initializing dbft {"height": 521, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:50.692Z debug frostfs-node/morph.go:229 new block {"index": 520} -2023-12-15T14:20:51.257Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 520, "blockHeight": 520, "took": "4.655452ms"} -2023-12-15T14:20:51.691Z INFO sending PrepareRequest {"height": 521, "view": 0} -2023-12-15T14:20:51.691Z INFO sending Commit {"height": 521, "view": 0} -2023-12-15T14:20:51.692Z INFO approving block {"height": 521, "hash": "00d7018f97b4bc9ab1ae40777c65845fe90b4842c66cb741352c3720c77ffdce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bea7ac1a66f911340f4e664dda12a5a223242a349789658df3000f18d69bbcbe"} -2023-12-15T14:20:51.693Z INFO initializing dbft {"height": 522, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:51.693Z debug frostfs-node/morph.go:229 new block {"index": 521} -2023-12-15T14:20:52.257Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 521, "blockHeight": 521, "took": "4.625632ms"} -2023-12-15T14:20:52.693Z INFO sending PrepareRequest {"height": 522, "view": 0} -2023-12-15T14:20:52.693Z INFO sending Commit {"height": 522, "view": 0} -2023-12-15T14:20:52.693Z INFO approving block {"height": 522, "hash": "0e5667e85da8f72203702e20fea29978ed7fd5c488582143853cf3f9833f5f03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00d7018f97b4bc9ab1ae40777c65845fe90b4842c66cb741352c3720c77ffdce"} -2023-12-15T14:20:52.695Z INFO initializing dbft {"height": 523, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:52.696Z debug frostfs-node/morph.go:229 new block {"index": 522} -2023-12-15T14:20:53.256Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 522, "blockHeight": 522, "took": "3.427486ms"} -2023-12-15T14:20:53.694Z INFO sending PrepareRequest {"height": 523, "view": 0} -2023-12-15T14:20:53.694Z INFO sending Commit {"height": 523, "view": 0} -2023-12-15T14:20:53.695Z INFO approving block {"height": 523, "hash": "823ad05105c34e9abe335da2be5eb925b996aa6000cdfea0d77b5be1e3c92d0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e5667e85da8f72203702e20fea29978ed7fd5c488582143853cf3f9833f5f03"} -2023-12-15T14:20:53.697Z INFO initializing dbft {"height": 524, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:53.698Z debug frostfs-node/morph.go:229 new block {"index": 523} -2023-12-15T14:20:54.258Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 523, "blockHeight": 523, "took": "4.778049ms"} -2023-12-15T14:20:54.697Z INFO sending PrepareRequest {"height": 524, "view": 0} -2023-12-15T14:20:54.697Z INFO sending Commit {"height": 524, "view": 0} -2023-12-15T14:20:54.697Z INFO approving block {"height": 524, "hash": "c8ed94ffcfed759c23e980383c882d045bfc4f157f345885ee5f5b65867b3996", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "823ad05105c34e9abe335da2be5eb925b996aa6000cdfea0d77b5be1e3c92d0b"} -2023-12-15T14:20:54.698Z INFO initializing dbft {"height": 525, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:54.699Z debug frostfs-node/morph.go:229 new block {"index": 524} -2023-12-15T14:20:55.259Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 524, "blockHeight": 524, "took": "4.791457ms"} -2023-12-15T14:20:55.698Z INFO sending PrepareRequest {"height": 525, "view": 0} -2023-12-15T14:20:55.699Z INFO sending Commit {"height": 525, "view": 0} -2023-12-15T14:20:55.699Z INFO approving block {"height": 525, "hash": "1065b2074e5fa8a2a8ded046a8104bd125410dc407c6b231dd0d1a92f9b7e61b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8ed94ffcfed759c23e980383c882d045bfc4f157f345885ee5f5b65867b3996"} -2023-12-15T14:20:55.701Z INFO initializing dbft {"height": 526, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:55.702Z debug frostfs-node/morph.go:229 new block {"index": 525} -2023-12-15T14:20:56.259Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 525, "blockHeight": 525, "took": "4.586743ms"} -2023-12-15T14:20:56.701Z INFO sending PrepareRequest {"height": 526, "view": 0} -2023-12-15T14:20:56.701Z INFO sending Commit {"height": 526, "view": 0} -2023-12-15T14:20:56.702Z INFO approving block {"height": 526, "hash": "5e6bc83833ccfd92a10f39553e8993e864d201400c82f8e6281c0ce72883d3ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1065b2074e5fa8a2a8ded046a8104bd125410dc407c6b231dd0d1a92f9b7e61b"} -2023-12-15T14:20:56.703Z INFO initializing dbft {"height": 527, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:56.703Z debug frostfs-node/morph.go:229 new block {"index": 526} -2023-12-15T14:20:57.259Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 526, "blockHeight": 526, "took": "3.660034ms"} -2023-12-15T14:20:57.702Z INFO sending PrepareRequest {"height": 527, "view": 0} -2023-12-15T14:20:57.703Z INFO sending Commit {"height": 527, "view": 0} -2023-12-15T14:20:57.703Z INFO approving block {"height": 527, "hash": "fc5a2980a6d038b5f86e65836abc69519ba9fc317970b6dcf8fc7e4b5676a4ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e6bc83833ccfd92a10f39553e8993e864d201400c82f8e6281c0ce72883d3ef"} -2023-12-15T14:20:57.705Z INFO initializing dbft {"height": 528, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:57.706Z debug frostfs-node/morph.go:229 new block {"index": 527} -2023-12-15T14:20:58.261Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 527, "blockHeight": 527, "took": "5.414608ms"} -2023-12-15T14:20:58.704Z INFO sending PrepareRequest {"height": 528, "view": 0} -2023-12-15T14:20:58.704Z INFO sending Commit {"height": 528, "view": 0} -2023-12-15T14:20:58.704Z INFO approving block {"height": 528, "hash": "4bc4c1355343bb17b079173a0f6f072d8fb7a332ceed0d2bbe47976907f58401", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc5a2980a6d038b5f86e65836abc69519ba9fc317970b6dcf8fc7e4b5676a4ca"} -2023-12-15T14:20:58.705Z INFO initializing dbft {"height": 529, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:58.706Z debug frostfs-node/morph.go:229 new block {"index": 528} -2023-12-15T14:20:59.260Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 528, "blockHeight": 528, "took": "3.476771ms"} -2023-12-15T14:20:59.706Z INFO sending PrepareRequest {"height": 529, "view": 0} -2023-12-15T14:20:59.706Z INFO sending Commit {"height": 529, "view": 0} -2023-12-15T14:20:59.706Z INFO approving block {"height": 529, "hash": "a535c669d02c276015bc06ca9c2fe37b1775f99a3be54a651766a38b47d1ab1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bc4c1355343bb17b079173a0f6f072d8fb7a332ceed0d2bbe47976907f58401"} -2023-12-15T14:20:59.708Z INFO initializing dbft {"height": 530, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:20:59.709Z debug frostfs-node/morph.go:229 new block {"index": 529} -2023-12-15T14:21:00.263Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 529, "blockHeight": 529, "took": "5.963564ms"} -2023-12-15T14:21:00.707Z INFO sending PrepareRequest {"height": 530, "view": 0} -2023-12-15T14:21:00.707Z INFO sending Commit {"height": 530, "view": 0} -2023-12-15T14:21:00.708Z INFO approving block {"height": 530, "hash": "0aaa48fdd35c3e8ab58211fcc7a384122aaf546bce00fee6b2cca097467ca31b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a535c669d02c276015bc06ca9c2fe37b1775f99a3be54a651766a38b47d1ab1b"} -2023-12-15T14:21:00.709Z INFO initializing dbft {"height": 531, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:00.710Z debug frostfs-node/morph.go:229 new block {"index": 530} -2023-12-15T14:21:01.266Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 530, "blockHeight": 530, "took": "7.978943ms"} -2023-12-15T14:21:01.709Z INFO sending PrepareRequest {"height": 531, "view": 0} -2023-12-15T14:21:01.709Z INFO sending Commit {"height": 531, "view": 0} -2023-12-15T14:21:01.709Z INFO approving block {"height": 531, "hash": "325c2185da0827568906fefd5f83f79c8d78839f62fae174ab4d04f2119ea0e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0aaa48fdd35c3e8ab58211fcc7a384122aaf546bce00fee6b2cca097467ca31b"} -2023-12-15T14:21:01.710Z INFO initializing dbft {"height": 532, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:01.711Z debug frostfs-node/morph.go:229 new block {"index": 531} -2023-12-15T14:21:02.264Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 531, "blockHeight": 531, "took": "5.034776ms"} -2023-12-15T14:21:02.711Z INFO sending PrepareRequest {"height": 532, "view": 0} -2023-12-15T14:21:02.711Z INFO sending Commit {"height": 532, "view": 0} -2023-12-15T14:21:02.712Z INFO approving block {"height": 532, "hash": "a980550cbfe089b5b945dd81bd82549b5c6802d7a79989c2a7c117d7c83092b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "325c2185da0827568906fefd5f83f79c8d78839f62fae174ab4d04f2119ea0e4"} -2023-12-15T14:21:02.714Z INFO initializing dbft {"height": 533, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:02.714Z debug frostfs-node/morph.go:229 new block {"index": 532} -2023-12-15T14:21:03.267Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 532, "blockHeight": 532, "took": "7.051785ms"} -2023-12-15T14:21:03.713Z INFO sending PrepareRequest {"height": 533, "view": 0} -2023-12-15T14:21:03.713Z INFO sending Commit {"height": 533, "view": 0} -2023-12-15T14:21:03.714Z INFO approving block {"height": 533, "hash": "9b9f89527091d4c754ffb0f469a33d56aa134ccb45ed0a60e145b1d2ce355054", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a980550cbfe089b5b945dd81bd82549b5c6802d7a79989c2a7c117d7c83092b2"} -2023-12-15T14:21:03.715Z INFO initializing dbft {"height": 534, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:03.716Z debug frostfs-node/morph.go:229 new block {"index": 533} -2023-12-15T14:21:04.267Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 533, "blockHeight": 533, "took": "6.956943ms"} -2023-12-15T14:21:04.715Z INFO sending PrepareRequest {"height": 534, "view": 0} -2023-12-15T14:21:04.715Z INFO sending Commit {"height": 534, "view": 0} -2023-12-15T14:21:04.715Z INFO approving block {"height": 534, "hash": "51078fe2e6cf1d4f406d803567b9c49d8aadf18e633a533295a357248156fc09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b9f89527091d4c754ffb0f469a33d56aa134ccb45ed0a60e145b1d2ce355054"} -2023-12-15T14:21:04.717Z INFO initializing dbft {"height": 535, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:04.718Z debug frostfs-node/morph.go:229 new block {"index": 534} -2023-12-15T14:21:05.264Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 534, "blockHeight": 534, "took": "3.4071ms"} -2023-12-15T14:21:05.717Z INFO sending PrepareRequest {"height": 535, "view": 0} -2023-12-15T14:21:05.717Z INFO sending Commit {"height": 535, "view": 0} -2023-12-15T14:21:05.717Z INFO approving block {"height": 535, "hash": "67e582cbe12f822f59efda76551ed3d9ce7868699ecebbc9b363638ee0038d76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51078fe2e6cf1d4f406d803567b9c49d8aadf18e633a533295a357248156fc09"} -2023-12-15T14:21:05.719Z INFO initializing dbft {"height": 536, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:05.720Z debug frostfs-node/morph.go:229 new block {"index": 535} -2023-12-15T14:21:06.265Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 535, "blockHeight": 535, "took": "2.684488ms"} -2023-12-15T14:21:06.718Z INFO sending PrepareRequest {"height": 536, "view": 0} -2023-12-15T14:21:06.718Z INFO sending Commit {"height": 536, "view": 0} -2023-12-15T14:21:06.718Z INFO approving block {"height": 536, "hash": "7cf14d8f8c532281cef813c884c20be75311bb3e8a657ed259a4d92cbf31e6fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67e582cbe12f822f59efda76551ed3d9ce7868699ecebbc9b363638ee0038d76"} -2023-12-15T14:21:06.719Z INFO initializing dbft {"height": 537, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:06.720Z debug frostfs-node/morph.go:229 new block {"index": 536} -2023-12-15T14:21:07.269Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 536, "blockHeight": 536, "took": "5.793799ms"} -2023-12-15T14:21:07.720Z INFO sending PrepareRequest {"height": 537, "view": 0} -2023-12-15T14:21:07.720Z INFO sending Commit {"height": 537, "view": 0} -2023-12-15T14:21:07.721Z INFO approving block {"height": 537, "hash": "c56818e929249ae66b7f7530bed3558d12bc81cdf89d55bcee9e51ffa039f513", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cf14d8f8c532281cef813c884c20be75311bb3e8a657ed259a4d92cbf31e6fc"} -2023-12-15T14:21:07.722Z INFO initializing dbft {"height": 538, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:07.723Z debug frostfs-node/morph.go:229 new block {"index": 537} -2023-12-15T14:21:08.267Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 537, "blockHeight": 537, "took": "3.722338ms"} -2023-12-15T14:21:08.722Z INFO sending PrepareRequest {"height": 538, "view": 0} -2023-12-15T14:21:08.722Z INFO sending Commit {"height": 538, "view": 0} -2023-12-15T14:21:08.722Z INFO approving block {"height": 538, "hash": "ea06b2a94302c49291c9a33c4e6043d17a52dfe02664816dfee40777ce84191f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c56818e929249ae66b7f7530bed3558d12bc81cdf89d55bcee9e51ffa039f513"} -2023-12-15T14:21:08.723Z INFO initializing dbft {"height": 539, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:08.724Z debug frostfs-node/morph.go:229 new block {"index": 538} -2023-12-15T14:21:09.269Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 538, "blockHeight": 538, "took": "4.722397ms"} -2023-12-15T14:21:09.724Z INFO sending PrepareRequest {"height": 539, "view": 0} -2023-12-15T14:21:09.724Z INFO sending Commit {"height": 539, "view": 0} -2023-12-15T14:21:09.724Z INFO approving block {"height": 539, "hash": "54b9378f3fabce1596e916d0332dbed4548610cdf3d59d03639aab450e6d07c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea06b2a94302c49291c9a33c4e6043d17a52dfe02664816dfee40777ce84191f"} -2023-12-15T14:21:09.726Z INFO initializing dbft {"height": 540, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:09.727Z debug frostfs-node/morph.go:229 new block {"index": 539} -2023-12-15T14:21:10.269Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 539, "blockHeight": 539, "took": "4.077689ms"} -2023-12-15T14:21:10.725Z INFO sending PrepareRequest {"height": 540, "view": 0} -2023-12-15T14:21:10.726Z INFO sending Commit {"height": 540, "view": 0} -2023-12-15T14:21:10.726Z INFO approving block {"height": 540, "hash": "cf3e60c8bb92f91a72ff1b3245d01a7e4bd6eb10a93d2a25cc8bf4f9629fa651", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54b9378f3fabce1596e916d0332dbed4548610cdf3d59d03639aab450e6d07c5"} -2023-12-15T14:21:10.728Z INFO initializing dbft {"height": 541, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:10.729Z debug frostfs-node/morph.go:229 new block {"index": 540} -2023-12-15T14:21:11.271Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 540, "blockHeight": 540, "took": "4.673552ms"} -2023-12-15T14:21:11.728Z INFO sending PrepareRequest {"height": 541, "view": 0} -2023-12-15T14:21:11.728Z INFO sending Commit {"height": 541, "view": 0} -2023-12-15T14:21:11.728Z INFO approving block {"height": 541, "hash": "574c1a072f1fa1c0954dd9d5b2a365723e147c385c70e9b2f5f630db2ce981db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf3e60c8bb92f91a72ff1b3245d01a7e4bd6eb10a93d2a25cc8bf4f9629fa651"} -2023-12-15T14:21:11.730Z INFO initializing dbft {"height": 542, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:11.731Z debug frostfs-node/morph.go:229 new block {"index": 541} -2023-12-15T14:21:11.736Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 3 epoch for daughters"} -2023-12-15T14:21:12.269Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 541, "blockHeight": 541, "took": "3.004541ms"} -2023-12-15T14:21:12.730Z INFO sending PrepareRequest {"height": 542, "view": 0} -2023-12-15T14:21:12.730Z INFO sending Commit {"height": 542, "view": 0} -2023-12-15T14:21:12.730Z INFO approving block {"height": 542, "hash": "5aca004f00176c47a4584dd605b733079799718879d76edbb858ca348b3e8196", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "574c1a072f1fa1c0954dd9d5b2a365723e147c385c70e9b2f5f630db2ce981db"} -2023-12-15T14:21:12.733Z INFO initializing dbft {"height": 543, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:12.733Z debug frostfs-node/morph.go:229 new block {"index": 542} -2023-12-15T14:21:12.738Z INFO runtime log {"tx": "156f7a1d5750ca2b6947341dea836f73eb7d68d0f78bde5bd77204e7cd0cec26", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:21:13.272Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 542, "blockHeight": 542, "took": "5.001367ms"} -2023-12-15T14:21:13.732Z INFO sending PrepareRequest {"height": 543, "view": 0} -2023-12-15T14:21:13.732Z INFO sending Commit {"height": 543, "view": 0} -2023-12-15T14:21:13.733Z INFO approving block {"height": 543, "hash": "e49d22698c0641118266dc5e0cbbcc723def9c3318e95ae24f27be0da161ba83", "tx_count": 1, "merkle": "864d13088a4f1158a61a85e8da61d0bfd0a7b49a5104d9545664ef492a1ed18d", "prev": "5aca004f00176c47a4584dd605b733079799718879d76edbb858ca348b3e8196"} -2023-12-15T14:21:13.733Z INFO runtime log {"tx": "8dd11e2a49ef645654d904519ab4a7d0bfd061dae8851aa658114f8a08134d86", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:21:13.736Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 3} -2023-12-15T14:21:13.736Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 3} -2023-12-15T14:21:13.736Z INFO initializing dbft {"height": 544, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:13.738Z debug frostfs-node/morph.go:229 new block {"index": 543} -2023-12-15T14:21:14.276Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 543, "blockHeight": 543, "took": "8.222807ms"} -2023-12-15T14:21:14.733Z INFO sending PrepareRequest {"height": 544, "view": 0} -2023-12-15T14:21:14.734Z INFO sending Commit {"height": 544, "view": 0} -2023-12-15T14:21:14.734Z INFO approving block {"height": 544, "hash": "b6d13f02ef33281b9e02263590bc6e68d82a008261d1c0ccb55872a151d99106", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e49d22698c0641118266dc5e0cbbcc723def9c3318e95ae24f27be0da161ba83"} -2023-12-15T14:21:14.736Z INFO initializing dbft {"height": 545, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:14.737Z debug frostfs-node/morph.go:229 new block {"index": 544} -2023-12-15T14:21:15.273Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 544, "blockHeight": 544, "took": "4.276685ms"} -2023-12-15T14:21:15.735Z INFO sending PrepareRequest {"height": 545, "view": 0} -2023-12-15T14:21:15.735Z INFO sending Commit {"height": 545, "view": 0} -2023-12-15T14:21:15.736Z INFO approving block {"height": 545, "hash": "e634e80e1eb0175d72e3515da8c16ad20ed1e09c172e0d256549a6c80075a7f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6d13f02ef33281b9e02263590bc6e68d82a008261d1c0ccb55872a151d99106"} -2023-12-15T14:21:15.737Z INFO initializing dbft {"height": 546, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:15.738Z debug frostfs-node/morph.go:229 new block {"index": 545} -2023-12-15T14:21:16.275Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 545, "blockHeight": 545, "took": "5.681855ms"} -2023-12-15T14:21:16.736Z INFO sending PrepareRequest {"height": 546, "view": 0} -2023-12-15T14:21:16.737Z INFO sending Commit {"height": 546, "view": 0} -2023-12-15T14:21:16.737Z INFO approving block {"height": 546, "hash": "e5b1a4cf1fe6f9a4273efa7e3d252ef9ee0430b5e4ff30dfe368a9d408097aa3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e634e80e1eb0175d72e3515da8c16ad20ed1e09c172e0d256549a6c80075a7f6"} -2023-12-15T14:21:16.738Z INFO initializing dbft {"height": 547, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:16.739Z debug frostfs-node/morph.go:229 new block {"index": 546} -2023-12-15T14:21:17.274Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 546, "blockHeight": 546, "took": "4.449601ms"} -2023-12-15T14:21:17.738Z INFO sending PrepareRequest {"height": 547, "view": 0} -2023-12-15T14:21:17.738Z INFO sending Commit {"height": 547, "view": 0} -2023-12-15T14:21:17.739Z INFO approving block {"height": 547, "hash": "13cbfd3f13cb47d6bfa982de2d6e692aa93f51559ec61b27d38c4a97631ef16d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5b1a4cf1fe6f9a4273efa7e3d252ef9ee0430b5e4ff30dfe368a9d408097aa3"} -2023-12-15T14:21:17.740Z INFO initializing dbft {"height": 548, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:17.740Z debug frostfs-node/morph.go:229 new block {"index": 547} -2023-12-15T14:21:18.274Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 547, "blockHeight": 547, "took": "3.557555ms"} -2023-12-15T14:21:18.739Z INFO sending PrepareRequest {"height": 548, "view": 0} -2023-12-15T14:21:18.740Z INFO sending Commit {"height": 548, "view": 0} -2023-12-15T14:21:18.740Z INFO approving block {"height": 548, "hash": "846092567e58cc22819cfc6906c8f15fbf2bc1ae8a8399c2a9599e41fc7f3432", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13cbfd3f13cb47d6bfa982de2d6e692aa93f51559ec61b27d38c4a97631ef16d"} -2023-12-15T14:21:18.741Z INFO initializing dbft {"height": 549, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:18.741Z debug frostfs-node/morph.go:229 new block {"index": 548} -2023-12-15T14:21:19.277Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 548, "blockHeight": 548, "took": "6.15568ms"} -2023-12-15T14:21:19.741Z INFO sending PrepareRequest {"height": 549, "view": 0} -2023-12-15T14:21:19.742Z INFO sending Commit {"height": 549, "view": 0} -2023-12-15T14:21:19.742Z INFO approving block {"height": 549, "hash": "c711c7aa167d152d0c8b6f7797fe5c24f8e8841c05dbec8c0bb511c5b0544007", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "846092567e58cc22819cfc6906c8f15fbf2bc1ae8a8399c2a9599e41fc7f3432"} -2023-12-15T14:21:19.743Z INFO initializing dbft {"height": 550, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:19.744Z debug frostfs-node/morph.go:229 new block {"index": 549} -2023-12-15T14:21:20.276Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 549, "blockHeight": 549, "took": "3.950366ms"} -2023-12-15T14:21:20.743Z INFO sending PrepareRequest {"height": 550, "view": 0} -2023-12-15T14:21:20.743Z INFO sending Commit {"height": 550, "view": 0} -2023-12-15T14:21:20.744Z INFO approving block {"height": 550, "hash": "1164d170223e4cde16c5bca2b84823fe2832b204ac2cb070a569e406aef76852", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c711c7aa167d152d0c8b6f7797fe5c24f8e8841c05dbec8c0bb511c5b0544007"} -2023-12-15T14:21:20.745Z INFO initializing dbft {"height": 551, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:20.745Z debug frostfs-node/morph.go:229 new block {"index": 550} -2023-12-15T14:21:21.279Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 550, "blockHeight": 550, "took": "6.345415ms"} -2023-12-15T14:21:21.745Z INFO sending PrepareRequest {"height": 551, "view": 0} -2023-12-15T14:21:21.746Z INFO sending Commit {"height": 551, "view": 0} -2023-12-15T14:21:21.746Z INFO approving block {"height": 551, "hash": "052ac24aac57d877e7d363dd4ccf337b40f87a5e62bf11a2b4103c24d9fee93a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1164d170223e4cde16c5bca2b84823fe2832b204ac2cb070a569e406aef76852"} -2023-12-15T14:21:21.748Z INFO initializing dbft {"height": 552, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:21.748Z debug frostfs-node/morph.go:229 new block {"index": 551} -2023-12-15T14:21:22.277Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 551, "blockHeight": 551, "took": "3.083867ms"} -2023-12-15T14:21:22.747Z INFO sending PrepareRequest {"height": 552, "view": 0} -2023-12-15T14:21:22.747Z INFO sending Commit {"height": 552, "view": 0} -2023-12-15T14:21:22.748Z INFO approving block {"height": 552, "hash": "b36025be4db1e3372c81d040e44c17a8cbccca4103d2d0f1a217f54464fa8921", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "052ac24aac57d877e7d363dd4ccf337b40f87a5e62bf11a2b4103c24d9fee93a"} -2023-12-15T14:21:22.750Z INFO initializing dbft {"height": 553, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:22.750Z debug frostfs-node/morph.go:229 new block {"index": 552} -2023-12-15T14:21:23.279Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 552, "blockHeight": 552, "took": "4.821901ms"} -2023-12-15T14:21:23.749Z INFO sending PrepareRequest {"height": 553, "view": 0} -2023-12-15T14:21:23.749Z INFO sending Commit {"height": 553, "view": 0} -2023-12-15T14:21:23.749Z INFO approving block {"height": 553, "hash": "53bda02c81edff4d7a129cc35f0f88c73b01eacf769e9764471e26962c514aae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b36025be4db1e3372c81d040e44c17a8cbccca4103d2d0f1a217f54464fa8921"} -2023-12-15T14:21:23.751Z INFO initializing dbft {"height": 554, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:23.752Z debug frostfs-node/morph.go:229 new block {"index": 553} -2023-12-15T14:21:24.281Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 553, "blockHeight": 553, "took": "6.162681ms"} -2023-12-15T14:21:24.750Z INFO sending PrepareRequest {"height": 554, "view": 0} -2023-12-15T14:21:24.751Z INFO sending Commit {"height": 554, "view": 0} -2023-12-15T14:21:24.751Z INFO approving block {"height": 554, "hash": "17c151e48c801647afa82fd5434aecec181256025acfa6100951a5564e222fe9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53bda02c81edff4d7a129cc35f0f88c73b01eacf769e9764471e26962c514aae"} -2023-12-15T14:21:24.753Z INFO initializing dbft {"height": 555, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:24.754Z debug frostfs-node/morph.go:229 new block {"index": 554} -2023-12-15T14:21:25.280Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 554, "blockHeight": 554, "took": "4.160642ms"} -2023-12-15T14:21:25.752Z INFO sending PrepareRequest {"height": 555, "view": 0} -2023-12-15T14:21:25.752Z INFO sending Commit {"height": 555, "view": 0} -2023-12-15T14:21:25.752Z INFO approving block {"height": 555, "hash": "cbecc4cdf3d93fe79264275071a22277c316bd9bc69a7a0cdfade8920e4526ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17c151e48c801647afa82fd5434aecec181256025acfa6100951a5564e222fe9"} -2023-12-15T14:21:25.753Z INFO initializing dbft {"height": 556, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:25.754Z debug frostfs-node/morph.go:229 new block {"index": 555} -2023-12-15T14:21:26.283Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 555, "blockHeight": 555, "took": "5.8264ms"} -2023-12-15T14:21:26.754Z INFO sending PrepareRequest {"height": 556, "view": 0} -2023-12-15T14:21:26.754Z INFO sending Commit {"height": 556, "view": 0} -2023-12-15T14:21:26.754Z INFO approving block {"height": 556, "hash": "8491961d870080d08d52964181cbb0c39e59c13d6973e0a5bf02bd3be4920f59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbecc4cdf3d93fe79264275071a22277c316bd9bc69a7a0cdfade8920e4526ae"} -2023-12-15T14:21:26.755Z INFO initializing dbft {"height": 557, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:26.755Z debug frostfs-node/morph.go:229 new block {"index": 556} -2023-12-15T14:21:27.284Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 556, "blockHeight": 556, "took": "5.911182ms"} -2023-12-15T14:21:27.755Z INFO sending PrepareRequest {"height": 557, "view": 0} -2023-12-15T14:21:27.755Z INFO sending Commit {"height": 557, "view": 0} -2023-12-15T14:21:27.755Z INFO approving block {"height": 557, "hash": "d6e7902aca5a47d6336f77b5f68c4c0fc2c112ba4a96bdd36fbd50ba56597da7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8491961d870080d08d52964181cbb0c39e59c13d6973e0a5bf02bd3be4920f59"} -2023-12-15T14:21:27.756Z INFO initializing dbft {"height": 558, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:27.757Z debug frostfs-node/morph.go:229 new block {"index": 557} -2023-12-15T14:21:28.284Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 557, "blockHeight": 557, "took": "5.335065ms"} -2023-12-15T14:21:28.756Z INFO sending PrepareRequest {"height": 558, "view": 0} -2023-12-15T14:21:28.756Z INFO sending Commit {"height": 558, "view": 0} -2023-12-15T14:21:28.756Z INFO approving block {"height": 558, "hash": "ac436038d05e15e698d0db8c8ddffe26a077f2abeb578ab744f855942cea77f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6e7902aca5a47d6336f77b5f68c4c0fc2c112ba4a96bdd36fbd50ba56597da7"} -2023-12-15T14:21:28.758Z INFO initializing dbft {"height": 559, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:28.758Z debug frostfs-node/morph.go:229 new block {"index": 558} -2023-12-15T14:21:29.284Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 558, "blockHeight": 558, "took": "4.266034ms"} -2023-12-15T14:21:29.757Z INFO sending PrepareRequest {"height": 559, "view": 0} -2023-12-15T14:21:29.758Z INFO sending Commit {"height": 559, "view": 0} -2023-12-15T14:21:29.758Z INFO approving block {"height": 559, "hash": "8e84d79c598562754c31f77991a9df9754b15dea47e4fd097c986454a615de7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac436038d05e15e698d0db8c8ddffe26a077f2abeb578ab744f855942cea77f7"} -2023-12-15T14:21:29.760Z INFO initializing dbft {"height": 560, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:29.761Z debug frostfs-node/morph.go:229 new block {"index": 559} -2023-12-15T14:21:30.284Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 559, "blockHeight": 559, "took": "3.008347ms"} -2023-12-15T14:21:30.759Z INFO sending PrepareRequest {"height": 560, "view": 0} -2023-12-15T14:21:30.760Z INFO sending Commit {"height": 560, "view": 0} -2023-12-15T14:21:30.760Z INFO approving block {"height": 560, "hash": "733f4a7439f94a4a152cae07e4a1fa7a709b2737ef55312232476167e58284f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e84d79c598562754c31f77991a9df9754b15dea47e4fd097c986454a615de7c"} -2023-12-15T14:21:30.762Z INFO initializing dbft {"height": 561, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:30.762Z debug frostfs-node/morph.go:229 new block {"index": 560} -2023-12-15T14:21:31.287Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 560, "blockHeight": 560, "took": "5.481679ms"} -2023-12-15T14:21:31.761Z INFO sending PrepareRequest {"height": 561, "view": 0} -2023-12-15T14:21:31.762Z INFO sending Commit {"height": 561, "view": 0} -2023-12-15T14:21:31.764Z INFO approving block {"height": 561, "hash": "2d0da705116fe7e3e6ae5701d196f28644a054e6740b0e684c58cf979c42767d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "733f4a7439f94a4a152cae07e4a1fa7a709b2737ef55312232476167e58284f2"} -2023-12-15T14:21:31.767Z INFO initializing dbft {"height": 562, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:31.768Z debug frostfs-node/morph.go:229 new block {"index": 561} -2023-12-15T14:21:32.288Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 561, "blockHeight": 561, "took": "6.079196ms"} -2023-12-15T14:21:32.765Z INFO sending PrepareRequest {"height": 562, "view": 0} -2023-12-15T14:21:32.765Z INFO sending Commit {"height": 562, "view": 0} -2023-12-15T14:21:32.765Z INFO approving block {"height": 562, "hash": "37e5c31476ed439d067eea2adda484985c7a899bd0ff417735df085b754f16d3", "tx_count": 1, "merkle": "14478a0175dfac6e83438b144dceeafccff050217307d663cb3ded0bfa32e86b", "prev": "2d0da705116fe7e3e6ae5701d196f28644a054e6740b0e684c58cf979c42767d"} -2023-12-15T14:21:32.766Z INFO initializing dbft {"height": 563, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:32.768Z debug frostfs-node/morph.go:229 new block {"index": 562} -2023-12-15T14:21:32.771Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T14:21:33.290Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 562, "blockHeight": 562, "took": "7.162597ms"} -2023-12-15T14:21:33.766Z INFO sending PrepareRequest {"height": 563, "view": 0} -2023-12-15T14:21:33.767Z INFO sending Commit {"height": 563, "view": 0} -2023-12-15T14:21:33.767Z INFO approving block {"height": 563, "hash": "896403f47e12288f6eb683dd3e80eabbe9ddd273be7fbe26182504b25b4569da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37e5c31476ed439d067eea2adda484985c7a899bd0ff417735df085b754f16d3"} -2023-12-15T14:21:33.769Z INFO initializing dbft {"height": 564, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:33.769Z debug frostfs-node/morph.go:229 new block {"index": 563} -2023-12-15T14:21:34.288Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 563, "blockHeight": 563, "took": "4.646105ms"} -2023-12-15T14:21:34.768Z INFO sending PrepareRequest {"height": 564, "view": 0} -2023-12-15T14:21:34.768Z INFO sending Commit {"height": 564, "view": 0} -2023-12-15T14:21:34.769Z INFO approving block {"height": 564, "hash": "9c33019dda0e353aea27d22bdac000bf5ae11068cac0b9ed9223a7b0dc2f8793", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "896403f47e12288f6eb683dd3e80eabbe9ddd273be7fbe26182504b25b4569da"} -2023-12-15T14:21:34.770Z INFO initializing dbft {"height": 565, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:34.771Z debug frostfs-node/morph.go:229 new block {"index": 564} -2023-12-15T14:21:35.288Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 564, "blockHeight": 564, "took": "3.408858ms"} -2023-12-15T14:21:35.770Z INFO sending PrepareRequest {"height": 565, "view": 0} -2023-12-15T14:21:35.771Z INFO sending Commit {"height": 565, "view": 0} -2023-12-15T14:21:35.771Z INFO approving block {"height": 565, "hash": "2b876da03ff6a8aea0b16ae5e3587f6491a25695ee9c03dfc72a07f96b102088", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c33019dda0e353aea27d22bdac000bf5ae11068cac0b9ed9223a7b0dc2f8793"} -2023-12-15T14:21:35.772Z INFO initializing dbft {"height": 566, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:35.773Z debug frostfs-node/morph.go:229 new block {"index": 565} -2023-12-15T14:21:36.290Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 565, "blockHeight": 565, "took": "4.953753ms"} -2023-12-15T14:21:36.772Z INFO sending PrepareRequest {"height": 566, "view": 0} -2023-12-15T14:21:36.772Z INFO sending Commit {"height": 566, "view": 0} -2023-12-15T14:21:36.773Z INFO approving block {"height": 566, "hash": "b92ba127800b54d44a61ca2d018fc84808186cfefe0a5813fda4b1114019b496", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b876da03ff6a8aea0b16ae5e3587f6491a25695ee9c03dfc72a07f96b102088"} -2023-12-15T14:21:36.774Z INFO initializing dbft {"height": 567, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:36.775Z debug frostfs-node/morph.go:229 new block {"index": 566} -2023-12-15T14:21:37.290Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 566, "blockHeight": 566, "took": "4.390048ms"} -2023-12-15T14:21:37.774Z INFO sending PrepareRequest {"height": 567, "view": 0} -2023-12-15T14:21:37.774Z INFO sending Commit {"height": 567, "view": 0} -2023-12-15T14:21:37.775Z INFO approving block {"height": 567, "hash": "0fea80ac311ad2f969ac0fca748b99ef187674830a3773d91de45baa7a1a582a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b92ba127800b54d44a61ca2d018fc84808186cfefe0a5813fda4b1114019b496"} -2023-12-15T14:21:37.775Z INFO initializing dbft {"height": 568, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:37.776Z debug frostfs-node/morph.go:229 new block {"index": 567} -2023-12-15T14:21:37.778Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:21:37.780Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:21:37.780Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:21:38.291Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 567, "blockHeight": 567, "took": "5.197192ms"} -2023-12-15T14:21:38.776Z INFO sending PrepareRequest {"height": 568, "view": 0} -2023-12-15T14:21:38.776Z INFO sending Commit {"height": 568, "view": 0} -2023-12-15T14:21:38.776Z INFO approving block {"height": 568, "hash": "ecd615f1bafe4f28bea3f2522eb339ff4a2cad09fd0ae1caef5a2c1903d968f3", "tx_count": 2, "merkle": "6f3dc4d993cb7442a44d23c1d7d15f206260871988583bc5e36ea5d93b49fe9d", "prev": "0fea80ac311ad2f969ac0fca748b99ef187674830a3773d91de45baa7a1a582a"} -2023-12-15T14:21:38.777Z INFO runtime log {"tx": "5e7efeed4fecb3bce568a3fd320ceb737b0f60e8f9dbc45cf504752f577eafdd", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:21:38.777Z INFO runtime log {"tx": "5e7efeed4fecb3bce568a3fd320ceb737b0f60e8f9dbc45cf504752f577eafdd", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:21:38.778Z INFO initializing dbft {"height": 569, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:38.779Z debug frostfs-node/morph.go:229 new block {"index": 568} -2023-12-15T14:21:39.291Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 568, "blockHeight": 568, "took": "4.014977ms"} -2023-12-15T14:21:39.777Z INFO sending PrepareRequest {"height": 569, "view": 0} -2023-12-15T14:21:39.778Z INFO sending Commit {"height": 569, "view": 0} -2023-12-15T14:21:39.778Z INFO approving block {"height": 569, "hash": "3c27050dc8faa1452584f07256482e985b985a5902d5de587267b627a8154f46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecd615f1bafe4f28bea3f2522eb339ff4a2cad09fd0ae1caef5a2c1903d968f3"} -2023-12-15T14:21:39.778Z INFO initializing dbft {"height": 570, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:39.779Z debug frostfs-node/morph.go:229 new block {"index": 569} -2023-12-15T14:21:40.292Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 569, "blockHeight": 569, "took": "4.47353ms"} -2023-12-15T14:21:40.779Z INFO sending PrepareRequest {"height": 570, "view": 0} -2023-12-15T14:21:40.779Z INFO sending Commit {"height": 570, "view": 0} -2023-12-15T14:21:40.779Z INFO approving block {"height": 570, "hash": "1afe324a2dd3906eff4f7ef7b69c043a6c7c14fca14f908f3abb58e0833b42b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c27050dc8faa1452584f07256482e985b985a5902d5de587267b627a8154f46"} -2023-12-15T14:21:40.781Z INFO initializing dbft {"height": 571, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:40.781Z debug frostfs-node/morph.go:229 new block {"index": 570} -2023-12-15T14:21:41.292Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 570, "blockHeight": 570, "took": "2.710669ms"} -2023-12-15T14:21:41.780Z INFO sending PrepareRequest {"height": 571, "view": 0} -2023-12-15T14:21:41.781Z INFO sending Commit {"height": 571, "view": 0} -2023-12-15T14:21:41.781Z INFO approving block {"height": 571, "hash": "255012ad1a4ad55d74201cc8ba0ced71429a789a22cb7b5eda42dfb93cc359c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1afe324a2dd3906eff4f7ef7b69c043a6c7c14fca14f908f3abb58e0833b42b4"} -2023-12-15T14:21:41.783Z INFO initializing dbft {"height": 572, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:41.783Z debug frostfs-node/morph.go:229 new block {"index": 571} -2023-12-15T14:21:42.294Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 571, "blockHeight": 571, "took": "4.11272ms"} -2023-12-15T14:21:42.782Z INFO sending PrepareRequest {"height": 572, "view": 0} -2023-12-15T14:21:42.782Z INFO sending Commit {"height": 572, "view": 0} -2023-12-15T14:21:42.783Z INFO approving block {"height": 572, "hash": "dfc0a364779bcb2cca479f23ad72a04167f99189ddb95ff84f8f86b6cbb8cee8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "255012ad1a4ad55d74201cc8ba0ced71429a789a22cb7b5eda42dfb93cc359c6"} -2023-12-15T14:21:42.784Z INFO initializing dbft {"height": 573, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:42.785Z debug frostfs-node/morph.go:229 new block {"index": 572} -2023-12-15T14:21:43.294Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 572, "blockHeight": 572, "took": "3.182753ms"} -2023-12-15T14:21:43.784Z INFO sending PrepareRequest {"height": 573, "view": 0} -2023-12-15T14:21:43.784Z INFO sending Commit {"height": 573, "view": 0} -2023-12-15T14:21:43.785Z INFO approving block {"height": 573, "hash": "79196d933cbf9473efa85b34dda06a66f1eafa6efbd9261cd906503307efe164", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfc0a364779bcb2cca479f23ad72a04167f99189ddb95ff84f8f86b6cbb8cee8"} -2023-12-15T14:21:43.786Z INFO initializing dbft {"height": 574, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:43.787Z debug frostfs-node/morph.go:229 new block {"index": 573} -2023-12-15T14:21:44.295Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 573, "blockHeight": 573, "took": "3.033718ms"} -2023-12-15T14:21:44.786Z INFO sending PrepareRequest {"height": 574, "view": 0} -2023-12-15T14:21:44.786Z INFO sending Commit {"height": 574, "view": 0} -2023-12-15T14:21:44.787Z INFO approving block {"height": 574, "hash": "96cb37d532a8431ae0e4ca55876dd9331bd4d9a57a8dbac7e824b03aef4c4b22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79196d933cbf9473efa85b34dda06a66f1eafa6efbd9261cd906503307efe164"} -2023-12-15T14:21:44.788Z INFO initializing dbft {"height": 575, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:44.789Z debug frostfs-node/morph.go:229 new block {"index": 574} -2023-12-15T14:21:45.295Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 574, "blockHeight": 574, "took": "3.347948ms"} -2023-12-15T14:21:45.788Z INFO sending PrepareRequest {"height": 575, "view": 0} -2023-12-15T14:21:45.788Z INFO sending Commit {"height": 575, "view": 0} -2023-12-15T14:21:45.789Z INFO approving block {"height": 575, "hash": "8effbd18e020ca1897fedc638438e5d2a641a892c13c75a1a2cec342bbe9e6f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96cb37d532a8431ae0e4ca55876dd9331bd4d9a57a8dbac7e824b03aef4c4b22"} -2023-12-15T14:21:45.790Z INFO initializing dbft {"height": 576, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:45.792Z debug frostfs-node/morph.go:229 new block {"index": 575} -2023-12-15T14:21:46.296Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 575, "blockHeight": 575, "took": "3.31403ms"} -2023-12-15T14:21:46.791Z INFO sending PrepareRequest {"height": 576, "view": 0} -2023-12-15T14:21:46.791Z INFO sending Commit {"height": 576, "view": 0} -2023-12-15T14:21:46.791Z INFO approving block {"height": 576, "hash": "f57c0d0d79603740fc1d11a251bc60b867f5da5026d07ad25355715963b11d55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8effbd18e020ca1897fedc638438e5d2a641a892c13c75a1a2cec342bbe9e6f7"} -2023-12-15T14:21:46.793Z INFO initializing dbft {"height": 577, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:46.794Z debug frostfs-node/morph.go:229 new block {"index": 576} -2023-12-15T14:21:47.298Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 576, "blockHeight": 576, "took": "4.951779ms"} -2023-12-15T14:21:47.793Z INFO sending PrepareRequest {"height": 577, "view": 0} -2023-12-15T14:21:47.793Z INFO sending Commit {"height": 577, "view": 0} -2023-12-15T14:21:47.793Z INFO approving block {"height": 577, "hash": "9ba5d560ea096fb3faf63a7d73ceb17458ed8aae92ea398c34d5a78738bf7bc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f57c0d0d79603740fc1d11a251bc60b867f5da5026d07ad25355715963b11d55"} -2023-12-15T14:21:47.794Z INFO initializing dbft {"height": 578, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:47.794Z debug frostfs-node/morph.go:229 new block {"index": 577} -2023-12-15T14:21:48.301Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 577, "blockHeight": 577, "took": "7.418667ms"} -2023-12-15T14:21:48.794Z INFO sending PrepareRequest {"height": 578, "view": 0} -2023-12-15T14:21:48.794Z INFO sending Commit {"height": 578, "view": 0} -2023-12-15T14:21:48.794Z INFO approving block {"height": 578, "hash": "fa48c5852d08083b2cec8b7e48530c89d0a3fc15598cd3e22eda90f42a6a80f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ba5d560ea096fb3faf63a7d73ceb17458ed8aae92ea398c34d5a78738bf7bc1"} -2023-12-15T14:21:48.795Z INFO initializing dbft {"height": 579, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:48.795Z debug frostfs-node/morph.go:229 new block {"index": 578} -2023-12-15T14:21:49.303Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 578, "blockHeight": 578, "took": "8.151077ms"} -2023-12-15T14:21:49.795Z INFO sending PrepareRequest {"height": 579, "view": 0} -2023-12-15T14:21:49.795Z INFO sending Commit {"height": 579, "view": 0} -2023-12-15T14:21:49.795Z INFO approving block {"height": 579, "hash": "51598ddbea1e49b89360b406c271131f0a7709f15b52e874f02d9569a1f35f9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa48c5852d08083b2cec8b7e48530c89d0a3fc15598cd3e22eda90f42a6a80f3"} -2023-12-15T14:21:49.796Z INFO initializing dbft {"height": 580, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:49.796Z debug frostfs-node/morph.go:229 new block {"index": 579} -2023-12-15T14:21:50.300Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 579, "blockHeight": 579, "took": "4.946154ms"} -2023-12-15T14:21:50.796Z INFO sending PrepareRequest {"height": 580, "view": 0} -2023-12-15T14:21:50.796Z INFO sending Commit {"height": 580, "view": 0} -2023-12-15T14:21:50.796Z INFO approving block {"height": 580, "hash": "bd5236ee2ad983ad47aaf3d6cbb34751dc1a3d8cfe462383c518a8836b6a6a72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51598ddbea1e49b89360b406c271131f0a7709f15b52e874f02d9569a1f35f9e"} -2023-12-15T14:21:50.797Z INFO initializing dbft {"height": 581, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:50.798Z debug frostfs-node/morph.go:229 new block {"index": 580} -2023-12-15T14:21:51.300Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 580, "blockHeight": 580, "took": "3.540655ms"} -2023-12-15T14:21:51.798Z INFO sending PrepareRequest {"height": 581, "view": 0} -2023-12-15T14:21:51.798Z INFO sending Commit {"height": 581, "view": 0} -2023-12-15T14:21:51.798Z INFO approving block {"height": 581, "hash": "2b3ed5b04ede84fb1bd9898d9fe2eeaa5fb379ac7020458546a69cf6a77fa9ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd5236ee2ad983ad47aaf3d6cbb34751dc1a3d8cfe462383c518a8836b6a6a72"} -2023-12-15T14:21:51.799Z INFO initializing dbft {"height": 582, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:51.800Z debug frostfs-node/morph.go:229 new block {"index": 581} -2023-12-15T14:21:52.304Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 581, "blockHeight": 581, "took": "6.449408ms"} -2023-12-15T14:21:52.799Z INFO sending PrepareRequest {"height": 582, "view": 0} -2023-12-15T14:21:52.800Z INFO sending Commit {"height": 582, "view": 0} -2023-12-15T14:21:52.800Z INFO approving block {"height": 582, "hash": "69346efda2b18d2d4b76fc0da72ec368bb2fe4f04d312110d811ccf932fa9756", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b3ed5b04ede84fb1bd9898d9fe2eeaa5fb379ac7020458546a69cf6a77fa9ef"} -2023-12-15T14:21:52.801Z INFO initializing dbft {"height": 583, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:52.801Z debug frostfs-node/morph.go:229 new block {"index": 582} -2023-12-15T14:21:53.303Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 582, "blockHeight": 582, "took": "5.069978ms"} -2023-12-15T14:21:53.800Z INFO sending PrepareRequest {"height": 583, "view": 0} -2023-12-15T14:21:53.801Z INFO sending Commit {"height": 583, "view": 0} -2023-12-15T14:21:53.801Z INFO approving block {"height": 583, "hash": "3071970450bffb5a5e4882a0a036c6679f0ca98b6bc0349abc5c543a0b4df621", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69346efda2b18d2d4b76fc0da72ec368bb2fe4f04d312110d811ccf932fa9756"} -2023-12-15T14:21:53.802Z INFO initializing dbft {"height": 584, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:53.803Z debug frostfs-node/morph.go:229 new block {"index": 583} -2023-12-15T14:21:54.304Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 583, "blockHeight": 583, "took": "4.739724ms"} -2023-12-15T14:21:54.802Z INFO sending PrepareRequest {"height": 584, "view": 0} -2023-12-15T14:21:54.803Z INFO sending Commit {"height": 584, "view": 0} -2023-12-15T14:21:54.803Z INFO approving block {"height": 584, "hash": "7ab6795adc5b8a5796a34c23c3e752a34a5b504ff66098ddf922e5ea332b161f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3071970450bffb5a5e4882a0a036c6679f0ca98b6bc0349abc5c543a0b4df621"} -2023-12-15T14:21:54.804Z INFO initializing dbft {"height": 585, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:54.805Z debug frostfs-node/morph.go:229 new block {"index": 584} -2023-12-15T14:21:55.302Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 584, "blockHeight": 584, "took": "2.952436ms"} -2023-12-15T14:21:55.804Z INFO sending PrepareRequest {"height": 585, "view": 0} -2023-12-15T14:21:55.804Z INFO sending Commit {"height": 585, "view": 0} -2023-12-15T14:21:55.804Z INFO approving block {"height": 585, "hash": "9ec4012f4cd1cc8d4ab7aed39ce1db738d6fc93527971b99edae9dcde4fc7d21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ab6795adc5b8a5796a34c23c3e752a34a5b504ff66098ddf922e5ea332b161f"} -2023-12-15T14:21:55.805Z INFO initializing dbft {"height": 586, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:55.806Z debug frostfs-node/morph.go:229 new block {"index": 585} -2023-12-15T14:21:56.304Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 585, "blockHeight": 585, "took": "4.282895ms"} -2023-12-15T14:21:56.805Z INFO sending PrepareRequest {"height": 586, "view": 0} -2023-12-15T14:21:56.805Z INFO sending Commit {"height": 586, "view": 0} -2023-12-15T14:21:56.806Z INFO approving block {"height": 586, "hash": "fe242c4c8021aa4a0320852b99ca983d783b7e51238b0b562d0adc4e3222fc69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ec4012f4cd1cc8d4ab7aed39ce1db738d6fc93527971b99edae9dcde4fc7d21"} -2023-12-15T14:21:56.807Z INFO initializing dbft {"height": 587, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:56.808Z debug frostfs-node/morph.go:229 new block {"index": 586} -2023-12-15T14:21:57.303Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 586, "blockHeight": 586, "took": "3.265965ms"} -2023-12-15T14:21:57.807Z INFO sending PrepareRequest {"height": 587, "view": 0} -2023-12-15T14:21:57.807Z INFO sending Commit {"height": 587, "view": 0} -2023-12-15T14:21:57.807Z INFO approving block {"height": 587, "hash": "dc16bfe2406d8f4cf1b01449019d75f0d0bbfbef1e47860c1b8c724cadbbe49b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe242c4c8021aa4a0320852b99ca983d783b7e51238b0b562d0adc4e3222fc69"} -2023-12-15T14:21:57.808Z INFO initializing dbft {"height": 588, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:57.809Z debug frostfs-node/morph.go:229 new block {"index": 587} -2023-12-15T14:21:58.307Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 587, "blockHeight": 587, "took": "6.052584ms"} -2023-12-15T14:21:58.809Z INFO sending PrepareRequest {"height": 588, "view": 0} -2023-12-15T14:21:58.809Z INFO sending Commit {"height": 588, "view": 0} -2023-12-15T14:21:58.809Z INFO approving block {"height": 588, "hash": "da3bd70de996082f3b98d49aeffab49b1706f44b70c1accd1c008e94cdca1241", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc16bfe2406d8f4cf1b01449019d75f0d0bbfbef1e47860c1b8c724cadbbe49b"} -2023-12-15T14:21:58.810Z INFO initializing dbft {"height": 589, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:58.811Z debug frostfs-node/morph.go:229 new block {"index": 588} -2023-12-15T14:21:59.305Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 588, "blockHeight": 588, "took": "4.097199ms"} -2023-12-15T14:21:59.810Z INFO sending PrepareRequest {"height": 589, "view": 0} -2023-12-15T14:21:59.810Z INFO sending Commit {"height": 589, "view": 0} -2023-12-15T14:21:59.811Z INFO approving block {"height": 589, "hash": "db998a2cf67af12140e27a9f2804ff305b7fd6c841eb6387ccdf10b11d314e9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da3bd70de996082f3b98d49aeffab49b1706f44b70c1accd1c008e94cdca1241"} -2023-12-15T14:21:59.811Z INFO initializing dbft {"height": 590, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:21:59.812Z debug frostfs-node/morph.go:229 new block {"index": 589} -2023-12-15T14:22:00.308Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 589, "blockHeight": 589, "took": "6.099878ms"} -2023-12-15T14:22:00.811Z INFO sending PrepareRequest {"height": 590, "view": 0} -2023-12-15T14:22:00.812Z INFO sending Commit {"height": 590, "view": 0} -2023-12-15T14:22:00.812Z INFO approving block {"height": 590, "hash": "c854db40309798fbbb05ca4da77997d583a38c02b02cd219f5dada8cb4519b30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db998a2cf67af12140e27a9f2804ff305b7fd6c841eb6387ccdf10b11d314e9b"} -2023-12-15T14:22:00.813Z INFO initializing dbft {"height": 591, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:00.814Z debug frostfs-node/morph.go:229 new block {"index": 590} -2023-12-15T14:22:01.307Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 590, "blockHeight": 590, "took": "5.121179ms"} -2023-12-15T14:22:01.813Z INFO sending PrepareRequest {"height": 591, "view": 0} -2023-12-15T14:22:01.813Z INFO sending Commit {"height": 591, "view": 0} -2023-12-15T14:22:01.813Z INFO approving block {"height": 591, "hash": "208b0a012be01a3446b43305d29e656e5ebef7b2881307c8acd95ed5f06c2ca7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c854db40309798fbbb05ca4da77997d583a38c02b02cd219f5dada8cb4519b30"} -2023-12-15T14:22:01.814Z INFO initializing dbft {"height": 592, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:01.814Z debug frostfs-node/morph.go:229 new block {"index": 591} -2023-12-15T14:22:02.306Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 591, "blockHeight": 591, "took": "4.316175ms"} -2023-12-15T14:22:02.814Z INFO sending PrepareRequest {"height": 592, "view": 0} -2023-12-15T14:22:02.815Z INFO sending Commit {"height": 592, "view": 0} -2023-12-15T14:22:02.815Z INFO approving block {"height": 592, "hash": "c560ae6c325584b9a90c734927cb7ccf96188e7c6960130f309841080f4bceaf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "208b0a012be01a3446b43305d29e656e5ebef7b2881307c8acd95ed5f06c2ca7"} -2023-12-15T14:22:02.816Z INFO initializing dbft {"height": 593, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:02.817Z debug frostfs-node/morph.go:229 new block {"index": 592} -2023-12-15T14:22:03.306Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 592, "blockHeight": 592, "took": "2.956716ms"} -2023-12-15T14:22:03.816Z INFO sending PrepareRequest {"height": 593, "view": 0} -2023-12-15T14:22:03.816Z INFO sending Commit {"height": 593, "view": 0} -2023-12-15T14:22:03.816Z INFO approving block {"height": 593, "hash": "973944b6b708dd8f6452dcc0deabf4215f53a57149300ce23a859bd942e04626", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c560ae6c325584b9a90c734927cb7ccf96188e7c6960130f309841080f4bceaf"} -2023-12-15T14:22:03.817Z INFO initializing dbft {"height": 594, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:03.817Z debug frostfs-node/morph.go:229 new block {"index": 593} -2023-12-15T14:22:04.308Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 593, "blockHeight": 593, "took": "4.535438ms"} -2023-12-15T14:22:04.817Z INFO sending PrepareRequest {"height": 594, "view": 0} -2023-12-15T14:22:04.817Z INFO sending Commit {"height": 594, "view": 0} -2023-12-15T14:22:04.818Z INFO approving block {"height": 594, "hash": "69aad4df473830918c16294e6182fe04db728dd96050b72add1f25af217148f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "973944b6b708dd8f6452dcc0deabf4215f53a57149300ce23a859bd942e04626"} -2023-12-15T14:22:04.818Z INFO initializing dbft {"height": 595, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:04.819Z debug frostfs-node/morph.go:229 new block {"index": 594} -2023-12-15T14:22:05.309Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 594, "blockHeight": 594, "took": "5.88049ms"} -2023-12-15T14:22:05.818Z INFO sending PrepareRequest {"height": 595, "view": 0} -2023-12-15T14:22:05.818Z INFO sending Commit {"height": 595, "view": 0} -2023-12-15T14:22:05.819Z INFO approving block {"height": 595, "hash": "a7fde62d5341be0791ab19813ba266bf97a436b286da33b52537e14329a6d9de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69aad4df473830918c16294e6182fe04db728dd96050b72add1f25af217148f2"} -2023-12-15T14:22:05.820Z INFO initializing dbft {"height": 596, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:05.820Z debug frostfs-node/morph.go:229 new block {"index": 595} -2023-12-15T14:22:06.310Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 595, "blockHeight": 595, "took": "5.564813ms"} -2023-12-15T14:22:06.820Z INFO sending PrepareRequest {"height": 596, "view": 0} -2023-12-15T14:22:06.820Z INFO sending Commit {"height": 596, "view": 0} -2023-12-15T14:22:06.820Z INFO approving block {"height": 596, "hash": "0d89422f43a2a890e4c0c63e1d53a19f63db777a5642765996dc5706cab63122", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7fde62d5341be0791ab19813ba266bf97a436b286da33b52537e14329a6d9de"} -2023-12-15T14:22:06.821Z INFO initializing dbft {"height": 597, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:06.821Z debug frostfs-node/morph.go:229 new block {"index": 596} -2023-12-15T14:22:07.310Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 596, "blockHeight": 596, "took": "4.323396ms"} -2023-12-15T14:22:07.821Z INFO sending PrepareRequest {"height": 597, "view": 0} -2023-12-15T14:22:07.822Z INFO sending Commit {"height": 597, "view": 0} -2023-12-15T14:22:07.822Z INFO approving block {"height": 597, "hash": "069569cc7b1b98588d1cc0373d37ed1493773ccc98dbf00db9d0313e8459c0c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d89422f43a2a890e4c0c63e1d53a19f63db777a5642765996dc5706cab63122"} -2023-12-15T14:22:07.823Z INFO initializing dbft {"height": 598, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:07.823Z debug frostfs-node/morph.go:229 new block {"index": 597} -2023-12-15T14:22:08.312Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 597, "blockHeight": 597, "took": "5.237222ms"} -2023-12-15T14:22:08.823Z INFO sending PrepareRequest {"height": 598, "view": 0} -2023-12-15T14:22:08.823Z INFO sending Commit {"height": 598, "view": 0} -2023-12-15T14:22:08.823Z INFO approving block {"height": 598, "hash": "577f490a58eccf73b18b176c20eb8653c26e0e0f8d6aa74acba9d9f90142ac69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "069569cc7b1b98588d1cc0373d37ed1493773ccc98dbf00db9d0313e8459c0c9"} -2023-12-15T14:22:08.824Z INFO initializing dbft {"height": 599, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:08.824Z debug frostfs-node/morph.go:229 new block {"index": 598} -2023-12-15T14:22:09.313Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 598, "blockHeight": 598, "took": "5.956064ms"} -2023-12-15T14:22:09.825Z INFO sending PrepareRequest {"height": 599, "view": 0} -2023-12-15T14:22:09.825Z INFO sending Commit {"height": 599, "view": 0} -2023-12-15T14:22:09.825Z INFO approving block {"height": 599, "hash": "7f06ab2bafc30f688744bfd7624a2093daf551aa08868bda40e5699b32203c91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "577f490a58eccf73b18b176c20eb8653c26e0e0f8d6aa74acba9d9f90142ac69"} -2023-12-15T14:22:09.826Z INFO initializing dbft {"height": 600, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:09.826Z debug frostfs-node/morph.go:229 new block {"index": 599} -2023-12-15T14:22:10.313Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 599, "blockHeight": 599, "took": "5.610983ms"} -2023-12-15T14:22:10.826Z INFO sending PrepareRequest {"height": 600, "view": 0} -2023-12-15T14:22:10.826Z INFO sending Commit {"height": 600, "view": 0} -2023-12-15T14:22:10.827Z INFO approving block {"height": 600, "hash": "dbc2fda9e66874eaaf1e1edfc40746bbed910c68d5361d2e8c8fef5df46ed395", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f06ab2bafc30f688744bfd7624a2093daf551aa08868bda40e5699b32203c91"} -2023-12-15T14:22:10.828Z INFO initializing dbft {"height": 601, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:10.829Z debug frostfs-node/morph.go:229 new block {"index": 600} -2023-12-15T14:22:11.317Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 600, "blockHeight": 600, "took": "8.036844ms"} -2023-12-15T14:22:11.828Z INFO sending PrepareRequest {"height": 601, "view": 0} -2023-12-15T14:22:11.828Z INFO sending Commit {"height": 601, "view": 0} -2023-12-15T14:22:11.828Z INFO approving block {"height": 601, "hash": "03477d12c0c315f0d6fc1bee0793b2e5d1c2364492b16df17e5926584483901b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbc2fda9e66874eaaf1e1edfc40746bbed910c68d5361d2e8c8fef5df46ed395"} -2023-12-15T14:22:11.829Z INFO initializing dbft {"height": 602, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:11.829Z debug frostfs-node/morph.go:229 new block {"index": 601} -2023-12-15T14:22:11.832Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 3, "iteration": 1, "error": "no data for 0 iteration in 3 epoch for consumers's trusts"} -2023-12-15T14:22:12.314Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 601, "blockHeight": 601, "took": "5.472545ms"} -2023-12-15T14:22:12.829Z INFO sending PrepareRequest {"height": 602, "view": 0} -2023-12-15T14:22:12.829Z INFO sending Commit {"height": 602, "view": 0} -2023-12-15T14:22:12.830Z INFO approving block {"height": 602, "hash": "f4b36bfa285edd9d964a9f8bd7caadd108c4f0a9bcd40834262a60a330db0c4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03477d12c0c315f0d6fc1bee0793b2e5d1c2364492b16df17e5926584483901b"} -2023-12-15T14:22:12.831Z INFO initializing dbft {"height": 603, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:12.832Z debug frostfs-node/morph.go:229 new block {"index": 602} -2023-12-15T14:22:12.838Z info settlement/calls.go:61 start basic income collection {"epoch": 3} -2023-12-15T14:22:13.316Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 602, "blockHeight": 602, "took": "5.83544ms"} -2023-12-15T14:22:13.831Z INFO sending PrepareRequest {"height": 603, "view": 0} -2023-12-15T14:22:13.831Z INFO sending Commit {"height": 603, "view": 0} -2023-12-15T14:22:13.831Z INFO approving block {"height": 603, "hash": "3805eb78cd03b28a835d2d7ca18de8a7632e48acb54183c9b36d169b80bf7f56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4b36bfa285edd9d964a9f8bd7caadd108c4f0a9bcd40834262a60a330db0c4a"} -2023-12-15T14:22:13.832Z INFO initializing dbft {"height": 604, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:13.832Z debug frostfs-node/morph.go:229 new block {"index": 603} -2023-12-15T14:22:14.320Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 603, "blockHeight": 603, "took": "9.115485ms"} -2023-12-15T14:22:14.832Z INFO sending PrepareRequest {"height": 604, "view": 0} -2023-12-15T14:22:14.833Z INFO sending Commit {"height": 604, "view": 0} -2023-12-15T14:22:14.833Z INFO approving block {"height": 604, "hash": "be09ded1af5f38eea6efb0360173dbe7ac0631277fcf6186ebe370e10f66e7eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3805eb78cd03b28a835d2d7ca18de8a7632e48acb54183c9b36d169b80bf7f56"} -2023-12-15T14:22:14.834Z INFO initializing dbft {"height": 605, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:14.835Z debug frostfs-node/morph.go:229 new block {"index": 604} -2023-12-15T14:22:15.316Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 604, "blockHeight": 604, "took": "4.48552ms"} -2023-12-15T14:22:15.834Z INFO sending PrepareRequest {"height": 605, "view": 0} -2023-12-15T14:22:15.834Z INFO sending Commit {"height": 605, "view": 0} -2023-12-15T14:22:15.834Z INFO approving block {"height": 605, "hash": "9491c89238679e3517570c09922711000588a3c4cb1296080ab8b977cc7713d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be09ded1af5f38eea6efb0360173dbe7ac0631277fcf6186ebe370e10f66e7eb"} -2023-12-15T14:22:15.836Z INFO initializing dbft {"height": 606, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:15.836Z debug frostfs-node/morph.go:229 new block {"index": 605} -2023-12-15T14:22:16.316Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 605, "blockHeight": 605, "took": "4.020387ms"} -2023-12-15T14:22:16.835Z INFO sending PrepareRequest {"height": 606, "view": 0} -2023-12-15T14:22:16.836Z INFO sending Commit {"height": 606, "view": 0} -2023-12-15T14:22:16.836Z INFO approving block {"height": 606, "hash": "8111ce29119f05d9a53d5c4a7777eadc5f44db51f1dc76ef360c317f8545832b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9491c89238679e3517570c09922711000588a3c4cb1296080ab8b977cc7713d2"} -2023-12-15T14:22:16.837Z INFO initializing dbft {"height": 607, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:16.837Z debug frostfs-node/morph.go:229 new block {"index": 606} -2023-12-15T14:22:17.317Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 606, "blockHeight": 606, "took": "4.155821ms"} -2023-12-15T14:22:17.837Z INFO sending PrepareRequest {"height": 607, "view": 0} -2023-12-15T14:22:17.837Z INFO sending Commit {"height": 607, "view": 0} -2023-12-15T14:22:17.837Z INFO approving block {"height": 607, "hash": "77c2d5993883007d5f139a7374c83dc5c4bfd0055740104770f7e437e153969c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8111ce29119f05d9a53d5c4a7777eadc5f44db51f1dc76ef360c317f8545832b"} -2023-12-15T14:22:17.838Z INFO initializing dbft {"height": 608, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:17.838Z debug frostfs-node/morph.go:229 new block {"index": 607} -2023-12-15T14:22:18.317Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 607, "blockHeight": 607, "took": "4.077239ms"} -2023-12-15T14:22:18.838Z INFO sending PrepareRequest {"height": 608, "view": 0} -2023-12-15T14:22:18.839Z INFO sending Commit {"height": 608, "view": 0} -2023-12-15T14:22:18.839Z INFO approving block {"height": 608, "hash": "01edaf015bff6608c48f52028f02c0b3a307cbbb16e2c6b7d476cb5646e9e482", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77c2d5993883007d5f139a7374c83dc5c4bfd0055740104770f7e437e153969c"} -2023-12-15T14:22:18.841Z INFO initializing dbft {"height": 609, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:18.841Z debug frostfs-node/morph.go:229 new block {"index": 608} -2023-12-15T14:22:19.320Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 608, "blockHeight": 608, "took": "6.224831ms"} -2023-12-15T14:22:19.840Z INFO sending PrepareRequest {"height": 609, "view": 0} -2023-12-15T14:22:19.841Z INFO sending Commit {"height": 609, "view": 0} -2023-12-15T14:22:19.841Z INFO approving block {"height": 609, "hash": "e64bbcd8abe588651f4aa0c99e3c33501929b60ec17fe02244a842ebddf6c01a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01edaf015bff6608c48f52028f02c0b3a307cbbb16e2c6b7d476cb5646e9e482"} -2023-12-15T14:22:19.841Z INFO initializing dbft {"height": 610, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:19.842Z debug frostfs-node/morph.go:229 new block {"index": 609} -2023-12-15T14:22:20.319Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 609, "blockHeight": 609, "took": "4.547606ms"} -2023-12-15T14:22:20.842Z INFO sending PrepareRequest {"height": 610, "view": 0} -2023-12-15T14:22:20.842Z INFO sending Commit {"height": 610, "view": 0} -2023-12-15T14:22:20.842Z INFO approving block {"height": 610, "hash": "7226a85b5b01e57484a23c16924a521babc1231cb0c24b73ce61041129e8fefa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e64bbcd8abe588651f4aa0c99e3c33501929b60ec17fe02244a842ebddf6c01a"} -2023-12-15T14:22:20.844Z INFO initializing dbft {"height": 611, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:20.844Z debug frostfs-node/morph.go:229 new block {"index": 610} -2023-12-15T14:22:21.321Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 610, "blockHeight": 610, "took": "6.020836ms"} -2023-12-15T14:22:21.844Z INFO sending PrepareRequest {"height": 611, "view": 0} -2023-12-15T14:22:21.844Z INFO sending Commit {"height": 611, "view": 0} -2023-12-15T14:22:21.845Z INFO approving block {"height": 611, "hash": "19be3223aa9127c4514d75ca0d002dabaedc5367942a150b5a04da5743386533", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7226a85b5b01e57484a23c16924a521babc1231cb0c24b73ce61041129e8fefa"} -2023-12-15T14:22:21.846Z INFO initializing dbft {"height": 612, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:21.846Z debug frostfs-node/morph.go:229 new block {"index": 611} -2023-12-15T14:22:22.321Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 611, "blockHeight": 611, "took": "6.048203ms"} -2023-12-15T14:22:22.846Z INFO sending PrepareRequest {"height": 612, "view": 0} -2023-12-15T14:22:22.846Z INFO sending Commit {"height": 612, "view": 0} -2023-12-15T14:22:22.846Z INFO approving block {"height": 612, "hash": "f94bf56c18dda920fef94a61362d51ae789c7027a453c1c4c2b77f586002e4c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19be3223aa9127c4514d75ca0d002dabaedc5367942a150b5a04da5743386533"} -2023-12-15T14:22:22.848Z INFO initializing dbft {"height": 613, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:22.849Z debug frostfs-node/morph.go:229 new block {"index": 612} -2023-12-15T14:22:23.319Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 612, "blockHeight": 612, "took": "3.490772ms"} -2023-12-15T14:22:23.847Z INFO sending PrepareRequest {"height": 613, "view": 0} -2023-12-15T14:22:23.847Z INFO sending Commit {"height": 613, "view": 0} -2023-12-15T14:22:23.847Z INFO approving block {"height": 613, "hash": "e0b923f5574a659bed529f9b65d538b18e9529fb8c8e8fc5e6fd647b1289dd56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f94bf56c18dda920fef94a61362d51ae789c7027a453c1c4c2b77f586002e4c0"} -2023-12-15T14:22:23.848Z INFO initializing dbft {"height": 614, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:23.848Z debug frostfs-node/morph.go:229 new block {"index": 613} -2023-12-15T14:22:24.322Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 613, "blockHeight": 613, "took": "5.252643ms"} -2023-12-15T14:22:24.848Z INFO sending PrepareRequest {"height": 614, "view": 0} -2023-12-15T14:22:24.848Z INFO sending Commit {"height": 614, "view": 0} -2023-12-15T14:22:24.848Z INFO approving block {"height": 614, "hash": "696ea420f062d015ed049f92921356c8806244c4e2dacf37c47f44020f9b8a2a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0b923f5574a659bed529f9b65d538b18e9529fb8c8e8fc5e6fd647b1289dd56"} -2023-12-15T14:22:24.849Z INFO initializing dbft {"height": 615, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:24.850Z debug frostfs-node/morph.go:229 new block {"index": 614} -2023-12-15T14:22:25.323Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 614, "blockHeight": 614, "took": "5.47958ms"} -2023-12-15T14:22:25.849Z INFO sending PrepareRequest {"height": 615, "view": 0} -2023-12-15T14:22:25.849Z INFO sending Commit {"height": 615, "view": 0} -2023-12-15T14:22:25.850Z INFO approving block {"height": 615, "hash": "150d9af493699b01fee674337c23347626f34e4bdb37860977bea0a780f9e6b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "696ea420f062d015ed049f92921356c8806244c4e2dacf37c47f44020f9b8a2a"} -2023-12-15T14:22:25.851Z INFO initializing dbft {"height": 616, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:25.852Z debug frostfs-node/morph.go:229 new block {"index": 615} -2023-12-15T14:22:26.324Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 615, "blockHeight": 615, "took": "5.106499ms"} -2023-12-15T14:22:26.851Z INFO sending PrepareRequest {"height": 616, "view": 0} -2023-12-15T14:22:26.851Z INFO sending Commit {"height": 616, "view": 0} -2023-12-15T14:22:26.852Z INFO approving block {"height": 616, "hash": "b3fcdfa653fb0688cec8724e529afb0b836c136bb9514538d9eb2e8389095e31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "150d9af493699b01fee674337c23347626f34e4bdb37860977bea0a780f9e6b1"} -2023-12-15T14:22:26.853Z INFO initializing dbft {"height": 617, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:26.854Z debug frostfs-node/morph.go:229 new block {"index": 616} -2023-12-15T14:22:27.323Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 616, "blockHeight": 616, "took": "4.68246ms"} -2023-12-15T14:22:27.852Z INFO sending PrepareRequest {"height": 617, "view": 0} -2023-12-15T14:22:27.853Z INFO sending Commit {"height": 617, "view": 0} -2023-12-15T14:22:27.853Z INFO approving block {"height": 617, "hash": "5d93dff8967c7123120f1ff3c015a69b3dc338b2ab23a5158d68a5d3506a0e19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3fcdfa653fb0688cec8724e529afb0b836c136bb9514538d9eb2e8389095e31"} -2023-12-15T14:22:27.854Z INFO initializing dbft {"height": 618, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:27.854Z debug frostfs-node/morph.go:229 new block {"index": 617} -2023-12-15T14:22:27.856Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:22:27.859Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:22:27.859Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:22:28.324Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 617, "blockHeight": 617, "took": "5.252813ms"} -2023-12-15T14:22:28.854Z INFO sending PrepareRequest {"height": 618, "view": 0} -2023-12-15T14:22:28.855Z INFO sending Commit {"height": 618, "view": 0} -2023-12-15T14:22:28.855Z INFO approving block {"height": 618, "hash": "d50337d38185399f340900d091d9ef5dc20dda3e34344c7dd3b5366f7e5f17a8", "tx_count": 2, "merkle": "0753ee4dcd4ad8157e28e34eec4be154fb08d4c8bbc2f1f9e8700bf0edd99b25", "prev": "5d93dff8967c7123120f1ff3c015a69b3dc338b2ab23a5158d68a5d3506a0e19"} -2023-12-15T14:22:28.855Z INFO runtime log {"tx": "1ff498dfed96ddd4f45ef4bc889e858a4a8f24ceab1548457e25b5ede413a5cc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:22:28.855Z INFO runtime log {"tx": "1ff498dfed96ddd4f45ef4bc889e858a4a8f24ceab1548457e25b5ede413a5cc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:22:28.856Z INFO initializing dbft {"height": 619, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:28.857Z debug frostfs-node/morph.go:229 new block {"index": 618} -2023-12-15T14:22:29.325Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 618, "blockHeight": 618, "took": "4.661265ms"} -2023-12-15T14:22:29.855Z INFO sending PrepareRequest {"height": 619, "view": 0} -2023-12-15T14:22:29.856Z INFO sending Commit {"height": 619, "view": 0} -2023-12-15T14:22:29.856Z INFO approving block {"height": 619, "hash": "39a604effa05613c991f49ab19c861f56b84803b204721e8b888cb5ab84c278b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d50337d38185399f340900d091d9ef5dc20dda3e34344c7dd3b5366f7e5f17a8"} -2023-12-15T14:22:29.856Z INFO initializing dbft {"height": 620, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:29.857Z debug frostfs-node/morph.go:229 new block {"index": 619} -2023-12-15T14:22:30.327Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 619, "blockHeight": 619, "took": "6.108328ms"} -2023-12-15T14:22:30.856Z INFO sending PrepareRequest {"height": 620, "view": 0} -2023-12-15T14:22:30.856Z INFO sending Commit {"height": 620, "view": 0} -2023-12-15T14:22:30.857Z INFO approving block {"height": 620, "hash": "d4a5f7347ed52cd082896bd263a1a55cc5685c693f910bf097282f2e566bc800", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39a604effa05613c991f49ab19c861f56b84803b204721e8b888cb5ab84c278b"} -2023-12-15T14:22:30.858Z INFO initializing dbft {"height": 621, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:30.858Z debug frostfs-node/morph.go:229 new block {"index": 620} -2023-12-15T14:22:31.326Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 620, "blockHeight": 620, "took": "3.41152ms"} -2023-12-15T14:22:31.858Z INFO sending PrepareRequest {"height": 621, "view": 0} -2023-12-15T14:22:31.859Z INFO sending Commit {"height": 621, "view": 0} -2023-12-15T14:22:31.859Z INFO approving block {"height": 621, "hash": "685edf577541c6be5ede9bfaf843135e80215dacaedbadbee992236400aae929", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4a5f7347ed52cd082896bd263a1a55cc5685c693f910bf097282f2e566bc800"} -2023-12-15T14:22:31.861Z INFO initializing dbft {"height": 622, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:31.862Z debug frostfs-node/morph.go:229 new block {"index": 621} -2023-12-15T14:22:32.327Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 621, "blockHeight": 621, "took": "3.07588ms"} -2023-12-15T14:22:32.860Z INFO sending PrepareRequest {"height": 622, "view": 0} -2023-12-15T14:22:32.860Z INFO sending Commit {"height": 622, "view": 0} -2023-12-15T14:22:32.861Z INFO approving block {"height": 622, "hash": "cb83a6e72c1c7ebdfa079d979c0041bc4e7e6ffcf93ecc99f3209f60265916a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "685edf577541c6be5ede9bfaf843135e80215dacaedbadbee992236400aae929"} -2023-12-15T14:22:32.862Z INFO initializing dbft {"height": 623, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:32.863Z debug frostfs-node/morph.go:229 new block {"index": 622} -2023-12-15T14:22:33.328Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 622, "blockHeight": 622, "took": "3.473931ms"} -2023-12-15T14:22:33.862Z INFO sending PrepareRequest {"height": 623, "view": 0} -2023-12-15T14:22:33.863Z INFO sending Commit {"height": 623, "view": 0} -2023-12-15T14:22:33.863Z INFO approving block {"height": 623, "hash": "27d8c1b748484461a937e885e37c41019a62d72bca873fe11746f82a4719ddd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb83a6e72c1c7ebdfa079d979c0041bc4e7e6ffcf93ecc99f3209f60265916a7"} -2023-12-15T14:22:33.864Z INFO initializing dbft {"height": 624, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:33.864Z debug frostfs-node/morph.go:229 new block {"index": 623} -2023-12-15T14:22:34.330Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 623, "blockHeight": 623, "took": "4.627085ms"} -2023-12-15T14:22:34.863Z INFO sending PrepareRequest {"height": 624, "view": 0} -2023-12-15T14:22:34.864Z INFO sending Commit {"height": 624, "view": 0} -2023-12-15T14:22:34.864Z INFO approving block {"height": 624, "hash": "d8cb8e5dbfd626f527407c8d521f052cabbce946917e0c83a8cc8793a73ff066", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27d8c1b748484461a937e885e37c41019a62d72bca873fe11746f82a4719ddd4"} -2023-12-15T14:22:34.864Z INFO initializing dbft {"height": 625, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:34.865Z debug frostfs-node/morph.go:229 new block {"index": 624} -2023-12-15T14:22:35.328Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 624, "blockHeight": 624, "took": "2.643357ms"} -2023-12-15T14:22:35.866Z INFO sending PrepareRequest {"height": 625, "view": 0} -2023-12-15T14:22:35.866Z INFO sending Commit {"height": 625, "view": 0} -2023-12-15T14:22:35.866Z INFO approving block {"height": 625, "hash": "04dbe3a6b3fc43dc32e0a5442200db880332ac6c3d45e6ef4e41891bf5915e9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8cb8e5dbfd626f527407c8d521f052cabbce946917e0c83a8cc8793a73ff066"} -2023-12-15T14:22:35.867Z INFO initializing dbft {"height": 626, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:35.868Z debug frostfs-node/morph.go:229 new block {"index": 625} -2023-12-15T14:22:36.331Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 625, "blockHeight": 625, "took": "3.718488ms"} -2023-12-15T14:22:36.867Z INFO sending PrepareRequest {"height": 626, "view": 0} -2023-12-15T14:22:36.867Z INFO sending Commit {"height": 626, "view": 0} -2023-12-15T14:22:36.868Z INFO approving block {"height": 626, "hash": "06e9c8106af7e722dd7ddd658964291d37a71fbfbcd25347d50be7c188e550a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04dbe3a6b3fc43dc32e0a5442200db880332ac6c3d45e6ef4e41891bf5915e9f"} -2023-12-15T14:22:36.869Z INFO initializing dbft {"height": 627, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:36.869Z debug frostfs-node/morph.go:229 new block {"index": 626} -2023-12-15T14:22:37.333Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 626, "blockHeight": 626, "took": "5.070718ms"} -2023-12-15T14:22:37.869Z INFO sending PrepareRequest {"height": 627, "view": 0} -2023-12-15T14:22:37.869Z INFO sending Commit {"height": 627, "view": 0} -2023-12-15T14:22:37.870Z INFO approving block {"height": 627, "hash": "7bbf229894fddadb4e23f1efa1bc9245db29e82c52bdf8cdbb46302841d8d714", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06e9c8106af7e722dd7ddd658964291d37a71fbfbcd25347d50be7c188e550a8"} -2023-12-15T14:22:37.871Z INFO initializing dbft {"height": 628, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:37.871Z debug frostfs-node/morph.go:229 new block {"index": 627} -2023-12-15T14:22:38.333Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 627, "blockHeight": 627, "took": "4.504401ms"} -2023-12-15T14:22:38.871Z INFO sending PrepareRequest {"height": 628, "view": 0} -2023-12-15T14:22:38.871Z INFO sending Commit {"height": 628, "view": 0} -2023-12-15T14:22:38.871Z INFO approving block {"height": 628, "hash": "c06c39ba6ed9e24c43fdacef1063a0d7f48dcba51921a45b8a01d8daf8137f03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bbf229894fddadb4e23f1efa1bc9245db29e82c52bdf8cdbb46302841d8d714"} -2023-12-15T14:22:38.872Z INFO initializing dbft {"height": 629, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:38.872Z debug frostfs-node/morph.go:229 new block {"index": 628} -2023-12-15T14:22:39.336Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 628, "blockHeight": 628, "took": "7.161128ms"} -2023-12-15T14:22:39.873Z INFO sending PrepareRequest {"height": 629, "view": 0} -2023-12-15T14:22:39.873Z INFO sending Commit {"height": 629, "view": 0} -2023-12-15T14:22:39.873Z INFO approving block {"height": 629, "hash": "f135310fba80f73f87a8c475a8e9d44cd64be419cb32e8ad9bd2ee206140701c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c06c39ba6ed9e24c43fdacef1063a0d7f48dcba51921a45b8a01d8daf8137f03"} -2023-12-15T14:22:39.874Z INFO initializing dbft {"height": 630, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:39.875Z debug frostfs-node/morph.go:229 new block {"index": 629} -2023-12-15T14:22:40.334Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 629, "blockHeight": 629, "took": "3.74069ms"} -2023-12-15T14:22:40.874Z INFO sending PrepareRequest {"height": 630, "view": 0} -2023-12-15T14:22:40.875Z INFO sending Commit {"height": 630, "view": 0} -2023-12-15T14:22:40.875Z INFO approving block {"height": 630, "hash": "144df5ddb36d84fb566fe6ce6f53bbd399bcb8cbe1218d28867f0695e851e013", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f135310fba80f73f87a8c475a8e9d44cd64be419cb32e8ad9bd2ee206140701c"} -2023-12-15T14:22:40.876Z INFO initializing dbft {"height": 631, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:40.877Z debug frostfs-node/morph.go:229 new block {"index": 630} -2023-12-15T14:22:41.335Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 630, "blockHeight": 630, "took": "4.410599ms"} -2023-12-15T14:22:41.876Z INFO sending PrepareRequest {"height": 631, "view": 0} -2023-12-15T14:22:41.876Z INFO sending Commit {"height": 631, "view": 0} -2023-12-15T14:22:41.876Z INFO approving block {"height": 631, "hash": "e099119ffd1a596f57b53904836f005dd68452da7b5d473f0db4734564cbb16a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "144df5ddb36d84fb566fe6ce6f53bbd399bcb8cbe1218d28867f0695e851e013"} -2023-12-15T14:22:41.877Z INFO initializing dbft {"height": 632, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:41.878Z debug frostfs-node/morph.go:229 new block {"index": 631} -2023-12-15T14:22:42.335Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 631, "blockHeight": 631, "took": "3.529043ms"} -2023-12-15T14:22:42.877Z INFO sending PrepareRequest {"height": 632, "view": 0} -2023-12-15T14:22:42.877Z INFO sending Commit {"height": 632, "view": 0} -2023-12-15T14:22:42.878Z INFO approving block {"height": 632, "hash": "780df9298bd3d3726b6bfa4af3f60c7af87ef64b61bebf44e28fbfed0cfb8ab0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e099119ffd1a596f57b53904836f005dd68452da7b5d473f0db4734564cbb16a"} -2023-12-15T14:22:42.878Z INFO initializing dbft {"height": 633, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:42.879Z debug frostfs-node/morph.go:229 new block {"index": 632} -2023-12-15T14:22:43.336Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 632, "blockHeight": 632, "took": "4.161708ms"} -2023-12-15T14:22:43.879Z INFO sending PrepareRequest {"height": 633, "view": 0} -2023-12-15T14:22:43.879Z INFO sending Commit {"height": 633, "view": 0} -2023-12-15T14:22:43.879Z INFO approving block {"height": 633, "hash": "409a00339fcbb42d83c0c6aa7f1f861a291705cedc68a857b49dbb4d8ea643c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "780df9298bd3d3726b6bfa4af3f60c7af87ef64b61bebf44e28fbfed0cfb8ab0"} -2023-12-15T14:22:43.881Z INFO initializing dbft {"height": 634, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:43.881Z debug frostfs-node/morph.go:229 new block {"index": 633} -2023-12-15T14:22:44.337Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 633, "blockHeight": 633, "took": "4.423779ms"} -2023-12-15T14:22:44.880Z INFO sending PrepareRequest {"height": 634, "view": 0} -2023-12-15T14:22:44.880Z INFO sending Commit {"height": 634, "view": 0} -2023-12-15T14:22:44.881Z INFO approving block {"height": 634, "hash": "92d018b8883859946f8fe1192b45f14d592097762bb3584abdbd59d517bb227e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "409a00339fcbb42d83c0c6aa7f1f861a291705cedc68a857b49dbb4d8ea643c8"} -2023-12-15T14:22:44.881Z INFO initializing dbft {"height": 635, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:44.882Z debug frostfs-node/morph.go:229 new block {"index": 634} -2023-12-15T14:22:45.336Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 634, "blockHeight": 634, "took": "3.036439ms"} -2023-12-15T14:22:45.882Z INFO sending PrepareRequest {"height": 635, "view": 0} -2023-12-15T14:22:45.882Z INFO sending Commit {"height": 635, "view": 0} -2023-12-15T14:22:45.882Z INFO approving block {"height": 635, "hash": "163140070078d360fd666c33f9a41456b6afaaad575b8453d9345055114b1a66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92d018b8883859946f8fe1192b45f14d592097762bb3584abdbd59d517bb227e"} -2023-12-15T14:22:45.883Z INFO initializing dbft {"height": 636, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:45.884Z debug frostfs-node/morph.go:229 new block {"index": 635} -2023-12-15T14:22:46.338Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 635, "blockHeight": 635, "took": "4.81375ms"} -2023-12-15T14:22:46.884Z INFO sending PrepareRequest {"height": 636, "view": 0} -2023-12-15T14:22:46.884Z INFO sending Commit {"height": 636, "view": 0} -2023-12-15T14:22:46.885Z INFO approving block {"height": 636, "hash": "bcbc6c4d4ff2fdebd90b20ab0c6dfa750ec3981dfb3da119c70a5be9f2868803", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "163140070078d360fd666c33f9a41456b6afaaad575b8453d9345055114b1a66"} -2023-12-15T14:22:46.886Z INFO initializing dbft {"height": 637, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:46.887Z debug frostfs-node/morph.go:229 new block {"index": 636} -2023-12-15T14:22:47.339Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 636, "blockHeight": 636, "took": "4.567153ms"} -2023-12-15T14:22:47.885Z INFO sending PrepareRequest {"height": 637, "view": 0} -2023-12-15T14:22:47.885Z INFO sending Commit {"height": 637, "view": 0} -2023-12-15T14:22:47.886Z INFO approving block {"height": 637, "hash": "73a658cb109eaa24b3086803bb1c5d29306c89d1f00162762d9dba55f0f1988d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcbc6c4d4ff2fdebd90b20ab0c6dfa750ec3981dfb3da119c70a5be9f2868803"} -2023-12-15T14:22:47.887Z INFO initializing dbft {"height": 638, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:47.887Z debug frostfs-node/morph.go:229 new block {"index": 637} -2023-12-15T14:22:48.340Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 637, "blockHeight": 637, "took": "3.832552ms"} -2023-12-15T14:22:48.887Z INFO sending PrepareRequest {"height": 638, "view": 0} -2023-12-15T14:22:48.887Z INFO sending Commit {"height": 638, "view": 0} -2023-12-15T14:22:48.888Z INFO approving block {"height": 638, "hash": "1f21727d8d85c2e852b4ef2c44e2e93e1d8e49ac7a814e0a059085b7804faa3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73a658cb109eaa24b3086803bb1c5d29306c89d1f00162762d9dba55f0f1988d"} -2023-12-15T14:22:48.889Z INFO initializing dbft {"height": 639, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:48.890Z debug frostfs-node/morph.go:229 new block {"index": 638} -2023-12-15T14:22:49.339Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 638, "blockHeight": 638, "took": "3.430069ms"} -2023-12-15T14:22:49.889Z INFO sending PrepareRequest {"height": 639, "view": 0} -2023-12-15T14:22:49.890Z INFO sending Commit {"height": 639, "view": 0} -2023-12-15T14:22:49.890Z INFO approving block {"height": 639, "hash": "46cc49356bba12f8151d68f38f40f065ea5d6bc9dc35f2462602f728f1c03e3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f21727d8d85c2e852b4ef2c44e2e93e1d8e49ac7a814e0a059085b7804faa3e"} -2023-12-15T14:22:49.891Z INFO initializing dbft {"height": 640, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:49.891Z debug frostfs-node/morph.go:229 new block {"index": 639} -2023-12-15T14:22:50.340Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 639, "blockHeight": 639, "took": "3.828377ms"} -2023-12-15T14:22:50.891Z INFO sending PrepareRequest {"height": 640, "view": 0} -2023-12-15T14:22:50.891Z INFO sending Commit {"height": 640, "view": 0} -2023-12-15T14:22:50.891Z INFO approving block {"height": 640, "hash": "f4f7546ebf4d2e63633728e64297ef56c2f8ec18f665505bf481f90a831363ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46cc49356bba12f8151d68f38f40f065ea5d6bc9dc35f2462602f728f1c03e3a"} -2023-12-15T14:22:50.892Z INFO initializing dbft {"height": 641, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:50.892Z debug frostfs-node/morph.go:229 new block {"index": 640} -2023-12-15T14:22:51.341Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 640, "blockHeight": 640, "took": "4.18234ms"} -2023-12-15T14:22:51.892Z INFO sending PrepareRequest {"height": 641, "view": 0} -2023-12-15T14:22:51.893Z INFO sending Commit {"height": 641, "view": 0} -2023-12-15T14:22:51.893Z INFO approving block {"height": 641, "hash": "0abfd4cb04a1bb1b712b8c4a21b10a88f4676b215c174483990ee046168a576d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4f7546ebf4d2e63633728e64297ef56c2f8ec18f665505bf481f90a831363ee"} -2023-12-15T14:22:51.894Z INFO initializing dbft {"height": 642, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:51.895Z debug frostfs-node/morph.go:229 new block {"index": 641} -2023-12-15T14:22:52.342Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 641, "blockHeight": 641, "took": "4.476078ms"} -2023-12-15T14:22:52.894Z INFO sending PrepareRequest {"height": 642, "view": 0} -2023-12-15T14:22:52.894Z INFO sending Commit {"height": 642, "view": 0} -2023-12-15T14:22:52.894Z INFO approving block {"height": 642, "hash": "ee60813efe18f09a875f9c72a80968a15953eb56db042f2e1b068405a610a659", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0abfd4cb04a1bb1b712b8c4a21b10a88f4676b215c174483990ee046168a576d"} -2023-12-15T14:22:52.895Z INFO initializing dbft {"height": 643, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:52.895Z debug frostfs-node/morph.go:229 new block {"index": 642} -2023-12-15T14:22:53.342Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 642, "blockHeight": 642, "took": "4.188518ms"} -2023-12-15T14:22:53.895Z INFO sending PrepareRequest {"height": 643, "view": 0} -2023-12-15T14:22:53.896Z INFO sending Commit {"height": 643, "view": 0} -2023-12-15T14:22:53.896Z INFO approving block {"height": 643, "hash": "1e1ed31556c16dd65b6cefd5b6d07988fc0bc8a55467bfc85e154f2ddf39a27b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee60813efe18f09a875f9c72a80968a15953eb56db042f2e1b068405a610a659"} -2023-12-15T14:22:53.897Z INFO initializing dbft {"height": 644, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:53.898Z debug frostfs-node/morph.go:229 new block {"index": 643} -2023-12-15T14:22:54.345Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 643, "blockHeight": 643, "took": "6.571706ms"} -2023-12-15T14:22:54.897Z INFO sending PrepareRequest {"height": 644, "view": 0} -2023-12-15T14:22:54.897Z INFO sending Commit {"height": 644, "view": 0} -2023-12-15T14:22:54.897Z INFO approving block {"height": 644, "hash": "2e2e7dba7592082016c18c6e4343df1df02bb96f39b392c8928df2f1f5b2c5a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e1ed31556c16dd65b6cefd5b6d07988fc0bc8a55467bfc85e154f2ddf39a27b"} -2023-12-15T14:22:54.898Z INFO initializing dbft {"height": 645, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:54.899Z debug frostfs-node/morph.go:229 new block {"index": 644} -2023-12-15T14:22:55.344Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 644, "blockHeight": 644, "took": "5.017889ms"} -2023-12-15T14:22:55.898Z INFO sending PrepareRequest {"height": 645, "view": 0} -2023-12-15T14:22:55.898Z INFO sending Commit {"height": 645, "view": 0} -2023-12-15T14:22:55.898Z INFO approving block {"height": 645, "hash": "fcb16a31dd405e23fc2d9958416819c0db2fa569154fc61f3194ed54bb71709d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e2e7dba7592082016c18c6e4343df1df02bb96f39b392c8928df2f1f5b2c5a7"} -2023-12-15T14:22:55.899Z INFO initializing dbft {"height": 646, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:55.899Z debug frostfs-node/morph.go:229 new block {"index": 645} -2023-12-15T14:22:56.342Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 645, "blockHeight": 645, "took": "3.125728ms"} -2023-12-15T14:22:56.899Z INFO sending PrepareRequest {"height": 646, "view": 0} -2023-12-15T14:22:56.899Z INFO sending Commit {"height": 646, "view": 0} -2023-12-15T14:22:56.899Z INFO approving block {"height": 646, "hash": "915ce5921ed79f95036252c7a5c4f153cf5b9782ecf52c4dc2c85a467a1800bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcb16a31dd405e23fc2d9958416819c0db2fa569154fc61f3194ed54bb71709d"} -2023-12-15T14:22:56.900Z INFO initializing dbft {"height": 647, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:56.900Z debug frostfs-node/morph.go:229 new block {"index": 646} -2023-12-15T14:22:57.345Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 646, "blockHeight": 646, "took": "4.480648ms"} -2023-12-15T14:22:57.900Z INFO sending PrepareRequest {"height": 647, "view": 0} -2023-12-15T14:22:57.900Z INFO sending Commit {"height": 647, "view": 0} -2023-12-15T14:22:57.901Z INFO approving block {"height": 647, "hash": "384271b8abce5201e1740c6adfabfd61ecdfb77c87a4fc2dd1f1a428c42d5524", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "915ce5921ed79f95036252c7a5c4f153cf5b9782ecf52c4dc2c85a467a1800bc"} -2023-12-15T14:22:57.902Z INFO initializing dbft {"height": 648, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:57.902Z debug frostfs-node/morph.go:229 new block {"index": 647} -2023-12-15T14:22:58.349Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 647, "blockHeight": 647, "took": "7.492326ms"} -2023-12-15T14:22:58.902Z INFO sending PrepareRequest {"height": 648, "view": 0} -2023-12-15T14:22:58.902Z INFO sending Commit {"height": 648, "view": 0} -2023-12-15T14:22:58.902Z INFO approving block {"height": 648, "hash": "56c807a277f66d98deb8701c48236055fd3656a5f83807f7631e93759c36077d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "384271b8abce5201e1740c6adfabfd61ecdfb77c87a4fc2dd1f1a428c42d5524"} -2023-12-15T14:22:58.903Z INFO initializing dbft {"height": 649, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:58.904Z debug frostfs-node/morph.go:229 new block {"index": 648} -2023-12-15T14:22:59.348Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 648, "blockHeight": 648, "took": "6.021743ms"} -2023-12-15T14:22:59.903Z INFO sending PrepareRequest {"height": 649, "view": 0} -2023-12-15T14:22:59.903Z INFO sending Commit {"height": 649, "view": 0} -2023-12-15T14:22:59.904Z INFO approving block {"height": 649, "hash": "11dd3ca275b19ff19c47e845d61ac54a23e3af1e2a218b282c8aa391b0edd1b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56c807a277f66d98deb8701c48236055fd3656a5f83807f7631e93759c36077d"} -2023-12-15T14:22:59.904Z INFO initializing dbft {"height": 650, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:22:59.905Z debug frostfs-node/morph.go:229 new block {"index": 649} -2023-12-15T14:23:00.349Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 649, "blockHeight": 649, "took": "5.59482ms"} -2023-12-15T14:23:00.905Z INFO sending PrepareRequest {"height": 650, "view": 0} -2023-12-15T14:23:00.905Z INFO sending Commit {"height": 650, "view": 0} -2023-12-15T14:23:00.905Z INFO approving block {"height": 650, "hash": "6274bb6101c5cd839983d9d24ac7b9a5e7b45055a941dd2dd85b1956a1dd4132", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11dd3ca275b19ff19c47e845d61ac54a23e3af1e2a218b282c8aa391b0edd1b2"} -2023-12-15T14:23:00.906Z INFO initializing dbft {"height": 651, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:00.906Z debug frostfs-node/morph.go:229 new block {"index": 650} -2023-12-15T14:23:01.348Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 650, "blockHeight": 650, "took": "3.557621ms"} -2023-12-15T14:23:01.906Z INFO sending PrepareRequest {"height": 651, "view": 0} -2023-12-15T14:23:01.907Z INFO sending Commit {"height": 651, "view": 0} -2023-12-15T14:23:01.907Z INFO approving block {"height": 651, "hash": "e2b053dd58ed5957d50794fe565d82518ac77975e80ef5b9dec2500d5998b08f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6274bb6101c5cd839983d9d24ac7b9a5e7b45055a941dd2dd85b1956a1dd4132"} -2023-12-15T14:23:01.907Z INFO initializing dbft {"height": 652, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:01.908Z debug frostfs-node/morph.go:229 new block {"index": 651} -2023-12-15T14:23:02.349Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 651, "blockHeight": 651, "took": "4.139708ms"} -2023-12-15T14:23:02.908Z INFO sending PrepareRequest {"height": 652, "view": 0} -2023-12-15T14:23:02.908Z INFO sending Commit {"height": 652, "view": 0} -2023-12-15T14:23:02.908Z INFO approving block {"height": 652, "hash": "3f26d997b8325d1c2b712eeb54e34b7052c625a93f4ff098c1a616be77d33fec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2b053dd58ed5957d50794fe565d82518ac77975e80ef5b9dec2500d5998b08f"} -2023-12-15T14:23:02.909Z INFO initializing dbft {"height": 653, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:02.909Z debug frostfs-node/morph.go:229 new block {"index": 652} -2023-12-15T14:23:03.348Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 652, "blockHeight": 652, "took": "2.84093ms"} -2023-12-15T14:23:03.909Z INFO sending PrepareRequest {"height": 653, "view": 0} -2023-12-15T14:23:03.909Z INFO sending Commit {"height": 653, "view": 0} -2023-12-15T14:23:03.910Z INFO approving block {"height": 653, "hash": "2218066dc53c63d7434976b733376e0f00a1b32df05522226e04a50ab7ab6ae3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f26d997b8325d1c2b712eeb54e34b7052c625a93f4ff098c1a616be77d33fec"} -2023-12-15T14:23:03.912Z INFO initializing dbft {"height": 654, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:03.913Z debug frostfs-node/morph.go:229 new block {"index": 653} -2023-12-15T14:23:04.352Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 653, "blockHeight": 653, "took": "6.283953ms"} -2023-12-15T14:23:04.910Z INFO sending PrepareRequest {"height": 654, "view": 0} -2023-12-15T14:23:04.911Z INFO sending Commit {"height": 654, "view": 0} -2023-12-15T14:23:04.911Z INFO approving block {"height": 654, "hash": "23ab28689664ced710b483c7896303dddc7abed76957e1f9c5c1851cc66fc4e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2218066dc53c63d7434976b733376e0f00a1b32df05522226e04a50ab7ab6ae3"} -2023-12-15T14:23:04.911Z INFO initializing dbft {"height": 655, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:04.912Z debug frostfs-node/morph.go:229 new block {"index": 654} -2023-12-15T14:23:05.351Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 654, "blockHeight": 654, "took": "3.824992ms"} -2023-12-15T14:23:05.912Z INFO sending PrepareRequest {"height": 655, "view": 0} -2023-12-15T14:23:05.912Z INFO sending Commit {"height": 655, "view": 0} -2023-12-15T14:23:05.912Z INFO approving block {"height": 655, "hash": "141b2ecb8cda6a65094769c7656c8e08bafea5bac2c7a939a1f336bc3f25cdcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23ab28689664ced710b483c7896303dddc7abed76957e1f9c5c1851cc66fc4e7"} -2023-12-15T14:23:05.913Z INFO initializing dbft {"height": 656, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:05.913Z debug frostfs-node/morph.go:229 new block {"index": 655} -2023-12-15T14:23:06.354Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 655, "blockHeight": 655, "took": "6.810478ms"} -2023-12-15T14:23:06.914Z INFO sending PrepareRequest {"height": 656, "view": 0} -2023-12-15T14:23:06.914Z INFO sending Commit {"height": 656, "view": 0} -2023-12-15T14:23:06.914Z INFO approving block {"height": 656, "hash": "d4f3bd0c09ad71eb7d99ca5253945a790b29e04e541c3adbbdf94667ad194d89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "141b2ecb8cda6a65094769c7656c8e08bafea5bac2c7a939a1f336bc3f25cdcc"} -2023-12-15T14:23:06.915Z INFO initializing dbft {"height": 657, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:06.915Z debug frostfs-node/morph.go:229 new block {"index": 656} -2023-12-15T14:23:07.353Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 656, "blockHeight": 656, "took": "5.006636ms"} -2023-12-15T14:23:07.915Z INFO sending PrepareRequest {"height": 657, "view": 0} -2023-12-15T14:23:07.915Z INFO sending Commit {"height": 657, "view": 0} -2023-12-15T14:23:07.916Z INFO approving block {"height": 657, "hash": "73bbc98eec6eb509bfddb110af88b45dc3b1e2d2eab5454eda60e0f9e4c5a4ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4f3bd0c09ad71eb7d99ca5253945a790b29e04e541c3adbbdf94667ad194d89"} -2023-12-15T14:23:07.917Z INFO initializing dbft {"height": 658, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:07.917Z debug frostfs-node/morph.go:229 new block {"index": 657} -2023-12-15T14:23:08.352Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 657, "blockHeight": 657, "took": "3.757949ms"} -2023-12-15T14:23:08.917Z INFO sending PrepareRequest {"height": 658, "view": 0} -2023-12-15T14:23:08.917Z INFO sending Commit {"height": 658, "view": 0} -2023-12-15T14:23:08.917Z INFO approving block {"height": 658, "hash": "6a2ff990043084a0a90470b5d5546ff583e50d542f964a7640b7c5cadc1b4566", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73bbc98eec6eb509bfddb110af88b45dc3b1e2d2eab5454eda60e0f9e4c5a4ac"} -2023-12-15T14:23:08.919Z INFO initializing dbft {"height": 659, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:08.919Z debug frostfs-node/morph.go:229 new block {"index": 658} -2023-12-15T14:23:09.354Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 658, "blockHeight": 658, "took": "4.833491ms"} -2023-12-15T14:23:09.918Z INFO sending PrepareRequest {"height": 659, "view": 0} -2023-12-15T14:23:09.918Z INFO sending Commit {"height": 659, "view": 0} -2023-12-15T14:23:09.918Z INFO approving block {"height": 659, "hash": "dae5873301258fcaf3a06bb4dda96437bf65a0152aa07bb90b53495e6f1227da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a2ff990043084a0a90470b5d5546ff583e50d542f964a7640b7c5cadc1b4566"} -2023-12-15T14:23:09.919Z INFO initializing dbft {"height": 660, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:09.920Z debug frostfs-node/morph.go:229 new block {"index": 659} -2023-12-15T14:23:10.353Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 659, "blockHeight": 659, "took": "3.217664ms"} -2023-12-15T14:23:10.920Z INFO sending PrepareRequest {"height": 660, "view": 0} -2023-12-15T14:23:10.920Z INFO sending Commit {"height": 660, "view": 0} -2023-12-15T14:23:10.920Z INFO approving block {"height": 660, "hash": "1c246a84f87e4d74ae6b1434e36c42b5851f7d01dd005b956128744fc7cfb8f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dae5873301258fcaf3a06bb4dda96437bf65a0152aa07bb90b53495e6f1227da"} -2023-12-15T14:23:10.922Z INFO initializing dbft {"height": 661, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:10.922Z debug frostfs-node/morph.go:229 new block {"index": 660} -2023-12-15T14:23:11.353Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 660, "blockHeight": 660, "took": "2.906324ms"} -2023-12-15T14:23:11.921Z INFO sending PrepareRequest {"height": 661, "view": 0} -2023-12-15T14:23:11.921Z INFO sending Commit {"height": 661, "view": 0} -2023-12-15T14:23:11.922Z INFO approving block {"height": 661, "hash": "f29f79f8497c3ed6f9f5de4afad4817a4d83e952ab19628fc0c675fb776fce4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c246a84f87e4d74ae6b1434e36c42b5851f7d01dd005b956128744fc7cfb8f5"} -2023-12-15T14:23:11.923Z INFO initializing dbft {"height": 662, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:11.923Z debug frostfs-node/morph.go:229 new block {"index": 661} -2023-12-15T14:23:11.926Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 3, "iteration": 2, "error": "no data for 1 iteration in 3 epoch for consumers's trusts"} -2023-12-15T14:23:12.355Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 661, "blockHeight": 661, "took": "4.308285ms"} -2023-12-15T14:23:12.923Z INFO sending PrepareRequest {"height": 662, "view": 0} -2023-12-15T14:23:12.923Z INFO sending Commit {"height": 662, "view": 0} -2023-12-15T14:23:12.923Z INFO approving block {"height": 662, "hash": "0b28c6f4d18a6b0463695148fdd423538a99707f6d580dd759df08b6250ab37a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f29f79f8497c3ed6f9f5de4afad4817a4d83e952ab19628fc0c675fb776fce4e"} -2023-12-15T14:23:12.924Z INFO initializing dbft {"height": 663, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:12.925Z debug frostfs-node/morph.go:229 new block {"index": 662} -2023-12-15T14:23:12.928Z info settlement/calls.go:106 start basic income distribution {"epoch": 3} -2023-12-15T14:23:13.354Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 662, "blockHeight": 662, "took": "2.833792ms"} -2023-12-15T14:23:13.924Z INFO sending PrepareRequest {"height": 663, "view": 0} -2023-12-15T14:23:13.924Z INFO sending Commit {"height": 663, "view": 0} -2023-12-15T14:23:13.925Z INFO approving block {"height": 663, "hash": "a28d528bb4d5b36952b70b03a7886fe2d2cee7bc40d29cd6b39ecdd39e329269", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b28c6f4d18a6b0463695148fdd423538a99707f6d580dd759df08b6250ab37a"} -2023-12-15T14:23:13.926Z INFO initializing dbft {"height": 664, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:13.927Z debug frostfs-node/morph.go:229 new block {"index": 663} -2023-12-15T14:23:14.358Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 663, "blockHeight": 663, "took": "6.393897ms"} -2023-12-15T14:23:14.926Z INFO sending PrepareRequest {"height": 664, "view": 0} -2023-12-15T14:23:14.926Z INFO sending Commit {"height": 664, "view": 0} -2023-12-15T14:23:14.926Z INFO approving block {"height": 664, "hash": "8053b258f78ab39e98cb82ad09fde8d77fe034c3ec7233b699ac1e29ade6d7c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a28d528bb4d5b36952b70b03a7886fe2d2cee7bc40d29cd6b39ecdd39e329269"} -2023-12-15T14:23:14.927Z INFO initializing dbft {"height": 665, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:14.928Z debug frostfs-node/morph.go:229 new block {"index": 664} -2023-12-15T14:23:15.357Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 664, "blockHeight": 664, "took": "3.580165ms"} -2023-12-15T14:23:15.927Z INFO sending PrepareRequest {"height": 665, "view": 0} -2023-12-15T14:23:15.928Z INFO sending Commit {"height": 665, "view": 0} -2023-12-15T14:23:15.928Z INFO approving block {"height": 665, "hash": "624a6cfd326dd3ba1d8bfcd5e7a7ef451cf8c80a40f4dcd0c581c569047741ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8053b258f78ab39e98cb82ad09fde8d77fe034c3ec7233b699ac1e29ade6d7c8"} -2023-12-15T14:23:15.930Z INFO initializing dbft {"height": 666, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:15.930Z debug frostfs-node/morph.go:229 new block {"index": 665} -2023-12-15T14:23:16.358Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 665, "blockHeight": 665, "took": "4.382248ms"} -2023-12-15T14:23:16.929Z INFO sending PrepareRequest {"height": 666, "view": 0} -2023-12-15T14:23:16.929Z INFO sending Commit {"height": 666, "view": 0} -2023-12-15T14:23:16.929Z INFO approving block {"height": 666, "hash": "394376e440a895524ed0e2299c3a98abf69a1002dc51dee2969b3dcea0042ba4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "624a6cfd326dd3ba1d8bfcd5e7a7ef451cf8c80a40f4dcd0c581c569047741ce"} -2023-12-15T14:23:16.930Z INFO initializing dbft {"height": 667, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:16.931Z debug frostfs-node/morph.go:229 new block {"index": 666} -2023-12-15T14:23:17.358Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 666, "blockHeight": 666, "took": "3.876743ms"} -2023-12-15T14:23:17.931Z INFO sending PrepareRequest {"height": 667, "view": 0} -2023-12-15T14:23:17.931Z INFO sending Commit {"height": 667, "view": 0} -2023-12-15T14:23:17.931Z INFO approving block {"height": 667, "hash": "db82eb251022e497d288ced6ed42623646cd4bf0ac480eaf0f3cb9dc18fe4700", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "394376e440a895524ed0e2299c3a98abf69a1002dc51dee2969b3dcea0042ba4"} -2023-12-15T14:23:17.932Z INFO initializing dbft {"height": 668, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:17.932Z debug frostfs-node/morph.go:229 new block {"index": 667} -2023-12-15T14:23:17.935Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:23:17.935Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:23:17.935Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:23:18.360Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 667, "blockHeight": 667, "took": "4.691364ms"} -2023-12-15T14:23:18.932Z INFO sending PrepareRequest {"height": 668, "view": 0} -2023-12-15T14:23:18.932Z INFO sending Commit {"height": 668, "view": 0} -2023-12-15T14:23:18.932Z INFO approving block {"height": 668, "hash": "28edd7538eeca2efd030f1f56ff62a2a69ef26ec8926294bdd99389d4d543a8d", "tx_count": 2, "merkle": "ad25ba02de0f557438733eb1e0256508483425a3008945c72459ca38d6496eb4", "prev": "db82eb251022e497d288ced6ed42623646cd4bf0ac480eaf0f3cb9dc18fe4700"} -2023-12-15T14:23:18.933Z INFO runtime log {"tx": "1e6ebd3e5a8c10e01b4b78ab60ca5afc1a8976e4bb7c9881ced356013961e7fc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:23:18.933Z INFO runtime log {"tx": "1e6ebd3e5a8c10e01b4b78ab60ca5afc1a8976e4bb7c9881ced356013961e7fc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:23:18.934Z INFO initializing dbft {"height": 669, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:18.934Z debug frostfs-node/morph.go:229 new block {"index": 668} -2023-12-15T14:23:19.362Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 668, "blockHeight": 668, "took": "6.265079ms"} -2023-12-15T14:23:19.934Z INFO sending PrepareRequest {"height": 669, "view": 0} -2023-12-15T14:23:19.934Z INFO sending Commit {"height": 669, "view": 0} -2023-12-15T14:23:19.934Z INFO approving block {"height": 669, "hash": "ad464320186bdb1979e1aca06f203f7a8aced36b65bc10122e320cf4d1f43be6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28edd7538eeca2efd030f1f56ff62a2a69ef26ec8926294bdd99389d4d543a8d"} -2023-12-15T14:23:19.935Z INFO initializing dbft {"height": 670, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:19.935Z debug frostfs-node/morph.go:229 new block {"index": 669} -2023-12-15T14:23:20.359Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 669, "blockHeight": 669, "took": "3.464021ms"} -2023-12-15T14:23:20.935Z INFO sending PrepareRequest {"height": 670, "view": 0} -2023-12-15T14:23:20.935Z INFO sending Commit {"height": 670, "view": 0} -2023-12-15T14:23:20.936Z INFO approving block {"height": 670, "hash": "8947a7d10be2e47b5974e004852cf62cf52cd3a803425d816e78951d5496c2dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad464320186bdb1979e1aca06f203f7a8aced36b65bc10122e320cf4d1f43be6"} -2023-12-15T14:23:20.936Z INFO initializing dbft {"height": 671, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:20.937Z debug frostfs-node/morph.go:229 new block {"index": 670} -2023-12-15T14:23:21.359Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 670, "blockHeight": 670, "took": "3.051859ms"} -2023-12-15T14:23:21.936Z INFO sending PrepareRequest {"height": 671, "view": 0} -2023-12-15T14:23:21.937Z INFO sending Commit {"height": 671, "view": 0} -2023-12-15T14:23:21.937Z INFO approving block {"height": 671, "hash": "2464ffc23bada09abb190359cf72cd63152961fe4d5a286c6d8870e8ed955eac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8947a7d10be2e47b5974e004852cf62cf52cd3a803425d816e78951d5496c2dd"} -2023-12-15T14:23:21.937Z INFO initializing dbft {"height": 672, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:21.938Z debug frostfs-node/morph.go:229 new block {"index": 671} -2023-12-15T14:23:22.359Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 671, "blockHeight": 671, "took": "2.736231ms"} -2023-12-15T14:23:22.938Z INFO sending PrepareRequest {"height": 672, "view": 0} -2023-12-15T14:23:22.938Z INFO sending Commit {"height": 672, "view": 0} -2023-12-15T14:23:22.938Z INFO approving block {"height": 672, "hash": "9d709915c06a4e8940b872f15be82c7f741377eda62a0634c732dc8fca9b3b72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2464ffc23bada09abb190359cf72cd63152961fe4d5a286c6d8870e8ed955eac"} -2023-12-15T14:23:22.939Z INFO initializing dbft {"height": 673, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:22.939Z debug frostfs-node/morph.go:229 new block {"index": 672} -2023-12-15T14:23:23.361Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 672, "blockHeight": 672, "took": "3.62439ms"} -2023-12-15T14:23:23.939Z INFO sending PrepareRequest {"height": 673, "view": 0} -2023-12-15T14:23:23.939Z INFO sending Commit {"height": 673, "view": 0} -2023-12-15T14:23:23.940Z INFO approving block {"height": 673, "hash": "7e3c0a270503b4c9ecd5f239d14d38fab03efc97a5471d35abe3f8f24867c49e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d709915c06a4e8940b872f15be82c7f741377eda62a0634c732dc8fca9b3b72"} -2023-12-15T14:23:23.940Z INFO initializing dbft {"height": 674, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:23.941Z debug frostfs-node/morph.go:229 new block {"index": 673} -2023-12-15T14:23:24.361Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 673, "blockHeight": 673, "took": "3.372098ms"} -2023-12-15T14:23:24.941Z INFO sending PrepareRequest {"height": 674, "view": 0} -2023-12-15T14:23:24.941Z INFO sending Commit {"height": 674, "view": 0} -2023-12-15T14:23:24.941Z INFO approving block {"height": 674, "hash": "51360950064f8ca209278f3201747fdd78f92afc11b28d3ee99a4fd7dfc9ff71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e3c0a270503b4c9ecd5f239d14d38fab03efc97a5471d35abe3f8f24867c49e"} -2023-12-15T14:23:24.942Z INFO initializing dbft {"height": 675, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:24.943Z debug frostfs-node/morph.go:229 new block {"index": 674} -2023-12-15T14:23:25.363Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 674, "blockHeight": 674, "took": "4.842882ms"} -2023-12-15T14:23:25.942Z INFO sending PrepareRequest {"height": 675, "view": 0} -2023-12-15T14:23:25.942Z INFO sending Commit {"height": 675, "view": 0} -2023-12-15T14:23:25.943Z INFO approving block {"height": 675, "hash": "627065349999da68cfc3417d24ccb2e02834586f5004df30f511d9a8b1d4c79e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51360950064f8ca209278f3201747fdd78f92afc11b28d3ee99a4fd7dfc9ff71"} -2023-12-15T14:23:25.943Z INFO initializing dbft {"height": 676, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:25.944Z debug frostfs-node/morph.go:229 new block {"index": 675} -2023-12-15T14:23:26.361Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 675, "blockHeight": 675, "took": "2.696606ms"} -2023-12-15T14:23:26.943Z INFO sending PrepareRequest {"height": 676, "view": 0} -2023-12-15T14:23:26.944Z INFO sending Commit {"height": 676, "view": 0} -2023-12-15T14:23:26.944Z INFO approving block {"height": 676, "hash": "e0c505ff79352306c4b0eb03bbed1d34b263dcfba60544b77a139a35dde089e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "627065349999da68cfc3417d24ccb2e02834586f5004df30f511d9a8b1d4c79e"} -2023-12-15T14:23:26.945Z INFO initializing dbft {"height": 677, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:26.946Z debug frostfs-node/morph.go:229 new block {"index": 676} -2023-12-15T14:23:27.364Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 676, "blockHeight": 676, "took": "4.015149ms"} -2023-12-15T14:23:27.946Z INFO sending PrepareRequest {"height": 677, "view": 0} -2023-12-15T14:23:27.946Z INFO sending Commit {"height": 677, "view": 0} -2023-12-15T14:23:27.946Z INFO approving block {"height": 677, "hash": "3160203a2ce0faf23c771176769c9be9e8e52a768fc67578667362f47508e46f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0c505ff79352306c4b0eb03bbed1d34b263dcfba60544b77a139a35dde089e0"} -2023-12-15T14:23:27.947Z INFO initializing dbft {"height": 678, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:27.947Z debug frostfs-node/morph.go:229 new block {"index": 677} -2023-12-15T14:23:28.365Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 677, "blockHeight": 677, "took": "3.534564ms"} -2023-12-15T14:23:28.947Z INFO sending PrepareRequest {"height": 678, "view": 0} -2023-12-15T14:23:28.947Z INFO sending Commit {"height": 678, "view": 0} -2023-12-15T14:23:28.948Z INFO approving block {"height": 678, "hash": "12b0f2b396bb732bf2453e78371408cda48c01fa913241d277ae0cef76df4a67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3160203a2ce0faf23c771176769c9be9e8e52a768fc67578667362f47508e46f"} -2023-12-15T14:23:28.948Z INFO initializing dbft {"height": 679, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:28.949Z debug frostfs-node/morph.go:229 new block {"index": 678} -2023-12-15T14:23:29.365Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 678, "blockHeight": 678, "took": "3.43004ms"} -2023-12-15T14:23:29.949Z INFO sending PrepareRequest {"height": 679, "view": 0} -2023-12-15T14:23:29.949Z INFO sending Commit {"height": 679, "view": 0} -2023-12-15T14:23:29.949Z INFO approving block {"height": 679, "hash": "d2d13a7ea03df40377d4b3d51de03a52318a7b43f8a667a8392c8c3924e75728", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12b0f2b396bb732bf2453e78371408cda48c01fa913241d277ae0cef76df4a67"} -2023-12-15T14:23:29.950Z INFO initializing dbft {"height": 680, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:29.950Z debug frostfs-node/morph.go:229 new block {"index": 679} -2023-12-15T14:23:30.365Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 679, "blockHeight": 679, "took": "3.046919ms"} -2023-12-15T14:23:30.951Z INFO sending PrepareRequest {"height": 680, "view": 0} -2023-12-15T14:23:30.951Z INFO sending Commit {"height": 680, "view": 0} -2023-12-15T14:23:30.951Z INFO approving block {"height": 680, "hash": "86aa90e4d7624a6f243280f802fa30ddd847e9cc4d107844826a9500e4729035", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2d13a7ea03df40377d4b3d51de03a52318a7b43f8a667a8392c8c3924e75728"} -2023-12-15T14:23:30.952Z INFO initializing dbft {"height": 681, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:30.953Z debug frostfs-node/morph.go:229 new block {"index": 680} -2023-12-15T14:23:31.365Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 680, "blockHeight": 680, "took": "2.631087ms"} -2023-12-15T14:23:31.952Z INFO sending PrepareRequest {"height": 681, "view": 0} -2023-12-15T14:23:31.952Z INFO sending Commit {"height": 681, "view": 0} -2023-12-15T14:23:31.952Z INFO approving block {"height": 681, "hash": "0fb7f8e8ee5c62d3ea89683b71f4de7cf46345f0a9aedb3ef8622cb91cd0c890", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86aa90e4d7624a6f243280f802fa30ddd847e9cc4d107844826a9500e4729035"} -2023-12-15T14:23:31.953Z INFO initializing dbft {"height": 682, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:31.953Z debug frostfs-node/morph.go:229 new block {"index": 681} -2023-12-15T14:23:32.368Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 681, "blockHeight": 681, "took": "4.699455ms"} -2023-12-15T14:23:32.953Z INFO sending PrepareRequest {"height": 682, "view": 0} -2023-12-15T14:23:32.954Z INFO sending Commit {"height": 682, "view": 0} -2023-12-15T14:23:32.954Z INFO approving block {"height": 682, "hash": "0d19d7127840e2d43bebd702f3300a306b5bc61fb3f206fd8e86e6e860392ba2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fb7f8e8ee5c62d3ea89683b71f4de7cf46345f0a9aedb3ef8622cb91cd0c890"} -2023-12-15T14:23:32.955Z INFO initializing dbft {"height": 683, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:32.956Z debug frostfs-node/morph.go:229 new block {"index": 682} -2023-12-15T14:23:33.368Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 682, "blockHeight": 682, "took": "4.124701ms"} -2023-12-15T14:23:33.955Z INFO sending PrepareRequest {"height": 683, "view": 0} -2023-12-15T14:23:33.955Z INFO sending Commit {"height": 683, "view": 0} -2023-12-15T14:23:33.955Z INFO approving block {"height": 683, "hash": "11e38a75830db5ca79e57351d0924f64e90217b1bb31e7f41d9f393548c4cafe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d19d7127840e2d43bebd702f3300a306b5bc61fb3f206fd8e86e6e860392ba2"} -2023-12-15T14:23:33.956Z INFO initializing dbft {"height": 684, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:33.956Z debug frostfs-node/morph.go:229 new block {"index": 683} -2023-12-15T14:23:34.368Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 683, "blockHeight": 683, "took": "3.866993ms"} -2023-12-15T14:23:34.956Z INFO sending PrepareRequest {"height": 684, "view": 0} -2023-12-15T14:23:34.956Z INFO sending Commit {"height": 684, "view": 0} -2023-12-15T14:23:34.957Z INFO approving block {"height": 684, "hash": "7bcae1e53e21aba28c231f77c3726c2a76e14e7b3702776e3e3027e993628f87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11e38a75830db5ca79e57351d0924f64e90217b1bb31e7f41d9f393548c4cafe"} -2023-12-15T14:23:34.957Z INFO initializing dbft {"height": 685, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:34.958Z debug frostfs-node/morph.go:229 new block {"index": 684} -2023-12-15T14:23:35.369Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 684, "blockHeight": 684, "took": "4.287305ms"} -2023-12-15T14:23:35.958Z INFO sending PrepareRequest {"height": 685, "view": 0} -2023-12-15T14:23:35.959Z INFO sending Commit {"height": 685, "view": 0} -2023-12-15T14:23:35.959Z INFO approving block {"height": 685, "hash": "81bf688c2ff73a09eabc008ef8027abb554d1068b65061e9a2d1c623f61ff4c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bcae1e53e21aba28c231f77c3726c2a76e14e7b3702776e3e3027e993628f87"} -2023-12-15T14:23:35.961Z INFO initializing dbft {"height": 686, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:35.962Z debug frostfs-node/morph.go:229 new block {"index": 685} -2023-12-15T14:23:36.369Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 685, "blockHeight": 685, "took": "3.304047ms"} -2023-12-15T14:23:36.960Z INFO sending PrepareRequest {"height": 686, "view": 0} -2023-12-15T14:23:36.960Z INFO sending Commit {"height": 686, "view": 0} -2023-12-15T14:23:36.961Z INFO approving block {"height": 686, "hash": "9738b82893f37a2126c7a4ee88ca4044febd4c69692d63304fe2d0f2df0345fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81bf688c2ff73a09eabc008ef8027abb554d1068b65061e9a2d1c623f61ff4c0"} -2023-12-15T14:23:36.962Z INFO initializing dbft {"height": 687, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:36.963Z debug frostfs-node/morph.go:229 new block {"index": 686} -2023-12-15T14:23:37.369Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 686, "blockHeight": 686, "took": "2.627017ms"} -2023-12-15T14:23:37.962Z INFO sending PrepareRequest {"height": 687, "view": 0} -2023-12-15T14:23:37.962Z INFO sending Commit {"height": 687, "view": 0} -2023-12-15T14:23:37.963Z INFO approving block {"height": 687, "hash": "eaa6c68d84329b8b83bd0247dc86f9743d2ed3701a3d2ebb5e40cfddfd5e1654", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9738b82893f37a2126c7a4ee88ca4044febd4c69692d63304fe2d0f2df0345fa"} -2023-12-15T14:23:37.963Z INFO initializing dbft {"height": 688, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:37.964Z debug frostfs-node/morph.go:229 new block {"index": 687} -2023-12-15T14:23:38.373Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 687, "blockHeight": 687, "took": "6.210797ms"} -2023-12-15T14:23:38.963Z INFO sending PrepareRequest {"height": 688, "view": 0} -2023-12-15T14:23:38.963Z INFO sending Commit {"height": 688, "view": 0} -2023-12-15T14:23:38.963Z INFO approving block {"height": 688, "hash": "b708f67b1a5689504679692e85e633ba96e0c89d976843ef40cd368abb887b0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eaa6c68d84329b8b83bd0247dc86f9743d2ed3701a3d2ebb5e40cfddfd5e1654"} -2023-12-15T14:23:38.964Z INFO initializing dbft {"height": 689, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:38.965Z debug frostfs-node/morph.go:229 new block {"index": 688} -2023-12-15T14:23:39.372Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 688, "blockHeight": 688, "took": "4.920975ms"} -2023-12-15T14:23:39.964Z INFO sending PrepareRequest {"height": 689, "view": 0} -2023-12-15T14:23:39.964Z INFO sending Commit {"height": 689, "view": 0} -2023-12-15T14:23:39.964Z INFO approving block {"height": 689, "hash": "ff3789e8731179a606dd5860e1fcaa950dc9128ed5f08e51a47b8e097712a371", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b708f67b1a5689504679692e85e633ba96e0c89d976843ef40cd368abb887b0d"} -2023-12-15T14:23:39.965Z INFO initializing dbft {"height": 690, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:39.965Z debug frostfs-node/morph.go:229 new block {"index": 689} -2023-12-15T14:23:40.372Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 689, "blockHeight": 689, "took": "4.387253ms"} -2023-12-15T14:23:40.965Z INFO sending PrepareRequest {"height": 690, "view": 0} -2023-12-15T14:23:40.965Z INFO sending Commit {"height": 690, "view": 0} -2023-12-15T14:23:40.965Z INFO approving block {"height": 690, "hash": "3cfcf5b39ca08bcd35be85afe2fcb28be28f59ab066f0c6309c62b389310fc8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff3789e8731179a606dd5860e1fcaa950dc9128ed5f08e51a47b8e097712a371"} -2023-12-15T14:23:40.966Z INFO initializing dbft {"height": 691, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:40.966Z debug frostfs-node/morph.go:229 new block {"index": 690} -2023-12-15T14:23:41.371Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 690, "blockHeight": 690, "took": "2.903933ms"} -2023-12-15T14:23:41.967Z INFO sending PrepareRequest {"height": 691, "view": 0} -2023-12-15T14:23:41.967Z INFO sending Commit {"height": 691, "view": 0} -2023-12-15T14:23:41.967Z INFO approving block {"height": 691, "hash": "f117d462e4ece839fdc1b46e6f7290ca91e0e62845ef4f081b1c0577b34f9312", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cfcf5b39ca08bcd35be85afe2fcb28be28f59ab066f0c6309c62b389310fc8d"} -2023-12-15T14:23:41.968Z INFO initializing dbft {"height": 692, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:41.969Z debug frostfs-node/morph.go:229 new block {"index": 691} -2023-12-15T14:23:42.372Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 691, "blockHeight": 691, "took": "2.914395ms"} -2023-12-15T14:23:42.968Z INFO sending PrepareRequest {"height": 692, "view": 0} -2023-12-15T14:23:42.968Z INFO sending Commit {"height": 692, "view": 0} -2023-12-15T14:23:42.968Z INFO approving block {"height": 692, "hash": "6d2d034aaf2d2806d0fecf779598c0c5a5704482956afbafc46ce85b843afe2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f117d462e4ece839fdc1b46e6f7290ca91e0e62845ef4f081b1c0577b34f9312"} -2023-12-15T14:23:42.969Z INFO initializing dbft {"height": 693, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:42.970Z debug frostfs-node/morph.go:229 new block {"index": 692} -2023-12-15T14:23:43.375Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 692, "blockHeight": 692, "took": "5.737144ms"} -2023-12-15T14:23:43.969Z INFO sending PrepareRequest {"height": 693, "view": 0} -2023-12-15T14:23:43.969Z INFO sending Commit {"height": 693, "view": 0} -2023-12-15T14:23:43.970Z INFO approving block {"height": 693, "hash": "f1827449b120776f525ae7e6ab905562257791a01c46a6138ca9e3efce2ea487", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d2d034aaf2d2806d0fecf779598c0c5a5704482956afbafc46ce85b843afe2e"} -2023-12-15T14:23:43.970Z INFO initializing dbft {"height": 694, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:43.971Z debug frostfs-node/morph.go:229 new block {"index": 693} -2023-12-15T14:23:44.376Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 693, "blockHeight": 693, "took": "6.708804ms"} -2023-12-15T14:23:44.971Z INFO sending PrepareRequest {"height": 694, "view": 0} -2023-12-15T14:23:44.972Z INFO sending Commit {"height": 694, "view": 0} -2023-12-15T14:23:44.972Z INFO approving block {"height": 694, "hash": "713b2a2af4cb62d3f2df70c74058064d92b603e915268997c3af64031e8318ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1827449b120776f525ae7e6ab905562257791a01c46a6138ca9e3efce2ea487"} -2023-12-15T14:23:44.973Z INFO initializing dbft {"height": 695, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:44.974Z debug frostfs-node/morph.go:229 new block {"index": 694} -2023-12-15T14:23:45.376Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 694, "blockHeight": 694, "took": "5.963469ms"} -2023-12-15T14:23:45.974Z INFO sending PrepareRequest {"height": 695, "view": 0} -2023-12-15T14:23:45.974Z INFO sending Commit {"height": 695, "view": 0} -2023-12-15T14:23:45.974Z INFO approving block {"height": 695, "hash": "656adc6c4982616c19810693999deecac0fc87d3023d6eeba853d133e209c7dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "713b2a2af4cb62d3f2df70c74058064d92b603e915268997c3af64031e8318ff"} -2023-12-15T14:23:45.976Z INFO initializing dbft {"height": 696, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:45.976Z debug frostfs-node/morph.go:229 new block {"index": 695} -2023-12-15T14:23:46.375Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 695, "blockHeight": 695, "took": "4.578627ms"} -2023-12-15T14:23:46.975Z INFO sending PrepareRequest {"height": 696, "view": 0} -2023-12-15T14:23:46.975Z INFO sending Commit {"height": 696, "view": 0} -2023-12-15T14:23:46.975Z INFO approving block {"height": 696, "hash": "3b04204f6a679b852a38588f4f12bae930be2d4447ae8ac7c28e39c9d4ac8319", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "656adc6c4982616c19810693999deecac0fc87d3023d6eeba853d133e209c7dd"} -2023-12-15T14:23:46.976Z INFO initializing dbft {"height": 697, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:46.977Z debug frostfs-node/morph.go:229 new block {"index": 696} -2023-12-15T14:23:47.375Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 696, "blockHeight": 696, "took": "4.495454ms"} -2023-12-15T14:23:47.976Z INFO sending PrepareRequest {"height": 697, "view": 0} -2023-12-15T14:23:47.976Z INFO sending Commit {"height": 697, "view": 0} -2023-12-15T14:23:47.976Z INFO approving block {"height": 697, "hash": "2e3cb5a4ec77bb84199a075d496118aa3e5e0a8f441e4be9b9089e832cabe158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b04204f6a679b852a38588f4f12bae930be2d4447ae8ac7c28e39c9d4ac8319"} -2023-12-15T14:23:47.977Z INFO initializing dbft {"height": 698, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:47.978Z debug frostfs-node/morph.go:229 new block {"index": 697} -2023-12-15T14:23:48.374Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 697, "blockHeight": 697, "took": "2.752138ms"} -2023-12-15T14:23:48.977Z INFO sending PrepareRequest {"height": 698, "view": 0} -2023-12-15T14:23:48.977Z INFO sending Commit {"height": 698, "view": 0} -2023-12-15T14:23:48.977Z INFO approving block {"height": 698, "hash": "e8ef0c7fa68b13912a3702aa4cd8e83eecda8dd09cff86561ae33402af31a43a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e3cb5a4ec77bb84199a075d496118aa3e5e0a8f441e4be9b9089e832cabe158"} -2023-12-15T14:23:48.978Z INFO initializing dbft {"height": 699, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:48.979Z debug frostfs-node/morph.go:229 new block {"index": 698} -2023-12-15T14:23:49.376Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 698, "blockHeight": 698, "took": "3.800278ms"} -2023-12-15T14:23:49.978Z INFO sending PrepareRequest {"height": 699, "view": 0} -2023-12-15T14:23:49.978Z INFO sending Commit {"height": 699, "view": 0} -2023-12-15T14:23:49.978Z INFO approving block {"height": 699, "hash": "e5bb9784c5289d5460cd5828a026f2cae916f20f85a24e95000460495d9950cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8ef0c7fa68b13912a3702aa4cd8e83eecda8dd09cff86561ae33402af31a43a"} -2023-12-15T14:23:49.979Z INFO initializing dbft {"height": 700, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:49.980Z debug frostfs-node/morph.go:229 new block {"index": 699} -2023-12-15T14:23:50.377Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 699, "blockHeight": 699, "took": "4.082389ms"} -2023-12-15T14:23:50.980Z INFO sending PrepareRequest {"height": 700, "view": 0} -2023-12-15T14:23:50.980Z INFO sending Commit {"height": 700, "view": 0} -2023-12-15T14:23:50.980Z INFO approving block {"height": 700, "hash": "797ae08514c863dd67e6371aa7559e6065705c01a5145d3ab141b2f03ba129d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5bb9784c5289d5460cd5828a026f2cae916f20f85a24e95000460495d9950cc"} -2023-12-15T14:23:50.981Z INFO initializing dbft {"height": 701, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:50.981Z debug frostfs-node/morph.go:229 new block {"index": 700} -2023-12-15T14:23:51.377Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 700, "blockHeight": 700, "took": "4.129981ms"} -2023-12-15T14:23:51.981Z INFO sending PrepareRequest {"height": 701, "view": 0} -2023-12-15T14:23:51.981Z INFO sending Commit {"height": 701, "view": 0} -2023-12-15T14:23:51.982Z INFO approving block {"height": 701, "hash": "e6c2464474ac4dc99f148f6f114db537c8ea8a9e74c933071be2e37284c70a3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "797ae08514c863dd67e6371aa7559e6065705c01a5145d3ab141b2f03ba129d4"} -2023-12-15T14:23:51.982Z INFO initializing dbft {"height": 702, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:51.983Z debug frostfs-node/morph.go:229 new block {"index": 701} -2023-12-15T14:23:52.379Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 701, "blockHeight": 701, "took": "5.185162ms"} -2023-12-15T14:23:52.983Z INFO sending PrepareRequest {"height": 702, "view": 0} -2023-12-15T14:23:52.983Z INFO sending Commit {"height": 702, "view": 0} -2023-12-15T14:23:52.983Z INFO approving block {"height": 702, "hash": "a48902375a343b00480e79ed684094bf92e34fd9457e35cdfb7d8fd55754ceef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6c2464474ac4dc99f148f6f114db537c8ea8a9e74c933071be2e37284c70a3c"} -2023-12-15T14:23:52.984Z INFO initializing dbft {"height": 703, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:52.984Z debug frostfs-node/morph.go:229 new block {"index": 702} -2023-12-15T14:23:53.381Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 702, "blockHeight": 702, "took": "6.91699ms"} -2023-12-15T14:23:53.984Z INFO sending PrepareRequest {"height": 703, "view": 0} -2023-12-15T14:23:53.984Z INFO sending Commit {"height": 703, "view": 0} -2023-12-15T14:23:53.984Z INFO approving block {"height": 703, "hash": "49c683e52dca48799e01ff3153ff6101b750a9d69b1bc64a7dc452ea12110f18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a48902375a343b00480e79ed684094bf92e34fd9457e35cdfb7d8fd55754ceef"} -2023-12-15T14:23:53.985Z INFO initializing dbft {"height": 704, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:53.985Z debug frostfs-node/morph.go:229 new block {"index": 703} -2023-12-15T14:23:54.380Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 703, "blockHeight": 703, "took": "5.224653ms"} -2023-12-15T14:23:54.985Z INFO sending PrepareRequest {"height": 704, "view": 0} -2023-12-15T14:23:54.985Z INFO sending Commit {"height": 704, "view": 0} -2023-12-15T14:23:54.986Z INFO approving block {"height": 704, "hash": "e5bbb1f05cfaeb5ec3ade033e1c1c23fd34deabc4574e571f0c9d33dd18e1637", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49c683e52dca48799e01ff3153ff6101b750a9d69b1bc64a7dc452ea12110f18"} -2023-12-15T14:23:54.986Z INFO initializing dbft {"height": 705, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:54.987Z debug frostfs-node/morph.go:229 new block {"index": 704} -2023-12-15T14:23:55.378Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 704, "blockHeight": 704, "took": "3.643283ms"} -2023-12-15T14:23:55.986Z INFO sending PrepareRequest {"height": 705, "view": 0} -2023-12-15T14:23:55.986Z INFO sending Commit {"height": 705, "view": 0} -2023-12-15T14:23:55.986Z INFO approving block {"height": 705, "hash": "cbdf489329ed739f9e131da8b9858ff5743c19e6a0f72fdff4b404a26017eac6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5bbb1f05cfaeb5ec3ade033e1c1c23fd34deabc4574e571f0c9d33dd18e1637"} -2023-12-15T14:23:55.987Z INFO initializing dbft {"height": 706, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:55.987Z debug frostfs-node/morph.go:229 new block {"index": 705} -2023-12-15T14:23:56.383Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 705, "blockHeight": 705, "took": "7.080713ms"} -2023-12-15T14:23:56.987Z INFO sending PrepareRequest {"height": 706, "view": 0} -2023-12-15T14:23:56.987Z INFO sending Commit {"height": 706, "view": 0} -2023-12-15T14:23:56.988Z INFO approving block {"height": 706, "hash": "0a4c1e27b0e3d1f9add8a7e8900668db067b959f011bf7e6c55626e355ed6af6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbdf489329ed739f9e131da8b9858ff5743c19e6a0f72fdff4b404a26017eac6"} -2023-12-15T14:23:56.989Z INFO initializing dbft {"height": 707, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:56.990Z debug frostfs-node/morph.go:229 new block {"index": 706} -2023-12-15T14:23:57.379Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 706, "blockHeight": 706, "took": "2.574339ms"} -2023-12-15T14:23:57.988Z INFO sending PrepareRequest {"height": 707, "view": 0} -2023-12-15T14:23:57.989Z INFO sending Commit {"height": 707, "view": 0} -2023-12-15T14:23:57.989Z INFO approving block {"height": 707, "hash": "0c0bf5a3ad4011329c9af62b9fc1d010dc5dea91b31077f8646434e55f4324e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a4c1e27b0e3d1f9add8a7e8900668db067b959f011bf7e6c55626e355ed6af6"} -2023-12-15T14:23:57.990Z INFO initializing dbft {"height": 708, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:57.990Z debug frostfs-node/morph.go:229 new block {"index": 707} -2023-12-15T14:23:58.383Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 707, "blockHeight": 707, "took": "6.476719ms"} -2023-12-15T14:23:58.990Z INFO sending PrepareRequest {"height": 708, "view": 0} -2023-12-15T14:23:58.991Z INFO sending Commit {"height": 708, "view": 0} -2023-12-15T14:23:58.991Z INFO approving block {"height": 708, "hash": "41d4b9f74418431350e9a4c232e99857b80d74da8bb3a62a4fb49c5bef6053d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c0bf5a3ad4011329c9af62b9fc1d010dc5dea91b31077f8646434e55f4324e6"} -2023-12-15T14:23:58.992Z INFO initializing dbft {"height": 709, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:58.992Z debug frostfs-node/morph.go:229 new block {"index": 708} -2023-12-15T14:23:59.380Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 708, "blockHeight": 708, "took": "2.477823ms"} -2023-12-15T14:23:59.992Z INFO sending PrepareRequest {"height": 709, "view": 0} -2023-12-15T14:23:59.992Z INFO sending Commit {"height": 709, "view": 0} -2023-12-15T14:23:59.992Z INFO approving block {"height": 709, "hash": "7fd66123fb57050b66351b3665c0776cd23fff6bb10383ad6f004f68b0e4a492", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41d4b9f74418431350e9a4c232e99857b80d74da8bb3a62a4fb49c5bef6053d0"} -2023-12-15T14:23:59.993Z INFO initializing dbft {"height": 710, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:23:59.994Z debug frostfs-node/morph.go:229 new block {"index": 709} -2023-12-15T14:24:00.383Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 709, "blockHeight": 709, "took": "4.628885ms"} -2023-12-15T14:24:00.994Z INFO sending PrepareRequest {"height": 710, "view": 0} -2023-12-15T14:24:00.994Z INFO sending Commit {"height": 710, "view": 0} -2023-12-15T14:24:00.994Z INFO approving block {"height": 710, "hash": "2172f81f97c598121c8688f5fac82d9cada79af929e9ef73b9f56fe30960f459", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fd66123fb57050b66351b3665c0776cd23fff6bb10383ad6f004f68b0e4a492"} -2023-12-15T14:24:00.995Z INFO initializing dbft {"height": 711, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:00.995Z debug frostfs-node/morph.go:229 new block {"index": 710} -2023-12-15T14:24:01.385Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 710, "blockHeight": 710, "took": "6.096732ms"} -2023-12-15T14:24:01.995Z INFO sending PrepareRequest {"height": 711, "view": 0} -2023-12-15T14:24:01.996Z INFO sending Commit {"height": 711, "view": 0} -2023-12-15T14:24:01.996Z INFO approving block {"height": 711, "hash": "053f8a46ab26bc109431c2af06fb6588935f3d14b2ad234eb8cf482debdebc82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2172f81f97c598121c8688f5fac82d9cada79af929e9ef73b9f56fe30960f459"} -2023-12-15T14:24:01.997Z INFO initializing dbft {"height": 712, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:01.997Z debug frostfs-node/morph.go:229 new block {"index": 711} -2023-12-15T14:24:02.383Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 711, "blockHeight": 711, "took": "2.952486ms"} -2023-12-15T14:24:02.997Z INFO sending PrepareRequest {"height": 712, "view": 0} -2023-12-15T14:24:02.997Z INFO sending Commit {"height": 712, "view": 0} -2023-12-15T14:24:02.997Z INFO approving block {"height": 712, "hash": "d07e7673227fa0ec232c6148224eadab27cd464b4dabddb3e05ad121595651f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "053f8a46ab26bc109431c2af06fb6588935f3d14b2ad234eb8cf482debdebc82"} -2023-12-15T14:24:02.998Z INFO initializing dbft {"height": 713, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:02.998Z debug frostfs-node/morph.go:229 new block {"index": 712} -2023-12-15T14:24:03.384Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 712, "blockHeight": 712, "took": "4.287516ms"} -2023-12-15T14:24:03.998Z INFO sending PrepareRequest {"height": 713, "view": 0} -2023-12-15T14:24:03.999Z INFO sending Commit {"height": 713, "view": 0} -2023-12-15T14:24:03.999Z INFO approving block {"height": 713, "hash": "f1a1f925fd19f3a75af1e04aa0afde1db8808cdc3e7d3128341b9a7a5361ff39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d07e7673227fa0ec232c6148224eadab27cd464b4dabddb3e05ad121595651f6"} -2023-12-15T14:24:03.999Z INFO initializing dbft {"height": 714, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:04.000Z debug frostfs-node/morph.go:229 new block {"index": 713} -2023-12-15T14:24:04.385Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 713, "blockHeight": 713, "took": "4.533262ms"} -2023-12-15T14:24:05.000Z INFO sending PrepareRequest {"height": 714, "view": 0} -2023-12-15T14:24:05.000Z INFO sending Commit {"height": 714, "view": 0} -2023-12-15T14:24:05.000Z INFO approving block {"height": 714, "hash": "f1c26915a8e7bde528e8bf290e9d7e8b7fc6f699644093d5f4800da1087b4d31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1a1f925fd19f3a75af1e04aa0afde1db8808cdc3e7d3128341b9a7a5361ff39"} -2023-12-15T14:24:05.002Z INFO initializing dbft {"height": 715, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:05.003Z debug frostfs-node/morph.go:229 new block {"index": 714} -2023-12-15T14:24:05.384Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 714, "blockHeight": 714, "took": "3.138382ms"} -2023-12-15T14:24:06.000Z INFO sending PrepareRequest {"height": 715, "view": 0} -2023-12-15T14:24:06.001Z INFO sending Commit {"height": 715, "view": 0} -2023-12-15T14:24:06.001Z INFO approving block {"height": 715, "hash": "c365ad40422eb558ebcf5ab0160984bd61b65fc3cf8e3007ca4df0bce49d15ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1c26915a8e7bde528e8bf290e9d7e8b7fc6f699644093d5f4800da1087b4d31"} -2023-12-15T14:24:06.002Z INFO initializing dbft {"height": 716, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:06.003Z debug frostfs-node/morph.go:229 new block {"index": 715} -2023-12-15T14:24:06.389Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 715, "blockHeight": 715, "took": "6.989537ms"} -2023-12-15T14:24:07.002Z INFO sending PrepareRequest {"height": 716, "view": 0} -2023-12-15T14:24:07.002Z INFO sending Commit {"height": 716, "view": 0} -2023-12-15T14:24:07.002Z INFO approving block {"height": 716, "hash": "dbb35cbff2c17033316c2fcd3bf68e84d9cbf740c8536fb67b4c76f73e2cb141", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c365ad40422eb558ebcf5ab0160984bd61b65fc3cf8e3007ca4df0bce49d15ba"} -2023-12-15T14:24:07.003Z INFO initializing dbft {"height": 717, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:07.003Z debug frostfs-node/morph.go:229 new block {"index": 716} -2023-12-15T14:24:07.390Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 716, "blockHeight": 716, "took": "6.519741ms"} -2023-12-15T14:24:08.003Z INFO sending PrepareRequest {"height": 717, "view": 0} -2023-12-15T14:24:08.003Z INFO sending Commit {"height": 717, "view": 0} -2023-12-15T14:24:08.003Z INFO approving block {"height": 717, "hash": "759d1c675f087d372a5bb20a74471ae5d1d9f757c8afe28f4a837d5e55110781", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbb35cbff2c17033316c2fcd3bf68e84d9cbf740c8536fb67b4c76f73e2cb141"} -2023-12-15T14:24:08.004Z INFO initializing dbft {"height": 718, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:08.005Z debug frostfs-node/morph.go:229 new block {"index": 717} -2023-12-15T14:24:08.006Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:24:08.009Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:24:08.009Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:24:08.388Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 717, "blockHeight": 717, "took": "4.965906ms"} -2023-12-15T14:24:09.004Z INFO sending PrepareRequest {"height": 718, "view": 0} -2023-12-15T14:24:09.005Z INFO sending Commit {"height": 718, "view": 0} -2023-12-15T14:24:09.005Z INFO approving block {"height": 718, "hash": "c6b75702e0a2850a77aa8665936426d2bf2cd8549fe141c8479b04f1e41d1334", "tx_count": 2, "merkle": "7683a7696986e85c7746b0f58f5480db3aa7df9241e119713cc5a09c814d9b18", "prev": "759d1c675f087d372a5bb20a74471ae5d1d9f757c8afe28f4a837d5e55110781"} -2023-12-15T14:24:09.005Z INFO runtime log {"tx": "75dc9ab7fd39b1c4674dfcce5735005d6b90950f055f082bf3f18fc4ef9a2f5f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:24:09.006Z INFO runtime log {"tx": "75dc9ab7fd39b1c4674dfcce5735005d6b90950f055f082bf3f18fc4ef9a2f5f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:24:09.006Z INFO initializing dbft {"height": 719, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:09.007Z debug frostfs-node/morph.go:229 new block {"index": 718} -2023-12-15T14:24:09.393Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 718, "blockHeight": 718, "took": "8.967351ms"} -2023-12-15T14:24:10.006Z INFO sending PrepareRequest {"height": 719, "view": 0} -2023-12-15T14:24:10.006Z INFO sending Commit {"height": 719, "view": 0} -2023-12-15T14:24:10.006Z INFO approving block {"height": 719, "hash": "082242b2a7bc89a836ae76c3fc968c8c0817929223e0eddd6e88df60714971fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6b75702e0a2850a77aa8665936426d2bf2cd8549fe141c8479b04f1e41d1334"} -2023-12-15T14:24:10.007Z INFO initializing dbft {"height": 720, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:10.008Z debug frostfs-node/morph.go:229 new block {"index": 719} -2023-12-15T14:24:10.388Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 719, "blockHeight": 719, "took": "3.611672ms"} -2023-12-15T14:24:11.007Z INFO sending PrepareRequest {"height": 720, "view": 0} -2023-12-15T14:24:11.008Z INFO sending Commit {"height": 720, "view": 0} -2023-12-15T14:24:11.008Z INFO approving block {"height": 720, "hash": "b6493c3841033aefd6c0d2398d0c66620e19b3ff8e5879add9281e87f7513435", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "082242b2a7bc89a836ae76c3fc968c8c0817929223e0eddd6e88df60714971fe"} -2023-12-15T14:24:11.009Z INFO initializing dbft {"height": 721, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:11.010Z debug frostfs-node/morph.go:229 new block {"index": 720} -2023-12-15T14:24:11.390Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 720, "blockHeight": 720, "took": "4.905073ms"} -2023-12-15T14:24:12.009Z INFO sending PrepareRequest {"height": 721, "view": 0} -2023-12-15T14:24:12.010Z INFO sending Commit {"height": 721, "view": 0} -2023-12-15T14:24:12.010Z INFO approving block {"height": 721, "hash": "b037e6d99f78f83124d3002cbba6351ac2cad93b0e93cdc763cb888e0c63811f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6493c3841033aefd6c0d2398d0c66620e19b3ff8e5879add9281e87f7513435"} -2023-12-15T14:24:12.011Z INFO initializing dbft {"height": 722, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:12.012Z debug frostfs-node/morph.go:229 new block {"index": 721} -2023-12-15T14:24:12.015Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 3, "iteration": 3, "error": "no data for 2 iteration in 3 epoch for consumers's trusts"} -2023-12-15T14:24:12.389Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 721, "blockHeight": 721, "took": "3.345048ms"} -2023-12-15T14:24:13.012Z INFO sending PrepareRequest {"height": 722, "view": 0} -2023-12-15T14:24:13.013Z INFO sending Commit {"height": 722, "view": 0} -2023-12-15T14:24:13.013Z INFO approving block {"height": 722, "hash": "9162042dedba995b708828807c11922936b49c3d99ab02321774592bce69ca51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b037e6d99f78f83124d3002cbba6351ac2cad93b0e93cdc763cb888e0c63811f"} -2023-12-15T14:24:13.014Z INFO initializing dbft {"height": 723, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:13.015Z debug frostfs-node/morph.go:229 new block {"index": 722} -2023-12-15T14:24:13.016Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:24:13.018Z INFO runtime log {"tx": "48a1f67fc6d033ffaf8ffca35fd491ada38473f90695d40b9a88c4887bfba278", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:24:13.389Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 722, "blockHeight": 722, "took": "2.692809ms"} -2023-12-15T14:24:14.015Z INFO sending PrepareRequest {"height": 723, "view": 0} -2023-12-15T14:24:14.015Z INFO sending Commit {"height": 723, "view": 0} -2023-12-15T14:24:14.016Z INFO approving block {"height": 723, "hash": "f477530d24a5e28b55905d7e6360bb4bd2a29460faccdc3c4143a4fd30393eb6", "tx_count": 1, "merkle": "31d1c19a7a26deeecfdb3076ed9086d83d8c4f09509aab07cc9719c6d7db85bb", "prev": "9162042dedba995b708828807c11922936b49c3d99ab02321774592bce69ca51"} -2023-12-15T14:24:14.017Z INFO runtime log {"tx": "bb85dbd7c61997cc07ab9a50094f8c3dd88690ed7630dbcfeede267a9ac1d131", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:24:14.018Z INFO initializing dbft {"height": 724, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:14.019Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 5} -2023-12-15T14:24:14.019Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:24:14.019Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 5} -2023-12-15T14:24:14.019Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 5} -2023-12-15T14:24:14.019Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 5} -2023-12-15T14:24:14.019Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:24:14.019Z debug controller/calls.go:95 starting to report local trust values {"epoch": 4} -2023-12-15T14:24:14.019Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 4} -2023-12-15T14:24:14.020Z debug frostfs-node/morph.go:229 new block {"index": 723} -2023-12-15T14:24:14.019Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 5} -2023-12-15T14:24:14.022Z debug controller/calls.go:146 reporting successfully finished {"epoch": 4} -2023-12-15T14:24:14.022Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 4} -2023-12-15T14:24:14.023Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:24:14.026Z info client/notary.go:214 notary deposit invoke {"amount": 1718195477, "expire_at": 4294967295, "vub": 726, "tx_hash": "c1d9351d984ab94c2ca5c912bda67721d354f248231dd8afa82522c539867e67"} -2023-12-15T14:24:14.026Z INFO runtime log {"tx": "3ae9648a74caf5e7ca14036df68b005fb9a88c4d317c07206e63fb6373b83bcc", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:24:14.032Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:24:14.033Z info audit/handlers.go:13 new round of audit {"epoch": 5} -2023-12-15T14:24:14.033Z info settlement/calls.go:26 new audit settlement event {"epoch": 5} -2023-12-15T14:24:14.033Z info settlement/handlers.go:14 process audit settlements {"epoch": 5} -2023-12-15T14:24:14.033Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 5} -2023-12-15T14:24:14.034Z info settlement/handlers.go:18 audit processing finished {"epoch": 5} -2023-12-15T14:24:14.035Z info audit/process.go:39 select containers for audit {"epoch": 5, "amount": 0} -2023-12-15T14:24:14.037Z info client/notary.go:214 notary deposit invoke {"amount": 150029854020, "expire_at": 4294967295, "vub": 726, "tx_hash": "7029330570f52c1ba4a3e692b1543ee42009f454942d004c1c3c7556c3c6f3ec"} -2023-12-15T14:24:14.391Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 723, "blockHeight": 723, "took": "4.204107ms"} -2023-12-15T14:24:15.016Z INFO sending PrepareRequest {"height": 724, "view": 0} -2023-12-15T14:24:15.016Z INFO sending Commit {"height": 724, "view": 0} -2023-12-15T14:24:15.017Z INFO approving block {"height": 724, "hash": "43e0c11b39d18f4359f10a97c8618c0f063d74d3801d4b6ea84782fa4612cdda", "tx_count": 3, "merkle": "d09a84147e2b4558a3a515ecf46dfb978b9e4aa142da5c03ad942e9b004a2dfa", "prev": "f477530d24a5e28b55905d7e6360bb4bd2a29460faccdc3c4143a4fd30393eb6"} -2023-12-15T14:24:15.018Z INFO runtime log {"tx": "6e7db0ed607efce6a2c98fbc803cbfaaae10edfa0cedca18e5dd9620dbae68a8", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:24:15.019Z INFO initializing dbft {"height": 725, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:15.019Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 4} -2023-12-15T14:24:15.019Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 4} -2023-12-15T14:24:15.019Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 4} -2023-12-15T14:24:15.020Z debug frostfs-node/morph.go:229 new block {"index": 724} -2023-12-15T14:24:15.390Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 724, "blockHeight": 724, "took": "3.007769ms"} -2023-12-15T14:24:16.017Z INFO sending PrepareRequest {"height": 725, "view": 0} -2023-12-15T14:24:16.018Z INFO sending Commit {"height": 725, "view": 0} -2023-12-15T14:24:16.018Z INFO approving block {"height": 725, "hash": "8ba7a3f2e85461fdf53acbd24e7049c2c7daeea826bb01413f8b97f5f9889e6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43e0c11b39d18f4359f10a97c8618c0f063d74d3801d4b6ea84782fa4612cdda"} -2023-12-15T14:24:16.019Z INFO initializing dbft {"height": 726, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:16.019Z debug frostfs-node/morph.go:229 new block {"index": 725} -2023-12-15T14:24:16.393Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 725, "blockHeight": 725, "took": "4.665247ms"} -2023-12-15T14:24:17.019Z INFO sending PrepareRequest {"height": 726, "view": 0} -2023-12-15T14:24:17.019Z INFO sending Commit {"height": 726, "view": 0} -2023-12-15T14:24:17.019Z INFO approving block {"height": 726, "hash": "7acebbdd49746a2b41acbadc1a44304cceaa8f1024cc46d294973d36154cc753", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ba7a3f2e85461fdf53acbd24e7049c2c7daeea826bb01413f8b97f5f9889e6d"} -2023-12-15T14:24:17.020Z INFO initializing dbft {"height": 727, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:17.021Z debug frostfs-node/morph.go:229 new block {"index": 726} -2023-12-15T14:24:17.392Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 726, "blockHeight": 726, "took": "3.347614ms"} -2023-12-15T14:24:18.020Z INFO sending PrepareRequest {"height": 727, "view": 0} -2023-12-15T14:24:18.021Z INFO sending Commit {"height": 727, "view": 0} -2023-12-15T14:24:18.021Z INFO approving block {"height": 727, "hash": "9d5d6cdb3ad9ff5a1b99da1eee39dc60e0d7aef5b44e7e5a9ba36ec96130b3fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7acebbdd49746a2b41acbadc1a44304cceaa8f1024cc46d294973d36154cc753"} -2023-12-15T14:24:18.022Z INFO initializing dbft {"height": 728, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:18.022Z debug frostfs-node/morph.go:229 new block {"index": 727} -2023-12-15T14:24:18.393Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 727, "blockHeight": 727, "took": "4.638337ms"} -2023-12-15T14:24:19.022Z INFO sending PrepareRequest {"height": 728, "view": 0} -2023-12-15T14:24:19.022Z INFO sending Commit {"height": 728, "view": 0} -2023-12-15T14:24:19.022Z INFO approving block {"height": 728, "hash": "0a39595eab8bc5741191d33e599913fc430c6d612aefc0f20c77890f9f359718", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d5d6cdb3ad9ff5a1b99da1eee39dc60e0d7aef5b44e7e5a9ba36ec96130b3fe"} -2023-12-15T14:24:19.023Z INFO initializing dbft {"height": 729, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:19.024Z debug frostfs-node/morph.go:229 new block {"index": 728} -2023-12-15T14:24:19.393Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 728, "blockHeight": 728, "took": "3.982738ms"} -2023-12-15T14:24:20.024Z INFO sending PrepareRequest {"height": 729, "view": 0} -2023-12-15T14:24:20.024Z INFO sending Commit {"height": 729, "view": 0} -2023-12-15T14:24:20.024Z INFO approving block {"height": 729, "hash": "d803b2913846852930da5f8ec3d37e872adb1e557d049fe72ab9274bff13f5cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a39595eab8bc5741191d33e599913fc430c6d612aefc0f20c77890f9f359718"} -2023-12-15T14:24:20.025Z INFO initializing dbft {"height": 730, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:20.025Z debug frostfs-node/morph.go:229 new block {"index": 729} -2023-12-15T14:24:20.394Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 729, "blockHeight": 729, "took": "4.664177ms"} -2023-12-15T14:24:21.025Z INFO sending PrepareRequest {"height": 730, "view": 0} -2023-12-15T14:24:21.025Z INFO sending Commit {"height": 730, "view": 0} -2023-12-15T14:24:21.026Z INFO approving block {"height": 730, "hash": "05b12e2a0a6aaea9248bf0aa7129b19136520b3b77e1283ecf511afaf6e56038", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d803b2913846852930da5f8ec3d37e872adb1e557d049fe72ab9274bff13f5cc"} -2023-12-15T14:24:21.027Z INFO initializing dbft {"height": 731, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:21.028Z debug frostfs-node/morph.go:229 new block {"index": 730} -2023-12-15T14:24:21.396Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 730, "blockHeight": 730, "took": "5.169649ms"} -2023-12-15T14:24:22.026Z INFO sending PrepareRequest {"height": 731, "view": 0} -2023-12-15T14:24:22.026Z INFO sending Commit {"height": 731, "view": 0} -2023-12-15T14:24:22.027Z INFO approving block {"height": 731, "hash": "904d51e565a08f31f45adb2a37c50acd02ac1c5891dd925336e775d92387fafb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05b12e2a0a6aaea9248bf0aa7129b19136520b3b77e1283ecf511afaf6e56038"} -2023-12-15T14:24:22.028Z INFO initializing dbft {"height": 732, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:22.028Z debug frostfs-node/morph.go:229 new block {"index": 731} -2023-12-15T14:24:22.394Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 731, "blockHeight": 731, "took": "2.771651ms"} -2023-12-15T14:24:23.027Z INFO sending PrepareRequest {"height": 732, "view": 0} -2023-12-15T14:24:23.028Z INFO sending Commit {"height": 732, "view": 0} -2023-12-15T14:24:23.028Z INFO approving block {"height": 732, "hash": "e94ed6e529328f2fd19b337353cda611f1431c7f3f0730d57337d0bc4e15eea5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "904d51e565a08f31f45adb2a37c50acd02ac1c5891dd925336e775d92387fafb"} -2023-12-15T14:24:23.029Z INFO initializing dbft {"height": 733, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:23.030Z debug frostfs-node/morph.go:229 new block {"index": 732} -2023-12-15T14:24:23.396Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 732, "blockHeight": 732, "took": "3.183183ms"} -2023-12-15T14:24:24.029Z INFO sending PrepareRequest {"height": 733, "view": 0} -2023-12-15T14:24:24.029Z INFO sending Commit {"height": 733, "view": 0} -2023-12-15T14:24:24.029Z INFO approving block {"height": 733, "hash": "ecfd5b30eaace52c3a30eab916796d97115f2da06701523631740c35ac94f243", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e94ed6e529328f2fd19b337353cda611f1431c7f3f0730d57337d0bc4e15eea5"} -2023-12-15T14:24:24.030Z INFO initializing dbft {"height": 734, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:24.030Z debug frostfs-node/morph.go:229 new block {"index": 733} -2023-12-15T14:24:24.396Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 733, "blockHeight": 733, "took": "2.76575ms"} -2023-12-15T14:24:25.030Z INFO sending PrepareRequest {"height": 734, "view": 0} -2023-12-15T14:24:25.030Z INFO sending Commit {"height": 734, "view": 0} -2023-12-15T14:24:25.030Z INFO approving block {"height": 734, "hash": "48af5faebc777f7c43dd880be3ac713e7ccee311131924903d3438d6d1a402f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecfd5b30eaace52c3a30eab916796d97115f2da06701523631740c35ac94f243"} -2023-12-15T14:24:25.031Z INFO initializing dbft {"height": 735, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:25.031Z debug frostfs-node/morph.go:229 new block {"index": 734} -2023-12-15T14:24:25.397Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 734, "blockHeight": 734, "took": "3.817412ms"} -2023-12-15T14:24:26.032Z INFO sending PrepareRequest {"height": 735, "view": 0} -2023-12-15T14:24:26.032Z INFO sending Commit {"height": 735, "view": 0} -2023-12-15T14:24:26.032Z INFO approving block {"height": 735, "hash": "6dfaddbc22e56d212562204ac33705da785f2a3b2ecb2ac61b7434ec34ff1dcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48af5faebc777f7c43dd880be3ac713e7ccee311131924903d3438d6d1a402f4"} -2023-12-15T14:24:26.033Z INFO initializing dbft {"height": 736, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:26.033Z debug frostfs-node/morph.go:229 new block {"index": 735} -2023-12-15T14:24:26.398Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 735, "blockHeight": 735, "took": "3.880011ms"} -2023-12-15T14:24:27.032Z INFO sending PrepareRequest {"height": 736, "view": 0} -2023-12-15T14:24:27.033Z INFO sending Commit {"height": 736, "view": 0} -2023-12-15T14:24:27.033Z INFO approving block {"height": 736, "hash": "da5f0fa3b210e633199d6928f71689ee37dcb879e541c21d44e8e4fde8b9d0b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dfaddbc22e56d212562204ac33705da785f2a3b2ecb2ac61b7434ec34ff1dcc"} -2023-12-15T14:24:27.033Z INFO initializing dbft {"height": 737, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:27.034Z debug frostfs-node/morph.go:229 new block {"index": 736} -2023-12-15T14:24:27.399Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 736, "blockHeight": 736, "took": "4.2409ms"} -2023-12-15T14:24:28.034Z INFO sending PrepareRequest {"height": 737, "view": 0} -2023-12-15T14:24:28.034Z INFO sending Commit {"height": 737, "view": 0} -2023-12-15T14:24:28.035Z INFO approving block {"height": 737, "hash": "ff13f5026b32255c0466f317ccb90829aec814cf7dee624e68261cec79c50edd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da5f0fa3b210e633199d6928f71689ee37dcb879e541c21d44e8e4fde8b9d0b5"} -2023-12-15T14:24:28.036Z INFO initializing dbft {"height": 738, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:28.036Z debug frostfs-node/morph.go:229 new block {"index": 737} -2023-12-15T14:24:28.399Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 737, "blockHeight": 737, "took": "3.271772ms"} -2023-12-15T14:24:29.035Z INFO sending PrepareRequest {"height": 738, "view": 0} -2023-12-15T14:24:29.036Z INFO sending Commit {"height": 738, "view": 0} -2023-12-15T14:24:29.036Z INFO approving block {"height": 738, "hash": "05e70f83381325162cd85b04319c8236b10d286d47cfd19e1da6cceae004229d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff13f5026b32255c0466f317ccb90829aec814cf7dee624e68261cec79c50edd"} -2023-12-15T14:24:29.037Z INFO initializing dbft {"height": 739, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:29.037Z debug frostfs-node/morph.go:229 new block {"index": 738} -2023-12-15T14:24:29.398Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 738, "blockHeight": 738, "took": "2.835034ms"} -2023-12-15T14:24:30.037Z INFO sending PrepareRequest {"height": 739, "view": 0} -2023-12-15T14:24:30.037Z INFO sending Commit {"height": 739, "view": 0} -2023-12-15T14:24:30.037Z INFO approving block {"height": 739, "hash": "e95ece7e80f61b03a2a06edfdbde10a8d9b3cbbfa5cfce22141b40d2aeb1615c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05e70f83381325162cd85b04319c8236b10d286d47cfd19e1da6cceae004229d"} -2023-12-15T14:24:30.038Z INFO initializing dbft {"height": 740, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:30.039Z debug frostfs-node/morph.go:229 new block {"index": 739} -2023-12-15T14:24:30.401Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 739, "blockHeight": 739, "took": "5.317192ms"} -2023-12-15T14:24:31.039Z INFO sending PrepareRequest {"height": 740, "view": 0} -2023-12-15T14:24:31.039Z INFO sending Commit {"height": 740, "view": 0} -2023-12-15T14:24:31.039Z INFO approving block {"height": 740, "hash": "8a5809a391b8e3f8a4c6c9a6e61e7249fa6a5e418fcf007a899eea18790aa1b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e95ece7e80f61b03a2a06edfdbde10a8d9b3cbbfa5cfce22141b40d2aeb1615c"} -2023-12-15T14:24:31.040Z INFO initializing dbft {"height": 741, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:31.041Z debug frostfs-node/morph.go:229 new block {"index": 740} -2023-12-15T14:24:31.400Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 740, "blockHeight": 740, "took": "2.828377ms"} -2023-12-15T14:24:32.041Z INFO sending PrepareRequest {"height": 741, "view": 0} -2023-12-15T14:24:32.041Z INFO sending Commit {"height": 741, "view": 0} -2023-12-15T14:24:32.042Z INFO approving block {"height": 741, "hash": "e4e0dd9e1cb6ad73623e768440660cc417bf3a98e01db0ccb1e0a8663bebdea7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a5809a391b8e3f8a4c6c9a6e61e7249fa6a5e418fcf007a899eea18790aa1b4"} -2023-12-15T14:24:32.043Z INFO initializing dbft {"height": 742, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:32.043Z debug frostfs-node/morph.go:229 new block {"index": 741} -2023-12-15T14:24:32.404Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 741, "blockHeight": 741, "took": "5.745248ms"} -2023-12-15T14:24:33.042Z INFO sending PrepareRequest {"height": 742, "view": 0} -2023-12-15T14:24:33.043Z INFO sending Commit {"height": 742, "view": 0} -2023-12-15T14:24:33.043Z INFO approving block {"height": 742, "hash": "3c9a124b48e820925789099d04a968dbcc48192a077d12060dfe5e926732d43a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4e0dd9e1cb6ad73623e768440660cc417bf3a98e01db0ccb1e0a8663bebdea7"} -2023-12-15T14:24:33.044Z INFO initializing dbft {"height": 743, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:33.044Z debug frostfs-node/morph.go:229 new block {"index": 742} -2023-12-15T14:24:33.402Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 742, "blockHeight": 742, "took": "3.816225ms"} -2023-12-15T14:24:34.044Z INFO sending PrepareRequest {"height": 743, "view": 0} -2023-12-15T14:24:34.044Z INFO sending Commit {"height": 743, "view": 0} -2023-12-15T14:24:34.044Z INFO approving block {"height": 743, "hash": "f6b147372d559091c00294db489f7546f1fbe236b9aeab24d777ea3d34592ef9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c9a124b48e820925789099d04a968dbcc48192a077d12060dfe5e926732d43a"} -2023-12-15T14:24:34.045Z INFO initializing dbft {"height": 744, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:34.045Z debug frostfs-node/morph.go:229 new block {"index": 743} -2023-12-15T14:24:34.404Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 743, "blockHeight": 743, "took": "5.576063ms"} -2023-12-15T14:24:35.045Z INFO sending PrepareRequest {"height": 744, "view": 0} -2023-12-15T14:24:35.045Z INFO sending Commit {"height": 744, "view": 0} -2023-12-15T14:24:35.046Z INFO approving block {"height": 744, "hash": "4c2d23dba0f13c33d92f67c19a50079c48351673b45996eed5d6b800d91ff327", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6b147372d559091c00294db489f7546f1fbe236b9aeab24d777ea3d34592ef9"} -2023-12-15T14:24:35.047Z INFO initializing dbft {"height": 745, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:35.047Z debug frostfs-node/morph.go:229 new block {"index": 744} -2023-12-15T14:24:35.405Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 744, "blockHeight": 744, "took": "5.311795ms"} -2023-12-15T14:24:36.046Z INFO sending PrepareRequest {"height": 745, "view": 0} -2023-12-15T14:24:36.047Z INFO sending Commit {"height": 745, "view": 0} -2023-12-15T14:24:36.047Z INFO approving block {"height": 745, "hash": "b3ad02835b3b524f886ae274ec459aa36accc1ab468d646488edd9a6b3030cd3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c2d23dba0f13c33d92f67c19a50079c48351673b45996eed5d6b800d91ff327"} -2023-12-15T14:24:36.048Z INFO initializing dbft {"height": 746, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:36.048Z debug frostfs-node/morph.go:229 new block {"index": 745} -2023-12-15T14:24:36.403Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 745, "blockHeight": 745, "took": "3.42642ms"} -2023-12-15T14:24:37.048Z INFO sending PrepareRequest {"height": 746, "view": 0} -2023-12-15T14:24:37.049Z INFO sending Commit {"height": 746, "view": 0} -2023-12-15T14:24:37.049Z INFO approving block {"height": 746, "hash": "eac03f196fd786e5c87b75e73393c5937d201fb2dc96085a70c760f44dd758dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3ad02835b3b524f886ae274ec459aa36accc1ab468d646488edd9a6b3030cd3"} -2023-12-15T14:24:37.050Z INFO initializing dbft {"height": 747, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:37.051Z debug frostfs-node/morph.go:229 new block {"index": 746} -2023-12-15T14:24:37.406Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 746, "blockHeight": 746, "took": "4.945987ms"} -2023-12-15T14:24:38.050Z INFO sending PrepareRequest {"height": 747, "view": 0} -2023-12-15T14:24:38.051Z INFO sending Commit {"height": 747, "view": 0} -2023-12-15T14:24:38.051Z INFO approving block {"height": 747, "hash": "42a8aeb25c0073e4d26dc4c3f7c1f896959b470d492d29221f404ce0fde700ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eac03f196fd786e5c87b75e73393c5937d201fb2dc96085a70c760f44dd758dc"} -2023-12-15T14:24:38.052Z INFO initializing dbft {"height": 748, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:38.053Z debug frostfs-node/morph.go:229 new block {"index": 747} -2023-12-15T14:24:38.408Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 747, "blockHeight": 747, "took": "6.227265ms"} -2023-12-15T14:24:39.052Z INFO sending PrepareRequest {"height": 748, "view": 0} -2023-12-15T14:24:39.052Z INFO sending Commit {"height": 748, "view": 0} -2023-12-15T14:24:39.053Z INFO approving block {"height": 748, "hash": "4860e8a342c353a68aa760cb590925be168d5b6af4d40fd976502062d39cf802", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42a8aeb25c0073e4d26dc4c3f7c1f896959b470d492d29221f404ce0fde700ee"} -2023-12-15T14:24:39.055Z INFO initializing dbft {"height": 749, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:39.055Z debug frostfs-node/morph.go:229 new block {"index": 748} -2023-12-15T14:24:39.405Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 748, "blockHeight": 748, "took": "2.684728ms"} -2023-12-15T14:24:40.054Z INFO sending PrepareRequest {"height": 749, "view": 0} -2023-12-15T14:24:40.054Z INFO sending Commit {"height": 749, "view": 0} -2023-12-15T14:24:40.055Z INFO approving block {"height": 749, "hash": "b46f17e887067164e2c9f1ad0c6d910e61ddd0a97e787ed95a4d526cb045a01a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4860e8a342c353a68aa760cb590925be168d5b6af4d40fd976502062d39cf802"} -2023-12-15T14:24:40.055Z INFO initializing dbft {"height": 750, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:40.056Z debug frostfs-node/morph.go:229 new block {"index": 749} -2023-12-15T14:24:40.407Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 749, "blockHeight": 749, "took": "4.159002ms"} -2023-12-15T14:24:41.056Z INFO sending PrepareRequest {"height": 750, "view": 0} -2023-12-15T14:24:41.056Z INFO sending Commit {"height": 750, "view": 0} -2023-12-15T14:24:41.056Z INFO approving block {"height": 750, "hash": "fdad4b8c9fe42960c4b7c51b33f2f204b4edc69bb419bd92b2fa303a1cd30281", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b46f17e887067164e2c9f1ad0c6d910e61ddd0a97e787ed95a4d526cb045a01a"} -2023-12-15T14:24:41.057Z INFO initializing dbft {"height": 751, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:41.057Z debug frostfs-node/morph.go:229 new block {"index": 750} -2023-12-15T14:24:41.408Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 750, "blockHeight": 750, "took": "5.217812ms"} -2023-12-15T14:24:42.057Z INFO sending PrepareRequest {"height": 751, "view": 0} -2023-12-15T14:24:42.057Z INFO sending Commit {"height": 751, "view": 0} -2023-12-15T14:24:42.058Z INFO approving block {"height": 751, "hash": "7370e65cd6ebe89b3cffbb2bdc6dd775aac14073ad5623e9e8b67b60df4ced28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdad4b8c9fe42960c4b7c51b33f2f204b4edc69bb419bd92b2fa303a1cd30281"} -2023-12-15T14:24:42.058Z INFO initializing dbft {"height": 752, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:42.059Z debug frostfs-node/morph.go:229 new block {"index": 751} -2023-12-15T14:24:42.407Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 751, "blockHeight": 751, "took": "3.662484ms"} -2023-12-15T14:24:43.059Z INFO sending PrepareRequest {"height": 752, "view": 0} -2023-12-15T14:24:43.059Z INFO sending Commit {"height": 752, "view": 0} -2023-12-15T14:24:43.059Z INFO approving block {"height": 752, "hash": "73ed293244ff32a29fecd8736ccd6ed33cc9dbfc070e36c3f3919da8963a1342", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7370e65cd6ebe89b3cffbb2bdc6dd775aac14073ad5623e9e8b67b60df4ced28"} -2023-12-15T14:24:43.060Z INFO initializing dbft {"height": 753, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:43.060Z debug frostfs-node/morph.go:229 new block {"index": 752} -2023-12-15T14:24:43.410Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 752, "blockHeight": 752, "took": "5.60201ms"} -2023-12-15T14:24:44.061Z INFO sending PrepareRequest {"height": 753, "view": 0} -2023-12-15T14:24:44.061Z INFO sending Commit {"height": 753, "view": 0} -2023-12-15T14:24:44.061Z INFO approving block {"height": 753, "hash": "da46dbd56df4c7d338ce1eaae63942119e4ddfa172f102bab53bf32940042365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73ed293244ff32a29fecd8736ccd6ed33cc9dbfc070e36c3f3919da8963a1342"} -2023-12-15T14:24:44.063Z INFO initializing dbft {"height": 754, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:44.063Z debug frostfs-node/morph.go:229 new block {"index": 753} -2023-12-15T14:24:44.411Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 753, "blockHeight": 753, "took": "6.32852ms"} -2023-12-15T14:24:45.062Z INFO sending PrepareRequest {"height": 754, "view": 0} -2023-12-15T14:24:45.062Z INFO sending Commit {"height": 754, "view": 0} -2023-12-15T14:24:45.063Z INFO approving block {"height": 754, "hash": "ba51fad09a60d4f0803c9624a9b9ef74cc6ab90735f4ae725347c3eff81d571d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da46dbd56df4c7d338ce1eaae63942119e4ddfa172f102bab53bf32940042365"} -2023-12-15T14:24:45.065Z INFO initializing dbft {"height": 755, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:45.066Z debug frostfs-node/morph.go:229 new block {"index": 754} -2023-12-15T14:24:45.410Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 754, "blockHeight": 754, "took": "4.332803ms"} -2023-12-15T14:24:46.064Z INFO sending PrepareRequest {"height": 755, "view": 0} -2023-12-15T14:24:46.064Z INFO sending Commit {"height": 755, "view": 0} -2023-12-15T14:24:46.064Z INFO approving block {"height": 755, "hash": "6f0228f8d6255aa0200da22e9527bc4dadf3cfdd145cc7b0503f735551f2df65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba51fad09a60d4f0803c9624a9b9ef74cc6ab90735f4ae725347c3eff81d571d"} -2023-12-15T14:24:46.066Z INFO initializing dbft {"height": 756, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:46.066Z debug frostfs-node/morph.go:229 new block {"index": 755} -2023-12-15T14:24:46.414Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 755, "blockHeight": 755, "took": "7.650807ms"} -2023-12-15T14:24:47.065Z INFO sending PrepareRequest {"height": 756, "view": 0} -2023-12-15T14:24:47.065Z INFO sending Commit {"height": 756, "view": 0} -2023-12-15T14:24:47.066Z INFO approving block {"height": 756, "hash": "0c5674132d23153c954bb7d012ed2a6ea6779301979fe33af61d150d449f19f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f0228f8d6255aa0200da22e9527bc4dadf3cfdd145cc7b0503f735551f2df65"} -2023-12-15T14:24:47.067Z INFO initializing dbft {"height": 757, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:47.068Z debug frostfs-node/morph.go:229 new block {"index": 756} -2023-12-15T14:24:47.412Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 756, "blockHeight": 756, "took": "5.456755ms"} -2023-12-15T14:24:48.067Z INFO sending PrepareRequest {"height": 757, "view": 0} -2023-12-15T14:24:48.067Z INFO sending Commit {"height": 757, "view": 0} -2023-12-15T14:24:48.067Z INFO approving block {"height": 757, "hash": "4fe3067b1436d6bb3b2e669617d7dbd196cc94b69881910e34c68bb551190679", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c5674132d23153c954bb7d012ed2a6ea6779301979fe33af61d150d449f19f2"} -2023-12-15T14:24:48.069Z INFO initializing dbft {"height": 758, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:48.069Z debug frostfs-node/morph.go:229 new block {"index": 757} -2023-12-15T14:24:48.412Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 757, "blockHeight": 757, "took": "4.929195ms"} -2023-12-15T14:24:49.069Z INFO sending PrepareRequest {"height": 758, "view": 0} -2023-12-15T14:24:49.069Z INFO sending Commit {"height": 758, "view": 0} -2023-12-15T14:24:49.070Z INFO approving block {"height": 758, "hash": "8446c249bf4b13528c659443af129e75425a15015423680bf6d0310adf14ecfb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fe3067b1436d6bb3b2e669617d7dbd196cc94b69881910e34c68bb551190679"} -2023-12-15T14:24:49.071Z INFO initializing dbft {"height": 759, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:49.072Z debug frostfs-node/morph.go:229 new block {"index": 758} -2023-12-15T14:24:49.413Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 758, "blockHeight": 758, "took": "4.76212ms"} -2023-12-15T14:24:50.071Z INFO sending PrepareRequest {"height": 759, "view": 0} -2023-12-15T14:24:50.071Z INFO sending Commit {"height": 759, "view": 0} -2023-12-15T14:24:50.072Z INFO approving block {"height": 759, "hash": "428a79251500c79137d19a8ee5ce24474783620cea4f9b31171792a61fdd4e52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8446c249bf4b13528c659443af129e75425a15015423680bf6d0310adf14ecfb"} -2023-12-15T14:24:50.073Z INFO initializing dbft {"height": 760, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:50.074Z debug frostfs-node/morph.go:229 new block {"index": 759} -2023-12-15T14:24:50.416Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 759, "blockHeight": 759, "took": "6.254936ms"} -2023-12-15T14:24:51.073Z INFO sending PrepareRequest {"height": 760, "view": 0} -2023-12-15T14:24:51.073Z INFO sending Commit {"height": 760, "view": 0} -2023-12-15T14:24:51.074Z INFO approving block {"height": 760, "hash": "e15338ecf99acf9b56fe4a78896ebb963540be21e8b3a27cff25a58fb496b4b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "428a79251500c79137d19a8ee5ce24474783620cea4f9b31171792a61fdd4e52"} -2023-12-15T14:24:51.075Z INFO initializing dbft {"height": 761, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:51.076Z debug frostfs-node/morph.go:229 new block {"index": 760} -2023-12-15T14:24:51.414Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 760, "blockHeight": 760, "took": "3.89837ms"} -2023-12-15T14:24:52.074Z INFO sending PrepareRequest {"height": 761, "view": 0} -2023-12-15T14:24:52.075Z INFO sending Commit {"height": 761, "view": 0} -2023-12-15T14:24:52.075Z INFO approving block {"height": 761, "hash": "1f72f0938ed4b660c7c94dc79b77b695eb84bf2370ee3773555f1ae9bb4ca676", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e15338ecf99acf9b56fe4a78896ebb963540be21e8b3a27cff25a58fb496b4b6"} -2023-12-15T14:24:52.076Z INFO initializing dbft {"height": 762, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:52.076Z debug frostfs-node/morph.go:229 new block {"index": 761} -2023-12-15T14:24:52.414Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 761, "blockHeight": 761, "took": "2.877555ms"} -2023-12-15T14:24:53.076Z INFO sending PrepareRequest {"height": 762, "view": 0} -2023-12-15T14:24:53.076Z INFO sending Commit {"height": 762, "view": 0} -2023-12-15T14:24:53.076Z INFO approving block {"height": 762, "hash": "c88957190c8af6dc91cec7e9a7056fa395d9495286e37d50bcf4b0d437c1989b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f72f0938ed4b660c7c94dc79b77b695eb84bf2370ee3773555f1ae9bb4ca676"} -2023-12-15T14:24:53.077Z INFO initializing dbft {"height": 763, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:53.078Z debug frostfs-node/morph.go:229 new block {"index": 762} -2023-12-15T14:24:53.416Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 762, "blockHeight": 762, "took": "4.530287ms"} -2023-12-15T14:24:54.078Z INFO sending PrepareRequest {"height": 763, "view": 0} -2023-12-15T14:24:54.078Z INFO sending Commit {"height": 763, "view": 0} -2023-12-15T14:24:54.079Z INFO approving block {"height": 763, "hash": "6ad9dd731149a9ef32be77d8d5a73dae41dfe13b4b37cfcb7fb5169d70cbd3ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c88957190c8af6dc91cec7e9a7056fa395d9495286e37d50bcf4b0d437c1989b"} -2023-12-15T14:24:54.080Z INFO initializing dbft {"height": 764, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:54.080Z debug frostfs-node/morph.go:229 new block {"index": 763} -2023-12-15T14:24:54.416Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 763, "blockHeight": 763, "took": "3.796611ms"} -2023-12-15T14:24:55.079Z INFO sending PrepareRequest {"height": 764, "view": 0} -2023-12-15T14:24:55.079Z INFO sending Commit {"height": 764, "view": 0} -2023-12-15T14:24:55.080Z INFO approving block {"height": 764, "hash": "f0a0786c70b54d568298a8ae6e5df9268ffa3c5e2872940389897995fd20fb39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ad9dd731149a9ef32be77d8d5a73dae41dfe13b4b37cfcb7fb5169d70cbd3ff"} -2023-12-15T14:24:55.080Z INFO initializing dbft {"height": 765, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:55.081Z debug frostfs-node/morph.go:229 new block {"index": 764} -2023-12-15T14:24:55.415Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 764, "blockHeight": 764, "took": "2.736783ms"} -2023-12-15T14:24:56.081Z INFO sending PrepareRequest {"height": 765, "view": 0} -2023-12-15T14:24:56.081Z INFO sending Commit {"height": 765, "view": 0} -2023-12-15T14:24:56.081Z INFO approving block {"height": 765, "hash": "2f080ca625316b8110beb6a38f9aa20c6d50f31b91f9d7ba009060e670bca80e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0a0786c70b54d568298a8ae6e5df9268ffa3c5e2872940389897995fd20fb39"} -2023-12-15T14:24:56.082Z INFO initializing dbft {"height": 766, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:56.082Z debug frostfs-node/morph.go:229 new block {"index": 765} -2023-12-15T14:24:56.417Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 765, "blockHeight": 765, "took": "4.14008ms"} -2023-12-15T14:24:57.082Z INFO sending PrepareRequest {"height": 766, "view": 0} -2023-12-15T14:24:57.083Z INFO sending Commit {"height": 766, "view": 0} -2023-12-15T14:24:57.083Z INFO approving block {"height": 766, "hash": "3ea73c1b8313fd3a780cc4233af7ce4d1b98c1a7c459d691af55fac30dfef33b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f080ca625316b8110beb6a38f9aa20c6d50f31b91f9d7ba009060e670bca80e"} -2023-12-15T14:24:57.084Z INFO initializing dbft {"height": 767, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:57.085Z debug frostfs-node/morph.go:229 new block {"index": 766} -2023-12-15T14:24:57.417Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 766, "blockHeight": 766, "took": "3.211575ms"} -2023-12-15T14:24:58.085Z INFO sending PrepareRequest {"height": 767, "view": 0} -2023-12-15T14:24:58.085Z INFO sending Commit {"height": 767, "view": 0} -2023-12-15T14:24:58.085Z INFO approving block {"height": 767, "hash": "592014232b3bf8fbe897d45c4030e028bb65730718c793065119358b3b862f68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ea73c1b8313fd3a780cc4233af7ce4d1b98c1a7c459d691af55fac30dfef33b"} -2023-12-15T14:24:58.087Z INFO initializing dbft {"height": 768, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:58.087Z debug frostfs-node/morph.go:229 new block {"index": 767} -2023-12-15T14:24:58.089Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:24:58.092Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:24:58.092Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:24:58.418Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 767, "blockHeight": 767, "took": "3.411669ms"} -2023-12-15T14:24:59.086Z INFO sending PrepareRequest {"height": 768, "view": 0} -2023-12-15T14:24:59.086Z INFO sending Commit {"height": 768, "view": 0} -2023-12-15T14:24:59.087Z INFO approving block {"height": 768, "hash": "8a2caa4899f31f08ee0414153442a3ae15e50435c0eaf834b8dd48d07fbcf30c", "tx_count": 2, "merkle": "e329b7eeb157f62fdd2536a93036a0ac5931dcdcfc4ae1aff3fa36f3bedb681b", "prev": "592014232b3bf8fbe897d45c4030e028bb65730718c793065119358b3b862f68"} -2023-12-15T14:24:59.087Z INFO runtime log {"tx": "ddaf26d44c85a08c5ee48837c3ad9cd34690fef181a4922c13752f0d03b26dba", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:24:59.087Z INFO runtime log {"tx": "ddaf26d44c85a08c5ee48837c3ad9cd34690fef181a4922c13752f0d03b26dba", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:24:59.088Z INFO initializing dbft {"height": 769, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:24:59.089Z debug frostfs-node/morph.go:229 new block {"index": 768} -2023-12-15T14:24:59.423Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 768, "blockHeight": 768, "took": "7.38481ms"} -2023-12-15T14:25:00.088Z INFO sending PrepareRequest {"height": 769, "view": 0} -2023-12-15T14:25:00.088Z INFO sending Commit {"height": 769, "view": 0} -2023-12-15T14:25:00.088Z INFO approving block {"height": 769, "hash": "d7e90573c60e63aa4c9c4ffe9cf2bb3f7df9a1ec015ab558c9a305bcf70c45d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a2caa4899f31f08ee0414153442a3ae15e50435c0eaf834b8dd48d07fbcf30c"} -2023-12-15T14:25:00.089Z INFO initializing dbft {"height": 770, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:00.090Z debug frostfs-node/morph.go:229 new block {"index": 769} -2023-12-15T14:25:00.421Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 769, "blockHeight": 769, "took": "4.792213ms"} -2023-12-15T14:25:01.090Z INFO sending PrepareRequest {"height": 770, "view": 0} -2023-12-15T14:25:01.090Z INFO sending Commit {"height": 770, "view": 0} -2023-12-15T14:25:01.090Z INFO approving block {"height": 770, "hash": "878b431ff5cf5dfb58c74b74ee2b5c1d62ebf628ba422d34534234ff4f7619bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7e90573c60e63aa4c9c4ffe9cf2bb3f7df9a1ec015ab558c9a305bcf70c45d1"} -2023-12-15T14:25:01.091Z INFO initializing dbft {"height": 771, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:01.092Z debug frostfs-node/morph.go:229 new block {"index": 770} -2023-12-15T14:25:01.420Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 770, "blockHeight": 770, "took": "2.81916ms"} -2023-12-15T14:25:02.091Z INFO sending PrepareRequest {"height": 771, "view": 0} -2023-12-15T14:25:02.091Z INFO sending Commit {"height": 771, "view": 0} -2023-12-15T14:25:02.091Z INFO approving block {"height": 771, "hash": "3994d8a545ad8372b7a4be296953dad2d37f703f629f81badaf3f577d2bf413d", "tx_count": 1, "merkle": "52ffb4783813a162e9a6bd48b18a3451988026f6201106dd53db8752505208f7", "prev": "878b431ff5cf5dfb58c74b74ee2b5c1d62ebf628ba422d34534234ff4f7619bf"} -2023-12-15T14:25:02.092Z INFO initializing dbft {"height": 772, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:02.093Z debug frostfs-node/morph.go:229 new block {"index": 771} -2023-12-15T14:25:02.423Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 771, "blockHeight": 771, "took": "4.6588ms"} -2023-12-15T14:25:03.092Z INFO sending PrepareRequest {"height": 772, "view": 0} -2023-12-15T14:25:03.093Z INFO sending Commit {"height": 772, "view": 0} -2023-12-15T14:25:03.093Z INFO approving block {"height": 772, "hash": "d49131a74acd412e9ff7625c718d4fb9d4d21925405b86aa084dd7eaf52dae70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3994d8a545ad8372b7a4be296953dad2d37f703f629f81badaf3f577d2bf413d"} -2023-12-15T14:25:03.094Z INFO initializing dbft {"height": 773, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:03.094Z debug frostfs-node/morph.go:229 new block {"index": 772} -2023-12-15T14:25:03.421Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 772, "blockHeight": 772, "took": "2.654039ms"} -2023-12-15T14:25:04.094Z INFO sending PrepareRequest {"height": 773, "view": 0} -2023-12-15T14:25:04.095Z INFO sending Commit {"height": 773, "view": 0} -2023-12-15T14:25:04.095Z INFO approving block {"height": 773, "hash": "1a8616d2cd58d12201123021f744acb9ed4d3db7a4851ee0b2ec9ee3d0808975", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d49131a74acd412e9ff7625c718d4fb9d4d21925405b86aa084dd7eaf52dae70"} -2023-12-15T14:25:04.096Z INFO initializing dbft {"height": 774, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:04.096Z debug frostfs-node/morph.go:229 new block {"index": 773} -2023-12-15T14:25:04.422Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 773, "blockHeight": 773, "took": "2.605316ms"} -2023-12-15T14:25:05.096Z INFO sending PrepareRequest {"height": 774, "view": 0} -2023-12-15T14:25:05.096Z INFO sending Commit {"height": 774, "view": 0} -2023-12-15T14:25:05.096Z INFO approving block {"height": 774, "hash": "2497f4dbbf4d9044e219317921d47706fab05072ee56dacd7891b2bcb60b51ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a8616d2cd58d12201123021f744acb9ed4d3db7a4851ee0b2ec9ee3d0808975"} -2023-12-15T14:25:05.098Z INFO initializing dbft {"height": 775, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:05.098Z debug frostfs-node/morph.go:229 new block {"index": 774} -2023-12-15T14:25:05.423Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 774, "blockHeight": 774, "took": "2.711378ms"} -2023-12-15T14:25:06.097Z INFO sending PrepareRequest {"height": 775, "view": 0} -2023-12-15T14:25:06.098Z INFO sending Commit {"height": 775, "view": 0} -2023-12-15T14:25:06.098Z INFO approving block {"height": 775, "hash": "313efbe4b88d521e904d6b35252daf4a063a2adcde7397cf6d74f2d25eae08e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2497f4dbbf4d9044e219317921d47706fab05072ee56dacd7891b2bcb60b51ae"} -2023-12-15T14:25:06.099Z INFO initializing dbft {"height": 776, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:06.100Z debug frostfs-node/morph.go:229 new block {"index": 775} -2023-12-15T14:25:06.423Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 775, "blockHeight": 775, "took": "2.920325ms"} -2023-12-15T14:25:07.098Z INFO sending PrepareRequest {"height": 776, "view": 0} -2023-12-15T14:25:07.099Z INFO sending Commit {"height": 776, "view": 0} -2023-12-15T14:25:07.099Z INFO approving block {"height": 776, "hash": "6c6d1956c949e0a0aab94af86a23ece4eb8e362ec0509a8df5a3d0dfbf797ebd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "313efbe4b88d521e904d6b35252daf4a063a2adcde7397cf6d74f2d25eae08e2"} -2023-12-15T14:25:07.100Z INFO initializing dbft {"height": 777, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:07.100Z debug frostfs-node/morph.go:229 new block {"index": 776} -2023-12-15T14:25:07.425Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 776, "blockHeight": 776, "took": "3.84248ms"} -2023-12-15T14:25:08.100Z INFO sending PrepareRequest {"height": 777, "view": 0} -2023-12-15T14:25:08.101Z INFO sending Commit {"height": 777, "view": 0} -2023-12-15T14:25:08.101Z INFO approving block {"height": 777, "hash": "94039722cb360dd6caf3320e307f1047f8a17cfdd4cdab426d5042ebcd64aa35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c6d1956c949e0a0aab94af86a23ece4eb8e362ec0509a8df5a3d0dfbf797ebd"} -2023-12-15T14:25:08.101Z INFO initializing dbft {"height": 778, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:08.102Z debug frostfs-node/morph.go:229 new block {"index": 777} -2023-12-15T14:25:08.424Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 777, "blockHeight": 777, "took": "2.581505ms"} -2023-12-15T14:25:09.102Z INFO sending PrepareRequest {"height": 778, "view": 0} -2023-12-15T14:25:09.102Z INFO sending Commit {"height": 778, "view": 0} -2023-12-15T14:25:09.103Z INFO approving block {"height": 778, "hash": "54626a0407f5a9c3bf882afcb1c066b376ff2496263d62ff08de6fb9949c1508", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94039722cb360dd6caf3320e307f1047f8a17cfdd4cdab426d5042ebcd64aa35"} -2023-12-15T14:25:09.104Z INFO initializing dbft {"height": 779, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:09.105Z debug frostfs-node/morph.go:229 new block {"index": 778} -2023-12-15T14:25:09.425Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 778, "blockHeight": 778, "took": "2.545364ms"} -2023-12-15T14:25:10.104Z INFO sending PrepareRequest {"height": 779, "view": 0} -2023-12-15T14:25:10.104Z INFO sending Commit {"height": 779, "view": 0} -2023-12-15T14:25:10.105Z INFO approving block {"height": 779, "hash": "c4868b858e731dc91a6fbd763067c50a4904e2af620d491812f6c8a07e4434b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54626a0407f5a9c3bf882afcb1c066b376ff2496263d62ff08de6fb9949c1508"} -2023-12-15T14:25:10.106Z INFO initializing dbft {"height": 780, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:10.107Z debug frostfs-node/morph.go:229 new block {"index": 779} -2023-12-15T14:25:10.427Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 779, "blockHeight": 779, "took": "3.719028ms"} -2023-12-15T14:25:11.106Z INFO sending PrepareRequest {"height": 780, "view": 0} -2023-12-15T14:25:11.106Z INFO sending Commit {"height": 780, "view": 0} -2023-12-15T14:25:11.106Z INFO approving block {"height": 780, "hash": "aa523bf77e1c7770f71b100822a28a27e18d0cc76cbef6cd21e19e180116357b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4868b858e731dc91a6fbd763067c50a4904e2af620d491812f6c8a07e4434b3"} -2023-12-15T14:25:11.107Z INFO initializing dbft {"height": 781, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:11.108Z debug frostfs-node/morph.go:229 new block {"index": 780} -2023-12-15T14:25:11.427Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 780, "blockHeight": 780, "took": "2.826872ms"} -2023-12-15T14:25:12.108Z INFO sending PrepareRequest {"height": 781, "view": 0} -2023-12-15T14:25:12.108Z INFO sending Commit {"height": 781, "view": 0} -2023-12-15T14:25:12.108Z INFO approving block {"height": 781, "hash": "93b209525391d0a71e40bc9b5dfce6aefa82fa6d54dce716ae2ea8779876dcd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa523bf77e1c7770f71b100822a28a27e18d0cc76cbef6cd21e19e180116357b"} -2023-12-15T14:25:12.109Z INFO initializing dbft {"height": 782, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:12.109Z debug frostfs-node/morph.go:229 new block {"index": 781} -2023-12-15T14:25:12.427Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 781, "blockHeight": 781, "took": "2.718449ms"} -2023-12-15T14:25:13.109Z INFO sending PrepareRequest {"height": 782, "view": 0} -2023-12-15T14:25:13.110Z INFO sending Commit {"height": 782, "view": 0} -2023-12-15T14:25:13.110Z INFO approving block {"height": 782, "hash": "7a18dd4e8de7a59cf3deb69a26d4526b5f29f7a2858c15c32ea5e7e2769d1d7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93b209525391d0a71e40bc9b5dfce6aefa82fa6d54dce716ae2ea8779876dcd5"} -2023-12-15T14:25:13.111Z INFO initializing dbft {"height": 783, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:13.112Z debug frostfs-node/morph.go:229 new block {"index": 782} -2023-12-15T14:25:13.428Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 782, "blockHeight": 782, "took": "2.494443ms"} -2023-12-15T14:25:14.112Z INFO sending PrepareRequest {"height": 783, "view": 0} -2023-12-15T14:25:14.112Z INFO sending Commit {"height": 783, "view": 0} -2023-12-15T14:25:14.112Z INFO approving block {"height": 783, "hash": "da920f798d59c09ee4cf066cbc9bc8caaa2486dec58fc39ac39947a29d6c4087", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a18dd4e8de7a59cf3deb69a26d4526b5f29f7a2858c15c32ea5e7e2769d1d7a"} -2023-12-15T14:25:14.113Z INFO initializing dbft {"height": 784, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:14.114Z debug frostfs-node/morph.go:229 new block {"index": 783} -2023-12-15T14:25:14.119Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 4 epoch for daughters"} -2023-12-15T14:25:14.122Z INFO runtime log {"tx": "0da8bb8a5041abe95690fb05d7b173ee3e7c3a7eeed0e5b123d3eb84ae23a487", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:25:14.429Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 783, "blockHeight": 783, "took": "2.634715ms"} -2023-12-15T14:25:15.113Z INFO sending PrepareRequest {"height": 784, "view": 0} -2023-12-15T14:25:15.113Z INFO sending Commit {"height": 784, "view": 0} -2023-12-15T14:25:15.113Z INFO approving block {"height": 784, "hash": "e8d48cdc1d46b5761f473f14cb760429f2c83496c726b1627f45739041454e13", "tx_count": 1, "merkle": "925616d27fa7ee7cd89bc2c4146d110f72ba1dd5e9c3b755bc8ce2871cd1bd24", "prev": "da920f798d59c09ee4cf066cbc9bc8caaa2486dec58fc39ac39947a29d6c4087"} -2023-12-15T14:25:15.114Z INFO runtime log {"tx": "24bdd11c87e28cbc55b7c3e9d51dba720f116d14c4c29bd87ceea77fd2165692", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:25:15.115Z INFO initializing dbft {"height": 785, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:15.115Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 4} -2023-12-15T14:25:15.115Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 4} -2023-12-15T14:25:15.115Z debug frostfs-node/morph.go:229 new block {"index": 784} -2023-12-15T14:25:15.432Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 784, "blockHeight": 784, "took": "5.505598ms"} -2023-12-15T14:25:16.114Z INFO sending PrepareRequest {"height": 785, "view": 0} -2023-12-15T14:25:16.114Z INFO sending Commit {"height": 785, "view": 0} -2023-12-15T14:25:16.115Z INFO approving block {"height": 785, "hash": "6bc185ba2eb218abbd838cbac6c6e3f09126d9774074bdfe5fd55a653f2b587b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8d48cdc1d46b5761f473f14cb760429f2c83496c726b1627f45739041454e13"} -2023-12-15T14:25:16.115Z INFO initializing dbft {"height": 786, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:16.116Z debug frostfs-node/morph.go:229 new block {"index": 785} -2023-12-15T14:25:16.431Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 785, "blockHeight": 785, "took": "3.428651ms"} -2023-12-15T14:25:17.116Z INFO sending PrepareRequest {"height": 786, "view": 0} -2023-12-15T14:25:17.116Z INFO sending Commit {"height": 786, "view": 0} -2023-12-15T14:25:17.116Z INFO approving block {"height": 786, "hash": "75fb24f7d874ec6232b47603b6f9f240f4a35d2c7ddb03fecf1b73c60f752d04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bc185ba2eb218abbd838cbac6c6e3f09126d9774074bdfe5fd55a653f2b587b"} -2023-12-15T14:25:17.117Z INFO initializing dbft {"height": 787, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:17.118Z debug frostfs-node/morph.go:229 new block {"index": 786} -2023-12-15T14:25:17.431Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 786, "blockHeight": 786, "took": "2.891102ms"} -2023-12-15T14:25:18.117Z INFO sending PrepareRequest {"height": 787, "view": 0} -2023-12-15T14:25:18.117Z INFO sending Commit {"height": 787, "view": 0} -2023-12-15T14:25:18.117Z INFO approving block {"height": 787, "hash": "7ffe3c947bf4383b864310607b18bfc090826fcbaa2ce47274cdf2929ad285bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75fb24f7d874ec6232b47603b6f9f240f4a35d2c7ddb03fecf1b73c60f752d04"} -2023-12-15T14:25:18.118Z INFO initializing dbft {"height": 788, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:18.118Z debug frostfs-node/morph.go:229 new block {"index": 787} -2023-12-15T14:25:18.431Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 787, "blockHeight": 787, "took": "2.920023ms"} -2023-12-15T14:25:19.119Z INFO sending PrepareRequest {"height": 788, "view": 0} -2023-12-15T14:25:19.119Z INFO sending Commit {"height": 788, "view": 0} -2023-12-15T14:25:19.119Z INFO approving block {"height": 788, "hash": "5c4b3cfe1df1a8e2fb85c8c57d27778b5855f2da78578e34c47214a3d5cb81b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ffe3c947bf4383b864310607b18bfc090826fcbaa2ce47274cdf2929ad285bb"} -2023-12-15T14:25:19.120Z INFO initializing dbft {"height": 789, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:19.120Z debug frostfs-node/morph.go:229 new block {"index": 788} -2023-12-15T14:25:19.432Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 788, "blockHeight": 788, "took": "2.922183ms"} -2023-12-15T14:25:20.120Z INFO sending PrepareRequest {"height": 789, "view": 0} -2023-12-15T14:25:20.120Z INFO sending Commit {"height": 789, "view": 0} -2023-12-15T14:25:20.120Z INFO approving block {"height": 789, "hash": "ad3805dd29d746b47c8843b40bc4e679dd6260bd7976a7c36c3782f311fa6451", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c4b3cfe1df1a8e2fb85c8c57d27778b5855f2da78578e34c47214a3d5cb81b4"} -2023-12-15T14:25:20.122Z INFO initializing dbft {"height": 790, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:20.123Z debug frostfs-node/morph.go:229 new block {"index": 789} -2023-12-15T14:25:20.433Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 789, "blockHeight": 789, "took": "3.819096ms"} -2023-12-15T14:25:21.121Z INFO sending PrepareRequest {"height": 790, "view": 0} -2023-12-15T14:25:21.121Z INFO sending Commit {"height": 790, "view": 0} -2023-12-15T14:25:21.122Z INFO approving block {"height": 790, "hash": "12330980f0caa7d3c89b51edd1490186702928d1197d196347e1e8c8b33f1210", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad3805dd29d746b47c8843b40bc4e679dd6260bd7976a7c36c3782f311fa6451"} -2023-12-15T14:25:21.123Z INFO initializing dbft {"height": 791, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:21.124Z debug frostfs-node/morph.go:229 new block {"index": 790} -2023-12-15T14:25:21.433Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 790, "blockHeight": 790, "took": "3.317034ms"} -2023-12-15T14:25:22.123Z INFO sending PrepareRequest {"height": 791, "view": 0} -2023-12-15T14:25:22.123Z INFO sending Commit {"height": 791, "view": 0} -2023-12-15T14:25:22.124Z INFO approving block {"height": 791, "hash": "7af009067d389f46d28d60e30786fc902a8d33c4b72b4f1bc72ed20e431f82b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12330980f0caa7d3c89b51edd1490186702928d1197d196347e1e8c8b33f1210"} -2023-12-15T14:25:22.126Z INFO initializing dbft {"height": 792, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:22.126Z debug frostfs-node/morph.go:229 new block {"index": 791} -2023-12-15T14:25:22.437Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 791, "blockHeight": 791, "took": "7.341764ms"} -2023-12-15T14:25:23.125Z INFO sending PrepareRequest {"height": 792, "view": 0} -2023-12-15T14:25:23.126Z INFO sending Commit {"height": 792, "view": 0} -2023-12-15T14:25:23.126Z INFO approving block {"height": 792, "hash": "f356d569fc80a4c809acc7ab31da773f638167e76ae214baaad08e6e41671999", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7af009067d389f46d28d60e30786fc902a8d33c4b72b4f1bc72ed20e431f82b7"} -2023-12-15T14:25:23.128Z INFO initializing dbft {"height": 793, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:23.129Z debug frostfs-node/morph.go:229 new block {"index": 792} -2023-12-15T14:25:23.435Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 792, "blockHeight": 792, "took": "4.849612ms"} -2023-12-15T14:25:24.127Z INFO sending PrepareRequest {"height": 793, "view": 0} -2023-12-15T14:25:24.127Z INFO sending Commit {"height": 793, "view": 0} -2023-12-15T14:25:24.128Z INFO approving block {"height": 793, "hash": "a24b0767256a1508214037bba1450f81618667c1c9aae3276ee260c5bc85f8cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f356d569fc80a4c809acc7ab31da773f638167e76ae214baaad08e6e41671999"} -2023-12-15T14:25:24.129Z INFO initializing dbft {"height": 794, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:24.131Z debug frostfs-node/morph.go:229 new block {"index": 793} -2023-12-15T14:25:24.438Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 793, "blockHeight": 793, "took": "6.670281ms"} -2023-12-15T14:25:25.129Z INFO sending PrepareRequest {"height": 794, "view": 0} -2023-12-15T14:25:25.129Z INFO sending Commit {"height": 794, "view": 0} -2023-12-15T14:25:25.130Z INFO approving block {"height": 794, "hash": "2306d8e138758a9a0ca2dc39a90b32d470b56a0950c925b6f22f6bff9ad48e31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a24b0767256a1508214037bba1450f81618667c1c9aae3276ee260c5bc85f8cd"} -2023-12-15T14:25:25.131Z INFO initializing dbft {"height": 795, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:25.132Z debug frostfs-node/morph.go:229 new block {"index": 794} -2023-12-15T14:25:25.438Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 794, "blockHeight": 794, "took": "6.115436ms"} -2023-12-15T14:25:26.130Z INFO sending PrepareRequest {"height": 795, "view": 0} -2023-12-15T14:25:26.130Z INFO sending Commit {"height": 795, "view": 0} -2023-12-15T14:25:26.131Z INFO approving block {"height": 795, "hash": "fc30a0c2e5b69c1a181265a4b025725293dbb84829e0f47af92ef656bc8077bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2306d8e138758a9a0ca2dc39a90b32d470b56a0950c925b6f22f6bff9ad48e31"} -2023-12-15T14:25:26.132Z INFO initializing dbft {"height": 796, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:26.133Z debug frostfs-node/morph.go:229 new block {"index": 795} -2023-12-15T14:25:26.437Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 795, "blockHeight": 795, "took": "5.26399ms"} -2023-12-15T14:25:27.132Z INFO sending PrepareRequest {"height": 796, "view": 0} -2023-12-15T14:25:27.132Z INFO sending Commit {"height": 796, "view": 0} -2023-12-15T14:25:27.133Z INFO approving block {"height": 796, "hash": "1aeebbeead9f4c5ad9d0ff0251854cd7f2bfa8e5eaf7a757efdc34a65355aa55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc30a0c2e5b69c1a181265a4b025725293dbb84829e0f47af92ef656bc8077bd"} -2023-12-15T14:25:27.134Z INFO initializing dbft {"height": 797, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:27.135Z debug frostfs-node/morph.go:229 new block {"index": 796} -2023-12-15T14:25:27.437Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 796, "blockHeight": 796, "took": "4.343476ms"} -2023-12-15T14:25:28.137Z INFO sending PrepareRequest {"height": 797, "view": 0} -2023-12-15T14:25:28.137Z INFO sending Commit {"height": 797, "view": 0} -2023-12-15T14:25:28.138Z INFO approving block {"height": 797, "hash": "7c63f67abeefb75cdfd99038c4ea79fa1f1e4b381ff39909e1be0deacc68d5ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1aeebbeead9f4c5ad9d0ff0251854cd7f2bfa8e5eaf7a757efdc34a65355aa55"} -2023-12-15T14:25:28.141Z INFO initializing dbft {"height": 798, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:28.141Z debug frostfs-node/morph.go:229 new block {"index": 797} -2023-12-15T14:25:28.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 797, "blockHeight": 797, "took": "8.267356ms"} -2023-12-15T14:25:29.139Z INFO sending PrepareRequest {"height": 798, "view": 0} -2023-12-15T14:25:29.139Z INFO sending Commit {"height": 798, "view": 0} -2023-12-15T14:25:29.140Z INFO approving block {"height": 798, "hash": "9eaddc413b275e3b97bb1afc7d6a6171c26ee9ca27b1f52125168523f6cc08f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c63f67abeefb75cdfd99038c4ea79fa1f1e4b381ff39909e1be0deacc68d5ca"} -2023-12-15T14:25:29.141Z INFO initializing dbft {"height": 799, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:29.142Z debug frostfs-node/morph.go:229 new block {"index": 798} -2023-12-15T14:25:29.441Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 798, "blockHeight": 798, "took": "7.011079ms"} -2023-12-15T14:25:30.141Z INFO sending PrepareRequest {"height": 799, "view": 0} -2023-12-15T14:25:30.141Z INFO sending Commit {"height": 799, "view": 0} -2023-12-15T14:25:30.141Z INFO approving block {"height": 799, "hash": "f7e7f893bb02c30b53a28a581cf968b9788561945967006cf138cf5802ef1e26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9eaddc413b275e3b97bb1afc7d6a6171c26ee9ca27b1f52125168523f6cc08f7"} -2023-12-15T14:25:30.143Z INFO initializing dbft {"height": 800, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:30.144Z debug frostfs-node/morph.go:229 new block {"index": 799} -2023-12-15T14:25:30.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 799, "blockHeight": 799, "took": "7.18886ms"} -2023-12-15T14:25:31.144Z INFO sending PrepareRequest {"height": 800, "view": 0} -2023-12-15T14:25:31.145Z INFO sending Commit {"height": 800, "view": 0} -2023-12-15T14:25:31.145Z INFO approving block {"height": 800, "hash": "a5dc50f48d63fb7408b4396cb400acf3bca1a2f1edf4f90a9bd99739fbef2812", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7e7f893bb02c30b53a28a581cf968b9788561945967006cf138cf5802ef1e26"} -2023-12-15T14:25:31.148Z INFO initializing dbft {"height": 801, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:31.149Z debug frostfs-node/morph.go:229 new block {"index": 800} -2023-12-15T14:25:31.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 800, "blockHeight": 800, "took": "6.492448ms"} -2023-12-15T14:25:32.147Z INFO sending PrepareRequest {"height": 801, "view": 0} -2023-12-15T14:25:32.147Z INFO sending Commit {"height": 801, "view": 0} -2023-12-15T14:25:32.147Z INFO approving block {"height": 801, "hash": "83f253a043c18607e08228c372af0d8f5100a62d2d65704988cf081610259a24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5dc50f48d63fb7408b4396cb400acf3bca1a2f1edf4f90a9bd99739fbef2812"} -2023-12-15T14:25:32.149Z INFO initializing dbft {"height": 802, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:32.150Z debug frostfs-node/morph.go:229 new block {"index": 801} -2023-12-15T14:25:32.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 801, "blockHeight": 801, "took": "6.445234ms"} -2023-12-15T14:25:33.148Z INFO sending PrepareRequest {"height": 802, "view": 0} -2023-12-15T14:25:33.148Z INFO sending Commit {"height": 802, "view": 0} -2023-12-15T14:25:33.148Z INFO approving block {"height": 802, "hash": "ad9b3cf8238606d2579a7d5bd2fc250ff5520c57eb635df368c8bc23fa8d356f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83f253a043c18607e08228c372af0d8f5100a62d2d65704988cf081610259a24"} -2023-12-15T14:25:33.149Z INFO initializing dbft {"height": 803, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:33.149Z debug frostfs-node/morph.go:229 new block {"index": 802} -2023-12-15T14:25:33.439Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 802, "blockHeight": 802, "took": "2.448668ms"} -2023-12-15T14:25:34.149Z INFO sending PrepareRequest {"height": 803, "view": 0} -2023-12-15T14:25:34.150Z INFO sending Commit {"height": 803, "view": 0} -2023-12-15T14:25:34.150Z INFO approving block {"height": 803, "hash": "682cd3ea9e01101565bb0b944f07bd585a2f45abf6701be1150f1c5222ecdfa5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad9b3cf8238606d2579a7d5bd2fc250ff5520c57eb635df368c8bc23fa8d356f"} -2023-12-15T14:25:34.151Z INFO initializing dbft {"height": 804, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:34.152Z debug frostfs-node/morph.go:229 new block {"index": 803} -2023-12-15T14:25:34.440Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 803, "blockHeight": 803, "took": "3.601339ms"} -2023-12-15T14:25:35.151Z INFO sending PrepareRequest {"height": 804, "view": 0} -2023-12-15T14:25:35.151Z INFO sending Commit {"height": 804, "view": 0} -2023-12-15T14:25:35.152Z INFO approving block {"height": 804, "hash": "e8b417159fc3c1b8aff6cf1d68826192cada8cb4022e66d4d8e952642d8a781f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "682cd3ea9e01101565bb0b944f07bd585a2f45abf6701be1150f1c5222ecdfa5"} -2023-12-15T14:25:35.153Z INFO initializing dbft {"height": 805, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:35.153Z debug frostfs-node/morph.go:229 new block {"index": 804} -2023-12-15T14:25:35.441Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 804, "blockHeight": 804, "took": "4.062758ms"} -2023-12-15T14:25:36.152Z INFO sending PrepareRequest {"height": 805, "view": 0} -2023-12-15T14:25:36.152Z INFO sending Commit {"height": 805, "view": 0} -2023-12-15T14:25:36.152Z INFO approving block {"height": 805, "hash": "ea5c576c158f26d2c2ba73d23526c13487f16d9ee020c60639f2b6bebf6b8d50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8b417159fc3c1b8aff6cf1d68826192cada8cb4022e66d4d8e952642d8a781f"} -2023-12-15T14:25:36.153Z INFO initializing dbft {"height": 806, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:36.154Z debug frostfs-node/morph.go:229 new block {"index": 805} -2023-12-15T14:25:36.443Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 805, "blockHeight": 805, "took": "5.459339ms"} -2023-12-15T14:25:37.154Z INFO sending PrepareRequest {"height": 806, "view": 0} -2023-12-15T14:25:37.154Z INFO sending Commit {"height": 806, "view": 0} -2023-12-15T14:25:37.155Z INFO approving block {"height": 806, "hash": "f43fbc1ad8c543a779ca33b1f37771fbdf5462678cc118e25bce8710eaaeef5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea5c576c158f26d2c2ba73d23526c13487f16d9ee020c60639f2b6bebf6b8d50"} -2023-12-15T14:25:37.156Z INFO initializing dbft {"height": 807, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:37.156Z debug frostfs-node/morph.go:229 new block {"index": 806} -2023-12-15T14:25:37.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 806, "blockHeight": 806, "took": "4.626774ms"} -2023-12-15T14:25:38.155Z INFO sending PrepareRequest {"height": 807, "view": 0} -2023-12-15T14:25:38.156Z INFO sending Commit {"height": 807, "view": 0} -2023-12-15T14:25:38.156Z INFO approving block {"height": 807, "hash": "a5f796d83fd3c70c5cdc9d85f5b3f9b8c8e0f0cd734c4bec59509669191b04d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f43fbc1ad8c543a779ca33b1f37771fbdf5462678cc118e25bce8710eaaeef5c"} -2023-12-15T14:25:38.157Z INFO initializing dbft {"height": 808, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:38.157Z debug frostfs-node/morph.go:229 new block {"index": 807} -2023-12-15T14:25:38.444Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 807, "blockHeight": 807, "took": "5.494806ms"} -2023-12-15T14:25:39.157Z INFO sending PrepareRequest {"height": 808, "view": 0} -2023-12-15T14:25:39.157Z INFO sending Commit {"height": 808, "view": 0} -2023-12-15T14:25:39.157Z INFO approving block {"height": 808, "hash": "ccf919a127c1aa99f31bd290dc1419c3d6910a1160855b2f05fd4f2b04f0bfe2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5f796d83fd3c70c5cdc9d85f5b3f9b8c8e0f0cd734c4bec59509669191b04d1"} -2023-12-15T14:25:39.158Z INFO initializing dbft {"height": 809, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:39.159Z debug frostfs-node/morph.go:229 new block {"index": 808} -2023-12-15T14:25:39.443Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 808, "blockHeight": 808, "took": "3.904083ms"} -2023-12-15T14:25:40.158Z INFO sending PrepareRequest {"height": 809, "view": 0} -2023-12-15T14:25:40.158Z INFO sending Commit {"height": 809, "view": 0} -2023-12-15T14:25:40.158Z INFO approving block {"height": 809, "hash": "178ca2ce1cbe3e631c4d300a7874e0611f247ca9cbb993f9e86155bfc3e21223", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ccf919a127c1aa99f31bd290dc1419c3d6910a1160855b2f05fd4f2b04f0bfe2"} -2023-12-15T14:25:40.159Z INFO initializing dbft {"height": 810, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:40.160Z debug frostfs-node/morph.go:229 new block {"index": 809} -2023-12-15T14:25:40.444Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 809, "blockHeight": 809, "took": "4.8246ms"} -2023-12-15T14:25:41.160Z INFO sending PrepareRequest {"height": 810, "view": 0} -2023-12-15T14:25:41.160Z INFO sending Commit {"height": 810, "view": 0} -2023-12-15T14:25:41.161Z INFO approving block {"height": 810, "hash": "ac78bd1021cbbe0c53417970465d07c1c6c754799ce1062b74ee137c89776cc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "178ca2ce1cbe3e631c4d300a7874e0611f247ca9cbb993f9e86155bfc3e21223"} -2023-12-15T14:25:41.162Z INFO initializing dbft {"height": 811, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:41.163Z debug frostfs-node/morph.go:229 new block {"index": 810} -2023-12-15T14:25:41.443Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 810, "blockHeight": 810, "took": "2.671948ms"} -2023-12-15T14:25:42.162Z INFO sending PrepareRequest {"height": 811, "view": 0} -2023-12-15T14:25:42.162Z INFO sending Commit {"height": 811, "view": 0} -2023-12-15T14:25:42.163Z INFO approving block {"height": 811, "hash": "07fbe8103505f88bed6ee8b0c78d0d58d0b7a3ee7b77241f1a1c7b2e1396c3a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac78bd1021cbbe0c53417970465d07c1c6c754799ce1062b74ee137c89776cc5"} -2023-12-15T14:25:42.163Z INFO initializing dbft {"height": 812, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:42.164Z debug frostfs-node/morph.go:229 new block {"index": 811} -2023-12-15T14:25:42.447Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 811, "blockHeight": 811, "took": "6.727043ms"} -2023-12-15T14:25:43.164Z INFO sending PrepareRequest {"height": 812, "view": 0} -2023-12-15T14:25:43.164Z INFO sending Commit {"height": 812, "view": 0} -2023-12-15T14:25:43.164Z INFO approving block {"height": 812, "hash": "6fbe05c9c4aad8e69c8ef47244e418b94d4e30b8bd9ec28008fdc7317687e75c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07fbe8103505f88bed6ee8b0c78d0d58d0b7a3ee7b77241f1a1c7b2e1396c3a2"} -2023-12-15T14:25:43.165Z INFO initializing dbft {"height": 813, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:43.166Z debug frostfs-node/morph.go:229 new block {"index": 812} -2023-12-15T14:25:43.447Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 812, "blockHeight": 812, "took": "6.157957ms"} -2023-12-15T14:25:44.165Z INFO sending PrepareRequest {"height": 813, "view": 0} -2023-12-15T14:25:44.165Z INFO sending Commit {"height": 813, "view": 0} -2023-12-15T14:25:44.165Z INFO approving block {"height": 813, "hash": "7fea653adb32363c64a89aa4be6d8c86e7a1931a3104adf457fbf2f21cc55a69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fbe05c9c4aad8e69c8ef47244e418b94d4e30b8bd9ec28008fdc7317687e75c"} -2023-12-15T14:25:44.167Z INFO initializing dbft {"height": 814, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:44.167Z debug frostfs-node/morph.go:229 new block {"index": 813} -2023-12-15T14:25:44.448Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 813, "blockHeight": 813, "took": "5.566225ms"} -2023-12-15T14:25:45.166Z INFO sending PrepareRequest {"height": 814, "view": 0} -2023-12-15T14:25:45.167Z INFO sending Commit {"height": 814, "view": 0} -2023-12-15T14:25:45.167Z INFO approving block {"height": 814, "hash": "95c9b98ce7016c6d28433a3e68477b1499a0c4d8ad87656b014a8a2195ad8b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fea653adb32363c64a89aa4be6d8c86e7a1931a3104adf457fbf2f21cc55a69"} -2023-12-15T14:25:45.167Z INFO initializing dbft {"height": 815, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:45.168Z debug frostfs-node/morph.go:229 new block {"index": 814} -2023-12-15T14:25:45.447Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 814, "blockHeight": 814, "took": "3.956507ms"} -2023-12-15T14:25:46.168Z INFO sending PrepareRequest {"height": 815, "view": 0} -2023-12-15T14:25:46.168Z INFO sending Commit {"height": 815, "view": 0} -2023-12-15T14:25:46.169Z INFO approving block {"height": 815, "hash": "37397de86aaf86eca44caefb470291d3f5a2fbdab316604a9386f62aea0ea308", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95c9b98ce7016c6d28433a3e68477b1499a0c4d8ad87656b014a8a2195ad8b39"} -2023-12-15T14:25:46.170Z INFO initializing dbft {"height": 816, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:46.171Z debug frostfs-node/morph.go:229 new block {"index": 815} -2023-12-15T14:25:46.451Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 815, "blockHeight": 815, "took": "7.247849ms"} -2023-12-15T14:25:47.169Z INFO sending PrepareRequest {"height": 816, "view": 0} -2023-12-15T14:25:47.170Z INFO sending Commit {"height": 816, "view": 0} -2023-12-15T14:25:47.170Z INFO approving block {"height": 816, "hash": "377ff2150488e6c8ab103ebc7f0af0d7ae8306664c5fc3c5cb7abaf0afe03fd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37397de86aaf86eca44caefb470291d3f5a2fbdab316604a9386f62aea0ea308"} -2023-12-15T14:25:47.171Z INFO initializing dbft {"height": 817, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:47.172Z debug frostfs-node/morph.go:229 new block {"index": 816} -2023-12-15T14:25:47.447Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 816, "blockHeight": 816, "took": "3.07496ms"} -2023-12-15T14:25:48.171Z INFO sending PrepareRequest {"height": 817, "view": 0} -2023-12-15T14:25:48.171Z INFO sending Commit {"height": 817, "view": 0} -2023-12-15T14:25:48.171Z INFO approving block {"height": 817, "hash": "4aced7c72ee9eeaf0ce9e55e49cb3533c4ce0a0af72fc2c235efc12428b1cd29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "377ff2150488e6c8ab103ebc7f0af0d7ae8306664c5fc3c5cb7abaf0afe03fd8"} -2023-12-15T14:25:48.172Z INFO initializing dbft {"height": 818, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:48.172Z debug frostfs-node/morph.go:229 new block {"index": 817} -2023-12-15T14:25:48.174Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:25:48.178Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:25:48.179Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:25:48.454Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 817, "blockHeight": 817, "took": "9.216127ms"} -2023-12-15T14:25:49.173Z INFO sending PrepareRequest {"height": 818, "view": 0} -2023-12-15T14:25:49.173Z INFO sending Commit {"height": 818, "view": 0} -2023-12-15T14:25:49.173Z INFO approving block {"height": 818, "hash": "b2b10a95ce4dd9a91506c2add79ec9fcb5b717461f82b20de1586ddf6521a58b", "tx_count": 2, "merkle": "812c00a0a274a1791eaa31713649bd9998396e40bb02e6d8373609dbb1c4437e", "prev": "4aced7c72ee9eeaf0ce9e55e49cb3533c4ce0a0af72fc2c235efc12428b1cd29"} -2023-12-15T14:25:49.174Z INFO runtime log {"tx": "b0c5f1cd427fe9c873ae4118e44586c62d94d9d338a39e7f00ab2df0ae98c703", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:25:49.174Z INFO runtime log {"tx": "b0c5f1cd427fe9c873ae4118e44586c62d94d9d338a39e7f00ab2df0ae98c703", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:25:49.175Z INFO initializing dbft {"height": 819, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:49.176Z debug frostfs-node/morph.go:229 new block {"index": 818} -2023-12-15T14:25:49.453Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 818, "blockHeight": 818, "took": "7.308792ms"} -2023-12-15T14:25:50.174Z INFO sending PrepareRequest {"height": 819, "view": 0} -2023-12-15T14:25:50.174Z INFO sending Commit {"height": 819, "view": 0} -2023-12-15T14:25:50.175Z INFO approving block {"height": 819, "hash": "9055b3b469f06343d642e2d8419ffc7a297dff4f47c91bf3c7d4d83b6a112865", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2b10a95ce4dd9a91506c2add79ec9fcb5b717461f82b20de1586ddf6521a58b"} -2023-12-15T14:25:50.176Z INFO initializing dbft {"height": 820, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:50.177Z debug frostfs-node/morph.go:229 new block {"index": 819} -2023-12-15T14:25:50.451Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 819, "blockHeight": 819, "took": "4.673076ms"} -2023-12-15T14:25:51.176Z INFO sending PrepareRequest {"height": 820, "view": 0} -2023-12-15T14:25:51.177Z INFO sending Commit {"height": 820, "view": 0} -2023-12-15T14:25:51.178Z INFO approving block {"height": 820, "hash": "4e1394a3d0d47e8358c046f67235e7542c7a6c6dc53ffd8ec1fa2be03d8fb34d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9055b3b469f06343d642e2d8419ffc7a297dff4f47c91bf3c7d4d83b6a112865"} -2023-12-15T14:25:51.180Z INFO initializing dbft {"height": 821, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:51.181Z debug frostfs-node/morph.go:229 new block {"index": 820} -2023-12-15T14:25:51.453Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 820, "blockHeight": 820, "took": "6.017935ms"} -2023-12-15T14:25:52.179Z INFO sending PrepareRequest {"height": 821, "view": 0} -2023-12-15T14:25:52.179Z INFO sending Commit {"height": 821, "view": 0} -2023-12-15T14:25:52.180Z INFO approving block {"height": 821, "hash": "e2de73477e039c7d0db19f56ea6f8c9a3e45532a6ed3e7dfeb2a029879982d43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e1394a3d0d47e8358c046f67235e7542c7a6c6dc53ffd8ec1fa2be03d8fb34d"} -2023-12-15T14:25:52.181Z INFO initializing dbft {"height": 822, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:52.182Z debug frostfs-node/morph.go:229 new block {"index": 821} -2023-12-15T14:25:52.451Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 821, "blockHeight": 821, "took": "3.548382ms"} -2023-12-15T14:25:53.181Z INFO sending PrepareRequest {"height": 822, "view": 0} -2023-12-15T14:25:53.181Z INFO sending Commit {"height": 822, "view": 0} -2023-12-15T14:25:53.182Z INFO approving block {"height": 822, "hash": "1c00403ed12e9503c8a06aead1f26e432519280a46d78ea0a8c688b5fbaee05c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2de73477e039c7d0db19f56ea6f8c9a3e45532a6ed3e7dfeb2a029879982d43"} -2023-12-15T14:25:53.185Z INFO initializing dbft {"height": 823, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:53.186Z debug frostfs-node/morph.go:229 new block {"index": 822} -2023-12-15T14:25:53.452Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 822, "blockHeight": 822, "took": "3.822937ms"} -2023-12-15T14:25:54.184Z INFO sending PrepareRequest {"height": 823, "view": 0} -2023-12-15T14:25:54.184Z INFO sending Commit {"height": 823, "view": 0} -2023-12-15T14:25:54.184Z INFO approving block {"height": 823, "hash": "2fa995892bcbbc245508d1fa12811d1db633a5203bcb5097f8017a8e899ae668", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c00403ed12e9503c8a06aead1f26e432519280a46d78ea0a8c688b5fbaee05c"} -2023-12-15T14:25:54.185Z INFO initializing dbft {"height": 824, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:54.186Z debug frostfs-node/morph.go:229 new block {"index": 823} -2023-12-15T14:25:54.452Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 823, "blockHeight": 823, "took": "3.529163ms"} -2023-12-15T14:25:55.185Z INFO sending PrepareRequest {"height": 824, "view": 0} -2023-12-15T14:25:55.185Z INFO sending Commit {"height": 824, "view": 0} -2023-12-15T14:25:55.186Z INFO approving block {"height": 824, "hash": "cf4b9d8ee1c06fe09165c03d60ff0d4ba2ce349a3e1fc8587aabce768f07b6a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fa995892bcbbc245508d1fa12811d1db633a5203bcb5097f8017a8e899ae668"} -2023-12-15T14:25:55.187Z INFO initializing dbft {"height": 825, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:55.188Z debug frostfs-node/morph.go:229 new block {"index": 824} -2023-12-15T14:25:55.456Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 824, "blockHeight": 824, "took": "6.552853ms"} -2023-12-15T14:25:56.187Z INFO sending PrepareRequest {"height": 825, "view": 0} -2023-12-15T14:25:56.187Z INFO sending Commit {"height": 825, "view": 0} -2023-12-15T14:25:56.188Z INFO approving block {"height": 825, "hash": "8e16fd4bea8fc8fac4c0a23f5efa46d530ac5c01f46096c5968ae9a39b79a2ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf4b9d8ee1c06fe09165c03d60ff0d4ba2ce349a3e1fc8587aabce768f07b6a1"} -2023-12-15T14:25:56.189Z INFO initializing dbft {"height": 826, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:56.190Z debug frostfs-node/morph.go:229 new block {"index": 825} -2023-12-15T14:25:56.455Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 825, "blockHeight": 825, "took": "5.042621ms"} -2023-12-15T14:25:57.189Z INFO sending PrepareRequest {"height": 826, "view": 0} -2023-12-15T14:25:57.189Z INFO sending Commit {"height": 826, "view": 0} -2023-12-15T14:25:57.189Z INFO approving block {"height": 826, "hash": "15ba72643487aedc22cecdd3e11b92db9d7b18406a8a1374e857b2652477b0c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e16fd4bea8fc8fac4c0a23f5efa46d530ac5c01f46096c5968ae9a39b79a2ae"} -2023-12-15T14:25:57.191Z INFO initializing dbft {"height": 827, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:57.191Z debug frostfs-node/morph.go:229 new block {"index": 826} -2023-12-15T14:25:57.461Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 826, "blockHeight": 826, "took": "10.660703ms"} -2023-12-15T14:25:58.190Z INFO sending PrepareRequest {"height": 827, "view": 0} -2023-12-15T14:25:58.190Z INFO sending Commit {"height": 827, "view": 0} -2023-12-15T14:25:58.191Z INFO approving block {"height": 827, "hash": "3afec1aa66a10e4acc4c4e56af786ea4a3313dc432ba2857602776b2f88830da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15ba72643487aedc22cecdd3e11b92db9d7b18406a8a1374e857b2652477b0c1"} -2023-12-15T14:25:58.193Z INFO initializing dbft {"height": 828, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:58.193Z debug frostfs-node/morph.go:229 new block {"index": 827} -2023-12-15T14:25:58.457Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 827, "blockHeight": 827, "took": "4.413858ms"} -2023-12-15T14:25:59.192Z INFO sending PrepareRequest {"height": 828, "view": 0} -2023-12-15T14:25:59.193Z INFO sending Commit {"height": 828, "view": 0} -2023-12-15T14:25:59.194Z INFO approving block {"height": 828, "hash": "66059335901d865175de356e706c3c522b0d86ada0baf13025066fe0da519301", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3afec1aa66a10e4acc4c4e56af786ea4a3313dc432ba2857602776b2f88830da"} -2023-12-15T14:25:59.195Z INFO initializing dbft {"height": 829, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:25:59.196Z debug frostfs-node/morph.go:229 new block {"index": 828} -2023-12-15T14:25:59.458Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 828, "blockHeight": 828, "took": "4.959949ms"} -2023-12-15T14:26:00.195Z INFO sending PrepareRequest {"height": 829, "view": 0} -2023-12-15T14:26:00.195Z INFO sending Commit {"height": 829, "view": 0} -2023-12-15T14:26:00.196Z INFO approving block {"height": 829, "hash": "afc44437df8347db77708e6b72e8298285acdb1450f43b0fb200b9fea3105413", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66059335901d865175de356e706c3c522b0d86ada0baf13025066fe0da519301"} -2023-12-15T14:26:00.197Z INFO initializing dbft {"height": 830, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:00.198Z debug frostfs-node/morph.go:229 new block {"index": 829} -2023-12-15T14:26:00.461Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 829, "blockHeight": 829, "took": "7.665173ms"} -2023-12-15T14:26:01.196Z INFO sending PrepareRequest {"height": 830, "view": 0} -2023-12-15T14:26:01.197Z INFO sending Commit {"height": 830, "view": 0} -2023-12-15T14:26:01.197Z INFO approving block {"height": 830, "hash": "63d7e7ff858e1630c4068473c439d209363839b0904fd9fd65e382f464482b14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afc44437df8347db77708e6b72e8298285acdb1450f43b0fb200b9fea3105413"} -2023-12-15T14:26:01.198Z INFO initializing dbft {"height": 831, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:01.199Z debug frostfs-node/morph.go:229 new block {"index": 830} -2023-12-15T14:26:01.460Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 830, "blockHeight": 830, "took": "5.656878ms"} -2023-12-15T14:26:02.198Z INFO sending PrepareRequest {"height": 831, "view": 0} -2023-12-15T14:26:02.198Z INFO sending Commit {"height": 831, "view": 0} -2023-12-15T14:26:02.199Z INFO approving block {"height": 831, "hash": "bc10b6c48adcc16cef46c297924b3f46ef0fa89388e1213bc4d534ca63bd3b02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63d7e7ff858e1630c4068473c439d209363839b0904fd9fd65e382f464482b14"} -2023-12-15T14:26:02.200Z INFO initializing dbft {"height": 832, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:02.201Z debug frostfs-node/morph.go:229 new block {"index": 831} -2023-12-15T14:26:02.462Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 831, "blockHeight": 831, "took": "6.859433ms"} -2023-12-15T14:26:03.200Z INFO sending PrepareRequest {"height": 832, "view": 0} -2023-12-15T14:26:03.200Z INFO sending Commit {"height": 832, "view": 0} -2023-12-15T14:26:03.200Z INFO approving block {"height": 832, "hash": "612a74920ef193d00d90963bdbc6c3c2fafdacca16478f7b1f100687a712c175", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc10b6c48adcc16cef46c297924b3f46ef0fa89388e1213bc4d534ca63bd3b02"} -2023-12-15T14:26:03.202Z INFO initializing dbft {"height": 833, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:03.203Z debug frostfs-node/morph.go:229 new block {"index": 832} -2023-12-15T14:26:03.468Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 832, "blockHeight": 832, "took": "11.781033ms"} -2023-12-15T14:26:04.201Z INFO sending PrepareRequest {"height": 833, "view": 0} -2023-12-15T14:26:04.201Z INFO sending Commit {"height": 833, "view": 0} -2023-12-15T14:26:04.202Z INFO approving block {"height": 833, "hash": "029c7f02a43a034ac669ff2e03ba7e02ea2a1f7836fbecc30506a6d9cd0b9fd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "612a74920ef193d00d90963bdbc6c3c2fafdacca16478f7b1f100687a712c175"} -2023-12-15T14:26:04.203Z INFO initializing dbft {"height": 834, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:04.203Z debug frostfs-node/morph.go:229 new block {"index": 833} -2023-12-15T14:26:04.462Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 833, "blockHeight": 833, "took": "4.670256ms"} -2023-12-15T14:26:05.203Z INFO sending PrepareRequest {"height": 834, "view": 0} -2023-12-15T14:26:05.203Z INFO sending Commit {"height": 834, "view": 0} -2023-12-15T14:26:05.204Z INFO approving block {"height": 834, "hash": "0cc0788a01407113634f8c39d3c9d8d2cd76d4d2f544a395b08e482e68e2e477", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "029c7f02a43a034ac669ff2e03ba7e02ea2a1f7836fbecc30506a6d9cd0b9fd1"} -2023-12-15T14:26:05.206Z INFO initializing dbft {"height": 835, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:05.206Z debug frostfs-node/morph.go:229 new block {"index": 834} -2023-12-15T14:26:05.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 834, "blockHeight": 834, "took": "10.795707ms"} -2023-12-15T14:26:06.206Z INFO sending PrepareRequest {"height": 835, "view": 0} -2023-12-15T14:26:06.206Z INFO sending Commit {"height": 835, "view": 0} -2023-12-15T14:26:06.206Z INFO approving block {"height": 835, "hash": "0c35e62b52a6de4914509a028f06ef06319c8a1576fa34c18e628d079153eabb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cc0788a01407113634f8c39d3c9d8d2cd76d4d2f544a395b08e482e68e2e477"} -2023-12-15T14:26:06.208Z INFO initializing dbft {"height": 836, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:06.209Z debug frostfs-node/morph.go:229 new block {"index": 835} -2023-12-15T14:26:06.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 835, "blockHeight": 835, "took": "9.935506ms"} -2023-12-15T14:26:07.207Z INFO sending PrepareRequest {"height": 836, "view": 0} -2023-12-15T14:26:07.207Z INFO sending Commit {"height": 836, "view": 0} -2023-12-15T14:26:07.208Z INFO approving block {"height": 836, "hash": "568bc960281e9f6f90b5ced9f3769433e70ca8df3f3599b6a0a34c71758a2797", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c35e62b52a6de4914509a028f06ef06319c8a1576fa34c18e628d079153eabb"} -2023-12-15T14:26:07.209Z INFO initializing dbft {"height": 837, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:07.210Z debug frostfs-node/morph.go:229 new block {"index": 836} -2023-12-15T14:26:07.465Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 836, "blockHeight": 836, "took": "5.840651ms"} -2023-12-15T14:26:08.209Z INFO sending PrepareRequest {"height": 837, "view": 0} -2023-12-15T14:26:08.209Z INFO sending Commit {"height": 837, "view": 0} -2023-12-15T14:26:08.210Z INFO approving block {"height": 837, "hash": "6e2b886efe3059c30563d5ffa7ecc9464d62d1a369831082ca990679ddfb75a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "568bc960281e9f6f90b5ced9f3769433e70ca8df3f3599b6a0a34c71758a2797"} -2023-12-15T14:26:08.211Z INFO initializing dbft {"height": 838, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:08.212Z debug frostfs-node/morph.go:229 new block {"index": 837} -2023-12-15T14:26:08.467Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 837, "blockHeight": 837, "took": "7.061022ms"} -2023-12-15T14:26:09.210Z INFO sending PrepareRequest {"height": 838, "view": 0} -2023-12-15T14:26:09.211Z INFO sending Commit {"height": 838, "view": 0} -2023-12-15T14:26:09.211Z INFO approving block {"height": 838, "hash": "8604bb2d9b7174bdbf9af36e771537de4e0054c4d6603182f1a4fd62d5a7df4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e2b886efe3059c30563d5ffa7ecc9464d62d1a369831082ca990679ddfb75a7"} -2023-12-15T14:26:09.213Z INFO initializing dbft {"height": 839, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:09.214Z debug frostfs-node/morph.go:229 new block {"index": 838} -2023-12-15T14:26:09.465Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 838, "blockHeight": 838, "took": "4.759358ms"} -2023-12-15T14:26:10.213Z INFO sending PrepareRequest {"height": 839, "view": 0} -2023-12-15T14:26:10.213Z INFO sending Commit {"height": 839, "view": 0} -2023-12-15T14:26:10.214Z INFO approving block {"height": 839, "hash": "b1f5d2378361363af33107329de1f9fc7d49d24aa6091755d70db091571b1cf0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8604bb2d9b7174bdbf9af36e771537de4e0054c4d6603182f1a4fd62d5a7df4a"} -2023-12-15T14:26:10.217Z INFO initializing dbft {"height": 840, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:10.217Z debug frostfs-node/morph.go:229 new block {"index": 839} -2023-12-15T14:26:10.470Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 839, "blockHeight": 839, "took": "7.838602ms"} -2023-12-15T14:26:11.215Z INFO sending PrepareRequest {"height": 840, "view": 0} -2023-12-15T14:26:11.215Z INFO sending Commit {"height": 840, "view": 0} -2023-12-15T14:26:11.216Z INFO approving block {"height": 840, "hash": "11f884f3a42ce2fbdb625de37067ef17262205ee5c5731ed7711a642cad45782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1f5d2378361363af33107329de1f9fc7d49d24aa6091755d70db091571b1cf0"} -2023-12-15T14:26:11.217Z INFO initializing dbft {"height": 841, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:11.218Z debug frostfs-node/morph.go:229 new block {"index": 840} -2023-12-15T14:26:11.470Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 840, "blockHeight": 840, "took": "6.871615ms"} -2023-12-15T14:26:12.217Z INFO sending PrepareRequest {"height": 841, "view": 0} -2023-12-15T14:26:12.217Z INFO sending Commit {"height": 841, "view": 0} -2023-12-15T14:26:12.218Z INFO approving block {"height": 841, "hash": "c197ed271484ca4763aaf0509f6344b5cce169c279b02e30e59b827a08b2217d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11f884f3a42ce2fbdb625de37067ef17262205ee5c5731ed7711a642cad45782"} -2023-12-15T14:26:12.220Z INFO initializing dbft {"height": 842, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:12.220Z debug frostfs-node/morph.go:229 new block {"index": 841} -2023-12-15T14:26:12.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 841, "blockHeight": 841, "took": "4.862451ms"} -2023-12-15T14:26:13.218Z INFO sending PrepareRequest {"height": 842, "view": 0} -2023-12-15T14:26:13.219Z INFO sending Commit {"height": 842, "view": 0} -2023-12-15T14:26:13.219Z INFO approving block {"height": 842, "hash": "260ad7741ee079627a5f09984eb7ba0273fb49192928bfced7b82eff59671266", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c197ed271484ca4763aaf0509f6344b5cce169c279b02e30e59b827a08b2217d"} -2023-12-15T14:26:13.221Z INFO initializing dbft {"height": 843, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:13.222Z debug frostfs-node/morph.go:229 new block {"index": 842} -2023-12-15T14:26:13.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 842, "blockHeight": 842, "took": "4.458579ms"} -2023-12-15T14:26:14.220Z INFO sending PrepareRequest {"height": 843, "view": 0} -2023-12-15T14:26:14.220Z INFO sending Commit {"height": 843, "view": 0} -2023-12-15T14:26:14.220Z INFO approving block {"height": 843, "hash": "5a288b4ff9fe1985b2e8b126f6a99fdde801c72c1112debebf7b19c677d875af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "260ad7741ee079627a5f09984eb7ba0273fb49192928bfced7b82eff59671266"} -2023-12-15T14:26:14.221Z INFO initializing dbft {"height": 844, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:14.221Z debug frostfs-node/morph.go:229 new block {"index": 843} -2023-12-15T14:26:14.224Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 4, "iteration": 1, "error": "no data for 0 iteration in 4 epoch for consumers's trusts"} -2023-12-15T14:26:14.225Z info settlement/calls.go:61 start basic income collection {"epoch": 4} -2023-12-15T14:26:14.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 843, "blockHeight": 843, "took": "4.036204ms"} -2023-12-15T14:26:15.221Z INFO sending PrepareRequest {"height": 844, "view": 0} -2023-12-15T14:26:15.221Z INFO sending Commit {"height": 844, "view": 0} -2023-12-15T14:26:15.222Z INFO approving block {"height": 844, "hash": "4441113e991828201701e26613181caee8bf66a2915260af0306f3024d9ca651", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a288b4ff9fe1985b2e8b126f6a99fdde801c72c1112debebf7b19c677d875af"} -2023-12-15T14:26:15.223Z INFO initializing dbft {"height": 845, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:15.223Z debug frostfs-node/morph.go:229 new block {"index": 844} -2023-12-15T14:26:15.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 844, "blockHeight": 844, "took": "3.678093ms"} -2023-12-15T14:26:16.223Z INFO sending PrepareRequest {"height": 845, "view": 0} -2023-12-15T14:26:16.223Z INFO sending Commit {"height": 845, "view": 0} -2023-12-15T14:26:16.223Z INFO approving block {"height": 845, "hash": "f0ee11521d85c19d8c7b2f35de7107e0c15884df3c7c0fd57c02c852ff9a6052", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4441113e991828201701e26613181caee8bf66a2915260af0306f3024d9ca651"} -2023-12-15T14:26:16.224Z INFO initializing dbft {"height": 846, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:16.225Z debug frostfs-node/morph.go:229 new block {"index": 845} -2023-12-15T14:26:16.472Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 845, "blockHeight": 845, "took": "6.731189ms"} -2023-12-15T14:26:17.224Z INFO sending PrepareRequest {"height": 846, "view": 0} -2023-12-15T14:26:17.224Z INFO sending Commit {"height": 846, "view": 0} -2023-12-15T14:26:17.224Z INFO approving block {"height": 846, "hash": "cf7295272d95054de1831f223ae041992a57923bba1ada4d5e159543ce78809c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0ee11521d85c19d8c7b2f35de7107e0c15884df3c7c0fd57c02c852ff9a6052"} -2023-12-15T14:26:17.225Z INFO initializing dbft {"height": 847, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:17.226Z debug frostfs-node/morph.go:229 new block {"index": 846} -2023-12-15T14:26:17.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 846, "blockHeight": 846, "took": "2.579186ms"} -2023-12-15T14:26:18.226Z INFO sending PrepareRequest {"height": 847, "view": 0} -2023-12-15T14:26:18.227Z INFO sending Commit {"height": 847, "view": 0} -2023-12-15T14:26:18.227Z INFO approving block {"height": 847, "hash": "0afeee131f277284871c93ef14188664a5b755302c79778e9d68faebb1a69cca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf7295272d95054de1831f223ae041992a57923bba1ada4d5e159543ce78809c"} -2023-12-15T14:26:18.229Z INFO initializing dbft {"height": 848, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:18.230Z debug frostfs-node/morph.go:229 new block {"index": 847} -2023-12-15T14:26:18.471Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 847, "blockHeight": 847, "took": "5.12683ms"} -2023-12-15T14:26:19.229Z INFO sending PrepareRequest {"height": 848, "view": 0} -2023-12-15T14:26:19.229Z INFO sending Commit {"height": 848, "view": 0} -2023-12-15T14:26:19.229Z INFO approving block {"height": 848, "hash": "56f25475155560be305f3d15c2de00db194b308eb9bc5e8c83b01cea93f40836", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0afeee131f277284871c93ef14188664a5b755302c79778e9d68faebb1a69cca"} -2023-12-15T14:26:19.231Z INFO initializing dbft {"height": 849, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:19.231Z debug frostfs-node/morph.go:229 new block {"index": 848} -2023-12-15T14:26:19.475Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 848, "blockHeight": 848, "took": "8.628771ms"} -2023-12-15T14:26:20.230Z INFO sending PrepareRequest {"height": 849, "view": 0} -2023-12-15T14:26:20.230Z INFO sending Commit {"height": 849, "view": 0} -2023-12-15T14:26:20.231Z INFO approving block {"height": 849, "hash": "89a2ec9ccfa91f53abff623ef09e0f612ad484810002e7287834378236ba7972", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56f25475155560be305f3d15c2de00db194b308eb9bc5e8c83b01cea93f40836"} -2023-12-15T14:26:20.232Z INFO initializing dbft {"height": 850, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:20.233Z debug frostfs-node/morph.go:229 new block {"index": 849} -2023-12-15T14:26:20.473Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 849, "blockHeight": 849, "took": "5.543681ms"} -2023-12-15T14:26:21.232Z INFO sending PrepareRequest {"height": 850, "view": 0} -2023-12-15T14:26:21.233Z INFO sending Commit {"height": 850, "view": 0} -2023-12-15T14:26:21.234Z INFO approving block {"height": 850, "hash": "f4f7a7e88b1453fe8ed0a7009584a1447dff2eda44ee575ba5cab9ec9524a607", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89a2ec9ccfa91f53abff623ef09e0f612ad484810002e7287834378236ba7972"} -2023-12-15T14:26:21.235Z INFO initializing dbft {"height": 851, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:21.236Z debug frostfs-node/morph.go:229 new block {"index": 850} -2023-12-15T14:26:21.474Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 850, "blockHeight": 850, "took": "5.541351ms"} -2023-12-15T14:26:22.235Z INFO sending PrepareRequest {"height": 851, "view": 0} -2023-12-15T14:26:22.235Z INFO sending Commit {"height": 851, "view": 0} -2023-12-15T14:26:22.236Z INFO approving block {"height": 851, "hash": "ae1ab0769af7f0adf49ec9f08ceff0a392619f4f219d84d5c7857348eb2eb6ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4f7a7e88b1453fe8ed0a7009584a1447dff2eda44ee575ba5cab9ec9524a607"} -2023-12-15T14:26:22.238Z INFO initializing dbft {"height": 852, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:22.239Z debug frostfs-node/morph.go:229 new block {"index": 851} -2023-12-15T14:26:22.475Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 851, "blockHeight": 851, "took": "6.228391ms"} -2023-12-15T14:26:23.237Z INFO sending PrepareRequest {"height": 852, "view": 0} -2023-12-15T14:26:23.237Z INFO sending Commit {"height": 852, "view": 0} -2023-12-15T14:26:23.237Z INFO approving block {"height": 852, "hash": "d27859c1e1499c5eaaa64ed30884f36dd64ecd8c6e21d5777431aee26882fd41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae1ab0769af7f0adf49ec9f08ceff0a392619f4f219d84d5c7857348eb2eb6ce"} -2023-12-15T14:26:23.238Z INFO initializing dbft {"height": 853, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:23.238Z debug frostfs-node/morph.go:229 new block {"index": 852} -2023-12-15T14:26:23.474Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 852, "blockHeight": 852, "took": "4.316906ms"} -2023-12-15T14:26:24.238Z INFO sending PrepareRequest {"height": 853, "view": 0} -2023-12-15T14:26:24.238Z INFO sending Commit {"height": 853, "view": 0} -2023-12-15T14:26:24.239Z INFO approving block {"height": 853, "hash": "a1429d32cef828dceae12e35c2214b59317c048f7a6ac3a25ca53fbb1ad17598", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d27859c1e1499c5eaaa64ed30884f36dd64ecd8c6e21d5777431aee26882fd41"} -2023-12-15T14:26:24.239Z INFO initializing dbft {"height": 854, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:24.240Z debug frostfs-node/morph.go:229 new block {"index": 853} -2023-12-15T14:26:24.474Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 853, "blockHeight": 853, "took": "3.555153ms"} -2023-12-15T14:26:25.240Z INFO sending PrepareRequest {"height": 854, "view": 0} -2023-12-15T14:26:25.240Z INFO sending Commit {"height": 854, "view": 0} -2023-12-15T14:26:25.240Z INFO approving block {"height": 854, "hash": "e86057a69d9793a7ea2f7eb7cf4e3bdaeb754b54593dc3d792267aa8d230daa6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1429d32cef828dceae12e35c2214b59317c048f7a6ac3a25ca53fbb1ad17598"} -2023-12-15T14:26:25.241Z INFO initializing dbft {"height": 855, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:25.241Z debug frostfs-node/morph.go:229 new block {"index": 854} -2023-12-15T14:26:25.474Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 854, "blockHeight": 854, "took": "3.469262ms"} -2023-12-15T14:26:26.241Z INFO sending PrepareRequest {"height": 855, "view": 0} -2023-12-15T14:26:26.241Z INFO sending Commit {"height": 855, "view": 0} -2023-12-15T14:26:26.241Z INFO approving block {"height": 855, "hash": "d9f609f2b5edbaf086fc6bcee1c5ad5d198453163676ed5c46e05d14934fedad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e86057a69d9793a7ea2f7eb7cf4e3bdaeb754b54593dc3d792267aa8d230daa6"} -2023-12-15T14:26:26.242Z INFO initializing dbft {"height": 856, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:26.242Z debug frostfs-node/morph.go:229 new block {"index": 855} -2023-12-15T14:26:26.476Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 855, "blockHeight": 855, "took": "4.294146ms"} -2023-12-15T14:26:27.242Z INFO sending PrepareRequest {"height": 856, "view": 0} -2023-12-15T14:26:27.242Z INFO sending Commit {"height": 856, "view": 0} -2023-12-15T14:26:27.242Z INFO approving block {"height": 856, "hash": "1610a5d657ad3e8b0e970f37fe6a46b466fe5725dabc50a20bf1f4b0c8b7913f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9f609f2b5edbaf086fc6bcee1c5ad5d198453163676ed5c46e05d14934fedad"} -2023-12-15T14:26:27.243Z INFO initializing dbft {"height": 857, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:27.244Z debug frostfs-node/morph.go:229 new block {"index": 856} -2023-12-15T14:26:27.477Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 856, "blockHeight": 856, "took": "4.719505ms"} -2023-12-15T14:26:28.244Z INFO sending PrepareRequest {"height": 857, "view": 0} -2023-12-15T14:26:28.244Z INFO sending Commit {"height": 857, "view": 0} -2023-12-15T14:26:28.244Z INFO approving block {"height": 857, "hash": "1d1e304257ed7193b04cc84bf805402b2d15c4230bfe17ea631da8a2fd434904", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1610a5d657ad3e8b0e970f37fe6a46b466fe5725dabc50a20bf1f4b0c8b7913f"} -2023-12-15T14:26:28.246Z INFO initializing dbft {"height": 858, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:28.246Z debug frostfs-node/morph.go:229 new block {"index": 857} -2023-12-15T14:26:28.478Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 857, "blockHeight": 857, "took": "4.952205ms"} -2023-12-15T14:26:29.245Z INFO sending PrepareRequest {"height": 858, "view": 0} -2023-12-15T14:26:29.246Z INFO sending Commit {"height": 858, "view": 0} -2023-12-15T14:26:29.246Z INFO approving block {"height": 858, "hash": "628bf8755a2fe0a8a8727d354bc15f32a9e69459dbe964c381572dca6503d3a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d1e304257ed7193b04cc84bf805402b2d15c4230bfe17ea631da8a2fd434904"} -2023-12-15T14:26:29.247Z INFO initializing dbft {"height": 859, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:29.247Z debug frostfs-node/morph.go:229 new block {"index": 858} -2023-12-15T14:26:29.478Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 858, "blockHeight": 858, "took": "4.349247ms"} -2023-12-15T14:26:30.247Z INFO sending PrepareRequest {"height": 859, "view": 0} -2023-12-15T14:26:30.248Z INFO sending Commit {"height": 859, "view": 0} -2023-12-15T14:26:30.248Z INFO approving block {"height": 859, "hash": "c9e97c00ae2b32d2e580e88bef133f99328caa09c2ad3993d33dcb8468a29f51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "628bf8755a2fe0a8a8727d354bc15f32a9e69459dbe964c381572dca6503d3a5"} -2023-12-15T14:26:30.250Z INFO initializing dbft {"height": 860, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:30.250Z debug frostfs-node/morph.go:229 new block {"index": 859} -2023-12-15T14:26:30.476Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 859, "blockHeight": 859, "took": "2.37344ms"} -2023-12-15T14:26:31.249Z INFO sending PrepareRequest {"height": 860, "view": 0} -2023-12-15T14:26:31.249Z INFO sending Commit {"height": 860, "view": 0} -2023-12-15T14:26:31.249Z INFO approving block {"height": 860, "hash": "cf5dd0d504f12b2e07866a5f4e73404ab0513ce8931ae8d0175aab403a9186af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9e97c00ae2b32d2e580e88bef133f99328caa09c2ad3993d33dcb8468a29f51"} -2023-12-15T14:26:31.251Z INFO initializing dbft {"height": 861, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:31.252Z debug frostfs-node/morph.go:229 new block {"index": 860} -2023-12-15T14:26:31.478Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 860, "blockHeight": 860, "took": "2.934586ms"} -2023-12-15T14:26:32.250Z INFO sending PrepareRequest {"height": 861, "view": 0} -2023-12-15T14:26:32.250Z INFO sending Commit {"height": 861, "view": 0} -2023-12-15T14:26:32.250Z INFO approving block {"height": 861, "hash": "c6403911bc5767369e3b91f46a939ebfaf231dc597bd49f65d646aac984252a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf5dd0d504f12b2e07866a5f4e73404ab0513ce8931ae8d0175aab403a9186af"} -2023-12-15T14:26:32.252Z INFO initializing dbft {"height": 862, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:32.252Z debug frostfs-node/morph.go:229 new block {"index": 861} -2023-12-15T14:26:32.479Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 861, "blockHeight": 861, "took": "4.253578ms"} -2023-12-15T14:26:33.251Z INFO sending PrepareRequest {"height": 862, "view": 0} -2023-12-15T14:26:33.252Z INFO sending Commit {"height": 862, "view": 0} -2023-12-15T14:26:33.252Z INFO approving block {"height": 862, "hash": "92573dc7289abf0b36cfad9a95f1f09fc784c1a41074da7cf4ea7079a9526ec1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6403911bc5767369e3b91f46a939ebfaf231dc597bd49f65d646aac984252a4"} -2023-12-15T14:26:33.253Z INFO initializing dbft {"height": 863, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:33.253Z debug frostfs-node/morph.go:229 new block {"index": 862} -2023-12-15T14:26:33.482Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 862, "blockHeight": 862, "took": "6.596898ms"} -2023-12-15T14:26:34.253Z INFO sending PrepareRequest {"height": 863, "view": 0} -2023-12-15T14:26:34.253Z INFO sending Commit {"height": 863, "view": 0} -2023-12-15T14:26:34.253Z INFO approving block {"height": 863, "hash": "144d00d79436a55f50b612a4cb1288a844aaf31c2f3fa18893bf44236083ce5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92573dc7289abf0b36cfad9a95f1f09fc784c1a41074da7cf4ea7079a9526ec1"} -2023-12-15T14:26:34.254Z INFO initializing dbft {"height": 864, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:34.255Z debug frostfs-node/morph.go:229 new block {"index": 863} -2023-12-15T14:26:34.478Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 863, "blockHeight": 863, "took": "2.450946ms"} -2023-12-15T14:26:35.254Z INFO sending PrepareRequest {"height": 864, "view": 0} -2023-12-15T14:26:35.254Z INFO sending Commit {"height": 864, "view": 0} -2023-12-15T14:26:35.255Z INFO approving block {"height": 864, "hash": "896cf53291c1f6f8aaf0bd97cd1ed2c824670c542b9824cdea7b2f78b612cdf7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "144d00d79436a55f50b612a4cb1288a844aaf31c2f3fa18893bf44236083ce5e"} -2023-12-15T14:26:35.256Z INFO initializing dbft {"height": 865, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:35.257Z debug frostfs-node/morph.go:229 new block {"index": 864} -2023-12-15T14:26:35.480Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 864, "blockHeight": 864, "took": "3.849406ms"} -2023-12-15T14:26:36.255Z INFO sending PrepareRequest {"height": 865, "view": 0} -2023-12-15T14:26:36.255Z INFO sending Commit {"height": 865, "view": 0} -2023-12-15T14:26:36.256Z INFO approving block {"height": 865, "hash": "5388db624d7f9fc5532bd6e9c43b02f732c69f07791def9e39bb090f8c683ada", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "896cf53291c1f6f8aaf0bd97cd1ed2c824670c542b9824cdea7b2f78b612cdf7"} -2023-12-15T14:26:36.257Z INFO initializing dbft {"height": 866, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:36.257Z debug frostfs-node/morph.go:229 new block {"index": 865} -2023-12-15T14:26:36.482Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 865, "blockHeight": 865, "took": "5.542602ms"} -2023-12-15T14:26:37.257Z INFO sending PrepareRequest {"height": 866, "view": 0} -2023-12-15T14:26:37.257Z INFO sending Commit {"height": 866, "view": 0} -2023-12-15T14:26:37.257Z INFO approving block {"height": 866, "hash": "6352e8731a34bc8e785b1f429fa8982b7ffd51781a39704cafaa25046360ec67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5388db624d7f9fc5532bd6e9c43b02f732c69f07791def9e39bb090f8c683ada"} -2023-12-15T14:26:37.258Z INFO initializing dbft {"height": 867, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:37.258Z debug frostfs-node/morph.go:229 new block {"index": 866} -2023-12-15T14:26:37.479Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 866, "blockHeight": 866, "took": "2.362403ms"} -2023-12-15T14:26:38.258Z INFO sending PrepareRequest {"height": 867, "view": 0} -2023-12-15T14:26:38.258Z INFO sending Commit {"height": 867, "view": 0} -2023-12-15T14:26:38.258Z INFO approving block {"height": 867, "hash": "b3219e80029511363b95eda6f06ef9486c62db5e865258f86ab626a570bdab37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6352e8731a34bc8e785b1f429fa8982b7ffd51781a39704cafaa25046360ec67"} -2023-12-15T14:26:38.259Z INFO initializing dbft {"height": 868, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:38.259Z debug frostfs-node/morph.go:229 new block {"index": 867} -2023-12-15T14:26:38.261Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:26:38.264Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:26:38.264Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:26:38.481Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 867, "blockHeight": 867, "took": "3.883045ms"} -2023-12-15T14:26:39.259Z INFO sending PrepareRequest {"height": 868, "view": 0} -2023-12-15T14:26:39.260Z INFO sending Commit {"height": 868, "view": 0} -2023-12-15T14:26:39.260Z INFO approving block {"height": 868, "hash": "aa27bea9649f415a719a304152cec1ff72d582a4ea279cdd9be5d7a61517831d", "tx_count": 2, "merkle": "b5747ea83e41b645768860d95f8d6f436794db7694138b3c3d444a8308e1474b", "prev": "b3219e80029511363b95eda6f06ef9486c62db5e865258f86ab626a570bdab37"} -2023-12-15T14:26:39.261Z INFO runtime log {"tx": "6376638cdc1551ae141677280ec81dbda2aea63545f09a44ea5dd3d66955f468", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:26:39.261Z INFO runtime log {"tx": "6376638cdc1551ae141677280ec81dbda2aea63545f09a44ea5dd3d66955f468", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:26:39.262Z INFO initializing dbft {"height": 869, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:39.263Z debug frostfs-node/morph.go:229 new block {"index": 868} -2023-12-15T14:26:39.483Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 868, "blockHeight": 868, "took": "5.644314ms"} -2023-12-15T14:26:40.261Z INFO sending PrepareRequest {"height": 869, "view": 0} -2023-12-15T14:26:40.261Z INFO sending Commit {"height": 869, "view": 0} -2023-12-15T14:26:40.261Z INFO approving block {"height": 869, "hash": "51bcbaec1566ce5f7e4b098afdf4c314ab19b6588712808028eae6e91f9367cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa27bea9649f415a719a304152cec1ff72d582a4ea279cdd9be5d7a61517831d"} -2023-12-15T14:26:40.263Z INFO initializing dbft {"height": 870, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:40.263Z debug frostfs-node/morph.go:229 new block {"index": 869} -2023-12-15T14:26:40.480Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 869, "blockHeight": 869, "took": "2.477232ms"} -2023-12-15T14:26:41.263Z INFO sending PrepareRequest {"height": 870, "view": 0} -2023-12-15T14:26:41.263Z INFO sending Commit {"height": 870, "view": 0} -2023-12-15T14:26:41.263Z INFO approving block {"height": 870, "hash": "d3067011bfb22c12b94f1ceef72a28a7ce88340b9ba1a0a7494d73159070f83b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51bcbaec1566ce5f7e4b098afdf4c314ab19b6588712808028eae6e91f9367cb"} -2023-12-15T14:26:41.264Z INFO initializing dbft {"height": 871, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:41.265Z debug frostfs-node/morph.go:229 new block {"index": 870} -2023-12-15T14:26:41.482Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 870, "blockHeight": 870, "took": "2.662669ms"} -2023-12-15T14:26:42.264Z INFO sending PrepareRequest {"height": 871, "view": 0} -2023-12-15T14:26:42.264Z INFO sending Commit {"height": 871, "view": 0} -2023-12-15T14:26:42.264Z INFO approving block {"height": 871, "hash": "808d284dfb9d4372765181c26ed0c6caec9f1cc360d462851e516fa38702498a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3067011bfb22c12b94f1ceef72a28a7ce88340b9ba1a0a7494d73159070f83b"} -2023-12-15T14:26:42.265Z INFO initializing dbft {"height": 872, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:42.266Z debug frostfs-node/morph.go:229 new block {"index": 871} -2023-12-15T14:26:42.483Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 871, "blockHeight": 871, "took": "3.433971ms"} -2023-12-15T14:26:43.266Z INFO sending PrepareRequest {"height": 872, "view": 0} -2023-12-15T14:26:43.266Z INFO sending Commit {"height": 872, "view": 0} -2023-12-15T14:26:43.267Z INFO approving block {"height": 872, "hash": "0018fa618b65fc0c1fd798861f08b1e422707179179dadccebadcbb62c495a96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "808d284dfb9d4372765181c26ed0c6caec9f1cc360d462851e516fa38702498a"} -2023-12-15T14:26:43.268Z INFO initializing dbft {"height": 873, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:43.268Z debug frostfs-node/morph.go:229 new block {"index": 872} -2023-12-15T14:26:43.483Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 872, "blockHeight": 872, "took": "3.406993ms"} -2023-12-15T14:26:44.267Z INFO sending PrepareRequest {"height": 873, "view": 0} -2023-12-15T14:26:44.267Z INFO sending Commit {"height": 873, "view": 0} -2023-12-15T14:26:44.268Z INFO approving block {"height": 873, "hash": "9e917367ca29da8279c383720a4e48cee011df5f5842d5a6a1053661bfd72d2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0018fa618b65fc0c1fd798861f08b1e422707179179dadccebadcbb62c495a96"} -2023-12-15T14:26:44.269Z INFO initializing dbft {"height": 874, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:44.270Z debug frostfs-node/morph.go:229 new block {"index": 873} -2023-12-15T14:26:44.483Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 873, "blockHeight": 873, "took": "3.10838ms"} -2023-12-15T14:26:45.269Z INFO sending PrepareRequest {"height": 874, "view": 0} -2023-12-15T14:26:45.269Z INFO sending Commit {"height": 874, "view": 0} -2023-12-15T14:26:45.269Z INFO approving block {"height": 874, "hash": "2e7887472ecab21e83d0e90ba9cc03c2487abee9bd12cdfcb7f09c4d24b16576", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e917367ca29da8279c383720a4e48cee011df5f5842d5a6a1053661bfd72d2f"} -2023-12-15T14:26:45.271Z INFO initializing dbft {"height": 875, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:45.271Z debug frostfs-node/morph.go:229 new block {"index": 874} -2023-12-15T14:26:45.486Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 874, "blockHeight": 874, "took": "4.789913ms"} -2023-12-15T14:26:46.270Z INFO sending PrepareRequest {"height": 875, "view": 0} -2023-12-15T14:26:46.270Z INFO sending Commit {"height": 875, "view": 0} -2023-12-15T14:26:46.271Z INFO approving block {"height": 875, "hash": "1260d326537bc088ed95c7677291d05fd64027612a8d68fc6aac1695411ef508", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e7887472ecab21e83d0e90ba9cc03c2487abee9bd12cdfcb7f09c4d24b16576"} -2023-12-15T14:26:46.272Z INFO initializing dbft {"height": 876, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:46.273Z debug frostfs-node/morph.go:229 new block {"index": 875} -2023-12-15T14:26:46.485Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 875, "blockHeight": 875, "took": "3.727519ms"} -2023-12-15T14:26:47.272Z INFO sending PrepareRequest {"height": 876, "view": 0} -2023-12-15T14:26:47.272Z INFO sending Commit {"height": 876, "view": 0} -2023-12-15T14:26:47.272Z INFO approving block {"height": 876, "hash": "1ff120e0449cfc3b1d217bd2e476d555f261cc3d5504e304170a41c960498155", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1260d326537bc088ed95c7677291d05fd64027612a8d68fc6aac1695411ef508"} -2023-12-15T14:26:47.273Z INFO initializing dbft {"height": 877, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:47.273Z debug frostfs-node/morph.go:229 new block {"index": 876} -2023-12-15T14:26:47.485Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 876, "blockHeight": 876, "took": "3.704181ms"} -2023-12-15T14:26:48.273Z INFO sending PrepareRequest {"height": 877, "view": 0} -2023-12-15T14:26:48.274Z INFO sending Commit {"height": 877, "view": 0} -2023-12-15T14:26:48.274Z INFO approving block {"height": 877, "hash": "6ce3645bc9023e2bf5e7d1369a1d5d9ff917168fc93c1aab3f3083ca1a4fe8fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ff120e0449cfc3b1d217bd2e476d555f261cc3d5504e304170a41c960498155"} -2023-12-15T14:26:48.275Z INFO initializing dbft {"height": 878, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:48.276Z debug frostfs-node/morph.go:229 new block {"index": 877} -2023-12-15T14:26:48.485Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 877, "blockHeight": 877, "took": "2.700179ms"} -2023-12-15T14:26:49.275Z INFO sending PrepareRequest {"height": 878, "view": 0} -2023-12-15T14:26:49.275Z INFO sending Commit {"height": 878, "view": 0} -2023-12-15T14:26:49.275Z INFO approving block {"height": 878, "hash": "990136ed5f07a6f14f7f7f4dd61f8f966ecfd0fe6de5711f1fb8797653c08224", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ce3645bc9023e2bf5e7d1369a1d5d9ff917168fc93c1aab3f3083ca1a4fe8fe"} -2023-12-15T14:26:49.277Z INFO initializing dbft {"height": 879, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:49.278Z debug frostfs-node/morph.go:229 new block {"index": 878} -2023-12-15T14:26:49.485Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 878, "blockHeight": 878, "took": "2.706459ms"} -2023-12-15T14:26:50.276Z INFO sending PrepareRequest {"height": 879, "view": 0} -2023-12-15T14:26:50.276Z INFO sending Commit {"height": 879, "view": 0} -2023-12-15T14:26:50.277Z INFO approving block {"height": 879, "hash": "81115846842049639354dd189468c199a3b470813f00599553ed835815b72d1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "990136ed5f07a6f14f7f7f4dd61f8f966ecfd0fe6de5711f1fb8797653c08224"} -2023-12-15T14:26:50.278Z INFO initializing dbft {"height": 880, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:50.279Z debug frostfs-node/morph.go:229 new block {"index": 879} -2023-12-15T14:26:50.487Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 879, "blockHeight": 879, "took": "3.733808ms"} -2023-12-15T14:26:51.278Z INFO sending PrepareRequest {"height": 880, "view": 0} -2023-12-15T14:26:51.278Z INFO sending Commit {"height": 880, "view": 0} -2023-12-15T14:26:51.278Z INFO approving block {"height": 880, "hash": "e212fd3dcbf5aa724fd3bd63ff389de112cfe3dba69a505112fcd585b5c82bc2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81115846842049639354dd189468c199a3b470813f00599553ed835815b72d1f"} -2023-12-15T14:26:51.279Z INFO initializing dbft {"height": 881, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:51.280Z debug frostfs-node/morph.go:229 new block {"index": 880} -2023-12-15T14:26:51.487Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 880, "blockHeight": 880, "took": "3.564781ms"} -2023-12-15T14:26:52.279Z INFO sending PrepareRequest {"height": 881, "view": 0} -2023-12-15T14:26:52.279Z INFO sending Commit {"height": 881, "view": 0} -2023-12-15T14:26:52.279Z INFO approving block {"height": 881, "hash": "8a089e0c610a721d80330ae623ec0626b9a3226540524ad863887193bc1e0254", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e212fd3dcbf5aa724fd3bd63ff389de112cfe3dba69a505112fcd585b5c82bc2"} -2023-12-15T14:26:52.280Z INFO initializing dbft {"height": 882, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:52.281Z debug frostfs-node/morph.go:229 new block {"index": 881} -2023-12-15T14:26:52.491Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 881, "blockHeight": 881, "took": "6.396326ms"} -2023-12-15T14:26:53.281Z INFO sending PrepareRequest {"height": 882, "view": 0} -2023-12-15T14:26:53.281Z INFO sending Commit {"height": 882, "view": 0} -2023-12-15T14:26:53.281Z INFO approving block {"height": 882, "hash": "5afbc09e02e2383ae3337b625b51ad7cc9da2752ede579f20327744dc4f72c69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a089e0c610a721d80330ae623ec0626b9a3226540524ad863887193bc1e0254"} -2023-12-15T14:26:53.283Z INFO initializing dbft {"height": 883, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:53.283Z debug frostfs-node/morph.go:229 new block {"index": 882} -2023-12-15T14:26:53.490Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 882, "blockHeight": 882, "took": "5.542871ms"} -2023-12-15T14:26:54.282Z INFO sending PrepareRequest {"height": 883, "view": 0} -2023-12-15T14:26:54.282Z INFO sending Commit {"height": 883, "view": 0} -2023-12-15T14:26:54.282Z INFO approving block {"height": 883, "hash": "0568d692a8793f9ae348616e7c15f581be97e1d7140f45fe4cb083975e61978a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5afbc09e02e2383ae3337b625b51ad7cc9da2752ede579f20327744dc4f72c69"} -2023-12-15T14:26:54.283Z INFO initializing dbft {"height": 884, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:54.284Z debug frostfs-node/morph.go:229 new block {"index": 883} -2023-12-15T14:26:54.491Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 883, "blockHeight": 883, "took": "5.564208ms"} -2023-12-15T14:26:55.284Z INFO sending PrepareRequest {"height": 884, "view": 0} -2023-12-15T14:26:55.284Z INFO sending Commit {"height": 884, "view": 0} -2023-12-15T14:26:55.284Z INFO approving block {"height": 884, "hash": "7ef2704d41c08472871aab2b3c0d62b9885bfe7aed95cb51592af8ffefb6e659", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0568d692a8793f9ae348616e7c15f581be97e1d7140f45fe4cb083975e61978a"} -2023-12-15T14:26:55.286Z INFO initializing dbft {"height": 885, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:55.286Z debug frostfs-node/morph.go:229 new block {"index": 884} -2023-12-15T14:26:55.489Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 884, "blockHeight": 884, "took": "3.466401ms"} -2023-12-15T14:26:56.285Z INFO sending PrepareRequest {"height": 885, "view": 0} -2023-12-15T14:26:56.286Z INFO sending Commit {"height": 885, "view": 0} -2023-12-15T14:26:56.286Z INFO approving block {"height": 885, "hash": "02a066cef73b427c8609206cfd5e9883601314f89fc81e492e71dab9370b292a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ef2704d41c08472871aab2b3c0d62b9885bfe7aed95cb51592af8ffefb6e659"} -2023-12-15T14:26:56.287Z INFO initializing dbft {"height": 886, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:56.287Z debug frostfs-node/morph.go:229 new block {"index": 885} -2023-12-15T14:26:56.491Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 885, "blockHeight": 885, "took": "4.47605ms"} -2023-12-15T14:26:57.286Z INFO sending PrepareRequest {"height": 886, "view": 0} -2023-12-15T14:26:57.287Z INFO sending Commit {"height": 886, "view": 0} -2023-12-15T14:26:57.287Z INFO approving block {"height": 886, "hash": "5dbb2f1250e0bfca2b562a672fa1a9822f9fbc4dc2f8e330819a57d7786ff75e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02a066cef73b427c8609206cfd5e9883601314f89fc81e492e71dab9370b292a"} -2023-12-15T14:26:57.288Z INFO initializing dbft {"height": 887, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:57.289Z debug frostfs-node/morph.go:229 new block {"index": 886} -2023-12-15T14:26:57.490Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 886, "blockHeight": 886, "took": "2.721057ms"} -2023-12-15T14:26:58.288Z INFO sending PrepareRequest {"height": 887, "view": 0} -2023-12-15T14:26:58.288Z INFO sending Commit {"height": 887, "view": 0} -2023-12-15T14:26:58.288Z INFO approving block {"height": 887, "hash": "c5b4fc2e67de52bda8404daa2449235c32ee78c4e9824441c9b01397523e238f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5dbb2f1250e0bfca2b562a672fa1a9822f9fbc4dc2f8e330819a57d7786ff75e"} -2023-12-15T14:26:58.289Z INFO initializing dbft {"height": 888, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:58.289Z debug frostfs-node/morph.go:229 new block {"index": 887} -2023-12-15T14:26:58.494Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 887, "blockHeight": 887, "took": "5.347538ms"} -2023-12-15T14:26:59.289Z INFO sending PrepareRequest {"height": 888, "view": 0} -2023-12-15T14:26:59.289Z INFO sending Commit {"height": 888, "view": 0} -2023-12-15T14:26:59.289Z INFO approving block {"height": 888, "hash": "50e54d092ccde8a57fdb926ae9b445220cc43f08344c60f6a38ed0aaab815c0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5b4fc2e67de52bda8404daa2449235c32ee78c4e9824441c9b01397523e238f"} -2023-12-15T14:26:59.291Z INFO initializing dbft {"height": 889, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:26:59.291Z debug frostfs-node/morph.go:229 new block {"index": 888} -2023-12-15T14:26:59.494Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 888, "blockHeight": 888, "took": "4.383242ms"} -2023-12-15T14:27:00.290Z INFO sending PrepareRequest {"height": 889, "view": 0} -2023-12-15T14:27:00.290Z INFO sending Commit {"height": 889, "view": 0} -2023-12-15T14:27:00.290Z INFO approving block {"height": 889, "hash": "6cf0b24b48c61cb78c3d20ab1feaeb61456ad5a4bf0fe4399e20e6adf8dbb4a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50e54d092ccde8a57fdb926ae9b445220cc43f08344c60f6a38ed0aaab815c0a"} -2023-12-15T14:27:00.291Z INFO initializing dbft {"height": 890, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:00.291Z debug frostfs-node/morph.go:229 new block {"index": 889} -2023-12-15T14:27:00.494Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 889, "blockHeight": 889, "took": "3.770256ms"} -2023-12-15T14:27:01.291Z INFO sending PrepareRequest {"height": 890, "view": 0} -2023-12-15T14:27:01.291Z INFO sending Commit {"height": 890, "view": 0} -2023-12-15T14:27:01.291Z INFO approving block {"height": 890, "hash": "4dfe2b42465c7151525abae0b68d68454cd0daf78c51bd247e7c2aa0d2fcb190", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cf0b24b48c61cb78c3d20ab1feaeb61456ad5a4bf0fe4399e20e6adf8dbb4a0"} -2023-12-15T14:27:01.292Z INFO initializing dbft {"height": 891, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:01.293Z debug frostfs-node/morph.go:229 new block {"index": 890} -2023-12-15T14:27:01.495Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 890, "blockHeight": 890, "took": "4.820228ms"} -2023-12-15T14:27:02.292Z INFO sending PrepareRequest {"height": 891, "view": 0} -2023-12-15T14:27:02.293Z INFO sending Commit {"height": 891, "view": 0} -2023-12-15T14:27:02.293Z INFO approving block {"height": 891, "hash": "29a33d1513857d87007df4382b32207cdbaeeb84495f75628b789f0fbe612278", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4dfe2b42465c7151525abae0b68d68454cd0daf78c51bd247e7c2aa0d2fcb190"} -2023-12-15T14:27:02.294Z INFO initializing dbft {"height": 892, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:02.294Z debug frostfs-node/morph.go:229 new block {"index": 891} -2023-12-15T14:27:02.496Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 891, "blockHeight": 891, "took": "5.815116ms"} -2023-12-15T14:27:03.293Z INFO sending PrepareRequest {"height": 892, "view": 0} -2023-12-15T14:27:03.294Z INFO sending Commit {"height": 892, "view": 0} -2023-12-15T14:27:03.294Z INFO approving block {"height": 892, "hash": "165e6825fcb791b2774f60f3ab1dd64393854bf6c87a58ad07821ded46ede67f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29a33d1513857d87007df4382b32207cdbaeeb84495f75628b789f0fbe612278"} -2023-12-15T14:27:03.294Z INFO initializing dbft {"height": 893, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:03.295Z debug frostfs-node/morph.go:229 new block {"index": 892} -2023-12-15T14:27:03.494Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 892, "blockHeight": 892, "took": "2.48137ms"} -2023-12-15T14:27:04.295Z INFO sending PrepareRequest {"height": 893, "view": 0} -2023-12-15T14:27:04.295Z INFO sending Commit {"height": 893, "view": 0} -2023-12-15T14:27:04.295Z INFO approving block {"height": 893, "hash": "961c7ff15e30d6c388677651d3e7a41a17125f2714720cb977462e4ca64fb62a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "165e6825fcb791b2774f60f3ab1dd64393854bf6c87a58ad07821ded46ede67f"} -2023-12-15T14:27:04.296Z INFO initializing dbft {"height": 894, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:04.297Z debug frostfs-node/morph.go:229 new block {"index": 893} -2023-12-15T14:27:04.495Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 893, "blockHeight": 893, "took": "3.109904ms"} -2023-12-15T14:27:05.297Z INFO sending PrepareRequest {"height": 894, "view": 0} -2023-12-15T14:27:05.297Z INFO sending Commit {"height": 894, "view": 0} -2023-12-15T14:27:05.297Z INFO approving block {"height": 894, "hash": "ec35dcc47498cf03024644aa1fa55b2af3b07fb18bc7c82e8cd8d323f7d896fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "961c7ff15e30d6c388677651d3e7a41a17125f2714720cb977462e4ca64fb62a"} -2023-12-15T14:27:05.298Z INFO initializing dbft {"height": 895, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:05.299Z debug frostfs-node/morph.go:229 new block {"index": 894} -2023-12-15T14:27:05.496Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 894, "blockHeight": 894, "took": "3.307813ms"} -2023-12-15T14:27:06.298Z INFO sending PrepareRequest {"height": 895, "view": 0} -2023-12-15T14:27:06.298Z INFO sending Commit {"height": 895, "view": 0} -2023-12-15T14:27:06.299Z INFO approving block {"height": 895, "hash": "22b00c099734fa856865330013b3f188ea7a0d451f4e37210c5d9e5c14d87e92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec35dcc47498cf03024644aa1fa55b2af3b07fb18bc7c82e8cd8d323f7d896fa"} -2023-12-15T14:27:06.300Z INFO initializing dbft {"height": 896, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:06.301Z debug frostfs-node/morph.go:229 new block {"index": 895} -2023-12-15T14:27:06.497Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 895, "blockHeight": 895, "took": "4.140244ms"} -2023-12-15T14:27:07.300Z INFO sending PrepareRequest {"height": 896, "view": 0} -2023-12-15T14:27:07.300Z INFO sending Commit {"height": 896, "view": 0} -2023-12-15T14:27:07.301Z INFO approving block {"height": 896, "hash": "9141a3afcc35bfdde2248b644ca62375c9d565ba76c3068b7eff2940f801c35d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22b00c099734fa856865330013b3f188ea7a0d451f4e37210c5d9e5c14d87e92"} -2023-12-15T14:27:07.302Z INFO initializing dbft {"height": 897, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:07.302Z debug frostfs-node/morph.go:229 new block {"index": 896} -2023-12-15T14:27:07.497Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 896, "blockHeight": 896, "took": "3.766534ms"} -2023-12-15T14:27:08.301Z INFO sending PrepareRequest {"height": 897, "view": 0} -2023-12-15T14:27:08.301Z INFO sending Commit {"height": 897, "view": 0} -2023-12-15T14:27:08.301Z INFO approving block {"height": 897, "hash": "bb3465bd9947887ad0d483e80db739f27261551911b1e493d65f1da1c19da0d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9141a3afcc35bfdde2248b644ca62375c9d565ba76c3068b7eff2940f801c35d"} -2023-12-15T14:27:08.302Z INFO initializing dbft {"height": 898, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:08.303Z debug frostfs-node/morph.go:229 new block {"index": 897} -2023-12-15T14:27:08.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 897, "blockHeight": 897, "took": "3.744709ms"} -2023-12-15T14:27:09.303Z INFO sending PrepareRequest {"height": 898, "view": 0} -2023-12-15T14:27:09.303Z INFO sending Commit {"height": 898, "view": 0} -2023-12-15T14:27:09.303Z INFO approving block {"height": 898, "hash": "cdfadd2ff0a06dea633c1528e3fed7a95a6e59adee3c1c7b766a33a15f97302c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb3465bd9947887ad0d483e80db739f27261551911b1e493d65f1da1c19da0d5"} -2023-12-15T14:27:09.304Z INFO initializing dbft {"height": 899, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:09.305Z debug frostfs-node/morph.go:229 new block {"index": 898} -2023-12-15T14:27:09.499Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 898, "blockHeight": 898, "took": "4.13466ms"} -2023-12-15T14:27:10.304Z INFO sending PrepareRequest {"height": 899, "view": 0} -2023-12-15T14:27:10.304Z INFO sending Commit {"height": 899, "view": 0} -2023-12-15T14:27:10.304Z INFO approving block {"height": 899, "hash": "a69b3872e401d9cc65723edfbff7fdff6755647d10c802790ec33a6684513322", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdfadd2ff0a06dea633c1528e3fed7a95a6e59adee3c1c7b766a33a15f97302c"} -2023-12-15T14:27:10.305Z INFO initializing dbft {"height": 900, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:10.306Z debug frostfs-node/morph.go:229 new block {"index": 899} -2023-12-15T14:27:10.500Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 899, "blockHeight": 899, "took": "5.045527ms"} -2023-12-15T14:27:11.305Z INFO sending PrepareRequest {"height": 900, "view": 0} -2023-12-15T14:27:11.305Z INFO sending Commit {"height": 900, "view": 0} -2023-12-15T14:27:11.305Z INFO approving block {"height": 900, "hash": "47dd44e3535826080499ae84aefc55b8976a7646f1195646f2d1e61c09e34114", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a69b3872e401d9cc65723edfbff7fdff6755647d10c802790ec33a6684513322"} -2023-12-15T14:27:11.307Z INFO initializing dbft {"height": 901, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:11.307Z debug frostfs-node/morph.go:229 new block {"index": 900} -2023-12-15T14:27:11.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 900, "blockHeight": 900, "took": "5.018783ms"} -2023-12-15T14:27:12.307Z INFO sending PrepareRequest {"height": 901, "view": 0} -2023-12-15T14:27:12.307Z INFO sending Commit {"height": 901, "view": 0} -2023-12-15T14:27:12.307Z INFO approving block {"height": 901, "hash": "03a5fbe5439de31cb13e8fea0f92e5bc27a49de4315c5bf945b871bdaa0b9a13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47dd44e3535826080499ae84aefc55b8976a7646f1195646f2d1e61c09e34114"} -2023-12-15T14:27:12.308Z INFO initializing dbft {"height": 902, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:12.309Z debug frostfs-node/morph.go:229 new block {"index": 901} -2023-12-15T14:27:12.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 901, "blockHeight": 901, "took": "6.265366ms"} -2023-12-15T14:27:13.308Z INFO sending PrepareRequest {"height": 902, "view": 0} -2023-12-15T14:27:13.309Z INFO sending Commit {"height": 902, "view": 0} -2023-12-15T14:27:13.309Z INFO approving block {"height": 902, "hash": "7a8710189340b2c01bf84b6da38e55a48c4e6d6ce47ec7036a089041c1c7792c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03a5fbe5439de31cb13e8fea0f92e5bc27a49de4315c5bf945b871bdaa0b9a13"} -2023-12-15T14:27:13.310Z INFO initializing dbft {"height": 903, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:13.311Z debug frostfs-node/morph.go:229 new block {"index": 902} -2023-12-15T14:27:13.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 902, "blockHeight": 902, "took": "3.761754ms"} -2023-12-15T14:27:14.310Z INFO sending PrepareRequest {"height": 903, "view": 0} -2023-12-15T14:27:14.310Z INFO sending Commit {"height": 903, "view": 0} -2023-12-15T14:27:14.310Z INFO approving block {"height": 903, "hash": "20e20cd5be3bb875cdb7f866ec2ccc13c9d6a12ae86555d2158897cc29c50f4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a8710189340b2c01bf84b6da38e55a48c4e6d6ce47ec7036a089041c1c7792c"} -2023-12-15T14:27:14.312Z INFO initializing dbft {"height": 904, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:14.313Z debug frostfs-node/morph.go:229 new block {"index": 903} -2023-12-15T14:27:14.316Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 4, "iteration": 2, "error": "no data for 1 iteration in 4 epoch for consumers's trusts"} -2023-12-15T14:27:14.317Z info settlement/calls.go:106 start basic income distribution {"epoch": 4} -2023-12-15T14:27:14.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 903, "blockHeight": 903, "took": "5.304105ms"} -2023-12-15T14:27:15.311Z INFO sending PrepareRequest {"height": 904, "view": 0} -2023-12-15T14:27:15.311Z INFO sending Commit {"height": 904, "view": 0} -2023-12-15T14:27:15.312Z INFO approving block {"height": 904, "hash": "6a0235a46edff77d9811c27b8a20b8fa2d641638b9948ce6c5dd45dc616d7dad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20e20cd5be3bb875cdb7f866ec2ccc13c9d6a12ae86555d2158897cc29c50f4b"} -2023-12-15T14:27:15.313Z INFO initializing dbft {"height": 905, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:15.313Z debug frostfs-node/morph.go:229 new block {"index": 904} -2023-12-15T14:27:15.502Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 904, "blockHeight": 904, "took": "3.870543ms"} -2023-12-15T14:27:16.313Z INFO sending PrepareRequest {"height": 905, "view": 0} -2023-12-15T14:27:16.313Z INFO sending Commit {"height": 905, "view": 0} -2023-12-15T14:27:16.313Z INFO approving block {"height": 905, "hash": "26da677d5d8d0a362f089f2800234c22f0bffe0ae16a034a9244689c888a139c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a0235a46edff77d9811c27b8a20b8fa2d641638b9948ce6c5dd45dc616d7dad"} -2023-12-15T14:27:16.314Z INFO initializing dbft {"height": 906, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:16.315Z debug frostfs-node/morph.go:229 new block {"index": 905} -2023-12-15T14:27:16.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 905, "blockHeight": 905, "took": "3.661426ms"} -2023-12-15T14:27:17.314Z INFO sending PrepareRequest {"height": 906, "view": 0} -2023-12-15T14:27:17.314Z INFO sending Commit {"height": 906, "view": 0} -2023-12-15T14:27:17.314Z INFO approving block {"height": 906, "hash": "dc6f7a05bc3e7cfdd83d5b2ef71636d1d2a767258db36c605639ed9f8634b358", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26da677d5d8d0a362f089f2800234c22f0bffe0ae16a034a9244689c888a139c"} -2023-12-15T14:27:17.315Z INFO initializing dbft {"height": 907, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:17.316Z debug frostfs-node/morph.go:229 new block {"index": 906} -2023-12-15T14:27:17.504Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 906, "blockHeight": 906, "took": "4.509241ms"} -2023-12-15T14:27:18.316Z INFO sending PrepareRequest {"height": 907, "view": 0} -2023-12-15T14:27:18.316Z INFO sending Commit {"height": 907, "view": 0} -2023-12-15T14:27:18.316Z INFO approving block {"height": 907, "hash": "f51663cf49b8a41f4afe57063c5e76d1afae1fdcf7a262396d4dcd281e0ca074", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc6f7a05bc3e7cfdd83d5b2ef71636d1d2a767258db36c605639ed9f8634b358"} -2023-12-15T14:27:18.317Z INFO initializing dbft {"height": 908, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:18.318Z debug frostfs-node/morph.go:229 new block {"index": 907} -2023-12-15T14:27:18.504Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 907, "blockHeight": 907, "took": "4.582593ms"} -2023-12-15T14:27:19.317Z INFO sending PrepareRequest {"height": 908, "view": 0} -2023-12-15T14:27:19.317Z INFO sending Commit {"height": 908, "view": 0} -2023-12-15T14:27:19.318Z INFO approving block {"height": 908, "hash": "bee950776e2337f43896558f0bad32a712da0a22202a164926174d044600d220", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f51663cf49b8a41f4afe57063c5e76d1afae1fdcf7a262396d4dcd281e0ca074"} -2023-12-15T14:27:19.319Z INFO initializing dbft {"height": 909, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:19.320Z debug frostfs-node/morph.go:229 new block {"index": 908} -2023-12-15T14:27:19.506Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 908, "blockHeight": 908, "took": "5.756318ms"} -2023-12-15T14:27:20.318Z INFO sending PrepareRequest {"height": 909, "view": 0} -2023-12-15T14:27:20.319Z INFO sending Commit {"height": 909, "view": 0} -2023-12-15T14:27:20.319Z INFO approving block {"height": 909, "hash": "9bc6b5f9d75a507b98d0d11cbbcb4dd95bab1f8602197009ac7e62c919964e90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bee950776e2337f43896558f0bad32a712da0a22202a164926174d044600d220"} -2023-12-15T14:27:20.321Z INFO initializing dbft {"height": 910, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:20.321Z debug frostfs-node/morph.go:229 new block {"index": 909} -2023-12-15T14:27:20.504Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 909, "blockHeight": 909, "took": "3.802771ms"} -2023-12-15T14:27:21.320Z INFO sending PrepareRequest {"height": 910, "view": 0} -2023-12-15T14:27:21.320Z INFO sending Commit {"height": 910, "view": 0} -2023-12-15T14:27:21.320Z INFO approving block {"height": 910, "hash": "71016bec926bb8076606cd0d2e20ff6cf744ae30e04b3948baaf34bf489bd66a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9bc6b5f9d75a507b98d0d11cbbcb4dd95bab1f8602197009ac7e62c919964e90"} -2023-12-15T14:27:21.321Z INFO initializing dbft {"height": 911, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:21.321Z debug frostfs-node/morph.go:229 new block {"index": 910} -2023-12-15T14:27:21.506Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 910, "blockHeight": 910, "took": "4.737526ms"} -2023-12-15T14:27:22.322Z INFO sending PrepareRequest {"height": 911, "view": 0} -2023-12-15T14:27:22.323Z INFO sending Commit {"height": 911, "view": 0} -2023-12-15T14:27:22.323Z INFO approving block {"height": 911, "hash": "e24c70095497ceeaff3c5b997d6f933cecef4f067a80740d48eaa9ad097be423", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71016bec926bb8076606cd0d2e20ff6cf744ae30e04b3948baaf34bf489bd66a"} -2023-12-15T14:27:22.325Z INFO initializing dbft {"height": 912, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:22.326Z debug frostfs-node/morph.go:229 new block {"index": 911} -2023-12-15T14:27:22.505Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 911, "blockHeight": 911, "took": "3.398323ms"} -2023-12-15T14:27:23.324Z INFO sending PrepareRequest {"height": 912, "view": 0} -2023-12-15T14:27:23.324Z INFO sending Commit {"height": 912, "view": 0} -2023-12-15T14:27:23.324Z INFO approving block {"height": 912, "hash": "3597c07d1726b05c739b2307389ab9feebac86ac1759ee7308b00d95986b3bc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e24c70095497ceeaff3c5b997d6f933cecef4f067a80740d48eaa9ad097be423"} -2023-12-15T14:27:23.325Z INFO initializing dbft {"height": 913, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:23.325Z debug frostfs-node/morph.go:229 new block {"index": 912} -2023-12-15T14:27:23.507Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 912, "blockHeight": 912, "took": "3.734013ms"} -2023-12-15T14:27:24.325Z INFO sending PrepareRequest {"height": 913, "view": 0} -2023-12-15T14:27:24.325Z INFO sending Commit {"height": 913, "view": 0} -2023-12-15T14:27:24.326Z INFO approving block {"height": 913, "hash": "86c93c1484ffa30c380eeaa9b86a7f156a5963a1d6cde06169c2643db3a83f05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3597c07d1726b05c739b2307389ab9feebac86ac1759ee7308b00d95986b3bc5"} -2023-12-15T14:27:24.327Z INFO initializing dbft {"height": 914, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:24.327Z debug frostfs-node/morph.go:229 new block {"index": 913} -2023-12-15T14:27:24.509Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 913, "blockHeight": 913, "took": "5.236417ms"} -2023-12-15T14:27:25.326Z INFO sending PrepareRequest {"height": 914, "view": 0} -2023-12-15T14:27:25.327Z INFO sending Commit {"height": 914, "view": 0} -2023-12-15T14:27:25.327Z INFO approving block {"height": 914, "hash": "824a9f529b8e44a9c5059741edace9996a05b0423742d9e592102fd5ee9fe3ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86c93c1484ffa30c380eeaa9b86a7f156a5963a1d6cde06169c2643db3a83f05"} -2023-12-15T14:27:25.328Z INFO initializing dbft {"height": 915, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:25.328Z debug frostfs-node/morph.go:229 new block {"index": 914} -2023-12-15T14:27:25.510Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 914, "blockHeight": 914, "took": "5.008021ms"} -2023-12-15T14:27:26.328Z INFO sending PrepareRequest {"height": 915, "view": 0} -2023-12-15T14:27:26.329Z INFO sending Commit {"height": 915, "view": 0} -2023-12-15T14:27:26.329Z INFO approving block {"height": 915, "hash": "3339c47ce979cc948191aa988d02244249d06fa3fdfe1b9b34cca0d3b6071980", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "824a9f529b8e44a9c5059741edace9996a05b0423742d9e592102fd5ee9fe3ce"} -2023-12-15T14:27:26.330Z INFO initializing dbft {"height": 916, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:26.331Z debug frostfs-node/morph.go:229 new block {"index": 915} -2023-12-15T14:27:26.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 915, "blockHeight": 915, "took": "5.811056ms"} -2023-12-15T14:27:27.330Z INFO sending PrepareRequest {"height": 916, "view": 0} -2023-12-15T14:27:27.331Z INFO sending Commit {"height": 916, "view": 0} -2023-12-15T14:27:27.331Z INFO approving block {"height": 916, "hash": "a748128faced5c4fe242f3da5472df6d1883077df83aa6cfd2cd4776d0d5b488", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3339c47ce979cc948191aa988d02244249d06fa3fdfe1b9b34cca0d3b6071980"} -2023-12-15T14:27:27.331Z INFO initializing dbft {"height": 917, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:27.332Z debug frostfs-node/morph.go:229 new block {"index": 916} -2023-12-15T14:27:27.512Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 916, "blockHeight": 916, "took": "5.869371ms"} -2023-12-15T14:27:28.331Z INFO sending PrepareRequest {"height": 917, "view": 0} -2023-12-15T14:27:28.331Z INFO sending Commit {"height": 917, "view": 0} -2023-12-15T14:27:28.332Z INFO approving block {"height": 917, "hash": "5a519b3633c11eba24413c06df921c530152e0b14ba764a280088a3efc09271f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a748128faced5c4fe242f3da5472df6d1883077df83aa6cfd2cd4776d0d5b488"} -2023-12-15T14:27:28.332Z INFO initializing dbft {"height": 918, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:28.333Z debug frostfs-node/morph.go:229 new block {"index": 917} -2023-12-15T14:27:28.336Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:27:28.336Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:27:28.337Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:27:28.510Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 917, "blockHeight": 917, "took": "3.689077ms"} -2023-12-15T14:27:29.332Z INFO sending PrepareRequest {"height": 918, "view": 0} -2023-12-15T14:27:29.332Z INFO sending Commit {"height": 918, "view": 0} -2023-12-15T14:27:29.333Z INFO approving block {"height": 918, "hash": "c220404f274df98497683fb7d3b84915610f0e8823bff0c6c7a4376a3bce02ca", "tx_count": 2, "merkle": "9d77fe67751b3eee61cd603b9b90a8ce4ae6eec3325049cdd9853e3d03dba399", "prev": "5a519b3633c11eba24413c06df921c530152e0b14ba764a280088a3efc09271f"} -2023-12-15T14:27:29.334Z INFO runtime log {"tx": "70ea18e9f0e68ca8256f2a761ba2de1f3e17b7cfb0bd660469c1c0c5813dba86", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:27:29.334Z INFO runtime log {"tx": "70ea18e9f0e68ca8256f2a761ba2de1f3e17b7cfb0bd660469c1c0c5813dba86", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:27:29.335Z INFO initializing dbft {"height": 919, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:29.335Z debug frostfs-node/morph.go:229 new block {"index": 918} -2023-12-15T14:27:29.512Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 918, "blockHeight": 918, "took": "5.103576ms"} -2023-12-15T14:27:30.334Z INFO sending PrepareRequest {"height": 919, "view": 0} -2023-12-15T14:27:30.334Z INFO sending Commit {"height": 919, "view": 0} -2023-12-15T14:27:30.334Z INFO approving block {"height": 919, "hash": "f3554b068b2c76d78030be810774f80b3abd806ba8faeb5d0dd61aa523c7feff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c220404f274df98497683fb7d3b84915610f0e8823bff0c6c7a4376a3bce02ca"} -2023-12-15T14:27:30.335Z INFO initializing dbft {"height": 920, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:30.335Z debug frostfs-node/morph.go:229 new block {"index": 919} -2023-12-15T14:27:30.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 919, "blockHeight": 919, "took": "3.359019ms"} -2023-12-15T14:27:31.335Z INFO sending PrepareRequest {"height": 920, "view": 0} -2023-12-15T14:27:31.335Z INFO sending Commit {"height": 920, "view": 0} -2023-12-15T14:27:31.335Z INFO approving block {"height": 920, "hash": "ffedc8149aa2799f24114f323a01a5233d9348d78ca7ebfc1f4da0bed1fb083c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3554b068b2c76d78030be810774f80b3abd806ba8faeb5d0dd61aa523c7feff"} -2023-12-15T14:27:31.336Z INFO initializing dbft {"height": 921, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:31.337Z debug frostfs-node/morph.go:229 new block {"index": 920} -2023-12-15T14:27:31.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 920, "blockHeight": 920, "took": "3.073229ms"} -2023-12-15T14:27:32.336Z INFO sending PrepareRequest {"height": 921, "view": 0} -2023-12-15T14:27:32.336Z INFO sending Commit {"height": 921, "view": 0} -2023-12-15T14:27:32.336Z INFO approving block {"height": 921, "hash": "f3104961b06ab92502c087894550d4ae877da5db7a5ee88563b5afa3b0dff52b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffedc8149aa2799f24114f323a01a5233d9348d78ca7ebfc1f4da0bed1fb083c"} -2023-12-15T14:27:32.337Z INFO initializing dbft {"height": 922, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:32.338Z debug frostfs-node/morph.go:229 new block {"index": 921} -2023-12-15T14:27:32.513Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 921, "blockHeight": 921, "took": "3.592949ms"} -2023-12-15T14:27:33.338Z INFO sending PrepareRequest {"height": 922, "view": 0} -2023-12-15T14:27:33.338Z INFO sending Commit {"height": 922, "view": 0} -2023-12-15T14:27:33.339Z INFO approving block {"height": 922, "hash": "994b641b9319c775e7201fa4d8d5f178f40bd53d40721b3c77e4f52383163813", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3104961b06ab92502c087894550d4ae877da5db7a5ee88563b5afa3b0dff52b"} -2023-12-15T14:27:33.340Z INFO initializing dbft {"height": 923, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:33.341Z debug frostfs-node/morph.go:229 new block {"index": 922} -2023-12-15T14:27:33.513Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 922, "blockHeight": 922, "took": "2.75087ms"} -2023-12-15T14:27:34.339Z INFO sending PrepareRequest {"height": 923, "view": 0} -2023-12-15T14:27:34.339Z INFO sending Commit {"height": 923, "view": 0} -2023-12-15T14:27:34.340Z INFO approving block {"height": 923, "hash": "ea104e935acc3a0bcc2149abf7b86b0b3be5e6ecd7a2306fa6f4631e47240344", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "994b641b9319c775e7201fa4d8d5f178f40bd53d40721b3c77e4f52383163813"} -2023-12-15T14:27:34.341Z INFO initializing dbft {"height": 924, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:34.341Z debug frostfs-node/morph.go:229 new block {"index": 923} -2023-12-15T14:27:34.514Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 923, "blockHeight": 923, "took": "3.881913ms"} -2023-12-15T14:27:35.341Z INFO sending PrepareRequest {"height": 924, "view": 0} -2023-12-15T14:27:35.341Z INFO sending Commit {"height": 924, "view": 0} -2023-12-15T14:27:35.341Z INFO approving block {"height": 924, "hash": "f2a422dcc55c551e2dbc90c95d84dc1d81fef48691ea1ac5317d4ff623b63825", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea104e935acc3a0bcc2149abf7b86b0b3be5e6ecd7a2306fa6f4631e47240344"} -2023-12-15T14:27:35.342Z INFO initializing dbft {"height": 925, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:35.343Z debug frostfs-node/morph.go:229 new block {"index": 924} -2023-12-15T14:27:35.514Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 924, "blockHeight": 924, "took": "3.444221ms"} -2023-12-15T14:27:36.342Z INFO sending PrepareRequest {"height": 925, "view": 0} -2023-12-15T14:27:36.343Z INFO sending Commit {"height": 925, "view": 0} -2023-12-15T14:27:36.343Z INFO approving block {"height": 925, "hash": "d817ab0222738f144f1c40a89d87e7dd51771859007aeafbb8f845b3940f9052", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2a422dcc55c551e2dbc90c95d84dc1d81fef48691ea1ac5317d4ff623b63825"} -2023-12-15T14:27:36.344Z INFO initializing dbft {"height": 926, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:36.345Z debug frostfs-node/morph.go:229 new block {"index": 925} -2023-12-15T14:27:36.514Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 925, "blockHeight": 925, "took": "2.611586ms"} -2023-12-15T14:27:37.344Z INFO sending PrepareRequest {"height": 926, "view": 0} -2023-12-15T14:27:37.344Z INFO sending Commit {"height": 926, "view": 0} -2023-12-15T14:27:37.345Z INFO approving block {"height": 926, "hash": "21a0022b9e3778405b4e049afee802511f167961899e9a7bbcf6b8ec21483dd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d817ab0222738f144f1c40a89d87e7dd51771859007aeafbb8f845b3940f9052"} -2023-12-15T14:27:37.345Z INFO initializing dbft {"height": 927, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:37.346Z debug frostfs-node/morph.go:229 new block {"index": 926} -2023-12-15T14:27:37.517Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 926, "blockHeight": 926, "took": "5.215192ms"} -2023-12-15T14:27:38.345Z INFO sending PrepareRequest {"height": 927, "view": 0} -2023-12-15T14:27:38.345Z INFO sending Commit {"height": 927, "view": 0} -2023-12-15T14:27:38.346Z INFO approving block {"height": 927, "hash": "aa39709351b1aace539eb1a757c72055380aa7f34ae88bea20ecf5c0841cb97a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21a0022b9e3778405b4e049afee802511f167961899e9a7bbcf6b8ec21483dd6"} -2023-12-15T14:27:38.346Z INFO initializing dbft {"height": 928, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:38.347Z debug frostfs-node/morph.go:229 new block {"index": 927} -2023-12-15T14:27:38.518Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 927, "blockHeight": 927, "took": "5.358677ms"} -2023-12-15T14:27:39.347Z INFO sending PrepareRequest {"height": 928, "view": 0} -2023-12-15T14:27:39.347Z INFO sending Commit {"height": 928, "view": 0} -2023-12-15T14:27:39.347Z INFO approving block {"height": 928, "hash": "431f72bf4aa12dbc5ac62670c04e242cf0300979a39f197fc38251d419c6ed82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa39709351b1aace539eb1a757c72055380aa7f34ae88bea20ecf5c0841cb97a"} -2023-12-15T14:27:39.348Z INFO initializing dbft {"height": 929, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:39.349Z debug frostfs-node/morph.go:229 new block {"index": 928} -2023-12-15T14:27:39.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 928, "blockHeight": 928, "took": "5.683887ms"} -2023-12-15T14:27:40.349Z INFO sending PrepareRequest {"height": 929, "view": 0} -2023-12-15T14:27:40.349Z INFO sending Commit {"height": 929, "view": 0} -2023-12-15T14:27:40.349Z INFO approving block {"height": 929, "hash": "6d0513d962e1766286e2b813383391b52c3c503f428140992af7591b4a671895", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "431f72bf4aa12dbc5ac62670c04e242cf0300979a39f197fc38251d419c6ed82"} -2023-12-15T14:27:40.351Z INFO initializing dbft {"height": 930, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:40.351Z debug frostfs-node/morph.go:229 new block {"index": 929} -2023-12-15T14:27:40.516Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 929, "blockHeight": 929, "took": "2.518504ms"} -2023-12-15T14:27:41.350Z INFO sending PrepareRequest {"height": 930, "view": 0} -2023-12-15T14:27:41.350Z INFO sending Commit {"height": 930, "view": 0} -2023-12-15T14:27:41.351Z INFO approving block {"height": 930, "hash": "1ac9ee123427e5fe02af56bd6d12fd54daaaf5847518c7de7c49334f05e1b44c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d0513d962e1766286e2b813383391b52c3c503f428140992af7591b4a671895"} -2023-12-15T14:27:41.351Z INFO initializing dbft {"height": 931, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:41.352Z debug frostfs-node/morph.go:229 new block {"index": 930} -2023-12-15T14:27:41.518Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 930, "blockHeight": 930, "took": "3.955195ms"} -2023-12-15T14:27:42.352Z INFO sending PrepareRequest {"height": 931, "view": 0} -2023-12-15T14:27:42.352Z INFO sending Commit {"height": 931, "view": 0} -2023-12-15T14:27:42.352Z INFO approving block {"height": 931, "hash": "4b0de24849cac7fb5fcda9f935e2a0de4339201957bc802ed01f89200f0f1c35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ac9ee123427e5fe02af56bd6d12fd54daaaf5847518c7de7c49334f05e1b44c"} -2023-12-15T14:27:42.353Z INFO initializing dbft {"height": 932, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:42.354Z debug frostfs-node/morph.go:229 new block {"index": 931} -2023-12-15T14:27:42.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 931, "blockHeight": 931, "took": "4.443543ms"} -2023-12-15T14:27:43.353Z INFO sending PrepareRequest {"height": 932, "view": 0} -2023-12-15T14:27:43.354Z INFO sending Commit {"height": 932, "view": 0} -2023-12-15T14:27:43.354Z INFO approving block {"height": 932, "hash": "10bffad005d54336915c04b0ba78748595a44ff0b3126e1c05ca54d1d4f8f798", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b0de24849cac7fb5fcda9f935e2a0de4339201957bc802ed01f89200f0f1c35"} -2023-12-15T14:27:43.355Z INFO initializing dbft {"height": 933, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:43.356Z debug frostfs-node/morph.go:229 new block {"index": 932} -2023-12-15T14:27:43.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 932, "blockHeight": 932, "took": "3.915275ms"} -2023-12-15T14:27:44.355Z INFO sending PrepareRequest {"height": 933, "view": 0} -2023-12-15T14:27:44.355Z INFO sending Commit {"height": 933, "view": 0} -2023-12-15T14:27:44.355Z INFO approving block {"height": 933, "hash": "6ebb5a9c36d0a8ea026ed55decfb8eb1dbac5f239bcaf9e5b2cdcd211c6aac19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10bffad005d54336915c04b0ba78748595a44ff0b3126e1c05ca54d1d4f8f798"} -2023-12-15T14:27:44.356Z INFO initializing dbft {"height": 934, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:44.357Z debug frostfs-node/morph.go:229 new block {"index": 933} -2023-12-15T14:27:44.520Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 933, "blockHeight": 933, "took": "4.046145ms"} -2023-12-15T14:27:45.356Z INFO sending PrepareRequest {"height": 934, "view": 0} -2023-12-15T14:27:45.356Z INFO sending Commit {"height": 934, "view": 0} -2023-12-15T14:27:45.357Z INFO approving block {"height": 934, "hash": "b48df863ccb77d0edc7676220129c6ab70a9ca555a2938700b17a73fd8ec3be8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ebb5a9c36d0a8ea026ed55decfb8eb1dbac5f239bcaf9e5b2cdcd211c6aac19"} -2023-12-15T14:27:45.357Z INFO initializing dbft {"height": 935, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:45.358Z debug frostfs-node/morph.go:229 new block {"index": 934} -2023-12-15T14:27:45.523Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 934, "blockHeight": 934, "took": "6.214122ms"} -2023-12-15T14:27:46.357Z INFO sending PrepareRequest {"height": 935, "view": 0} -2023-12-15T14:27:46.358Z INFO sending Commit {"height": 935, "view": 0} -2023-12-15T14:27:46.358Z INFO approving block {"height": 935, "hash": "a9f915962e06108005b2b681aafccf4f2c1b445f74a0dd5596ca7a2c7571c01a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b48df863ccb77d0edc7676220129c6ab70a9ca555a2938700b17a73fd8ec3be8"} -2023-12-15T14:27:46.360Z INFO initializing dbft {"height": 936, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:46.360Z debug frostfs-node/morph.go:229 new block {"index": 935} -2023-12-15T14:27:46.520Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 935, "blockHeight": 935, "took": "2.394301ms"} -2023-12-15T14:27:47.359Z INFO sending PrepareRequest {"height": 936, "view": 0} -2023-12-15T14:27:47.359Z INFO sending Commit {"height": 936, "view": 0} -2023-12-15T14:27:47.360Z INFO approving block {"height": 936, "hash": "e0d677f216042823b42677ab9a82abf22f6950edbc5c185dbf51ed6c2bed56fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9f915962e06108005b2b681aafccf4f2c1b445f74a0dd5596ca7a2c7571c01a"} -2023-12-15T14:27:47.361Z INFO initializing dbft {"height": 937, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:47.362Z debug frostfs-node/morph.go:229 new block {"index": 936} -2023-12-15T14:27:47.524Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 936, "blockHeight": 936, "took": "5.85982ms"} -2023-12-15T14:27:48.360Z INFO sending PrepareRequest {"height": 937, "view": 0} -2023-12-15T14:27:48.360Z INFO sending Commit {"height": 937, "view": 0} -2023-12-15T14:27:48.361Z INFO approving block {"height": 937, "hash": "e6e46d787fe60be3b26ebd4f5da11b361126479d2159a6ed79b4ea062679dbb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0d677f216042823b42677ab9a82abf22f6950edbc5c185dbf51ed6c2bed56fc"} -2023-12-15T14:27:48.362Z INFO initializing dbft {"height": 938, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:48.363Z debug frostfs-node/morph.go:229 new block {"index": 937} -2023-12-15T14:27:48.524Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 937, "blockHeight": 937, "took": "5.444286ms"} -2023-12-15T14:27:49.362Z INFO sending PrepareRequest {"height": 938, "view": 0} -2023-12-15T14:27:49.362Z INFO sending Commit {"height": 938, "view": 0} -2023-12-15T14:27:49.363Z INFO approving block {"height": 938, "hash": "78bc9ce15067830062fadbb92caa66b158feb06613f0108dcc3a0dc5878293f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6e46d787fe60be3b26ebd4f5da11b361126479d2159a6ed79b4ea062679dbb0"} -2023-12-15T14:27:49.364Z INFO initializing dbft {"height": 939, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:49.365Z debug frostfs-node/morph.go:229 new block {"index": 938} -2023-12-15T14:27:49.524Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 938, "blockHeight": 938, "took": "5.077908ms"} -2023-12-15T14:27:50.364Z INFO sending PrepareRequest {"height": 939, "view": 0} -2023-12-15T14:27:50.364Z INFO sending Commit {"height": 939, "view": 0} -2023-12-15T14:27:50.364Z INFO approving block {"height": 939, "hash": "c536bd6799b1f9335d3761f9a067a4e834f0d5f5eb6a8187c9f02e96e85a60e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78bc9ce15067830062fadbb92caa66b158feb06613f0108dcc3a0dc5878293f2"} -2023-12-15T14:27:50.365Z INFO initializing dbft {"height": 940, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:50.365Z debug frostfs-node/morph.go:229 new block {"index": 939} -2023-12-15T14:27:50.523Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 939, "blockHeight": 939, "took": "3.740649ms"} -2023-12-15T14:27:51.365Z INFO sending PrepareRequest {"height": 940, "view": 0} -2023-12-15T14:27:51.365Z INFO sending Commit {"height": 940, "view": 0} -2023-12-15T14:27:51.365Z INFO approving block {"height": 940, "hash": "02c51cd34149b3a86001c31b3d8154ad07521f4e770f354ac62676f64e276870", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c536bd6799b1f9335d3761f9a067a4e834f0d5f5eb6a8187c9f02e96e85a60e6"} -2023-12-15T14:27:51.366Z INFO initializing dbft {"height": 941, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:51.366Z debug frostfs-node/morph.go:229 new block {"index": 940} -2023-12-15T14:27:51.526Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 940, "blockHeight": 940, "took": "6.436881ms"} -2023-12-15T14:27:52.367Z INFO sending PrepareRequest {"height": 941, "view": 0} -2023-12-15T14:27:52.367Z INFO sending Commit {"height": 941, "view": 0} -2023-12-15T14:27:52.367Z INFO approving block {"height": 941, "hash": "96980f221fdde1ee8fbb8aa7b31be3d859a6b59f9e862d3eb0759cade2c143f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02c51cd34149b3a86001c31b3d8154ad07521f4e770f354ac62676f64e276870"} -2023-12-15T14:27:52.369Z INFO initializing dbft {"height": 942, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:52.370Z debug frostfs-node/morph.go:229 new block {"index": 941} -2023-12-15T14:27:52.524Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 941, "blockHeight": 941, "took": "3.870893ms"} -2023-12-15T14:27:53.368Z INFO sending PrepareRequest {"height": 942, "view": 0} -2023-12-15T14:27:53.368Z INFO sending Commit {"height": 942, "view": 0} -2023-12-15T14:27:53.368Z INFO approving block {"height": 942, "hash": "f22f2c1356209048006a80a320ab785aa789e466acad7b4278099e1719a424ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96980f221fdde1ee8fbb8aa7b31be3d859a6b59f9e862d3eb0759cade2c143f8"} -2023-12-15T14:27:53.369Z INFO initializing dbft {"height": 943, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:53.369Z debug frostfs-node/morph.go:229 new block {"index": 942} -2023-12-15T14:27:53.525Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 942, "blockHeight": 942, "took": "4.017358ms"} -2023-12-15T14:27:54.369Z INFO sending PrepareRequest {"height": 943, "view": 0} -2023-12-15T14:27:54.370Z INFO sending Commit {"height": 943, "view": 0} -2023-12-15T14:27:54.370Z INFO approving block {"height": 943, "hash": "f193acd374b728290e0fa9bda8ebd889811eaeefd37db666a4bf9d4504aaf7fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f22f2c1356209048006a80a320ab785aa789e466acad7b4278099e1719a424ad"} -2023-12-15T14:27:54.371Z INFO initializing dbft {"height": 944, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:54.372Z debug frostfs-node/morph.go:229 new block {"index": 943} -2023-12-15T14:27:54.527Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 943, "blockHeight": 943, "took": "5.399968ms"} -2023-12-15T14:27:55.371Z INFO sending PrepareRequest {"height": 944, "view": 0} -2023-12-15T14:27:55.372Z INFO sending Commit {"height": 944, "view": 0} -2023-12-15T14:27:55.372Z INFO approving block {"height": 944, "hash": "01c9d1ac3d12bed316c35b9af6696f546a7f4a53355a32e54567dedbcd7ac808", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f193acd374b728290e0fa9bda8ebd889811eaeefd37db666a4bf9d4504aaf7fa"} -2023-12-15T14:27:55.373Z INFO initializing dbft {"height": 945, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:55.373Z debug frostfs-node/morph.go:229 new block {"index": 944} -2023-12-15T14:27:55.528Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 944, "blockHeight": 944, "took": "5.794139ms"} -2023-12-15T14:27:56.373Z INFO sending PrepareRequest {"height": 945, "view": 0} -2023-12-15T14:27:56.373Z INFO sending Commit {"height": 945, "view": 0} -2023-12-15T14:27:56.374Z INFO approving block {"height": 945, "hash": "1e93c9b7a868b0e10b0894e424060ac398d1cbf986b3a9b6854d3a881f7f0e5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01c9d1ac3d12bed316c35b9af6696f546a7f4a53355a32e54567dedbcd7ac808"} -2023-12-15T14:27:56.375Z INFO initializing dbft {"height": 946, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:56.376Z debug frostfs-node/morph.go:229 new block {"index": 945} -2023-12-15T14:27:56.525Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 945, "blockHeight": 945, "took": "2.794383ms"} -2023-12-15T14:27:57.375Z INFO sending PrepareRequest {"height": 946, "view": 0} -2023-12-15T14:27:57.375Z INFO sending Commit {"height": 946, "view": 0} -2023-12-15T14:27:57.376Z INFO approving block {"height": 946, "hash": "eccf7c0deab95a0ccdd49d634e5729ec9ff8f5e128d16f06cf5c69c0cbe8bcb3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e93c9b7a868b0e10b0894e424060ac398d1cbf986b3a9b6854d3a881f7f0e5b"} -2023-12-15T14:27:57.377Z INFO initializing dbft {"height": 947, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:57.378Z debug frostfs-node/morph.go:229 new block {"index": 946} -2023-12-15T14:27:57.527Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 946, "blockHeight": 946, "took": "3.968946ms"} -2023-12-15T14:27:58.377Z INFO sending PrepareRequest {"height": 947, "view": 0} -2023-12-15T14:27:58.377Z INFO sending Commit {"height": 947, "view": 0} -2023-12-15T14:27:58.377Z INFO approving block {"height": 947, "hash": "c1b4c01582133d854f693c7a63ff9717cf5c186e3d97d835009e9514ac4e055b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eccf7c0deab95a0ccdd49d634e5729ec9ff8f5e128d16f06cf5c69c0cbe8bcb3"} -2023-12-15T14:27:58.379Z INFO initializing dbft {"height": 948, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:58.380Z debug frostfs-node/morph.go:229 new block {"index": 947} -2023-12-15T14:27:58.526Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 947, "blockHeight": 947, "took": "2.720139ms"} -2023-12-15T14:27:59.378Z INFO sending PrepareRequest {"height": 948, "view": 0} -2023-12-15T14:27:59.378Z INFO sending Commit {"height": 948, "view": 0} -2023-12-15T14:27:59.379Z INFO approving block {"height": 948, "hash": "67d2eeaa02e110d5f6360168e6da803842b5efd048a0bdd289a98ac5d242372c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1b4c01582133d854f693c7a63ff9717cf5c186e3d97d835009e9514ac4e055b"} -2023-12-15T14:27:59.382Z INFO initializing dbft {"height": 949, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:27:59.383Z debug frostfs-node/morph.go:229 new block {"index": 948} -2023-12-15T14:27:59.529Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 948, "blockHeight": 948, "took": "4.933739ms"} -2023-12-15T14:28:00.379Z INFO sending PrepareRequest {"height": 949, "view": 0} -2023-12-15T14:28:00.380Z INFO sending Commit {"height": 949, "view": 0} -2023-12-15T14:28:00.380Z INFO approving block {"height": 949, "hash": "8dcd2fae86a38559269878fe1d2085fcf89eb73925603aaa5fcaed705c7e9751", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67d2eeaa02e110d5f6360168e6da803842b5efd048a0bdd289a98ac5d242372c"} -2023-12-15T14:28:00.381Z INFO initializing dbft {"height": 950, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:00.381Z debug frostfs-node/morph.go:229 new block {"index": 949} -2023-12-15T14:28:00.527Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 949, "blockHeight": 949, "took": "2.516984ms"} -2023-12-15T14:28:01.381Z INFO sending PrepareRequest {"height": 950, "view": 0} -2023-12-15T14:28:01.381Z INFO sending Commit {"height": 950, "view": 0} -2023-12-15T14:28:01.381Z INFO approving block {"height": 950, "hash": "fab911dc53bd5b5d5880725515b18082df1d60bf13c84780b2c09fc6d2f3d65c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8dcd2fae86a38559269878fe1d2085fcf89eb73925603aaa5fcaed705c7e9751"} -2023-12-15T14:28:01.382Z INFO initializing dbft {"height": 951, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:01.382Z debug frostfs-node/morph.go:229 new block {"index": 950} -2023-12-15T14:28:01.530Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 950, "blockHeight": 950, "took": "5.589224ms"} -2023-12-15T14:28:02.382Z INFO sending PrepareRequest {"height": 951, "view": 0} -2023-12-15T14:28:02.383Z INFO sending Commit {"height": 951, "view": 0} -2023-12-15T14:28:02.383Z INFO approving block {"height": 951, "hash": "2f25ed03272f50700cf9c8b36ce005c1d28462278b7f3f4514bdeb5ad6a94fb9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fab911dc53bd5b5d5880725515b18082df1d60bf13c84780b2c09fc6d2f3d65c"} -2023-12-15T14:28:02.384Z INFO initializing dbft {"height": 952, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:02.384Z debug frostfs-node/morph.go:229 new block {"index": 951} -2023-12-15T14:28:02.529Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 951, "blockHeight": 951, "took": "3.75586ms"} -2023-12-15T14:28:03.384Z INFO sending PrepareRequest {"height": 952, "view": 0} -2023-12-15T14:28:03.384Z INFO sending Commit {"height": 952, "view": 0} -2023-12-15T14:28:03.385Z INFO approving block {"height": 952, "hash": "d305d31343bb0aca5005a4d242ae019e067d0830ed4c544871b9747fef5afede", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f25ed03272f50700cf9c8b36ce005c1d28462278b7f3f4514bdeb5ad6a94fb9"} -2023-12-15T14:28:03.386Z INFO initializing dbft {"height": 953, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:03.386Z debug frostfs-node/morph.go:229 new block {"index": 952} -2023-12-15T14:28:03.530Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 952, "blockHeight": 952, "took": "3.746655ms"} -2023-12-15T14:28:04.385Z INFO sending PrepareRequest {"height": 953, "view": 0} -2023-12-15T14:28:04.385Z INFO sending Commit {"height": 953, "view": 0} -2023-12-15T14:28:04.386Z INFO approving block {"height": 953, "hash": "de152b2d93b2e7afbe945869d2f7eaa9309442a4c5cf2646cfc0ff593e9070ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d305d31343bb0aca5005a4d242ae019e067d0830ed4c544871b9747fef5afede"} -2023-12-15T14:28:04.387Z INFO initializing dbft {"height": 954, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:04.387Z debug frostfs-node/morph.go:229 new block {"index": 953} -2023-12-15T14:28:04.531Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 953, "blockHeight": 953, "took": "4.319387ms"} -2023-12-15T14:28:05.387Z INFO sending PrepareRequest {"height": 954, "view": 0} -2023-12-15T14:28:05.387Z INFO sending Commit {"height": 954, "view": 0} -2023-12-15T14:28:05.387Z INFO approving block {"height": 954, "hash": "58567757e97f3f937c5c1ae1b245a2752059609fbce0b0e153f237fa36ffe0de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de152b2d93b2e7afbe945869d2f7eaa9309442a4c5cf2646cfc0ff593e9070ae"} -2023-12-15T14:28:05.389Z INFO initializing dbft {"height": 955, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:05.389Z debug frostfs-node/morph.go:229 new block {"index": 954} -2023-12-15T14:28:05.530Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 954, "blockHeight": 954, "took": "3.676848ms"} -2023-12-15T14:28:06.388Z INFO sending PrepareRequest {"height": 955, "view": 0} -2023-12-15T14:28:06.388Z INFO sending Commit {"height": 955, "view": 0} -2023-12-15T14:28:06.389Z INFO approving block {"height": 955, "hash": "1048c2f23f383da7e4655f7fcfdcc653ef769c662ada869f35d0eadcfa61f946", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58567757e97f3f937c5c1ae1b245a2752059609fbce0b0e153f237fa36ffe0de"} -2023-12-15T14:28:06.390Z INFO initializing dbft {"height": 956, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:06.390Z debug frostfs-node/morph.go:229 new block {"index": 955} -2023-12-15T14:28:06.533Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 955, "blockHeight": 955, "took": "5.65731ms"} -2023-12-15T14:28:07.390Z INFO sending PrepareRequest {"height": 956, "view": 0} -2023-12-15T14:28:07.390Z INFO sending Commit {"height": 956, "view": 0} -2023-12-15T14:28:07.390Z INFO approving block {"height": 956, "hash": "a7e19a5aa601def3a53a4dfad8d1be204fb86c0ad97ab531d407cd2465231df4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1048c2f23f383da7e4655f7fcfdcc653ef769c662ada869f35d0eadcfa61f946"} -2023-12-15T14:28:07.391Z INFO initializing dbft {"height": 957, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:07.391Z debug frostfs-node/morph.go:229 new block {"index": 956} -2023-12-15T14:28:07.532Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 956, "blockHeight": 956, "took": "3.955295ms"} -2023-12-15T14:28:08.391Z INFO sending PrepareRequest {"height": 957, "view": 0} -2023-12-15T14:28:08.391Z INFO sending Commit {"height": 957, "view": 0} -2023-12-15T14:28:08.391Z INFO approving block {"height": 957, "hash": "10d31b871109bc451bb74700b2323b681ea737934a0b49ca6f317f8cbdfd8915", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7e19a5aa601def3a53a4dfad8d1be204fb86c0ad97ab531d407cd2465231df4"} -2023-12-15T14:28:08.392Z INFO initializing dbft {"height": 958, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:08.393Z debug frostfs-node/morph.go:229 new block {"index": 957} -2023-12-15T14:28:08.532Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 957, "blockHeight": 957, "took": "4.166132ms"} -2023-12-15T14:28:09.393Z INFO sending PrepareRequest {"height": 958, "view": 0} -2023-12-15T14:28:09.393Z INFO sending Commit {"height": 958, "view": 0} -2023-12-15T14:28:09.393Z INFO approving block {"height": 958, "hash": "da93bd473680c9728ff21465ad3be76155f6396c8a0112297a7dc63f818c1467", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10d31b871109bc451bb74700b2323b681ea737934a0b49ca6f317f8cbdfd8915"} -2023-12-15T14:28:09.394Z INFO initializing dbft {"height": 959, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:09.394Z debug frostfs-node/morph.go:229 new block {"index": 958} -2023-12-15T14:28:09.533Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 958, "blockHeight": 958, "took": "4.038335ms"} -2023-12-15T14:28:10.394Z INFO sending PrepareRequest {"height": 959, "view": 0} -2023-12-15T14:28:10.394Z INFO sending Commit {"height": 959, "view": 0} -2023-12-15T14:28:10.394Z INFO approving block {"height": 959, "hash": "89d8038ab54846e90f7cd0d9e61075861bd85e915fd7aa2614e42fe2d4c6a975", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da93bd473680c9728ff21465ad3be76155f6396c8a0112297a7dc63f818c1467"} -2023-12-15T14:28:10.395Z INFO initializing dbft {"height": 960, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:10.396Z debug frostfs-node/morph.go:229 new block {"index": 959} -2023-12-15T14:28:10.534Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 959, "blockHeight": 959, "took": "4.653776ms"} -2023-12-15T14:28:11.395Z INFO sending PrepareRequest {"height": 960, "view": 0} -2023-12-15T14:28:11.395Z INFO sending Commit {"height": 960, "view": 0} -2023-12-15T14:28:11.395Z INFO approving block {"height": 960, "hash": "d954b50dcd174941aeaa971c42780945a7ced9e5ca013da1b5436e39cf0d4c4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89d8038ab54846e90f7cd0d9e61075861bd85e915fd7aa2614e42fe2d4c6a975"} -2023-12-15T14:28:11.396Z INFO initializing dbft {"height": 961, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:11.397Z debug frostfs-node/morph.go:229 new block {"index": 960} -2023-12-15T14:28:11.535Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 960, "blockHeight": 960, "took": "4.709547ms"} -2023-12-15T14:28:12.397Z INFO sending PrepareRequest {"height": 961, "view": 0} -2023-12-15T14:28:12.397Z INFO sending Commit {"height": 961, "view": 0} -2023-12-15T14:28:12.397Z INFO approving block {"height": 961, "hash": "f550b3180f1fbc2acf5e4bf7bb8c0155e0ad8872d76f2e780a08d5448121ce27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d954b50dcd174941aeaa971c42780945a7ced9e5ca013da1b5436e39cf0d4c4a"} -2023-12-15T14:28:12.399Z INFO initializing dbft {"height": 962, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:12.399Z debug frostfs-node/morph.go:229 new block {"index": 961} -2023-12-15T14:28:12.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 961, "blockHeight": 961, "took": "5.525081ms"} -2023-12-15T14:28:13.398Z INFO sending PrepareRequest {"height": 962, "view": 0} -2023-12-15T14:28:13.398Z INFO sending Commit {"height": 962, "view": 0} -2023-12-15T14:28:13.399Z INFO approving block {"height": 962, "hash": "4da574fe8b7ff9b4b42e486c9ae00a8cd90bffa85c52a3db85cddf5af6bfe73e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f550b3180f1fbc2acf5e4bf7bb8c0155e0ad8872d76f2e780a08d5448121ce27"} -2023-12-15T14:28:13.400Z INFO initializing dbft {"height": 963, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:13.401Z debug frostfs-node/morph.go:229 new block {"index": 962} -2023-12-15T14:28:13.538Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 962, "blockHeight": 962, "took": "6.405757ms"} -2023-12-15T14:28:14.400Z INFO sending PrepareRequest {"height": 963, "view": 0} -2023-12-15T14:28:14.400Z INFO sending Commit {"height": 963, "view": 0} -2023-12-15T14:28:14.401Z INFO approving block {"height": 963, "hash": "a95a341f67705ee219a5de795a53d875323c2212d4ccaecf0aacab48b8d5dc3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4da574fe8b7ff9b4b42e486c9ae00a8cd90bffa85c52a3db85cddf5af6bfe73e"} -2023-12-15T14:28:14.403Z INFO initializing dbft {"height": 964, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:14.404Z debug frostfs-node/morph.go:229 new block {"index": 963} -2023-12-15T14:28:14.407Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:28:14.408Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 4, "iteration": 3, "error": "no data for 2 iteration in 4 epoch for consumers's trusts"} -2023-12-15T14:28:14.411Z INFO runtime log {"tx": "872b69405567b7926a921f4b40a2e754f14f4999de5c10c39e02c4d84c7bb823", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:28:14.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 963, "blockHeight": 963, "took": "3.23891ms"} -2023-12-15T14:28:15.401Z INFO sending PrepareRequest {"height": 964, "view": 0} -2023-12-15T14:28:15.402Z INFO sending Commit {"height": 964, "view": 0} -2023-12-15T14:28:15.402Z INFO approving block {"height": 964, "hash": "e232035ede3b1da2599e7752150af55f5aee029f4ab54952f54cd1fa0fa20be2", "tx_count": 1, "merkle": "9ec9197a311b74d23ecb219ad23d9772cfcc011e68ee831d5e4ade1fa17465ee", "prev": "a95a341f67705ee219a5de795a53d875323c2212d4ccaecf0aacab48b8d5dc3b"} -2023-12-15T14:28:15.402Z INFO runtime log {"tx": "ee6574a11fde4a5e1d83ee681e01cccf72973dd29a21cb3ed2741b317a19c99e", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:28:15.404Z INFO initializing dbft {"height": 965, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:15.404Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 6} -2023-12-15T14:28:15.404Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 6} -2023-12-15T14:28:15.404Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:28:15.405Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 6} -2023-12-15T14:28:15.405Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:28:15.405Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T14:28:15.405Z debug controller/calls.go:95 starting to report local trust values {"epoch": 5} -2023-12-15T14:28:15.405Z debug frostfs-node/morph.go:229 new block {"index": 964} -2023-12-15T14:28:15.405Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 5} -2023-12-15T14:28:15.405Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 6} -2023-12-15T14:28:15.405Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 6} -2023-12-15T14:28:15.407Z debug controller/calls.go:146 reporting successfully finished {"epoch": 5} -2023-12-15T14:28:15.407Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 5} -2023-12-15T14:28:15.409Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:28:15.411Z INFO runtime log {"tx": "b9e50afe58039a6f53ea6d6b81073584455502348473371b16cb699a61396120", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:28:15.412Z info client/notary.go:214 notary deposit invoke {"amount": 1652954199, "expire_at": 4294967295, "vub": 967, "tx_hash": "f88c296b348778a405c30d2643d4bc4021af4fd6ff7e08e676f3d7f56296eb7e"} -2023-12-15T14:28:15.417Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 1100, "fallback_valid_for": 40, "tx_hash": "d3928e9f4f4ba6e8c7bf1ea1b2f87c491d0217146131bf040bc4c6d6a10f2e68"} -2023-12-15T14:28:15.419Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T14:28:15.420Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:28:15.420Z info audit/handlers.go:13 new round of audit {"epoch": 6} -2023-12-15T14:28:15.420Z info settlement/calls.go:26 new audit settlement event {"epoch": 6} -2023-12-15T14:28:15.420Z info settlement/handlers.go:14 process audit settlements {"epoch": 6} -2023-12-15T14:28:15.420Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 6} -2023-12-15T14:28:15.422Z info settlement/handlers.go:18 audit processing finished {"epoch": 6} -2023-12-15T14:28:15.423Z info audit/process.go:39 select containers for audit {"epoch": 6, "amount": 0} -2023-12-15T14:28:15.425Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 967, "tx_hash": "2b2e54eea2ab4534d8c9037191e811378851112cd804a42a372fc7d0714ec859"} -2023-12-15T14:28:15.537Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 964, "blockHeight": 964, "took": "4.538072ms"} -2023-12-15T14:28:16.402Z INFO sending PrepareRequest {"height": 965, "view": 0} -2023-12-15T14:28:16.402Z INFO sending Commit {"height": 965, "view": 0} -2023-12-15T14:28:16.403Z INFO approving block {"height": 965, "hash": "fdeb706a98abc3dcf8647e61b7c9bec3d24159962cdc1f9f460b32432d6fd0f5", "tx_count": 3, "merkle": "a1e66327c1770df09167d77f69766d87803eadb02e1e8f0fd59afe52d1ae446d", "prev": "e232035ede3b1da2599e7752150af55f5aee029f4ab54952f54cd1fa0fa20be2"} -2023-12-15T14:28:16.403Z INFO runtime log {"tx": "0be085c270dbb99062bdf7ca29a4b8a759458c0ec2d21ad53419348a64042455", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:28:16.404Z INFO initializing dbft {"height": 966, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:16.405Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 5} -2023-12-15T14:28:16.405Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 5} -2023-12-15T14:28:16.405Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 5} -2023-12-15T14:28:16.406Z debug frostfs-node/morph.go:229 new block {"index": 965} -2023-12-15T14:28:16.538Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 965, "blockHeight": 965, "took": "4.325826ms"} -2023-12-15T14:28:17.404Z INFO sending PrepareRequest {"height": 966, "view": 0} -2023-12-15T14:28:17.404Z INFO sending Commit {"height": 966, "view": 0} -2023-12-15T14:28:17.404Z INFO approving block {"height": 966, "hash": "598476abc736ad67ac6d8a4e6305f1851cec55f03ca6f4ebcfa1c98975bd8d68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdeb706a98abc3dcf8647e61b7c9bec3d24159962cdc1f9f460b32432d6fd0f5"} -2023-12-15T14:28:17.406Z INFO initializing dbft {"height": 967, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:17.406Z debug frostfs-node/morph.go:229 new block {"index": 966} -2023-12-15T14:28:17.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 966, "blockHeight": 966, "took": "2.585476ms"} -2023-12-15T14:28:18.405Z INFO sending PrepareRequest {"height": 967, "view": 0} -2023-12-15T14:28:18.406Z INFO sending Commit {"height": 967, "view": 0} -2023-12-15T14:28:18.406Z INFO approving block {"height": 967, "hash": "21496fc1885450df689089761e0ff7751e444fc8e11893bbb4d2617f67220694", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "598476abc736ad67ac6d8a4e6305f1851cec55f03ca6f4ebcfa1c98975bd8d68"} -2023-12-15T14:28:18.407Z INFO initializing dbft {"height": 968, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:18.408Z debug frostfs-node/morph.go:229 new block {"index": 967} -2023-12-15T14:28:18.411Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:28:18.412Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:28:18.412Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:28:18.539Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 967, "blockHeight": 967, "took": "4.057119ms"} -2023-12-15T14:28:19.408Z INFO sending PrepareRequest {"height": 968, "view": 0} -2023-12-15T14:28:19.408Z INFO sending Commit {"height": 968, "view": 0} -2023-12-15T14:28:19.409Z INFO approving block {"height": 968, "hash": "98237271ba9ab6b1b956bfe5997b08635397f74df5898d1383b2e7450c1bf2df", "tx_count": 2, "merkle": "e03ef04e69d2a1579b8aa68864ee0e7333f956bd989ee8cd177055fafa6539f3", "prev": "21496fc1885450df689089761e0ff7751e444fc8e11893bbb4d2617f67220694"} -2023-12-15T14:28:19.410Z INFO runtime log {"tx": "444a4ce4c588b3cd6cdcb6e765569f5de9c99b76c47ccd5ab96036fea67b9443", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:28:19.410Z INFO runtime log {"tx": "444a4ce4c588b3cd6cdcb6e765569f5de9c99b76c47ccd5ab96036fea67b9443", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:28:19.411Z INFO initializing dbft {"height": 969, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:19.412Z debug frostfs-node/morph.go:229 new block {"index": 968} -2023-12-15T14:28:19.539Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 968, "blockHeight": 968, "took": "3.072877ms"} -2023-12-15T14:28:20.410Z INFO sending PrepareRequest {"height": 969, "view": 0} -2023-12-15T14:28:20.410Z INFO sending Commit {"height": 969, "view": 0} -2023-12-15T14:28:20.411Z INFO approving block {"height": 969, "hash": "68abe944a6ccea207d1987ec014c806c299f41f191b1e215d4482c755d77ee4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98237271ba9ab6b1b956bfe5997b08635397f74df5898d1383b2e7450c1bf2df"} -2023-12-15T14:28:20.412Z INFO initializing dbft {"height": 970, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:20.412Z debug frostfs-node/morph.go:229 new block {"index": 969} -2023-12-15T14:28:20.541Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 969, "blockHeight": 969, "took": "4.385897ms"} -2023-12-15T14:28:21.412Z INFO sending PrepareRequest {"height": 970, "view": 0} -2023-12-15T14:28:21.412Z INFO sending Commit {"height": 970, "view": 0} -2023-12-15T14:28:21.412Z INFO approving block {"height": 970, "hash": "efded7da858586c8223d55ea399e8c86b448e7c3123f5bf1aa130b36dce0aae1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68abe944a6ccea207d1987ec014c806c299f41f191b1e215d4482c755d77ee4a"} -2023-12-15T14:28:21.414Z INFO initializing dbft {"height": 971, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:21.414Z debug frostfs-node/morph.go:229 new block {"index": 970} -2023-12-15T14:28:21.540Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 970, "blockHeight": 970, "took": "3.18639ms"} -2023-12-15T14:28:22.413Z INFO sending PrepareRequest {"height": 971, "view": 0} -2023-12-15T14:28:22.414Z INFO sending Commit {"height": 971, "view": 0} -2023-12-15T14:28:22.414Z INFO approving block {"height": 971, "hash": "232db3b7f41389fcb7a2f7fc6004e86d4714858f6b7391be07bb196ba89e2f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efded7da858586c8223d55ea399e8c86b448e7c3123f5bf1aa130b36dce0aae1"} -2023-12-15T14:28:22.417Z INFO initializing dbft {"height": 972, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:22.417Z debug frostfs-node/morph.go:229 new block {"index": 971} -2023-12-15T14:28:22.542Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 971, "blockHeight": 971, "took": "4.639579ms"} -2023-12-15T14:28:23.415Z INFO sending PrepareRequest {"height": 972, "view": 0} -2023-12-15T14:28:23.415Z INFO sending Commit {"height": 972, "view": 0} -2023-12-15T14:28:23.416Z INFO approving block {"height": 972, "hash": "1cac0455dcac0f62b889472309f61977f393e70a0cf04fabc7aeba01d9485a2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "232db3b7f41389fcb7a2f7fc6004e86d4714858f6b7391be07bb196ba89e2f8b"} -2023-12-15T14:28:23.418Z INFO initializing dbft {"height": 973, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:23.419Z debug frostfs-node/morph.go:229 new block {"index": 972} -2023-12-15T14:28:23.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 972, "blockHeight": 972, "took": "7.664159ms"} -2023-12-15T14:28:24.417Z INFO sending PrepareRequest {"height": 973, "view": 0} -2023-12-15T14:28:24.417Z INFO sending Commit {"height": 973, "view": 0} -2023-12-15T14:28:24.418Z INFO approving block {"height": 973, "hash": "f0b0f11d9f7348f242fd1d89317db6648a1a6bd6f68f4fac3df9e6634ca3cd6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cac0455dcac0f62b889472309f61977f393e70a0cf04fabc7aeba01d9485a2f"} -2023-12-15T14:28:24.419Z INFO initializing dbft {"height": 974, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:24.420Z debug frostfs-node/morph.go:229 new block {"index": 973} -2023-12-15T14:28:24.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 973, "blockHeight": 973, "took": "5.959153ms"} -2023-12-15T14:28:25.419Z INFO sending PrepareRequest {"height": 974, "view": 0} -2023-12-15T14:28:25.419Z INFO sending Commit {"height": 974, "view": 0} -2023-12-15T14:28:25.420Z INFO approving block {"height": 974, "hash": "121bf55c9fb001c441cd3bd580a4bca8671a58201d023343511d7ce6a7034269", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0b0f11d9f7348f242fd1d89317db6648a1a6bd6f68f4fac3df9e6634ca3cd6c"} -2023-12-15T14:28:25.423Z INFO initializing dbft {"height": 975, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:25.424Z debug frostfs-node/morph.go:229 new block {"index": 974} -2023-12-15T14:28:25.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 974, "blockHeight": 974, "took": "5.644424ms"} -2023-12-15T14:28:26.421Z INFO sending PrepareRequest {"height": 975, "view": 0} -2023-12-15T14:28:26.421Z INFO sending Commit {"height": 975, "view": 0} -2023-12-15T14:28:26.422Z INFO approving block {"height": 975, "hash": "e5a20fd39e5f091b43b71ce1e5f5e4b4b072ed2c181396647a2492f2672a2a77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "121bf55c9fb001c441cd3bd580a4bca8671a58201d023343511d7ce6a7034269"} -2023-12-15T14:28:26.424Z INFO initializing dbft {"height": 976, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:26.424Z debug frostfs-node/morph.go:229 new block {"index": 975} -2023-12-15T14:28:26.547Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 975, "blockHeight": 975, "took": "5.644798ms"} -2023-12-15T14:28:27.424Z INFO sending PrepareRequest {"height": 976, "view": 0} -2023-12-15T14:28:27.424Z INFO sending Commit {"height": 976, "view": 0} -2023-12-15T14:28:27.424Z INFO approving block {"height": 976, "hash": "839d12cf577f63c687b96eaee98baa7414f7e5b92154790ee46b80f420120d86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5a20fd39e5f091b43b71ce1e5f5e4b4b072ed2c181396647a2492f2672a2a77"} -2023-12-15T14:28:27.426Z INFO initializing dbft {"height": 977, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:27.427Z debug frostfs-node/morph.go:229 new block {"index": 976} -2023-12-15T14:28:27.547Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 976, "blockHeight": 976, "took": "4.428568ms"} -2023-12-15T14:28:28.425Z INFO sending PrepareRequest {"height": 977, "view": 0} -2023-12-15T14:28:28.425Z INFO sending Commit {"height": 977, "view": 0} -2023-12-15T14:28:28.426Z INFO approving block {"height": 977, "hash": "d5d0cf5ea7f4b54718dd113e531483742b076e0df47a2186cd66dea0a305607c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "839d12cf577f63c687b96eaee98baa7414f7e5b92154790ee46b80f420120d86"} -2023-12-15T14:28:28.428Z INFO initializing dbft {"height": 978, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:28.429Z debug frostfs-node/morph.go:229 new block {"index": 977} -2023-12-15T14:28:28.549Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 977, "blockHeight": 977, "took": "5.8332ms"} -2023-12-15T14:28:29.427Z INFO sending PrepareRequest {"height": 978, "view": 0} -2023-12-15T14:28:29.428Z INFO sending Commit {"height": 978, "view": 0} -2023-12-15T14:28:29.429Z INFO approving block {"height": 978, "hash": "f819bebc92336b785ac98ccf4b11fb0aef4d6f064f18e2d5fc0570a5646678dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5d0cf5ea7f4b54718dd113e531483742b076e0df47a2186cd66dea0a305607c"} -2023-12-15T14:28:29.431Z INFO initializing dbft {"height": 979, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:29.431Z debug frostfs-node/morph.go:229 new block {"index": 978} -2023-12-15T14:28:29.550Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 978, "blockHeight": 978, "took": "6.317987ms"} -2023-12-15T14:28:30.430Z INFO sending PrepareRequest {"height": 979, "view": 0} -2023-12-15T14:28:30.431Z INFO sending Commit {"height": 979, "view": 0} -2023-12-15T14:28:30.431Z INFO approving block {"height": 979, "hash": "fc4e4a9dd423ad62aea3856a492ff3e88517c4ff3a47b3983d943ca42c5c9d67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f819bebc92336b785ac98ccf4b11fb0aef4d6f064f18e2d5fc0570a5646678dc"} -2023-12-15T14:28:30.434Z INFO initializing dbft {"height": 980, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:30.434Z debug frostfs-node/morph.go:229 new block {"index": 979} -2023-12-15T14:28:30.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 979, "blockHeight": 979, "took": "8.572669ms"} -2023-12-15T14:28:31.433Z INFO sending PrepareRequest {"height": 980, "view": 0} -2023-12-15T14:28:31.433Z INFO sending Commit {"height": 980, "view": 0} -2023-12-15T14:28:31.434Z INFO approving block {"height": 980, "hash": "b1beca3cbc0fae0b01ab5cc9b17bfd0c6ca2db080a57cda6907519fd27ced674", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc4e4a9dd423ad62aea3856a492ff3e88517c4ff3a47b3983d943ca42c5c9d67"} -2023-12-15T14:28:31.437Z INFO initializing dbft {"height": 981, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:31.437Z debug frostfs-node/morph.go:229 new block {"index": 980} -2023-12-15T14:28:31.550Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 980, "blockHeight": 980, "took": "4.728547ms"} -2023-12-15T14:28:32.435Z INFO sending PrepareRequest {"height": 981, "view": 0} -2023-12-15T14:28:32.435Z INFO sending Commit {"height": 981, "view": 0} -2023-12-15T14:28:32.436Z INFO approving block {"height": 981, "hash": "6154e1fc0fd7e44448afbbf6c5f97dc563e616c83c7e924328ad77e7aa9bf4f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1beca3cbc0fae0b01ab5cc9b17bfd0c6ca2db080a57cda6907519fd27ced674"} -2023-12-15T14:28:32.437Z INFO initializing dbft {"height": 982, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:32.438Z debug frostfs-node/morph.go:229 new block {"index": 981} -2023-12-15T14:28:32.551Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 981, "blockHeight": 981, "took": "4.49789ms"} -2023-12-15T14:28:33.438Z INFO sending PrepareRequest {"height": 982, "view": 0} -2023-12-15T14:28:33.438Z INFO sending Commit {"height": 982, "view": 0} -2023-12-15T14:28:33.438Z INFO approving block {"height": 982, "hash": "93a48d380db36bbdfd020c2fc4f670dbd14e3bae2a4093a4c6163d33a8d374bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6154e1fc0fd7e44448afbbf6c5f97dc563e616c83c7e924328ad77e7aa9bf4f9"} -2023-12-15T14:28:33.440Z INFO initializing dbft {"height": 983, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:33.441Z debug frostfs-node/morph.go:229 new block {"index": 982} -2023-12-15T14:28:33.552Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 982, "blockHeight": 982, "took": "4.960034ms"} -2023-12-15T14:28:34.440Z INFO sending PrepareRequest {"height": 983, "view": 0} -2023-12-15T14:28:34.441Z INFO sending Commit {"height": 983, "view": 0} -2023-12-15T14:28:34.441Z INFO approving block {"height": 983, "hash": "901cf2d5f0b82423c019ed6a240d3a9b53c7688abfa10affadbc679a515a6309", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93a48d380db36bbdfd020c2fc4f670dbd14e3bae2a4093a4c6163d33a8d374bf"} -2023-12-15T14:28:34.443Z INFO initializing dbft {"height": 984, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:34.444Z debug frostfs-node/morph.go:229 new block {"index": 983} -2023-12-15T14:28:34.554Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 983, "blockHeight": 983, "took": "6.17462ms"} -2023-12-15T14:28:35.443Z INFO sending PrepareRequest {"height": 984, "view": 0} -2023-12-15T14:28:35.444Z INFO sending Commit {"height": 984, "view": 0} -2023-12-15T14:28:35.444Z INFO approving block {"height": 984, "hash": "70518284337cd199d15ee7378ce78fc7ca6501187d2234b2e075f208aff7bf80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "901cf2d5f0b82423c019ed6a240d3a9b53c7688abfa10affadbc679a515a6309"} -2023-12-15T14:28:35.447Z INFO initializing dbft {"height": 985, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:35.448Z debug frostfs-node/morph.go:229 new block {"index": 984} -2023-12-15T14:28:35.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 984, "blockHeight": 984, "took": "4.340996ms"} -2023-12-15T14:28:36.446Z INFO sending PrepareRequest {"height": 985, "view": 0} -2023-12-15T14:28:36.446Z INFO sending Commit {"height": 985, "view": 0} -2023-12-15T14:28:36.446Z INFO approving block {"height": 985, "hash": "aa68a8a7134d8c725ae9324d10cec5ea086853ccc3194c825fcf66e9672f71e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70518284337cd199d15ee7378ce78fc7ca6501187d2234b2e075f208aff7bf80"} -2023-12-15T14:28:36.448Z INFO initializing dbft {"height": 986, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:36.449Z debug frostfs-node/morph.go:229 new block {"index": 985} -2023-12-15T14:28:36.554Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 985, "blockHeight": 985, "took": "4.79882ms"} -2023-12-15T14:28:37.447Z INFO sending PrepareRequest {"height": 986, "view": 0} -2023-12-15T14:28:37.447Z INFO sending Commit {"height": 986, "view": 0} -2023-12-15T14:28:37.448Z INFO approving block {"height": 986, "hash": "02bfd7183c0b6642af3dda2a9e8c4a6421039bd8571aae5b4c59e88e94ec4704", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa68a8a7134d8c725ae9324d10cec5ea086853ccc3194c825fcf66e9672f71e4"} -2023-12-15T14:28:37.449Z INFO initializing dbft {"height": 987, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:37.450Z debug frostfs-node/morph.go:229 new block {"index": 986} -2023-12-15T14:28:37.558Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 986, "blockHeight": 986, "took": "6.976136ms"} -2023-12-15T14:28:38.449Z INFO sending PrepareRequest {"height": 987, "view": 0} -2023-12-15T14:28:38.450Z INFO sending Commit {"height": 987, "view": 0} -2023-12-15T14:28:38.450Z INFO approving block {"height": 987, "hash": "82b43d079c3a9991be4a63c4c53d2192499b80adddd4210b76f350f548db2bc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02bfd7183c0b6642af3dda2a9e8c4a6421039bd8571aae5b4c59e88e94ec4704"} -2023-12-15T14:28:38.452Z INFO initializing dbft {"height": 988, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:38.452Z debug frostfs-node/morph.go:229 new block {"index": 987} -2023-12-15T14:28:38.555Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 987, "blockHeight": 987, "took": "4.017157ms"} -2023-12-15T14:28:39.451Z INFO sending PrepareRequest {"height": 988, "view": 0} -2023-12-15T14:28:39.451Z INFO sending Commit {"height": 988, "view": 0} -2023-12-15T14:28:39.451Z INFO approving block {"height": 988, "hash": "c1fdcb6c5084dc90f5786cd865e529ae8f5c5567380c6476ac7c022298874706", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82b43d079c3a9991be4a63c4c53d2192499b80adddd4210b76f350f548db2bc0"} -2023-12-15T14:28:39.453Z INFO initializing dbft {"height": 989, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:39.453Z debug frostfs-node/morph.go:229 new block {"index": 988} -2023-12-15T14:28:39.556Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 988, "blockHeight": 988, "took": "3.967633ms"} -2023-12-15T14:28:40.452Z INFO sending PrepareRequest {"height": 989, "view": 0} -2023-12-15T14:28:40.453Z INFO sending Commit {"height": 989, "view": 0} -2023-12-15T14:28:40.453Z INFO approving block {"height": 989, "hash": "22841dd92f47e389f5a4c11dd38ac5eab40c97c18f3e6aa2744f1bcfaa619fa6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1fdcb6c5084dc90f5786cd865e529ae8f5c5567380c6476ac7c022298874706"} -2023-12-15T14:28:40.455Z INFO initializing dbft {"height": 990, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:40.456Z debug frostfs-node/morph.go:229 new block {"index": 989} -2023-12-15T14:28:40.557Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 989, "blockHeight": 989, "took": "5.198659ms"} -2023-12-15T14:28:41.455Z INFO sending PrepareRequest {"height": 990, "view": 0} -2023-12-15T14:28:41.455Z INFO sending Commit {"height": 990, "view": 0} -2023-12-15T14:28:41.455Z INFO approving block {"height": 990, "hash": "2a640ed26b1ef3aa5e3cc3d728ea4b386f15108b6465c0e3d8f2c7f791aed604", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22841dd92f47e389f5a4c11dd38ac5eab40c97c18f3e6aa2744f1bcfaa619fa6"} -2023-12-15T14:28:41.457Z INFO initializing dbft {"height": 991, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:41.458Z debug frostfs-node/morph.go:229 new block {"index": 990} -2023-12-15T14:28:41.556Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 990, "blockHeight": 990, "took": "3.582304ms"} -2023-12-15T14:28:42.456Z INFO sending PrepareRequest {"height": 991, "view": 0} -2023-12-15T14:28:42.457Z INFO sending Commit {"height": 991, "view": 0} -2023-12-15T14:28:42.457Z INFO approving block {"height": 991, "hash": "91fa8787a8b17395b86b6326599e07b9bbba5516218a3cfabd902ee9c9efa449", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a640ed26b1ef3aa5e3cc3d728ea4b386f15108b6465c0e3d8f2c7f791aed604"} -2023-12-15T14:28:42.459Z INFO initializing dbft {"height": 992, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:42.460Z debug frostfs-node/morph.go:229 new block {"index": 991} -2023-12-15T14:28:42.561Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 991, "blockHeight": 991, "took": "7.273079ms"} -2023-12-15T14:28:43.458Z INFO sending PrepareRequest {"height": 992, "view": 0} -2023-12-15T14:28:43.459Z INFO sending Commit {"height": 992, "view": 0} -2023-12-15T14:28:43.459Z INFO approving block {"height": 992, "hash": "98e8daa15bd3b02696ef5e71b38d225707ac8950609c22558ddf2c90eaf9692d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91fa8787a8b17395b86b6326599e07b9bbba5516218a3cfabd902ee9c9efa449"} -2023-12-15T14:28:43.462Z INFO initializing dbft {"height": 993, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:43.463Z debug frostfs-node/morph.go:229 new block {"index": 992} -2023-12-15T14:28:43.560Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 992, "blockHeight": 992, "took": "4.988414ms"} -2023-12-15T14:28:44.460Z INFO sending PrepareRequest {"height": 993, "view": 0} -2023-12-15T14:28:44.461Z INFO sending Commit {"height": 993, "view": 0} -2023-12-15T14:28:44.462Z INFO approving block {"height": 993, "hash": "a2efdbf0cabdd58f981364371f2ddcc8878e5d299e4131b81d39b5768e7ea1de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98e8daa15bd3b02696ef5e71b38d225707ac8950609c22558ddf2c90eaf9692d"} -2023-12-15T14:28:44.465Z INFO initializing dbft {"height": 994, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:44.466Z debug frostfs-node/morph.go:229 new block {"index": 993} -2023-12-15T14:28:44.560Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 993, "blockHeight": 993, "took": "4.82468ms"} -2023-12-15T14:28:45.463Z INFO sending PrepareRequest {"height": 994, "view": 0} -2023-12-15T14:28:45.463Z INFO sending Commit {"height": 994, "view": 0} -2023-12-15T14:28:45.464Z INFO approving block {"height": 994, "hash": "54a97204e8e1eadc1360ffb13c6f489665697787bbec7e04823528f698fe62e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2efdbf0cabdd58f981364371f2ddcc8878e5d299e4131b81d39b5768e7ea1de"} -2023-12-15T14:28:45.465Z INFO initializing dbft {"height": 995, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:45.466Z debug frostfs-node/morph.go:229 new block {"index": 994} -2023-12-15T14:28:45.559Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 994, "blockHeight": 994, "took": "2.632857ms"} -2023-12-15T14:28:46.465Z INFO sending PrepareRequest {"height": 995, "view": 0} -2023-12-15T14:28:46.465Z INFO sending Commit {"height": 995, "view": 0} -2023-12-15T14:28:46.465Z INFO approving block {"height": 995, "hash": "a36f5f45135b0838731e09117645b969b6fd0a48975423192d26d7959c3fbea6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54a97204e8e1eadc1360ffb13c6f489665697787bbec7e04823528f698fe62e8"} -2023-12-15T14:28:46.467Z INFO initializing dbft {"height": 996, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:46.467Z debug frostfs-node/morph.go:229 new block {"index": 995} -2023-12-15T14:28:46.563Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 995, "blockHeight": 995, "took": "6.20883ms"} -2023-12-15T14:28:47.467Z INFO sending PrepareRequest {"height": 996, "view": 0} -2023-12-15T14:28:47.467Z INFO sending Commit {"height": 996, "view": 0} -2023-12-15T14:28:47.468Z INFO approving block {"height": 996, "hash": "974fc24f33317cb53b0d391e611af479dcf7483f641ae6f8ba4c7a3e3035111d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a36f5f45135b0838731e09117645b969b6fd0a48975423192d26d7959c3fbea6"} -2023-12-15T14:28:47.469Z INFO initializing dbft {"height": 997, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:47.470Z debug frostfs-node/morph.go:229 new block {"index": 996} -2023-12-15T14:28:47.567Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 996, "blockHeight": 996, "took": "9.135397ms"} -2023-12-15T14:28:48.469Z INFO sending PrepareRequest {"height": 997, "view": 0} -2023-12-15T14:28:48.469Z INFO sending Commit {"height": 997, "view": 0} -2023-12-15T14:28:48.470Z INFO approving block {"height": 997, "hash": "d92e77d73a942f9cd8dd37f4b229077569939821edce4a81e0c2a7cc15ebe588", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "974fc24f33317cb53b0d391e611af479dcf7483f641ae6f8ba4c7a3e3035111d"} -2023-12-15T14:28:48.472Z INFO initializing dbft {"height": 998, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:48.473Z debug frostfs-node/morph.go:229 new block {"index": 997} -2023-12-15T14:28:48.564Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 997, "blockHeight": 997, "took": "5.001565ms"} -2023-12-15T14:28:49.470Z INFO sending PrepareRequest {"height": 998, "view": 0} -2023-12-15T14:28:49.471Z INFO sending Commit {"height": 998, "view": 0} -2023-12-15T14:28:49.471Z INFO approving block {"height": 998, "hash": "dc135d5fc4e8ac85c33c93105a6d4ef58895f5378869568c64d801db1e8ea059", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d92e77d73a942f9cd8dd37f4b229077569939821edce4a81e0c2a7cc15ebe588"} -2023-12-15T14:28:49.473Z INFO initializing dbft {"height": 999, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:49.474Z debug frostfs-node/morph.go:229 new block {"index": 998} -2023-12-15T14:28:49.565Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 998, "blockHeight": 998, "took": "5.10843ms"} -2023-12-15T14:28:50.472Z INFO sending PrepareRequest {"height": 999, "view": 0} -2023-12-15T14:28:50.473Z INFO sending Commit {"height": 999, "view": 0} -2023-12-15T14:28:50.473Z INFO approving block {"height": 999, "hash": "7a3f8352597fb778f0619bd8f25830ac21724296f15be1e5d8ced7646b8733a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc135d5fc4e8ac85c33c93105a6d4ef58895f5378869568c64d801db1e8ea059"} -2023-12-15T14:28:50.475Z INFO initializing dbft {"height": 1000, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:50.475Z debug frostfs-node/morph.go:229 new block {"index": 999} -2023-12-15T14:28:50.567Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 999, "blockHeight": 999, "took": "6.93137ms"} -2023-12-15T14:28:51.475Z INFO sending PrepareRequest {"height": 1000, "view": 0} -2023-12-15T14:28:51.475Z INFO sending Commit {"height": 1000, "view": 0} -2023-12-15T14:28:51.475Z INFO approving block {"height": 1000, "hash": "fabe317f979a2fd9019c8ff8699b07e328f3904b7f637073cf69b82c8fcd0cc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a3f8352597fb778f0619bd8f25830ac21724296f15be1e5d8ced7646b8733a8"} -2023-12-15T14:28:51.477Z INFO initializing dbft {"height": 1001, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:51.478Z debug frostfs-node/morph.go:229 new block {"index": 1000} -2023-12-15T14:28:51.568Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1000, "blockHeight": 1000, "took": "6.687504ms"} -2023-12-15T14:28:52.476Z INFO sending PrepareRequest {"height": 1001, "view": 0} -2023-12-15T14:28:52.476Z INFO sending Commit {"height": 1001, "view": 0} -2023-12-15T14:28:52.476Z INFO approving block {"height": 1001, "hash": "430e0a84219a25afe1df733b09ae356a1ebf7664e9ae5aa21d889ef69cae5079", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fabe317f979a2fd9019c8ff8699b07e328f3904b7f637073cf69b82c8fcd0cc0"} -2023-12-15T14:28:52.477Z INFO initializing dbft {"height": 1002, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:52.478Z debug frostfs-node/morph.go:229 new block {"index": 1001} -2023-12-15T14:28:52.569Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1001, "blockHeight": 1001, "took": "6.359264ms"} -2023-12-15T14:28:53.477Z INFO sending PrepareRequest {"height": 1002, "view": 0} -2023-12-15T14:28:53.478Z INFO sending Commit {"height": 1002, "view": 0} -2023-12-15T14:28:53.478Z INFO approving block {"height": 1002, "hash": "a65c33327150f3591ae19bb65d2f62b4335ec3c57da79533d839ef50399131fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "430e0a84219a25afe1df733b09ae356a1ebf7664e9ae5aa21d889ef69cae5079"} -2023-12-15T14:28:53.481Z INFO initializing dbft {"height": 1003, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:53.481Z debug frostfs-node/morph.go:229 new block {"index": 1002} -2023-12-15T14:28:53.569Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1002, "blockHeight": 1002, "took": "5.703661ms"} -2023-12-15T14:28:54.479Z INFO sending PrepareRequest {"height": 1003, "view": 0} -2023-12-15T14:28:54.479Z INFO sending Commit {"height": 1003, "view": 0} -2023-12-15T14:28:54.480Z INFO approving block {"height": 1003, "hash": "5dd749cf29e848fc59571b2b2652c293adaeeeb9f6dde05d6da4c0ea5e2d97a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a65c33327150f3591ae19bb65d2f62b4335ec3c57da79533d839ef50399131fc"} -2023-12-15T14:28:54.482Z INFO initializing dbft {"height": 1004, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:54.483Z debug frostfs-node/morph.go:229 new block {"index": 1003} -2023-12-15T14:28:54.569Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1003, "blockHeight": 1003, "took": "4.951754ms"} -2023-12-15T14:28:55.481Z INFO sending PrepareRequest {"height": 1004, "view": 0} -2023-12-15T14:28:55.481Z INFO sending Commit {"height": 1004, "view": 0} -2023-12-15T14:28:55.482Z INFO approving block {"height": 1004, "hash": "72adea95d18879ba35c6ac95d2ab97ba8c67816118009300156ad556c349c754", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5dd749cf29e848fc59571b2b2652c293adaeeeb9f6dde05d6da4c0ea5e2d97a0"} -2023-12-15T14:28:55.485Z INFO initializing dbft {"height": 1005, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:55.486Z debug frostfs-node/morph.go:229 new block {"index": 1004} -2023-12-15T14:28:55.570Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1004, "blockHeight": 1004, "took": "5.195901ms"} -2023-12-15T14:28:56.483Z INFO sending PrepareRequest {"height": 1005, "view": 0} -2023-12-15T14:28:56.483Z INFO sending Commit {"height": 1005, "view": 0} -2023-12-15T14:28:56.484Z INFO approving block {"height": 1005, "hash": "cc59afc6c72c5115f9677ec58108c346c092fddf2331bb1da1788f4727f80303", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72adea95d18879ba35c6ac95d2ab97ba8c67816118009300156ad556c349c754"} -2023-12-15T14:28:56.485Z INFO initializing dbft {"height": 1006, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:56.486Z debug frostfs-node/morph.go:229 new block {"index": 1005} -2023-12-15T14:28:56.570Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1005, "blockHeight": 1005, "took": "4.746986ms"} -2023-12-15T14:28:57.484Z INFO sending PrepareRequest {"height": 1006, "view": 0} -2023-12-15T14:28:57.485Z INFO sending Commit {"height": 1006, "view": 0} -2023-12-15T14:28:57.486Z INFO approving block {"height": 1006, "hash": "eb7082f187d0da20fe1e40569bb249ecfde91a3df7230b2924c04bb236a432a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc59afc6c72c5115f9677ec58108c346c092fddf2331bb1da1788f4727f80303"} -2023-12-15T14:28:57.488Z INFO initializing dbft {"height": 1007, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:57.489Z debug frostfs-node/morph.go:229 new block {"index": 1006} -2023-12-15T14:28:57.574Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1006, "blockHeight": 1006, "took": "7.789137ms"} -2023-12-15T14:28:58.486Z INFO sending PrepareRequest {"height": 1007, "view": 0} -2023-12-15T14:28:58.486Z INFO sending Commit {"height": 1007, "view": 0} -2023-12-15T14:28:58.487Z INFO approving block {"height": 1007, "hash": "008d80993a0923b088d2320f0b2557f7923a0b859b4e95f4986ec524dbcf4b7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb7082f187d0da20fe1e40569bb249ecfde91a3df7230b2924c04bb236a432a9"} -2023-12-15T14:28:58.489Z INFO initializing dbft {"height": 1008, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:58.490Z debug frostfs-node/morph.go:229 new block {"index": 1007} -2023-12-15T14:28:58.572Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1007, "blockHeight": 1007, "took": "5.481223ms"} -2023-12-15T14:28:59.488Z INFO sending PrepareRequest {"height": 1008, "view": 0} -2023-12-15T14:28:59.488Z INFO sending Commit {"height": 1008, "view": 0} -2023-12-15T14:28:59.489Z INFO approving block {"height": 1008, "hash": "eff2297857a4ee50047895567f0b8055f50acf06a07da0f2c8c0324570c01fe9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "008d80993a0923b088d2320f0b2557f7923a0b859b4e95f4986ec524dbcf4b7f"} -2023-12-15T14:28:59.490Z INFO initializing dbft {"height": 1009, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:28:59.490Z debug frostfs-node/morph.go:229 new block {"index": 1008} -2023-12-15T14:28:59.570Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1008, "blockHeight": 1008, "took": "2.531983ms"} -2023-12-15T14:29:00.490Z INFO sending PrepareRequest {"height": 1009, "view": 0} -2023-12-15T14:29:00.490Z INFO sending Commit {"height": 1009, "view": 0} -2023-12-15T14:29:00.490Z INFO approving block {"height": 1009, "hash": "7e72364667fbc4c84bd1c89770f0a772a72b00a1c7c84abeae2e281792b26f68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eff2297857a4ee50047895567f0b8055f50acf06a07da0f2c8c0324570c01fe9"} -2023-12-15T14:29:00.491Z INFO initializing dbft {"height": 1010, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:00.491Z debug frostfs-node/morph.go:229 new block {"index": 1009} -2023-12-15T14:29:00.573Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1009, "blockHeight": 1009, "took": "4.550712ms"} -2023-12-15T14:29:01.491Z INFO sending PrepareRequest {"height": 1010, "view": 0} -2023-12-15T14:29:01.491Z INFO sending Commit {"height": 1010, "view": 0} -2023-12-15T14:29:01.491Z INFO approving block {"height": 1010, "hash": "6874c4136f069cbf47d65bbbac5667e23a5eca28891fe5a6342730d1e8c95ca5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e72364667fbc4c84bd1c89770f0a772a72b00a1c7c84abeae2e281792b26f68"} -2023-12-15T14:29:01.492Z INFO initializing dbft {"height": 1011, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:01.492Z debug frostfs-node/morph.go:229 new block {"index": 1010} -2023-12-15T14:29:01.576Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1010, "blockHeight": 1010, "took": "7.298512ms"} -2023-12-15T14:29:02.492Z INFO sending PrepareRequest {"height": 1011, "view": 0} -2023-12-15T14:29:02.493Z INFO sending Commit {"height": 1011, "view": 0} -2023-12-15T14:29:02.493Z INFO approving block {"height": 1011, "hash": "d2a67080fd657486056e88f72657c0969afe6a8586e77078953b1c055b5b5309", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6874c4136f069cbf47d65bbbac5667e23a5eca28891fe5a6342730d1e8c95ca5"} -2023-12-15T14:29:02.495Z INFO initializing dbft {"height": 1012, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:02.495Z debug frostfs-node/morph.go:229 new block {"index": 1011} -2023-12-15T14:29:02.573Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1011, "blockHeight": 1011, "took": "3.841796ms"} -2023-12-15T14:29:03.494Z INFO sending PrepareRequest {"height": 1012, "view": 0} -2023-12-15T14:29:03.494Z INFO sending Commit {"height": 1012, "view": 0} -2023-12-15T14:29:03.494Z INFO approving block {"height": 1012, "hash": "2af132e49ec00978ed33b5cdfeb3380e62b676a0f3abe107be738fe4728e1a26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2a67080fd657486056e88f72657c0969afe6a8586e77078953b1c055b5b5309"} -2023-12-15T14:29:03.495Z INFO initializing dbft {"height": 1013, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:03.495Z debug frostfs-node/morph.go:229 new block {"index": 1012} -2023-12-15T14:29:03.574Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1012, "blockHeight": 1012, "took": "4.24386ms"} -2023-12-15T14:29:04.495Z INFO sending PrepareRequest {"height": 1013, "view": 0} -2023-12-15T14:29:04.496Z INFO sending Commit {"height": 1013, "view": 0} -2023-12-15T14:29:04.496Z INFO approving block {"height": 1013, "hash": "cc87e0541d515fc18d6dda49b63b7c1c41d5b096c5480810f3c5c0c9717107c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2af132e49ec00978ed33b5cdfeb3380e62b676a0f3abe107be738fe4728e1a26"} -2023-12-15T14:29:04.497Z INFO initializing dbft {"height": 1014, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:04.498Z debug frostfs-node/morph.go:229 new block {"index": 1013} -2023-12-15T14:29:04.574Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1013, "blockHeight": 1013, "took": "3.861253ms"} -2023-12-15T14:29:05.497Z INFO sending PrepareRequest {"height": 1014, "view": 0} -2023-12-15T14:29:05.497Z INFO sending Commit {"height": 1014, "view": 0} -2023-12-15T14:29:05.498Z INFO approving block {"height": 1014, "hash": "df8cb2c8cf23a4c550e0c3d560764a73f90f72d88f046121f6e214779944baac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc87e0541d515fc18d6dda49b63b7c1c41d5b096c5480810f3c5c0c9717107c9"} -2023-12-15T14:29:05.499Z INFO initializing dbft {"height": 1015, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:05.500Z debug frostfs-node/morph.go:229 new block {"index": 1014} -2023-12-15T14:29:05.575Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1014, "blockHeight": 1014, "took": "4.039048ms"} -2023-12-15T14:29:06.498Z INFO sending PrepareRequest {"height": 1015, "view": 0} -2023-12-15T14:29:06.499Z INFO sending Commit {"height": 1015, "view": 0} -2023-12-15T14:29:06.499Z INFO approving block {"height": 1015, "hash": "98520be6474aaf3236d41f1d41d0639b65c28b74958002b2eafac2ad6fff5fb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df8cb2c8cf23a4c550e0c3d560764a73f90f72d88f046121f6e214779944baac"} -2023-12-15T14:29:06.500Z INFO initializing dbft {"height": 1016, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:06.500Z debug frostfs-node/morph.go:229 new block {"index": 1015} -2023-12-15T14:29:06.578Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1015, "blockHeight": 1015, "took": "6.765714ms"} -2023-12-15T14:29:07.499Z INFO sending PrepareRequest {"height": 1016, "view": 0} -2023-12-15T14:29:07.499Z INFO sending Commit {"height": 1016, "view": 0} -2023-12-15T14:29:07.500Z INFO approving block {"height": 1016, "hash": "1b969d3fd0499018b2cda5ae361d4cee0116a987dc1b2a7e778b9b4ea6329a7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98520be6474aaf3236d41f1d41d0639b65c28b74958002b2eafac2ad6fff5fb6"} -2023-12-15T14:29:07.501Z INFO initializing dbft {"height": 1017, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:07.501Z debug frostfs-node/morph.go:229 new block {"index": 1016} -2023-12-15T14:29:07.577Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1016, "blockHeight": 1016, "took": "4.14313ms"} -2023-12-15T14:29:08.501Z INFO sending PrepareRequest {"height": 1017, "view": 0} -2023-12-15T14:29:08.502Z INFO sending Commit {"height": 1017, "view": 0} -2023-12-15T14:29:08.502Z INFO approving block {"height": 1017, "hash": "188c560ef5e574742a14a38ed1793c79ef4447d97116797773b666f52fef4600", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b969d3fd0499018b2cda5ae361d4cee0116a987dc1b2a7e778b9b4ea6329a7b"} -2023-12-15T14:29:08.504Z INFO initializing dbft {"height": 1018, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:08.505Z debug frostfs-node/morph.go:229 new block {"index": 1017} -2023-12-15T14:29:08.507Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:29:08.510Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:29:08.511Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:29:08.577Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1017, "blockHeight": 1017, "took": "3.813491ms"} -2023-12-15T14:29:09.503Z INFO sending PrepareRequest {"height": 1018, "view": 0} -2023-12-15T14:29:09.503Z INFO sending Commit {"height": 1018, "view": 0} -2023-12-15T14:29:09.504Z INFO approving block {"height": 1018, "hash": "9b72605282ef97327232eb73ff24e0c88a7ed2901b6c6069c3f3a97afe67d75d", "tx_count": 2, "merkle": "999d559f510b44cb4d20a1c61ac229c77c5ae248710d2c8c28186b54f78b513e", "prev": "188c560ef5e574742a14a38ed1793c79ef4447d97116797773b666f52fef4600"} -2023-12-15T14:29:09.505Z INFO runtime log {"tx": "9bb2f3535eee48ffae2c8409c18c4a540d7235a8be834cda83656b9134ac938e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:29:09.505Z INFO runtime log {"tx": "9bb2f3535eee48ffae2c8409c18c4a540d7235a8be834cda83656b9134ac938e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:29:09.506Z INFO initializing dbft {"height": 1019, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:09.507Z debug frostfs-node/morph.go:229 new block {"index": 1018} -2023-12-15T14:29:09.578Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1018, "blockHeight": 1018, "took": "4.252563ms"} -2023-12-15T14:29:10.506Z INFO sending PrepareRequest {"height": 1019, "view": 0} -2023-12-15T14:29:10.506Z INFO sending Commit {"height": 1019, "view": 0} -2023-12-15T14:29:10.507Z INFO approving block {"height": 1019, "hash": "9b07346ce86bafb4b237ddc76ae22f02ccd2c105781a796f9ffddf19b356851d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b72605282ef97327232eb73ff24e0c88a7ed2901b6c6069c3f3a97afe67d75d"} -2023-12-15T14:29:10.509Z INFO initializing dbft {"height": 1020, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:10.510Z debug frostfs-node/morph.go:229 new block {"index": 1019} -2023-12-15T14:29:10.579Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1019, "blockHeight": 1019, "took": "4.613188ms"} -2023-12-15T14:29:11.508Z INFO sending PrepareRequest {"height": 1020, "view": 0} -2023-12-15T14:29:11.508Z INFO sending Commit {"height": 1020, "view": 0} -2023-12-15T14:29:11.508Z INFO approving block {"height": 1020, "hash": "b3643bd96d67f9db1fdaeaf2b217cfbe8907ffbaff180bcf8780b39e28db3c47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b07346ce86bafb4b237ddc76ae22f02ccd2c105781a796f9ffddf19b356851d"} -2023-12-15T14:29:11.510Z INFO initializing dbft {"height": 1021, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:11.511Z debug frostfs-node/morph.go:229 new block {"index": 1020} -2023-12-15T14:29:11.580Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1020, "blockHeight": 1020, "took": "4.344055ms"} -2023-12-15T14:29:12.510Z INFO sending PrepareRequest {"height": 1021, "view": 0} -2023-12-15T14:29:12.510Z INFO sending Commit {"height": 1021, "view": 0} -2023-12-15T14:29:12.510Z INFO approving block {"height": 1021, "hash": "e65ffbc1bf8866e64e91859cb7ceeb0bfa759c2c66322e13b7f54135dd08d1fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3643bd96d67f9db1fdaeaf2b217cfbe8907ffbaff180bcf8780b39e28db3c47"} -2023-12-15T14:29:12.512Z INFO initializing dbft {"height": 1022, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:12.513Z debug frostfs-node/morph.go:229 new block {"index": 1021} -2023-12-15T14:29:12.581Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1021, "blockHeight": 1021, "took": "4.736877ms"} -2023-12-15T14:29:13.511Z INFO sending PrepareRequest {"height": 1022, "view": 0} -2023-12-15T14:29:13.512Z INFO sending Commit {"height": 1022, "view": 0} -2023-12-15T14:29:13.512Z INFO approving block {"height": 1022, "hash": "15cc97361a047a6f2af8916b2ebdd75af63c22336d3944cb21d17215a7ee8dfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e65ffbc1bf8866e64e91859cb7ceeb0bfa759c2c66322e13b7f54135dd08d1fe"} -2023-12-15T14:29:13.514Z INFO initializing dbft {"height": 1023, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:13.515Z debug frostfs-node/morph.go:229 new block {"index": 1022} -2023-12-15T14:29:13.584Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1022, "blockHeight": 1022, "took": "6.169395ms"} -2023-12-15T14:29:14.513Z INFO sending PrepareRequest {"height": 1023, "view": 0} -2023-12-15T14:29:14.513Z INFO sending Commit {"height": 1023, "view": 0} -2023-12-15T14:29:14.514Z INFO approving block {"height": 1023, "hash": "ca13d1b8f6a80d5d341c113e6ee998ced28c0255dfdd5f18093baf069396bca5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15cc97361a047a6f2af8916b2ebdd75af63c22336d3944cb21d17215a7ee8dfc"} -2023-12-15T14:29:14.517Z INFO initializing dbft {"height": 1024, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:14.517Z debug frostfs-node/morph.go:229 new block {"index": 1023} -2023-12-15T14:29:14.524Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 5 epoch for daughters"} -2023-12-15T14:29:14.583Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 1023, "blockHeight": 1023, "took": "4.744118ms"} -2023-12-15T14:29:15.515Z INFO sending PrepareRequest {"height": 1024, "view": 0} -2023-12-15T14:29:15.516Z INFO sending Commit {"height": 1024, "view": 0} -2023-12-15T14:29:15.516Z INFO approving block {"height": 1024, "hash": "e6efb9f298e66cea3ed3531f19fb59d772faa1314eea46fea871a302ba94628a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca13d1b8f6a80d5d341c113e6ee998ced28c0255dfdd5f18093baf069396bca5"} -2023-12-15T14:29:15.518Z INFO initializing dbft {"height": 1025, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:15.519Z debug frostfs-node/morph.go:229 new block {"index": 1024} -2023-12-15T14:29:15.525Z INFO runtime log {"tx": "347a916321efe83ff3ae6188fd2d0179f27ec165f2d133eccf9327508ae4f9f4", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:29:15.585Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1024, "blockHeight": 1024, "took": "5.453769ms"} -2023-12-15T14:29:16.518Z INFO sending PrepareRequest {"height": 1025, "view": 0} -2023-12-15T14:29:16.518Z INFO sending Commit {"height": 1025, "view": 0} -2023-12-15T14:29:16.518Z INFO approving block {"height": 1025, "hash": "05abf16b82c0e103fadd9bf4cde6d7a861814264c96e1db3f24d65059d18e007", "tx_count": 1, "merkle": "e08af9b8357d87e32361ec68e3fc5a5c749f0c32376ae0ff2c9832799b4ba6a5", "prev": "e6efb9f298e66cea3ed3531f19fb59d772faa1314eea46fea871a302ba94628a"} -2023-12-15T14:29:16.520Z INFO runtime log {"tx": "a5a64b9b7932982cffe06a37320c9f745c5afce368ec6123e3877d35b8f98ae0", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:29:16.522Z INFO initializing dbft {"height": 1026, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:16.523Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 5} -2023-12-15T14:29:16.523Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 5} -2023-12-15T14:29:16.523Z debug frostfs-node/morph.go:229 new block {"index": 1025} -2023-12-15T14:29:16.588Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 1025, "blockHeight": 1025, "took": "7.018088ms"} -2023-12-15T14:29:17.520Z INFO sending PrepareRequest {"height": 1026, "view": 0} -2023-12-15T14:29:17.520Z INFO sending Commit {"height": 1026, "view": 0} -2023-12-15T14:29:17.520Z INFO approving block {"height": 1026, "hash": "0ab2b2e32825b9f564b138f186546c926aecb8c571069de02d9e473634579b91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05abf16b82c0e103fadd9bf4cde6d7a861814264c96e1db3f24d65059d18e007"} -2023-12-15T14:29:17.523Z INFO initializing dbft {"height": 1027, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:17.523Z debug frostfs-node/morph.go:229 new block {"index": 1026} -2023-12-15T14:29:17.587Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1026, "blockHeight": 1026, "took": "5.599756ms"} -2023-12-15T14:29:18.522Z INFO sending PrepareRequest {"height": 1027, "view": 0} -2023-12-15T14:29:18.522Z INFO sending Commit {"height": 1027, "view": 0} -2023-12-15T14:29:18.523Z INFO approving block {"height": 1027, "hash": "98c2cdd0ca3788d6ae1fd83b5e41f0765eb16d991e541fce66dcbf40dba126c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ab2b2e32825b9f564b138f186546c926aecb8c571069de02d9e473634579b91"} -2023-12-15T14:29:18.526Z INFO initializing dbft {"height": 1028, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:18.527Z debug frostfs-node/morph.go:229 new block {"index": 1027} -2023-12-15T14:29:18.590Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1027, "blockHeight": 1027, "took": "7.547444ms"} -2023-12-15T14:29:19.524Z INFO sending PrepareRequest {"height": 1028, "view": 0} -2023-12-15T14:29:19.524Z INFO sending Commit {"height": 1028, "view": 0} -2023-12-15T14:29:19.524Z INFO approving block {"height": 1028, "hash": "958c05748d29ee068c457e75ed9c32ac64d46be3d3c520821251908fed2774cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98c2cdd0ca3788d6ae1fd83b5e41f0765eb16d991e541fce66dcbf40dba126c2"} -2023-12-15T14:29:19.526Z INFO initializing dbft {"height": 1029, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:19.528Z debug frostfs-node/morph.go:229 new block {"index": 1028} -2023-12-15T14:29:19.586Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1028, "blockHeight": 1028, "took": "3.56511ms"} -2023-12-15T14:29:20.526Z INFO sending PrepareRequest {"height": 1029, "view": 0} -2023-12-15T14:29:20.526Z INFO sending Commit {"height": 1029, "view": 0} -2023-12-15T14:29:20.526Z INFO approving block {"height": 1029, "hash": "7f2e991f0d7803b03999e1042e5f50f1ed7975705963e056fafcc3069af1ab86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "958c05748d29ee068c457e75ed9c32ac64d46be3d3c520821251908fed2774cb"} -2023-12-15T14:29:20.529Z INFO initializing dbft {"height": 1030, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:20.529Z debug frostfs-node/morph.go:229 new block {"index": 1029} -2023-12-15T14:29:20.595Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1029, "blockHeight": 1029, "took": "11.716376ms"} -2023-12-15T14:29:21.528Z INFO sending PrepareRequest {"height": 1030, "view": 0} -2023-12-15T14:29:21.528Z INFO sending Commit {"height": 1030, "view": 0} -2023-12-15T14:29:21.528Z INFO approving block {"height": 1030, "hash": "a61b2588d3aafee7efa9fd415d2ff09632555d2d0f22ef1be63366830263ea0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f2e991f0d7803b03999e1042e5f50f1ed7975705963e056fafcc3069af1ab86"} -2023-12-15T14:29:21.530Z INFO initializing dbft {"height": 1031, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:21.531Z debug frostfs-node/morph.go:229 new block {"index": 1030} -2023-12-15T14:29:21.589Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1030, "blockHeight": 1030, "took": "4.372281ms"} -2023-12-15T14:29:22.530Z INFO sending PrepareRequest {"height": 1031, "view": 0} -2023-12-15T14:29:22.530Z INFO sending Commit {"height": 1031, "view": 0} -2023-12-15T14:29:22.531Z INFO approving block {"height": 1031, "hash": "91e7e7f5179390d41df7df35695854d0c40c851f939cd54de0a33313f18320e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a61b2588d3aafee7efa9fd415d2ff09632555d2d0f22ef1be63366830263ea0d"} -2023-12-15T14:29:22.532Z INFO initializing dbft {"height": 1032, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:22.533Z debug frostfs-node/morph.go:229 new block {"index": 1031} -2023-12-15T14:29:22.591Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1031, "blockHeight": 1031, "took": "6.355984ms"} -2023-12-15T14:29:23.531Z INFO sending PrepareRequest {"height": 1032, "view": 0} -2023-12-15T14:29:23.532Z INFO sending Commit {"height": 1032, "view": 0} -2023-12-15T14:29:23.532Z INFO approving block {"height": 1032, "hash": "c65b7e0c672df6394b545ea84d00ba92e3478972cf5b92dd02115c83931f40d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91e7e7f5179390d41df7df35695854d0c40c851f939cd54de0a33313f18320e4"} -2023-12-15T14:29:23.533Z INFO initializing dbft {"height": 1033, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:23.533Z debug frostfs-node/morph.go:229 new block {"index": 1032} -2023-12-15T14:29:23.588Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1032, "blockHeight": 1032, "took": "2.988427ms"} -2023-12-15T14:29:24.533Z INFO sending PrepareRequest {"height": 1033, "view": 0} -2023-12-15T14:29:24.534Z INFO sending Commit {"height": 1033, "view": 0} -2023-12-15T14:29:24.534Z INFO approving block {"height": 1033, "hash": "f8ad0123c6f759b24ffd26ac125c4c99c4bb35c0d58b2176901998f7fe711f36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c65b7e0c672df6394b545ea84d00ba92e3478972cf5b92dd02115c83931f40d0"} -2023-12-15T14:29:24.536Z INFO initializing dbft {"height": 1034, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:24.537Z debug frostfs-node/morph.go:229 new block {"index": 1033} -2023-12-15T14:29:24.590Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1033, "blockHeight": 1033, "took": "3.693715ms"} -2023-12-15T14:29:25.536Z INFO sending PrepareRequest {"height": 1034, "view": 0} -2023-12-15T14:29:25.536Z INFO sending Commit {"height": 1034, "view": 0} -2023-12-15T14:29:25.537Z INFO approving block {"height": 1034, "hash": "32c667af4299a73e9c4a4acfcbfe50f5c391155d20a6069372553a5993c8086c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8ad0123c6f759b24ffd26ac125c4c99c4bb35c0d58b2176901998f7fe711f36"} -2023-12-15T14:29:25.538Z INFO initializing dbft {"height": 1035, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:25.539Z debug frostfs-node/morph.go:229 new block {"index": 1034} -2023-12-15T14:29:25.593Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1034, "blockHeight": 1034, "took": "5.534481ms"} -2023-12-15T14:29:26.539Z INFO sending PrepareRequest {"height": 1035, "view": 0} -2023-12-15T14:29:26.539Z INFO sending Commit {"height": 1035, "view": 0} -2023-12-15T14:29:26.539Z INFO approving block {"height": 1035, "hash": "8389b6e0d52c6911fcc9586df599f9eac060375371dc1f58ba094e4ecc3bd668", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32c667af4299a73e9c4a4acfcbfe50f5c391155d20a6069372553a5993c8086c"} -2023-12-15T14:29:26.540Z INFO initializing dbft {"height": 1036, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:26.541Z debug frostfs-node/morph.go:229 new block {"index": 1035} -2023-12-15T14:29:26.593Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1035, "blockHeight": 1035, "took": "6.093696ms"} -2023-12-15T14:29:27.540Z INFO sending PrepareRequest {"height": 1036, "view": 0} -2023-12-15T14:29:27.540Z INFO sending Commit {"height": 1036, "view": 0} -2023-12-15T14:29:27.540Z INFO approving block {"height": 1036, "hash": "b5c68e98facd9dfe5ddeeaafefad38f34aef010e6eb43b6c0b0d1bff26136678", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8389b6e0d52c6911fcc9586df599f9eac060375371dc1f58ba094e4ecc3bd668"} -2023-12-15T14:29:27.541Z INFO initializing dbft {"height": 1037, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:27.542Z debug frostfs-node/morph.go:229 new block {"index": 1036} -2023-12-15T14:29:27.593Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1036, "blockHeight": 1036, "took": "5.31224ms"} -2023-12-15T14:29:28.542Z INFO sending PrepareRequest {"height": 1037, "view": 0} -2023-12-15T14:29:28.542Z INFO sending Commit {"height": 1037, "view": 0} -2023-12-15T14:29:28.542Z INFO approving block {"height": 1037, "hash": "c892c9c868fd278045287211e09ff37d2516320860eebf01c375c0c403b4da4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5c68e98facd9dfe5ddeeaafefad38f34aef010e6eb43b6c0b0d1bff26136678"} -2023-12-15T14:29:28.544Z INFO initializing dbft {"height": 1038, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:28.544Z debug frostfs-node/morph.go:229 new block {"index": 1037} -2023-12-15T14:29:28.593Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1037, "blockHeight": 1037, "took": "4.14503ms"} -2023-12-15T14:29:29.544Z INFO sending PrepareRequest {"height": 1038, "view": 0} -2023-12-15T14:29:29.544Z INFO sending Commit {"height": 1038, "view": 0} -2023-12-15T14:29:29.544Z INFO approving block {"height": 1038, "hash": "c356550f3b8799dce0e630414826629a4ae6d04b72ceab1d6a73de03976a1379", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c892c9c868fd278045287211e09ff37d2516320860eebf01c375c0c403b4da4a"} -2023-12-15T14:29:29.546Z INFO initializing dbft {"height": 1039, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:29.546Z debug frostfs-node/morph.go:229 new block {"index": 1038} -2023-12-15T14:29:29.593Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1038, "blockHeight": 1038, "took": "3.553092ms"} -2023-12-15T14:29:30.545Z INFO sending PrepareRequest {"height": 1039, "view": 0} -2023-12-15T14:29:30.545Z INFO sending Commit {"height": 1039, "view": 0} -2023-12-15T14:29:30.546Z INFO approving block {"height": 1039, "hash": "0c40d7c642fada3897dca2957d8406df0d14ff7169c43a4da8165f03a5063e86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c356550f3b8799dce0e630414826629a4ae6d04b72ceab1d6a73de03976a1379"} -2023-12-15T14:29:30.547Z INFO initializing dbft {"height": 1040, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:30.547Z debug frostfs-node/morph.go:229 new block {"index": 1039} -2023-12-15T14:29:30.595Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1039, "blockHeight": 1039, "took": "5.182594ms"} -2023-12-15T14:29:31.546Z INFO sending PrepareRequest {"height": 1040, "view": 0} -2023-12-15T14:29:31.546Z INFO sending Commit {"height": 1040, "view": 0} -2023-12-15T14:29:31.547Z INFO approving block {"height": 1040, "hash": "4deaffc1cee5870c8ed0c6062ae5c6c3752a333d5fa10700c5d159b95f37ea32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c40d7c642fada3897dca2957d8406df0d14ff7169c43a4da8165f03a5063e86"} -2023-12-15T14:29:31.548Z INFO initializing dbft {"height": 1041, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:31.548Z debug frostfs-node/morph.go:229 new block {"index": 1040} -2023-12-15T14:29:31.594Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1040, "blockHeight": 1040, "took": "3.235278ms"} -2023-12-15T14:29:32.548Z INFO sending PrepareRequest {"height": 1041, "view": 0} -2023-12-15T14:29:32.548Z INFO sending Commit {"height": 1041, "view": 0} -2023-12-15T14:29:32.548Z INFO approving block {"height": 1041, "hash": "04028c97909831a7013045ae49eb77c59d9dd5aefd5044b3e28f1caeea6cb2cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4deaffc1cee5870c8ed0c6062ae5c6c3752a333d5fa10700c5d159b95f37ea32"} -2023-12-15T14:29:32.550Z INFO initializing dbft {"height": 1042, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:32.550Z debug frostfs-node/morph.go:229 new block {"index": 1041} -2023-12-15T14:29:32.595Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1041, "blockHeight": 1041, "took": "3.839891ms"} -2023-12-15T14:29:33.550Z INFO sending PrepareRequest {"height": 1042, "view": 0} -2023-12-15T14:29:33.550Z INFO sending Commit {"height": 1042, "view": 0} -2023-12-15T14:29:33.550Z INFO approving block {"height": 1042, "hash": "d2971731651b333f2464651abe43383be07286d72468cdf4932a28d5a6824acd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04028c97909831a7013045ae49eb77c59d9dd5aefd5044b3e28f1caeea6cb2cf"} -2023-12-15T14:29:33.552Z INFO initializing dbft {"height": 1043, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:33.553Z debug frostfs-node/morph.go:229 new block {"index": 1042} -2023-12-15T14:29:33.597Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1042, "blockHeight": 1042, "took": "4.977434ms"} -2023-12-15T14:29:34.551Z INFO sending PrepareRequest {"height": 1043, "view": 0} -2023-12-15T14:29:34.552Z INFO sending Commit {"height": 1043, "view": 0} -2023-12-15T14:29:34.552Z INFO approving block {"height": 1043, "hash": "76ce334968a413c74444ac0880018a450e18458d07d45553b783839c18d0dd25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2971731651b333f2464651abe43383be07286d72468cdf4932a28d5a6824acd"} -2023-12-15T14:29:34.555Z INFO initializing dbft {"height": 1044, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:34.556Z debug frostfs-node/morph.go:229 new block {"index": 1043} -2023-12-15T14:29:34.597Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1043, "blockHeight": 1043, "took": "4.609873ms"} -2023-12-15T14:29:35.553Z INFO sending PrepareRequest {"height": 1044, "view": 0} -2023-12-15T14:29:35.553Z INFO sending Commit {"height": 1044, "view": 0} -2023-12-15T14:29:35.554Z INFO approving block {"height": 1044, "hash": "d00fbc9f43e25215d5fbd54daafe7edb081bcce228883e4ba4f3ade9b98cc311", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76ce334968a413c74444ac0880018a450e18458d07d45553b783839c18d0dd25"} -2023-12-15T14:29:35.555Z INFO initializing dbft {"height": 1045, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:35.556Z debug frostfs-node/morph.go:229 new block {"index": 1044} -2023-12-15T14:29:35.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1044, "blockHeight": 1044, "took": "7.423445ms"} -2023-12-15T14:29:36.555Z INFO sending PrepareRequest {"height": 1045, "view": 0} -2023-12-15T14:29:36.555Z INFO sending Commit {"height": 1045, "view": 0} -2023-12-15T14:29:36.556Z INFO approving block {"height": 1045, "hash": "ce66e4d1dc15175b1cbc41c484b2ba79b04664a772cbade2c9bd5e1eab290ca3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d00fbc9f43e25215d5fbd54daafe7edb081bcce228883e4ba4f3ade9b98cc311"} -2023-12-15T14:29:36.558Z INFO initializing dbft {"height": 1046, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:36.559Z debug frostfs-node/morph.go:229 new block {"index": 1045} -2023-12-15T14:29:36.604Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1045, "blockHeight": 1045, "took": "9.757052ms"} -2023-12-15T14:29:37.557Z INFO sending PrepareRequest {"height": 1046, "view": 0} -2023-12-15T14:29:37.557Z INFO sending Commit {"height": 1046, "view": 0} -2023-12-15T14:29:37.558Z INFO approving block {"height": 1046, "hash": "20ca19d43d7b24437b4615bee8a0d1011cfe8f4c4d4176d031c8e9f515c14c1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce66e4d1dc15175b1cbc41c484b2ba79b04664a772cbade2c9bd5e1eab290ca3"} -2023-12-15T14:29:37.560Z INFO initializing dbft {"height": 1047, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:37.561Z debug frostfs-node/morph.go:229 new block {"index": 1046} -2023-12-15T14:29:37.603Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1046, "blockHeight": 1046, "took": "8.001784ms"} -2023-12-15T14:29:38.560Z INFO sending PrepareRequest {"height": 1047, "view": 0} -2023-12-15T14:29:38.560Z INFO sending Commit {"height": 1047, "view": 0} -2023-12-15T14:29:38.560Z INFO approving block {"height": 1047, "hash": "47c30542f0fe0031720626a14f6bfc84625245d92d846382156be12c1a7c728f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20ca19d43d7b24437b4615bee8a0d1011cfe8f4c4d4176d031c8e9f515c14c1a"} -2023-12-15T14:29:38.565Z INFO initializing dbft {"height": 1048, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:38.567Z debug frostfs-node/morph.go:229 new block {"index": 1047} -2023-12-15T14:29:38.602Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1047, "blockHeight": 1047, "took": "6.642394ms"} -2023-12-15T14:29:39.561Z INFO sending PrepareRequest {"height": 1048, "view": 0} -2023-12-15T14:29:39.562Z INFO sending Commit {"height": 1048, "view": 0} -2023-12-15T14:29:39.562Z INFO approving block {"height": 1048, "hash": "0ad553302474936da9f49c6e26002f6eda8cec2034fa4f6a0c7bc591b5e94f70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47c30542f0fe0031720626a14f6bfc84625245d92d846382156be12c1a7c728f"} -2023-12-15T14:29:39.564Z INFO initializing dbft {"height": 1049, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:39.564Z debug frostfs-node/morph.go:229 new block {"index": 1048} -2023-12-15T14:29:39.600Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1048, "blockHeight": 1048, "took": "3.803831ms"} -2023-12-15T14:29:40.563Z INFO sending PrepareRequest {"height": 1049, "view": 0} -2023-12-15T14:29:40.563Z INFO sending Commit {"height": 1049, "view": 0} -2023-12-15T14:29:40.563Z INFO approving block {"height": 1049, "hash": "4dcc58749a235b19ec99ef9331794e50e0a70057a75f5b5338f9613c5534d56d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ad553302474936da9f49c6e26002f6eda8cec2034fa4f6a0c7bc591b5e94f70"} -2023-12-15T14:29:40.565Z INFO initializing dbft {"height": 1050, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:40.566Z debug frostfs-node/morph.go:229 new block {"index": 1049} -2023-12-15T14:29:40.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1049, "blockHeight": 1049, "took": "4.228816ms"} -2023-12-15T14:29:41.564Z INFO sending PrepareRequest {"height": 1050, "view": 0} -2023-12-15T14:29:41.565Z INFO sending Commit {"height": 1050, "view": 0} -2023-12-15T14:29:41.565Z INFO approving block {"height": 1050, "hash": "5b28eacb06455a2f61cb7258bcad15a9111d584b5eeb38418bd7db60c0d35919", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4dcc58749a235b19ec99ef9331794e50e0a70057a75f5b5338f9613c5534d56d"} -2023-12-15T14:29:41.566Z INFO initializing dbft {"height": 1051, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:41.567Z debug frostfs-node/morph.go:229 new block {"index": 1050} -2023-12-15T14:29:41.605Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1050, "blockHeight": 1050, "took": "7.948771ms"} -2023-12-15T14:29:42.566Z INFO sending PrepareRequest {"height": 1051, "view": 0} -2023-12-15T14:29:42.567Z INFO sending Commit {"height": 1051, "view": 0} -2023-12-15T14:29:42.567Z INFO approving block {"height": 1051, "hash": "ac5972b59dd619f609ddd5be78e555b0902b4864c7a0fb12bbc458f1fcd59e44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b28eacb06455a2f61cb7258bcad15a9111d584b5eeb38418bd7db60c0d35919"} -2023-12-15T14:29:42.569Z INFO initializing dbft {"height": 1052, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:42.569Z debug frostfs-node/morph.go:229 new block {"index": 1051} -2023-12-15T14:29:42.604Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1051, "blockHeight": 1051, "took": "5.497744ms"} -2023-12-15T14:29:43.568Z INFO sending PrepareRequest {"height": 1052, "view": 0} -2023-12-15T14:29:43.569Z INFO sending Commit {"height": 1052, "view": 0} -2023-12-15T14:29:43.569Z INFO approving block {"height": 1052, "hash": "550981277f759255e3ab5f3ba5ad643573e1874c4b2b06b9220ef51021839c79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac5972b59dd619f609ddd5be78e555b0902b4864c7a0fb12bbc458f1fcd59e44"} -2023-12-15T14:29:43.571Z INFO initializing dbft {"height": 1053, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:43.572Z debug frostfs-node/morph.go:229 new block {"index": 1052} -2023-12-15T14:29:43.611Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1052, "blockHeight": 1052, "took": "11.259688ms"} -2023-12-15T14:29:44.571Z INFO sending PrepareRequest {"height": 1053, "view": 0} -2023-12-15T14:29:44.571Z INFO sending Commit {"height": 1053, "view": 0} -2023-12-15T14:29:44.573Z INFO approving block {"height": 1053, "hash": "c00891592b68158950cb54e74d933c59c3c1b86d75ea8d472b5238d4c8564362", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "550981277f759255e3ab5f3ba5ad643573e1874c4b2b06b9220ef51021839c79"} -2023-12-15T14:29:44.575Z INFO initializing dbft {"height": 1054, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:44.576Z debug frostfs-node/morph.go:229 new block {"index": 1053} -2023-12-15T14:29:44.609Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1053, "blockHeight": 1053, "took": "8.867347ms"} -2023-12-15T14:29:45.574Z INFO sending PrepareRequest {"height": 1054, "view": 0} -2023-12-15T14:29:45.574Z INFO sending Commit {"height": 1054, "view": 0} -2023-12-15T14:29:45.575Z INFO approving block {"height": 1054, "hash": "4e489b52be9a02f324a0f0a9ed2eb3d3429ed711b63adf72a6ba0458397060e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c00891592b68158950cb54e74d933c59c3c1b86d75ea8d472b5238d4c8564362"} -2023-12-15T14:29:45.577Z INFO initializing dbft {"height": 1055, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:45.578Z debug frostfs-node/morph.go:229 new block {"index": 1054} -2023-12-15T14:29:45.606Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1054, "blockHeight": 1054, "took": "4.631924ms"} -2023-12-15T14:29:46.577Z INFO sending PrepareRequest {"height": 1055, "view": 0} -2023-12-15T14:29:46.577Z INFO sending Commit {"height": 1055, "view": 0} -2023-12-15T14:29:46.578Z INFO approving block {"height": 1055, "hash": "0da5f4d8325e76037b3c4c79e5c0c4b2e9f1b7c371b8f9495087a8dc4cd33191", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e489b52be9a02f324a0f0a9ed2eb3d3429ed711b63adf72a6ba0458397060e6"} -2023-12-15T14:29:46.580Z INFO initializing dbft {"height": 1056, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:46.581Z debug frostfs-node/morph.go:229 new block {"index": 1055} -2023-12-15T14:29:46.609Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1055, "blockHeight": 1055, "took": "7.39422ms"} -2023-12-15T14:29:47.579Z INFO sending PrepareRequest {"height": 1056, "view": 0} -2023-12-15T14:29:47.579Z INFO sending Commit {"height": 1056, "view": 0} -2023-12-15T14:29:47.580Z INFO approving block {"height": 1056, "hash": "1e30e253b0ebf086558ef89febdabbb0f3a246ec482c44198da320c4bcc256a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0da5f4d8325e76037b3c4c79e5c0c4b2e9f1b7c371b8f9495087a8dc4cd33191"} -2023-12-15T14:29:47.581Z INFO initializing dbft {"height": 1057, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:47.582Z debug frostfs-node/morph.go:229 new block {"index": 1056} -2023-12-15T14:29:47.608Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1056, "blockHeight": 1056, "took": "4.962327ms"} -2023-12-15T14:29:48.581Z INFO sending PrepareRequest {"height": 1057, "view": 0} -2023-12-15T14:29:48.581Z INFO sending Commit {"height": 1057, "view": 0} -2023-12-15T14:29:48.581Z INFO approving block {"height": 1057, "hash": "652e5173e52e15680f16bab8f835a2c9da9215c88c216c51b04107211cf87d8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e30e253b0ebf086558ef89febdabbb0f3a246ec482c44198da320c4bcc256a0"} -2023-12-15T14:29:48.583Z INFO initializing dbft {"height": 1058, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:48.584Z debug frostfs-node/morph.go:229 new block {"index": 1057} -2023-12-15T14:29:48.608Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1057, "blockHeight": 1057, "took": "4.624424ms"} -2023-12-15T14:29:49.582Z INFO sending PrepareRequest {"height": 1058, "view": 0} -2023-12-15T14:29:49.583Z INFO sending Commit {"height": 1058, "view": 0} -2023-12-15T14:29:49.583Z INFO approving block {"height": 1058, "hash": "f8dcc445ed46788726e20022223a94cb9d0d0b11cf19b3a8650f257074bce105", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "652e5173e52e15680f16bab8f835a2c9da9215c88c216c51b04107211cf87d8a"} -2023-12-15T14:29:49.585Z INFO initializing dbft {"height": 1059, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:49.586Z debug frostfs-node/morph.go:229 new block {"index": 1058} -2023-12-15T14:29:49.615Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1058, "blockHeight": 1058, "took": "10.045518ms"} -2023-12-15T14:29:50.584Z INFO sending PrepareRequest {"height": 1059, "view": 0} -2023-12-15T14:29:50.584Z INFO sending Commit {"height": 1059, "view": 0} -2023-12-15T14:29:50.585Z INFO approving block {"height": 1059, "hash": "0f54a0b9623fb33d6880e0e8f2a71c48a2c1482814f3f7aacb2cc857832de7ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8dcc445ed46788726e20022223a94cb9d0d0b11cf19b3a8650f257074bce105"} -2023-12-15T14:29:50.587Z INFO initializing dbft {"height": 1060, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:50.587Z debug frostfs-node/morph.go:229 new block {"index": 1059} -2023-12-15T14:29:50.610Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1059, "blockHeight": 1059, "took": "4.381207ms"} -2023-12-15T14:29:51.586Z INFO sending PrepareRequest {"height": 1060, "view": 0} -2023-12-15T14:29:51.586Z INFO sending Commit {"height": 1060, "view": 0} -2023-12-15T14:29:51.587Z INFO approving block {"height": 1060, "hash": "9eb1550367ea6ee0d803ab13dffd2271f9a15b19bf18bbcc978766ddc65f88f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f54a0b9623fb33d6880e0e8f2a71c48a2c1482814f3f7aacb2cc857832de7ee"} -2023-12-15T14:29:51.589Z INFO initializing dbft {"height": 1061, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:51.590Z debug frostfs-node/morph.go:229 new block {"index": 1060} -2023-12-15T14:29:51.609Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1060, "blockHeight": 1060, "took": "2.896494ms"} -2023-12-15T14:29:52.588Z INFO sending PrepareRequest {"height": 1061, "view": 0} -2023-12-15T14:29:52.588Z INFO sending Commit {"height": 1061, "view": 0} -2023-12-15T14:29:52.589Z INFO approving block {"height": 1061, "hash": "52c5593e8b8a52ba0c3810b12619b5e7e970681cfdc68ec41423fee948b73a2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9eb1550367ea6ee0d803ab13dffd2271f9a15b19bf18bbcc978766ddc65f88f2"} -2023-12-15T14:29:52.591Z INFO initializing dbft {"height": 1062, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:52.592Z debug frostfs-node/morph.go:229 new block {"index": 1061} -2023-12-15T14:29:52.616Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1061, "blockHeight": 1061, "took": "8.695779ms"} -2023-12-15T14:29:53.590Z INFO sending PrepareRequest {"height": 1062, "view": 0} -2023-12-15T14:29:53.591Z INFO sending Commit {"height": 1062, "view": 0} -2023-12-15T14:29:53.591Z INFO approving block {"height": 1062, "hash": "08681289d5b95f75e7b554977cab79b3a0eda4aa8d3766b8fd79c7a0c6cbda42", "tx_count": 1, "merkle": "6f221774a6501271a986357b4743652497cecd6e744647130e659fb5a16c1ffc", "prev": "52c5593e8b8a52ba0c3810b12619b5e7e970681cfdc68ec41423fee948b73a2b"} -2023-12-15T14:29:53.593Z INFO initializing dbft {"height": 1063, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:53.594Z debug frostfs-node/morph.go:229 new block {"index": 1062} -2023-12-15T14:29:53.600Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T14:29:53.618Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 1062, "blockHeight": 1062, "took": "9.907368ms"} -2023-12-15T14:29:54.592Z INFO sending PrepareRequest {"height": 1063, "view": 0} -2023-12-15T14:29:54.593Z INFO sending Commit {"height": 1063, "view": 0} -2023-12-15T14:29:54.593Z INFO approving block {"height": 1063, "hash": "018e16d6aefc25e344addc9ed5053fd1c496d153c14b758b4c6f75cfedf0ecc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08681289d5b95f75e7b554977cab79b3a0eda4aa8d3766b8fd79c7a0c6cbda42"} -2023-12-15T14:29:54.595Z INFO initializing dbft {"height": 1064, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:54.596Z debug frostfs-node/morph.go:229 new block {"index": 1063} -2023-12-15T14:29:54.616Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1063, "blockHeight": 1063, "took": "6.962773ms"} -2023-12-15T14:29:55.595Z INFO sending PrepareRequest {"height": 1064, "view": 0} -2023-12-15T14:29:55.595Z INFO sending Commit {"height": 1064, "view": 0} -2023-12-15T14:29:55.596Z INFO approving block {"height": 1064, "hash": "9d22eb863b4eb341ca321e76db6f96b86f0378918dd0d1c13f958a6be29cd7e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "018e16d6aefc25e344addc9ed5053fd1c496d153c14b758b4c6f75cfedf0ecc5"} -2023-12-15T14:29:55.599Z INFO initializing dbft {"height": 1065, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:55.599Z debug frostfs-node/morph.go:229 new block {"index": 1064} -2023-12-15T14:29:55.617Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1064, "blockHeight": 1064, "took": "6.721154ms"} -2023-12-15T14:29:56.597Z INFO sending PrepareRequest {"height": 1065, "view": 0} -2023-12-15T14:29:56.598Z INFO sending Commit {"height": 1065, "view": 0} -2023-12-15T14:29:56.598Z INFO approving block {"height": 1065, "hash": "3208838e7338f906a9473ca0af3f538a2a5190c9ac366b8f2fc2065f4c037865", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d22eb863b4eb341ca321e76db6f96b86f0378918dd0d1c13f958a6be29cd7e6"} -2023-12-15T14:29:56.599Z INFO initializing dbft {"height": 1066, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:56.600Z debug frostfs-node/morph.go:229 new block {"index": 1065} -2023-12-15T14:29:56.618Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1065, "blockHeight": 1065, "took": "6.112432ms"} -2023-12-15T14:29:57.600Z INFO sending PrepareRequest {"height": 1066, "view": 0} -2023-12-15T14:29:57.600Z INFO sending Commit {"height": 1066, "view": 0} -2023-12-15T14:29:57.600Z INFO approving block {"height": 1066, "hash": "28904bbfe8d6ff66677bdff1885a2b36af897b66f073c05a3b9285e08362db6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3208838e7338f906a9473ca0af3f538a2a5190c9ac366b8f2fc2065f4c037865"} -2023-12-15T14:29:57.602Z INFO initializing dbft {"height": 1067, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:57.603Z debug frostfs-node/morph.go:229 new block {"index": 1066} -2023-12-15T14:29:57.617Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1066, "blockHeight": 1066, "took": "4.496431ms"} -2023-12-15T14:29:58.601Z INFO sending PrepareRequest {"height": 1067, "view": 0} -2023-12-15T14:29:58.602Z INFO sending Commit {"height": 1067, "view": 0} -2023-12-15T14:29:58.602Z INFO approving block {"height": 1067, "hash": "7227160172e7ea9f700f24469247ac4cec394f1e1c21c49ba68852ba31302879", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28904bbfe8d6ff66677bdff1885a2b36af897b66f073c05a3b9285e08362db6b"} -2023-12-15T14:29:58.604Z INFO initializing dbft {"height": 1068, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:58.604Z debug frostfs-node/morph.go:229 new block {"index": 1067} -2023-12-15T14:29:58.608Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:29:58.612Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:29:58.613Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:29:58.619Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1067, "blockHeight": 1067, "took": "6.259422ms"} -2023-12-15T14:29:59.603Z INFO sending PrepareRequest {"height": 1068, "view": 0} -2023-12-15T14:29:59.603Z INFO sending Commit {"height": 1068, "view": 0} -2023-12-15T14:29:59.604Z INFO approving block {"height": 1068, "hash": "b67d79742d22d5aaf037e876c121268ac3c08b87c9ad654f051c19651daad021", "tx_count": 2, "merkle": "331ea548619004333e1e23a63405ba21e27f65f8ee5f7c98d5363856a5f48346", "prev": "7227160172e7ea9f700f24469247ac4cec394f1e1c21c49ba68852ba31302879"} -2023-12-15T14:29:59.605Z INFO runtime log {"tx": "336f7d1246eb99a116dd085e0fedb6b9d5aec346e168a6c99dda079aa357dd6e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:29:59.606Z INFO runtime log {"tx": "336f7d1246eb99a116dd085e0fedb6b9d5aec346e168a6c99dda079aa357dd6e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:29:59.607Z INFO initializing dbft {"height": 1069, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:29:59.608Z debug frostfs-node/morph.go:229 new block {"index": 1068} -2023-12-15T14:29:59.621Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1068, "blockHeight": 1068, "took": "7.415466ms"} -2023-12-15T14:30:00.605Z INFO sending PrepareRequest {"height": 1069, "view": 0} -2023-12-15T14:30:00.605Z INFO sending Commit {"height": 1069, "view": 0} -2023-12-15T14:30:00.606Z INFO approving block {"height": 1069, "hash": "0f16d64bfc563c67baebd113dadb6dad562f656750e9ac87e5fa54fc2c0dfb80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b67d79742d22d5aaf037e876c121268ac3c08b87c9ad654f051c19651daad021"} -2023-12-15T14:30:00.607Z INFO initializing dbft {"height": 1070, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:00.608Z debug frostfs-node/morph.go:229 new block {"index": 1069} -2023-12-15T14:30:00.620Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1069, "blockHeight": 1069, "took": "5.459784ms"} -2023-12-15T14:30:01.607Z INFO sending PrepareRequest {"height": 1070, "view": 0} -2023-12-15T14:30:01.607Z INFO sending Commit {"height": 1070, "view": 0} -2023-12-15T14:30:01.607Z INFO approving block {"height": 1070, "hash": "d8c7ea45555c8578b6514304411e006d94a845fe1a641253bac13e3095537fd2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f16d64bfc563c67baebd113dadb6dad562f656750e9ac87e5fa54fc2c0dfb80"} -2023-12-15T14:30:01.609Z INFO initializing dbft {"height": 1071, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:01.610Z debug frostfs-node/morph.go:229 new block {"index": 1070} -2023-12-15T14:30:01.620Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1070, "blockHeight": 1070, "took": "3.74513ms"} -2023-12-15T14:30:02.609Z INFO sending PrepareRequest {"height": 1071, "view": 0} -2023-12-15T14:30:02.609Z INFO sending Commit {"height": 1071, "view": 0} -2023-12-15T14:30:02.609Z INFO approving block {"height": 1071, "hash": "cddabe86d7536401e26bd853222c2626b096f1cba64c043b6b268ac46e221a1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8c7ea45555c8578b6514304411e006d94a845fe1a641253bac13e3095537fd2"} -2023-12-15T14:30:02.610Z INFO initializing dbft {"height": 1072, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:02.611Z debug frostfs-node/morph.go:229 new block {"index": 1071} -2023-12-15T14:30:02.620Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1071, "blockHeight": 1071, "took": "3.395409ms"} -2023-12-15T14:30:03.610Z INFO sending PrepareRequest {"height": 1072, "view": 0} -2023-12-15T14:30:03.610Z INFO sending Commit {"height": 1072, "view": 0} -2023-12-15T14:30:03.610Z INFO approving block {"height": 1072, "hash": "2aad8796d77ef252a2786c6127a3f1686ea13f48b03798bfdaf8ab0bf6576039", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cddabe86d7536401e26bd853222c2626b096f1cba64c043b6b268ac46e221a1d"} -2023-12-15T14:30:03.611Z INFO initializing dbft {"height": 1073, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:03.611Z debug frostfs-node/morph.go:229 new block {"index": 1072} -2023-12-15T14:30:03.619Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1072, "blockHeight": 1072, "took": "2.638467ms"} -2023-12-15T14:30:04.611Z INFO sending PrepareRequest {"height": 1073, "view": 0} -2023-12-15T14:30:04.611Z INFO sending Commit {"height": 1073, "view": 0} -2023-12-15T14:30:04.612Z INFO approving block {"height": 1073, "hash": "228cc9cd44db0d4ae4f945264af820b4e68338c371a6ef97e12001de01699426", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2aad8796d77ef252a2786c6127a3f1686ea13f48b03798bfdaf8ab0bf6576039"} -2023-12-15T14:30:04.613Z INFO initializing dbft {"height": 1074, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:04.613Z debug frostfs-node/morph.go:229 new block {"index": 1073} -2023-12-15T14:30:04.620Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1073, "blockHeight": 1073, "took": "3.255485ms"} -2023-12-15T14:30:05.613Z INFO sending PrepareRequest {"height": 1074, "view": 0} -2023-12-15T14:30:05.613Z INFO sending Commit {"height": 1074, "view": 0} -2023-12-15T14:30:05.613Z INFO approving block {"height": 1074, "hash": "b05f3591dd4f643e878a7715149c42ad3ff4c17cab03c6e23ca02637faeba456", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "228cc9cd44db0d4ae4f945264af820b4e68338c371a6ef97e12001de01699426"} -2023-12-15T14:30:05.614Z INFO initializing dbft {"height": 1075, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:05.615Z debug frostfs-node/morph.go:229 new block {"index": 1074} -2023-12-15T14:30:05.621Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1074, "blockHeight": 1074, "took": "3.358416ms"} -2023-12-15T14:30:06.614Z INFO sending PrepareRequest {"height": 1075, "view": 0} -2023-12-15T14:30:06.614Z INFO sending Commit {"height": 1075, "view": 0} -2023-12-15T14:30:06.615Z INFO approving block {"height": 1075, "hash": "572945da6fbc7a357f241f974aa32d01c812365ed71bee4d9c6ba6db03bb3928", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b05f3591dd4f643e878a7715149c42ad3ff4c17cab03c6e23ca02637faeba456"} -2023-12-15T14:30:06.616Z INFO initializing dbft {"height": 1076, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:06.616Z debug frostfs-node/morph.go:229 new block {"index": 1075} -2023-12-15T14:30:06.623Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1075, "blockHeight": 1075, "took": "3.978233ms"} -2023-12-15T14:30:07.615Z INFO sending PrepareRequest {"height": 1076, "view": 0} -2023-12-15T14:30:07.616Z INFO sending Commit {"height": 1076, "view": 0} -2023-12-15T14:30:07.616Z INFO approving block {"height": 1076, "hash": "bfb481a9f4897aee8a07b9081140394ccaf0c33ca2fecae27924f7743defa038", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "572945da6fbc7a357f241f974aa32d01c812365ed71bee4d9c6ba6db03bb3928"} -2023-12-15T14:30:07.617Z INFO initializing dbft {"height": 1077, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:07.618Z debug frostfs-node/morph.go:229 new block {"index": 1076} -2023-12-15T14:30:07.623Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1076, "blockHeight": 1076, "took": "3.822814ms"} -2023-12-15T14:30:08.617Z INFO sending PrepareRequest {"height": 1077, "view": 0} -2023-12-15T14:30:08.617Z INFO sending Commit {"height": 1077, "view": 0} -2023-12-15T14:30:08.617Z INFO approving block {"height": 1077, "hash": "aaa15fd3b92fdeaae1c682d0358db79e72a51036e3e8482575678d08a3229031", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfb481a9f4897aee8a07b9081140394ccaf0c33ca2fecae27924f7743defa038"} -2023-12-15T14:30:08.618Z INFO initializing dbft {"height": 1078, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:08.618Z debug frostfs-node/morph.go:229 new block {"index": 1077} -2023-12-15T14:30:08.624Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1077, "blockHeight": 1077, "took": "3.140485ms"} -2023-12-15T14:30:09.619Z INFO sending PrepareRequest {"height": 1078, "view": 0} -2023-12-15T14:30:09.619Z INFO sending Commit {"height": 1078, "view": 0} -2023-12-15T14:30:09.619Z INFO approving block {"height": 1078, "hash": "c0c4cd689556ce3f9ea0d7a6b07fa3c9cd6466e2743afda362775660afa79010", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aaa15fd3b92fdeaae1c682d0358db79e72a51036e3e8482575678d08a3229031"} -2023-12-15T14:30:09.620Z INFO initializing dbft {"height": 1079, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:09.621Z debug frostfs-node/morph.go:229 new block {"index": 1078} -2023-12-15T14:30:09.625Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1078, "blockHeight": 1078, "took": "3.139822ms"} -2023-12-15T14:30:10.620Z INFO sending PrepareRequest {"height": 1079, "view": 0} -2023-12-15T14:30:10.620Z INFO sending Commit {"height": 1079, "view": 0} -2023-12-15T14:30:10.621Z INFO approving block {"height": 1079, "hash": "7bea5d7319d2a1e4b6d5d88a4cbc80d7a3124405c16cfb4e0bff9b87791e2b4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0c4cd689556ce3f9ea0d7a6b07fa3c9cd6466e2743afda362775660afa79010"} -2023-12-15T14:30:10.621Z INFO initializing dbft {"height": 1080, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:10.622Z debug frostfs-node/morph.go:229 new block {"index": 1079} -2023-12-15T14:30:10.625Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1079, "blockHeight": 1079, "took": "3.239791ms"} -2023-12-15T14:30:11.622Z INFO sending PrepareRequest {"height": 1080, "view": 0} -2023-12-15T14:30:11.622Z INFO sending Commit {"height": 1080, "view": 0} -2023-12-15T14:30:11.622Z INFO approving block {"height": 1080, "hash": "5aa674641214dc88e1d0828d1984f88cb784fb736b273c180b25dfc3278bab48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bea5d7319d2a1e4b6d5d88a4cbc80d7a3124405c16cfb4e0bff9b87791e2b4b"} -2023-12-15T14:30:11.623Z INFO initializing dbft {"height": 1081, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:11.624Z debug frostfs-node/morph.go:229 new block {"index": 1080} -2023-12-15T14:30:12.623Z INFO sending PrepareRequest {"height": 1081, "view": 0} -2023-12-15T14:30:12.624Z INFO sending Commit {"height": 1081, "view": 0} -2023-12-15T14:30:12.624Z INFO approving block {"height": 1081, "hash": "024567524761386ace13f4913d3f1d53b3193454623256b4063901a01ce019a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aa674641214dc88e1d0828d1984f88cb784fb736b273c180b25dfc3278bab48"} -2023-12-15T14:30:12.625Z INFO initializing dbft {"height": 1082, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:12.626Z debug frostfs-node/morph.go:229 new block {"index": 1081} -2023-12-15T14:30:12.627Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1080, "blockHeight": 1080, "took": "4.372152ms"} -2023-12-15T14:30:13.625Z INFO sending PrepareRequest {"height": 1082, "view": 0} -2023-12-15T14:30:13.625Z INFO sending Commit {"height": 1082, "view": 0} -2023-12-15T14:30:13.626Z INFO approving block {"height": 1082, "hash": "6a9955bf78bb300d964ae9babf1093507cc00aa0f9bc61a2df8e1e5259149b8c", "tx_count": 1, "merkle": "8fa6673ebbd6d0eef3691417272bf6edbe6336bbf8d5b5507d2223f3716d8d84", "prev": "024567524761386ace13f4913d3f1d53b3193454623256b4063901a01ce019a9"} -2023-12-15T14:30:13.628Z INFO initializing dbft {"height": 1083, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:13.628Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1081, "blockHeight": 1081, "took": "4.520362ms"} -2023-12-15T14:30:13.629Z debug frostfs-node/morph.go:229 new block {"index": 1082} -2023-12-15T14:30:14.627Z INFO sending PrepareRequest {"height": 1083, "view": 0} -2023-12-15T14:30:14.627Z INFO sending Commit {"height": 1083, "view": 0} -2023-12-15T14:30:14.627Z INFO approving block {"height": 1083, "hash": "0948b699fcb0a8d6ff4633d5f1af009554ae84f724d4d2f15355ec015b6a099f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a9955bf78bb300d964ae9babf1093507cc00aa0f9bc61a2df8e1e5259149b8c"} -2023-12-15T14:30:14.628Z INFO initializing dbft {"height": 1084, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:14.628Z debug frostfs-node/morph.go:229 new block {"index": 1083} -2023-12-15T14:30:14.630Z INFO persisted to disk {"blocks": 1, "keys": 55, "headerHeight": 1082, "blockHeight": 1082, "took": "5.87904ms"} -2023-12-15T14:30:14.631Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 5, "iteration": 1, "error": "no data for 0 iteration in 5 epoch for consumers's trusts"} -2023-12-15T14:30:15.628Z INFO sending PrepareRequest {"height": 1084, "view": 0} -2023-12-15T14:30:15.628Z INFO sending Commit {"height": 1084, "view": 0} -2023-12-15T14:30:15.629Z INFO approving block {"height": 1084, "hash": "1ef6ce9452792c97164a222539c0fe0f12317a35d01da940fbe36d6b955077df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0948b699fcb0a8d6ff4633d5f1af009554ae84f724d4d2f15355ec015b6a099f"} -2023-12-15T14:30:15.629Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1083, "blockHeight": 1083, "took": "4.337438ms"} -2023-12-15T14:30:15.630Z INFO initializing dbft {"height": 1085, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:15.631Z debug frostfs-node/morph.go:229 new block {"index": 1084} -2023-12-15T14:30:15.635Z info settlement/calls.go:61 start basic income collection {"epoch": 5} -2023-12-15T14:30:16.630Z INFO sending PrepareRequest {"height": 1085, "view": 0} -2023-12-15T14:30:16.630Z INFO sending Commit {"height": 1085, "view": 0} -2023-12-15T14:30:16.630Z INFO approving block {"height": 1085, "hash": "85b7a76f6b6e5bd140584feaabb010f568ea2f86ccb8ee2c3353251afbdcbbd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ef6ce9452792c97164a222539c0fe0f12317a35d01da940fbe36d6b955077df"} -2023-12-15T14:30:16.631Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1084, "blockHeight": 1084, "took": "5.12245ms"} -2023-12-15T14:30:16.631Z INFO initializing dbft {"height": 1086, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:16.631Z debug frostfs-node/morph.go:229 new block {"index": 1085} -2023-12-15T14:30:17.629Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1085, "blockHeight": 1085, "took": "2.653168ms"} -2023-12-15T14:30:17.631Z INFO sending PrepareRequest {"height": 1086, "view": 0} -2023-12-15T14:30:17.631Z INFO sending Commit {"height": 1086, "view": 0} -2023-12-15T14:30:17.631Z INFO approving block {"height": 1086, "hash": "1d01b80074051e1000816cb0f4bc0f832150fbf23a8912c99b627904c6570a8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85b7a76f6b6e5bd140584feaabb010f568ea2f86ccb8ee2c3353251afbdcbbd5"} -2023-12-15T14:30:17.633Z INFO initializing dbft {"height": 1087, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:17.633Z debug frostfs-node/morph.go:229 new block {"index": 1086} -2023-12-15T14:30:18.630Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1086, "blockHeight": 1086, "took": "3.590445ms"} -2023-12-15T14:30:18.632Z INFO sending PrepareRequest {"height": 1087, "view": 0} -2023-12-15T14:30:18.633Z INFO sending Commit {"height": 1087, "view": 0} -2023-12-15T14:30:18.633Z INFO approving block {"height": 1087, "hash": "5f74f8dca874af9532bef1d9dd4be3148fe8cbc84e0a0cfc03c60c1a61a8c2db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d01b80074051e1000816cb0f4bc0f832150fbf23a8912c99b627904c6570a8b"} -2023-12-15T14:30:18.634Z INFO initializing dbft {"height": 1088, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:18.635Z debug frostfs-node/morph.go:229 new block {"index": 1087} -2023-12-15T14:30:19.630Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1087, "blockHeight": 1087, "took": "3.145642ms"} -2023-12-15T14:30:19.634Z INFO sending PrepareRequest {"height": 1088, "view": 0} -2023-12-15T14:30:19.634Z INFO sending Commit {"height": 1088, "view": 0} -2023-12-15T14:30:19.634Z INFO approving block {"height": 1088, "hash": "7aea451c7218d1563d737df556ad564fb5dd67f63ceed3ac2d3bd12facd09a8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f74f8dca874af9532bef1d9dd4be3148fe8cbc84e0a0cfc03c60c1a61a8c2db"} -2023-12-15T14:30:19.635Z INFO initializing dbft {"height": 1089, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:19.636Z debug frostfs-node/morph.go:229 new block {"index": 1088} -2023-12-15T14:30:20.630Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1088, "blockHeight": 1088, "took": "2.670567ms"} -2023-12-15T14:30:20.635Z INFO sending PrepareRequest {"height": 1089, "view": 0} -2023-12-15T14:30:20.635Z INFO sending Commit {"height": 1089, "view": 0} -2023-12-15T14:30:20.636Z INFO approving block {"height": 1089, "hash": "9719ef4b455665316136b746f4a6299b2a0a97d98c126de9e366f96587364a61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7aea451c7218d1563d737df556ad564fb5dd67f63ceed3ac2d3bd12facd09a8e"} -2023-12-15T14:30:20.637Z INFO initializing dbft {"height": 1090, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:20.637Z debug frostfs-node/morph.go:229 new block {"index": 1089} -2023-12-15T14:30:21.632Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1089, "blockHeight": 1089, "took": "4.055928ms"} -2023-12-15T14:30:21.637Z INFO sending PrepareRequest {"height": 1090, "view": 0} -2023-12-15T14:30:21.637Z INFO sending Commit {"height": 1090, "view": 0} -2023-12-15T14:30:21.638Z INFO approving block {"height": 1090, "hash": "0cfcf45c5e8c696bc31c246580a3a099e1f8724c56795e5876ba7591ec30790b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9719ef4b455665316136b746f4a6299b2a0a97d98c126de9e366f96587364a61"} -2023-12-15T14:30:21.639Z INFO initializing dbft {"height": 1091, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:21.639Z debug frostfs-node/morph.go:229 new block {"index": 1090} -2023-12-15T14:30:22.632Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1090, "blockHeight": 1090, "took": "2.759047ms"} -2023-12-15T14:30:22.639Z INFO sending PrepareRequest {"height": 1091, "view": 0} -2023-12-15T14:30:22.639Z INFO sending Commit {"height": 1091, "view": 0} -2023-12-15T14:30:22.639Z INFO approving block {"height": 1091, "hash": "4fb4f46780483c3f89ba865b34248dde38753980d2d7bef7498e83f10b41f87a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cfcf45c5e8c696bc31c246580a3a099e1f8724c56795e5876ba7591ec30790b"} -2023-12-15T14:30:22.640Z INFO initializing dbft {"height": 1092, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:22.640Z debug frostfs-node/morph.go:229 new block {"index": 1091} -2023-12-15T14:30:23.632Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1091, "blockHeight": 1091, "took": "2.699959ms"} -2023-12-15T14:30:23.640Z INFO sending PrepareRequest {"height": 1092, "view": 0} -2023-12-15T14:30:23.640Z INFO sending Commit {"height": 1092, "view": 0} -2023-12-15T14:30:23.641Z INFO approving block {"height": 1092, "hash": "01343766203d4a22b7118e9892b57da6c142113cbcfb7399409e4ae7ba9811b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fb4f46780483c3f89ba865b34248dde38753980d2d7bef7498e83f10b41f87a"} -2023-12-15T14:30:23.642Z INFO initializing dbft {"height": 1093, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:23.642Z debug frostfs-node/morph.go:229 new block {"index": 1092} -2023-12-15T14:30:24.634Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1092, "blockHeight": 1092, "took": "3.928181ms"} -2023-12-15T14:30:24.642Z INFO sending PrepareRequest {"height": 1093, "view": 0} -2023-12-15T14:30:24.642Z INFO sending Commit {"height": 1093, "view": 0} -2023-12-15T14:30:24.642Z INFO approving block {"height": 1093, "hash": "e7753067ea47f3a29f9a15df728afd4676ba1bf2ae8bc0d8d720b3da7559edd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01343766203d4a22b7118e9892b57da6c142113cbcfb7399409e4ae7ba9811b0"} -2023-12-15T14:30:24.644Z INFO initializing dbft {"height": 1094, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:24.644Z debug frostfs-node/morph.go:229 new block {"index": 1093} -2023-12-15T14:30:25.636Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1093, "blockHeight": 1093, "took": "4.890736ms"} -2023-12-15T14:30:25.643Z INFO sending PrepareRequest {"height": 1094, "view": 0} -2023-12-15T14:30:25.644Z INFO sending Commit {"height": 1094, "view": 0} -2023-12-15T14:30:25.644Z INFO approving block {"height": 1094, "hash": "0a5fd7775b9cb97261071c5f6fef47b7b0617555c54d54083a7fced37e468743", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7753067ea47f3a29f9a15df728afd4676ba1bf2ae8bc0d8d720b3da7559edd0"} -2023-12-15T14:30:25.645Z INFO initializing dbft {"height": 1095, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:25.646Z debug frostfs-node/morph.go:229 new block {"index": 1094} -2023-12-15T14:30:26.634Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1094, "blockHeight": 1094, "took": "3.509659ms"} -2023-12-15T14:30:26.644Z INFO sending PrepareRequest {"height": 1095, "view": 0} -2023-12-15T14:30:26.645Z INFO sending Commit {"height": 1095, "view": 0} -2023-12-15T14:30:26.645Z INFO approving block {"height": 1095, "hash": "94824125a1f761c20f180ebf3e65ef3d865257362d8b52ce9dfe0e3a5adbb31f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a5fd7775b9cb97261071c5f6fef47b7b0617555c54d54083a7fced37e468743"} -2023-12-15T14:30:26.646Z INFO initializing dbft {"height": 1096, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:26.647Z debug frostfs-node/morph.go:229 new block {"index": 1095} -2023-12-15T14:30:27.636Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1095, "blockHeight": 1095, "took": "4.133844ms"} -2023-12-15T14:30:27.646Z INFO sending PrepareRequest {"height": 1096, "view": 0} -2023-12-15T14:30:27.647Z INFO sending Commit {"height": 1096, "view": 0} -2023-12-15T14:30:27.647Z INFO approving block {"height": 1096, "hash": "c3cad167bfd28ae0e3db678d75f82a5c88bd6d090d47466732a6f7edfb3524b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94824125a1f761c20f180ebf3e65ef3d865257362d8b52ce9dfe0e3a5adbb31f"} -2023-12-15T14:30:27.648Z INFO initializing dbft {"height": 1097, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:27.649Z debug frostfs-node/morph.go:229 new block {"index": 1096} -2023-12-15T14:30:28.636Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1096, "blockHeight": 1096, "took": "3.801121ms"} -2023-12-15T14:30:28.648Z INFO sending PrepareRequest {"height": 1097, "view": 0} -2023-12-15T14:30:28.648Z INFO sending Commit {"height": 1097, "view": 0} -2023-12-15T14:30:28.648Z INFO approving block {"height": 1097, "hash": "d3c8c86506b363149230d4a60033b26e7a2fa323afa97dbf33e5a8b6d5569913", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3cad167bfd28ae0e3db678d75f82a5c88bd6d090d47466732a6f7edfb3524b6"} -2023-12-15T14:30:28.649Z INFO initializing dbft {"height": 1098, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:28.649Z debug frostfs-node/morph.go:229 new block {"index": 1097} -2023-12-15T14:30:29.637Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1097, "blockHeight": 1097, "took": "3.908824ms"} -2023-12-15T14:30:29.650Z INFO sending PrepareRequest {"height": 1098, "view": 0} -2023-12-15T14:30:29.650Z INFO sending Commit {"height": 1098, "view": 0} -2023-12-15T14:30:29.650Z INFO approving block {"height": 1098, "hash": "7c1d8cc30411576685f165e4b96d10ff0405a9921d8ddf6b08efe1a32abd8109", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3c8c86506b363149230d4a60033b26e7a2fa323afa97dbf33e5a8b6d5569913"} -2023-12-15T14:30:29.652Z INFO initializing dbft {"height": 1099, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:29.652Z debug frostfs-node/morph.go:229 new block {"index": 1098} -2023-12-15T14:30:30.639Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1098, "blockHeight": 1098, "took": "4.917543ms"} -2023-12-15T14:30:30.651Z INFO sending PrepareRequest {"height": 1099, "view": 0} -2023-12-15T14:30:30.652Z INFO sending Commit {"height": 1099, "view": 0} -2023-12-15T14:30:30.652Z INFO approving block {"height": 1099, "hash": "49380e4ba0ac49d9e06d2539de81afc8717c2c57d2e328f44c94ffa51f5307f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c1d8cc30411576685f165e4b96d10ff0405a9921d8ddf6b08efe1a32abd8109"} -2023-12-15T14:30:30.653Z INFO initializing dbft {"height": 1100, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:30.654Z debug frostfs-node/morph.go:229 new block {"index": 1099} -2023-12-15T14:30:31.638Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1099, "blockHeight": 1099, "took": "3.635436ms"} -2023-12-15T14:30:31.653Z INFO sending PrepareRequest {"height": 1100, "view": 0} -2023-12-15T14:30:31.653Z INFO sending Commit {"height": 1100, "view": 0} -2023-12-15T14:30:31.653Z INFO approving block {"height": 1100, "hash": "9f9c94da6e44a1248a4b6005d731a16a22c66829b42affdd3d4cf89bcd43fd51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49380e4ba0ac49d9e06d2539de81afc8717c2c57d2e328f44c94ffa51f5307f2"} -2023-12-15T14:30:31.654Z INFO initializing dbft {"height": 1101, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:31.654Z debug frostfs-node/morph.go:229 new block {"index": 1100} -2023-12-15T14:30:32.638Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1100, "blockHeight": 1100, "took": "2.948709ms"} -2023-12-15T14:30:32.654Z INFO sending PrepareRequest {"height": 1101, "view": 0} -2023-12-15T14:30:32.655Z INFO sending Commit {"height": 1101, "view": 0} -2023-12-15T14:30:32.655Z INFO approving block {"height": 1101, "hash": "20eb6bb1e6a574c3341f9a8e94acf3b659f773809a39960de38b873b16302287", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f9c94da6e44a1248a4b6005d731a16a22c66829b42affdd3d4cf89bcd43fd51"} -2023-12-15T14:30:32.656Z INFO initializing dbft {"height": 1102, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:32.657Z debug frostfs-node/morph.go:229 new block {"index": 1101} -2023-12-15T14:30:33.638Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1101, "blockHeight": 1101, "took": "3.244725ms"} -2023-12-15T14:30:33.656Z INFO sending PrepareRequest {"height": 1102, "view": 0} -2023-12-15T14:30:33.656Z INFO sending Commit {"height": 1102, "view": 0} -2023-12-15T14:30:33.656Z INFO approving block {"height": 1102, "hash": "fbd9c9a60ff829c1cf5cd5438ae8a097fe140dbf44078c878742057f03481623", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20eb6bb1e6a574c3341f9a8e94acf3b659f773809a39960de38b873b16302287"} -2023-12-15T14:30:33.658Z INFO initializing dbft {"height": 1103, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:33.658Z debug frostfs-node/morph.go:229 new block {"index": 1102} -2023-12-15T14:30:34.641Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1102, "blockHeight": 1102, "took": "4.984013ms"} -2023-12-15T14:30:34.658Z INFO sending PrepareRequest {"height": 1103, "view": 0} -2023-12-15T14:30:34.658Z INFO sending Commit {"height": 1103, "view": 0} -2023-12-15T14:30:34.658Z INFO approving block {"height": 1103, "hash": "a948c17a8ba31b1d8e0ffe40a1973b69cd670550fd500e23c9b5a778f2b046ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbd9c9a60ff829c1cf5cd5438ae8a097fe140dbf44078c878742057f03481623"} -2023-12-15T14:30:34.659Z INFO initializing dbft {"height": 1104, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:34.660Z debug frostfs-node/morph.go:229 new block {"index": 1103} -2023-12-15T14:30:35.639Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1103, "blockHeight": 1103, "took": "2.745647ms"} -2023-12-15T14:30:35.659Z INFO sending PrepareRequest {"height": 1104, "view": 0} -2023-12-15T14:30:35.659Z INFO sending Commit {"height": 1104, "view": 0} -2023-12-15T14:30:35.660Z INFO approving block {"height": 1104, "hash": "8f85f944a991991678f402f38cb9150db656fd7d41fa6955c1c72634a48d5ab6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a948c17a8ba31b1d8e0ffe40a1973b69cd670550fd500e23c9b5a778f2b046ab"} -2023-12-15T14:30:35.661Z INFO initializing dbft {"height": 1105, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:35.662Z debug frostfs-node/morph.go:229 new block {"index": 1104} -2023-12-15T14:30:36.641Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1104, "blockHeight": 1104, "took": "3.873263ms"} -2023-12-15T14:30:36.661Z INFO sending PrepareRequest {"height": 1105, "view": 0} -2023-12-15T14:30:36.661Z INFO sending Commit {"height": 1105, "view": 0} -2023-12-15T14:30:36.661Z INFO approving block {"height": 1105, "hash": "98200ce9be04aba01f64cde6ed96adf01a7cb16de204fc8f385cb19f5432df83", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f85f944a991991678f402f38cb9150db656fd7d41fa6955c1c72634a48d5ab6"} -2023-12-15T14:30:36.662Z INFO initializing dbft {"height": 1106, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:36.663Z debug frostfs-node/morph.go:229 new block {"index": 1105} -2023-12-15T14:30:37.641Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1105, "blockHeight": 1105, "took": "3.970172ms"} -2023-12-15T14:30:37.663Z INFO sending PrepareRequest {"height": 1106, "view": 0} -2023-12-15T14:30:37.663Z INFO sending Commit {"height": 1106, "view": 0} -2023-12-15T14:30:37.663Z INFO approving block {"height": 1106, "hash": "f532831ffaf0f8ae84d3a7ac6ee456fa9cd52625dbea4c073ab9004ec2c36920", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98200ce9be04aba01f64cde6ed96adf01a7cb16de204fc8f385cb19f5432df83"} -2023-12-15T14:30:37.664Z INFO initializing dbft {"height": 1107, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:37.665Z debug frostfs-node/morph.go:229 new block {"index": 1106} -2023-12-15T14:30:38.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1106, "blockHeight": 1106, "took": "6.027113ms"} -2023-12-15T14:30:38.664Z INFO sending PrepareRequest {"height": 1107, "view": 0} -2023-12-15T14:30:38.664Z INFO sending Commit {"height": 1107, "view": 0} -2023-12-15T14:30:38.665Z INFO approving block {"height": 1107, "hash": "f25deb18ab61b100b3757c1a70e06e2c9cfb86af91efa172a6a59e4487525334", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f532831ffaf0f8ae84d3a7ac6ee456fa9cd52625dbea4c073ab9004ec2c36920"} -2023-12-15T14:30:38.666Z INFO initializing dbft {"height": 1108, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:38.666Z debug frostfs-node/morph.go:229 new block {"index": 1107} -2023-12-15T14:30:39.642Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1107, "blockHeight": 1107, "took": "3.042672ms"} -2023-12-15T14:30:39.666Z INFO sending PrepareRequest {"height": 1108, "view": 0} -2023-12-15T14:30:39.666Z INFO sending Commit {"height": 1108, "view": 0} -2023-12-15T14:30:39.666Z INFO approving block {"height": 1108, "hash": "dab13d99bdb1d0c139a25c212b82bc047d3ac7f4fb97650e2cbcbc2a2bb11afe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f25deb18ab61b100b3757c1a70e06e2c9cfb86af91efa172a6a59e4487525334"} -2023-12-15T14:30:39.667Z INFO initializing dbft {"height": 1109, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:39.668Z debug frostfs-node/morph.go:229 new block {"index": 1108} -2023-12-15T14:30:40.643Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1108, "blockHeight": 1108, "took": "3.497322ms"} -2023-12-15T14:30:40.668Z INFO sending PrepareRequest {"height": 1109, "view": 0} -2023-12-15T14:30:40.668Z INFO sending Commit {"height": 1109, "view": 0} -2023-12-15T14:30:40.669Z INFO approving block {"height": 1109, "hash": "a294835c36aec5d24037aeb74504868814735313befa6f4967f80c70f2ff9751", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dab13d99bdb1d0c139a25c212b82bc047d3ac7f4fb97650e2cbcbc2a2bb11afe"} -2023-12-15T14:30:40.670Z INFO initializing dbft {"height": 1110, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:40.671Z debug frostfs-node/morph.go:229 new block {"index": 1109} -2023-12-15T14:30:41.648Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1109, "blockHeight": 1109, "took": "7.211427ms"} -2023-12-15T14:30:41.669Z INFO sending PrepareRequest {"height": 1110, "view": 0} -2023-12-15T14:30:41.669Z INFO sending Commit {"height": 1110, "view": 0} -2023-12-15T14:30:41.670Z INFO approving block {"height": 1110, "hash": "34989bc20969d0a8e1a9815b7ce5af89528e0f3d0e565f44539b2b991f3f360c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a294835c36aec5d24037aeb74504868814735313befa6f4967f80c70f2ff9751"} -2023-12-15T14:30:41.671Z INFO initializing dbft {"height": 1111, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:41.672Z debug frostfs-node/morph.go:229 new block {"index": 1110} -2023-12-15T14:30:42.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1110, "blockHeight": 1110, "took": "3.219897ms"} -2023-12-15T14:30:42.671Z INFO sending PrepareRequest {"height": 1111, "view": 0} -2023-12-15T14:30:42.671Z INFO sending Commit {"height": 1111, "view": 0} -2023-12-15T14:30:42.671Z INFO approving block {"height": 1111, "hash": "25d2b5fec148ad26a89dcec543666eb0333d940d2539109f8cdc649d48ab4938", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34989bc20969d0a8e1a9815b7ce5af89528e0f3d0e565f44539b2b991f3f360c"} -2023-12-15T14:30:42.672Z INFO initializing dbft {"height": 1112, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:42.672Z debug frostfs-node/morph.go:229 new block {"index": 1111} -2023-12-15T14:30:43.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1111, "blockHeight": 1111, "took": "2.843179ms"} -2023-12-15T14:30:43.672Z INFO sending PrepareRequest {"height": 1112, "view": 0} -2023-12-15T14:30:43.672Z INFO sending Commit {"height": 1112, "view": 0} -2023-12-15T14:30:43.673Z INFO approving block {"height": 1112, "hash": "79db1a978cd2bd4aabfbc9c8780acc6c5080df34cc0b42d11ba4e6e58ff22f06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25d2b5fec148ad26a89dcec543666eb0333d940d2539109f8cdc649d48ab4938"} -2023-12-15T14:30:43.673Z INFO initializing dbft {"height": 1113, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:43.674Z debug frostfs-node/morph.go:229 new block {"index": 1112} -2023-12-15T14:30:44.649Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1112, "blockHeight": 1112, "took": "6.436001ms"} -2023-12-15T14:30:44.674Z INFO sending PrepareRequest {"height": 1113, "view": 0} -2023-12-15T14:30:44.674Z INFO sending Commit {"height": 1113, "view": 0} -2023-12-15T14:30:44.674Z INFO approving block {"height": 1113, "hash": "0e38d1bf4151ab8f45b2c88e67214b813b816d594b657c2a7ccf40a8f94d1f3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79db1a978cd2bd4aabfbc9c8780acc6c5080df34cc0b42d11ba4e6e58ff22f06"} -2023-12-15T14:30:44.675Z INFO initializing dbft {"height": 1114, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:44.676Z debug frostfs-node/morph.go:229 new block {"index": 1113} -2023-12-15T14:30:45.647Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1113, "blockHeight": 1113, "took": "4.154864ms"} -2023-12-15T14:30:45.675Z INFO sending PrepareRequest {"height": 1114, "view": 0} -2023-12-15T14:30:45.675Z INFO sending Commit {"height": 1114, "view": 0} -2023-12-15T14:30:45.676Z INFO approving block {"height": 1114, "hash": "d2f32da3616fab89b76e96a0522126e2b02d7e3ef553bc9c3abe4322037723e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e38d1bf4151ab8f45b2c88e67214b813b816d594b657c2a7ccf40a8f94d1f3b"} -2023-12-15T14:30:45.677Z INFO initializing dbft {"height": 1115, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:45.677Z debug frostfs-node/morph.go:229 new block {"index": 1114} -2023-12-15T14:30:46.646Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1114, "blockHeight": 1114, "took": "3.205543ms"} -2023-12-15T14:30:46.677Z INFO sending PrepareRequest {"height": 1115, "view": 0} -2023-12-15T14:30:46.677Z INFO sending Commit {"height": 1115, "view": 0} -2023-12-15T14:30:46.677Z INFO approving block {"height": 1115, "hash": "5eb7e48026c32290c895f972a347e8b8462eab20081acf48f7d7b233317dc444", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2f32da3616fab89b76e96a0522126e2b02d7e3ef553bc9c3abe4322037723e3"} -2023-12-15T14:30:46.678Z INFO initializing dbft {"height": 1116, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:46.679Z debug frostfs-node/morph.go:229 new block {"index": 1115} -2023-12-15T14:30:47.648Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1115, "blockHeight": 1115, "took": "3.926804ms"} -2023-12-15T14:30:47.679Z INFO sending PrepareRequest {"height": 1116, "view": 0} -2023-12-15T14:30:47.679Z INFO sending Commit {"height": 1116, "view": 0} -2023-12-15T14:30:47.679Z INFO approving block {"height": 1116, "hash": "9d8595ce04b548c6b9519f335efd725c213b812f9a77f5f04be57fa210818a9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5eb7e48026c32290c895f972a347e8b8462eab20081acf48f7d7b233317dc444"} -2023-12-15T14:30:47.680Z INFO initializing dbft {"height": 1117, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:47.681Z debug frostfs-node/morph.go:229 new block {"index": 1116} -2023-12-15T14:30:48.649Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1116, "blockHeight": 1116, "took": "4.667866ms"} -2023-12-15T14:30:48.680Z INFO sending PrepareRequest {"height": 1117, "view": 0} -2023-12-15T14:30:48.680Z INFO sending Commit {"height": 1117, "view": 0} -2023-12-15T14:30:48.680Z INFO approving block {"height": 1117, "hash": "931bcaff65ddb036aebe265dfa16b617972674057296f1ac174eee3a2ec19111", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d8595ce04b548c6b9519f335efd725c213b812f9a77f5f04be57fa210818a9f"} -2023-12-15T14:30:48.681Z INFO initializing dbft {"height": 1118, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:48.682Z debug frostfs-node/morph.go:229 new block {"index": 1117} -2023-12-15T14:30:48.684Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:30:48.687Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:30:48.687Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:30:49.648Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1117, "blockHeight": 1117, "took": "2.77192ms"} -2023-12-15T14:30:49.682Z INFO sending PrepareRequest {"height": 1118, "view": 0} -2023-12-15T14:30:49.682Z INFO sending Commit {"height": 1118, "view": 0} -2023-12-15T14:30:49.683Z INFO approving block {"height": 1118, "hash": "0072f97a2781e8503a615adf1fb39560f8c37a6ecc0fed6871ff349d2bf49de1", "tx_count": 2, "merkle": "baac4098ae9194249330849d4259ae2072d2e572959ffced2d96204326c48830", "prev": "931bcaff65ddb036aebe265dfa16b617972674057296f1ac174eee3a2ec19111"} -2023-12-15T14:30:49.684Z INFO runtime log {"tx": "11e128c76ac50427b057b5747e5c93197616c998309b67b717b6a26c7e791a53", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:30:49.684Z INFO runtime log {"tx": "11e128c76ac50427b057b5747e5c93197616c998309b67b717b6a26c7e791a53", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:30:49.685Z INFO initializing dbft {"height": 1119, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:49.686Z debug frostfs-node/morph.go:229 new block {"index": 1118} -2023-12-15T14:30:50.650Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1118, "blockHeight": 1118, "took": "4.753369ms"} -2023-12-15T14:30:50.683Z INFO sending PrepareRequest {"height": 1119, "view": 0} -2023-12-15T14:30:50.684Z INFO sending Commit {"height": 1119, "view": 0} -2023-12-15T14:30:50.684Z INFO approving block {"height": 1119, "hash": "de8eedc46f7871d6c1a2eb2e7139fbe8a11f083c50606cc56f49f7ea0d8add6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0072f97a2781e8503a615adf1fb39560f8c37a6ecc0fed6871ff349d2bf49de1"} -2023-12-15T14:30:50.685Z INFO initializing dbft {"height": 1120, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:50.686Z debug frostfs-node/morph.go:229 new block {"index": 1119} -2023-12-15T14:30:51.650Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1119, "blockHeight": 1119, "took": "3.42987ms"} -2023-12-15T14:30:51.684Z INFO sending PrepareRequest {"height": 1120, "view": 0} -2023-12-15T14:30:51.685Z INFO sending Commit {"height": 1120, "view": 0} -2023-12-15T14:30:51.685Z INFO approving block {"height": 1120, "hash": "d9be35da74cd4f4964428b6d885392e60e9c9ff36cc0db0dfd23ac43c215ea0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de8eedc46f7871d6c1a2eb2e7139fbe8a11f083c50606cc56f49f7ea0d8add6a"} -2023-12-15T14:30:51.686Z INFO initializing dbft {"height": 1121, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:51.686Z debug frostfs-node/morph.go:229 new block {"index": 1120} -2023-12-15T14:30:52.651Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1120, "blockHeight": 1120, "took": "3.572267ms"} -2023-12-15T14:30:52.686Z INFO sending PrepareRequest {"height": 1121, "view": 0} -2023-12-15T14:30:52.686Z INFO sending Commit {"height": 1121, "view": 0} -2023-12-15T14:30:52.686Z INFO approving block {"height": 1121, "hash": "d4850bc341520b78328c13c3603887d4776c254435246b3604af1aaf255b18e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9be35da74cd4f4964428b6d885392e60e9c9ff36cc0db0dfd23ac43c215ea0b"} -2023-12-15T14:30:52.687Z INFO initializing dbft {"height": 1122, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:52.688Z debug frostfs-node/morph.go:229 new block {"index": 1121} -2023-12-15T14:30:53.651Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1121, "blockHeight": 1121, "took": "3.087474ms"} -2023-12-15T14:30:53.688Z INFO sending PrepareRequest {"height": 1122, "view": 0} -2023-12-15T14:30:53.688Z INFO sending Commit {"height": 1122, "view": 0} -2023-12-15T14:30:53.688Z INFO approving block {"height": 1122, "hash": "92ba81bb59efcda0f716ea08130765f65ecbdbcaec7379f9a4b07aaed9774a5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4850bc341520b78328c13c3603887d4776c254435246b3604af1aaf255b18e4"} -2023-12-15T14:30:53.690Z INFO initializing dbft {"height": 1123, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:53.690Z debug frostfs-node/morph.go:229 new block {"index": 1122} -2023-12-15T14:30:54.652Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1122, "blockHeight": 1122, "took": "3.181392ms"} -2023-12-15T14:30:54.689Z INFO sending PrepareRequest {"height": 1123, "view": 0} -2023-12-15T14:30:54.690Z INFO sending Commit {"height": 1123, "view": 0} -2023-12-15T14:30:54.690Z INFO approving block {"height": 1123, "hash": "3eb7bf6178add19d20977f34366e1eafb313c97993721f34787da24bc71ddb07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92ba81bb59efcda0f716ea08130765f65ecbdbcaec7379f9a4b07aaed9774a5d"} -2023-12-15T14:30:54.691Z INFO initializing dbft {"height": 1124, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:54.692Z debug frostfs-node/morph.go:229 new block {"index": 1123} -2023-12-15T14:30:55.652Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1123, "blockHeight": 1123, "took": "2.822346ms"} -2023-12-15T14:30:55.691Z INFO sending PrepareRequest {"height": 1124, "view": 0} -2023-12-15T14:30:55.692Z INFO sending Commit {"height": 1124, "view": 0} -2023-12-15T14:30:55.692Z INFO approving block {"height": 1124, "hash": "e5c8aedd4bbdaab1a29f2bfac61cf0d74a5bcf1dc100847f51fc79a86e39dd33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3eb7bf6178add19d20977f34366e1eafb313c97993721f34787da24bc71ddb07"} -2023-12-15T14:30:55.693Z INFO initializing dbft {"height": 1125, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:55.694Z debug frostfs-node/morph.go:229 new block {"index": 1124} -2023-12-15T14:30:56.653Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1124, "blockHeight": 1124, "took": "3.83485ms"} -2023-12-15T14:30:56.693Z INFO sending PrepareRequest {"height": 1125, "view": 0} -2023-12-15T14:30:56.694Z INFO sending Commit {"height": 1125, "view": 0} -2023-12-15T14:30:56.694Z INFO approving block {"height": 1125, "hash": "51e24cc68ae125b55cdb449a362b7070dea9a2c400fd00030d62f4e510173200", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5c8aedd4bbdaab1a29f2bfac61cf0d74a5bcf1dc100847f51fc79a86e39dd33"} -2023-12-15T14:30:56.695Z INFO initializing dbft {"height": 1126, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:56.696Z debug frostfs-node/morph.go:229 new block {"index": 1125} -2023-12-15T14:30:57.655Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1125, "blockHeight": 1125, "took": "4.464631ms"} -2023-12-15T14:30:57.696Z INFO sending PrepareRequest {"height": 1126, "view": 0} -2023-12-15T14:30:57.696Z INFO sending Commit {"height": 1126, "view": 0} -2023-12-15T14:30:57.696Z INFO approving block {"height": 1126, "hash": "571450ad51488b546193e1c1a552f97f6420835ca5c72a3e97827cb07bcf8a4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51e24cc68ae125b55cdb449a362b7070dea9a2c400fd00030d62f4e510173200"} -2023-12-15T14:30:57.697Z INFO initializing dbft {"height": 1127, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:57.698Z debug frostfs-node/morph.go:229 new block {"index": 1126} -2023-12-15T14:30:58.654Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1126, "blockHeight": 1126, "took": "3.27962ms"} -2023-12-15T14:30:58.697Z INFO sending PrepareRequest {"height": 1127, "view": 0} -2023-12-15T14:30:58.697Z INFO sending Commit {"height": 1127, "view": 0} -2023-12-15T14:30:58.697Z INFO approving block {"height": 1127, "hash": "154fe068d59ff239fa707329c18ed9286c6ce2832eb6129b133ca501eba6be6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "571450ad51488b546193e1c1a552f97f6420835ca5c72a3e97827cb07bcf8a4c"} -2023-12-15T14:30:58.698Z INFO initializing dbft {"height": 1128, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:58.698Z debug frostfs-node/morph.go:229 new block {"index": 1127} -2023-12-15T14:30:59.656Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1127, "blockHeight": 1127, "took": "4.10735ms"} -2023-12-15T14:30:59.699Z INFO sending PrepareRequest {"height": 1128, "view": 0} -2023-12-15T14:30:59.699Z INFO sending Commit {"height": 1128, "view": 0} -2023-12-15T14:30:59.699Z INFO approving block {"height": 1128, "hash": "36d9c132ce4e27bb35ec3cbc5237086fd6a07a15ea638782ffcb72590f093ead", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "154fe068d59ff239fa707329c18ed9286c6ce2832eb6129b133ca501eba6be6f"} -2023-12-15T14:30:59.700Z INFO initializing dbft {"height": 1129, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:30:59.700Z debug frostfs-node/morph.go:229 new block {"index": 1128} -2023-12-15T14:31:00.655Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1128, "blockHeight": 1128, "took": "2.924345ms"} -2023-12-15T14:31:00.700Z INFO sending PrepareRequest {"height": 1129, "view": 0} -2023-12-15T14:31:00.700Z INFO sending Commit {"height": 1129, "view": 0} -2023-12-15T14:31:00.700Z INFO approving block {"height": 1129, "hash": "e8adf2f6d6cc2528d2adfc9df5bfa3855ef7e875781cb2180fb9c5d2ecb03683", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36d9c132ce4e27bb35ec3cbc5237086fd6a07a15ea638782ffcb72590f093ead"} -2023-12-15T14:31:00.701Z INFO initializing dbft {"height": 1130, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:00.702Z debug frostfs-node/morph.go:229 new block {"index": 1129} -2023-12-15T14:31:01.660Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1129, "blockHeight": 1129, "took": "7.307646ms"} -2023-12-15T14:31:01.702Z INFO sending PrepareRequest {"height": 1130, "view": 0} -2023-12-15T14:31:01.702Z INFO sending Commit {"height": 1130, "view": 0} -2023-12-15T14:31:01.703Z INFO approving block {"height": 1130, "hash": "9d0ca93f395667881847b17bc6e0f1704b3a38d8e1f88bea1b6a9dcf5a1bfbb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8adf2f6d6cc2528d2adfc9df5bfa3855ef7e875781cb2180fb9c5d2ecb03683"} -2023-12-15T14:31:01.704Z INFO initializing dbft {"height": 1131, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:01.704Z debug frostfs-node/morph.go:229 new block {"index": 1130} -2023-12-15T14:31:02.660Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1130, "blockHeight": 1130, "took": "6.635072ms"} -2023-12-15T14:31:02.703Z INFO sending PrepareRequest {"height": 1131, "view": 0} -2023-12-15T14:31:02.704Z INFO sending Commit {"height": 1131, "view": 0} -2023-12-15T14:31:02.704Z INFO approving block {"height": 1131, "hash": "e75f1c05b7b5e3164562c6f07a820604671b5ead2309e7ecc9828099bb5fd42b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d0ca93f395667881847b17bc6e0f1704b3a38d8e1f88bea1b6a9dcf5a1bfbb0"} -2023-12-15T14:31:02.705Z INFO initializing dbft {"height": 1132, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:02.706Z debug frostfs-node/morph.go:229 new block {"index": 1131} -2023-12-15T14:31:03.663Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1131, "blockHeight": 1131, "took": "6.466792ms"} -2023-12-15T14:31:03.706Z INFO sending PrepareRequest {"height": 1132, "view": 0} -2023-12-15T14:31:03.706Z INFO sending Commit {"height": 1132, "view": 0} -2023-12-15T14:31:03.707Z INFO approving block {"height": 1132, "hash": "7cca06568eca35813e06b72a2bcdd575b367de849bcab5eb28b54bd5c92a2e08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e75f1c05b7b5e3164562c6f07a820604671b5ead2309e7ecc9828099bb5fd42b"} -2023-12-15T14:31:03.708Z INFO initializing dbft {"height": 1133, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:03.709Z debug frostfs-node/morph.go:229 new block {"index": 1132} -2023-12-15T14:31:04.662Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1132, "blockHeight": 1132, "took": "5.286861ms"} -2023-12-15T14:31:04.708Z INFO sending PrepareRequest {"height": 1133, "view": 0} -2023-12-15T14:31:04.708Z INFO sending Commit {"height": 1133, "view": 0} -2023-12-15T14:31:04.709Z INFO approving block {"height": 1133, "hash": "18073a48c1af168574c0e4c038eef37a69970c909bbd88cc655f71a10bf7af79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cca06568eca35813e06b72a2bcdd575b367de849bcab5eb28b54bd5c92a2e08"} -2023-12-15T14:31:04.709Z INFO initializing dbft {"height": 1134, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:04.710Z debug frostfs-node/morph.go:229 new block {"index": 1133} -2023-12-15T14:31:05.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1133, "blockHeight": 1133, "took": "6.127855ms"} -2023-12-15T14:31:05.710Z INFO sending PrepareRequest {"height": 1134, "view": 0} -2023-12-15T14:31:05.710Z INFO sending Commit {"height": 1134, "view": 0} -2023-12-15T14:31:05.710Z INFO approving block {"height": 1134, "hash": "a1674a4539d88f96ee693a14687b819ecd4ec8998bfcc9b507e2f45a12d475b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18073a48c1af168574c0e4c038eef37a69970c909bbd88cc655f71a10bf7af79"} -2023-12-15T14:31:05.712Z INFO initializing dbft {"height": 1135, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:05.712Z debug frostfs-node/morph.go:229 new block {"index": 1134} -2023-12-15T14:31:06.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1134, "blockHeight": 1134, "took": "5.370919ms"} -2023-12-15T14:31:06.712Z INFO sending PrepareRequest {"height": 1135, "view": 0} -2023-12-15T14:31:06.712Z INFO sending Commit {"height": 1135, "view": 0} -2023-12-15T14:31:06.712Z INFO approving block {"height": 1135, "hash": "ee7924c77da95e222e2fdf9060485ef8fb727f76c3ebc0034b6a272c2031dab5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1674a4539d88f96ee693a14687b819ecd4ec8998bfcc9b507e2f45a12d475b9"} -2023-12-15T14:31:06.713Z INFO initializing dbft {"height": 1136, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:06.714Z debug frostfs-node/morph.go:229 new block {"index": 1135} -2023-12-15T14:31:07.663Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1135, "blockHeight": 1135, "took": "4.301766ms"} -2023-12-15T14:31:07.713Z INFO sending PrepareRequest {"height": 1136, "view": 0} -2023-12-15T14:31:07.713Z INFO sending Commit {"height": 1136, "view": 0} -2023-12-15T14:31:07.714Z INFO approving block {"height": 1136, "hash": "9cd01032dc282ae975f4bf3d9d38cbcaea43f21dcb533c06f41dec93e91e3804", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee7924c77da95e222e2fdf9060485ef8fb727f76c3ebc0034b6a272c2031dab5"} -2023-12-15T14:31:07.715Z INFO initializing dbft {"height": 1137, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:07.715Z debug frostfs-node/morph.go:229 new block {"index": 1136} -2023-12-15T14:31:08.667Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1136, "blockHeight": 1136, "took": "7.651771ms"} -2023-12-15T14:31:08.714Z INFO sending PrepareRequest {"height": 1137, "view": 0} -2023-12-15T14:31:08.715Z INFO sending Commit {"height": 1137, "view": 0} -2023-12-15T14:31:08.715Z INFO approving block {"height": 1137, "hash": "f82cdcd191003d69b2c41fe7d07db436420bec38ddba44f301a41a6c8950184a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cd01032dc282ae975f4bf3d9d38cbcaea43f21dcb533c06f41dec93e91e3804"} -2023-12-15T14:31:08.716Z INFO initializing dbft {"height": 1138, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:08.717Z debug frostfs-node/morph.go:229 new block {"index": 1137} -2023-12-15T14:31:09.666Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1137, "blockHeight": 1137, "took": "5.764627ms"} -2023-12-15T14:31:09.716Z INFO sending PrepareRequest {"height": 1138, "view": 0} -2023-12-15T14:31:09.717Z INFO sending Commit {"height": 1138, "view": 0} -2023-12-15T14:31:09.717Z INFO approving block {"height": 1138, "hash": "c882c1839077487b0e73d3d0366895679fad9b29a5bcf64fbcadede3effa5321", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f82cdcd191003d69b2c41fe7d07db436420bec38ddba44f301a41a6c8950184a"} -2023-12-15T14:31:09.718Z INFO initializing dbft {"height": 1139, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:09.719Z debug frostfs-node/morph.go:229 new block {"index": 1138} -2023-12-15T14:31:10.668Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1138, "blockHeight": 1138, "took": "7.121941ms"} -2023-12-15T14:31:10.718Z INFO sending PrepareRequest {"height": 1139, "view": 0} -2023-12-15T14:31:10.718Z INFO sending Commit {"height": 1139, "view": 0} -2023-12-15T14:31:10.718Z INFO approving block {"height": 1139, "hash": "56a61dab44eae525688b3d34758a75e564b4bec3f9bbe06b616a2478ba5e29cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c882c1839077487b0e73d3d0366895679fad9b29a5bcf64fbcadede3effa5321"} -2023-12-15T14:31:10.719Z INFO initializing dbft {"height": 1140, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:10.719Z debug frostfs-node/morph.go:229 new block {"index": 1139} -2023-12-15T14:31:11.666Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1139, "blockHeight": 1139, "took": "4.306252ms"} -2023-12-15T14:31:11.720Z INFO sending PrepareRequest {"height": 1140, "view": 0} -2023-12-15T14:31:11.720Z INFO sending Commit {"height": 1140, "view": 0} -2023-12-15T14:31:11.720Z INFO approving block {"height": 1140, "hash": "61365ce62ffde919c199d7c72a44a8367e5f8be7898a818d60439be2eda6b708", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56a61dab44eae525688b3d34758a75e564b4bec3f9bbe06b616a2478ba5e29cb"} -2023-12-15T14:31:11.721Z INFO initializing dbft {"height": 1141, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:11.721Z debug frostfs-node/morph.go:229 new block {"index": 1140} -2023-12-15T14:31:12.666Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1140, "blockHeight": 1140, "took": "3.919122ms"} -2023-12-15T14:31:12.721Z INFO sending PrepareRequest {"height": 1141, "view": 0} -2023-12-15T14:31:12.721Z INFO sending Commit {"height": 1141, "view": 0} -2023-12-15T14:31:12.722Z INFO approving block {"height": 1141, "hash": "ff2ed8fcc445b8cba0a0f58ff0f8dd1c258bc3650faab46c1b1697f39bb91f6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61365ce62ffde919c199d7c72a44a8367e5f8be7898a818d60439be2eda6b708"} -2023-12-15T14:31:12.722Z INFO initializing dbft {"height": 1142, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:12.723Z debug frostfs-node/morph.go:229 new block {"index": 1141} -2023-12-15T14:31:13.668Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1141, "blockHeight": 1141, "took": "4.984436ms"} -2023-12-15T14:31:13.723Z INFO sending PrepareRequest {"height": 1142, "view": 0} -2023-12-15T14:31:13.723Z INFO sending Commit {"height": 1142, "view": 0} -2023-12-15T14:31:13.724Z INFO approving block {"height": 1142, "hash": "36736b310de635c828f2c4aa3e271f1db8efa938b34cacd05e4558b99a660757", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff2ed8fcc445b8cba0a0f58ff0f8dd1c258bc3650faab46c1b1697f39bb91f6b"} -2023-12-15T14:31:13.725Z INFO initializing dbft {"height": 1143, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:13.725Z debug frostfs-node/morph.go:229 new block {"index": 1142} -2023-12-15T14:31:14.670Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1142, "blockHeight": 1142, "took": "6.788939ms"} -2023-12-15T14:31:14.724Z INFO sending PrepareRequest {"height": 1143, "view": 0} -2023-12-15T14:31:14.725Z INFO sending Commit {"height": 1143, "view": 0} -2023-12-15T14:31:14.725Z INFO approving block {"height": 1143, "hash": "32c5c02a778238d7c77192b1dc0eb3c2cf4be4e7a3e0a5abacb0de21242a3321", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36736b310de635c828f2c4aa3e271f1db8efa938b34cacd05e4558b99a660757"} -2023-12-15T14:31:14.726Z INFO initializing dbft {"height": 1144, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:14.727Z debug frostfs-node/morph.go:229 new block {"index": 1143} -2023-12-15T14:31:14.730Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 5, "iteration": 2, "error": "no data for 1 iteration in 5 epoch for consumers's trusts"} -2023-12-15T14:31:15.670Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1143, "blockHeight": 1143, "took": "6.103228ms"} -2023-12-15T14:31:15.726Z INFO sending PrepareRequest {"height": 1144, "view": 0} -2023-12-15T14:31:15.726Z INFO sending Commit {"height": 1144, "view": 0} -2023-12-15T14:31:15.727Z INFO approving block {"height": 1144, "hash": "559a187707f6987568e1872339db7203f32d5be734737e06f4a4c59fe5594eb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32c5c02a778238d7c77192b1dc0eb3c2cf4be4e7a3e0a5abacb0de21242a3321"} -2023-12-15T14:31:15.728Z INFO initializing dbft {"height": 1145, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:15.728Z debug frostfs-node/morph.go:229 new block {"index": 1144} -2023-12-15T14:31:15.733Z info settlement/calls.go:106 start basic income distribution {"epoch": 5} -2023-12-15T14:31:16.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1144, "blockHeight": 1144, "took": "5.84129ms"} -2023-12-15T14:31:16.728Z INFO sending PrepareRequest {"height": 1145, "view": 0} -2023-12-15T14:31:16.728Z INFO sending Commit {"height": 1145, "view": 0} -2023-12-15T14:31:16.729Z INFO approving block {"height": 1145, "hash": "a36332b47b1949127e0aaa4d4bb9b34ca4b166691e520ee6fb60cf39bb4353fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "559a187707f6987568e1872339db7203f32d5be734737e06f4a4c59fe5594eb6"} -2023-12-15T14:31:16.730Z INFO initializing dbft {"height": 1146, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:16.730Z debug frostfs-node/morph.go:229 new block {"index": 1145} -2023-12-15T14:31:17.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1145, "blockHeight": 1145, "took": "5.610653ms"} -2023-12-15T14:31:17.729Z INFO sending PrepareRequest {"height": 1146, "view": 0} -2023-12-15T14:31:17.730Z INFO sending Commit {"height": 1146, "view": 0} -2023-12-15T14:31:17.730Z INFO approving block {"height": 1146, "hash": "c3123f86ffa6446e3e94dbb49f54d7f53dcde1c8a4ffb3371512b4b0f624d7b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a36332b47b1949127e0aaa4d4bb9b34ca4b166691e520ee6fb60cf39bb4353fb"} -2023-12-15T14:31:17.731Z INFO initializing dbft {"height": 1147, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:17.732Z debug frostfs-node/morph.go:229 new block {"index": 1146} -2023-12-15T14:31:18.669Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1146, "blockHeight": 1146, "took": "2.751361ms"} -2023-12-15T14:31:18.730Z INFO sending PrepareRequest {"height": 1147, "view": 0} -2023-12-15T14:31:18.731Z INFO sending Commit {"height": 1147, "view": 0} -2023-12-15T14:31:18.731Z INFO approving block {"height": 1147, "hash": "79a6ae89d6989c748191ca3680d36fdfaefd918628fa1351ec2a0d55dab420cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3123f86ffa6446e3e94dbb49f54d7f53dcde1c8a4ffb3371512b4b0f624d7b8"} -2023-12-15T14:31:18.732Z INFO initializing dbft {"height": 1148, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:18.732Z debug frostfs-node/morph.go:229 new block {"index": 1147} -2023-12-15T14:31:19.672Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1147, "blockHeight": 1147, "took": "5.706013ms"} -2023-12-15T14:31:19.732Z INFO sending PrepareRequest {"height": 1148, "view": 0} -2023-12-15T14:31:19.732Z INFO sending Commit {"height": 1148, "view": 0} -2023-12-15T14:31:19.733Z INFO approving block {"height": 1148, "hash": "5dc7489e18ea70d3c97161bd4202500c1e57482815a6785e830806e29fda8313", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79a6ae89d6989c748191ca3680d36fdfaefd918628fa1351ec2a0d55dab420cd"} -2023-12-15T14:31:19.734Z INFO initializing dbft {"height": 1149, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:19.734Z debug frostfs-node/morph.go:229 new block {"index": 1148} -2023-12-15T14:31:20.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1148, "blockHeight": 1148, "took": "4.17962ms"} -2023-12-15T14:31:20.734Z INFO sending PrepareRequest {"height": 1149, "view": 0} -2023-12-15T14:31:20.734Z INFO sending Commit {"height": 1149, "view": 0} -2023-12-15T14:31:20.734Z INFO approving block {"height": 1149, "hash": "b88a4145ddaf30fb5458ea2fdd7fdc022aced993a0da7f2a05532239a023263b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5dc7489e18ea70d3c97161bd4202500c1e57482815a6785e830806e29fda8313"} -2023-12-15T14:31:20.735Z INFO initializing dbft {"height": 1150, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:20.736Z debug frostfs-node/morph.go:229 new block {"index": 1149} -2023-12-15T14:31:21.673Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1149, "blockHeight": 1149, "took": "5.311718ms"} -2023-12-15T14:31:21.736Z INFO sending PrepareRequest {"height": 1150, "view": 0} -2023-12-15T14:31:21.736Z INFO sending Commit {"height": 1150, "view": 0} -2023-12-15T14:31:21.736Z INFO approving block {"height": 1150, "hash": "a130aef398dff9438bb6ab8fb2801fa09fbda3254df5260928820bb26a8e275d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b88a4145ddaf30fb5458ea2fdd7fdc022aced993a0da7f2a05532239a023263b"} -2023-12-15T14:31:21.738Z INFO initializing dbft {"height": 1151, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:21.739Z debug frostfs-node/morph.go:229 new block {"index": 1150} -2023-12-15T14:31:22.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1150, "blockHeight": 1150, "took": "2.792541ms"} -2023-12-15T14:31:22.738Z INFO sending PrepareRequest {"height": 1151, "view": 0} -2023-12-15T14:31:22.738Z INFO sending Commit {"height": 1151, "view": 0} -2023-12-15T14:31:22.738Z INFO approving block {"height": 1151, "hash": "5ae0016db929374e687a1fcf0bc1bb63a81b0d8f2b60f89f55917cc8eaf4e268", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a130aef398dff9438bb6ab8fb2801fa09fbda3254df5260928820bb26a8e275d"} -2023-12-15T14:31:22.740Z INFO initializing dbft {"height": 1152, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:22.740Z debug frostfs-node/morph.go:229 new block {"index": 1151} -2023-12-15T14:31:23.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1151, "blockHeight": 1151, "took": "2.665628ms"} -2023-12-15T14:31:23.740Z INFO sending PrepareRequest {"height": 1152, "view": 0} -2023-12-15T14:31:23.740Z INFO sending Commit {"height": 1152, "view": 0} -2023-12-15T14:31:23.740Z INFO approving block {"height": 1152, "hash": "4f953e6124729df84a0c276f42819edd2b9fda5715a29f3e7d43e44c7c8fd791", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ae0016db929374e687a1fcf0bc1bb63a81b0d8f2b60f89f55917cc8eaf4e268"} -2023-12-15T14:31:23.741Z INFO initializing dbft {"height": 1153, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:23.742Z debug frostfs-node/morph.go:229 new block {"index": 1152} -2023-12-15T14:31:24.674Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1152, "blockHeight": 1152, "took": "4.393951ms"} -2023-12-15T14:31:24.741Z INFO sending PrepareRequest {"height": 1153, "view": 0} -2023-12-15T14:31:24.741Z INFO sending Commit {"height": 1153, "view": 0} -2023-12-15T14:31:24.741Z INFO approving block {"height": 1153, "hash": "ba4041be405ca74e30431c6b0f62344349797f7ef5b0614f36f00faf8d0e76b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f953e6124729df84a0c276f42819edd2b9fda5715a29f3e7d43e44c7c8fd791"} -2023-12-15T14:31:24.743Z INFO initializing dbft {"height": 1154, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:24.743Z debug frostfs-node/morph.go:229 new block {"index": 1153} -2023-12-15T14:31:25.673Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1153, "blockHeight": 1153, "took": "3.558139ms"} -2023-12-15T14:31:25.743Z INFO sending PrepareRequest {"height": 1154, "view": 0} -2023-12-15T14:31:25.743Z INFO sending Commit {"height": 1154, "view": 0} -2023-12-15T14:31:25.743Z INFO approving block {"height": 1154, "hash": "3ebec06adb7b3117dcd90588bf2e01edea99baad20850783936168e06da41972", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba4041be405ca74e30431c6b0f62344349797f7ef5b0614f36f00faf8d0e76b9"} -2023-12-15T14:31:25.744Z INFO initializing dbft {"height": 1155, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:25.745Z debug frostfs-node/morph.go:229 new block {"index": 1154} -2023-12-15T14:31:26.673Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1154, "blockHeight": 1154, "took": "3.45472ms"} -2023-12-15T14:31:26.745Z INFO sending PrepareRequest {"height": 1155, "view": 0} -2023-12-15T14:31:26.745Z INFO sending Commit {"height": 1155, "view": 0} -2023-12-15T14:31:26.745Z INFO approving block {"height": 1155, "hash": "f158210bc6519c3460f430b19988e1c4c160129f98170237f0ec2bfea6c8a561", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ebec06adb7b3117dcd90588bf2e01edea99baad20850783936168e06da41972"} -2023-12-15T14:31:26.746Z INFO initializing dbft {"height": 1156, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:26.746Z debug frostfs-node/morph.go:229 new block {"index": 1155} -2023-12-15T14:31:27.673Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1155, "blockHeight": 1155, "took": "2.74078ms"} -2023-12-15T14:31:27.746Z INFO sending PrepareRequest {"height": 1156, "view": 0} -2023-12-15T14:31:27.746Z INFO sending Commit {"height": 1156, "view": 0} -2023-12-15T14:31:27.747Z INFO approving block {"height": 1156, "hash": "fb12e54946bf837ca52d3866ec253ab49d9a155c8b539be3aa7847acef32b974", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f158210bc6519c3460f430b19988e1c4c160129f98170237f0ec2bfea6c8a561"} -2023-12-15T14:31:27.747Z INFO initializing dbft {"height": 1157, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:27.748Z debug frostfs-node/morph.go:229 new block {"index": 1156} -2023-12-15T14:31:28.675Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1156, "blockHeight": 1156, "took": "3.480362ms"} -2023-12-15T14:31:28.748Z INFO sending PrepareRequest {"height": 1157, "view": 0} -2023-12-15T14:31:28.748Z INFO sending Commit {"height": 1157, "view": 0} -2023-12-15T14:31:28.748Z INFO approving block {"height": 1157, "hash": "577752eab936d1f8e8e2e4c63ab9ad526effdf72968609b5847d807295365269", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb12e54946bf837ca52d3866ec253ab49d9a155c8b539be3aa7847acef32b974"} -2023-12-15T14:31:28.750Z INFO initializing dbft {"height": 1158, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:28.750Z debug frostfs-node/morph.go:229 new block {"index": 1157} -2023-12-15T14:31:29.676Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1157, "blockHeight": 1157, "took": "4.517025ms"} -2023-12-15T14:31:29.750Z INFO sending PrepareRequest {"height": 1158, "view": 0} -2023-12-15T14:31:29.750Z INFO sending Commit {"height": 1158, "view": 0} -2023-12-15T14:31:29.751Z INFO approving block {"height": 1158, "hash": "9a0d5a23a8b13df4daf632921da0f41284218f013e0d531bafbee379f04a40c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "577752eab936d1f8e8e2e4c63ab9ad526effdf72968609b5847d807295365269"} -2023-12-15T14:31:29.752Z INFO initializing dbft {"height": 1159, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:29.752Z debug frostfs-node/morph.go:229 new block {"index": 1158} -2023-12-15T14:31:30.675Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1158, "blockHeight": 1158, "took": "2.772201ms"} -2023-12-15T14:31:30.751Z INFO sending PrepareRequest {"height": 1159, "view": 0} -2023-12-15T14:31:30.752Z INFO sending Commit {"height": 1159, "view": 0} -2023-12-15T14:31:30.752Z INFO approving block {"height": 1159, "hash": "edcbda3a892b5ec9b95388c62eba7385adcccd3bd1d749ebbfef0fcde5d9bd23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a0d5a23a8b13df4daf632921da0f41284218f013e0d531bafbee379f04a40c2"} -2023-12-15T14:31:30.753Z INFO initializing dbft {"height": 1160, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:30.754Z debug frostfs-node/morph.go:229 new block {"index": 1159} -2023-12-15T14:31:31.679Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1159, "blockHeight": 1159, "took": "5.880636ms"} -2023-12-15T14:31:31.753Z INFO sending PrepareRequest {"height": 1160, "view": 0} -2023-12-15T14:31:31.753Z INFO sending Commit {"height": 1160, "view": 0} -2023-12-15T14:31:31.753Z INFO approving block {"height": 1160, "hash": "244ebf47cfca1332c95f9b9001794f2cf46c55001ccbc13ad4a52a9070cdbe32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edcbda3a892b5ec9b95388c62eba7385adcccd3bd1d749ebbfef0fcde5d9bd23"} -2023-12-15T14:31:31.755Z INFO initializing dbft {"height": 1161, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:31.755Z debug frostfs-node/morph.go:229 new block {"index": 1160} -2023-12-15T14:31:32.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1160, "blockHeight": 1160, "took": "4.069798ms"} -2023-12-15T14:31:32.755Z INFO sending PrepareRequest {"height": 1161, "view": 0} -2023-12-15T14:31:32.755Z INFO sending Commit {"height": 1161, "view": 0} -2023-12-15T14:31:32.755Z INFO approving block {"height": 1161, "hash": "db768559c61099cb6fa0c66e27582c14664b2a71623c6e4f07f046cd328e2bff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "244ebf47cfca1332c95f9b9001794f2cf46c55001ccbc13ad4a52a9070cdbe32"} -2023-12-15T14:31:32.756Z INFO initializing dbft {"height": 1162, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:32.757Z debug frostfs-node/morph.go:229 new block {"index": 1161} -2023-12-15T14:31:33.677Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1161, "blockHeight": 1161, "took": "2.989737ms"} -2023-12-15T14:31:33.756Z INFO sending PrepareRequest {"height": 1162, "view": 0} -2023-12-15T14:31:33.756Z INFO sending Commit {"height": 1162, "view": 0} -2023-12-15T14:31:33.757Z INFO approving block {"height": 1162, "hash": "ca3fc1de43893bcbc59e038b87dd70dcb3d13fd2a76fc65be98987417c7b10f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db768559c61099cb6fa0c66e27582c14664b2a71623c6e4f07f046cd328e2bff"} -2023-12-15T14:31:33.758Z INFO initializing dbft {"height": 1163, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:33.758Z debug frostfs-node/morph.go:229 new block {"index": 1162} -2023-12-15T14:31:34.680Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1162, "blockHeight": 1162, "took": "4.938854ms"} -2023-12-15T14:31:34.758Z INFO sending PrepareRequest {"height": 1163, "view": 0} -2023-12-15T14:31:34.758Z INFO sending Commit {"height": 1163, "view": 0} -2023-12-15T14:31:34.758Z INFO approving block {"height": 1163, "hash": "f20ee932dfff6212d4ce7ca1cb09465a1e319c9e76b3cbc9b43002ddbf90d657", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca3fc1de43893bcbc59e038b87dd70dcb3d13fd2a76fc65be98987417c7b10f3"} -2023-12-15T14:31:34.759Z INFO initializing dbft {"height": 1164, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:34.760Z debug frostfs-node/morph.go:229 new block {"index": 1163} -2023-12-15T14:31:35.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1163, "blockHeight": 1163, "took": "2.886834ms"} -2023-12-15T14:31:35.759Z INFO sending PrepareRequest {"height": 1164, "view": 0} -2023-12-15T14:31:35.760Z INFO sending Commit {"height": 1164, "view": 0} -2023-12-15T14:31:35.760Z INFO approving block {"height": 1164, "hash": "54af56dac85a3705a10f588dba88851efe16e4241207a04aa66a0d2d1355a747", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f20ee932dfff6212d4ce7ca1cb09465a1e319c9e76b3cbc9b43002ddbf90d657"} -2023-12-15T14:31:35.761Z INFO initializing dbft {"height": 1165, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:35.762Z debug frostfs-node/morph.go:229 new block {"index": 1164} -2023-12-15T14:31:36.682Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1164, "blockHeight": 1164, "took": "5.887452ms"} -2023-12-15T14:31:36.761Z INFO sending PrepareRequest {"height": 1165, "view": 0} -2023-12-15T14:31:36.761Z INFO sending Commit {"height": 1165, "view": 0} -2023-12-15T14:31:36.761Z INFO approving block {"height": 1165, "hash": "7ccfef4f1e6449a53d5d96f3df2e8dfef17e77ee693d09383abe34fd85665641", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54af56dac85a3705a10f588dba88851efe16e4241207a04aa66a0d2d1355a747"} -2023-12-15T14:31:36.763Z INFO initializing dbft {"height": 1166, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:36.763Z debug frostfs-node/morph.go:229 new block {"index": 1165} -2023-12-15T14:31:37.682Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1165, "blockHeight": 1165, "took": "5.816826ms"} -2023-12-15T14:31:37.762Z INFO sending PrepareRequest {"height": 1166, "view": 0} -2023-12-15T14:31:37.762Z INFO sending Commit {"height": 1166, "view": 0} -2023-12-15T14:31:37.763Z INFO approving block {"height": 1166, "hash": "5cd9dd6555d9b0359eb81be11b8af6a4571781ba61b6ef1c2b395b24221b3a22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ccfef4f1e6449a53d5d96f3df2e8dfef17e77ee693d09383abe34fd85665641"} -2023-12-15T14:31:37.764Z INFO initializing dbft {"height": 1167, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:37.764Z debug frostfs-node/morph.go:229 new block {"index": 1166} -2023-12-15T14:31:38.683Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1166, "blockHeight": 1166, "took": "5.588513ms"} -2023-12-15T14:31:38.764Z INFO sending PrepareRequest {"height": 1167, "view": 0} -2023-12-15T14:31:38.764Z INFO sending Commit {"height": 1167, "view": 0} -2023-12-15T14:31:38.765Z INFO approving block {"height": 1167, "hash": "d54094a7d5d271c424b5b2748da5652ee9366e9b93c511ddf98d6a2b2eca678f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cd9dd6555d9b0359eb81be11b8af6a4571781ba61b6ef1c2b395b24221b3a22"} -2023-12-15T14:31:38.766Z INFO initializing dbft {"height": 1168, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:38.766Z debug frostfs-node/morph.go:229 new block {"index": 1167} -2023-12-15T14:31:38.768Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:31:38.771Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:31:38.771Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:31:39.686Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1167, "blockHeight": 1167, "took": "7.8894ms"} -2023-12-15T14:31:39.766Z INFO sending PrepareRequest {"height": 1168, "view": 0} -2023-12-15T14:31:39.766Z INFO sending Commit {"height": 1168, "view": 0} -2023-12-15T14:31:39.766Z INFO approving block {"height": 1168, "hash": "7b62c9b8cac47b6390f900fbfe1f68df1302e951f784184d23b5bdd1099fd926", "tx_count": 2, "merkle": "611f22e73e7b04d5b7d009010f729e66c6865bc2f1774b7c0567b52b4266b6bd", "prev": "d54094a7d5d271c424b5b2748da5652ee9366e9b93c511ddf98d6a2b2eca678f"} -2023-12-15T14:31:39.767Z INFO runtime log {"tx": "9f8ee6e01706e0a32bcf2009186fdd5855ec78d90c574926d3574a41b7973e3c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:31:39.767Z INFO runtime log {"tx": "9f8ee6e01706e0a32bcf2009186fdd5855ec78d90c574926d3574a41b7973e3c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:31:39.767Z INFO initializing dbft {"height": 1169, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:39.768Z debug frostfs-node/morph.go:229 new block {"index": 1168} -2023-12-15T14:31:40.685Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1168, "blockHeight": 1168, "took": "6.963779ms"} -2023-12-15T14:31:40.767Z INFO sending PrepareRequest {"height": 1169, "view": 0} -2023-12-15T14:31:40.768Z INFO sending Commit {"height": 1169, "view": 0} -2023-12-15T14:31:40.768Z INFO approving block {"height": 1169, "hash": "6b3fb841328f0397f921d0dce6a8d5c21787365f0edbebb46357031b4ee7c2a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b62c9b8cac47b6390f900fbfe1f68df1302e951f784184d23b5bdd1099fd926"} -2023-12-15T14:31:40.769Z INFO initializing dbft {"height": 1170, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:40.770Z debug frostfs-node/morph.go:229 new block {"index": 1169} -2023-12-15T14:31:41.687Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1169, "blockHeight": 1169, "took": "6.774111ms"} -2023-12-15T14:31:41.769Z INFO sending PrepareRequest {"height": 1170, "view": 0} -2023-12-15T14:31:41.769Z INFO sending Commit {"height": 1170, "view": 0} -2023-12-15T14:31:41.769Z INFO approving block {"height": 1170, "hash": "a9c7992ad88bd02e4d9f3aacdeeedc4386a98e6c817ac1d4b6249c7086cc295a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b3fb841328f0397f921d0dce6a8d5c21787365f0edbebb46357031b4ee7c2a2"} -2023-12-15T14:31:41.770Z INFO initializing dbft {"height": 1171, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:41.771Z debug frostfs-node/morph.go:229 new block {"index": 1170} -2023-12-15T14:31:42.685Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1170, "blockHeight": 1170, "took": "4.283731ms"} -2023-12-15T14:31:42.770Z INFO sending PrepareRequest {"height": 1171, "view": 0} -2023-12-15T14:31:42.771Z INFO sending Commit {"height": 1171, "view": 0} -2023-12-15T14:31:42.771Z INFO approving block {"height": 1171, "hash": "45864986d5df0041b2811af8d875b80bc09df6ea8c7c4fe54993b9cb1b4206d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9c7992ad88bd02e4d9f3aacdeeedc4386a98e6c817ac1d4b6249c7086cc295a"} -2023-12-15T14:31:42.772Z INFO initializing dbft {"height": 1172, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:42.773Z debug frostfs-node/morph.go:229 new block {"index": 1171} -2023-12-15T14:31:43.685Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1171, "blockHeight": 1171, "took": "4.189556ms"} -2023-12-15T14:31:43.772Z INFO sending PrepareRequest {"height": 1172, "view": 0} -2023-12-15T14:31:43.773Z INFO sending Commit {"height": 1172, "view": 0} -2023-12-15T14:31:43.773Z INFO approving block {"height": 1172, "hash": "4d9c34c8cd7d5579cda0cdd4e50345d53c663c92d5b3bedf01ee2217a035f365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45864986d5df0041b2811af8d875b80bc09df6ea8c7c4fe54993b9cb1b4206d5"} -2023-12-15T14:31:43.774Z INFO initializing dbft {"height": 1173, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:43.775Z debug frostfs-node/morph.go:229 new block {"index": 1172} -2023-12-15T14:31:44.684Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1172, "blockHeight": 1172, "took": "2.505683ms"} -2023-12-15T14:31:44.774Z INFO sending PrepareRequest {"height": 1173, "view": 0} -2023-12-15T14:31:44.775Z INFO sending Commit {"height": 1173, "view": 0} -2023-12-15T14:31:44.775Z INFO approving block {"height": 1173, "hash": "29e562d8843db00bbeae1c1250a81f54bbc4c30394a7251526ffd5a339f55969", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d9c34c8cd7d5579cda0cdd4e50345d53c663c92d5b3bedf01ee2217a035f365"} -2023-12-15T14:31:44.776Z INFO initializing dbft {"height": 1174, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:44.777Z debug frostfs-node/morph.go:229 new block {"index": 1173} -2023-12-15T14:31:45.686Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1173, "blockHeight": 1173, "took": "3.959466ms"} -2023-12-15T14:31:45.776Z INFO sending PrepareRequest {"height": 1174, "view": 0} -2023-12-15T14:31:45.776Z INFO sending Commit {"height": 1174, "view": 0} -2023-12-15T14:31:45.776Z INFO approving block {"height": 1174, "hash": "78918463f4e543259cf33658aec67e3cfd7b05f0d49a21dd5767b0502e50b8bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29e562d8843db00bbeae1c1250a81f54bbc4c30394a7251526ffd5a339f55969"} -2023-12-15T14:31:45.777Z INFO initializing dbft {"height": 1175, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:45.778Z debug frostfs-node/morph.go:229 new block {"index": 1174} -2023-12-15T14:31:46.687Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1174, "blockHeight": 1174, "took": "3.883637ms"} -2023-12-15T14:31:46.778Z INFO sending PrepareRequest {"height": 1175, "view": 0} -2023-12-15T14:31:46.778Z INFO sending Commit {"height": 1175, "view": 0} -2023-12-15T14:31:46.778Z INFO approving block {"height": 1175, "hash": "6478f6b79574cad61e432da8f50e9b07f57e93e6c43fb5075fba39a82e128ccd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78918463f4e543259cf33658aec67e3cfd7b05f0d49a21dd5767b0502e50b8bc"} -2023-12-15T14:31:46.779Z INFO initializing dbft {"height": 1176, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:46.780Z debug frostfs-node/morph.go:229 new block {"index": 1175} -2023-12-15T14:31:47.686Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1175, "blockHeight": 1175, "took": "2.832232ms"} -2023-12-15T14:31:47.779Z INFO sending PrepareRequest {"height": 1176, "view": 0} -2023-12-15T14:31:47.779Z INFO sending Commit {"height": 1176, "view": 0} -2023-12-15T14:31:47.780Z INFO approving block {"height": 1176, "hash": "058799f0bba9a8e26b7bbbef223c131fa2b589730428eff54999f809c5730696", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6478f6b79574cad61e432da8f50e9b07f57e93e6c43fb5075fba39a82e128ccd"} -2023-12-15T14:31:47.781Z INFO initializing dbft {"height": 1177, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:47.781Z debug frostfs-node/morph.go:229 new block {"index": 1176} -2023-12-15T14:31:48.687Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1176, "blockHeight": 1176, "took": "2.944746ms"} -2023-12-15T14:31:48.780Z INFO sending PrepareRequest {"height": 1177, "view": 0} -2023-12-15T14:31:48.781Z INFO sending Commit {"height": 1177, "view": 0} -2023-12-15T14:31:48.781Z INFO approving block {"height": 1177, "hash": "88d3c0e54838307c978ed9fab22a0675c32b38fc659c73a87660b93c968b2a9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "058799f0bba9a8e26b7bbbef223c131fa2b589730428eff54999f809c5730696"} -2023-12-15T14:31:48.782Z INFO initializing dbft {"height": 1178, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:48.782Z debug frostfs-node/morph.go:229 new block {"index": 1177} -2023-12-15T14:31:49.688Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1177, "blockHeight": 1177, "took": "3.932494ms"} -2023-12-15T14:31:49.782Z INFO sending PrepareRequest {"height": 1178, "view": 0} -2023-12-15T14:31:49.783Z INFO sending Commit {"height": 1178, "view": 0} -2023-12-15T14:31:49.783Z INFO approving block {"height": 1178, "hash": "aca8fbe78643ac1c477a6da059e58216534fd4748ff70829e738259d9300d12f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88d3c0e54838307c978ed9fab22a0675c32b38fc659c73a87660b93c968b2a9c"} -2023-12-15T14:31:49.784Z INFO initializing dbft {"height": 1179, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:49.785Z debug frostfs-node/morph.go:229 new block {"index": 1178} -2023-12-15T14:31:50.689Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1178, "blockHeight": 1178, "took": "3.77315ms"} -2023-12-15T14:31:50.784Z INFO sending PrepareRequest {"height": 1179, "view": 0} -2023-12-15T14:31:50.784Z INFO sending Commit {"height": 1179, "view": 0} -2023-12-15T14:31:50.784Z INFO approving block {"height": 1179, "hash": "267e5757d182ef76ba33211d39bcb1fec4377a0a56c3fedbefbc8f1847d71d38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aca8fbe78643ac1c477a6da059e58216534fd4748ff70829e738259d9300d12f"} -2023-12-15T14:31:50.786Z INFO initializing dbft {"height": 1180, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:50.786Z debug frostfs-node/morph.go:229 new block {"index": 1179} -2023-12-15T14:31:51.689Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1179, "blockHeight": 1179, "took": "3.739705ms"} -2023-12-15T14:31:51.785Z INFO sending PrepareRequest {"height": 1180, "view": 0} -2023-12-15T14:31:51.786Z INFO sending Commit {"height": 1180, "view": 0} -2023-12-15T14:31:51.786Z INFO approving block {"height": 1180, "hash": "4b762d5def576fc1d984d6759a50f57b68b8120c1f359d70006568520481c410", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "267e5757d182ef76ba33211d39bcb1fec4377a0a56c3fedbefbc8f1847d71d38"} -2023-12-15T14:31:51.788Z INFO initializing dbft {"height": 1181, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:51.788Z debug frostfs-node/morph.go:229 new block {"index": 1180} -2023-12-15T14:31:52.690Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1180, "blockHeight": 1180, "took": "4.203802ms"} -2023-12-15T14:31:52.787Z INFO sending PrepareRequest {"height": 1181, "view": 0} -2023-12-15T14:31:52.787Z INFO sending Commit {"height": 1181, "view": 0} -2023-12-15T14:31:52.787Z INFO approving block {"height": 1181, "hash": "a6778f78ac919e87ad9aee8929fa761152d2c740e708f230fd244e44a9a795a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b762d5def576fc1d984d6759a50f57b68b8120c1f359d70006568520481c410"} -2023-12-15T14:31:52.788Z INFO initializing dbft {"height": 1182, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:52.789Z debug frostfs-node/morph.go:229 new block {"index": 1181} -2023-12-15T14:31:53.689Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1181, "blockHeight": 1181, "took": "2.904395ms"} -2023-12-15T14:31:53.788Z INFO sending PrepareRequest {"height": 1182, "view": 0} -2023-12-15T14:31:53.789Z INFO sending Commit {"height": 1182, "view": 0} -2023-12-15T14:31:53.789Z INFO approving block {"height": 1182, "hash": "4e906ef2e961cdef83e02e483d324072ab337b16997f8745dec26177e4bc40ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6778f78ac919e87ad9aee8929fa761152d2c740e708f230fd244e44a9a795a3"} -2023-12-15T14:31:53.790Z INFO initializing dbft {"height": 1183, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:53.791Z debug frostfs-node/morph.go:229 new block {"index": 1182} -2023-12-15T14:31:54.691Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1182, "blockHeight": 1182, "took": "3.973686ms"} -2023-12-15T14:31:54.790Z INFO sending PrepareRequest {"height": 1183, "view": 0} -2023-12-15T14:31:54.790Z INFO sending Commit {"height": 1183, "view": 0} -2023-12-15T14:31:54.791Z INFO approving block {"height": 1183, "hash": "201adea0a65b0bf9a1378635e7e56089c5fc6645586d306b3f067b4b57b828bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e906ef2e961cdef83e02e483d324072ab337b16997f8745dec26177e4bc40ba"} -2023-12-15T14:31:54.792Z INFO initializing dbft {"height": 1184, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:54.793Z debug frostfs-node/morph.go:229 new block {"index": 1183} -2023-12-15T14:31:55.693Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1183, "blockHeight": 1183, "took": "5.266097ms"} -2023-12-15T14:31:55.792Z INFO sending PrepareRequest {"height": 1184, "view": 0} -2023-12-15T14:31:55.792Z INFO sending Commit {"height": 1184, "view": 0} -2023-12-15T14:31:55.793Z INFO approving block {"height": 1184, "hash": "aaf696dd43ebc640c7a6db43338b7f578ccf872ce372fbea31ee31c6c690d2e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "201adea0a65b0bf9a1378635e7e56089c5fc6645586d306b3f067b4b57b828bc"} -2023-12-15T14:31:55.794Z INFO initializing dbft {"height": 1185, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:55.794Z debug frostfs-node/morph.go:229 new block {"index": 1184} -2023-12-15T14:31:56.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1184, "blockHeight": 1184, "took": "7.282834ms"} -2023-12-15T14:31:56.793Z INFO sending PrepareRequest {"height": 1185, "view": 0} -2023-12-15T14:31:56.794Z INFO sending Commit {"height": 1185, "view": 0} -2023-12-15T14:31:56.794Z INFO approving block {"height": 1185, "hash": "0b6e952710a40a25438d51c9685064c3d4ea82b276c06bd3514be8928d9d77af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aaf696dd43ebc640c7a6db43338b7f578ccf872ce372fbea31ee31c6c690d2e1"} -2023-12-15T14:31:56.795Z INFO initializing dbft {"height": 1186, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:56.796Z debug frostfs-node/morph.go:229 new block {"index": 1185} -2023-12-15T14:31:57.695Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1185, "blockHeight": 1185, "took": "5.735641ms"} -2023-12-15T14:31:57.796Z INFO sending PrepareRequest {"height": 1186, "view": 0} -2023-12-15T14:31:57.796Z INFO sending Commit {"height": 1186, "view": 0} -2023-12-15T14:31:57.796Z INFO approving block {"height": 1186, "hash": "2fae7d60f604d03e36d4e4c784001edbbeeec26772d909ee30eed2c82890d9b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b6e952710a40a25438d51c9685064c3d4ea82b276c06bd3514be8928d9d77af"} -2023-12-15T14:31:57.798Z INFO initializing dbft {"height": 1187, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:57.799Z debug frostfs-node/morph.go:229 new block {"index": 1186} -2023-12-15T14:31:58.695Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1186, "blockHeight": 1186, "took": "5.678611ms"} -2023-12-15T14:31:58.798Z INFO sending PrepareRequest {"height": 1187, "view": 0} -2023-12-15T14:31:58.798Z INFO sending Commit {"height": 1187, "view": 0} -2023-12-15T14:31:58.798Z INFO approving block {"height": 1187, "hash": "eec85a9652da879714db5de87674b58a22a7d776974bf3d012389274ab15fd0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fae7d60f604d03e36d4e4c784001edbbeeec26772d909ee30eed2c82890d9b4"} -2023-12-15T14:31:58.800Z INFO initializing dbft {"height": 1188, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:58.800Z debug frostfs-node/morph.go:229 new block {"index": 1187} -2023-12-15T14:31:59.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1187, "blockHeight": 1187, "took": "4.92575ms"} -2023-12-15T14:31:59.800Z INFO sending PrepareRequest {"height": 1188, "view": 0} -2023-12-15T14:31:59.801Z INFO sending Commit {"height": 1188, "view": 0} -2023-12-15T14:31:59.801Z INFO approving block {"height": 1188, "hash": "e73d0da97b6873908898055eb5e97c09f1f834f637eeb197c11f2b7181482b35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eec85a9652da879714db5de87674b58a22a7d776974bf3d012389274ab15fd0f"} -2023-12-15T14:31:59.803Z INFO initializing dbft {"height": 1189, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:31:59.804Z debug frostfs-node/morph.go:229 new block {"index": 1188} -2023-12-15T14:32:00.698Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1188, "blockHeight": 1188, "took": "6.748205ms"} -2023-12-15T14:32:00.803Z INFO sending PrepareRequest {"height": 1189, "view": 0} -2023-12-15T14:32:00.803Z INFO sending Commit {"height": 1189, "view": 0} -2023-12-15T14:32:00.803Z INFO approving block {"height": 1189, "hash": "bb2db440d83cee11d3d27fde8f026d80e03c4ef0a3381d76c92884e524f4d94d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e73d0da97b6873908898055eb5e97c09f1f834f637eeb197c11f2b7181482b35"} -2023-12-15T14:32:00.804Z INFO initializing dbft {"height": 1190, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:00.805Z debug frostfs-node/morph.go:229 new block {"index": 1189} -2023-12-15T14:32:01.697Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1189, "blockHeight": 1189, "took": "4.694738ms"} -2023-12-15T14:32:01.804Z INFO sending PrepareRequest {"height": 1190, "view": 0} -2023-12-15T14:32:01.804Z INFO sending Commit {"height": 1190, "view": 0} -2023-12-15T14:32:01.805Z INFO approving block {"height": 1190, "hash": "f4efb513fdbf27843a2782bbdc1db6295f8bc96948afd91fdfc63d08acdb30db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb2db440d83cee11d3d27fde8f026d80e03c4ef0a3381d76c92884e524f4d94d"} -2023-12-15T14:32:01.806Z INFO initializing dbft {"height": 1191, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:01.806Z debug frostfs-node/morph.go:229 new block {"index": 1190} -2023-12-15T14:32:02.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1190, "blockHeight": 1190, "took": "3.326765ms"} -2023-12-15T14:32:02.806Z INFO sending PrepareRequest {"height": 1191, "view": 0} -2023-12-15T14:32:02.806Z INFO sending Commit {"height": 1191, "view": 0} -2023-12-15T14:32:02.806Z INFO approving block {"height": 1191, "hash": "08dba4467ec462dd176fb5a4b19c80153c4ee8cae365f01c144a8a07f12f9353", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4efb513fdbf27843a2782bbdc1db6295f8bc96948afd91fdfc63d08acdb30db"} -2023-12-15T14:32:02.807Z INFO initializing dbft {"height": 1192, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:02.807Z debug frostfs-node/morph.go:229 new block {"index": 1191} -2023-12-15T14:32:03.699Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1191, "blockHeight": 1191, "took": "5.678971ms"} -2023-12-15T14:32:03.807Z INFO sending PrepareRequest {"height": 1192, "view": 0} -2023-12-15T14:32:03.807Z INFO sending Commit {"height": 1192, "view": 0} -2023-12-15T14:32:03.807Z INFO approving block {"height": 1192, "hash": "2fb2378495efd85123b05c438d42a89f9ea34aa07cc3c4ccc0224122d61312b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08dba4467ec462dd176fb5a4b19c80153c4ee8cae365f01c144a8a07f12f9353"} -2023-12-15T14:32:03.808Z INFO initializing dbft {"height": 1193, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:03.809Z debug frostfs-node/morph.go:229 new block {"index": 1192} -2023-12-15T14:32:04.697Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1192, "blockHeight": 1192, "took": "2.759527ms"} -2023-12-15T14:32:04.809Z INFO sending PrepareRequest {"height": 1193, "view": 0} -2023-12-15T14:32:04.809Z INFO sending Commit {"height": 1193, "view": 0} -2023-12-15T14:32:04.810Z INFO approving block {"height": 1193, "hash": "459afd19749c896d3d285c9f7a6b23f495fe1b86e6930b670ea707169072bbbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fb2378495efd85123b05c438d42a89f9ea34aa07cc3c4ccc0224122d61312b0"} -2023-12-15T14:32:04.811Z INFO initializing dbft {"height": 1194, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:04.811Z debug frostfs-node/morph.go:229 new block {"index": 1193} -2023-12-15T14:32:05.698Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1193, "blockHeight": 1193, "took": "3.857569ms"} -2023-12-15T14:32:05.810Z INFO sending PrepareRequest {"height": 1194, "view": 0} -2023-12-15T14:32:05.810Z INFO sending Commit {"height": 1194, "view": 0} -2023-12-15T14:32:05.811Z INFO approving block {"height": 1194, "hash": "ed6b397fcfb2cc5e13c240f0553536651d3596e90a653eaa63d27ff290773214", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "459afd19749c896d3d285c9f7a6b23f495fe1b86e6930b670ea707169072bbbe"} -2023-12-15T14:32:05.812Z INFO initializing dbft {"height": 1195, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:05.812Z debug frostfs-node/morph.go:229 new block {"index": 1194} -2023-12-15T14:32:06.699Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1194, "blockHeight": 1194, "took": "3.76252ms"} -2023-12-15T14:32:06.812Z INFO sending PrepareRequest {"height": 1195, "view": 0} -2023-12-15T14:32:06.812Z INFO sending Commit {"height": 1195, "view": 0} -2023-12-15T14:32:06.812Z INFO approving block {"height": 1195, "hash": "52a0f60a03a16e91d8119601c8c2e97c3a90ebb472a4fc6f872ca10d2dd9c64f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed6b397fcfb2cc5e13c240f0553536651d3596e90a653eaa63d27ff290773214"} -2023-12-15T14:32:06.813Z INFO initializing dbft {"height": 1196, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:06.814Z debug frostfs-node/morph.go:229 new block {"index": 1195} -2023-12-15T14:32:07.700Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1195, "blockHeight": 1195, "took": "4.057209ms"} -2023-12-15T14:32:07.813Z INFO sending PrepareRequest {"height": 1196, "view": 0} -2023-12-15T14:32:07.814Z INFO sending Commit {"height": 1196, "view": 0} -2023-12-15T14:32:07.814Z INFO approving block {"height": 1196, "hash": "da4b98de2e0c27f8f5c368975aa7cf8142f39eacf4122d652868e3912414e306", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52a0f60a03a16e91d8119601c8c2e97c3a90ebb472a4fc6f872ca10d2dd9c64f"} -2023-12-15T14:32:07.815Z INFO initializing dbft {"height": 1197, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:07.815Z debug frostfs-node/morph.go:229 new block {"index": 1196} -2023-12-15T14:32:08.701Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1196, "blockHeight": 1196, "took": "5.248408ms"} -2023-12-15T14:32:08.815Z INFO sending PrepareRequest {"height": 1197, "view": 0} -2023-12-15T14:32:08.815Z INFO sending Commit {"height": 1197, "view": 0} -2023-12-15T14:32:08.816Z INFO approving block {"height": 1197, "hash": "b23a6629bd60efe122ab9900086a48e45c8c0e9c6c5599088d1888e4b30dcd24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da4b98de2e0c27f8f5c368975aa7cf8142f39eacf4122d652868e3912414e306"} -2023-12-15T14:32:08.817Z INFO initializing dbft {"height": 1198, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:08.817Z debug frostfs-node/morph.go:229 new block {"index": 1197} -2023-12-15T14:32:09.703Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1197, "blockHeight": 1197, "took": "6.121069ms"} -2023-12-15T14:32:09.817Z INFO sending PrepareRequest {"height": 1198, "view": 0} -2023-12-15T14:32:09.817Z INFO sending Commit {"height": 1198, "view": 0} -2023-12-15T14:32:09.817Z INFO approving block {"height": 1198, "hash": "7e6ddd5055b3183479b8ba6ac820f860d7a526cbbeb86a732c5c02cc681bdfb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b23a6629bd60efe122ab9900086a48e45c8c0e9c6c5599088d1888e4b30dcd24"} -2023-12-15T14:32:09.818Z INFO initializing dbft {"height": 1199, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:09.819Z debug frostfs-node/morph.go:229 new block {"index": 1198} -2023-12-15T14:32:10.701Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1198, "blockHeight": 1198, "took": "3.446432ms"} -2023-12-15T14:32:10.818Z INFO sending PrepareRequest {"height": 1199, "view": 0} -2023-12-15T14:32:10.818Z INFO sending Commit {"height": 1199, "view": 0} -2023-12-15T14:32:10.819Z INFO approving block {"height": 1199, "hash": "9033e645a44cabb0aab48ba2b72161e8f6f6786be8d8b0e2b41a818e614d6cbf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e6ddd5055b3183479b8ba6ac820f860d7a526cbbeb86a732c5c02cc681bdfb0"} -2023-12-15T14:32:10.820Z INFO initializing dbft {"height": 1200, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:10.821Z debug frostfs-node/morph.go:229 new block {"index": 1199} -2023-12-15T14:32:11.705Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1199, "blockHeight": 1199, "took": "6.52553ms"} -2023-12-15T14:32:11.820Z INFO sending PrepareRequest {"height": 1200, "view": 0} -2023-12-15T14:32:11.820Z INFO sending Commit {"height": 1200, "view": 0} -2023-12-15T14:32:11.821Z INFO approving block {"height": 1200, "hash": "66a43a4060268cf1faa6bfe83c436d262fafac1db89babc671d15317cced1fa5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9033e645a44cabb0aab48ba2b72161e8f6f6786be8d8b0e2b41a818e614d6cbf"} -2023-12-15T14:32:11.821Z INFO initializing dbft {"height": 1201, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:11.822Z debug frostfs-node/morph.go:229 new block {"index": 1200} -2023-12-15T14:32:12.705Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1200, "blockHeight": 1200, "took": "5.007158ms"} -2023-12-15T14:32:12.821Z INFO sending PrepareRequest {"height": 1201, "view": 0} -2023-12-15T14:32:12.822Z INFO sending Commit {"height": 1201, "view": 0} -2023-12-15T14:32:12.822Z INFO approving block {"height": 1201, "hash": "b12d7193762db67e4a5458d0d39aded32d8b9dcd87e3d5643e6f4ba4252b2aee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66a43a4060268cf1faa6bfe83c436d262fafac1db89babc671d15317cced1fa5"} -2023-12-15T14:32:12.824Z INFO initializing dbft {"height": 1202, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:12.824Z debug frostfs-node/morph.go:229 new block {"index": 1201} -2023-12-15T14:32:13.705Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1201, "blockHeight": 1201, "took": "4.789717ms"} -2023-12-15T14:32:13.823Z INFO sending PrepareRequest {"height": 1202, "view": 0} -2023-12-15T14:32:13.823Z INFO sending Commit {"height": 1202, "view": 0} -2023-12-15T14:32:13.823Z INFO approving block {"height": 1202, "hash": "fe3f4f8046e6b2053a80b0f34e99202528267e01ac3e6495379552cedfc7620f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b12d7193762db67e4a5458d0d39aded32d8b9dcd87e3d5643e6f4ba4252b2aee"} -2023-12-15T14:32:13.824Z INFO initializing dbft {"height": 1203, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:13.825Z debug frostfs-node/morph.go:229 new block {"index": 1202} -2023-12-15T14:32:14.707Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1202, "blockHeight": 1202, "took": "5.922787ms"} -2023-12-15T14:32:14.825Z INFO sending PrepareRequest {"height": 1203, "view": 0} -2023-12-15T14:32:14.825Z INFO sending Commit {"height": 1203, "view": 0} -2023-12-15T14:32:14.825Z INFO approving block {"height": 1203, "hash": "f232a1b057c4e7643fa12de8574d9f75193361e164d8c015506cde58b7d0b7d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe3f4f8046e6b2053a80b0f34e99202528267e01ac3e6495379552cedfc7620f"} -2023-12-15T14:32:14.826Z INFO initializing dbft {"height": 1204, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:14.827Z debug frostfs-node/morph.go:229 new block {"index": 1203} -2023-12-15T14:32:14.830Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 5, "iteration": 3, "error": "no data for 2 iteration in 5 epoch for consumers's trusts"} -2023-12-15T14:32:15.704Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1203, "blockHeight": 1203, "took": "2.649617ms"} -2023-12-15T14:32:15.826Z INFO sending PrepareRequest {"height": 1204, "view": 0} -2023-12-15T14:32:15.826Z INFO sending Commit {"height": 1204, "view": 0} -2023-12-15T14:32:15.826Z INFO approving block {"height": 1204, "hash": "f9c071be7c89243aac2d3edc728e468599c5f312a6c54fbadd7dcb08311f791b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f232a1b057c4e7643fa12de8574d9f75193361e164d8c015506cde58b7d0b7d4"} -2023-12-15T14:32:15.827Z INFO initializing dbft {"height": 1205, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:15.827Z debug frostfs-node/morph.go:229 new block {"index": 1204} -2023-12-15T14:32:15.829Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:32:15.833Z INFO runtime log {"tx": "69a9d21f8345ad573eedb11d53cc599c898cfd836cd03c49b13998582e1cf967", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:32:16.704Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1204, "blockHeight": 1204, "took": "2.716ms"} -2023-12-15T14:32:16.827Z INFO sending PrepareRequest {"height": 1205, "view": 0} -2023-12-15T14:32:16.828Z INFO sending Commit {"height": 1205, "view": 0} -2023-12-15T14:32:16.828Z INFO approving block {"height": 1205, "hash": "ac77a8d5869fac8f860ebd7464e5ccadb62f4c784b6f3ddbe89c80c4a5b10bfd", "tx_count": 1, "merkle": "498d2c76adc134e00a606aac510c719e930f0804c472278dafe2f955f28f399f", "prev": "f9c071be7c89243aac2d3edc728e468599c5f312a6c54fbadd7dcb08311f791b"} -2023-12-15T14:32:16.829Z INFO runtime log {"tx": "9f398ff255f9e2af8d2772c404080f939e710c51ac6a600ae034c1ad762c8d49", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:32:16.830Z INFO initializing dbft {"height": 1206, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:16.830Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 7} -2023-12-15T14:32:16.830Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 7} -2023-12-15T14:32:16.830Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:32:16.831Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:32:16.831Z debug controller/calls.go:95 starting to report local trust values {"epoch": 6} -2023-12-15T14:32:16.831Z debug frostfs-node/morph.go:229 new block {"index": 1205} -2023-12-15T14:32:16.831Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 6} -2023-12-15T14:32:16.831Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 7} -2023-12-15T14:32:16.831Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 7} -2023-12-15T14:32:16.831Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 7} -2023-12-15T14:32:16.833Z debug controller/calls.go:146 reporting successfully finished {"epoch": 6} -2023-12-15T14:32:16.833Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 6} -2023-12-15T14:32:16.833Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:32:16.835Z INFO runtime log {"tx": "b3040f7d97d8f292011815c95914a97b885f58a5b4be496fd04d00a1163fdf84", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:32:16.836Z info client/notary.go:214 notary deposit invoke {"amount": 1820333559, "expire_at": 4294967295, "vub": 1208, "tx_hash": "bf05dfea46d891e6821f60bace8de8e85a6bd425397f3560a63cffa5e0580788"} -2023-12-15T14:32:16.843Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:32:16.843Z info audit/handlers.go:13 new round of audit {"epoch": 7} -2023-12-15T14:32:16.843Z info settlement/calls.go:26 new audit settlement event {"epoch": 7} -2023-12-15T14:32:16.843Z info settlement/handlers.go:14 process audit settlements {"epoch": 7} -2023-12-15T14:32:16.843Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 7} -2023-12-15T14:32:16.844Z info settlement/handlers.go:18 audit processing finished {"epoch": 7} -2023-12-15T14:32:16.845Z info audit/process.go:39 select containers for audit {"epoch": 7, "amount": 0} -2023-12-15T14:32:16.848Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 1208, "tx_hash": "8b22d925fe7ef9c564d9963e00171e6e95127ba477c0a76d8dfd215faf309acd"} -2023-12-15T14:32:17.709Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 1205, "blockHeight": 1205, "took": "6.423538ms"} -2023-12-15T14:32:17.829Z INFO sending PrepareRequest {"height": 1206, "view": 0} -2023-12-15T14:32:17.829Z INFO sending Commit {"height": 1206, "view": 0} -2023-12-15T14:32:17.829Z INFO approving block {"height": 1206, "hash": "558971fd1bc49a58a7dc55b597fc700cdfbe4e6d36badcdcbda567ca4d8105cb", "tx_count": 3, "merkle": "31230fb5843ebac2deb80fa43b5a90350195f7a6369088dd3a9e5bec1dff2d9a", "prev": "ac77a8d5869fac8f860ebd7464e5ccadb62f4c784b6f3ddbe89c80c4a5b10bfd"} -2023-12-15T14:32:17.830Z INFO runtime log {"tx": "b5eb95659d02fff6103fb26c6b37e92179633b931d65b0bff4703d9c1311d0a1", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:32:17.831Z INFO initializing dbft {"height": 1207, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:17.831Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 6} -2023-12-15T14:32:17.831Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 6} -2023-12-15T14:32:17.831Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 6} -2023-12-15T14:32:17.832Z debug frostfs-node/morph.go:229 new block {"index": 1206} -2023-12-15T14:32:18.709Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 1206, "blockHeight": 1206, "took": "6.513717ms"} -2023-12-15T14:32:18.831Z INFO sending PrepareRequest {"height": 1207, "view": 0} -2023-12-15T14:32:18.831Z INFO sending Commit {"height": 1207, "view": 0} -2023-12-15T14:32:18.831Z INFO approving block {"height": 1207, "hash": "a8b3838d2dbe40df4ee7550c126dce162096bffe5250b28860489eae0a7e58ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "558971fd1bc49a58a7dc55b597fc700cdfbe4e6d36badcdcbda567ca4d8105cb"} -2023-12-15T14:32:18.833Z INFO initializing dbft {"height": 1208, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:18.833Z debug frostfs-node/morph.go:229 new block {"index": 1207} -2023-12-15T14:32:19.709Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1207, "blockHeight": 1207, "took": "5.294281ms"} -2023-12-15T14:32:19.832Z INFO sending PrepareRequest {"height": 1208, "view": 0} -2023-12-15T14:32:19.832Z INFO sending Commit {"height": 1208, "view": 0} -2023-12-15T14:32:19.833Z INFO approving block {"height": 1208, "hash": "940c327546ff719d781f763a8b53f22d7905f47775499137cb3d6daaff069b0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8b3838d2dbe40df4ee7550c126dce162096bffe5250b28860489eae0a7e58ab"} -2023-12-15T14:32:19.834Z INFO initializing dbft {"height": 1209, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:19.834Z debug frostfs-node/morph.go:229 new block {"index": 1208} -2023-12-15T14:32:20.708Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1208, "blockHeight": 1208, "took": "3.947569ms"} -2023-12-15T14:32:20.834Z INFO sending PrepareRequest {"height": 1209, "view": 0} -2023-12-15T14:32:20.834Z INFO sending Commit {"height": 1209, "view": 0} -2023-12-15T14:32:20.835Z INFO approving block {"height": 1209, "hash": "ee0593d81fc05af6a69dc2b660adb367aceb3dda2b3fc2b03e893306108bfb1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "940c327546ff719d781f763a8b53f22d7905f47775499137cb3d6daaff069b0a"} -2023-12-15T14:32:20.836Z INFO initializing dbft {"height": 1210, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:20.836Z debug frostfs-node/morph.go:229 new block {"index": 1209} -2023-12-15T14:32:21.709Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1209, "blockHeight": 1209, "took": "4.237708ms"} -2023-12-15T14:32:21.835Z INFO sending PrepareRequest {"height": 1210, "view": 0} -2023-12-15T14:32:21.836Z INFO sending Commit {"height": 1210, "view": 0} -2023-12-15T14:32:21.836Z INFO approving block {"height": 1210, "hash": "4542a003d41c2c2c949caead9deccd054505e9434838400cfda837565f5faba1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee0593d81fc05af6a69dc2b660adb367aceb3dda2b3fc2b03e893306108bfb1c"} -2023-12-15T14:32:21.837Z INFO initializing dbft {"height": 1211, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:21.838Z debug frostfs-node/morph.go:229 new block {"index": 1210} -2023-12-15T14:32:22.710Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1210, "blockHeight": 1210, "took": "4.466861ms"} -2023-12-15T14:32:22.837Z INFO sending PrepareRequest {"height": 1211, "view": 0} -2023-12-15T14:32:22.837Z INFO sending Commit {"height": 1211, "view": 0} -2023-12-15T14:32:22.838Z INFO approving block {"height": 1211, "hash": "202b8dbc878e5d3b31d2357a270bd423487ce27e1df8adb724efb6d588caef25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4542a003d41c2c2c949caead9deccd054505e9434838400cfda837565f5faba1"} -2023-12-15T14:32:22.839Z INFO initializing dbft {"height": 1212, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:22.840Z debug frostfs-node/morph.go:229 new block {"index": 1211} -2023-12-15T14:32:23.708Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1211, "blockHeight": 1211, "took": "2.70582ms"} -2023-12-15T14:32:23.839Z INFO sending PrepareRequest {"height": 1212, "view": 0} -2023-12-15T14:32:23.839Z INFO sending Commit {"height": 1212, "view": 0} -2023-12-15T14:32:23.839Z INFO approving block {"height": 1212, "hash": "374079484abb5a63a15d79c23d1b0898179682881a310432bb5e1c324629a5b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "202b8dbc878e5d3b31d2357a270bd423487ce27e1df8adb724efb6d588caef25"} -2023-12-15T14:32:23.840Z INFO initializing dbft {"height": 1213, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:23.841Z debug frostfs-node/morph.go:229 new block {"index": 1212} -2023-12-15T14:32:24.710Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1212, "blockHeight": 1212, "took": "4.268558ms"} -2023-12-15T14:32:24.841Z INFO sending PrepareRequest {"height": 1213, "view": 0} -2023-12-15T14:32:24.841Z INFO sending Commit {"height": 1213, "view": 0} -2023-12-15T14:32:24.841Z INFO approving block {"height": 1213, "hash": "724108711b5e3ec53a957a95467c60116e6c832659c8f2d05c8a57b491776cb3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "374079484abb5a63a15d79c23d1b0898179682881a310432bb5e1c324629a5b3"} -2023-12-15T14:32:24.842Z INFO initializing dbft {"height": 1214, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:24.843Z debug frostfs-node/morph.go:229 new block {"index": 1213} -2023-12-15T14:32:25.709Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1213, "blockHeight": 1213, "took": "2.749711ms"} -2023-12-15T14:32:25.842Z INFO sending PrepareRequest {"height": 1214, "view": 0} -2023-12-15T14:32:25.843Z INFO sending Commit {"height": 1214, "view": 0} -2023-12-15T14:32:25.843Z INFO approving block {"height": 1214, "hash": "d7554e8fbdf3f55b9ae9285efad4c19dd6ecca76e746f608db5055c3e288aec5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "724108711b5e3ec53a957a95467c60116e6c832659c8f2d05c8a57b491776cb3"} -2023-12-15T14:32:25.844Z INFO initializing dbft {"height": 1215, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:25.845Z debug frostfs-node/morph.go:229 new block {"index": 1214} -2023-12-15T14:32:26.710Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1214, "blockHeight": 1214, "took": "3.317847ms"} -2023-12-15T14:32:26.843Z INFO sending PrepareRequest {"height": 1215, "view": 0} -2023-12-15T14:32:26.844Z INFO sending Commit {"height": 1215, "view": 0} -2023-12-15T14:32:26.844Z INFO approving block {"height": 1215, "hash": "c019be935fb2a228569c37ebf1eb132c8bbcb89bbd7ecdedc88ada55a3232b55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7554e8fbdf3f55b9ae9285efad4c19dd6ecca76e746f608db5055c3e288aec5"} -2023-12-15T14:32:26.845Z INFO initializing dbft {"height": 1216, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:26.845Z debug frostfs-node/morph.go:229 new block {"index": 1215} -2023-12-15T14:32:27.712Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1215, "blockHeight": 1215, "took": "3.899474ms"} -2023-12-15T14:32:27.845Z INFO sending PrepareRequest {"height": 1216, "view": 0} -2023-12-15T14:32:27.845Z INFO sending Commit {"height": 1216, "view": 0} -2023-12-15T14:32:27.845Z INFO approving block {"height": 1216, "hash": "576d071d45b1800f78d5600c475b6ab2188e5215feca485c5ff7112d2dae636f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c019be935fb2a228569c37ebf1eb132c8bbcb89bbd7ecdedc88ada55a3232b55"} -2023-12-15T14:32:27.846Z INFO initializing dbft {"height": 1217, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:27.847Z debug frostfs-node/morph.go:229 new block {"index": 1216} -2023-12-15T14:32:28.712Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1216, "blockHeight": 1216, "took": "4.009331ms"} -2023-12-15T14:32:28.846Z INFO sending PrepareRequest {"height": 1217, "view": 0} -2023-12-15T14:32:28.846Z INFO sending Commit {"height": 1217, "view": 0} -2023-12-15T14:32:28.846Z INFO approving block {"height": 1217, "hash": "0329fb3774af5ffe29de08bddf83678ed5c84845c11ce1b84c81c2c965673aa8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "576d071d45b1800f78d5600c475b6ab2188e5215feca485c5ff7112d2dae636f"} -2023-12-15T14:32:28.847Z INFO initializing dbft {"height": 1218, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:28.848Z debug frostfs-node/morph.go:229 new block {"index": 1217} -2023-12-15T14:32:28.849Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:32:28.850Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:32:28.850Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:32:29.713Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1217, "blockHeight": 1217, "took": "3.682288ms"} -2023-12-15T14:32:29.847Z INFO sending PrepareRequest {"height": 1218, "view": 0} -2023-12-15T14:32:29.847Z INFO sending Commit {"height": 1218, "view": 0} -2023-12-15T14:32:29.847Z INFO approving block {"height": 1218, "hash": "281b1fc5b551c82e7faa21114d12754f6a522f60178244bc93b431d4f85f0957", "tx_count": 2, "merkle": "c80d0a613d877c6dad73afaa9dac9ecce89276be20645926cc84936f9a5c17aa", "prev": "0329fb3774af5ffe29de08bddf83678ed5c84845c11ce1b84c81c2c965673aa8"} -2023-12-15T14:32:29.848Z INFO runtime log {"tx": "444e13b47de74ce492c31f4e648906455fe1f6e7fda4fc34138fe45d86b7a0df", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:32:29.848Z INFO runtime log {"tx": "444e13b47de74ce492c31f4e648906455fe1f6e7fda4fc34138fe45d86b7a0df", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:32:29.849Z INFO initializing dbft {"height": 1219, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:29.849Z debug frostfs-node/morph.go:229 new block {"index": 1218} -2023-12-15T14:32:30.713Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1218, "blockHeight": 1218, "took": "2.793402ms"} -2023-12-15T14:32:30.849Z INFO sending PrepareRequest {"height": 1219, "view": 0} -2023-12-15T14:32:30.849Z INFO sending Commit {"height": 1219, "view": 0} -2023-12-15T14:32:30.849Z INFO approving block {"height": 1219, "hash": "4ac4a1906aa1efee7518a4b451f406d9648848bfad1b0df4f021afa613dec62a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "281b1fc5b551c82e7faa21114d12754f6a522f60178244bc93b431d4f85f0957"} -2023-12-15T14:32:30.850Z INFO initializing dbft {"height": 1220, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:30.851Z debug frostfs-node/morph.go:229 new block {"index": 1219} -2023-12-15T14:32:31.715Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1219, "blockHeight": 1219, "took": "4.169542ms"} -2023-12-15T14:32:31.850Z INFO sending PrepareRequest {"height": 1220, "view": 0} -2023-12-15T14:32:31.850Z INFO sending Commit {"height": 1220, "view": 0} -2023-12-15T14:32:31.850Z INFO approving block {"height": 1220, "hash": "5eaf9945ce6357bfe79e4c78905018a90d67745ec723b6455510618e06fdb69a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ac4a1906aa1efee7518a4b451f406d9648848bfad1b0df4f021afa613dec62a"} -2023-12-15T14:32:31.851Z INFO initializing dbft {"height": 1221, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:31.852Z debug frostfs-node/morph.go:229 new block {"index": 1220} -2023-12-15T14:32:32.713Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1220, "blockHeight": 1220, "took": "2.525834ms"} -2023-12-15T14:32:32.852Z INFO sending PrepareRequest {"height": 1221, "view": 0} -2023-12-15T14:32:32.852Z INFO sending Commit {"height": 1221, "view": 0} -2023-12-15T14:32:32.852Z INFO approving block {"height": 1221, "hash": "995028585a2974517ae0da431084249eeab1b2cc2dd708c8ee6817a517e7b68c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5eaf9945ce6357bfe79e4c78905018a90d67745ec723b6455510618e06fdb69a"} -2023-12-15T14:32:32.853Z INFO initializing dbft {"height": 1222, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:32.853Z debug frostfs-node/morph.go:229 new block {"index": 1221} -2023-12-15T14:32:33.715Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1221, "blockHeight": 1221, "took": "3.874263ms"} -2023-12-15T14:32:33.853Z INFO sending PrepareRequest {"height": 1222, "view": 0} -2023-12-15T14:32:33.854Z INFO sending Commit {"height": 1222, "view": 0} -2023-12-15T14:32:33.854Z INFO approving block {"height": 1222, "hash": "224344b44a90b2b2660b169a557a82773b4faab26ed8f045901d23f4a018e214", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "995028585a2974517ae0da431084249eeab1b2cc2dd708c8ee6817a517e7b68c"} -2023-12-15T14:32:33.855Z INFO initializing dbft {"height": 1223, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:33.856Z debug frostfs-node/morph.go:229 new block {"index": 1222} -2023-12-15T14:32:34.716Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1222, "blockHeight": 1222, "took": "4.222544ms"} -2023-12-15T14:32:34.855Z INFO sending PrepareRequest {"height": 1223, "view": 0} -2023-12-15T14:32:34.855Z INFO sending Commit {"height": 1223, "view": 0} -2023-12-15T14:32:34.855Z INFO approving block {"height": 1223, "hash": "29c8af59531664088ed2d06ddd2f236e7ec4a90054bb4588fc484544896b5716", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "224344b44a90b2b2660b169a557a82773b4faab26ed8f045901d23f4a018e214"} -2023-12-15T14:32:34.856Z INFO initializing dbft {"height": 1224, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:34.857Z debug frostfs-node/morph.go:229 new block {"index": 1223} -2023-12-15T14:32:35.715Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1223, "blockHeight": 1223, "took": "2.75447ms"} -2023-12-15T14:32:35.856Z INFO sending PrepareRequest {"height": 1224, "view": 0} -2023-12-15T14:32:35.856Z INFO sending Commit {"height": 1224, "view": 0} -2023-12-15T14:32:35.857Z INFO approving block {"height": 1224, "hash": "aec55b1c8b68c85e688e2ab0996c0d8cdc2126a5d89f7cd6f2b0916d969dafbf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29c8af59531664088ed2d06ddd2f236e7ec4a90054bb4588fc484544896b5716"} -2023-12-15T14:32:35.857Z INFO initializing dbft {"height": 1225, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:35.858Z debug frostfs-node/morph.go:229 new block {"index": 1224} -2023-12-15T14:32:36.717Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1224, "blockHeight": 1224, "took": "3.973294ms"} -2023-12-15T14:32:36.858Z INFO sending PrepareRequest {"height": 1225, "view": 0} -2023-12-15T14:32:36.858Z INFO sending Commit {"height": 1225, "view": 0} -2023-12-15T14:32:36.858Z INFO approving block {"height": 1225, "hash": "9482261ff8186f2084fb41d7873ac3b4594f7f35eef5bb15cdaf5bf9e2c1c0d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aec55b1c8b68c85e688e2ab0996c0d8cdc2126a5d89f7cd6f2b0916d969dafbf"} -2023-12-15T14:32:36.859Z INFO initializing dbft {"height": 1226, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:36.859Z debug frostfs-node/morph.go:229 new block {"index": 1225} -2023-12-15T14:32:37.716Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1225, "blockHeight": 1225, "took": "2.73496ms"} -2023-12-15T14:32:37.860Z INFO sending PrepareRequest {"height": 1226, "view": 0} -2023-12-15T14:32:37.860Z INFO sending Commit {"height": 1226, "view": 0} -2023-12-15T14:32:37.861Z INFO approving block {"height": 1226, "hash": "4eb5a9754fbf6fd2f607b1d6b77760813c2777b9bc97ad72df4bf922914944fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9482261ff8186f2084fb41d7873ac3b4594f7f35eef5bb15cdaf5bf9e2c1c0d9"} -2023-12-15T14:32:37.862Z INFO initializing dbft {"height": 1227, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:37.863Z debug frostfs-node/morph.go:229 new block {"index": 1226} -2023-12-15T14:32:38.718Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1226, "blockHeight": 1226, "took": "3.972756ms"} -2023-12-15T14:32:38.861Z INFO sending PrepareRequest {"height": 1227, "view": 0} -2023-12-15T14:32:38.861Z INFO sending Commit {"height": 1227, "view": 0} -2023-12-15T14:32:38.862Z INFO approving block {"height": 1227, "hash": "fa0f200900186decb01579cb38f23babc5459800f5701d08cbf120588dbb3cb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4eb5a9754fbf6fd2f607b1d6b77760813c2777b9bc97ad72df4bf922914944fd"} -2023-12-15T14:32:38.863Z INFO initializing dbft {"height": 1228, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:38.863Z debug frostfs-node/morph.go:229 new block {"index": 1227} -2023-12-15T14:32:39.719Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1227, "blockHeight": 1227, "took": "4.219633ms"} -2023-12-15T14:32:39.863Z INFO sending PrepareRequest {"height": 1228, "view": 0} -2023-12-15T14:32:39.863Z INFO sending Commit {"height": 1228, "view": 0} -2023-12-15T14:32:39.863Z INFO approving block {"height": 1228, "hash": "137f8217c07eaf72984a2695804306e4bbcd4725f06980871f3a00cc7f61034d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa0f200900186decb01579cb38f23babc5459800f5701d08cbf120588dbb3cb0"} -2023-12-15T14:32:39.865Z INFO initializing dbft {"height": 1229, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:39.865Z debug frostfs-node/morph.go:229 new block {"index": 1228} -2023-12-15T14:32:40.722Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1228, "blockHeight": 1228, "took": "6.786485ms"} -2023-12-15T14:32:40.864Z INFO sending PrepareRequest {"height": 1229, "view": 0} -2023-12-15T14:32:40.864Z INFO sending Commit {"height": 1229, "view": 0} -2023-12-15T14:32:40.865Z INFO approving block {"height": 1229, "hash": "2d74bc7c5e7f300c87e823cec65f39fe2f323bcb5e113c802088ecd2bb3574ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "137f8217c07eaf72984a2695804306e4bbcd4725f06980871f3a00cc7f61034d"} -2023-12-15T14:32:40.866Z INFO initializing dbft {"height": 1230, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:40.866Z debug frostfs-node/morph.go:229 new block {"index": 1229} -2023-12-15T14:32:41.721Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1229, "blockHeight": 1229, "took": "4.438472ms"} -2023-12-15T14:32:41.866Z INFO sending PrepareRequest {"height": 1230, "view": 0} -2023-12-15T14:32:41.867Z INFO sending Commit {"height": 1230, "view": 0} -2023-12-15T14:32:41.867Z INFO approving block {"height": 1230, "hash": "930076084bb30f43e2fff03196f77c28126ee03b4968571d858a0c0caaa392e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d74bc7c5e7f300c87e823cec65f39fe2f323bcb5e113c802088ecd2bb3574ad"} -2023-12-15T14:32:41.868Z INFO initializing dbft {"height": 1231, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:41.869Z debug frostfs-node/morph.go:229 new block {"index": 1230} -2023-12-15T14:32:42.720Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1230, "blockHeight": 1230, "took": "2.861998ms"} -2023-12-15T14:32:42.868Z INFO sending PrepareRequest {"height": 1231, "view": 0} -2023-12-15T14:32:42.868Z INFO sending Commit {"height": 1231, "view": 0} -2023-12-15T14:32:42.868Z INFO approving block {"height": 1231, "hash": "6fca8804bb13f22a03e544c49bf72a948996534c1b77e1e9f69681f883999eb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "930076084bb30f43e2fff03196f77c28126ee03b4968571d858a0c0caaa392e1"} -2023-12-15T14:32:42.869Z INFO initializing dbft {"height": 1232, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:42.869Z debug frostfs-node/morph.go:229 new block {"index": 1231} -2023-12-15T14:32:43.724Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1231, "blockHeight": 1231, "took": "6.426088ms"} -2023-12-15T14:32:43.869Z INFO sending PrepareRequest {"height": 1232, "view": 0} -2023-12-15T14:32:43.869Z INFO sending Commit {"height": 1232, "view": 0} -2023-12-15T14:32:43.869Z INFO approving block {"height": 1232, "hash": "5b66761fa80ed5508263197b78a13d4c7726324c72613e92c38c476fe2243804", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fca8804bb13f22a03e544c49bf72a948996534c1b77e1e9f69681f883999eb1"} -2023-12-15T14:32:43.870Z INFO initializing dbft {"height": 1233, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:43.871Z debug frostfs-node/morph.go:229 new block {"index": 1232} -2023-12-15T14:32:44.722Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1232, "blockHeight": 1232, "took": "4.34388ms"} -2023-12-15T14:32:44.871Z INFO sending PrepareRequest {"height": 1233, "view": 0} -2023-12-15T14:32:44.871Z INFO sending Commit {"height": 1233, "view": 0} -2023-12-15T14:32:44.871Z INFO approving block {"height": 1233, "hash": "72bbd3e0f52b37d3bafad8d5d94de9384b5cd69768e5f02ce0674b639c90c26e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b66761fa80ed5508263197b78a13d4c7726324c72613e92c38c476fe2243804"} -2023-12-15T14:32:44.872Z INFO initializing dbft {"height": 1234, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:44.872Z debug frostfs-node/morph.go:229 new block {"index": 1233} -2023-12-15T14:32:45.723Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1233, "blockHeight": 1233, "took": "4.286818ms"} -2023-12-15T14:32:45.872Z INFO sending PrepareRequest {"height": 1234, "view": 0} -2023-12-15T14:32:45.872Z INFO sending Commit {"height": 1234, "view": 0} -2023-12-15T14:32:45.872Z INFO approving block {"height": 1234, "hash": "390879df682c6949fde974f4789bf5c9aadf5007e9727fe2d2e4e312c1ffe1ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72bbd3e0f52b37d3bafad8d5d94de9384b5cd69768e5f02ce0674b639c90c26e"} -2023-12-15T14:32:45.873Z INFO initializing dbft {"height": 1235, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:45.874Z debug frostfs-node/morph.go:229 new block {"index": 1234} -2023-12-15T14:32:46.724Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1234, "blockHeight": 1234, "took": "5.24902ms"} -2023-12-15T14:32:46.874Z INFO sending PrepareRequest {"height": 1235, "view": 0} -2023-12-15T14:32:46.874Z INFO sending Commit {"height": 1235, "view": 0} -2023-12-15T14:32:46.874Z INFO approving block {"height": 1235, "hash": "5d97fe03079fc80fd8dde35ead5ed77956d7fa0239ef8fe0aa2c0e7aa57f7c48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "390879df682c6949fde974f4789bf5c9aadf5007e9727fe2d2e4e312c1ffe1ff"} -2023-12-15T14:32:46.875Z INFO initializing dbft {"height": 1236, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:46.875Z debug frostfs-node/morph.go:229 new block {"index": 1235} -2023-12-15T14:32:47.723Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1235, "blockHeight": 1235, "took": "3.923891ms"} -2023-12-15T14:32:47.875Z INFO sending PrepareRequest {"height": 1236, "view": 0} -2023-12-15T14:32:47.876Z INFO sending Commit {"height": 1236, "view": 0} -2023-12-15T14:32:47.876Z INFO approving block {"height": 1236, "hash": "18909964121606321b15c57fb57244b8a00637cbf7008934cdfd42e760342384", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d97fe03079fc80fd8dde35ead5ed77956d7fa0239ef8fe0aa2c0e7aa57f7c48"} -2023-12-15T14:32:47.877Z INFO initializing dbft {"height": 1237, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:47.878Z debug frostfs-node/morph.go:229 new block {"index": 1236} -2023-12-15T14:32:48.724Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1236, "blockHeight": 1236, "took": "4.178439ms"} -2023-12-15T14:32:48.877Z INFO sending PrepareRequest {"height": 1237, "view": 0} -2023-12-15T14:32:48.877Z INFO sending Commit {"height": 1237, "view": 0} -2023-12-15T14:32:48.877Z INFO approving block {"height": 1237, "hash": "ba8fa5d5c8fbf5d7609c8b639c8b429bcfbd17e4fd1fd7a688d68d28f738cfb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18909964121606321b15c57fb57244b8a00637cbf7008934cdfd42e760342384"} -2023-12-15T14:32:48.878Z INFO initializing dbft {"height": 1238, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:48.879Z debug frostfs-node/morph.go:229 new block {"index": 1237} -2023-12-15T14:32:49.727Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1237, "blockHeight": 1237, "took": "6.257022ms"} -2023-12-15T14:32:49.878Z INFO sending PrepareRequest {"height": 1238, "view": 0} -2023-12-15T14:32:49.879Z INFO sending Commit {"height": 1238, "view": 0} -2023-12-15T14:32:49.879Z INFO approving block {"height": 1238, "hash": "69e050eb4cf9822d5edb43b7e7fd40a763a65fdfac837d4a279bd34c8af5e1d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba8fa5d5c8fbf5d7609c8b639c8b429bcfbd17e4fd1fd7a688d68d28f738cfb2"} -2023-12-15T14:32:49.880Z INFO initializing dbft {"height": 1239, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:49.880Z debug frostfs-node/morph.go:229 new block {"index": 1238} -2023-12-15T14:32:50.726Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1238, "blockHeight": 1238, "took": "4.438374ms"} -2023-12-15T14:32:50.880Z INFO sending PrepareRequest {"height": 1239, "view": 0} -2023-12-15T14:32:50.880Z INFO sending Commit {"height": 1239, "view": 0} -2023-12-15T14:32:50.880Z INFO approving block {"height": 1239, "hash": "242c52b5a2d17d5e041c7f8a3f5d4b54237d1e4efcdf634b9fb306d9e46d781d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69e050eb4cf9822d5edb43b7e7fd40a763a65fdfac837d4a279bd34c8af5e1d4"} -2023-12-15T14:32:50.882Z INFO initializing dbft {"height": 1240, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:50.882Z debug frostfs-node/morph.go:229 new block {"index": 1239} -2023-12-15T14:32:51.725Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1239, "blockHeight": 1239, "took": "3.719846ms"} -2023-12-15T14:32:51.881Z INFO sending PrepareRequest {"height": 1240, "view": 0} -2023-12-15T14:32:51.882Z INFO sending Commit {"height": 1240, "view": 0} -2023-12-15T14:32:51.882Z INFO approving block {"height": 1240, "hash": "6a9b9e09f858ca4f573f7175f158e0287995eef04dd3c065cfce29ba7d0d911e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "242c52b5a2d17d5e041c7f8a3f5d4b54237d1e4efcdf634b9fb306d9e46d781d"} -2023-12-15T14:32:51.883Z INFO initializing dbft {"height": 1241, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:51.883Z debug frostfs-node/morph.go:229 new block {"index": 1240} -2023-12-15T14:32:52.726Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1240, "blockHeight": 1240, "took": "4.18573ms"} -2023-12-15T14:32:52.883Z INFO sending PrepareRequest {"height": 1241, "view": 0} -2023-12-15T14:32:52.883Z INFO sending Commit {"height": 1241, "view": 0} -2023-12-15T14:32:52.883Z INFO approving block {"height": 1241, "hash": "349afeff668000929084c1192c429ffca204bf3dddfd321b9c1f9cc9019b826e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a9b9e09f858ca4f573f7175f158e0287995eef04dd3c065cfce29ba7d0d911e"} -2023-12-15T14:32:52.884Z INFO initializing dbft {"height": 1242, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:52.884Z debug frostfs-node/morph.go:229 new block {"index": 1241} -2023-12-15T14:32:53.726Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1241, "blockHeight": 1241, "took": "3.214235ms"} -2023-12-15T14:32:53.885Z INFO sending PrepareRequest {"height": 1242, "view": 0} -2023-12-15T14:32:53.885Z INFO sending Commit {"height": 1242, "view": 0} -2023-12-15T14:32:53.885Z INFO approving block {"height": 1242, "hash": "f639172ecfe34f781982cfa2baaf253c1ff6fc437151517fa783da679b635506", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "349afeff668000929084c1192c429ffca204bf3dddfd321b9c1f9cc9019b826e"} -2023-12-15T14:32:53.887Z INFO initializing dbft {"height": 1243, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:53.887Z debug frostfs-node/morph.go:229 new block {"index": 1242} -2023-12-15T14:32:54.727Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1242, "blockHeight": 1242, "took": "3.809614ms"} -2023-12-15T14:32:54.886Z INFO sending PrepareRequest {"height": 1243, "view": 0} -2023-12-15T14:32:54.886Z INFO sending Commit {"height": 1243, "view": 0} -2023-12-15T14:32:54.886Z INFO approving block {"height": 1243, "hash": "0cc205fcd02ab6ec25992989a5c51b3a0a090748190288e3b87e629a10335331", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f639172ecfe34f781982cfa2baaf253c1ff6fc437151517fa783da679b635506"} -2023-12-15T14:32:54.887Z INFO initializing dbft {"height": 1244, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:54.888Z debug frostfs-node/morph.go:229 new block {"index": 1243} -2023-12-15T14:32:55.728Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1243, "blockHeight": 1243, "took": "4.378209ms"} -2023-12-15T14:32:55.887Z INFO sending PrepareRequest {"height": 1244, "view": 0} -2023-12-15T14:32:55.888Z INFO sending Commit {"height": 1244, "view": 0} -2023-12-15T14:32:55.888Z INFO approving block {"height": 1244, "hash": "9f2d5ac7bb8dda0ec36950df2e642b90d2f978a4c16bfa56f412fc1de2e37776", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cc205fcd02ab6ec25992989a5c51b3a0a090748190288e3b87e629a10335331"} -2023-12-15T14:32:55.888Z INFO initializing dbft {"height": 1245, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:55.889Z debug frostfs-node/morph.go:229 new block {"index": 1244} -2023-12-15T14:32:56.729Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1244, "blockHeight": 1244, "took": "4.475234ms"} -2023-12-15T14:32:56.889Z INFO sending PrepareRequest {"height": 1245, "view": 0} -2023-12-15T14:32:56.889Z INFO sending Commit {"height": 1245, "view": 0} -2023-12-15T14:32:56.889Z INFO approving block {"height": 1245, "hash": "eb921eb2b3845cde2dc6d690b3cd7b1072af0e7c7cffd84438de9547bf1bfd12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f2d5ac7bb8dda0ec36950df2e642b90d2f978a4c16bfa56f412fc1de2e37776"} -2023-12-15T14:32:56.890Z INFO initializing dbft {"height": 1246, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:56.891Z debug frostfs-node/morph.go:229 new block {"index": 1245} -2023-12-15T14:32:57.730Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1245, "blockHeight": 1245, "took": "4.092603ms"} -2023-12-15T14:32:57.891Z INFO sending PrepareRequest {"height": 1246, "view": 0} -2023-12-15T14:32:57.891Z INFO sending Commit {"height": 1246, "view": 0} -2023-12-15T14:32:57.891Z INFO approving block {"height": 1246, "hash": "3c128348c53ef4f92e87e0697a87a92cf3e78fda5acd4b7dc819aee8d1decf14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb921eb2b3845cde2dc6d690b3cd7b1072af0e7c7cffd84438de9547bf1bfd12"} -2023-12-15T14:32:57.892Z INFO initializing dbft {"height": 1247, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:57.892Z debug frostfs-node/morph.go:229 new block {"index": 1246} -2023-12-15T14:32:58.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1246, "blockHeight": 1246, "took": "4.911855ms"} -2023-12-15T14:32:58.892Z INFO sending PrepareRequest {"height": 1247, "view": 0} -2023-12-15T14:32:58.892Z INFO sending Commit {"height": 1247, "view": 0} -2023-12-15T14:32:58.892Z INFO approving block {"height": 1247, "hash": "2213fb1990ddd32fedfe28180c3beb3ad6ec10b6034bcc6d2ace54983f7c825d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c128348c53ef4f92e87e0697a87a92cf3e78fda5acd4b7dc819aee8d1decf14"} -2023-12-15T14:32:58.894Z INFO initializing dbft {"height": 1248, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:58.895Z debug frostfs-node/morph.go:229 new block {"index": 1247} -2023-12-15T14:32:59.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1247, "blockHeight": 1247, "took": "4.042548ms"} -2023-12-15T14:32:59.894Z INFO sending PrepareRequest {"height": 1248, "view": 0} -2023-12-15T14:32:59.894Z INFO sending Commit {"height": 1248, "view": 0} -2023-12-15T14:32:59.894Z INFO approving block {"height": 1248, "hash": "d4c67abb166f4d13c443eb7d74baedec829b5e48f8814ed2f96725f1fa63c486", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2213fb1990ddd32fedfe28180c3beb3ad6ec10b6034bcc6d2ace54983f7c825d"} -2023-12-15T14:32:59.895Z INFO initializing dbft {"height": 1249, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:32:59.895Z debug frostfs-node/morph.go:229 new block {"index": 1248} -2023-12-15T14:33:00.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1248, "blockHeight": 1248, "took": "3.586849ms"} -2023-12-15T14:33:00.896Z INFO sending PrepareRequest {"height": 1249, "view": 0} -2023-12-15T14:33:00.896Z INFO sending Commit {"height": 1249, "view": 0} -2023-12-15T14:33:00.897Z INFO approving block {"height": 1249, "hash": "c06931a033f3cd762c2aecb386f648657cbec463b457fa056ccfbb56735002dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4c67abb166f4d13c443eb7d74baedec829b5e48f8814ed2f96725f1fa63c486"} -2023-12-15T14:33:00.898Z INFO initializing dbft {"height": 1250, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:00.898Z debug frostfs-node/morph.go:229 new block {"index": 1249} -2023-12-15T14:33:01.734Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1249, "blockHeight": 1249, "took": "5.246827ms"} -2023-12-15T14:33:01.898Z INFO sending PrepareRequest {"height": 1250, "view": 0} -2023-12-15T14:33:01.899Z INFO sending Commit {"height": 1250, "view": 0} -2023-12-15T14:33:01.899Z INFO approving block {"height": 1250, "hash": "c24301dbabd18c649f50ebeddc6f5de79d1f46ba6b97fd2e1909d8023696639b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c06931a033f3cd762c2aecb386f648657cbec463b457fa056ccfbb56735002dc"} -2023-12-15T14:33:01.900Z INFO initializing dbft {"height": 1251, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:01.901Z debug frostfs-node/morph.go:229 new block {"index": 1250} -2023-12-15T14:33:02.734Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1250, "blockHeight": 1250, "took": "4.880909ms"} -2023-12-15T14:33:02.900Z INFO sending PrepareRequest {"height": 1251, "view": 0} -2023-12-15T14:33:02.900Z INFO sending Commit {"height": 1251, "view": 0} -2023-12-15T14:33:02.900Z INFO approving block {"height": 1251, "hash": "2569f8c50f7b6ccbff355a9a5249cd15296fd9f0bb1ed614870b2b5c91d985d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c24301dbabd18c649f50ebeddc6f5de79d1f46ba6b97fd2e1909d8023696639b"} -2023-12-15T14:33:02.901Z INFO initializing dbft {"height": 1252, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:02.901Z debug frostfs-node/morph.go:229 new block {"index": 1251} -2023-12-15T14:33:03.733Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1251, "blockHeight": 1251, "took": "3.955665ms"} -2023-12-15T14:33:03.901Z INFO sending PrepareRequest {"height": 1252, "view": 0} -2023-12-15T14:33:03.901Z INFO sending Commit {"height": 1252, "view": 0} -2023-12-15T14:33:03.902Z INFO approving block {"height": 1252, "hash": "7f9c118cfb7ad7eed7ff146458f10eb5ebe0f1fdaf26f785576394761e6dcc10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2569f8c50f7b6ccbff355a9a5249cd15296fd9f0bb1ed614870b2b5c91d985d9"} -2023-12-15T14:33:03.903Z INFO initializing dbft {"height": 1253, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:03.904Z debug frostfs-node/morph.go:229 new block {"index": 1252} -2023-12-15T14:33:04.735Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1252, "blockHeight": 1252, "took": "4.596994ms"} -2023-12-15T14:33:04.903Z INFO sending PrepareRequest {"height": 1253, "view": 0} -2023-12-15T14:33:04.903Z INFO sending Commit {"height": 1253, "view": 0} -2023-12-15T14:33:04.903Z INFO approving block {"height": 1253, "hash": "20fb83d8d075619acc9736adec3bd1bbad274f7a583f578a743ca521e421dc67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f9c118cfb7ad7eed7ff146458f10eb5ebe0f1fdaf26f785576394761e6dcc10"} -2023-12-15T14:33:04.904Z INFO initializing dbft {"height": 1254, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:04.904Z debug frostfs-node/morph.go:229 new block {"index": 1253} -2023-12-15T14:33:05.735Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1253, "blockHeight": 1253, "took": "4.247023ms"} -2023-12-15T14:33:05.904Z INFO sending PrepareRequest {"height": 1254, "view": 0} -2023-12-15T14:33:05.904Z INFO sending Commit {"height": 1254, "view": 0} -2023-12-15T14:33:05.905Z INFO approving block {"height": 1254, "hash": "8b87c0c893a32923b4203ba1ba133ce52fc3507d6c3285e8cdebb2e2b6a3d227", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20fb83d8d075619acc9736adec3bd1bbad274f7a583f578a743ca521e421dc67"} -2023-12-15T14:33:05.905Z INFO initializing dbft {"height": 1255, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:05.906Z debug frostfs-node/morph.go:229 new block {"index": 1254} -2023-12-15T14:33:06.734Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1254, "blockHeight": 1254, "took": "3.208663ms"} -2023-12-15T14:33:06.906Z INFO sending PrepareRequest {"height": 1255, "view": 0} -2023-12-15T14:33:06.906Z INFO sending Commit {"height": 1255, "view": 0} -2023-12-15T14:33:06.906Z INFO approving block {"height": 1255, "hash": "67a333f7e248df8bbb5eb7e0ea1f37e345056ca1aade1bdccaddb3cd0f81d3ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b87c0c893a32923b4203ba1ba133ce52fc3507d6c3285e8cdebb2e2b6a3d227"} -2023-12-15T14:33:06.908Z INFO initializing dbft {"height": 1256, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:06.908Z debug frostfs-node/morph.go:229 new block {"index": 1255} -2023-12-15T14:33:07.736Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1255, "blockHeight": 1255, "took": "4.197922ms"} -2023-12-15T14:33:07.907Z INFO sending PrepareRequest {"height": 1256, "view": 0} -2023-12-15T14:33:07.908Z INFO sending Commit {"height": 1256, "view": 0} -2023-12-15T14:33:07.908Z INFO approving block {"height": 1256, "hash": "f8f6da9acc56501829a316ec504ebf64053a844940602600534345958352492f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67a333f7e248df8bbb5eb7e0ea1f37e345056ca1aade1bdccaddb3cd0f81d3ad"} -2023-12-15T14:33:07.909Z INFO initializing dbft {"height": 1257, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:07.909Z debug frostfs-node/morph.go:229 new block {"index": 1256} -2023-12-15T14:33:08.735Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1256, "blockHeight": 1256, "took": "3.069329ms"} -2023-12-15T14:33:08.909Z INFO sending PrepareRequest {"height": 1257, "view": 0} -2023-12-15T14:33:08.909Z INFO sending Commit {"height": 1257, "view": 0} -2023-12-15T14:33:08.909Z INFO approving block {"height": 1257, "hash": "511515a7a1e67c5dd5b696a6af9878334c4f7d1a5f317a2acf402d6a8aba488d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8f6da9acc56501829a316ec504ebf64053a844940602600534345958352492f"} -2023-12-15T14:33:08.910Z INFO initializing dbft {"height": 1258, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:08.911Z debug frostfs-node/morph.go:229 new block {"index": 1257} -2023-12-15T14:33:09.739Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1257, "blockHeight": 1257, "took": "5.958473ms"} -2023-12-15T14:33:09.910Z INFO sending PrepareRequest {"height": 1258, "view": 0} -2023-12-15T14:33:09.910Z INFO sending Commit {"height": 1258, "view": 0} -2023-12-15T14:33:09.911Z INFO approving block {"height": 1258, "hash": "1c6e5341f89733e66108acdd47702ebe4a01e59e2616fe6246de88d9454687fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "511515a7a1e67c5dd5b696a6af9878334c4f7d1a5f317a2acf402d6a8aba488d"} -2023-12-15T14:33:09.912Z INFO initializing dbft {"height": 1259, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:09.912Z debug frostfs-node/morph.go:229 new block {"index": 1258} -2023-12-15T14:33:10.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1258, "blockHeight": 1258, "took": "4.625404ms"} -2023-12-15T14:33:10.912Z INFO sending PrepareRequest {"height": 1259, "view": 0} -2023-12-15T14:33:10.912Z INFO sending Commit {"height": 1259, "view": 0} -2023-12-15T14:33:10.913Z INFO approving block {"height": 1259, "hash": "7d9d35b88c3917bb780de981452baa308dad67b1be13b82b2e2991f76c63ef76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c6e5341f89733e66108acdd47702ebe4a01e59e2616fe6246de88d9454687fe"} -2023-12-15T14:33:10.914Z INFO initializing dbft {"height": 1260, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:10.914Z debug frostfs-node/morph.go:229 new block {"index": 1259} -2023-12-15T14:33:11.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1259, "blockHeight": 1259, "took": "4.229102ms"} -2023-12-15T14:33:11.914Z INFO sending PrepareRequest {"height": 1260, "view": 0} -2023-12-15T14:33:11.914Z INFO sending Commit {"height": 1260, "view": 0} -2023-12-15T14:33:11.914Z INFO approving block {"height": 1260, "hash": "ee0b1de8926f58abea0b3df6aa347984e8a706b7c676a82e8f692238edf4e6f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d9d35b88c3917bb780de981452baa308dad67b1be13b82b2e2991f76c63ef76"} -2023-12-15T14:33:11.915Z INFO initializing dbft {"height": 1261, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:11.916Z debug frostfs-node/morph.go:229 new block {"index": 1260} -2023-12-15T14:33:12.740Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1260, "blockHeight": 1260, "took": "5.246382ms"} -2023-12-15T14:33:12.915Z INFO sending PrepareRequest {"height": 1261, "view": 0} -2023-12-15T14:33:12.915Z INFO sending Commit {"height": 1261, "view": 0} -2023-12-15T14:33:12.916Z INFO approving block {"height": 1261, "hash": "1bbebdd56b9f419489a0afb995b4cd8a1600fb92d9acae3679a0921bd994885e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee0b1de8926f58abea0b3df6aa347984e8a706b7c676a82e8f692238edf4e6f1"} -2023-12-15T14:33:12.916Z INFO initializing dbft {"height": 1262, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:12.917Z debug frostfs-node/morph.go:229 new block {"index": 1261} -2023-12-15T14:33:13.741Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1261, "blockHeight": 1261, "took": "5.674978ms"} -2023-12-15T14:33:13.917Z INFO sending PrepareRequest {"height": 1262, "view": 0} -2023-12-15T14:33:13.917Z INFO sending Commit {"height": 1262, "view": 0} -2023-12-15T14:33:13.918Z INFO approving block {"height": 1262, "hash": "2a7dd46823c7c9da1259dc75934f7aa0f00e6bcd232d7b9b0e2dcaebe8c8acce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bbebdd56b9f419489a0afb995b4cd8a1600fb92d9acae3679a0921bd994885e"} -2023-12-15T14:33:13.919Z INFO initializing dbft {"height": 1263, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:13.919Z debug frostfs-node/morph.go:229 new block {"index": 1262} -2023-12-15T14:33:14.740Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1262, "blockHeight": 1262, "took": "4.834178ms"} -2023-12-15T14:33:14.918Z INFO sending PrepareRequest {"height": 1263, "view": 0} -2023-12-15T14:33:14.919Z INFO sending Commit {"height": 1263, "view": 0} -2023-12-15T14:33:14.919Z INFO approving block {"height": 1263, "hash": "82f2c88cdce41330303ea87222abab4dfedebd9190fd0061d04e7c50bc1378e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a7dd46823c7c9da1259dc75934f7aa0f00e6bcd232d7b9b0e2dcaebe8c8acce"} -2023-12-15T14:33:14.920Z INFO initializing dbft {"height": 1264, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:14.920Z debug frostfs-node/morph.go:229 new block {"index": 1263} -2023-12-15T14:33:15.739Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1263, "blockHeight": 1263, "took": "2.832718ms"} -2023-12-15T14:33:15.920Z INFO sending PrepareRequest {"height": 1264, "view": 0} -2023-12-15T14:33:15.920Z INFO sending Commit {"height": 1264, "view": 0} -2023-12-15T14:33:15.921Z INFO approving block {"height": 1264, "hash": "0b0f95576b9e37e19f5d349926f3db28838f7edd5afd7dd8e567bcda36d0b20a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82f2c88cdce41330303ea87222abab4dfedebd9190fd0061d04e7c50bc1378e6"} -2023-12-15T14:33:15.922Z INFO initializing dbft {"height": 1265, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:15.922Z debug frostfs-node/morph.go:229 new block {"index": 1264} -2023-12-15T14:33:16.743Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1264, "blockHeight": 1264, "took": "6.017529ms"} -2023-12-15T14:33:16.922Z INFO sending PrepareRequest {"height": 1265, "view": 0} -2023-12-15T14:33:16.922Z INFO sending Commit {"height": 1265, "view": 0} -2023-12-15T14:33:16.922Z INFO approving block {"height": 1265, "hash": "0eea16bb38373c306b680a3a0e5dc00e763f90ccabaebc8bc33c2101f7311c9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b0f95576b9e37e19f5d349926f3db28838f7edd5afd7dd8e567bcda36d0b20a"} -2023-12-15T14:33:16.923Z INFO initializing dbft {"height": 1266, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:16.924Z debug frostfs-node/morph.go:229 new block {"index": 1265} -2023-12-15T14:33:16.927Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 6 epoch for daughters"} -2023-12-15T14:33:16.928Z INFO runtime log {"tx": "e85b0afbb7bb7ab554cbb6fc80e8f20acbf3a5f84dc518b131f3e69b3a4ff9a5", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:33:17.742Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1265, "blockHeight": 1265, "took": "4.387623ms"} -2023-12-15T14:33:17.924Z INFO sending PrepareRequest {"height": 1266, "view": 0} -2023-12-15T14:33:17.924Z INFO sending Commit {"height": 1266, "view": 0} -2023-12-15T14:33:17.924Z INFO approving block {"height": 1266, "hash": "87cc9f3cdcfafe75b9830f41ff868b053bbdb08fa6e370619d4617067bc49a76", "tx_count": 1, "merkle": "009dfb9b1042ad644db261d531091bfaa814a2d40e3b9911d27ac38b46cc7fc9", "prev": "0eea16bb38373c306b680a3a0e5dc00e763f90ccabaebc8bc33c2101f7311c9c"} -2023-12-15T14:33:17.925Z INFO runtime log {"tx": "c97fcc468bc37ad211993b0ed4a214a8fa1b0931d561b24d64ad42109bfb9d00", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:33:17.926Z INFO initializing dbft {"height": 1267, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:17.927Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 6} -2023-12-15T14:33:17.927Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 6} -2023-12-15T14:33:17.927Z debug frostfs-node/morph.go:229 new block {"index": 1266} -2023-12-15T14:33:18.742Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 1266, "blockHeight": 1266, "took": "3.987116ms"} -2023-12-15T14:33:18.925Z INFO sending PrepareRequest {"height": 1267, "view": 0} -2023-12-15T14:33:18.926Z INFO sending Commit {"height": 1267, "view": 0} -2023-12-15T14:33:18.926Z INFO approving block {"height": 1267, "hash": "beea456a961a846cbd3d71b612b4f8dcdee4da227d68ee738fb88e4e44231810", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87cc9f3cdcfafe75b9830f41ff868b053bbdb08fa6e370619d4617067bc49a76"} -2023-12-15T14:33:18.927Z INFO initializing dbft {"height": 1268, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:18.928Z debug frostfs-node/morph.go:229 new block {"index": 1267} -2023-12-15T14:33:18.930Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:33:18.931Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:33:18.931Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:33:19.743Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1267, "blockHeight": 1267, "took": "4.15685ms"} -2023-12-15T14:33:19.926Z INFO sending PrepareRequest {"height": 1268, "view": 0} -2023-12-15T14:33:19.927Z INFO sending Commit {"height": 1268, "view": 0} -2023-12-15T14:33:19.927Z INFO approving block {"height": 1268, "hash": "fe55dc7e033bade5d8ba1d0f040beaff49e9b10d1f54eb32cb23ca43a5ab71ae", "tx_count": 2, "merkle": "649a2ccd21d99c71ed60f3c4a23201752892ee8e18a641bca1d63ab68720b74b", "prev": "beea456a961a846cbd3d71b612b4f8dcdee4da227d68ee738fb88e4e44231810"} -2023-12-15T14:33:19.927Z INFO runtime log {"tx": "834ee2ab78fcfa199b19e7ac84339e2c6a18d6a0363ace14d15a2fe9867dd647", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:33:19.927Z INFO runtime log {"tx": "834ee2ab78fcfa199b19e7ac84339e2c6a18d6a0363ace14d15a2fe9867dd647", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:33:19.928Z INFO initializing dbft {"height": 1269, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:19.929Z debug frostfs-node/morph.go:229 new block {"index": 1268} -2023-12-15T14:33:20.745Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1268, "blockHeight": 1268, "took": "5.467309ms"} -2023-12-15T14:33:20.928Z INFO sending PrepareRequest {"height": 1269, "view": 0} -2023-12-15T14:33:20.929Z INFO sending Commit {"height": 1269, "view": 0} -2023-12-15T14:33:20.929Z INFO approving block {"height": 1269, "hash": "a92b28a30772c9c16baadd46a266a5b647d1faad137a7f7962d3ac5218123c48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe55dc7e033bade5d8ba1d0f040beaff49e9b10d1f54eb32cb23ca43a5ab71ae"} -2023-12-15T14:33:20.930Z INFO initializing dbft {"height": 1270, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:20.931Z debug frostfs-node/morph.go:229 new block {"index": 1269} -2023-12-15T14:33:21.744Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1269, "blockHeight": 1269, "took": "3.845334ms"} -2023-12-15T14:33:21.930Z INFO sending PrepareRequest {"height": 1270, "view": 0} -2023-12-15T14:33:21.930Z INFO sending Commit {"height": 1270, "view": 0} -2023-12-15T14:33:21.930Z INFO approving block {"height": 1270, "hash": "8eadccdd0903414320fecf9b53ba496cda24ea996941067fd9083fd43c2cd9f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a92b28a30772c9c16baadd46a266a5b647d1faad137a7f7962d3ac5218123c48"} -2023-12-15T14:33:21.932Z INFO initializing dbft {"height": 1271, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:21.932Z debug frostfs-node/morph.go:229 new block {"index": 1270} -2023-12-15T14:33:22.743Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1270, "blockHeight": 1270, "took": "2.828305ms"} -2023-12-15T14:33:22.931Z INFO sending PrepareRequest {"height": 1271, "view": 0} -2023-12-15T14:33:22.931Z INFO sending Commit {"height": 1271, "view": 0} -2023-12-15T14:33:22.932Z INFO approving block {"height": 1271, "hash": "8219f18b7fdc50aea2fc1051dc4f67e6be09784b569c1c7218a21448b398839b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8eadccdd0903414320fecf9b53ba496cda24ea996941067fd9083fd43c2cd9f2"} -2023-12-15T14:33:22.933Z INFO initializing dbft {"height": 1272, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:22.933Z debug frostfs-node/morph.go:229 new block {"index": 1271} -2023-12-15T14:33:23.745Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1271, "blockHeight": 1271, "took": "4.882776ms"} -2023-12-15T14:33:23.933Z INFO sending PrepareRequest {"height": 1272, "view": 0} -2023-12-15T14:33:23.933Z INFO sending Commit {"height": 1272, "view": 0} -2023-12-15T14:33:23.933Z INFO approving block {"height": 1272, "hash": "4732122d7731c678a3a68b2e9ed891835df3690b109a7d48576b64d798eb95ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8219f18b7fdc50aea2fc1051dc4f67e6be09784b569c1c7218a21448b398839b"} -2023-12-15T14:33:23.934Z INFO initializing dbft {"height": 1273, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:23.934Z debug frostfs-node/morph.go:229 new block {"index": 1272} -2023-12-15T14:33:24.745Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1272, "blockHeight": 1272, "took": "4.05831ms"} -2023-12-15T14:33:24.934Z INFO sending PrepareRequest {"height": 1273, "view": 0} -2023-12-15T14:33:24.934Z INFO sending Commit {"height": 1273, "view": 0} -2023-12-15T14:33:24.934Z INFO approving block {"height": 1273, "hash": "c332588a4746407e13a87a76939fe991053bb3dae67f0911a55ee119b07fbd7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4732122d7731c678a3a68b2e9ed891835df3690b109a7d48576b64d798eb95ae"} -2023-12-15T14:33:24.935Z INFO initializing dbft {"height": 1274, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:24.936Z debug frostfs-node/morph.go:229 new block {"index": 1273} -2023-12-15T14:33:25.745Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1273, "blockHeight": 1273, "took": "3.507494ms"} -2023-12-15T14:33:25.935Z INFO sending PrepareRequest {"height": 1274, "view": 0} -2023-12-15T14:33:25.935Z INFO sending Commit {"height": 1274, "view": 0} -2023-12-15T14:33:25.936Z INFO approving block {"height": 1274, "hash": "a5582ad18b2c0f800d55dfc6c2dac75eef8e1455cebbdfe8dad0d49c1411d347", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c332588a4746407e13a87a76939fe991053bb3dae67f0911a55ee119b07fbd7c"} -2023-12-15T14:33:25.937Z INFO initializing dbft {"height": 1275, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:25.938Z debug frostfs-node/morph.go:229 new block {"index": 1274} -2023-12-15T14:33:26.747Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1274, "blockHeight": 1274, "took": "4.990605ms"} -2023-12-15T14:33:26.937Z INFO sending PrepareRequest {"height": 1275, "view": 0} -2023-12-15T14:33:26.937Z INFO sending Commit {"height": 1275, "view": 0} -2023-12-15T14:33:26.937Z INFO approving block {"height": 1275, "hash": "da428267b1590af242878b64d39e1df4486bc513c0f2a50a57c927a10221412f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5582ad18b2c0f800d55dfc6c2dac75eef8e1455cebbdfe8dad0d49c1411d347"} -2023-12-15T14:33:26.938Z INFO initializing dbft {"height": 1276, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:26.939Z debug frostfs-node/morph.go:229 new block {"index": 1275} -2023-12-15T14:33:27.746Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1275, "blockHeight": 1275, "took": "3.02255ms"} -2023-12-15T14:33:27.939Z INFO sending PrepareRequest {"height": 1276, "view": 0} -2023-12-15T14:33:27.939Z INFO sending Commit {"height": 1276, "view": 0} -2023-12-15T14:33:27.939Z INFO approving block {"height": 1276, "hash": "40c16cc13517550a6b07f5ab8c28cc41569ce3fa559e053bf54c9bb90d0308b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da428267b1590af242878b64d39e1df4486bc513c0f2a50a57c927a10221412f"} -2023-12-15T14:33:27.940Z INFO initializing dbft {"height": 1277, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:27.941Z debug frostfs-node/morph.go:229 new block {"index": 1276} -2023-12-15T14:33:28.746Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1276, "blockHeight": 1276, "took": "2.96032ms"} -2023-12-15T14:33:28.940Z INFO sending PrepareRequest {"height": 1277, "view": 0} -2023-12-15T14:33:28.940Z INFO sending Commit {"height": 1277, "view": 0} -2023-12-15T14:33:28.940Z INFO approving block {"height": 1277, "hash": "b6997198d833f90b248006b2e083f107ea32e8679754387ec184edc8370b6691", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40c16cc13517550a6b07f5ab8c28cc41569ce3fa559e053bf54c9bb90d0308b3"} -2023-12-15T14:33:28.941Z INFO initializing dbft {"height": 1278, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:28.942Z debug frostfs-node/morph.go:229 new block {"index": 1277} -2023-12-15T14:33:29.750Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1277, "blockHeight": 1277, "took": "5.641771ms"} -2023-12-15T14:33:29.942Z INFO sending PrepareRequest {"height": 1278, "view": 0} -2023-12-15T14:33:29.942Z INFO sending Commit {"height": 1278, "view": 0} -2023-12-15T14:33:29.942Z INFO approving block {"height": 1278, "hash": "c262314c46f315db0f77f9d42a379ed143589c513e236030d5e36b89b3d133c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6997198d833f90b248006b2e083f107ea32e8679754387ec184edc8370b6691"} -2023-12-15T14:33:29.943Z INFO initializing dbft {"height": 1279, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:29.943Z debug frostfs-node/morph.go:229 new block {"index": 1278} -2023-12-15T14:33:30.751Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1278, "blockHeight": 1278, "took": "6.285778ms"} -2023-12-15T14:33:30.943Z INFO sending PrepareRequest {"height": 1279, "view": 0} -2023-12-15T14:33:30.943Z INFO sending Commit {"height": 1279, "view": 0} -2023-12-15T14:33:30.944Z INFO approving block {"height": 1279, "hash": "cd1f223dc5388008f1f9f59b7e631529f96e5a71cf5b339ad46871359654b664", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c262314c46f315db0f77f9d42a379ed143589c513e236030d5e36b89b3d133c6"} -2023-12-15T14:33:30.945Z INFO initializing dbft {"height": 1280, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:30.945Z debug frostfs-node/morph.go:229 new block {"index": 1279} -2023-12-15T14:33:31.750Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 1279, "blockHeight": 1279, "took": "5.106788ms"} -2023-12-15T14:33:31.945Z INFO sending PrepareRequest {"height": 1280, "view": 0} -2023-12-15T14:33:31.945Z INFO sending Commit {"height": 1280, "view": 0} -2023-12-15T14:33:31.946Z INFO approving block {"height": 1280, "hash": "75e806e418cd3ad49e62a60b5a32d57aada8ecd45e4a98a11ff992b31db0060c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd1f223dc5388008f1f9f59b7e631529f96e5a71cf5b339ad46871359654b664"} -2023-12-15T14:33:31.947Z INFO initializing dbft {"height": 1281, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:31.948Z debug frostfs-node/morph.go:229 new block {"index": 1280} -2023-12-15T14:33:32.750Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1280, "blockHeight": 1280, "took": "3.936265ms"} -2023-12-15T14:33:32.947Z INFO sending PrepareRequest {"height": 1281, "view": 0} -2023-12-15T14:33:32.947Z INFO sending Commit {"height": 1281, "view": 0} -2023-12-15T14:33:32.947Z INFO approving block {"height": 1281, "hash": "de46a8651c142a50198757f6209da1cab1858927043729be6ec69dc16859ad51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75e806e418cd3ad49e62a60b5a32d57aada8ecd45e4a98a11ff992b31db0060c"} -2023-12-15T14:33:32.949Z INFO initializing dbft {"height": 1282, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:32.949Z debug frostfs-node/morph.go:229 new block {"index": 1281} -2023-12-15T14:33:33.750Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1281, "blockHeight": 1281, "took": "3.825322ms"} -2023-12-15T14:33:33.949Z INFO sending PrepareRequest {"height": 1282, "view": 0} -2023-12-15T14:33:33.949Z INFO sending Commit {"height": 1282, "view": 0} -2023-12-15T14:33:33.949Z INFO approving block {"height": 1282, "hash": "6f54917376f6963bbbb4e19bd65dc28a289842310cf0114e56d2c21ba8809f2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de46a8651c142a50198757f6209da1cab1858927043729be6ec69dc16859ad51"} -2023-12-15T14:33:33.951Z INFO initializing dbft {"height": 1283, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:33.951Z debug frostfs-node/morph.go:229 new block {"index": 1282} -2023-12-15T14:33:34.751Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1282, "blockHeight": 1282, "took": "4.447001ms"} -2023-12-15T14:33:34.950Z INFO sending PrepareRequest {"height": 1283, "view": 0} -2023-12-15T14:33:34.950Z INFO sending Commit {"height": 1283, "view": 0} -2023-12-15T14:33:34.951Z INFO approving block {"height": 1283, "hash": "ac1243a928b074afd57164aa5aa8b2b9fd374644b0fd7436f1c0ed1bc4416d7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f54917376f6963bbbb4e19bd65dc28a289842310cf0114e56d2c21ba8809f2d"} -2023-12-15T14:33:34.952Z INFO initializing dbft {"height": 1284, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:34.952Z debug frostfs-node/morph.go:229 new block {"index": 1283} -2023-12-15T14:33:35.751Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1283, "blockHeight": 1283, "took": "3.642867ms"} -2023-12-15T14:33:35.952Z INFO sending PrepareRequest {"height": 1284, "view": 0} -2023-12-15T14:33:35.952Z INFO sending Commit {"height": 1284, "view": 0} -2023-12-15T14:33:35.952Z INFO approving block {"height": 1284, "hash": "ea0ae3584b8e6ed294a8c0d072f963ec0213d053e9d7065e259deb057816ab16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac1243a928b074afd57164aa5aa8b2b9fd374644b0fd7436f1c0ed1bc4416d7d"} -2023-12-15T14:33:35.953Z INFO initializing dbft {"height": 1285, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:35.953Z debug frostfs-node/morph.go:229 new block {"index": 1284} -2023-12-15T14:33:36.751Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1284, "blockHeight": 1284, "took": "3.696008ms"} -2023-12-15T14:33:36.954Z INFO sending PrepareRequest {"height": 1285, "view": 0} -2023-12-15T14:33:36.954Z INFO sending Commit {"height": 1285, "view": 0} -2023-12-15T14:33:36.954Z INFO approving block {"height": 1285, "hash": "f0081990bf13b80258efcf393a576af634d454b4f17a095cbcca3da1a9f9f435", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea0ae3584b8e6ed294a8c0d072f963ec0213d053e9d7065e259deb057816ab16"} -2023-12-15T14:33:36.955Z INFO initializing dbft {"height": 1286, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:36.956Z debug frostfs-node/morph.go:229 new block {"index": 1285} -2023-12-15T14:33:37.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1285, "blockHeight": 1285, "took": "7.446694ms"} -2023-12-15T14:33:37.955Z INFO sending PrepareRequest {"height": 1286, "view": 0} -2023-12-15T14:33:37.955Z INFO sending Commit {"height": 1286, "view": 0} -2023-12-15T14:33:37.955Z INFO approving block {"height": 1286, "hash": "0720bd46541c784865da8ba5fd289b35f7dc037069de9d1f368d8904ae76314d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0081990bf13b80258efcf393a576af634d454b4f17a095cbcca3da1a9f9f435"} -2023-12-15T14:33:37.956Z INFO initializing dbft {"height": 1287, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:37.957Z debug frostfs-node/morph.go:229 new block {"index": 1286} -2023-12-15T14:33:38.754Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1286, "blockHeight": 1286, "took": "5.512538ms"} -2023-12-15T14:33:38.956Z INFO sending PrepareRequest {"height": 1287, "view": 0} -2023-12-15T14:33:38.957Z INFO sending Commit {"height": 1287, "view": 0} -2023-12-15T14:33:38.957Z INFO approving block {"height": 1287, "hash": "b73e538772be08e295af257bf46d685de7734c579a90c860df41923d1e49f578", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0720bd46541c784865da8ba5fd289b35f7dc037069de9d1f368d8904ae76314d"} -2023-12-15T14:33:38.959Z INFO initializing dbft {"height": 1288, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:38.959Z debug frostfs-node/morph.go:229 new block {"index": 1287} -2023-12-15T14:33:39.754Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1287, "blockHeight": 1287, "took": "5.034147ms"} -2023-12-15T14:33:39.958Z INFO sending PrepareRequest {"height": 1288, "view": 0} -2023-12-15T14:33:39.958Z INFO sending Commit {"height": 1288, "view": 0} -2023-12-15T14:33:39.959Z INFO approving block {"height": 1288, "hash": "b231196b0e345f43a021e6faaea6619f957c69930c641acd31f6937e751223cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b73e538772be08e295af257bf46d685de7734c579a90c860df41923d1e49f578"} -2023-12-15T14:33:39.960Z INFO initializing dbft {"height": 1289, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:39.960Z debug frostfs-node/morph.go:229 new block {"index": 1288} -2023-12-15T14:33:40.753Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1288, "blockHeight": 1288, "took": "3.892043ms"} -2023-12-15T14:33:40.959Z INFO sending PrepareRequest {"height": 1289, "view": 0} -2023-12-15T14:33:40.960Z INFO sending Commit {"height": 1289, "view": 0} -2023-12-15T14:33:40.960Z INFO approving block {"height": 1289, "hash": "b8ec8525b7d58fbd1aeaabfb8dc981b731b577b2c39b2694a8ff540ac62c9723", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b231196b0e345f43a021e6faaea6619f957c69930c641acd31f6937e751223cf"} -2023-12-15T14:33:40.961Z INFO initializing dbft {"height": 1290, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:40.961Z debug frostfs-node/morph.go:229 new block {"index": 1289} -2023-12-15T14:33:41.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1289, "blockHeight": 1289, "took": "5.707026ms"} -2023-12-15T14:33:41.961Z INFO sending PrepareRequest {"height": 1290, "view": 0} -2023-12-15T14:33:41.961Z INFO sending Commit {"height": 1290, "view": 0} -2023-12-15T14:33:41.962Z INFO approving block {"height": 1290, "hash": "021d450602f3ee8c5cd3a314c9db6b01d97439cb4f69df0779d1f6fc46a4815e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8ec8525b7d58fbd1aeaabfb8dc981b731b577b2c39b2694a8ff540ac62c9723"} -2023-12-15T14:33:41.964Z INFO initializing dbft {"height": 1291, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:41.964Z debug frostfs-node/morph.go:229 new block {"index": 1290} -2023-12-15T14:33:42.755Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1290, "blockHeight": 1290, "took": "3.977496ms"} -2023-12-15T14:33:42.964Z INFO sending PrepareRequest {"height": 1291, "view": 0} -2023-12-15T14:33:42.964Z INFO sending Commit {"height": 1291, "view": 0} -2023-12-15T14:33:42.965Z INFO approving block {"height": 1291, "hash": "8a8c3e7ef208d6214460564c40db10b1c342042ec8fc7c8c266cb199e1894481", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "021d450602f3ee8c5cd3a314c9db6b01d97439cb4f69df0779d1f6fc46a4815e"} -2023-12-15T14:33:42.966Z INFO initializing dbft {"height": 1292, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:42.966Z debug frostfs-node/morph.go:229 new block {"index": 1291} -2023-12-15T14:33:43.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1291, "blockHeight": 1291, "took": "5.098358ms"} -2023-12-15T14:33:43.965Z INFO sending PrepareRequest {"height": 1292, "view": 0} -2023-12-15T14:33:43.965Z INFO sending Commit {"height": 1292, "view": 0} -2023-12-15T14:33:43.966Z INFO approving block {"height": 1292, "hash": "66063126f3277cd813fef921b0fd60170ca9af1def58821a4d47f4ec10da9de3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a8c3e7ef208d6214460564c40db10b1c342042ec8fc7c8c266cb199e1894481"} -2023-12-15T14:33:43.967Z INFO initializing dbft {"height": 1293, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:43.968Z debug frostfs-node/morph.go:229 new block {"index": 1292} -2023-12-15T14:33:44.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1292, "blockHeight": 1292, "took": "3.852771ms"} -2023-12-15T14:33:44.967Z INFO sending PrepareRequest {"height": 1293, "view": 0} -2023-12-15T14:33:44.967Z INFO sending Commit {"height": 1293, "view": 0} -2023-12-15T14:33:44.967Z INFO approving block {"height": 1293, "hash": "58b79cbe603ec43cb4506431416cf77cb2ec0adc01f3dec18153f46549381172", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66063126f3277cd813fef921b0fd60170ca9af1def58821a4d47f4ec10da9de3"} -2023-12-15T14:33:44.968Z INFO initializing dbft {"height": 1294, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:44.969Z debug frostfs-node/morph.go:229 new block {"index": 1293} -2023-12-15T14:33:45.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1293, "blockHeight": 1293, "took": "4.003577ms"} -2023-12-15T14:33:45.968Z INFO sending PrepareRequest {"height": 1294, "view": 0} -2023-12-15T14:33:45.968Z INFO sending Commit {"height": 1294, "view": 0} -2023-12-15T14:33:45.969Z INFO approving block {"height": 1294, "hash": "a72b63a613b87ec6563d724b55bcaa9e55c1920073f4e9a082350dfb2828138f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58b79cbe603ec43cb4506431416cf77cb2ec0adc01f3dec18153f46549381172"} -2023-12-15T14:33:45.970Z INFO initializing dbft {"height": 1295, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:45.971Z debug frostfs-node/morph.go:229 new block {"index": 1294} -2023-12-15T14:33:46.758Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1294, "blockHeight": 1294, "took": "5.253666ms"} -2023-12-15T14:33:46.969Z INFO sending PrepareRequest {"height": 1295, "view": 0} -2023-12-15T14:33:46.970Z INFO sending Commit {"height": 1295, "view": 0} -2023-12-15T14:33:46.970Z INFO approving block {"height": 1295, "hash": "563d471a777bfec9d839b3b2f67f650fd35d17d6e48fcff277ec52493d8c3453", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a72b63a613b87ec6563d724b55bcaa9e55c1920073f4e9a082350dfb2828138f"} -2023-12-15T14:33:46.971Z INFO initializing dbft {"height": 1296, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:46.972Z debug frostfs-node/morph.go:229 new block {"index": 1295} -2023-12-15T14:33:47.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1295, "blockHeight": 1295, "took": "2.622916ms"} -2023-12-15T14:33:47.971Z INFO sending PrepareRequest {"height": 1296, "view": 0} -2023-12-15T14:33:47.972Z INFO sending Commit {"height": 1296, "view": 0} -2023-12-15T14:33:47.972Z INFO approving block {"height": 1296, "hash": "3039e0588dbfeb44b89f2c32357f1ee36e4e52c8248881d2f63781ade651c9d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "563d471a777bfec9d839b3b2f67f650fd35d17d6e48fcff277ec52493d8c3453"} -2023-12-15T14:33:47.974Z INFO initializing dbft {"height": 1297, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:47.975Z debug frostfs-node/morph.go:229 new block {"index": 1296} -2023-12-15T14:33:48.757Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1296, "blockHeight": 1296, "took": "3.158378ms"} -2023-12-15T14:33:48.973Z INFO sending PrepareRequest {"height": 1297, "view": 0} -2023-12-15T14:33:48.973Z INFO sending Commit {"height": 1297, "view": 0} -2023-12-15T14:33:48.974Z INFO approving block {"height": 1297, "hash": "310ea1dcf859352169458ef16a475469a8b9a0bc29c8e21e146cc50ff5e53bda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3039e0588dbfeb44b89f2c32357f1ee36e4e52c8248881d2f63781ade651c9d6"} -2023-12-15T14:33:48.975Z INFO initializing dbft {"height": 1298, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:48.976Z debug frostfs-node/morph.go:229 new block {"index": 1297} -2023-12-15T14:33:49.759Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1297, "blockHeight": 1297, "took": "4.795631ms"} -2023-12-15T14:33:49.974Z INFO sending PrepareRequest {"height": 1298, "view": 0} -2023-12-15T14:33:49.975Z INFO sending Commit {"height": 1298, "view": 0} -2023-12-15T14:33:49.975Z INFO approving block {"height": 1298, "hash": "d8eb820adb1a88cef1763ab7941ee97008d061940c67c22d95657f3c9d561535", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "310ea1dcf859352169458ef16a475469a8b9a0bc29c8e21e146cc50ff5e53bda"} -2023-12-15T14:33:49.976Z INFO initializing dbft {"height": 1299, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:49.977Z debug frostfs-node/morph.go:229 new block {"index": 1298} -2023-12-15T14:33:50.758Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1298, "blockHeight": 1298, "took": "2.949286ms"} -2023-12-15T14:33:50.977Z INFO sending PrepareRequest {"height": 1299, "view": 0} -2023-12-15T14:33:50.977Z INFO sending Commit {"height": 1299, "view": 0} -2023-12-15T14:33:50.977Z INFO approving block {"height": 1299, "hash": "d23dd50631e4cc62dcd67383f6e1d3f05810af1bfa08cda87d961601b97bab23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8eb820adb1a88cef1763ab7941ee97008d061940c67c22d95657f3c9d561535"} -2023-12-15T14:33:50.978Z INFO initializing dbft {"height": 1300, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:50.978Z debug frostfs-node/morph.go:229 new block {"index": 1299} -2023-12-15T14:33:51.760Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1299, "blockHeight": 1299, "took": "4.281965ms"} -2023-12-15T14:33:51.978Z INFO sending PrepareRequest {"height": 1300, "view": 0} -2023-12-15T14:33:51.979Z INFO sending Commit {"height": 1300, "view": 0} -2023-12-15T14:33:51.979Z INFO approving block {"height": 1300, "hash": "9f8b06fba5884a7933005a775c4ce39ffb0089295037c7c413f4c5d7a68ed3f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d23dd50631e4cc62dcd67383f6e1d3f05810af1bfa08cda87d961601b97bab23"} -2023-12-15T14:33:51.980Z INFO initializing dbft {"height": 1301, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:51.981Z debug frostfs-node/morph.go:229 new block {"index": 1300} -2023-12-15T14:33:52.760Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1300, "blockHeight": 1300, "took": "4.082119ms"} -2023-12-15T14:33:52.979Z INFO sending PrepareRequest {"height": 1301, "view": 0} -2023-12-15T14:33:52.980Z INFO sending Commit {"height": 1301, "view": 0} -2023-12-15T14:33:52.980Z INFO approving block {"height": 1301, "hash": "4333e0fff44fe0ea5a7262bee8a7f60b096c67c0a5234f8994fa5128d2e452d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f8b06fba5884a7933005a775c4ce39ffb0089295037c7c413f4c5d7a68ed3f0"} -2023-12-15T14:33:52.981Z INFO initializing dbft {"height": 1302, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:52.981Z debug frostfs-node/morph.go:229 new block {"index": 1301} -2023-12-15T14:33:53.762Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1301, "blockHeight": 1301, "took": "6.234269ms"} -2023-12-15T14:33:53.981Z INFO sending PrepareRequest {"height": 1302, "view": 0} -2023-12-15T14:33:53.982Z INFO sending Commit {"height": 1302, "view": 0} -2023-12-15T14:33:53.982Z INFO approving block {"height": 1302, "hash": "209f565afeb95d62306744868b3b9096ef19ddb1bb847fc7d39b12bb3e334f54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4333e0fff44fe0ea5a7262bee8a7f60b096c67c0a5234f8994fa5128d2e452d7"} -2023-12-15T14:33:53.983Z INFO initializing dbft {"height": 1303, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:53.984Z debug frostfs-node/morph.go:229 new block {"index": 1302} -2023-12-15T14:33:54.763Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1302, "blockHeight": 1302, "took": "5.65597ms"} -2023-12-15T14:33:54.983Z INFO sending PrepareRequest {"height": 1303, "view": 0} -2023-12-15T14:33:54.983Z INFO sending Commit {"height": 1303, "view": 0} -2023-12-15T14:33:54.983Z INFO approving block {"height": 1303, "hash": "b23e70fd12fbf870a7851683e2bdb626a936ee3f7017d163f55280386c6f68d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "209f565afeb95d62306744868b3b9096ef19ddb1bb847fc7d39b12bb3e334f54"} -2023-12-15T14:33:54.984Z INFO initializing dbft {"height": 1304, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:54.984Z debug frostfs-node/morph.go:229 new block {"index": 1303} -2023-12-15T14:33:55.762Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1303, "blockHeight": 1303, "took": "4.393274ms"} -2023-12-15T14:33:55.984Z INFO sending PrepareRequest {"height": 1304, "view": 0} -2023-12-15T14:33:55.984Z INFO sending Commit {"height": 1304, "view": 0} -2023-12-15T14:33:55.984Z INFO approving block {"height": 1304, "hash": "5327f3719efd9c62c188edae5d2615de31af728a67c0960b238a58e1333f071f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b23e70fd12fbf870a7851683e2bdb626a936ee3f7017d163f55280386c6f68d1"} -2023-12-15T14:33:55.986Z INFO initializing dbft {"height": 1305, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:55.987Z debug frostfs-node/morph.go:229 new block {"index": 1304} -2023-12-15T14:33:56.765Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1304, "blockHeight": 1304, "took": "5.576481ms"} -2023-12-15T14:33:56.985Z INFO sending PrepareRequest {"height": 1305, "view": 0} -2023-12-15T14:33:56.985Z INFO sending Commit {"height": 1305, "view": 0} -2023-12-15T14:33:56.986Z INFO approving block {"height": 1305, "hash": "9c94a45ad59d714a26af940da100d4fa52240380cc0011a2ddaa305fb499514c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5327f3719efd9c62c188edae5d2615de31af728a67c0960b238a58e1333f071f"} -2023-12-15T14:33:56.986Z INFO initializing dbft {"height": 1306, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:56.987Z debug frostfs-node/morph.go:229 new block {"index": 1305} -2023-12-15T14:33:57.763Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1305, "blockHeight": 1305, "took": "3.067996ms"} -2023-12-15T14:33:57.987Z INFO sending PrepareRequest {"height": 1306, "view": 0} -2023-12-15T14:33:57.987Z INFO sending Commit {"height": 1306, "view": 0} -2023-12-15T14:33:57.988Z INFO approving block {"height": 1306, "hash": "7fabe65a5446720189944a1fc33f3792e5d0c7a936b8fffe600cd1a42182eedb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c94a45ad59d714a26af940da100d4fa52240380cc0011a2ddaa305fb499514c"} -2023-12-15T14:33:57.989Z INFO initializing dbft {"height": 1307, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:57.989Z debug frostfs-node/morph.go:229 new block {"index": 1306} -2023-12-15T14:33:58.764Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1306, "blockHeight": 1306, "took": "3.494807ms"} -2023-12-15T14:33:58.989Z INFO sending PrepareRequest {"height": 1307, "view": 0} -2023-12-15T14:33:58.989Z INFO sending Commit {"height": 1307, "view": 0} -2023-12-15T14:33:58.989Z INFO approving block {"height": 1307, "hash": "fcfeca4de59a00bede588f41bde4deae81f6204e9ac1ecb62946e9080fa7adcb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fabe65a5446720189944a1fc33f3792e5d0c7a936b8fffe600cd1a42182eedb"} -2023-12-15T14:33:58.990Z INFO initializing dbft {"height": 1308, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:58.991Z debug frostfs-node/morph.go:229 new block {"index": 1307} -2023-12-15T14:33:59.767Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1307, "blockHeight": 1307, "took": "5.383424ms"} -2023-12-15T14:33:59.990Z INFO sending PrepareRequest {"height": 1308, "view": 0} -2023-12-15T14:33:59.990Z INFO sending Commit {"height": 1308, "view": 0} -2023-12-15T14:33:59.990Z INFO approving block {"height": 1308, "hash": "1bb0abf0dc8b32f61f43b3149151117eb57e112024fc8c371abc52b2e21e0851", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcfeca4de59a00bede588f41bde4deae81f6204e9ac1ecb62946e9080fa7adcb"} -2023-12-15T14:33:59.991Z INFO initializing dbft {"height": 1309, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:33:59.992Z debug frostfs-node/morph.go:229 new block {"index": 1308} -2023-12-15T14:34:00.767Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1308, "blockHeight": 1308, "took": "5.401615ms"} -2023-12-15T14:34:00.992Z INFO sending PrepareRequest {"height": 1309, "view": 0} -2023-12-15T14:34:00.992Z INFO sending Commit {"height": 1309, "view": 0} -2023-12-15T14:34:00.993Z INFO approving block {"height": 1309, "hash": "e58c1e2e3fb79b0b7d6ae51d68ef6414d1d8854b12ffd63f83afa21174f7e990", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bb0abf0dc8b32f61f43b3149151117eb57e112024fc8c371abc52b2e21e0851"} -2023-12-15T14:34:00.994Z INFO initializing dbft {"height": 1310, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:00.995Z debug frostfs-node/morph.go:229 new block {"index": 1309} -2023-12-15T14:34:01.765Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1309, "blockHeight": 1309, "took": "2.72494ms"} -2023-12-15T14:34:01.993Z INFO sending PrepareRequest {"height": 1310, "view": 0} -2023-12-15T14:34:01.993Z INFO sending Commit {"height": 1310, "view": 0} -2023-12-15T14:34:01.993Z INFO approving block {"height": 1310, "hash": "b93a84267127a9350c52895700b479fbf4d395d410f931bced3604385199b62b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e58c1e2e3fb79b0b7d6ae51d68ef6414d1d8854b12ffd63f83afa21174f7e990"} -2023-12-15T14:34:01.994Z INFO initializing dbft {"height": 1311, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:01.995Z debug frostfs-node/morph.go:229 new block {"index": 1310} -2023-12-15T14:34:02.769Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1310, "blockHeight": 1310, "took": "6.638281ms"} -2023-12-15T14:34:02.995Z INFO sending PrepareRequest {"height": 1311, "view": 0} -2023-12-15T14:34:02.995Z INFO sending Commit {"height": 1311, "view": 0} -2023-12-15T14:34:02.995Z INFO approving block {"height": 1311, "hash": "85760fe2848681885a17b4b3b53e9f0b8b1f9146155899c60f6da7c3435167d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b93a84267127a9350c52895700b479fbf4d395d410f931bced3604385199b62b"} -2023-12-15T14:34:02.996Z INFO initializing dbft {"height": 1312, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:02.997Z debug frostfs-node/morph.go:229 new block {"index": 1311} -2023-12-15T14:34:03.768Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1311, "blockHeight": 1311, "took": "5.207162ms"} -2023-12-15T14:34:03.997Z INFO sending PrepareRequest {"height": 1312, "view": 0} -2023-12-15T14:34:03.997Z INFO sending Commit {"height": 1312, "view": 0} -2023-12-15T14:34:03.998Z INFO approving block {"height": 1312, "hash": "68bfec39d72878eed4a373b71b95216ae41bf861548b17c77ae47f00337e230f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85760fe2848681885a17b4b3b53e9f0b8b1f9146155899c60f6da7c3435167d0"} -2023-12-15T14:34:03.999Z INFO initializing dbft {"height": 1313, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:04.000Z debug frostfs-node/morph.go:229 new block {"index": 1312} -2023-12-15T14:34:04.768Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1312, "blockHeight": 1312, "took": "4.212723ms"} -2023-12-15T14:34:04.998Z INFO sending PrepareRequest {"height": 1313, "view": 0} -2023-12-15T14:34:04.999Z INFO sending Commit {"height": 1313, "view": 0} -2023-12-15T14:34:04.999Z INFO approving block {"height": 1313, "hash": "d382d9bf6e2ff81aa08a574feefa112dca138e1156ad1f16225b580bcd1c13bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68bfec39d72878eed4a373b71b95216ae41bf861548b17c77ae47f00337e230f"} -2023-12-15T14:34:05.000Z INFO initializing dbft {"height": 1314, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:05.001Z debug frostfs-node/morph.go:229 new block {"index": 1313} -2023-12-15T14:34:05.767Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1313, "blockHeight": 1313, "took": "3.241634ms"} -2023-12-15T14:34:06.000Z INFO sending PrepareRequest {"height": 1314, "view": 0} -2023-12-15T14:34:06.000Z INFO sending Commit {"height": 1314, "view": 0} -2023-12-15T14:34:06.001Z INFO approving block {"height": 1314, "hash": "36bfebd425daa6e1929ddce20657f17b13ca2530bdafcd75e481d62388aea29e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d382d9bf6e2ff81aa08a574feefa112dca138e1156ad1f16225b580bcd1c13bf"} -2023-12-15T14:34:06.002Z INFO initializing dbft {"height": 1315, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:06.002Z debug frostfs-node/morph.go:229 new block {"index": 1314} -2023-12-15T14:34:06.769Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1314, "blockHeight": 1314, "took": "4.252463ms"} -2023-12-15T14:34:07.001Z INFO sending PrepareRequest {"height": 1315, "view": 0} -2023-12-15T14:34:07.001Z INFO sending Commit {"height": 1315, "view": 0} -2023-12-15T14:34:07.001Z INFO approving block {"height": 1315, "hash": "275e327c05f3e8a6adbae9cb0fbd374fd4e720f2928e030992a9c1f5f9402b0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36bfebd425daa6e1929ddce20657f17b13ca2530bdafcd75e481d62388aea29e"} -2023-12-15T14:34:07.002Z INFO initializing dbft {"height": 1316, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:07.003Z debug frostfs-node/morph.go:229 new block {"index": 1315} -2023-12-15T14:34:07.769Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1315, "blockHeight": 1315, "took": "4.754231ms"} -2023-12-15T14:34:08.003Z INFO sending PrepareRequest {"height": 1316, "view": 0} -2023-12-15T14:34:08.003Z INFO sending Commit {"height": 1316, "view": 0} -2023-12-15T14:34:08.003Z INFO approving block {"height": 1316, "hash": "40fb0377c660d37de37807bf9af7f8f4b6328673b3b1569f3e47a2f611b473b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "275e327c05f3e8a6adbae9cb0fbd374fd4e720f2928e030992a9c1f5f9402b0d"} -2023-12-15T14:34:08.004Z INFO initializing dbft {"height": 1317, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:08.004Z debug frostfs-node/morph.go:229 new block {"index": 1316} -2023-12-15T14:34:08.770Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1316, "blockHeight": 1316, "took": "4.693326ms"} -2023-12-15T14:34:09.004Z INFO sending PrepareRequest {"height": 1317, "view": 0} -2023-12-15T14:34:09.004Z INFO sending Commit {"height": 1317, "view": 0} -2023-12-15T14:34:09.005Z INFO approving block {"height": 1317, "hash": "9317bba395b36385b329ed203f49c676ce82b17a559554a303bcd31b49b2780d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40fb0377c660d37de37807bf9af7f8f4b6328673b3b1569f3e47a2f611b473b9"} -2023-12-15T14:34:09.006Z INFO initializing dbft {"height": 1318, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:09.006Z debug frostfs-node/morph.go:229 new block {"index": 1317} -2023-12-15T14:34:09.009Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:34:09.012Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:34:09.013Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:34:09.769Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1317, "blockHeight": 1317, "took": "3.664393ms"} -2023-12-15T14:34:10.006Z INFO sending PrepareRequest {"height": 1318, "view": 0} -2023-12-15T14:34:10.007Z INFO sending Commit {"height": 1318, "view": 0} -2023-12-15T14:34:10.007Z INFO approving block {"height": 1318, "hash": "dcb2964a144337ca1be665b852eeae378a633f4e9dabde893304763360435caa", "tx_count": 2, "merkle": "2328423999daa35c4ca8640279e7f624fb01e1a4e78805a27e9cc84c6aead37c", "prev": "9317bba395b36385b329ed203f49c676ce82b17a559554a303bcd31b49b2780d"} -2023-12-15T14:34:10.008Z INFO runtime log {"tx": "851e2929be454a3a46b19297c78b596c3e8f7395f9d6a0609a1766a19d5686cc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:34:10.008Z INFO runtime log {"tx": "851e2929be454a3a46b19297c78b596c3e8f7395f9d6a0609a1766a19d5686cc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:34:10.010Z INFO initializing dbft {"height": 1319, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:10.011Z debug frostfs-node/morph.go:229 new block {"index": 1318} -2023-12-15T14:34:10.773Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 1318, "blockHeight": 1318, "took": "6.694335ms"} -2023-12-15T14:34:11.009Z INFO sending PrepareRequest {"height": 1319, "view": 0} -2023-12-15T14:34:11.009Z INFO sending Commit {"height": 1319, "view": 0} -2023-12-15T14:34:11.009Z INFO approving block {"height": 1319, "hash": "2681245945908bf9529c3c27f9f8bab13888295791fecbececce1416ed28b7c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcb2964a144337ca1be665b852eeae378a633f4e9dabde893304763360435caa"} -2023-12-15T14:34:11.010Z INFO initializing dbft {"height": 1320, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:11.010Z debug frostfs-node/morph.go:229 new block {"index": 1319} -2023-12-15T14:34:11.772Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1319, "blockHeight": 1319, "took": "4.514961ms"} -2023-12-15T14:34:12.010Z INFO sending PrepareRequest {"height": 1320, "view": 0} -2023-12-15T14:34:12.010Z INFO sending Commit {"height": 1320, "view": 0} -2023-12-15T14:34:12.010Z INFO approving block {"height": 1320, "hash": "e83c685d63bf6de43c0351c26b3935ba83850eb46ca981d683ca36866e75c6f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2681245945908bf9529c3c27f9f8bab13888295791fecbececce1416ed28b7c4"} -2023-12-15T14:34:12.011Z INFO initializing dbft {"height": 1321, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:12.012Z debug frostfs-node/morph.go:229 new block {"index": 1320} -2023-12-15T14:34:12.771Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1320, "blockHeight": 1320, "took": "2.75069ms"} -2023-12-15T14:34:13.012Z INFO sending PrepareRequest {"height": 1321, "view": 0} -2023-12-15T14:34:13.012Z INFO sending Commit {"height": 1321, "view": 0} -2023-12-15T14:34:13.012Z INFO approving block {"height": 1321, "hash": "0eb43ccb0d6c9b80b0493dfa1b1b2ff7fb5364376295a983741c07f2a9116065", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e83c685d63bf6de43c0351c26b3935ba83850eb46ca981d683ca36866e75c6f8"} -2023-12-15T14:34:13.013Z INFO initializing dbft {"height": 1322, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:13.014Z debug frostfs-node/morph.go:229 new block {"index": 1321} -2023-12-15T14:34:13.771Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1321, "blockHeight": 1321, "took": "2.75216ms"} -2023-12-15T14:34:14.013Z INFO sending PrepareRequest {"height": 1322, "view": 0} -2023-12-15T14:34:14.013Z INFO sending Commit {"height": 1322, "view": 0} -2023-12-15T14:34:14.014Z INFO approving block {"height": 1322, "hash": "dda6c28bcfebc9257622c3dff2a34cf3c6ab7c2a398c023c888dd04719451ff0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0eb43ccb0d6c9b80b0493dfa1b1b2ff7fb5364376295a983741c07f2a9116065"} -2023-12-15T14:34:14.014Z INFO initializing dbft {"height": 1323, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:14.015Z debug frostfs-node/morph.go:229 new block {"index": 1322} -2023-12-15T14:34:14.774Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1322, "blockHeight": 1322, "took": "5.118829ms"} -2023-12-15T14:34:15.015Z INFO sending PrepareRequest {"height": 1323, "view": 0} -2023-12-15T14:34:15.015Z INFO sending Commit {"height": 1323, "view": 0} -2023-12-15T14:34:15.015Z INFO approving block {"height": 1323, "hash": "ff5a7dcc47e173eaa56de7429c2309a879c4d98485f934d10d1dc6b000325e28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dda6c28bcfebc9257622c3dff2a34cf3c6ab7c2a398c023c888dd04719451ff0"} -2023-12-15T14:34:15.017Z INFO initializing dbft {"height": 1324, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:15.017Z debug frostfs-node/morph.go:229 new block {"index": 1323} -2023-12-15T14:34:15.772Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1323, "blockHeight": 1323, "took": "2.93196ms"} -2023-12-15T14:34:16.016Z INFO sending PrepareRequest {"height": 1324, "view": 0} -2023-12-15T14:34:16.016Z INFO sending Commit {"height": 1324, "view": 0} -2023-12-15T14:34:16.016Z INFO approving block {"height": 1324, "hash": "d38975a440ae80a1e7e6d96b7edbebb2f518ddd7e481f42fc57cc247c0673bcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff5a7dcc47e173eaa56de7429c2309a879c4d98485f934d10d1dc6b000325e28"} -2023-12-15T14:34:16.017Z INFO initializing dbft {"height": 1325, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:16.018Z debug frostfs-node/morph.go:229 new block {"index": 1324} -2023-12-15T14:34:16.773Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1324, "blockHeight": 1324, "took": "3.646916ms"} -2023-12-15T14:34:17.018Z INFO sending PrepareRequest {"height": 1325, "view": 0} -2023-12-15T14:34:17.018Z INFO sending Commit {"height": 1325, "view": 0} -2023-12-15T14:34:17.018Z INFO approving block {"height": 1325, "hash": "e029b8c9d115f9a23f10c1da61b73fd8a09e8a050c58169b67554cbffbda6eef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d38975a440ae80a1e7e6d96b7edbebb2f518ddd7e481f42fc57cc247c0673bcf"} -2023-12-15T14:34:17.019Z INFO initializing dbft {"height": 1326, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:17.019Z debug frostfs-node/morph.go:229 new block {"index": 1325} -2023-12-15T14:34:17.021Z info settlement/calls.go:61 start basic income collection {"epoch": 6} -2023-12-15T14:34:17.022Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 6, "iteration": 1, "error": "no data for 0 iteration in 6 epoch for consumers's trusts"} -2023-12-15T14:34:17.775Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1325, "blockHeight": 1325, "took": "4.129384ms"} -2023-12-15T14:34:18.019Z INFO sending PrepareRequest {"height": 1326, "view": 0} -2023-12-15T14:34:18.019Z INFO sending Commit {"height": 1326, "view": 0} -2023-12-15T14:34:18.019Z INFO approving block {"height": 1326, "hash": "e6690c9dd2ce312efb2a33cfd64f79cafb4e54791b7cb0cfe5dfebfed5578aa5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e029b8c9d115f9a23f10c1da61b73fd8a09e8a050c58169b67554cbffbda6eef"} -2023-12-15T14:34:18.021Z INFO initializing dbft {"height": 1327, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:18.021Z debug frostfs-node/morph.go:229 new block {"index": 1326} -2023-12-15T14:34:18.776Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1326, "blockHeight": 1326, "took": "4.525968ms"} -2023-12-15T14:34:19.020Z INFO sending PrepareRequest {"height": 1327, "view": 0} -2023-12-15T14:34:19.020Z INFO sending Commit {"height": 1327, "view": 0} -2023-12-15T14:34:19.021Z INFO approving block {"height": 1327, "hash": "c7b0f0542fee8ca3921e6b25c7d539536e2d51484d31fd85c9ce69386fd38806", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6690c9dd2ce312efb2a33cfd64f79cafb4e54791b7cb0cfe5dfebfed5578aa5"} -2023-12-15T14:34:19.023Z INFO initializing dbft {"height": 1328, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:19.023Z debug frostfs-node/morph.go:229 new block {"index": 1327} -2023-12-15T14:34:19.776Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1327, "blockHeight": 1327, "took": "4.547723ms"} -2023-12-15T14:34:20.022Z INFO sending PrepareRequest {"height": 1328, "view": 0} -2023-12-15T14:34:20.022Z INFO sending Commit {"height": 1328, "view": 0} -2023-12-15T14:34:20.023Z INFO approving block {"height": 1328, "hash": "8e6c9be2972482900fa5b5026e0d2eb247f2125830a42a88bba15b15a1ea16af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7b0f0542fee8ca3921e6b25c7d539536e2d51484d31fd85c9ce69386fd38806"} -2023-12-15T14:34:20.024Z INFO initializing dbft {"height": 1329, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:20.024Z debug frostfs-node/morph.go:229 new block {"index": 1328} -2023-12-15T14:34:20.775Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1328, "blockHeight": 1328, "took": "3.015128ms"} -2023-12-15T14:34:21.024Z INFO sending PrepareRequest {"height": 1329, "view": 0} -2023-12-15T14:34:21.024Z INFO sending Commit {"height": 1329, "view": 0} -2023-12-15T14:34:21.025Z INFO approving block {"height": 1329, "hash": "dfd83da7b1162a949457240540ab6b507a8f7e47a05c30afa3dfdc1a7e68b6d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e6c9be2972482900fa5b5026e0d2eb247f2125830a42a88bba15b15a1ea16af"} -2023-12-15T14:34:21.026Z INFO initializing dbft {"height": 1330, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:21.026Z debug frostfs-node/morph.go:229 new block {"index": 1329} -2023-12-15T14:34:21.777Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1329, "blockHeight": 1329, "took": "4.478097ms"} -2023-12-15T14:34:22.025Z INFO sending PrepareRequest {"height": 1330, "view": 0} -2023-12-15T14:34:22.026Z INFO sending Commit {"height": 1330, "view": 0} -2023-12-15T14:34:22.026Z INFO approving block {"height": 1330, "hash": "a56d65683da7711a671caf6df91fa7fc3f4ba145cb50617827aeee820c052beb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfd83da7b1162a949457240540ab6b507a8f7e47a05c30afa3dfdc1a7e68b6d4"} -2023-12-15T14:34:22.027Z INFO initializing dbft {"height": 1331, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:22.028Z debug frostfs-node/morph.go:229 new block {"index": 1330} -2023-12-15T14:34:22.777Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1330, "blockHeight": 1330, "took": "4.054782ms"} -2023-12-15T14:34:23.027Z INFO sending PrepareRequest {"height": 1331, "view": 0} -2023-12-15T14:34:23.027Z INFO sending Commit {"height": 1331, "view": 0} -2023-12-15T14:34:23.027Z INFO approving block {"height": 1331, "hash": "385655049640e18640ab1397d7bb8505220f8174ec26e22a1149b22ffbebde7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a56d65683da7711a671caf6df91fa7fc3f4ba145cb50617827aeee820c052beb"} -2023-12-15T14:34:23.027Z INFO initializing dbft {"height": 1332, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:23.028Z debug frostfs-node/morph.go:229 new block {"index": 1331} -2023-12-15T14:34:23.776Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1331, "blockHeight": 1331, "took": "2.938596ms"} -2023-12-15T14:34:24.028Z INFO sending PrepareRequest {"height": 1332, "view": 0} -2023-12-15T14:34:24.028Z INFO sending Commit {"height": 1332, "view": 0} -2023-12-15T14:34:24.028Z INFO approving block {"height": 1332, "hash": "f6460035560ff01d735ad143067d7d77c8edc11f60687effa0326bfbd26e53d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "385655049640e18640ab1397d7bb8505220f8174ec26e22a1149b22ffbebde7c"} -2023-12-15T14:34:24.029Z INFO initializing dbft {"height": 1333, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:24.030Z debug frostfs-node/morph.go:229 new block {"index": 1332} -2023-12-15T14:34:24.777Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1332, "blockHeight": 1332, "took": "3.593948ms"} -2023-12-15T14:34:25.030Z INFO sending PrepareRequest {"height": 1333, "view": 0} -2023-12-15T14:34:25.030Z INFO sending Commit {"height": 1333, "view": 0} -2023-12-15T14:34:25.030Z INFO approving block {"height": 1333, "hash": "fdca6cc7a2c34b4a99bdb5edac94a488a860f7e80bf27f932d2e4508f6df6070", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6460035560ff01d735ad143067d7d77c8edc11f60687effa0326bfbd26e53d5"} -2023-12-15T14:34:25.031Z INFO initializing dbft {"height": 1334, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:25.032Z debug frostfs-node/morph.go:229 new block {"index": 1333} -2023-12-15T14:34:25.780Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1333, "blockHeight": 1333, "took": "5.940253ms"} -2023-12-15T14:34:26.031Z INFO sending PrepareRequest {"height": 1334, "view": 0} -2023-12-15T14:34:26.031Z INFO sending Commit {"height": 1334, "view": 0} -2023-12-15T14:34:26.032Z INFO approving block {"height": 1334, "hash": "9482e6a03315e26e09c687b5d2ea1260a49f6d963c85892b16b9ca52d8d16832", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdca6cc7a2c34b4a99bdb5edac94a488a860f7e80bf27f932d2e4508f6df6070"} -2023-12-15T14:34:26.033Z INFO initializing dbft {"height": 1335, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:26.033Z debug frostfs-node/morph.go:229 new block {"index": 1334} -2023-12-15T14:34:26.783Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1334, "blockHeight": 1334, "took": "8.128756ms"} -2023-12-15T14:34:27.033Z INFO sending PrepareRequest {"height": 1335, "view": 0} -2023-12-15T14:34:27.033Z INFO sending Commit {"height": 1335, "view": 0} -2023-12-15T14:34:27.034Z INFO approving block {"height": 1335, "hash": "019cafebd5461aaf3022f5c6aabc543bef0303a8a8bcf198fb87d7f7b8f1e7a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9482e6a03315e26e09c687b5d2ea1260a49f6d963c85892b16b9ca52d8d16832"} -2023-12-15T14:34:27.035Z INFO initializing dbft {"height": 1336, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:27.036Z debug frostfs-node/morph.go:229 new block {"index": 1335} -2023-12-15T14:34:27.781Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1335, "blockHeight": 1335, "took": "4.976845ms"} -2023-12-15T14:34:28.034Z INFO sending PrepareRequest {"height": 1336, "view": 0} -2023-12-15T14:34:28.035Z INFO sending Commit {"height": 1336, "view": 0} -2023-12-15T14:34:28.035Z INFO approving block {"height": 1336, "hash": "63a418df9b25b8e3e7e2610dfc6fa6af8e5394cf8bb9b23b85a91feac560a3f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "019cafebd5461aaf3022f5c6aabc543bef0303a8a8bcf198fb87d7f7b8f1e7a9"} -2023-12-15T14:34:28.036Z INFO initializing dbft {"height": 1337, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:28.036Z debug frostfs-node/morph.go:229 new block {"index": 1336} -2023-12-15T14:34:28.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1336, "blockHeight": 1336, "took": "5.593583ms"} -2023-12-15T14:34:29.036Z INFO sending PrepareRequest {"height": 1337, "view": 0} -2023-12-15T14:34:29.037Z INFO sending Commit {"height": 1337, "view": 0} -2023-12-15T14:34:29.037Z INFO approving block {"height": 1337, "hash": "9e9bc4a0c8d1e720a4dcf4809202f1513eb77d95be732d57f4ba706b63310a51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63a418df9b25b8e3e7e2610dfc6fa6af8e5394cf8bb9b23b85a91feac560a3f2"} -2023-12-15T14:34:29.038Z INFO initializing dbft {"height": 1338, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:29.039Z debug frostfs-node/morph.go:229 new block {"index": 1337} -2023-12-15T14:34:29.781Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1337, "blockHeight": 1337, "took": "4.670417ms"} -2023-12-15T14:34:30.038Z INFO sending PrepareRequest {"height": 1338, "view": 0} -2023-12-15T14:34:30.038Z INFO sending Commit {"height": 1338, "view": 0} -2023-12-15T14:34:30.038Z INFO approving block {"height": 1338, "hash": "9738bd946aacdb5af1bd673e87e6490122dc89f3bd3e4dd6891d00291c4e9624", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e9bc4a0c8d1e720a4dcf4809202f1513eb77d95be732d57f4ba706b63310a51"} -2023-12-15T14:34:30.039Z INFO initializing dbft {"height": 1339, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:30.040Z debug frostfs-node/morph.go:229 new block {"index": 1338} -2023-12-15T14:34:30.783Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1338, "blockHeight": 1338, "took": "5.84181ms"} -2023-12-15T14:34:31.039Z INFO sending PrepareRequest {"height": 1339, "view": 0} -2023-12-15T14:34:31.039Z INFO sending Commit {"height": 1339, "view": 0} -2023-12-15T14:34:31.040Z INFO approving block {"height": 1339, "hash": "c34c23e9ba73c0402ad296814ea1dcbf4987be38ef70e2b9cbfcd2358ef953d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9738bd946aacdb5af1bd673e87e6490122dc89f3bd3e4dd6891d00291c4e9624"} -2023-12-15T14:34:31.041Z INFO initializing dbft {"height": 1340, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:31.042Z debug frostfs-node/morph.go:229 new block {"index": 1339} -2023-12-15T14:34:31.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1339, "blockHeight": 1339, "took": "4.11319ms"} -2023-12-15T14:34:32.040Z INFO sending PrepareRequest {"height": 1340, "view": 0} -2023-12-15T14:34:32.041Z INFO sending Commit {"height": 1340, "view": 0} -2023-12-15T14:34:32.041Z INFO approving block {"height": 1340, "hash": "4d3e7c111e5d7743996f2644d37cd9c68402d76c2ffb7def3716dd663d37a80f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c34c23e9ba73c0402ad296814ea1dcbf4987be38ef70e2b9cbfcd2358ef953d0"} -2023-12-15T14:34:32.042Z INFO initializing dbft {"height": 1341, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:32.043Z debug frostfs-node/morph.go:229 new block {"index": 1340} -2023-12-15T14:34:32.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1340, "blockHeight": 1340, "took": "4.233493ms"} -2023-12-15T14:34:33.042Z INFO sending PrepareRequest {"height": 1341, "view": 0} -2023-12-15T14:34:33.042Z INFO sending Commit {"height": 1341, "view": 0} -2023-12-15T14:34:33.042Z INFO approving block {"height": 1341, "hash": "772f943233a4f25d3eb95a2ab57c67c203a0644ba003a9c389e5a3d6c4702f91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d3e7c111e5d7743996f2644d37cd9c68402d76c2ffb7def3716dd663d37a80f"} -2023-12-15T14:34:33.043Z INFO initializing dbft {"height": 1342, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:33.044Z debug frostfs-node/morph.go:229 new block {"index": 1341} -2023-12-15T14:34:33.784Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1341, "blockHeight": 1341, "took": "5.540174ms"} -2023-12-15T14:34:34.044Z INFO sending PrepareRequest {"height": 1342, "view": 0} -2023-12-15T14:34:34.044Z INFO sending Commit {"height": 1342, "view": 0} -2023-12-15T14:34:34.044Z INFO approving block {"height": 1342, "hash": "512e2fb58377bfeeca83fcf084fb7b100aaa2383b98bfbd5180c8e405646f820", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "772f943233a4f25d3eb95a2ab57c67c203a0644ba003a9c389e5a3d6c4702f91"} -2023-12-15T14:34:34.046Z INFO initializing dbft {"height": 1343, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:34.046Z debug frostfs-node/morph.go:229 new block {"index": 1342} -2023-12-15T14:34:34.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1342, "blockHeight": 1342, "took": "2.942747ms"} -2023-12-15T14:34:35.045Z INFO sending PrepareRequest {"height": 1343, "view": 0} -2023-12-15T14:34:35.045Z INFO sending Commit {"height": 1343, "view": 0} -2023-12-15T14:34:35.045Z INFO approving block {"height": 1343, "hash": "4cfa99ca4edbf14b4fa3b0397010a71eaab545ef00d06f4139064c3fde10d838", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "512e2fb58377bfeeca83fcf084fb7b100aaa2383b98bfbd5180c8e405646f820"} -2023-12-15T14:34:35.046Z INFO initializing dbft {"height": 1344, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:35.047Z debug frostfs-node/morph.go:229 new block {"index": 1343} -2023-12-15T14:34:35.784Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1343, "blockHeight": 1343, "took": "4.562075ms"} -2023-12-15T14:34:36.046Z INFO sending PrepareRequest {"height": 1344, "view": 0} -2023-12-15T14:34:36.046Z INFO sending Commit {"height": 1344, "view": 0} -2023-12-15T14:34:36.046Z INFO approving block {"height": 1344, "hash": "0d24f6790a262edc596a88da18226a8339bfdfc7347fa63f1194d935045e9bf2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cfa99ca4edbf14b4fa3b0397010a71eaab545ef00d06f4139064c3fde10d838"} -2023-12-15T14:34:36.048Z INFO initializing dbft {"height": 1345, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:36.048Z debug frostfs-node/morph.go:229 new block {"index": 1344} -2023-12-15T14:34:36.788Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1344, "blockHeight": 1344, "took": "7.997307ms"} -2023-12-15T14:34:37.047Z INFO sending PrepareRequest {"height": 1345, "view": 0} -2023-12-15T14:34:37.048Z INFO sending Commit {"height": 1345, "view": 0} -2023-12-15T14:34:37.048Z INFO approving block {"height": 1345, "hash": "a49c02f4a908f0266645a320ace065d27b4104cee880401f995f3cd214330a93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d24f6790a262edc596a88da18226a8339bfdfc7347fa63f1194d935045e9bf2"} -2023-12-15T14:34:37.049Z INFO initializing dbft {"height": 1346, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:37.049Z debug frostfs-node/morph.go:229 new block {"index": 1345} -2023-12-15T14:34:37.783Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1345, "blockHeight": 1345, "took": "3.090459ms"} -2023-12-15T14:34:38.049Z INFO sending PrepareRequest {"height": 1346, "view": 0} -2023-12-15T14:34:38.049Z INFO sending Commit {"height": 1346, "view": 0} -2023-12-15T14:34:38.050Z INFO approving block {"height": 1346, "hash": "da465f03d1c1a33187b183071da09bcb7bb8b33e92b690415cc7fd299723997d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a49c02f4a908f0266645a320ace065d27b4104cee880401f995f3cd214330a93"} -2023-12-15T14:34:38.051Z INFO initializing dbft {"height": 1347, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:38.052Z debug frostfs-node/morph.go:229 new block {"index": 1346} -2023-12-15T14:34:38.784Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1346, "blockHeight": 1346, "took": "2.877572ms"} -2023-12-15T14:34:39.051Z INFO sending PrepareRequest {"height": 1347, "view": 0} -2023-12-15T14:34:39.051Z INFO sending Commit {"height": 1347, "view": 0} -2023-12-15T14:34:39.051Z INFO approving block {"height": 1347, "hash": "6cf99feaa8718c6ac5e7d6cef819b2f2c6a545dea116771a61f38f80694865ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da465f03d1c1a33187b183071da09bcb7bb8b33e92b690415cc7fd299723997d"} -2023-12-15T14:34:39.052Z INFO initializing dbft {"height": 1348, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:39.052Z debug frostfs-node/morph.go:229 new block {"index": 1347} -2023-12-15T14:34:39.785Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1347, "blockHeight": 1347, "took": "3.870494ms"} -2023-12-15T14:34:40.052Z INFO sending PrepareRequest {"height": 1348, "view": 0} -2023-12-15T14:34:40.052Z INFO sending Commit {"height": 1348, "view": 0} -2023-12-15T14:34:40.053Z INFO approving block {"height": 1348, "hash": "f525db0da90ba8c2853baa75dbf0cc7cc8eef92fd8ea9d0082b5939b475643fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cf99feaa8718c6ac5e7d6cef819b2f2c6a545dea116771a61f38f80694865ca"} -2023-12-15T14:34:40.053Z INFO initializing dbft {"height": 1349, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:40.054Z debug frostfs-node/morph.go:229 new block {"index": 1348} -2023-12-15T14:34:40.786Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1348, "blockHeight": 1348, "took": "4.100306ms"} -2023-12-15T14:34:41.053Z INFO sending PrepareRequest {"height": 1349, "view": 0} -2023-12-15T14:34:41.054Z INFO sending Commit {"height": 1349, "view": 0} -2023-12-15T14:34:41.054Z INFO approving block {"height": 1349, "hash": "c85495eeeef374e8c3f4def0a856f6c86551cccde5255b94f0b3e8e6a3c5aeea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f525db0da90ba8c2853baa75dbf0cc7cc8eef92fd8ea9d0082b5939b475643fe"} -2023-12-15T14:34:41.056Z INFO initializing dbft {"height": 1350, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:41.056Z debug frostfs-node/morph.go:229 new block {"index": 1349} -2023-12-15T14:34:41.788Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1349, "blockHeight": 1349, "took": "5.790853ms"} -2023-12-15T14:34:42.056Z INFO sending PrepareRequest {"height": 1350, "view": 0} -2023-12-15T14:34:42.056Z INFO sending Commit {"height": 1350, "view": 0} -2023-12-15T14:34:42.056Z INFO approving block {"height": 1350, "hash": "572a2d76be764436e4fa364c4b39dd772c16e913b39b97177c81a4363cc7dc40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c85495eeeef374e8c3f4def0a856f6c86551cccde5255b94f0b3e8e6a3c5aeea"} -2023-12-15T14:34:42.058Z INFO initializing dbft {"height": 1351, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:42.058Z debug frostfs-node/morph.go:229 new block {"index": 1350} -2023-12-15T14:34:42.787Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1350, "blockHeight": 1350, "took": "4.019646ms"} -2023-12-15T14:34:43.057Z INFO sending PrepareRequest {"height": 1351, "view": 0} -2023-12-15T14:34:43.057Z INFO sending Commit {"height": 1351, "view": 0} -2023-12-15T14:34:43.058Z INFO approving block {"height": 1351, "hash": "f31f400e8df1f69ae80fba5c6035419017db23fb978d958c068d036a8f7ff3ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "572a2d76be764436e4fa364c4b39dd772c16e913b39b97177c81a4363cc7dc40"} -2023-12-15T14:34:43.058Z INFO initializing dbft {"height": 1352, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:43.059Z debug frostfs-node/morph.go:229 new block {"index": 1351} -2023-12-15T14:34:43.790Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1351, "blockHeight": 1351, "took": "5.957172ms"} -2023-12-15T14:34:44.059Z INFO sending PrepareRequest {"height": 1352, "view": 0} -2023-12-15T14:34:44.059Z INFO sending Commit {"height": 1352, "view": 0} -2023-12-15T14:34:44.059Z INFO approving block {"height": 1352, "hash": "d1a4ba6c1b3b3e6baf06bca032907fbe82321b942f89371256922006755102ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f31f400e8df1f69ae80fba5c6035419017db23fb978d958c068d036a8f7ff3ac"} -2023-12-15T14:34:44.060Z INFO initializing dbft {"height": 1353, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:44.060Z debug frostfs-node/morph.go:229 new block {"index": 1352} -2023-12-15T14:34:44.788Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1352, "blockHeight": 1352, "took": "3.518828ms"} -2023-12-15T14:34:45.061Z INFO sending PrepareRequest {"height": 1353, "view": 0} -2023-12-15T14:34:45.061Z INFO sending Commit {"height": 1353, "view": 0} -2023-12-15T14:34:45.061Z INFO approving block {"height": 1353, "hash": "6f20d3f0349be200ecb6214d97c6e23742bbe3407f8211c6feebe8f24e2fcc81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1a4ba6c1b3b3e6baf06bca032907fbe82321b942f89371256922006755102ec"} -2023-12-15T14:34:45.063Z INFO initializing dbft {"height": 1354, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:45.063Z debug frostfs-node/morph.go:229 new block {"index": 1353} -2023-12-15T14:34:45.789Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1353, "blockHeight": 1353, "took": "3.721662ms"} -2023-12-15T14:34:46.062Z INFO sending PrepareRequest {"height": 1354, "view": 0} -2023-12-15T14:34:46.062Z INFO sending Commit {"height": 1354, "view": 0} -2023-12-15T14:34:46.063Z INFO approving block {"height": 1354, "hash": "1f49af37f1f65a633c4415bde7288b18cf93c9e44b7a36b615968611ae0573e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f20d3f0349be200ecb6214d97c6e23742bbe3407f8211c6feebe8f24e2fcc81"} -2023-12-15T14:34:46.064Z INFO initializing dbft {"height": 1355, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:46.065Z debug frostfs-node/morph.go:229 new block {"index": 1354} -2023-12-15T14:34:46.789Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1354, "blockHeight": 1354, "took": "3.727061ms"} -2023-12-15T14:34:47.064Z INFO sending PrepareRequest {"height": 1355, "view": 0} -2023-12-15T14:34:47.064Z INFO sending Commit {"height": 1355, "view": 0} -2023-12-15T14:34:47.065Z INFO approving block {"height": 1355, "hash": "3d983877467ce10aa9a62080cd4dfeb6596daf5a353721bd27b5026eecf4aec1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f49af37f1f65a633c4415bde7288b18cf93c9e44b7a36b615968611ae0573e2"} -2023-12-15T14:34:47.066Z INFO initializing dbft {"height": 1356, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:47.067Z debug frostfs-node/morph.go:229 new block {"index": 1355} -2023-12-15T14:34:47.793Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1355, "blockHeight": 1355, "took": "6.397516ms"} -2023-12-15T14:34:48.066Z INFO sending PrepareRequest {"height": 1356, "view": 0} -2023-12-15T14:34:48.066Z INFO sending Commit {"height": 1356, "view": 0} -2023-12-15T14:34:48.067Z INFO approving block {"height": 1356, "hash": "e37fb775e48a9152e5db31694b9651def4a19b8f24639ee90735fe959e1f73b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d983877467ce10aa9a62080cd4dfeb6596daf5a353721bd27b5026eecf4aec1"} -2023-12-15T14:34:48.068Z INFO initializing dbft {"height": 1357, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:48.068Z debug frostfs-node/morph.go:229 new block {"index": 1356} -2023-12-15T14:34:48.791Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1356, "blockHeight": 1356, "took": "4.279482ms"} -2023-12-15T14:34:49.068Z INFO sending PrepareRequest {"height": 1357, "view": 0} -2023-12-15T14:34:49.068Z INFO sending Commit {"height": 1357, "view": 0} -2023-12-15T14:34:49.068Z INFO approving block {"height": 1357, "hash": "8d9265ec9942af703a9485923fc542ec2410fa755ca45ec4b92557811b31058c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e37fb775e48a9152e5db31694b9651def4a19b8f24639ee90735fe959e1f73b9"} -2023-12-15T14:34:49.068Z INFO initializing dbft {"height": 1358, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:49.069Z debug frostfs-node/morph.go:229 new block {"index": 1357} -2023-12-15T14:34:49.791Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1357, "blockHeight": 1357, "took": "3.721796ms"} -2023-12-15T14:34:50.069Z INFO sending PrepareRequest {"height": 1358, "view": 0} -2023-12-15T14:34:50.069Z INFO sending Commit {"height": 1358, "view": 0} -2023-12-15T14:34:50.070Z INFO approving block {"height": 1358, "hash": "5a36789e72eef37941a9e1b698d7746ae589f6bef62b2808a55fa08ff285f5da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d9265ec9942af703a9485923fc542ec2410fa755ca45ec4b92557811b31058c"} -2023-12-15T14:34:50.071Z INFO initializing dbft {"height": 1359, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:50.071Z debug frostfs-node/morph.go:229 new block {"index": 1358} -2023-12-15T14:34:50.793Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1358, "blockHeight": 1358, "took": "4.823264ms"} -2023-12-15T14:34:51.071Z INFO sending PrepareRequest {"height": 1359, "view": 0} -2023-12-15T14:34:51.071Z INFO sending Commit {"height": 1359, "view": 0} -2023-12-15T14:34:51.072Z INFO approving block {"height": 1359, "hash": "3421c6530e7074d79bf488729b02cbd78add02672497716df0a0970730f3b9f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a36789e72eef37941a9e1b698d7746ae589f6bef62b2808a55fa08ff285f5da"} -2023-12-15T14:34:51.073Z INFO initializing dbft {"height": 1360, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:51.074Z debug frostfs-node/morph.go:229 new block {"index": 1359} -2023-12-15T14:34:51.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1359, "blockHeight": 1359, "took": "3.494559ms"} -2023-12-15T14:34:52.072Z INFO sending PrepareRequest {"height": 1360, "view": 0} -2023-12-15T14:34:52.073Z INFO sending Commit {"height": 1360, "view": 0} -2023-12-15T14:34:52.073Z INFO approving block {"height": 1360, "hash": "dfbbe46b3ae51bf0bd83f753d5884b9a4ae9f42b1599f9e1181fc3440b0f142a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3421c6530e7074d79bf488729b02cbd78add02672497716df0a0970730f3b9f0"} -2023-12-15T14:34:52.074Z INFO initializing dbft {"height": 1361, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:52.074Z debug frostfs-node/morph.go:229 new block {"index": 1360} -2023-12-15T14:34:52.795Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1360, "blockHeight": 1360, "took": "5.892235ms"} -2023-12-15T14:34:53.074Z INFO sending PrepareRequest {"height": 1361, "view": 0} -2023-12-15T14:34:53.074Z INFO sending Commit {"height": 1361, "view": 0} -2023-12-15T14:34:53.074Z INFO approving block {"height": 1361, "hash": "3a366f6910e07df6f027783d08fd7b5769bd0b3b048c986ca79525d7c7cc0dcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfbbe46b3ae51bf0bd83f753d5884b9a4ae9f42b1599f9e1181fc3440b0f142a"} -2023-12-15T14:34:53.076Z INFO initializing dbft {"height": 1362, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:53.076Z debug frostfs-node/morph.go:229 new block {"index": 1361} -2023-12-15T14:34:53.797Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1361, "blockHeight": 1361, "took": "7.367662ms"} -2023-12-15T14:34:54.076Z INFO sending PrepareRequest {"height": 1362, "view": 0} -2023-12-15T14:34:54.076Z INFO sending Commit {"height": 1362, "view": 0} -2023-12-15T14:34:54.076Z INFO approving block {"height": 1362, "hash": "b4fa9d7da8247a1eda5cf8fa291b7acaaa6330abfd22762903d9f1d2535945dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a366f6910e07df6f027783d08fd7b5769bd0b3b048c986ca79525d7c7cc0dcd"} -2023-12-15T14:34:54.078Z INFO initializing dbft {"height": 1363, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:54.078Z debug frostfs-node/morph.go:229 new block {"index": 1362} -2023-12-15T14:34:54.795Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1362, "blockHeight": 1362, "took": "4.951901ms"} -2023-12-15T14:34:55.078Z INFO sending PrepareRequest {"height": 1363, "view": 0} -2023-12-15T14:34:55.078Z INFO sending Commit {"height": 1363, "view": 0} -2023-12-15T14:34:55.079Z INFO approving block {"height": 1363, "hash": "8a699123ec66c9cb7abedbb039f4cca963f42db1657d3772e9d7958f2cd87f74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4fa9d7da8247a1eda5cf8fa291b7acaaa6330abfd22762903d9f1d2535945dc"} -2023-12-15T14:34:55.080Z INFO initializing dbft {"height": 1364, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:55.081Z debug frostfs-node/morph.go:229 new block {"index": 1363} -2023-12-15T14:34:55.794Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1363, "blockHeight": 1363, "took": "4.222306ms"} -2023-12-15T14:34:56.079Z INFO sending PrepareRequest {"height": 1364, "view": 0} -2023-12-15T14:34:56.080Z INFO sending Commit {"height": 1364, "view": 0} -2023-12-15T14:34:56.080Z INFO approving block {"height": 1364, "hash": "9287543b19defe28fa98fc82882f82eabe63ccd81ec65ba1d132ff3310c79662", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a699123ec66c9cb7abedbb039f4cca963f42db1657d3772e9d7958f2cd87f74"} -2023-12-15T14:34:56.081Z INFO initializing dbft {"height": 1365, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:56.082Z debug frostfs-node/morph.go:229 new block {"index": 1364} -2023-12-15T14:34:56.798Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1364, "blockHeight": 1364, "took": "7.612561ms"} -2023-12-15T14:34:57.081Z INFO sending PrepareRequest {"height": 1365, "view": 0} -2023-12-15T14:34:57.081Z INFO sending Commit {"height": 1365, "view": 0} -2023-12-15T14:34:57.082Z INFO approving block {"height": 1365, "hash": "e360b53a3b87e9386003822ad001d09650079879f7bbf22f13f1a722a0e2a514", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9287543b19defe28fa98fc82882f82eabe63ccd81ec65ba1d132ff3310c79662"} -2023-12-15T14:34:57.082Z INFO initializing dbft {"height": 1366, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:57.083Z debug frostfs-node/morph.go:229 new block {"index": 1365} -2023-12-15T14:34:57.797Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1365, "blockHeight": 1365, "took": "5.188663ms"} -2023-12-15T14:34:58.082Z INFO sending PrepareRequest {"height": 1366, "view": 0} -2023-12-15T14:34:58.083Z INFO sending Commit {"height": 1366, "view": 0} -2023-12-15T14:34:58.083Z INFO approving block {"height": 1366, "hash": "92c39a9f2de2c71e0edcbc726c488a60f12cf40f043a18222435b304b953a0a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e360b53a3b87e9386003822ad001d09650079879f7bbf22f13f1a722a0e2a514"} -2023-12-15T14:34:58.084Z INFO initializing dbft {"height": 1367, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:58.085Z debug frostfs-node/morph.go:229 new block {"index": 1366} -2023-12-15T14:34:58.795Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1366, "blockHeight": 1366, "took": "3.447841ms"} -2023-12-15T14:34:59.084Z INFO sending PrepareRequest {"height": 1367, "view": 0} -2023-12-15T14:34:59.085Z INFO sending Commit {"height": 1367, "view": 0} -2023-12-15T14:34:59.085Z INFO approving block {"height": 1367, "hash": "0b6c521aca242ee9b9c57f10394cd611fd326e017dbb7006856c74f51b1fcf1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92c39a9f2de2c71e0edcbc726c488a60f12cf40f043a18222435b304b953a0a3"} -2023-12-15T14:34:59.086Z INFO initializing dbft {"height": 1368, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:34:59.087Z debug frostfs-node/morph.go:229 new block {"index": 1367} -2023-12-15T14:34:59.090Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:34:59.094Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:34:59.095Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:34:59.798Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1367, "blockHeight": 1367, "took": "5.902956ms"} -2023-12-15T14:35:00.086Z INFO sending PrepareRequest {"height": 1368, "view": 0} -2023-12-15T14:35:00.087Z INFO sending Commit {"height": 1368, "view": 0} -2023-12-15T14:35:00.087Z INFO approving block {"height": 1368, "hash": "5e0dfb8979b4e25d9a35eb825bf379e9cb74e73d4dab67a305a539c1349d2151", "tx_count": 2, "merkle": "37ae7e0970d0d95a5c97ccdc7e1baa431a91a34f8fd6f62dca5711bf70f87f33", "prev": "0b6c521aca242ee9b9c57f10394cd611fd326e017dbb7006856c74f51b1fcf1c"} -2023-12-15T14:35:00.088Z INFO runtime log {"tx": "41a6870c198b9644d4ba1813b7f4345651b67480431465d4563ca80c40f9719a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:35:00.088Z INFO runtime log {"tx": "41a6870c198b9644d4ba1813b7f4345651b67480431465d4563ca80c40f9719a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:35:00.089Z INFO initializing dbft {"height": 1369, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:00.090Z debug frostfs-node/morph.go:229 new block {"index": 1368} -2023-12-15T14:35:00.797Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1368, "blockHeight": 1368, "took": "4.315885ms"} -2023-12-15T14:35:01.088Z INFO sending PrepareRequest {"height": 1369, "view": 0} -2023-12-15T14:35:01.088Z INFO sending Commit {"height": 1369, "view": 0} -2023-12-15T14:35:01.088Z INFO approving block {"height": 1369, "hash": "89b599f7ff44c081ba4afc844b1d2df908e25e736b9d35c7614138d427273b50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e0dfb8979b4e25d9a35eb825bf379e9cb74e73d4dab67a305a539c1349d2151"} -2023-12-15T14:35:01.090Z INFO initializing dbft {"height": 1370, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:01.090Z debug frostfs-node/morph.go:229 new block {"index": 1369} -2023-12-15T14:35:01.797Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1369, "blockHeight": 1369, "took": "3.907398ms"} -2023-12-15T14:35:02.089Z INFO sending PrepareRequest {"height": 1370, "view": 0} -2023-12-15T14:35:02.090Z INFO sending Commit {"height": 1370, "view": 0} -2023-12-15T14:35:02.090Z INFO approving block {"height": 1370, "hash": "9b6daf5f14cdb4625e691a8b385e43d433e44938bdc2ff0d9c6ae250643c3919", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89b599f7ff44c081ba4afc844b1d2df908e25e736b9d35c7614138d427273b50"} -2023-12-15T14:35:02.091Z INFO initializing dbft {"height": 1371, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:02.092Z debug frostfs-node/morph.go:229 new block {"index": 1370} -2023-12-15T14:35:02.798Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1370, "blockHeight": 1370, "took": "3.841202ms"} -2023-12-15T14:35:03.091Z INFO sending PrepareRequest {"height": 1371, "view": 0} -2023-12-15T14:35:03.091Z INFO sending Commit {"height": 1371, "view": 0} -2023-12-15T14:35:03.092Z INFO approving block {"height": 1371, "hash": "73aac7b903f703a3196da5f437a88064836b307bdef4379f657fa72d5d10a0de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b6daf5f14cdb4625e691a8b385e43d433e44938bdc2ff0d9c6ae250643c3919"} -2023-12-15T14:35:03.093Z INFO initializing dbft {"height": 1372, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:03.093Z debug frostfs-node/morph.go:229 new block {"index": 1371} -2023-12-15T14:35:03.798Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1371, "blockHeight": 1371, "took": "3.995527ms"} -2023-12-15T14:35:04.092Z INFO sending PrepareRequest {"height": 1372, "view": 0} -2023-12-15T14:35:04.092Z INFO sending Commit {"height": 1372, "view": 0} -2023-12-15T14:35:04.092Z INFO approving block {"height": 1372, "hash": "f309780ad8b1c318561793d7df4f0f8749321e64015b7ef7028bb5eedc7f9dbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73aac7b903f703a3196da5f437a88064836b307bdef4379f657fa72d5d10a0de"} -2023-12-15T14:35:04.093Z INFO initializing dbft {"height": 1373, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:04.094Z debug frostfs-node/morph.go:229 new block {"index": 1372} -2023-12-15T14:35:04.799Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1372, "blockHeight": 1372, "took": "3.705628ms"} -2023-12-15T14:35:05.094Z INFO sending PrepareRequest {"height": 1373, "view": 0} -2023-12-15T14:35:05.094Z INFO sending Commit {"height": 1373, "view": 0} -2023-12-15T14:35:05.094Z INFO approving block {"height": 1373, "hash": "a64e02b76158b79bc7bec873328c0412de37d81b29b5bc81a5f46fc9a5b83e42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f309780ad8b1c318561793d7df4f0f8749321e64015b7ef7028bb5eedc7f9dbe"} -2023-12-15T14:35:05.096Z INFO initializing dbft {"height": 1374, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:05.096Z debug frostfs-node/morph.go:229 new block {"index": 1373} -2023-12-15T14:35:05.801Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1373, "blockHeight": 1373, "took": "4.713488ms"} -2023-12-15T14:35:06.095Z INFO sending PrepareRequest {"height": 1374, "view": 0} -2023-12-15T14:35:06.095Z INFO sending Commit {"height": 1374, "view": 0} -2023-12-15T14:35:06.096Z INFO approving block {"height": 1374, "hash": "f0eae44b60b38eea73f80342ad2269d27285646ec6ab4aaaec901f64b50c116a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a64e02b76158b79bc7bec873328c0412de37d81b29b5bc81a5f46fc9a5b83e42"} -2023-12-15T14:35:06.097Z INFO initializing dbft {"height": 1375, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:06.097Z debug frostfs-node/morph.go:229 new block {"index": 1374} -2023-12-15T14:35:06.803Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1374, "blockHeight": 1374, "took": "5.165628ms"} -2023-12-15T14:35:07.097Z INFO sending PrepareRequest {"height": 1375, "view": 0} -2023-12-15T14:35:07.097Z INFO sending Commit {"height": 1375, "view": 0} -2023-12-15T14:35:07.098Z INFO approving block {"height": 1375, "hash": "da30df152f861833f09e8fbc2b3ba16178eff741fede1b10766d0c4655ff9356", "tx_count": 1, "merkle": "8ea50cd03ef3c350ac1beddee190ab2f68664749c5e889295bf95ec945cd3878", "prev": "f0eae44b60b38eea73f80342ad2269d27285646ec6ab4aaaec901f64b50c116a"} -2023-12-15T14:35:07.100Z INFO initializing dbft {"height": 1376, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:07.101Z debug frostfs-node/morph.go:229 new block {"index": 1375} -2023-12-15T14:35:07.808Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 1375, "blockHeight": 1375, "took": "9.680355ms"} -2023-12-15T14:35:08.098Z INFO sending PrepareRequest {"height": 1376, "view": 0} -2023-12-15T14:35:08.098Z INFO sending Commit {"height": 1376, "view": 0} -2023-12-15T14:35:08.099Z INFO approving block {"height": 1376, "hash": "acb7689380413a9a55e451fc3fa76c5360775e79087551e5742064cb97467211", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da30df152f861833f09e8fbc2b3ba16178eff741fede1b10766d0c4655ff9356"} -2023-12-15T14:35:08.100Z INFO initializing dbft {"height": 1377, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:08.101Z debug frostfs-node/morph.go:229 new block {"index": 1376} -2023-12-15T14:35:08.802Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1376, "blockHeight": 1376, "took": "3.142779ms"} -2023-12-15T14:35:09.100Z INFO sending PrepareRequest {"height": 1377, "view": 0} -2023-12-15T14:35:09.100Z INFO sending Commit {"height": 1377, "view": 0} -2023-12-15T14:35:09.100Z INFO approving block {"height": 1377, "hash": "d91825938e5e82e34ec77f68d3b853776822097fab143fbbe6587df89277032f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acb7689380413a9a55e451fc3fa76c5360775e79087551e5742064cb97467211"} -2023-12-15T14:35:09.101Z INFO initializing dbft {"height": 1378, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:09.102Z debug frostfs-node/morph.go:229 new block {"index": 1377} -2023-12-15T14:35:09.803Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1377, "blockHeight": 1377, "took": "4.255261ms"} -2023-12-15T14:35:10.101Z INFO sending PrepareRequest {"height": 1378, "view": 0} -2023-12-15T14:35:10.101Z INFO sending Commit {"height": 1378, "view": 0} -2023-12-15T14:35:10.102Z INFO approving block {"height": 1378, "hash": "475c838740ff2b449c21bb0dd16a39802179c18ebdd59e46fda520d63bfd7c11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d91825938e5e82e34ec77f68d3b853776822097fab143fbbe6587df89277032f"} -2023-12-15T14:35:10.103Z INFO initializing dbft {"height": 1379, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:10.103Z debug frostfs-node/morph.go:229 new block {"index": 1378} -2023-12-15T14:35:10.804Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1378, "blockHeight": 1378, "took": "4.513135ms"} -2023-12-15T14:35:11.103Z INFO sending PrepareRequest {"height": 1379, "view": 0} -2023-12-15T14:35:11.103Z INFO sending Commit {"height": 1379, "view": 0} -2023-12-15T14:35:11.103Z INFO approving block {"height": 1379, "hash": "3c7433d28681718aa43ca2225293cbe397030c1bd2c25f5f116c90d6b5d65598", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "475c838740ff2b449c21bb0dd16a39802179c18ebdd59e46fda520d63bfd7c11"} -2023-12-15T14:35:11.104Z INFO initializing dbft {"height": 1380, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:11.105Z debug frostfs-node/morph.go:229 new block {"index": 1379} -2023-12-15T14:35:11.805Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1379, "blockHeight": 1379, "took": "4.337724ms"} -2023-12-15T14:35:12.105Z INFO sending PrepareRequest {"height": 1380, "view": 0} -2023-12-15T14:35:12.105Z INFO sending Commit {"height": 1380, "view": 0} -2023-12-15T14:35:12.105Z INFO approving block {"height": 1380, "hash": "3020fb461feb6726c0c6e008f4307d6e35903ac4928d4fc4f133b164aad1f369", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c7433d28681718aa43ca2225293cbe397030c1bd2c25f5f116c90d6b5d65598"} -2023-12-15T14:35:12.106Z INFO initializing dbft {"height": 1381, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:12.106Z debug frostfs-node/morph.go:229 new block {"index": 1380} -2023-12-15T14:35:12.804Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1380, "blockHeight": 1380, "took": "2.604833ms"} -2023-12-15T14:35:13.106Z INFO sending PrepareRequest {"height": 1381, "view": 0} -2023-12-15T14:35:13.106Z INFO sending Commit {"height": 1381, "view": 0} -2023-12-15T14:35:13.107Z INFO approving block {"height": 1381, "hash": "35aedd42ba36d58417d819677f3cab75dcc2900bbdef2186bedd4829e336f644", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3020fb461feb6726c0c6e008f4307d6e35903ac4928d4fc4f133b164aad1f369"} -2023-12-15T14:35:13.108Z INFO initializing dbft {"height": 1382, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:13.109Z debug frostfs-node/morph.go:229 new block {"index": 1381} -2023-12-15T14:35:13.807Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1381, "blockHeight": 1381, "took": "5.250887ms"} -2023-12-15T14:35:14.108Z INFO sending PrepareRequest {"height": 1382, "view": 0} -2023-12-15T14:35:14.108Z INFO sending Commit {"height": 1382, "view": 0} -2023-12-15T14:35:14.108Z INFO approving block {"height": 1382, "hash": "f252552205215802503e640de74fee91cba5e3ebbb9cffd18f39ce4642b3d2b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35aedd42ba36d58417d819677f3cab75dcc2900bbdef2186bedd4829e336f644"} -2023-12-15T14:35:14.109Z INFO initializing dbft {"height": 1383, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:14.109Z debug frostfs-node/morph.go:229 new block {"index": 1382} -2023-12-15T14:35:14.806Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1382, "blockHeight": 1382, "took": "3.800914ms"} -2023-12-15T14:35:15.109Z INFO sending PrepareRequest {"height": 1383, "view": 0} -2023-12-15T14:35:15.110Z INFO sending Commit {"height": 1383, "view": 0} -2023-12-15T14:35:15.110Z INFO approving block {"height": 1383, "hash": "89eb86c3ec7b7fb0b08d5da88cf9a59c6318d19a93e4890139c67bc4976fb4de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f252552205215802503e640de74fee91cba5e3ebbb9cffd18f39ce4642b3d2b9"} -2023-12-15T14:35:15.111Z INFO initializing dbft {"height": 1384, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:15.112Z debug frostfs-node/morph.go:229 new block {"index": 1383} -2023-12-15T14:35:15.807Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1383, "blockHeight": 1383, "took": "4.019677ms"} -2023-12-15T14:35:16.111Z INFO sending PrepareRequest {"height": 1384, "view": 0} -2023-12-15T14:35:16.111Z INFO sending Commit {"height": 1384, "view": 0} -2023-12-15T14:35:16.111Z INFO approving block {"height": 1384, "hash": "9cf86b89e5e34df9aff6a59e2499fc40a22b658b6eacb8e2f7b23c395405981f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89eb86c3ec7b7fb0b08d5da88cf9a59c6318d19a93e4890139c67bc4976fb4de"} -2023-12-15T14:35:16.113Z INFO initializing dbft {"height": 1385, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:16.113Z debug frostfs-node/morph.go:229 new block {"index": 1384} -2023-12-15T14:35:16.808Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1384, "blockHeight": 1384, "took": "4.287299ms"} -2023-12-15T14:35:17.112Z INFO sending PrepareRequest {"height": 1385, "view": 0} -2023-12-15T14:35:17.112Z INFO sending Commit {"height": 1385, "view": 0} -2023-12-15T14:35:17.113Z INFO approving block {"height": 1385, "hash": "84e15a7679edab09e554502b3f57c78aeb95c6fe8a3323ae3940eb9d080ce318", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cf86b89e5e34df9aff6a59e2499fc40a22b658b6eacb8e2f7b23c395405981f"} -2023-12-15T14:35:17.114Z INFO initializing dbft {"height": 1386, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:17.114Z debug frostfs-node/morph.go:229 new block {"index": 1385} -2023-12-15T14:35:17.117Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 6, "iteration": 2, "error": "no data for 1 iteration in 6 epoch for consumers's trusts"} -2023-12-15T14:35:17.119Z info settlement/calls.go:106 start basic income distribution {"epoch": 6} -2023-12-15T14:35:17.807Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1385, "blockHeight": 1385, "took": "3.139698ms"} -2023-12-15T14:35:18.114Z INFO sending PrepareRequest {"height": 1386, "view": 0} -2023-12-15T14:35:18.114Z INFO sending Commit {"height": 1386, "view": 0} -2023-12-15T14:35:18.115Z INFO approving block {"height": 1386, "hash": "5e26017f3fd4f7e00a8f1521c128405657ee9d9072f5adb86728b3f7f7010fb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84e15a7679edab09e554502b3f57c78aeb95c6fe8a3323ae3940eb9d080ce318"} -2023-12-15T14:35:18.116Z INFO initializing dbft {"height": 1387, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:18.117Z debug frostfs-node/morph.go:229 new block {"index": 1386} -2023-12-15T14:35:18.809Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1386, "blockHeight": 1386, "took": "4.20715ms"} -2023-12-15T14:35:19.116Z INFO sending PrepareRequest {"height": 1387, "view": 0} -2023-12-15T14:35:19.116Z INFO sending Commit {"height": 1387, "view": 0} -2023-12-15T14:35:19.116Z INFO approving block {"height": 1387, "hash": "e9f4fe0851582c5acff6953c74e029ac90a6695210f7a0d80e0eb095a15bf46d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e26017f3fd4f7e00a8f1521c128405657ee9d9072f5adb86728b3f7f7010fb7"} -2023-12-15T14:35:19.117Z INFO initializing dbft {"height": 1388, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:19.117Z debug frostfs-node/morph.go:229 new block {"index": 1387} -2023-12-15T14:35:19.810Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1387, "blockHeight": 1387, "took": "4.685137ms"} -2023-12-15T14:35:20.117Z INFO sending PrepareRequest {"height": 1388, "view": 0} -2023-12-15T14:35:20.117Z INFO sending Commit {"height": 1388, "view": 0} -2023-12-15T14:35:20.117Z INFO approving block {"height": 1388, "hash": "3af39b1fd3c9ddf30dfdda4850bafffe978f71bfa6ffcb026455e12638de8ad2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9f4fe0851582c5acff6953c74e029ac90a6695210f7a0d80e0eb095a15bf46d"} -2023-12-15T14:35:20.118Z INFO initializing dbft {"height": 1389, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:20.119Z debug frostfs-node/morph.go:229 new block {"index": 1388} -2023-12-15T14:35:20.808Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1388, "blockHeight": 1388, "took": "2.73009ms"} -2023-12-15T14:35:21.119Z INFO sending PrepareRequest {"height": 1389, "view": 0} -2023-12-15T14:35:21.119Z INFO sending Commit {"height": 1389, "view": 0} -2023-12-15T14:35:21.119Z INFO approving block {"height": 1389, "hash": "53100370c4f35879bcc1929f253b562b261c1d749d51aa4095cee083e2ae1907", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3af39b1fd3c9ddf30dfdda4850bafffe978f71bfa6ffcb026455e12638de8ad2"} -2023-12-15T14:35:21.120Z INFO initializing dbft {"height": 1390, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:21.120Z debug frostfs-node/morph.go:229 new block {"index": 1389} -2023-12-15T14:35:21.810Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1389, "blockHeight": 1389, "took": "4.046948ms"} -2023-12-15T14:35:22.120Z INFO sending PrepareRequest {"height": 1390, "view": 0} -2023-12-15T14:35:22.120Z INFO sending Commit {"height": 1390, "view": 0} -2023-12-15T14:35:22.120Z INFO approving block {"height": 1390, "hash": "1959047a8167962b049dead79404020dcb36efdced40167f21683917ff710ecf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53100370c4f35879bcc1929f253b562b261c1d749d51aa4095cee083e2ae1907"} -2023-12-15T14:35:22.121Z INFO initializing dbft {"height": 1391, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:22.122Z debug frostfs-node/morph.go:229 new block {"index": 1390} -2023-12-15T14:35:22.812Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1390, "blockHeight": 1390, "took": "4.973473ms"} -2023-12-15T14:35:23.121Z INFO sending PrepareRequest {"height": 1391, "view": 0} -2023-12-15T14:35:23.121Z INFO sending Commit {"height": 1391, "view": 0} -2023-12-15T14:35:23.121Z INFO approving block {"height": 1391, "hash": "e1d66e9108fbf0fa10ae7eac792fd2635462b7e1c1664f6449fb57d8af5b7290", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1959047a8167962b049dead79404020dcb36efdced40167f21683917ff710ecf"} -2023-12-15T14:35:23.122Z INFO initializing dbft {"height": 1392, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:23.123Z debug frostfs-node/morph.go:229 new block {"index": 1391} -2023-12-15T14:35:23.810Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1391, "blockHeight": 1391, "took": "2.799461ms"} -2023-12-15T14:35:24.122Z INFO sending PrepareRequest {"height": 1392, "view": 0} -2023-12-15T14:35:24.122Z INFO sending Commit {"height": 1392, "view": 0} -2023-12-15T14:35:24.123Z INFO approving block {"height": 1392, "hash": "1688906364319ef0792ba473fb2e471fa2200ba77e5371f71415b887bbe21d7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1d66e9108fbf0fa10ae7eac792fd2635462b7e1c1664f6449fb57d8af5b7290"} -2023-12-15T14:35:24.124Z INFO initializing dbft {"height": 1393, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:24.124Z debug frostfs-node/morph.go:229 new block {"index": 1392} -2023-12-15T14:35:24.810Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1392, "blockHeight": 1392, "took": "2.689409ms"} -2023-12-15T14:35:25.124Z INFO sending PrepareRequest {"height": 1393, "view": 0} -2023-12-15T14:35:25.124Z INFO sending Commit {"height": 1393, "view": 0} -2023-12-15T14:35:25.124Z INFO approving block {"height": 1393, "hash": "6ac64d36acf85fa77ca52dfff6ab61618c8c309819579be935859c4eb2980fe3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1688906364319ef0792ba473fb2e471fa2200ba77e5371f71415b887bbe21d7b"} -2023-12-15T14:35:25.125Z INFO initializing dbft {"height": 1394, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:25.125Z debug frostfs-node/morph.go:229 new block {"index": 1393} -2023-12-15T14:35:25.812Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1393, "blockHeight": 1393, "took": "4.198717ms"} -2023-12-15T14:35:26.125Z INFO sending PrepareRequest {"height": 1394, "view": 0} -2023-12-15T14:35:26.126Z INFO sending Commit {"height": 1394, "view": 0} -2023-12-15T14:35:26.126Z INFO approving block {"height": 1394, "hash": "75a6e5260e4d02da1c119159fc6384e3c7ff747865791bd94551392bf7968b1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ac64d36acf85fa77ca52dfff6ab61618c8c309819579be935859c4eb2980fe3"} -2023-12-15T14:35:26.127Z INFO initializing dbft {"height": 1395, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:26.128Z debug frostfs-node/morph.go:229 new block {"index": 1394} -2023-12-15T14:35:26.812Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1394, "blockHeight": 1394, "took": "3.355956ms"} -2023-12-15T14:35:27.127Z INFO sending PrepareRequest {"height": 1395, "view": 0} -2023-12-15T14:35:27.127Z INFO sending Commit {"height": 1395, "view": 0} -2023-12-15T14:35:27.127Z INFO approving block {"height": 1395, "hash": "3ba6d019d0479d4b119261c7298fe601a6eff35621ee22b13db5a0de4c422a09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75a6e5260e4d02da1c119159fc6384e3c7ff747865791bd94551392bf7968b1a"} -2023-12-15T14:35:27.128Z INFO initializing dbft {"height": 1396, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:27.129Z debug frostfs-node/morph.go:229 new block {"index": 1395} -2023-12-15T14:35:27.812Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1395, "blockHeight": 1395, "took": "2.937322ms"} -2023-12-15T14:35:28.128Z INFO sending PrepareRequest {"height": 1396, "view": 0} -2023-12-15T14:35:28.128Z INFO sending Commit {"height": 1396, "view": 0} -2023-12-15T14:35:28.128Z INFO approving block {"height": 1396, "hash": "7e12e86b18d5740fddd844a8fa6e841fa830196e0547f06e56f79bc4f3ba6045", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ba6d019d0479d4b119261c7298fe601a6eff35621ee22b13db5a0de4c422a09"} -2023-12-15T14:35:28.129Z INFO initializing dbft {"height": 1397, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:28.130Z debug frostfs-node/morph.go:229 new block {"index": 1396} -2023-12-15T14:35:28.814Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1396, "blockHeight": 1396, "took": "4.20426ms"} -2023-12-15T14:35:29.130Z INFO sending PrepareRequest {"height": 1397, "view": 0} -2023-12-15T14:35:29.130Z INFO sending Commit {"height": 1397, "view": 0} -2023-12-15T14:35:29.130Z INFO approving block {"height": 1397, "hash": "0893114e000db0ba79860a2557a6b4bea03f5914942aa4632a3aa65a5e85c8d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e12e86b18d5740fddd844a8fa6e841fa830196e0547f06e56f79bc4f3ba6045"} -2023-12-15T14:35:29.132Z INFO initializing dbft {"height": 1398, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:29.132Z debug frostfs-node/morph.go:229 new block {"index": 1397} -2023-12-15T14:35:29.814Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1397, "blockHeight": 1397, "took": "3.901154ms"} -2023-12-15T14:35:30.131Z INFO sending PrepareRequest {"height": 1398, "view": 0} -2023-12-15T14:35:30.132Z INFO sending Commit {"height": 1398, "view": 0} -2023-12-15T14:35:30.132Z INFO approving block {"height": 1398, "hash": "b7c80332f98f7e5265dcec2807a4d3aafe8e3f1747b198a94c3388d8130d1739", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0893114e000db0ba79860a2557a6b4bea03f5914942aa4632a3aa65a5e85c8d4"} -2023-12-15T14:35:30.133Z INFO initializing dbft {"height": 1399, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:30.133Z debug frostfs-node/morph.go:229 new block {"index": 1398} -2023-12-15T14:35:30.814Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1398, "blockHeight": 1398, "took": "2.787428ms"} -2023-12-15T14:35:31.133Z INFO sending PrepareRequest {"height": 1399, "view": 0} -2023-12-15T14:35:31.133Z INFO sending Commit {"height": 1399, "view": 0} -2023-12-15T14:35:31.133Z INFO approving block {"height": 1399, "hash": "340d9dbabc5809bf5a1eb5cfe347c77a6fa16adc5493bd7ccbbfa92e2ff0c2d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7c80332f98f7e5265dcec2807a4d3aafe8e3f1747b198a94c3388d8130d1739"} -2023-12-15T14:35:31.134Z INFO initializing dbft {"height": 1400, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:31.135Z debug frostfs-node/morph.go:229 new block {"index": 1399} -2023-12-15T14:35:31.815Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1399, "blockHeight": 1399, "took": "4.32888ms"} -2023-12-15T14:35:32.134Z INFO sending PrepareRequest {"height": 1400, "view": 0} -2023-12-15T14:35:32.134Z INFO sending Commit {"height": 1400, "view": 0} -2023-12-15T14:35:32.134Z INFO approving block {"height": 1400, "hash": "cfcd71d756cee91d9c7c6d5e66ab2c7d5010bad5d8f200eedd48c3dd0cdf2cf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "340d9dbabc5809bf5a1eb5cfe347c77a6fa16adc5493bd7ccbbfa92e2ff0c2d1"} -2023-12-15T14:35:32.135Z INFO initializing dbft {"height": 1401, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:32.135Z debug frostfs-node/morph.go:229 new block {"index": 1400} -2023-12-15T14:35:32.816Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1400, "blockHeight": 1400, "took": "4.178429ms"} -2023-12-15T14:35:33.135Z INFO sending PrepareRequest {"height": 1401, "view": 0} -2023-12-15T14:35:33.135Z INFO sending Commit {"height": 1401, "view": 0} -2023-12-15T14:35:33.136Z INFO approving block {"height": 1401, "hash": "057519f62119fa2244a9e1e6fdebf8811030feea0c44e761e002554ea1927032", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfcd71d756cee91d9c7c6d5e66ab2c7d5010bad5d8f200eedd48c3dd0cdf2cf9"} -2023-12-15T14:35:33.136Z INFO initializing dbft {"height": 1402, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:33.137Z debug frostfs-node/morph.go:229 new block {"index": 1401} -2023-12-15T14:35:33.818Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1401, "blockHeight": 1401, "took": "5.836117ms"} -2023-12-15T14:35:34.137Z INFO sending PrepareRequest {"height": 1402, "view": 0} -2023-12-15T14:35:34.137Z INFO sending Commit {"height": 1402, "view": 0} -2023-12-15T14:35:34.138Z INFO approving block {"height": 1402, "hash": "64ddd7620b0c258663349da2985cf6559f8e3133066803f0d1517aa04357342d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "057519f62119fa2244a9e1e6fdebf8811030feea0c44e761e002554ea1927032"} -2023-12-15T14:35:34.139Z INFO initializing dbft {"height": 1403, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:34.139Z debug frostfs-node/morph.go:229 new block {"index": 1402} -2023-12-15T14:35:34.816Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1402, "blockHeight": 1402, "took": "3.749316ms"} -2023-12-15T14:35:35.138Z INFO sending PrepareRequest {"height": 1403, "view": 0} -2023-12-15T14:35:35.138Z INFO sending Commit {"height": 1403, "view": 0} -2023-12-15T14:35:35.139Z INFO approving block {"height": 1403, "hash": "8f2898178e95344eef20f6aa80fc78b1325aea1d1126fee64a0457ad6dfa43cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64ddd7620b0c258663349da2985cf6559f8e3133066803f0d1517aa04357342d"} -2023-12-15T14:35:35.139Z INFO initializing dbft {"height": 1404, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:35.140Z debug frostfs-node/morph.go:229 new block {"index": 1403} -2023-12-15T14:35:35.819Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1403, "blockHeight": 1403, "took": "5.955858ms"} -2023-12-15T14:35:36.140Z INFO sending PrepareRequest {"height": 1404, "view": 0} -2023-12-15T14:35:36.140Z INFO sending Commit {"height": 1404, "view": 0} -2023-12-15T14:35:36.140Z INFO approving block {"height": 1404, "hash": "112c9fcff77fa32bdac0d1569b4c70aa46442daf4e2134e690e5e54e5e00ebd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f2898178e95344eef20f6aa80fc78b1325aea1d1126fee64a0457ad6dfa43cc"} -2023-12-15T14:35:36.141Z INFO initializing dbft {"height": 1405, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:36.142Z debug frostfs-node/morph.go:229 new block {"index": 1404} -2023-12-15T14:35:36.817Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1404, "blockHeight": 1404, "took": "3.85632ms"} -2023-12-15T14:35:37.141Z INFO sending PrepareRequest {"height": 1405, "view": 0} -2023-12-15T14:35:37.141Z INFO sending Commit {"height": 1405, "view": 0} -2023-12-15T14:35:37.142Z INFO approving block {"height": 1405, "hash": "5024768390ee5e1b536b518a4e63901693d8044579711b77e5d6d114b590e3ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "112c9fcff77fa32bdac0d1569b4c70aa46442daf4e2134e690e5e54e5e00ebd6"} -2023-12-15T14:35:37.143Z INFO initializing dbft {"height": 1406, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:37.143Z debug frostfs-node/morph.go:229 new block {"index": 1405} -2023-12-15T14:35:37.817Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1405, "blockHeight": 1405, "took": "3.54976ms"} -2023-12-15T14:35:38.143Z INFO sending PrepareRequest {"height": 1406, "view": 0} -2023-12-15T14:35:38.143Z INFO sending Commit {"height": 1406, "view": 0} -2023-12-15T14:35:38.143Z INFO approving block {"height": 1406, "hash": "7a949f8f64ce9e406bf1c3606a3896ea955c85a53d68ea262e8ecd879b48cd55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5024768390ee5e1b536b518a4e63901693d8044579711b77e5d6d114b590e3ea"} -2023-12-15T14:35:38.144Z INFO initializing dbft {"height": 1407, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:38.144Z debug frostfs-node/morph.go:229 new block {"index": 1406} -2023-12-15T14:35:38.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1406, "blockHeight": 1406, "took": "5.798315ms"} -2023-12-15T14:35:39.144Z INFO sending PrepareRequest {"height": 1407, "view": 0} -2023-12-15T14:35:39.144Z INFO sending Commit {"height": 1407, "view": 0} -2023-12-15T14:35:39.144Z INFO approving block {"height": 1407, "hash": "c6b478c751b674a38d51a4d00e3a3ba290469dc8a2cfe8a532b9768df909225f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a949f8f64ce9e406bf1c3606a3896ea955c85a53d68ea262e8ecd879b48cd55"} -2023-12-15T14:35:39.145Z INFO initializing dbft {"height": 1408, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:39.146Z debug frostfs-node/morph.go:229 new block {"index": 1407} -2023-12-15T14:35:39.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1407, "blockHeight": 1407, "took": "5.534154ms"} -2023-12-15T14:35:40.145Z INFO sending PrepareRequest {"height": 1408, "view": 0} -2023-12-15T14:35:40.145Z INFO sending Commit {"height": 1408, "view": 0} -2023-12-15T14:35:40.145Z INFO approving block {"height": 1408, "hash": "9cd08fd379349a8de72dadca823d20ea866297041771da108f991e917865ae29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6b478c751b674a38d51a4d00e3a3ba290469dc8a2cfe8a532b9768df909225f"} -2023-12-15T14:35:40.146Z INFO initializing dbft {"height": 1409, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:40.147Z debug frostfs-node/morph.go:229 new block {"index": 1408} -2023-12-15T14:35:40.819Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1408, "blockHeight": 1408, "took": "3.887104ms"} -2023-12-15T14:35:41.147Z INFO sending PrepareRequest {"height": 1409, "view": 0} -2023-12-15T14:35:41.147Z INFO sending Commit {"height": 1409, "view": 0} -2023-12-15T14:35:41.147Z INFO approving block {"height": 1409, "hash": "b35132d6ef684773b343d334c13cdf982eee7abab16890ed2b49a063809d81ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cd08fd379349a8de72dadca823d20ea866297041771da108f991e917865ae29"} -2023-12-15T14:35:41.148Z INFO initializing dbft {"height": 1410, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:41.149Z debug frostfs-node/morph.go:229 new block {"index": 1409} -2023-12-15T14:35:41.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1409, "blockHeight": 1409, "took": "4.000607ms"} -2023-12-15T14:35:42.148Z INFO sending PrepareRequest {"height": 1410, "view": 0} -2023-12-15T14:35:42.148Z INFO sending Commit {"height": 1410, "view": 0} -2023-12-15T14:35:42.148Z INFO approving block {"height": 1410, "hash": "6fcf137ebf68abd26b2ad9b9ce8a4be9029a0107a4b6bd0ad27d068365efa0a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b35132d6ef684773b343d334c13cdf982eee7abab16890ed2b49a063809d81ab"} -2023-12-15T14:35:42.149Z INFO initializing dbft {"height": 1411, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:42.150Z debug frostfs-node/morph.go:229 new block {"index": 1410} -2023-12-15T14:35:42.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1410, "blockHeight": 1410, "took": "2.909894ms"} -2023-12-15T14:35:43.150Z INFO sending PrepareRequest {"height": 1411, "view": 0} -2023-12-15T14:35:43.150Z INFO sending Commit {"height": 1411, "view": 0} -2023-12-15T14:35:43.151Z INFO approving block {"height": 1411, "hash": "e1e7235900371425cbc74ab45e40b0614fc82040cd57b8371dae89c3d5ca61b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fcf137ebf68abd26b2ad9b9ce8a4be9029a0107a4b6bd0ad27d068365efa0a2"} -2023-12-15T14:35:43.152Z INFO initializing dbft {"height": 1412, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:43.153Z debug frostfs-node/morph.go:229 new block {"index": 1411} -2023-12-15T14:35:43.821Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1411, "blockHeight": 1411, "took": "3.666491ms"} -2023-12-15T14:35:44.151Z INFO sending PrepareRequest {"height": 1412, "view": 0} -2023-12-15T14:35:44.151Z INFO sending Commit {"height": 1412, "view": 0} -2023-12-15T14:35:44.152Z INFO approving block {"height": 1412, "hash": "b120ad178944c8bfe420c06ee10e7ce574f3ceeb79dedbfc7c8aabb65c659bd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1e7235900371425cbc74ab45e40b0614fc82040cd57b8371dae89c3d5ca61b2"} -2023-12-15T14:35:44.152Z INFO initializing dbft {"height": 1413, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:44.153Z debug frostfs-node/morph.go:229 new block {"index": 1412} -2023-12-15T14:35:44.822Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1412, "blockHeight": 1412, "took": "3.916195ms"} -2023-12-15T14:35:45.153Z INFO sending PrepareRequest {"height": 1413, "view": 0} -2023-12-15T14:35:45.153Z INFO sending Commit {"height": 1413, "view": 0} -2023-12-15T14:35:45.153Z INFO approving block {"height": 1413, "hash": "e0a14d7c6e5cffc87f4f380546f4e08441fa706bff18b3142dfbed37ff86f308", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b120ad178944c8bfe420c06ee10e7ce574f3ceeb79dedbfc7c8aabb65c659bd8"} -2023-12-15T14:35:45.154Z INFO initializing dbft {"height": 1414, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:45.155Z debug frostfs-node/morph.go:229 new block {"index": 1413} -2023-12-15T14:35:45.821Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1413, "blockHeight": 1413, "took": "2.759231ms"} -2023-12-15T14:35:46.154Z INFO sending PrepareRequest {"height": 1414, "view": 0} -2023-12-15T14:35:46.155Z INFO sending Commit {"height": 1414, "view": 0} -2023-12-15T14:35:46.155Z INFO approving block {"height": 1414, "hash": "bdf960e4491f197e4fc5b4fd16f2702138d1761629524f2d9df13cca824c5d67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0a14d7c6e5cffc87f4f380546f4e08441fa706bff18b3142dfbed37ff86f308"} -2023-12-15T14:35:46.156Z INFO initializing dbft {"height": 1415, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:46.156Z debug frostfs-node/morph.go:229 new block {"index": 1414} -2023-12-15T14:35:46.829Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1414, "blockHeight": 1414, "took": "10.414498ms"} -2023-12-15T14:35:47.156Z INFO sending PrepareRequest {"height": 1415, "view": 0} -2023-12-15T14:35:47.156Z INFO sending Commit {"height": 1415, "view": 0} -2023-12-15T14:35:47.157Z INFO approving block {"height": 1415, "hash": "6e68c71d5bcb1106157ecd9e9ff6971bc6b85f15eb4735b3d0d689c2316595a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdf960e4491f197e4fc5b4fd16f2702138d1761629524f2d9df13cca824c5d67"} -2023-12-15T14:35:47.158Z INFO initializing dbft {"height": 1416, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:47.159Z debug frostfs-node/morph.go:229 new block {"index": 1415} -2023-12-15T14:35:47.825Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1415, "blockHeight": 1415, "took": "5.533803ms"} -2023-12-15T14:35:48.157Z INFO sending PrepareRequest {"height": 1416, "view": 0} -2023-12-15T14:35:48.158Z INFO sending Commit {"height": 1416, "view": 0} -2023-12-15T14:35:48.158Z INFO approving block {"height": 1416, "hash": "1fdf4dd0bdab21529bfa0c75aed12ce123597e439ececcf1a93966843c56c5f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e68c71d5bcb1106157ecd9e9ff6971bc6b85f15eb4735b3d0d689c2316595a3"} -2023-12-15T14:35:48.159Z INFO initializing dbft {"height": 1417, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:48.159Z debug frostfs-node/morph.go:229 new block {"index": 1416} -2023-12-15T14:35:48.824Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1416, "blockHeight": 1416, "took": "4.364168ms"} -2023-12-15T14:35:49.159Z INFO sending PrepareRequest {"height": 1417, "view": 0} -2023-12-15T14:35:49.159Z INFO sending Commit {"height": 1417, "view": 0} -2023-12-15T14:35:49.159Z INFO approving block {"height": 1417, "hash": "03a877c881b505f5a435006ecfcbe851783275296c0fda0b3e2934da05b45617", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1fdf4dd0bdab21529bfa0c75aed12ce123597e439ececcf1a93966843c56c5f5"} -2023-12-15T14:35:49.160Z INFO initializing dbft {"height": 1418, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:49.160Z debug frostfs-node/morph.go:229 new block {"index": 1417} -2023-12-15T14:35:49.162Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:35:49.164Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:35:49.164Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:35:49.824Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1417, "blockHeight": 1417, "took": "3.997404ms"} -2023-12-15T14:35:50.160Z INFO sending PrepareRequest {"height": 1418, "view": 0} -2023-12-15T14:35:50.161Z INFO sending Commit {"height": 1418, "view": 0} -2023-12-15T14:35:50.161Z INFO approving block {"height": 1418, "hash": "3a9adb1ecf97c3cc1d0cd8f8ee6d9681b93894ee40d925e84ad4caddeabb2726", "tx_count": 2, "merkle": "b707e2e95615e281763a1709ce685edd78dfa594907ad8203eeaaa73a6423dc1", "prev": "03a877c881b505f5a435006ecfcbe851783275296c0fda0b3e2934da05b45617"} -2023-12-15T14:35:50.162Z INFO runtime log {"tx": "275494214ac0ee644658302d71bdb0c976cbd717e0df3f97f8e8d4fce755c33e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:35:50.162Z INFO runtime log {"tx": "275494214ac0ee644658302d71bdb0c976cbd717e0df3f97f8e8d4fce755c33e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:35:50.163Z INFO initializing dbft {"height": 1419, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:50.163Z debug frostfs-node/morph.go:229 new block {"index": 1418} -2023-12-15T14:35:50.826Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1418, "blockHeight": 1418, "took": "4.873554ms"} -2023-12-15T14:35:51.162Z INFO sending PrepareRequest {"height": 1419, "view": 0} -2023-12-15T14:35:51.162Z INFO sending Commit {"height": 1419, "view": 0} -2023-12-15T14:35:51.163Z INFO approving block {"height": 1419, "hash": "d8c8d46f8038303b57050f080483a5738321e3d04ed42a0686a2cf964483b52e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a9adb1ecf97c3cc1d0cd8f8ee6d9681b93894ee40d925e84ad4caddeabb2726"} -2023-12-15T14:35:51.164Z INFO initializing dbft {"height": 1420, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:51.164Z debug frostfs-node/morph.go:229 new block {"index": 1419} -2023-12-15T14:35:51.824Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1419, "blockHeight": 1419, "took": "3.031107ms"} -2023-12-15T14:35:52.163Z INFO sending PrepareRequest {"height": 1420, "view": 0} -2023-12-15T14:35:52.164Z INFO sending Commit {"height": 1420, "view": 0} -2023-12-15T14:35:52.164Z INFO approving block {"height": 1420, "hash": "01cc22d7dfbc58ee56cd28bc1428a702cc3c4628fe17a5c120b686f07d850394", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8c8d46f8038303b57050f080483a5738321e3d04ed42a0686a2cf964483b52e"} -2023-12-15T14:35:52.165Z INFO initializing dbft {"height": 1421, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:52.166Z debug frostfs-node/morph.go:229 new block {"index": 1420} -2023-12-15T14:35:52.825Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1420, "blockHeight": 1420, "took": "2.915092ms"} -2023-12-15T14:35:53.165Z INFO sending PrepareRequest {"height": 1421, "view": 0} -2023-12-15T14:35:53.165Z INFO sending Commit {"height": 1421, "view": 0} -2023-12-15T14:35:53.165Z INFO approving block {"height": 1421, "hash": "df2ba298b2a65e8835463effdddd7b55548434cb34ab1802d26fafe715eb3dcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01cc22d7dfbc58ee56cd28bc1428a702cc3c4628fe17a5c120b686f07d850394"} -2023-12-15T14:35:53.166Z INFO initializing dbft {"height": 1422, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:53.166Z debug frostfs-node/morph.go:229 new block {"index": 1421} -2023-12-15T14:35:53.825Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1421, "blockHeight": 1421, "took": "3.252756ms"} -2023-12-15T14:35:54.166Z INFO sending PrepareRequest {"height": 1422, "view": 0} -2023-12-15T14:35:54.167Z INFO sending Commit {"height": 1422, "view": 0} -2023-12-15T14:35:54.167Z INFO approving block {"height": 1422, "hash": "9f21c6938fa15b81a8925a4eb4e3e7986cd16d1c54d029c7637aaf1b85722e2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df2ba298b2a65e8835463effdddd7b55548434cb34ab1802d26fafe715eb3dcf"} -2023-12-15T14:35:54.169Z INFO initializing dbft {"height": 1423, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:54.169Z debug frostfs-node/morph.go:229 new block {"index": 1422} -2023-12-15T14:35:54.829Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1422, "blockHeight": 1422, "took": "6.077274ms"} -2023-12-15T14:35:55.168Z INFO sending PrepareRequest {"height": 1423, "view": 0} -2023-12-15T14:35:55.168Z INFO sending Commit {"height": 1423, "view": 0} -2023-12-15T14:35:55.168Z INFO approving block {"height": 1423, "hash": "97d40f785158c80679c5f7a9f35a0d4db93e3708ca48290df20bec1874aaa7fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f21c6938fa15b81a8925a4eb4e3e7986cd16d1c54d029c7637aaf1b85722e2d"} -2023-12-15T14:35:55.170Z INFO initializing dbft {"height": 1424, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:55.170Z debug frostfs-node/morph.go:229 new block {"index": 1423} -2023-12-15T14:35:55.827Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1423, "blockHeight": 1423, "took": "3.913705ms"} -2023-12-15T14:35:56.169Z INFO sending PrepareRequest {"height": 1424, "view": 0} -2023-12-15T14:35:56.169Z INFO sending Commit {"height": 1424, "view": 0} -2023-12-15T14:35:56.169Z INFO approving block {"height": 1424, "hash": "e95a6a02b18c1de0d85995c39c64b95c1c590fe3fac4baac570c5449ea025150", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97d40f785158c80679c5f7a9f35a0d4db93e3708ca48290df20bec1874aaa7fb"} -2023-12-15T14:35:56.170Z INFO initializing dbft {"height": 1425, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:56.171Z debug frostfs-node/morph.go:229 new block {"index": 1424} -2023-12-15T14:35:56.828Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1424, "blockHeight": 1424, "took": "3.726579ms"} -2023-12-15T14:35:57.170Z INFO sending PrepareRequest {"height": 1425, "view": 0} -2023-12-15T14:35:57.171Z INFO sending Commit {"height": 1425, "view": 0} -2023-12-15T14:35:57.171Z INFO approving block {"height": 1425, "hash": "f92e118ff4674b96a67843c0f5a7bf9c1c21aebbe0d06284c7f5980b5f724a42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e95a6a02b18c1de0d85995c39c64b95c1c590fe3fac4baac570c5449ea025150"} -2023-12-15T14:35:57.172Z INFO initializing dbft {"height": 1426, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:57.173Z debug frostfs-node/morph.go:229 new block {"index": 1425} -2023-12-15T14:35:57.829Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1425, "blockHeight": 1425, "took": "4.453296ms"} -2023-12-15T14:35:58.172Z INFO sending PrepareRequest {"height": 1426, "view": 0} -2023-12-15T14:35:58.173Z INFO sending Commit {"height": 1426, "view": 0} -2023-12-15T14:35:58.173Z INFO approving block {"height": 1426, "hash": "35d89a152ff8d22ce32ecc36e5ccac2772a63ec71cd1b92773b97dcec32afe16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f92e118ff4674b96a67843c0f5a7bf9c1c21aebbe0d06284c7f5980b5f724a42"} -2023-12-15T14:35:58.175Z INFO initializing dbft {"height": 1427, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:58.175Z debug frostfs-node/morph.go:229 new block {"index": 1426} -2023-12-15T14:35:58.830Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1426, "blockHeight": 1426, "took": "3.713459ms"} -2023-12-15T14:35:59.174Z INFO sending PrepareRequest {"height": 1427, "view": 0} -2023-12-15T14:35:59.174Z INFO sending Commit {"height": 1427, "view": 0} -2023-12-15T14:35:59.175Z INFO approving block {"height": 1427, "hash": "81a425acb2b38458d1486a0e9d8e285daf7c3bf2efa954a369ecd7c5adb99df7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35d89a152ff8d22ce32ecc36e5ccac2772a63ec71cd1b92773b97dcec32afe16"} -2023-12-15T14:35:59.176Z INFO initializing dbft {"height": 1428, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:35:59.176Z debug frostfs-node/morph.go:229 new block {"index": 1427} -2023-12-15T14:35:59.831Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1427, "blockHeight": 1427, "took": "4.10574ms"} -2023-12-15T14:36:00.176Z INFO sending PrepareRequest {"height": 1428, "view": 0} -2023-12-15T14:36:00.176Z INFO sending Commit {"height": 1428, "view": 0} -2023-12-15T14:36:00.177Z INFO approving block {"height": 1428, "hash": "fea2f4fa5a046d717498851bacd2f8df5ab5d7748c51889e8f382356275d4c90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81a425acb2b38458d1486a0e9d8e285daf7c3bf2efa954a369ecd7c5adb99df7"} -2023-12-15T14:36:00.178Z INFO initializing dbft {"height": 1429, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:00.179Z debug frostfs-node/morph.go:229 new block {"index": 1428} -2023-12-15T14:36:00.832Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1428, "blockHeight": 1428, "took": "4.523172ms"} -2023-12-15T14:36:01.177Z INFO sending PrepareRequest {"height": 1429, "view": 0} -2023-12-15T14:36:01.177Z INFO sending Commit {"height": 1429, "view": 0} -2023-12-15T14:36:01.177Z INFO approving block {"height": 1429, "hash": "1a4a0a74b3449337b5a9136cfc29296f812d562e83d65d29e73be9f06384fef0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fea2f4fa5a046d717498851bacd2f8df5ab5d7748c51889e8f382356275d4c90"} -2023-12-15T14:36:01.178Z INFO initializing dbft {"height": 1430, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:01.179Z debug frostfs-node/morph.go:229 new block {"index": 1429} -2023-12-15T14:36:01.831Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1429, "blockHeight": 1429, "took": "3.79106ms"} -2023-12-15T14:36:02.179Z INFO sending PrepareRequest {"height": 1430, "view": 0} -2023-12-15T14:36:02.179Z INFO sending Commit {"height": 1430, "view": 0} -2023-12-15T14:36:02.180Z INFO approving block {"height": 1430, "hash": "6af64e97f07b246aaf55d08ad18f81097068d6a132e61a57f310776248abc100", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a4a0a74b3449337b5a9136cfc29296f812d562e83d65d29e73be9f06384fef0"} -2023-12-15T14:36:02.181Z INFO initializing dbft {"height": 1431, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:02.182Z debug frostfs-node/morph.go:229 new block {"index": 1430} -2023-12-15T14:36:02.831Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1430, "blockHeight": 1430, "took": "2.820402ms"} -2023-12-15T14:36:03.181Z INFO sending PrepareRequest {"height": 1431, "view": 0} -2023-12-15T14:36:03.181Z INFO sending Commit {"height": 1431, "view": 0} -2023-12-15T14:36:03.181Z INFO approving block {"height": 1431, "hash": "e0a04a857bb4c94b54b615c646889074b8622cecd0df5f4a077b772d7cde15ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6af64e97f07b246aaf55d08ad18f81097068d6a132e61a57f310776248abc100"} -2023-12-15T14:36:03.183Z INFO initializing dbft {"height": 1432, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:03.184Z debug frostfs-node/morph.go:229 new block {"index": 1431} -2023-12-15T14:36:03.833Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1431, "blockHeight": 1431, "took": "4.016681ms"} -2023-12-15T14:36:04.183Z INFO sending PrepareRequest {"height": 1432, "view": 0} -2023-12-15T14:36:04.183Z INFO sending Commit {"height": 1432, "view": 0} -2023-12-15T14:36:04.183Z INFO approving block {"height": 1432, "hash": "335f7b5b93b9e99ecdc14294f8d68c4c088b696241405dfdef02f31ba92931e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0a04a857bb4c94b54b615c646889074b8622cecd0df5f4a077b772d7cde15ff"} -2023-12-15T14:36:04.184Z INFO initializing dbft {"height": 1433, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:04.184Z debug frostfs-node/morph.go:229 new block {"index": 1432} -2023-12-15T14:36:04.837Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1432, "blockHeight": 1432, "took": "7.195022ms"} -2023-12-15T14:36:05.184Z INFO sending PrepareRequest {"height": 1433, "view": 0} -2023-12-15T14:36:05.185Z INFO sending Commit {"height": 1433, "view": 0} -2023-12-15T14:36:05.185Z INFO approving block {"height": 1433, "hash": "ae3b61a434d1a4a8377540fc14b88d1a01171eaf166190db2aa7d242f4b64cef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "335f7b5b93b9e99ecdc14294f8d68c4c088b696241405dfdef02f31ba92931e0"} -2023-12-15T14:36:05.185Z INFO initializing dbft {"height": 1434, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:05.186Z debug frostfs-node/morph.go:229 new block {"index": 1433} -2023-12-15T14:36:05.833Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1433, "blockHeight": 1433, "took": "2.964273ms"} -2023-12-15T14:36:06.186Z INFO sending PrepareRequest {"height": 1434, "view": 0} -2023-12-15T14:36:06.187Z INFO sending Commit {"height": 1434, "view": 0} -2023-12-15T14:36:06.187Z INFO approving block {"height": 1434, "hash": "9beb2bae1414fcd7827e0286f16d77b6910ca219298def9f383dcc4d4d3e405b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae3b61a434d1a4a8377540fc14b88d1a01171eaf166190db2aa7d242f4b64cef"} -2023-12-15T14:36:06.189Z INFO initializing dbft {"height": 1435, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:06.190Z debug frostfs-node/morph.go:229 new block {"index": 1434} -2023-12-15T14:36:06.837Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1434, "blockHeight": 1434, "took": "6.136643ms"} -2023-12-15T14:36:07.189Z INFO sending PrepareRequest {"height": 1435, "view": 0} -2023-12-15T14:36:07.189Z INFO sending Commit {"height": 1435, "view": 0} -2023-12-15T14:36:07.189Z INFO approving block {"height": 1435, "hash": "f8e64f2f18e550c5d7d606b6694d7b2f6a3df6f094da011319cf0184c0550508", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9beb2bae1414fcd7827e0286f16d77b6910ca219298def9f383dcc4d4d3e405b"} -2023-12-15T14:36:07.190Z INFO initializing dbft {"height": 1436, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:07.190Z debug frostfs-node/morph.go:229 new block {"index": 1435} -2023-12-15T14:36:07.835Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1435, "blockHeight": 1435, "took": "4.079999ms"} -2023-12-15T14:36:08.190Z INFO sending PrepareRequest {"height": 1436, "view": 0} -2023-12-15T14:36:08.190Z INFO sending Commit {"height": 1436, "view": 0} -2023-12-15T14:36:08.190Z INFO approving block {"height": 1436, "hash": "eb113f8d33d196b8794213f9521f89834a81ecd5fa8ffa5009d400b64227c99c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8e64f2f18e550c5d7d606b6694d7b2f6a3df6f094da011319cf0184c0550508"} -2023-12-15T14:36:08.191Z INFO initializing dbft {"height": 1437, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:08.192Z debug frostfs-node/morph.go:229 new block {"index": 1436} -2023-12-15T14:36:08.839Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1436, "blockHeight": 1436, "took": "7.004445ms"} -2023-12-15T14:36:09.191Z INFO sending PrepareRequest {"height": 1437, "view": 0} -2023-12-15T14:36:09.192Z INFO sending Commit {"height": 1437, "view": 0} -2023-12-15T14:36:09.192Z INFO approving block {"height": 1437, "hash": "af8082dbfea709d30c085713daa42683734a2744d2b4cd927417597cf77d1e46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb113f8d33d196b8794213f9521f89834a81ecd5fa8ffa5009d400b64227c99c"} -2023-12-15T14:36:09.194Z INFO initializing dbft {"height": 1438, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:09.194Z debug frostfs-node/morph.go:229 new block {"index": 1437} -2023-12-15T14:36:09.835Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1437, "blockHeight": 1437, "took": "3.08115ms"} -2023-12-15T14:36:10.193Z INFO sending PrepareRequest {"height": 1438, "view": 0} -2023-12-15T14:36:10.193Z INFO sending Commit {"height": 1438, "view": 0} -2023-12-15T14:36:10.194Z INFO approving block {"height": 1438, "hash": "9e474c64adc36f60a7396b6382f15a824b52621735cf9eb59613dcbacd68a70a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af8082dbfea709d30c085713daa42683734a2744d2b4cd927417597cf77d1e46"} -2023-12-15T14:36:10.195Z INFO initializing dbft {"height": 1439, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:10.196Z debug frostfs-node/morph.go:229 new block {"index": 1438} -2023-12-15T14:36:10.836Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1438, "blockHeight": 1438, "took": "3.949825ms"} -2023-12-15T14:36:11.195Z INFO sending PrepareRequest {"height": 1439, "view": 0} -2023-12-15T14:36:11.195Z INFO sending Commit {"height": 1439, "view": 0} -2023-12-15T14:36:11.196Z INFO approving block {"height": 1439, "hash": "6ea58fb64d1e30f082d22f0ab6a01e3fa56b8faef9f87ea769d53b82225dae42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e474c64adc36f60a7396b6382f15a824b52621735cf9eb59613dcbacd68a70a"} -2023-12-15T14:36:11.197Z INFO initializing dbft {"height": 1440, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:11.197Z debug frostfs-node/morph.go:229 new block {"index": 1439} -2023-12-15T14:36:11.836Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1439, "blockHeight": 1439, "took": "2.833839ms"} -2023-12-15T14:36:12.196Z INFO sending PrepareRequest {"height": 1440, "view": 0} -2023-12-15T14:36:12.197Z INFO sending Commit {"height": 1440, "view": 0} -2023-12-15T14:36:12.197Z INFO approving block {"height": 1440, "hash": "504295c10f486d638f4dd047e6aba83ad01f128a04c4ef7f9c9acf639015966d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ea58fb64d1e30f082d22f0ab6a01e3fa56b8faef9f87ea769d53b82225dae42"} -2023-12-15T14:36:12.198Z INFO initializing dbft {"height": 1441, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:12.198Z debug frostfs-node/morph.go:229 new block {"index": 1440} -2023-12-15T14:36:12.838Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1440, "blockHeight": 1440, "took": "4.193832ms"} -2023-12-15T14:36:13.198Z INFO sending PrepareRequest {"height": 1441, "view": 0} -2023-12-15T14:36:13.198Z INFO sending Commit {"height": 1441, "view": 0} -2023-12-15T14:36:13.198Z INFO approving block {"height": 1441, "hash": "7b6ae5796a671ea19e921c20d993adf020a17a081315c788491caa3a1e6ba66f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "504295c10f486d638f4dd047e6aba83ad01f128a04c4ef7f9c9acf639015966d"} -2023-12-15T14:36:13.199Z INFO initializing dbft {"height": 1442, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:13.199Z debug frostfs-node/morph.go:229 new block {"index": 1441} -2023-12-15T14:36:13.839Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1441, "blockHeight": 1441, "took": "4.610137ms"} -2023-12-15T14:36:14.200Z INFO sending PrepareRequest {"height": 1442, "view": 0} -2023-12-15T14:36:14.200Z INFO sending Commit {"height": 1442, "view": 0} -2023-12-15T14:36:14.200Z INFO approving block {"height": 1442, "hash": "696c61da722b68d6fa58888ae4d91e968b0aa6922a5a20785da1c77f2f4df0e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b6ae5796a671ea19e921c20d993adf020a17a081315c788491caa3a1e6ba66f"} -2023-12-15T14:36:14.202Z INFO initializing dbft {"height": 1443, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:14.202Z debug frostfs-node/morph.go:229 new block {"index": 1442} -2023-12-15T14:36:14.843Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1442, "blockHeight": 1442, "took": "7.91227ms"} -2023-12-15T14:36:15.201Z INFO sending PrepareRequest {"height": 1443, "view": 0} -2023-12-15T14:36:15.201Z INFO sending Commit {"height": 1443, "view": 0} -2023-12-15T14:36:15.201Z INFO approving block {"height": 1443, "hash": "b549e78bd54e536fe89c9ec3069c6ceae837c1d3b780e7412e9b960c0e293ad3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "696c61da722b68d6fa58888ae4d91e968b0aa6922a5a20785da1c77f2f4df0e2"} -2023-12-15T14:36:15.202Z INFO initializing dbft {"height": 1444, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:15.203Z debug frostfs-node/morph.go:229 new block {"index": 1443} -2023-12-15T14:36:15.839Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1443, "blockHeight": 1443, "took": "3.167613ms"} -2023-12-15T14:36:16.202Z INFO sending PrepareRequest {"height": 1444, "view": 0} -2023-12-15T14:36:16.203Z INFO sending Commit {"height": 1444, "view": 0} -2023-12-15T14:36:16.203Z INFO approving block {"height": 1444, "hash": "1ef3d4b124d09440daa497e3ab66d0fd9ce2a4b8f51364450cac72e624d7e3f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b549e78bd54e536fe89c9ec3069c6ceae837c1d3b780e7412e9b960c0e293ad3"} -2023-12-15T14:36:16.203Z INFO initializing dbft {"height": 1445, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:16.204Z debug frostfs-node/morph.go:229 new block {"index": 1444} -2023-12-15T14:36:16.839Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1444, "blockHeight": 1444, "took": "2.771061ms"} -2023-12-15T14:36:17.204Z INFO sending PrepareRequest {"height": 1445, "view": 0} -2023-12-15T14:36:17.204Z INFO sending Commit {"height": 1445, "view": 0} -2023-12-15T14:36:17.205Z INFO approving block {"height": 1445, "hash": "9fee966d757e15bbf644dec3519fe5f4251d5f3b8e4ab1dc072c47d93b85a6e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ef3d4b124d09440daa497e3ab66d0fd9ce2a4b8f51364450cac72e624d7e3f6"} -2023-12-15T14:36:17.206Z INFO initializing dbft {"height": 1446, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:17.206Z debug frostfs-node/morph.go:229 new block {"index": 1445} -2023-12-15T14:36:17.208Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:36:17.209Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 6, "iteration": 3, "error": "no data for 2 iteration in 6 epoch for consumers's trusts"} -2023-12-15T14:36:17.213Z INFO runtime log {"tx": "781ba7fc673301941e7f3dfeebf9d84a090be2c12bfe05e94ee87b9d19c41342", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:36:17.840Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1445, "blockHeight": 1445, "took": "2.863874ms"} -2023-12-15T14:36:18.206Z INFO sending PrepareRequest {"height": 1446, "view": 0} -2023-12-15T14:36:18.206Z INFO sending Commit {"height": 1446, "view": 0} -2023-12-15T14:36:18.206Z INFO approving block {"height": 1446, "hash": "91410959fb2aee20246ebd64c1079c59e0ca053d439ecc04aabf996cdbba1623", "tx_count": 1, "merkle": "ca412537605f2e5e93d5906af0a5acfff18dde86cd2b0a899b6498ff74d23339", "prev": "9fee966d757e15bbf644dec3519fe5f4251d5f3b8e4ab1dc072c47d93b85a6e1"} -2023-12-15T14:36:18.207Z INFO runtime log {"tx": "3933d274ff98649b890a2bcd86de8df1ffaca5f06a90d5935e2e5f60372541ca", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:36:18.208Z INFO initializing dbft {"height": 1447, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:18.208Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 8} -2023-12-15T14:36:18.208Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 8} -2023-12-15T14:36:18.208Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:36:18.208Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 8} -2023-12-15T14:36:18.209Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 8} -2023-12-15T14:36:18.209Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 8} -2023-12-15T14:36:18.209Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T14:36:18.209Z debug frostfs-node/morph.go:229 new block {"index": 1446} -2023-12-15T14:36:18.209Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:36:18.209Z debug controller/calls.go:95 starting to report local trust values {"epoch": 7} -2023-12-15T14:36:18.209Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 7} -2023-12-15T14:36:18.212Z debug controller/calls.go:146 reporting successfully finished {"epoch": 7} -2023-12-15T14:36:18.212Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 7} -2023-12-15T14:36:18.213Z INFO runtime log {"tx": "e9006143202dc05aa035eca893b7e885af729941708a9e7c2b2a1fc6264c55ba", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:36:18.213Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:36:18.216Z info client/notary.go:214 notary deposit invoke {"amount": 1904023240, "expire_at": 4294967295, "vub": 1449, "tx_hash": "06a26f8820f5683605a5741729ea39bfbea611d319151a5540c1004e9984d0f4"} -2023-12-15T14:36:18.221Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 1500, "fallback_valid_for": 40, "tx_hash": "c7f4e3049a0f1d12faf9690887ba0a38fe03c6b23c2aa128fe3f9bfce7d27a36"} -2023-12-15T14:36:18.222Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:36:18.222Z info audit/handlers.go:13 new round of audit {"epoch": 8} -2023-12-15T14:36:18.222Z info settlement/calls.go:26 new audit settlement event {"epoch": 8} -2023-12-15T14:36:18.223Z info settlement/handlers.go:14 process audit settlements {"epoch": 8} -2023-12-15T14:36:18.223Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 8} -2023-12-15T14:36:18.223Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T14:36:18.224Z info settlement/handlers.go:18 audit processing finished {"epoch": 8} -2023-12-15T14:36:18.225Z info audit/process.go:39 select containers for audit {"epoch": 8, "amount": 0} -2023-12-15T14:36:18.227Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 1449, "tx_hash": "4fe21079b85395fb9c84e3a9d59b38b1e169d18c5fbd52f9a009c2677db08921"} -2023-12-15T14:36:18.845Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 1446, "blockHeight": 1446, "took": "6.829563ms"} -2023-12-15T14:36:19.207Z INFO sending PrepareRequest {"height": 1447, "view": 0} -2023-12-15T14:36:19.207Z INFO sending Commit {"height": 1447, "view": 0} -2023-12-15T14:36:19.207Z INFO approving block {"height": 1447, "hash": "bf7a26320d437d09e1f8e501df70226c42b88465aff8f0ce20ffcf59a0ec449f", "tx_count": 3, "merkle": "cdb242c3c98ae7a43a11fc17fc19d1b90cb4cb91ef2f7f2c255cd1e5eec9db8d", "prev": "91410959fb2aee20246ebd64c1079c59e0ca053d439ecc04aabf996cdbba1623"} -2023-12-15T14:36:19.208Z INFO runtime log {"tx": "0f4530a97bfdda72dc108f53b67fc44ef021f595376c4fc71705d8633cb2a10f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:36:19.209Z INFO initializing dbft {"height": 1448, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:19.209Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 7} -2023-12-15T14:36:19.209Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 7} -2023-12-15T14:36:19.209Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 7} -2023-12-15T14:36:19.210Z debug frostfs-node/morph.go:229 new block {"index": 1447} -2023-12-15T14:36:19.845Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 1447, "blockHeight": 1447, "took": "6.436072ms"} -2023-12-15T14:36:20.208Z INFO sending PrepareRequest {"height": 1448, "view": 0} -2023-12-15T14:36:20.208Z INFO sending Commit {"height": 1448, "view": 0} -2023-12-15T14:36:20.208Z INFO approving block {"height": 1448, "hash": "c2c17d094ccdecc27f2f4bb3d9f726804e99118b99919de5ccd0f3cae42bfef0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf7a26320d437d09e1f8e501df70226c42b88465aff8f0ce20ffcf59a0ec449f"} -2023-12-15T14:36:20.210Z INFO initializing dbft {"height": 1449, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:20.211Z debug frostfs-node/morph.go:229 new block {"index": 1448} -2023-12-15T14:36:20.842Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1448, "blockHeight": 1448, "took": "3.605175ms"} -2023-12-15T14:36:21.210Z INFO sending PrepareRequest {"height": 1449, "view": 0} -2023-12-15T14:36:21.210Z INFO sending Commit {"height": 1449, "view": 0} -2023-12-15T14:36:21.211Z INFO approving block {"height": 1449, "hash": "34bc17438ce8cd27fe450c52ff5038940d94ca7d7c1afb827d77877c97a453de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2c17d094ccdecc27f2f4bb3d9f726804e99118b99919de5ccd0f3cae42bfef0"} -2023-12-15T14:36:21.212Z INFO initializing dbft {"height": 1450, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:21.213Z debug frostfs-node/morph.go:229 new block {"index": 1449} -2023-12-15T14:36:21.845Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1449, "blockHeight": 1449, "took": "5.454736ms"} -2023-12-15T14:36:22.211Z INFO sending PrepareRequest {"height": 1450, "view": 0} -2023-12-15T14:36:22.211Z INFO sending Commit {"height": 1450, "view": 0} -2023-12-15T14:36:22.211Z INFO approving block {"height": 1450, "hash": "7569033a03eefd845f8a060d76b8e6598410b4a0a66a2d35d3e3ebf5e656808c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34bc17438ce8cd27fe450c52ff5038940d94ca7d7c1afb827d77877c97a453de"} -2023-12-15T14:36:22.212Z INFO initializing dbft {"height": 1451, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:22.213Z debug frostfs-node/morph.go:229 new block {"index": 1450} -2023-12-15T14:36:22.842Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1450, "blockHeight": 1450, "took": "2.634606ms"} -2023-12-15T14:36:23.213Z INFO sending PrepareRequest {"height": 1451, "view": 0} -2023-12-15T14:36:23.213Z INFO sending Commit {"height": 1451, "view": 0} -2023-12-15T14:36:23.213Z INFO approving block {"height": 1451, "hash": "364834c15a9ea123f7a763ac7e7eaeaf924449a61aedc7f2d94916588bc7a6ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7569033a03eefd845f8a060d76b8e6598410b4a0a66a2d35d3e3ebf5e656808c"} -2023-12-15T14:36:23.214Z INFO initializing dbft {"height": 1452, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:23.214Z debug frostfs-node/morph.go:229 new block {"index": 1451} -2023-12-15T14:36:23.844Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1451, "blockHeight": 1451, "took": "4.363208ms"} -2023-12-15T14:36:24.214Z INFO sending PrepareRequest {"height": 1452, "view": 0} -2023-12-15T14:36:24.214Z INFO sending Commit {"height": 1452, "view": 0} -2023-12-15T14:36:24.214Z INFO approving block {"height": 1452, "hash": "03888fe46e14fb9ba5a65023a51f90180e1ad0d7c763bdbc513e9f0140857a0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "364834c15a9ea123f7a763ac7e7eaeaf924449a61aedc7f2d94916588bc7a6ae"} -2023-12-15T14:36:24.215Z INFO initializing dbft {"height": 1453, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:24.216Z debug frostfs-node/morph.go:229 new block {"index": 1452} -2023-12-15T14:36:24.845Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1452, "blockHeight": 1452, "took": "4.016384ms"} -2023-12-15T14:36:25.216Z INFO sending PrepareRequest {"height": 1453, "view": 0} -2023-12-15T14:36:25.216Z INFO sending Commit {"height": 1453, "view": 0} -2023-12-15T14:36:25.216Z INFO approving block {"height": 1453, "hash": "48413fd65dd3153f540bfab28f2e9cea13fcaf43fbdcfb63ebf3e980cce96b80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03888fe46e14fb9ba5a65023a51f90180e1ad0d7c763bdbc513e9f0140857a0f"} -2023-12-15T14:36:25.217Z INFO initializing dbft {"height": 1454, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:25.218Z debug frostfs-node/morph.go:229 new block {"index": 1453} -2023-12-15T14:36:25.845Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1453, "blockHeight": 1453, "took": "4.167902ms"} -2023-12-15T14:36:26.217Z INFO sending PrepareRequest {"height": 1454, "view": 0} -2023-12-15T14:36:26.218Z INFO sending Commit {"height": 1454, "view": 0} -2023-12-15T14:36:26.218Z INFO approving block {"height": 1454, "hash": "048549dd265e80f8781a08897364c8c11ce3fddd4e5ba1480b8ca71b1b57873b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48413fd65dd3153f540bfab28f2e9cea13fcaf43fbdcfb63ebf3e980cce96b80"} -2023-12-15T14:36:26.219Z INFO initializing dbft {"height": 1455, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:26.220Z debug frostfs-node/morph.go:229 new block {"index": 1454} -2023-12-15T14:36:26.845Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1454, "blockHeight": 1454, "took": "3.079859ms"} -2023-12-15T14:36:27.219Z INFO sending PrepareRequest {"height": 1455, "view": 0} -2023-12-15T14:36:27.219Z INFO sending Commit {"height": 1455, "view": 0} -2023-12-15T14:36:27.219Z INFO approving block {"height": 1455, "hash": "77f5dbaf0a060ff8198e54aff1cf3bb00fe907fc52e8d00d63b30e31324ce76c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "048549dd265e80f8781a08897364c8c11ce3fddd4e5ba1480b8ca71b1b57873b"} -2023-12-15T14:36:27.220Z INFO initializing dbft {"height": 1456, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:27.221Z debug frostfs-node/morph.go:229 new block {"index": 1455} -2023-12-15T14:36:27.847Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1455, "blockHeight": 1455, "took": "3.841696ms"} -2023-12-15T14:36:28.221Z INFO sending PrepareRequest {"height": 1456, "view": 0} -2023-12-15T14:36:28.221Z INFO sending Commit {"height": 1456, "view": 0} -2023-12-15T14:36:28.221Z INFO approving block {"height": 1456, "hash": "3888c54f079a11532cb7c2b021fff22949e257ecb61bc066c7760c50efac97a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77f5dbaf0a060ff8198e54aff1cf3bb00fe907fc52e8d00d63b30e31324ce76c"} -2023-12-15T14:36:28.223Z INFO initializing dbft {"height": 1457, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:28.224Z debug frostfs-node/morph.go:229 new block {"index": 1456} -2023-12-15T14:36:28.848Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1456, "blockHeight": 1456, "took": "5.273894ms"} -2023-12-15T14:36:29.223Z INFO sending PrepareRequest {"height": 1457, "view": 0} -2023-12-15T14:36:29.223Z INFO sending Commit {"height": 1457, "view": 0} -2023-12-15T14:36:29.223Z INFO approving block {"height": 1457, "hash": "7f634a5e5d27778c314b789aaacee071c9a3bda5284318b74d39205446834c0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3888c54f079a11532cb7c2b021fff22949e257ecb61bc066c7760c50efac97a9"} -2023-12-15T14:36:29.225Z INFO initializing dbft {"height": 1458, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:29.225Z debug frostfs-node/morph.go:229 new block {"index": 1457} -2023-12-15T14:36:29.849Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1457, "blockHeight": 1457, "took": "4.582647ms"} -2023-12-15T14:36:30.224Z INFO sending PrepareRequest {"height": 1458, "view": 0} -2023-12-15T14:36:30.224Z INFO sending Commit {"height": 1458, "view": 0} -2023-12-15T14:36:30.224Z INFO approving block {"height": 1458, "hash": "c76d7446aac7809ea3cda76e59df2ec4c5b318b7e99a0fe1a1c3b00e94cc8c93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f634a5e5d27778c314b789aaacee071c9a3bda5284318b74d39205446834c0d"} -2023-12-15T14:36:30.225Z INFO initializing dbft {"height": 1459, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:30.226Z debug frostfs-node/morph.go:229 new block {"index": 1458} -2023-12-15T14:36:30.848Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1458, "blockHeight": 1458, "took": "3.498722ms"} -2023-12-15T14:36:31.226Z INFO sending PrepareRequest {"height": 1459, "view": 0} -2023-12-15T14:36:31.226Z INFO sending Commit {"height": 1459, "view": 0} -2023-12-15T14:36:31.227Z INFO approving block {"height": 1459, "hash": "f17df1a677d4ab523a7f0389a8401921acec18c9a5c2e7bec517201d0f34c246", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c76d7446aac7809ea3cda76e59df2ec4c5b318b7e99a0fe1a1c3b00e94cc8c93"} -2023-12-15T14:36:31.228Z INFO initializing dbft {"height": 1460, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:31.229Z debug frostfs-node/morph.go:229 new block {"index": 1459} -2023-12-15T14:36:31.850Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1459, "blockHeight": 1459, "took": "4.663496ms"} -2023-12-15T14:36:32.227Z INFO sending PrepareRequest {"height": 1460, "view": 0} -2023-12-15T14:36:32.227Z INFO sending Commit {"height": 1460, "view": 0} -2023-12-15T14:36:32.228Z INFO approving block {"height": 1460, "hash": "a282d3c485b6a778bb7ae845bd405d3f0398f299ebb70edfa6ca781b563daa9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f17df1a677d4ab523a7f0389a8401921acec18c9a5c2e7bec517201d0f34c246"} -2023-12-15T14:36:32.229Z INFO initializing dbft {"height": 1461, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:32.229Z debug frostfs-node/morph.go:229 new block {"index": 1460} -2023-12-15T14:36:32.851Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1460, "blockHeight": 1460, "took": "4.899273ms"} -2023-12-15T14:36:33.229Z INFO sending PrepareRequest {"height": 1461, "view": 0} -2023-12-15T14:36:33.229Z INFO sending Commit {"height": 1461, "view": 0} -2023-12-15T14:36:33.229Z INFO approving block {"height": 1461, "hash": "0c215698e07bbdc301a2cfbde54eb2bf5b3a416eac52396edae79d99f6faf243", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a282d3c485b6a778bb7ae845bd405d3f0398f299ebb70edfa6ca781b563daa9c"} -2023-12-15T14:36:33.230Z INFO initializing dbft {"height": 1462, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:33.230Z debug frostfs-node/morph.go:229 new block {"index": 1461} -2023-12-15T14:36:33.850Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1461, "blockHeight": 1461, "took": "2.888144ms"} -2023-12-15T14:36:34.230Z INFO sending PrepareRequest {"height": 1462, "view": 0} -2023-12-15T14:36:34.230Z INFO sending Commit {"height": 1462, "view": 0} -2023-12-15T14:36:34.231Z INFO approving block {"height": 1462, "hash": "45aab0a794789bb0e51d54a7b8069f0927ab08747942c313040ec9662f53f27c", "tx_count": 1, "merkle": "7c878affbbc68876ccd7bf718cb360ae2db3c1446adcd90dd01adc7420cee336", "prev": "0c215698e07bbdc301a2cfbde54eb2bf5b3a416eac52396edae79d99f6faf243"} -2023-12-15T14:36:34.232Z INFO initializing dbft {"height": 1463, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:34.233Z debug frostfs-node/morph.go:229 new block {"index": 1462} -2023-12-15T14:36:34.236Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T14:36:34.852Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 1462, "blockHeight": 1462, "took": "4.863399ms"} -2023-12-15T14:36:35.231Z INFO sending PrepareRequest {"height": 1463, "view": 0} -2023-12-15T14:36:35.231Z INFO sending Commit {"height": 1463, "view": 0} -2023-12-15T14:36:35.232Z INFO approving block {"height": 1463, "hash": "b2c922d3ac1482341b173f662e3ecf4bf48e22662a325f5997bac5641156d87d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45aab0a794789bb0e51d54a7b8069f0927ab08747942c313040ec9662f53f27c"} -2023-12-15T14:36:35.233Z INFO initializing dbft {"height": 1464, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:35.233Z debug frostfs-node/morph.go:229 new block {"index": 1463} -2023-12-15T14:36:35.854Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1463, "blockHeight": 1463, "took": "6.167994ms"} -2023-12-15T14:36:36.233Z INFO sending PrepareRequest {"height": 1464, "view": 0} -2023-12-15T14:36:36.233Z INFO sending Commit {"height": 1464, "view": 0} -2023-12-15T14:36:36.233Z INFO approving block {"height": 1464, "hash": "7f5d6f8ccce26f6fd4970eb11126c7423982c8dff97ba4d4adb36ad9443d1035", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2c922d3ac1482341b173f662e3ecf4bf48e22662a325f5997bac5641156d87d"} -2023-12-15T14:36:36.234Z INFO initializing dbft {"height": 1465, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:36.234Z debug frostfs-node/morph.go:229 new block {"index": 1464} -2023-12-15T14:36:36.851Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1464, "blockHeight": 1464, "took": "3.404279ms"} -2023-12-15T14:36:37.234Z INFO sending PrepareRequest {"height": 1465, "view": 0} -2023-12-15T14:36:37.234Z INFO sending Commit {"height": 1465, "view": 0} -2023-12-15T14:36:37.234Z INFO approving block {"height": 1465, "hash": "bcc77d4c930f3971958d6e795d966ac1321819570b6b2e80c5b095b1375275c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f5d6f8ccce26f6fd4970eb11126c7423982c8dff97ba4d4adb36ad9443d1035"} -2023-12-15T14:36:37.235Z INFO initializing dbft {"height": 1466, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:37.236Z debug frostfs-node/morph.go:229 new block {"index": 1465} -2023-12-15T14:36:37.853Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1465, "blockHeight": 1465, "took": "4.369327ms"} -2023-12-15T14:36:38.235Z INFO sending PrepareRequest {"height": 1466, "view": 0} -2023-12-15T14:36:38.235Z INFO sending Commit {"height": 1466, "view": 0} -2023-12-15T14:36:38.236Z INFO approving block {"height": 1466, "hash": "0a8899feb9f0cea01735f8d412a86b2099a5d52c834e8ff079bac9cd3bdb5394", "tx_count": 1, "merkle": "1a59f8e1c1382da3ffe3372badb83cd2b19f7c087ebddc17c818c5ef8049c416", "prev": "bcc77d4c930f3971958d6e795d966ac1321819570b6b2e80c5b095b1375275c6"} -2023-12-15T14:36:38.238Z INFO initializing dbft {"height": 1467, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:38.240Z debug frostfs-node/morph.go:229 new block {"index": 1466} -2023-12-15T14:36:38.855Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 1466, "blockHeight": 1466, "took": "5.232503ms"} -2023-12-15T14:36:39.236Z INFO sending PrepareRequest {"height": 1467, "view": 0} -2023-12-15T14:36:39.236Z INFO sending Commit {"height": 1467, "view": 0} -2023-12-15T14:36:39.237Z INFO approving block {"height": 1467, "hash": "ae0dda09fa5235d76905012426b5001d315e6cb6b5cf4db5f8da719a8116dda9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a8899feb9f0cea01735f8d412a86b2099a5d52c834e8ff079bac9cd3bdb5394"} -2023-12-15T14:36:39.237Z INFO initializing dbft {"height": 1468, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:39.238Z debug frostfs-node/morph.go:229 new block {"index": 1467} -2023-12-15T14:36:39.240Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:36:39.242Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:36:39.242Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:36:39.854Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1467, "blockHeight": 1467, "took": "4.417503ms"} -2023-12-15T14:36:40.237Z INFO sending PrepareRequest {"height": 1468, "view": 0} -2023-12-15T14:36:40.238Z INFO sending Commit {"height": 1468, "view": 0} -2023-12-15T14:36:40.238Z INFO approving block {"height": 1468, "hash": "c9e5b7dd8e197c7cacd618de2399237794143d6c09719a2017c7b48a9fca337b", "tx_count": 2, "merkle": "97fee733f47c914c9b0b58340d1842fc8528a62c0be97375a1e18b08044339c9", "prev": "ae0dda09fa5235d76905012426b5001d315e6cb6b5cf4db5f8da719a8116dda9"} -2023-12-15T14:36:40.239Z INFO runtime log {"tx": "923686e2db5170c6e3656a931a6dfd4de46fd5d5fc37fcdedc59f6dc8c93122c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:36:40.239Z INFO runtime log {"tx": "923686e2db5170c6e3656a931a6dfd4de46fd5d5fc37fcdedc59f6dc8c93122c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:36:40.240Z INFO initializing dbft {"height": 1469, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:40.241Z debug frostfs-node/morph.go:229 new block {"index": 1468} -2023-12-15T14:36:40.855Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1468, "blockHeight": 1468, "took": "4.161531ms"} -2023-12-15T14:36:41.239Z INFO sending PrepareRequest {"height": 1469, "view": 0} -2023-12-15T14:36:41.239Z INFO sending Commit {"height": 1469, "view": 0} -2023-12-15T14:36:41.239Z INFO approving block {"height": 1469, "hash": "024ceb096b98d1ab0fed0d7e8672176f671ad2c3cad0f35628c546367a325cdd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9e5b7dd8e197c7cacd618de2399237794143d6c09719a2017c7b48a9fca337b"} -2023-12-15T14:36:41.240Z INFO initializing dbft {"height": 1470, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:41.241Z debug frostfs-node/morph.go:229 new block {"index": 1469} -2023-12-15T14:36:41.855Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1469, "blockHeight": 1469, "took": "3.440961ms"} -2023-12-15T14:36:42.240Z INFO sending PrepareRequest {"height": 1470, "view": 0} -2023-12-15T14:36:42.241Z INFO sending Commit {"height": 1470, "view": 0} -2023-12-15T14:36:42.241Z INFO approving block {"height": 1470, "hash": "7844862e9a4ba6d6916687c5e3b6b45d6a475178c6e65a150b564402f60ed285", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "024ceb096b98d1ab0fed0d7e8672176f671ad2c3cad0f35628c546367a325cdd"} -2023-12-15T14:36:42.241Z INFO initializing dbft {"height": 1471, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:42.242Z debug frostfs-node/morph.go:229 new block {"index": 1470} -2023-12-15T14:36:42.856Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1470, "blockHeight": 1470, "took": "3.800581ms"} -2023-12-15T14:36:43.242Z INFO sending PrepareRequest {"height": 1471, "view": 0} -2023-12-15T14:36:43.242Z INFO sending Commit {"height": 1471, "view": 0} -2023-12-15T14:36:43.242Z INFO approving block {"height": 1471, "hash": "66715a1c2901ae2d720eb74c8bb1d732845078b7f26fa73f606519d79ad60634", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7844862e9a4ba6d6916687c5e3b6b45d6a475178c6e65a150b564402f60ed285"} -2023-12-15T14:36:43.243Z INFO initializing dbft {"height": 1472, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:43.243Z debug frostfs-node/morph.go:229 new block {"index": 1471} -2023-12-15T14:36:43.856Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1471, "blockHeight": 1471, "took": "3.39595ms"} -2023-12-15T14:36:44.243Z INFO sending PrepareRequest {"height": 1472, "view": 0} -2023-12-15T14:36:44.244Z INFO sending Commit {"height": 1472, "view": 0} -2023-12-15T14:36:44.244Z INFO approving block {"height": 1472, "hash": "f36612d5074790be5506b04535e3ad0c821689c0df524ce5bf51d2d7d7d5be31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66715a1c2901ae2d720eb74c8bb1d732845078b7f26fa73f606519d79ad60634"} -2023-12-15T14:36:44.245Z INFO initializing dbft {"height": 1473, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:44.245Z debug frostfs-node/morph.go:229 new block {"index": 1472} -2023-12-15T14:36:44.857Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1472, "blockHeight": 1472, "took": "4.062439ms"} -2023-12-15T14:36:45.245Z INFO sending PrepareRequest {"height": 1473, "view": 0} -2023-12-15T14:36:45.245Z INFO sending Commit {"height": 1473, "view": 0} -2023-12-15T14:36:45.246Z INFO approving block {"height": 1473, "hash": "80adc4fe62374193f53d77c07c083b73e8a4fd92088f0e90ac883143be9a1cb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f36612d5074790be5506b04535e3ad0c821689c0df524ce5bf51d2d7d7d5be31"} -2023-12-15T14:36:45.247Z INFO initializing dbft {"height": 1474, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:45.248Z debug frostfs-node/morph.go:229 new block {"index": 1473} -2023-12-15T14:36:45.856Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1473, "blockHeight": 1473, "took": "2.745912ms"} -2023-12-15T14:36:46.247Z INFO sending PrepareRequest {"height": 1474, "view": 0} -2023-12-15T14:36:46.247Z INFO sending Commit {"height": 1474, "view": 0} -2023-12-15T14:36:46.247Z INFO approving block {"height": 1474, "hash": "e5934ff2843ffb4ef62b2ef31bc93771d136de8b66a0bd3d16e9b88e48496811", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80adc4fe62374193f53d77c07c083b73e8a4fd92088f0e90ac883143be9a1cb0"} -2023-12-15T14:36:46.249Z INFO initializing dbft {"height": 1475, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:46.249Z debug frostfs-node/morph.go:229 new block {"index": 1474} -2023-12-15T14:36:46.858Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1474, "blockHeight": 1474, "took": "3.335447ms"} -2023-12-15T14:36:47.248Z INFO sending PrepareRequest {"height": 1475, "view": 0} -2023-12-15T14:36:47.248Z INFO sending Commit {"height": 1475, "view": 0} -2023-12-15T14:36:47.248Z INFO approving block {"height": 1475, "hash": "22c1a8d0121c2095f9ef56bf44c05f0e34bf186abe011184a6cfc7bfbfbd8587", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5934ff2843ffb4ef62b2ef31bc93771d136de8b66a0bd3d16e9b88e48496811"} -2023-12-15T14:36:47.249Z INFO initializing dbft {"height": 1476, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:47.250Z debug frostfs-node/morph.go:229 new block {"index": 1475} -2023-12-15T14:36:47.857Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1475, "blockHeight": 1475, "took": "2.867093ms"} -2023-12-15T14:36:48.250Z INFO sending PrepareRequest {"height": 1476, "view": 0} -2023-12-15T14:36:48.250Z INFO sending Commit {"height": 1476, "view": 0} -2023-12-15T14:36:48.250Z INFO approving block {"height": 1476, "hash": "97e9c0495639456c9879595715c0394a836eaef2415661eb5e48060253490f2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22c1a8d0121c2095f9ef56bf44c05f0e34bf186abe011184a6cfc7bfbfbd8587"} -2023-12-15T14:36:48.251Z INFO initializing dbft {"height": 1477, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:48.251Z debug frostfs-node/morph.go:229 new block {"index": 1476} -2023-12-15T14:36:48.859Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1476, "blockHeight": 1476, "took": "3.943916ms"} -2023-12-15T14:36:49.251Z INFO sending PrepareRequest {"height": 1477, "view": 0} -2023-12-15T14:36:49.252Z INFO sending Commit {"height": 1477, "view": 0} -2023-12-15T14:36:49.252Z INFO approving block {"height": 1477, "hash": "60623bf343a024c9178c4653a8dd176af2778da244762dbb4097e37483dbcd18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97e9c0495639456c9879595715c0394a836eaef2415661eb5e48060253490f2b"} -2023-12-15T14:36:49.253Z INFO initializing dbft {"height": 1478, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:49.254Z debug frostfs-node/morph.go:229 new block {"index": 1477} -2023-12-15T14:36:49.859Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1477, "blockHeight": 1477, "took": "2.918355ms"} -2023-12-15T14:36:50.253Z INFO sending PrepareRequest {"height": 1478, "view": 0} -2023-12-15T14:36:50.253Z INFO sending Commit {"height": 1478, "view": 0} -2023-12-15T14:36:50.253Z INFO approving block {"height": 1478, "hash": "75d9423855fecf7c03d4a2f839fcd9d9aeef0ec223e90730d86768a4fdb9abd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60623bf343a024c9178c4653a8dd176af2778da244762dbb4097e37483dbcd18"} -2023-12-15T14:36:50.255Z INFO initializing dbft {"height": 1479, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:50.255Z debug frostfs-node/morph.go:229 new block {"index": 1478} -2023-12-15T14:36:50.861Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1478, "blockHeight": 1478, "took": "4.507532ms"} -2023-12-15T14:36:51.254Z INFO sending PrepareRequest {"height": 1479, "view": 0} -2023-12-15T14:36:51.254Z INFO sending Commit {"height": 1479, "view": 0} -2023-12-15T14:36:51.254Z INFO approving block {"height": 1479, "hash": "91429e264427f37d21edba2e49b3481f37812ae942c1584ec37056ddb7527179", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75d9423855fecf7c03d4a2f839fcd9d9aeef0ec223e90730d86768a4fdb9abd6"} -2023-12-15T14:36:51.255Z INFO initializing dbft {"height": 1480, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:51.256Z debug frostfs-node/morph.go:229 new block {"index": 1479} -2023-12-15T14:36:51.859Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1479, "blockHeight": 1479, "took": "2.834993ms"} -2023-12-15T14:36:52.256Z INFO sending PrepareRequest {"height": 1480, "view": 0} -2023-12-15T14:36:52.256Z INFO sending Commit {"height": 1480, "view": 0} -2023-12-15T14:36:52.256Z INFO approving block {"height": 1480, "hash": "419213f927694bb502a45db5525acff31110d3ebc81de4d8bfc2b48368a73746", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91429e264427f37d21edba2e49b3481f37812ae942c1584ec37056ddb7527179"} -2023-12-15T14:36:52.258Z INFO initializing dbft {"height": 1481, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:52.258Z debug frostfs-node/morph.go:229 new block {"index": 1480} -2023-12-15T14:36:52.862Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1480, "blockHeight": 1480, "took": "4.63992ms"} -2023-12-15T14:36:53.257Z INFO sending PrepareRequest {"height": 1481, "view": 0} -2023-12-15T14:36:53.258Z INFO sending Commit {"height": 1481, "view": 0} -2023-12-15T14:36:53.258Z INFO approving block {"height": 1481, "hash": "20b5e04918861ce7dd30c182dcfc24fda08301d33e1efc9e767d39d32aac428a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "419213f927694bb502a45db5525acff31110d3ebc81de4d8bfc2b48368a73746"} -2023-12-15T14:36:53.259Z INFO initializing dbft {"height": 1482, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:53.260Z debug frostfs-node/morph.go:229 new block {"index": 1481} -2023-12-15T14:36:53.862Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1481, "blockHeight": 1481, "took": "3.922364ms"} -2023-12-15T14:36:54.259Z INFO sending PrepareRequest {"height": 1482, "view": 0} -2023-12-15T14:36:54.259Z INFO sending Commit {"height": 1482, "view": 0} -2023-12-15T14:36:54.259Z INFO approving block {"height": 1482, "hash": "4db66f21eae5cf8608e09fbd4375978c1713f6f21ded85ed41bdb9cc0b6a082c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20b5e04918861ce7dd30c182dcfc24fda08301d33e1efc9e767d39d32aac428a"} -2023-12-15T14:36:54.260Z INFO initializing dbft {"height": 1483, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:54.261Z debug frostfs-node/morph.go:229 new block {"index": 1482} -2023-12-15T14:36:54.862Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1482, "blockHeight": 1482, "took": "3.498665ms"} -2023-12-15T14:36:55.260Z INFO sending PrepareRequest {"height": 1483, "view": 0} -2023-12-15T14:36:55.260Z INFO sending Commit {"height": 1483, "view": 0} -2023-12-15T14:36:55.261Z INFO approving block {"height": 1483, "hash": "a2ece5bbaf1522aecfcea8d4b38a3888f6a9e14c162730147760c08bada3cab2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4db66f21eae5cf8608e09fbd4375978c1713f6f21ded85ed41bdb9cc0b6a082c"} -2023-12-15T14:36:55.263Z INFO initializing dbft {"height": 1484, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:55.264Z debug frostfs-node/morph.go:229 new block {"index": 1483} -2023-12-15T14:36:55.864Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1483, "blockHeight": 1483, "took": "5.588344ms"} -2023-12-15T14:36:56.262Z INFO sending PrepareRequest {"height": 1484, "view": 0} -2023-12-15T14:36:56.262Z INFO sending Commit {"height": 1484, "view": 0} -2023-12-15T14:36:56.262Z INFO approving block {"height": 1484, "hash": "649ea3a0978dceb025fa3f3697c1107e60621b3621ca87e8d8bf804b4d81ab70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2ece5bbaf1522aecfcea8d4b38a3888f6a9e14c162730147760c08bada3cab2"} -2023-12-15T14:36:56.263Z INFO initializing dbft {"height": 1485, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:56.263Z debug frostfs-node/morph.go:229 new block {"index": 1484} -2023-12-15T14:36:56.863Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1484, "blockHeight": 1484, "took": "3.121198ms"} -2023-12-15T14:36:57.263Z INFO sending PrepareRequest {"height": 1485, "view": 0} -2023-12-15T14:36:57.263Z INFO sending Commit {"height": 1485, "view": 0} -2023-12-15T14:36:57.264Z INFO approving block {"height": 1485, "hash": "5b8e8014d4738bd0dc497200f90644888fe8003d932dad633b7805c390e5bb36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "649ea3a0978dceb025fa3f3697c1107e60621b3621ca87e8d8bf804b4d81ab70"} -2023-12-15T14:36:57.265Z INFO initializing dbft {"height": 1486, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:57.266Z debug frostfs-node/morph.go:229 new block {"index": 1485} -2023-12-15T14:36:57.863Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1485, "blockHeight": 1485, "took": "2.784939ms"} -2023-12-15T14:36:58.264Z INFO sending PrepareRequest {"height": 1486, "view": 0} -2023-12-15T14:36:58.265Z INFO sending Commit {"height": 1486, "view": 0} -2023-12-15T14:36:58.265Z INFO approving block {"height": 1486, "hash": "dfba37ea95da70dda1c70e87bc44baf957445d7d950857e1bad3d5d08fbe3608", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b8e8014d4738bd0dc497200f90644888fe8003d932dad633b7805c390e5bb36"} -2023-12-15T14:36:58.266Z INFO initializing dbft {"height": 1487, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:58.267Z debug frostfs-node/morph.go:229 new block {"index": 1486} -2023-12-15T14:36:58.868Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1486, "blockHeight": 1486, "took": "6.906061ms"} -2023-12-15T14:36:59.266Z INFO sending PrepareRequest {"height": 1487, "view": 0} -2023-12-15T14:36:59.267Z INFO sending Commit {"height": 1487, "view": 0} -2023-12-15T14:36:59.267Z INFO approving block {"height": 1487, "hash": "41e364f269f19c9cb506761d045b2bee126a3f5aed2afca551c097986b4064c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfba37ea95da70dda1c70e87bc44baf957445d7d950857e1bad3d5d08fbe3608"} -2023-12-15T14:36:59.269Z INFO initializing dbft {"height": 1488, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:36:59.269Z debug frostfs-node/morph.go:229 new block {"index": 1487} -2023-12-15T14:36:59.868Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1487, "blockHeight": 1487, "took": "6.090806ms"} -2023-12-15T14:37:00.269Z INFO sending PrepareRequest {"height": 1488, "view": 0} -2023-12-15T14:37:00.269Z INFO sending Commit {"height": 1488, "view": 0} -2023-12-15T14:37:00.269Z INFO approving block {"height": 1488, "hash": "f106f1557de608212da22e03eb8dacc8a4ca5767a90b64f3acd7b2ae3c45a7a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41e364f269f19c9cb506761d045b2bee126a3f5aed2afca551c097986b4064c5"} -2023-12-15T14:37:00.270Z INFO initializing dbft {"height": 1489, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:00.271Z debug frostfs-node/morph.go:229 new block {"index": 1488} -2023-12-15T14:37:00.868Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1488, "blockHeight": 1488, "took": "6.272946ms"} -2023-12-15T14:37:01.270Z INFO sending PrepareRequest {"height": 1489, "view": 0} -2023-12-15T14:37:01.270Z INFO sending Commit {"height": 1489, "view": 0} -2023-12-15T14:37:01.271Z INFO approving block {"height": 1489, "hash": "9432ee01e0be98bf90fb412965aff0fe7cbbb2a2b5fd4fc6611f86a215d1956a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f106f1557de608212da22e03eb8dacc8a4ca5767a90b64f3acd7b2ae3c45a7a1"} -2023-12-15T14:37:01.272Z INFO initializing dbft {"height": 1490, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:01.272Z debug frostfs-node/morph.go:229 new block {"index": 1489} -2023-12-15T14:37:01.865Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1489, "blockHeight": 1489, "took": "2.945306ms"} -2023-12-15T14:37:02.272Z INFO sending PrepareRequest {"height": 1490, "view": 0} -2023-12-15T14:37:02.272Z INFO sending Commit {"height": 1490, "view": 0} -2023-12-15T14:37:02.272Z INFO approving block {"height": 1490, "hash": "7c9280d2eadac62a47b07e7732defa2868adf8dc5947236de1c375f19ed8bb4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9432ee01e0be98bf90fb412965aff0fe7cbbb2a2b5fd4fc6611f86a215d1956a"} -2023-12-15T14:37:02.274Z INFO initializing dbft {"height": 1491, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:02.274Z debug frostfs-node/morph.go:229 new block {"index": 1490} -2023-12-15T14:37:02.867Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1490, "blockHeight": 1490, "took": "3.903263ms"} -2023-12-15T14:37:03.274Z INFO sending PrepareRequest {"height": 1491, "view": 0} -2023-12-15T14:37:03.274Z INFO sending Commit {"height": 1491, "view": 0} -2023-12-15T14:37:03.275Z INFO approving block {"height": 1491, "hash": "de0b2d878dedea3ddfcede848a8b82eac0ae586e1062e51e2a3a55883bc93937", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c9280d2eadac62a47b07e7732defa2868adf8dc5947236de1c375f19ed8bb4c"} -2023-12-15T14:37:03.276Z INFO initializing dbft {"height": 1492, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:03.277Z debug frostfs-node/morph.go:229 new block {"index": 1491} -2023-12-15T14:37:03.866Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1491, "blockHeight": 1491, "took": "2.796992ms"} -2023-12-15T14:37:04.275Z INFO sending PrepareRequest {"height": 1492, "view": 0} -2023-12-15T14:37:04.276Z INFO sending Commit {"height": 1492, "view": 0} -2023-12-15T14:37:04.276Z INFO approving block {"height": 1492, "hash": "79cd03771d133a29130029207037b9deb754cae333d6d1213875b6524717ec34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de0b2d878dedea3ddfcede848a8b82eac0ae586e1062e51e2a3a55883bc93937"} -2023-12-15T14:37:04.276Z INFO initializing dbft {"height": 1493, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:04.277Z debug frostfs-node/morph.go:229 new block {"index": 1492} -2023-12-15T14:37:04.868Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1492, "blockHeight": 1492, "took": "3.954106ms"} -2023-12-15T14:37:05.277Z INFO sending PrepareRequest {"height": 1493, "view": 0} -2023-12-15T14:37:05.277Z INFO sending Commit {"height": 1493, "view": 0} -2023-12-15T14:37:05.277Z INFO approving block {"height": 1493, "hash": "cd380b41e92af7b2fd17bf1f475628af13ede958c2722f1a691d58c7820f0dc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79cd03771d133a29130029207037b9deb754cae333d6d1213875b6524717ec34"} -2023-12-15T14:37:05.278Z INFO initializing dbft {"height": 1494, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:05.278Z debug frostfs-node/morph.go:229 new block {"index": 1493} -2023-12-15T14:37:05.867Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1493, "blockHeight": 1493, "took": "2.865774ms"} -2023-12-15T14:37:06.278Z INFO sending PrepareRequest {"height": 1494, "view": 0} -2023-12-15T14:37:06.279Z INFO sending Commit {"height": 1494, "view": 0} -2023-12-15T14:37:06.279Z INFO approving block {"height": 1494, "hash": "8fe21675986c5e26c55dabc871f6ef88b5fe0fe1352356ba496b9e055972940f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd380b41e92af7b2fd17bf1f475628af13ede958c2722f1a691d58c7820f0dc4"} -2023-12-15T14:37:06.280Z INFO initializing dbft {"height": 1495, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:06.280Z debug frostfs-node/morph.go:229 new block {"index": 1494} -2023-12-15T14:37:06.869Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1494, "blockHeight": 1494, "took": "3.898532ms"} -2023-12-15T14:37:07.280Z INFO sending PrepareRequest {"height": 1495, "view": 0} -2023-12-15T14:37:07.280Z INFO sending Commit {"height": 1495, "view": 0} -2023-12-15T14:37:07.281Z INFO approving block {"height": 1495, "hash": "d5fed08b8b2e1ad80d9344b93e46d576537791a019d3f91d6c9cad2d07213f71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fe21675986c5e26c55dabc871f6ef88b5fe0fe1352356ba496b9e055972940f"} -2023-12-15T14:37:07.282Z INFO initializing dbft {"height": 1496, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:07.283Z debug frostfs-node/morph.go:229 new block {"index": 1495} -2023-12-15T14:37:07.869Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1495, "blockHeight": 1495, "took": "3.155696ms"} -2023-12-15T14:37:08.283Z INFO sending PrepareRequest {"height": 1496, "view": 0} -2023-12-15T14:37:08.283Z INFO sending Commit {"height": 1496, "view": 0} -2023-12-15T14:37:08.283Z INFO approving block {"height": 1496, "hash": "da5fd3ed74bbe6fd238b130d25f2f2cdcf2f6077572f90fe3af85a5736f24056", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5fed08b8b2e1ad80d9344b93e46d576537791a019d3f91d6c9cad2d07213f71"} -2023-12-15T14:37:08.284Z INFO initializing dbft {"height": 1497, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:08.285Z debug frostfs-node/morph.go:229 new block {"index": 1496} -2023-12-15T14:37:08.872Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1496, "blockHeight": 1496, "took": "5.90504ms"} -2023-12-15T14:37:09.284Z INFO sending PrepareRequest {"height": 1497, "view": 0} -2023-12-15T14:37:09.284Z INFO sending Commit {"height": 1497, "view": 0} -2023-12-15T14:37:09.284Z INFO approving block {"height": 1497, "hash": "49d793b321f48319cecccd7ef2dd719b965273adc1ebf1ca2f28a7e7891226eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da5fd3ed74bbe6fd238b130d25f2f2cdcf2f6077572f90fe3af85a5736f24056"} -2023-12-15T14:37:09.285Z INFO initializing dbft {"height": 1498, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:09.286Z debug frostfs-node/morph.go:229 new block {"index": 1497} -2023-12-15T14:37:09.873Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1497, "blockHeight": 1497, "took": "6.96849ms"} -2023-12-15T14:37:10.286Z INFO sending PrepareRequest {"height": 1498, "view": 0} -2023-12-15T14:37:10.286Z INFO sending Commit {"height": 1498, "view": 0} -2023-12-15T14:37:10.286Z INFO approving block {"height": 1498, "hash": "62726a218744a716e33997494677eda57d2dc43ffba417a52f4ef4911bae5d12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49d793b321f48319cecccd7ef2dd719b965273adc1ebf1ca2f28a7e7891226eb"} -2023-12-15T14:37:10.288Z INFO initializing dbft {"height": 1499, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:10.289Z debug frostfs-node/morph.go:229 new block {"index": 1498} -2023-12-15T14:37:10.871Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1498, "blockHeight": 1498, "took": "4.028957ms"} -2023-12-15T14:37:11.287Z INFO sending PrepareRequest {"height": 1499, "view": 0} -2023-12-15T14:37:11.287Z INFO sending Commit {"height": 1499, "view": 0} -2023-12-15T14:37:11.288Z INFO approving block {"height": 1499, "hash": "1cfbe23dfb409f4c5a5f34b43ff71f2f106fb110b1583bf784a6690522ac0aab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62726a218744a716e33997494677eda57d2dc43ffba417a52f4ef4911bae5d12"} -2023-12-15T14:37:11.289Z INFO initializing dbft {"height": 1500, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:11.290Z debug frostfs-node/morph.go:229 new block {"index": 1499} -2023-12-15T14:37:11.871Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1499, "blockHeight": 1499, "took": "4.321336ms"} -2023-12-15T14:37:12.288Z INFO sending PrepareRequest {"height": 1500, "view": 0} -2023-12-15T14:37:12.289Z INFO sending Commit {"height": 1500, "view": 0} -2023-12-15T14:37:12.289Z INFO approving block {"height": 1500, "hash": "2674c68bad9b251b3f16ec6fdeb07638f5b58c6dc0933ce9c5486615e53ece6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cfbe23dfb409f4c5a5f34b43ff71f2f106fb110b1583bf784a6690522ac0aab"} -2023-12-15T14:37:12.291Z INFO initializing dbft {"height": 1501, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:12.291Z debug frostfs-node/morph.go:229 new block {"index": 1500} -2023-12-15T14:37:12.875Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1500, "blockHeight": 1500, "took": "7.066074ms"} -2023-12-15T14:37:13.290Z INFO sending PrepareRequest {"height": 1501, "view": 0} -2023-12-15T14:37:13.290Z INFO sending Commit {"height": 1501, "view": 0} -2023-12-15T14:37:13.291Z INFO approving block {"height": 1501, "hash": "179218e641643b9767ac9669a2b9e1c9b683235d5bffc58acf391a7e5183dda8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2674c68bad9b251b3f16ec6fdeb07638f5b58c6dc0933ce9c5486615e53ece6b"} -2023-12-15T14:37:13.292Z INFO initializing dbft {"height": 1502, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:13.293Z debug frostfs-node/morph.go:229 new block {"index": 1501} -2023-12-15T14:37:13.873Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1501, "blockHeight": 1501, "took": "4.733542ms"} -2023-12-15T14:37:14.293Z INFO sending PrepareRequest {"height": 1502, "view": 0} -2023-12-15T14:37:14.293Z INFO sending Commit {"height": 1502, "view": 0} -2023-12-15T14:37:14.293Z INFO approving block {"height": 1502, "hash": "2f3957445e0af8422515e8871df7770c9b9f50a4ed439ecade2fa85c1bcb89db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "179218e641643b9767ac9669a2b9e1c9b683235d5bffc58acf391a7e5183dda8"} -2023-12-15T14:37:14.294Z INFO initializing dbft {"height": 1503, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:14.295Z debug frostfs-node/morph.go:229 new block {"index": 1502} -2023-12-15T14:37:14.874Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1502, "blockHeight": 1502, "took": "5.241689ms"} -2023-12-15T14:37:15.294Z INFO sending PrepareRequest {"height": 1503, "view": 0} -2023-12-15T14:37:15.295Z INFO sending Commit {"height": 1503, "view": 0} -2023-12-15T14:37:15.295Z INFO approving block {"height": 1503, "hash": "03907dc7d3b59103fed7bab1f1daa34b42d043c0c607d54c8e23c86b561e35ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f3957445e0af8422515e8871df7770c9b9f50a4ed439ecade2fa85c1bcb89db"} -2023-12-15T14:37:15.296Z INFO initializing dbft {"height": 1504, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:15.297Z debug frostfs-node/morph.go:229 new block {"index": 1503} -2023-12-15T14:37:15.876Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1503, "blockHeight": 1503, "took": "6.791318ms"} -2023-12-15T14:37:16.296Z INFO sending PrepareRequest {"height": 1504, "view": 0} -2023-12-15T14:37:16.296Z INFO sending Commit {"height": 1504, "view": 0} -2023-12-15T14:37:16.296Z INFO approving block {"height": 1504, "hash": "dc3825b19a739837acf703d957d193ccbd899a0e54401b9ff6be3681764ecc67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03907dc7d3b59103fed7bab1f1daa34b42d043c0c607d54c8e23c86b561e35ad"} -2023-12-15T14:37:16.297Z INFO initializing dbft {"height": 1505, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:16.298Z debug frostfs-node/morph.go:229 new block {"index": 1504} -2023-12-15T14:37:16.877Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1504, "blockHeight": 1504, "took": "6.442938ms"} -2023-12-15T14:37:17.297Z INFO sending PrepareRequest {"height": 1505, "view": 0} -2023-12-15T14:37:17.298Z INFO sending Commit {"height": 1505, "view": 0} -2023-12-15T14:37:17.298Z INFO approving block {"height": 1505, "hash": "5a044251e89f443a43a0ce37b113e1e006a062f02aacc8985eb31047c84ef5cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc3825b19a739837acf703d957d193ccbd899a0e54401b9ff6be3681764ecc67"} -2023-12-15T14:37:17.299Z INFO initializing dbft {"height": 1506, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:17.300Z debug frostfs-node/morph.go:229 new block {"index": 1505} -2023-12-15T14:37:17.877Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1505, "blockHeight": 1505, "took": "6.188415ms"} -2023-12-15T14:37:18.299Z INFO sending PrepareRequest {"height": 1506, "view": 0} -2023-12-15T14:37:18.300Z INFO sending Commit {"height": 1506, "view": 0} -2023-12-15T14:37:18.300Z INFO approving block {"height": 1506, "hash": "6277f08dfb0e1186706818a08d3ea4ac2d74787fd2615ed512f590c2bee65311", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a044251e89f443a43a0ce37b113e1e006a062f02aacc8985eb31047c84ef5cb"} -2023-12-15T14:37:18.302Z INFO initializing dbft {"height": 1507, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:18.303Z debug frostfs-node/morph.go:229 new block {"index": 1506} -2023-12-15T14:37:18.307Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 7 epoch for daughters"} -2023-12-15T14:37:18.309Z INFO runtime log {"tx": "286ae5bc97276e33859246b837c4950e7af67d19e5498396178b13a703d3d9f8", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:37:18.876Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1506, "blockHeight": 1506, "took": "4.667426ms"} -2023-12-15T14:37:19.301Z INFO sending PrepareRequest {"height": 1507, "view": 0} -2023-12-15T14:37:19.301Z INFO sending Commit {"height": 1507, "view": 0} -2023-12-15T14:37:19.301Z INFO approving block {"height": 1507, "hash": "d0b2500ede90aabc2203926283c2b614f45330c9775e0360de596b03e55341d1", "tx_count": 1, "merkle": "64487acbed151cb0c450abd9dde8d00634ba326d7a0d51f08007d4e5284fc2ad", "prev": "6277f08dfb0e1186706818a08d3ea4ac2d74787fd2615ed512f590c2bee65311"} -2023-12-15T14:37:19.302Z INFO runtime log {"tx": "adc24f28e5d40780f0510d7a6d32ba3406d0e8ddd9ab50c4b01c15edcb7a4864", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:37:19.303Z INFO initializing dbft {"height": 1508, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:19.304Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 7} -2023-12-15T14:37:19.304Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 7} -2023-12-15T14:37:19.304Z debug frostfs-node/morph.go:229 new block {"index": 1507} -2023-12-15T14:37:19.879Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 1507, "blockHeight": 1507, "took": "7.005513ms"} -2023-12-15T14:37:20.302Z INFO sending PrepareRequest {"height": 1508, "view": 0} -2023-12-15T14:37:20.303Z INFO sending Commit {"height": 1508, "view": 0} -2023-12-15T14:37:20.303Z INFO approving block {"height": 1508, "hash": "2696cb40c535265eda67235ce94a115c1d6838fdafc0dc88a8ddc47989ed9264", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0b2500ede90aabc2203926283c2b614f45330c9775e0360de596b03e55341d1"} -2023-12-15T14:37:20.304Z INFO initializing dbft {"height": 1509, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:20.305Z debug frostfs-node/morph.go:229 new block {"index": 1508} -2023-12-15T14:37:20.878Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1508, "blockHeight": 1508, "took": "4.750214ms"} -2023-12-15T14:37:21.304Z INFO sending PrepareRequest {"height": 1509, "view": 0} -2023-12-15T14:37:21.304Z INFO sending Commit {"height": 1509, "view": 0} -2023-12-15T14:37:21.305Z INFO approving block {"height": 1509, "hash": "3f63156e6573784f6224d8ba9c6c30661fc062395dc67be9eebc37ee1658adfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2696cb40c535265eda67235ce94a115c1d6838fdafc0dc88a8ddc47989ed9264"} -2023-12-15T14:37:21.306Z INFO initializing dbft {"height": 1510, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:21.307Z debug frostfs-node/morph.go:229 new block {"index": 1509} -2023-12-15T14:37:21.878Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1509, "blockHeight": 1509, "took": "4.43573ms"} -2023-12-15T14:37:22.306Z INFO sending PrepareRequest {"height": 1510, "view": 0} -2023-12-15T14:37:22.307Z INFO sending Commit {"height": 1510, "view": 0} -2023-12-15T14:37:22.307Z INFO approving block {"height": 1510, "hash": "65415863ce6e79f675ec3f1fea3862b7cb0776b372e19a11a01037d7916029d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f63156e6573784f6224d8ba9c6c30661fc062395dc67be9eebc37ee1658adfe"} -2023-12-15T14:37:22.308Z INFO initializing dbft {"height": 1511, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:22.309Z debug frostfs-node/morph.go:229 new block {"index": 1510} -2023-12-15T14:37:22.878Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1510, "blockHeight": 1510, "took": "4.173628ms"} -2023-12-15T14:37:23.308Z INFO sending PrepareRequest {"height": 1511, "view": 0} -2023-12-15T14:37:23.309Z INFO sending Commit {"height": 1511, "view": 0} -2023-12-15T14:37:23.309Z INFO approving block {"height": 1511, "hash": "d1d63049132e66f79f86229c15f3c077a394f27045bbd3ba8a76eb01169cebf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65415863ce6e79f675ec3f1fea3862b7cb0776b372e19a11a01037d7916029d8"} -2023-12-15T14:37:23.312Z INFO initializing dbft {"height": 1512, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:23.312Z debug frostfs-node/morph.go:229 new block {"index": 1511} -2023-12-15T14:37:23.878Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1511, "blockHeight": 1511, "took": "3.50774ms"} -2023-12-15T14:37:24.310Z INFO sending PrepareRequest {"height": 1512, "view": 0} -2023-12-15T14:37:24.310Z INFO sending Commit {"height": 1512, "view": 0} -2023-12-15T14:37:24.310Z INFO approving block {"height": 1512, "hash": "0f1aa7bdc72f3b73dd8b7bf3e0902f1cffbef90ad4ba41cfd5c01eed88876334", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1d63049132e66f79f86229c15f3c077a394f27045bbd3ba8a76eb01169cebf9"} -2023-12-15T14:37:24.312Z INFO initializing dbft {"height": 1513, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:24.312Z debug frostfs-node/morph.go:229 new block {"index": 1512} -2023-12-15T14:37:24.878Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1512, "blockHeight": 1512, "took": "3.347333ms"} -2023-12-15T14:37:25.311Z INFO sending PrepareRequest {"height": 1513, "view": 0} -2023-12-15T14:37:25.311Z INFO sending Commit {"height": 1513, "view": 0} -2023-12-15T14:37:25.311Z INFO approving block {"height": 1513, "hash": "f3d6a7cbf89a20e9ee11d571e9a2fb54c5411112b095c6fcc484732f5cac66fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f1aa7bdc72f3b73dd8b7bf3e0902f1cffbef90ad4ba41cfd5c01eed88876334"} -2023-12-15T14:37:25.313Z INFO initializing dbft {"height": 1514, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:25.313Z debug frostfs-node/morph.go:229 new block {"index": 1513} -2023-12-15T14:37:25.878Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1513, "blockHeight": 1513, "took": "2.883239ms"} -2023-12-15T14:37:26.312Z INFO sending PrepareRequest {"height": 1514, "view": 0} -2023-12-15T14:37:26.313Z INFO sending Commit {"height": 1514, "view": 0} -2023-12-15T14:37:26.313Z INFO approving block {"height": 1514, "hash": "91da21467aae9a16ac4697056b6ea1a8796bf354670e6c44246e3e773e109229", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3d6a7cbf89a20e9ee11d571e9a2fb54c5411112b095c6fcc484732f5cac66fc"} -2023-12-15T14:37:26.314Z INFO initializing dbft {"height": 1515, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:26.314Z debug frostfs-node/morph.go:229 new block {"index": 1514} -2023-12-15T14:37:26.880Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1514, "blockHeight": 1514, "took": "4.339053ms"} -2023-12-15T14:37:27.314Z INFO sending PrepareRequest {"height": 1515, "view": 0} -2023-12-15T14:37:27.314Z INFO sending Commit {"height": 1515, "view": 0} -2023-12-15T14:37:27.315Z INFO approving block {"height": 1515, "hash": "3ca4340d910dbc242dce5c15ac0ca033e4175165519cfdb34c9ddd0cc5d8b9bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91da21467aae9a16ac4697056b6ea1a8796bf354670e6c44246e3e773e109229"} -2023-12-15T14:37:27.316Z INFO initializing dbft {"height": 1516, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:27.317Z debug frostfs-node/morph.go:229 new block {"index": 1515} -2023-12-15T14:37:27.880Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1515, "blockHeight": 1515, "took": "3.157479ms"} -2023-12-15T14:37:28.316Z INFO sending PrepareRequest {"height": 1516, "view": 0} -2023-12-15T14:37:28.317Z INFO sending Commit {"height": 1516, "view": 0} -2023-12-15T14:37:28.317Z INFO approving block {"height": 1516, "hash": "2d1209a138f4082666fcdbdff59968ff8661f16a7e263f363a033fd712a0226b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ca4340d910dbc242dce5c15ac0ca033e4175165519cfdb34c9ddd0cc5d8b9bb"} -2023-12-15T14:37:28.318Z INFO initializing dbft {"height": 1517, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:28.318Z debug frostfs-node/morph.go:229 new block {"index": 1516} -2023-12-15T14:37:28.881Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1516, "blockHeight": 1516, "took": "2.740027ms"} -2023-12-15T14:37:29.318Z INFO sending PrepareRequest {"height": 1517, "view": 0} -2023-12-15T14:37:29.319Z INFO sending Commit {"height": 1517, "view": 0} -2023-12-15T14:37:29.319Z INFO approving block {"height": 1517, "hash": "c7ca5cd38df5bb7a7f5338cb41ee96746c0642c38f2cf418e68ef9f783537a4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d1209a138f4082666fcdbdff59968ff8661f16a7e263f363a033fd712a0226b"} -2023-12-15T14:37:29.321Z INFO initializing dbft {"height": 1518, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:29.321Z debug frostfs-node/morph.go:229 new block {"index": 1517} -2023-12-15T14:37:29.323Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:37:29.324Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:37:29.324Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:37:29.881Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1517, "blockHeight": 1517, "took": "2.713989ms"} -2023-12-15T14:37:30.321Z INFO sending PrepareRequest {"height": 1518, "view": 0} -2023-12-15T14:37:30.321Z INFO sending Commit {"height": 1518, "view": 0} -2023-12-15T14:37:30.322Z INFO approving block {"height": 1518, "hash": "b0f8c85c62024a9792c6ee081c0fbd0abace53d0ff551581a4e3379623fda951", "tx_count": 2, "merkle": "6e94d0ea6a5fb8fc9918f2673b1608caeeab144d50afa52cb0eb7ca00a9580b7", "prev": "c7ca5cd38df5bb7a7f5338cb41ee96746c0642c38f2cf418e68ef9f783537a4f"} -2023-12-15T14:37:30.323Z INFO runtime log {"tx": "2d5248ec0005376ce8e10cbc2bdcf6d7a83169dde209b0ea6ece90d8d95aa502", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:37:30.323Z INFO runtime log {"tx": "2d5248ec0005376ce8e10cbc2bdcf6d7a83169dde209b0ea6ece90d8d95aa502", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:37:30.324Z INFO initializing dbft {"height": 1519, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:30.325Z debug frostfs-node/morph.go:229 new block {"index": 1518} -2023-12-15T14:37:30.883Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1518, "blockHeight": 1518, "took": "4.390777ms"} -2023-12-15T14:37:31.323Z INFO sending PrepareRequest {"height": 1519, "view": 0} -2023-12-15T14:37:31.323Z INFO sending Commit {"height": 1519, "view": 0} -2023-12-15T14:37:31.324Z INFO approving block {"height": 1519, "hash": "47b92b7aaab1e82f2792b3d79e29cc4114700d96a6bd6a0218570cb138add033", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0f8c85c62024a9792c6ee081c0fbd0abace53d0ff551581a4e3379623fda951"} -2023-12-15T14:37:31.325Z INFO initializing dbft {"height": 1520, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:31.325Z debug frostfs-node/morph.go:229 new block {"index": 1519} -2023-12-15T14:37:31.883Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1519, "blockHeight": 1519, "took": "3.520732ms"} -2023-12-15T14:37:32.325Z INFO sending PrepareRequest {"height": 1520, "view": 0} -2023-12-15T14:37:32.325Z INFO sending Commit {"height": 1520, "view": 0} -2023-12-15T14:37:32.326Z INFO approving block {"height": 1520, "hash": "5b28f767804754cd4aa825a662f08d0e15969c4156feb3f7edcb0e77e648952a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47b92b7aaab1e82f2792b3d79e29cc4114700d96a6bd6a0218570cb138add033"} -2023-12-15T14:37:32.327Z INFO initializing dbft {"height": 1521, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:32.328Z debug frostfs-node/morph.go:229 new block {"index": 1520} -2023-12-15T14:37:32.884Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1520, "blockHeight": 1520, "took": "4.222123ms"} -2023-12-15T14:37:33.327Z INFO sending PrepareRequest {"height": 1521, "view": 0} -2023-12-15T14:37:33.327Z INFO sending Commit {"height": 1521, "view": 0} -2023-12-15T14:37:33.328Z INFO approving block {"height": 1521, "hash": "f603d26d2931e8adb71eac1ae6608387b70e8e0bbcf2c389ae0cadb63925124f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b28f767804754cd4aa825a662f08d0e15969c4156feb3f7edcb0e77e648952a"} -2023-12-15T14:37:33.330Z INFO initializing dbft {"height": 1522, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:33.331Z debug frostfs-node/morph.go:229 new block {"index": 1521} -2023-12-15T14:37:33.885Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1521, "blockHeight": 1521, "took": "4.550402ms"} -2023-12-15T14:37:34.329Z INFO sending PrepareRequest {"height": 1522, "view": 0} -2023-12-15T14:37:34.329Z INFO sending Commit {"height": 1522, "view": 0} -2023-12-15T14:37:34.329Z INFO approving block {"height": 1522, "hash": "10f1aea6a34a2f8404332060dd2474feb8ba84364db9bf588f2c5bb02752e137", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f603d26d2931e8adb71eac1ae6608387b70e8e0bbcf2c389ae0cadb63925124f"} -2023-12-15T14:37:34.330Z INFO initializing dbft {"height": 1523, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:34.331Z debug frostfs-node/morph.go:229 new block {"index": 1522} -2023-12-15T14:37:34.885Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1522, "blockHeight": 1522, "took": "2.987297ms"} -2023-12-15T14:37:35.330Z INFO sending PrepareRequest {"height": 1523, "view": 0} -2023-12-15T14:37:35.330Z INFO sending Commit {"height": 1523, "view": 0} -2023-12-15T14:37:35.330Z INFO approving block {"height": 1523, "hash": "451b8b0cade6212bf4ce40019cb8c2da7506482548ae411601c93cd990ebffdd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10f1aea6a34a2f8404332060dd2474feb8ba84364db9bf588f2c5bb02752e137"} -2023-12-15T14:37:35.331Z INFO initializing dbft {"height": 1524, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:35.332Z debug frostfs-node/morph.go:229 new block {"index": 1523} -2023-12-15T14:37:35.887Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1523, "blockHeight": 1523, "took": "4.582818ms"} -2023-12-15T14:37:36.331Z INFO sending PrepareRequest {"height": 1524, "view": 0} -2023-12-15T14:37:36.331Z INFO sending Commit {"height": 1524, "view": 0} -2023-12-15T14:37:36.332Z INFO approving block {"height": 1524, "hash": "db5f71c69ef648be9c4ef112121a6865b0a01bfa720e0bfc01364ed263218208", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "451b8b0cade6212bf4ce40019cb8c2da7506482548ae411601c93cd990ebffdd"} -2023-12-15T14:37:36.332Z INFO initializing dbft {"height": 1525, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:36.333Z debug frostfs-node/morph.go:229 new block {"index": 1524} -2023-12-15T14:37:36.886Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1524, "blockHeight": 1524, "took": "2.861953ms"} -2023-12-15T14:37:37.333Z INFO sending PrepareRequest {"height": 1525, "view": 0} -2023-12-15T14:37:37.333Z INFO sending Commit {"height": 1525, "view": 0} -2023-12-15T14:37:37.334Z INFO approving block {"height": 1525, "hash": "13de3b47c6bc3774effc9e39096f1e40b0ec21da7ac47376f151da129462a8eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db5f71c69ef648be9c4ef112121a6865b0a01bfa720e0bfc01364ed263218208"} -2023-12-15T14:37:37.335Z INFO initializing dbft {"height": 1526, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:37.335Z debug frostfs-node/morph.go:229 new block {"index": 1525} -2023-12-15T14:37:37.886Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1525, "blockHeight": 1525, "took": "3.119321ms"} -2023-12-15T14:37:38.334Z INFO sending PrepareRequest {"height": 1526, "view": 0} -2023-12-15T14:37:38.335Z INFO sending Commit {"height": 1526, "view": 0} -2023-12-15T14:37:38.335Z INFO approving block {"height": 1526, "hash": "7b818149a40c8d9a677d994e7bb8304c2d1a93470576b610d3dc1cf4fd8419eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13de3b47c6bc3774effc9e39096f1e40b0ec21da7ac47376f151da129462a8eb"} -2023-12-15T14:37:38.337Z INFO initializing dbft {"height": 1527, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:38.337Z debug frostfs-node/morph.go:229 new block {"index": 1526} -2023-12-15T14:37:38.888Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1526, "blockHeight": 1526, "took": "4.763859ms"} -2023-12-15T14:37:39.337Z INFO sending PrepareRequest {"height": 1527, "view": 0} -2023-12-15T14:37:39.337Z INFO sending Commit {"height": 1527, "view": 0} -2023-12-15T14:37:39.337Z INFO approving block {"height": 1527, "hash": "2093e6918074d174fcdd8a2138d2f1c8d517fb1c86adb4325880095b27967e38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b818149a40c8d9a677d994e7bb8304c2d1a93470576b610d3dc1cf4fd8419eb"} -2023-12-15T14:37:39.338Z INFO initializing dbft {"height": 1528, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:39.339Z debug frostfs-node/morph.go:229 new block {"index": 1527} -2023-12-15T14:37:39.889Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1527, "blockHeight": 1527, "took": "4.77479ms"} -2023-12-15T14:37:40.339Z INFO sending PrepareRequest {"height": 1528, "view": 0} -2023-12-15T14:37:40.339Z INFO sending Commit {"height": 1528, "view": 0} -2023-12-15T14:37:40.340Z INFO approving block {"height": 1528, "hash": "93f03f65e50aa5793304971c7559ce099f246494cfb0ccaf1c10eff93ce27fc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2093e6918074d174fcdd8a2138d2f1c8d517fb1c86adb4325880095b27967e38"} -2023-12-15T14:37:40.341Z INFO initializing dbft {"height": 1529, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:40.342Z debug frostfs-node/morph.go:229 new block {"index": 1528} -2023-12-15T14:37:40.889Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1528, "blockHeight": 1528, "took": "3.464551ms"} -2023-12-15T14:37:41.341Z INFO sending PrepareRequest {"height": 1529, "view": 0} -2023-12-15T14:37:41.341Z INFO sending Commit {"height": 1529, "view": 0} -2023-12-15T14:37:41.341Z INFO approving block {"height": 1529, "hash": "c985a468ae7d07ef416b544d7f9b3c6965bf152061fddd26a9edb72618da8ad0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93f03f65e50aa5793304971c7559ce099f246494cfb0ccaf1c10eff93ce27fc1"} -2023-12-15T14:37:41.342Z INFO initializing dbft {"height": 1530, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:41.342Z debug frostfs-node/morph.go:229 new block {"index": 1529} -2023-12-15T14:37:41.914Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1529, "blockHeight": 1529, "took": "27.67905ms"} -2023-12-15T14:37:42.342Z INFO sending PrepareRequest {"height": 1530, "view": 0} -2023-12-15T14:37:42.342Z INFO sending Commit {"height": 1530, "view": 0} -2023-12-15T14:37:42.343Z INFO approving block {"height": 1530, "hash": "8fb6ec38736be51b29a91a25517f864ce8508201359c4c653422d5a33f818615", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c985a468ae7d07ef416b544d7f9b3c6965bf152061fddd26a9edb72618da8ad0"} -2023-12-15T14:37:42.343Z INFO initializing dbft {"height": 1531, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:42.344Z debug frostfs-node/morph.go:229 new block {"index": 1530} -2023-12-15T14:37:42.889Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1530, "blockHeight": 1530, "took": "2.644247ms"} -2023-12-15T14:37:43.344Z INFO sending PrepareRequest {"height": 1531, "view": 0} -2023-12-15T14:37:43.344Z INFO sending Commit {"height": 1531, "view": 0} -2023-12-15T14:37:43.344Z INFO approving block {"height": 1531, "hash": "bd65d4c106b095c0f2a1cc8be903951987c5729369bbd08c08eb36c73e0e2880", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fb6ec38736be51b29a91a25517f864ce8508201359c4c653422d5a33f818615"} -2023-12-15T14:37:43.346Z INFO initializing dbft {"height": 1532, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:43.346Z debug frostfs-node/morph.go:229 new block {"index": 1531} -2023-12-15T14:37:43.892Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1531, "blockHeight": 1531, "took": "4.669407ms"} -2023-12-15T14:37:44.345Z INFO sending PrepareRequest {"height": 1532, "view": 0} -2023-12-15T14:37:44.345Z INFO sending Commit {"height": 1532, "view": 0} -2023-12-15T14:37:44.346Z INFO approving block {"height": 1532, "hash": "0d123ea838cdbcf7316c73405b71b76264ad3e2080655a1c8fe54fd2a4836739", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd65d4c106b095c0f2a1cc8be903951987c5729369bbd08c08eb36c73e0e2880"} -2023-12-15T14:37:44.347Z INFO initializing dbft {"height": 1533, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:44.347Z debug frostfs-node/morph.go:229 new block {"index": 1532} -2023-12-15T14:37:44.894Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1532, "blockHeight": 1532, "took": "7.096217ms"} -2023-12-15T14:37:45.346Z INFO sending PrepareRequest {"height": 1533, "view": 0} -2023-12-15T14:37:45.346Z INFO sending Commit {"height": 1533, "view": 0} -2023-12-15T14:37:45.347Z INFO approving block {"height": 1533, "hash": "d0ce06bd1db83564af1ac5d4a1207ce13ce5f6db39034a655c45fd922f28e0ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d123ea838cdbcf7316c73405b71b76264ad3e2080655a1c8fe54fd2a4836739"} -2023-12-15T14:37:45.348Z INFO initializing dbft {"height": 1534, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:45.348Z debug frostfs-node/morph.go:229 new block {"index": 1533} -2023-12-15T14:37:45.892Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1533, "blockHeight": 1533, "took": "4.199292ms"} -2023-12-15T14:37:46.348Z INFO sending PrepareRequest {"height": 1534, "view": 0} -2023-12-15T14:37:46.348Z INFO sending Commit {"height": 1534, "view": 0} -2023-12-15T14:37:46.349Z INFO approving block {"height": 1534, "hash": "c897b2392fe7189faa20d472c15b8d184d2963c4bab838dc6c7034254a6fb942", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0ce06bd1db83564af1ac5d4a1207ce13ce5f6db39034a655c45fd922f28e0ac"} -2023-12-15T14:37:46.350Z INFO initializing dbft {"height": 1535, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:46.350Z debug frostfs-node/morph.go:229 new block {"index": 1534} -2023-12-15T14:37:46.894Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1534, "blockHeight": 1534, "took": "6.115308ms"} -2023-12-15T14:37:47.349Z INFO sending PrepareRequest {"height": 1535, "view": 0} -2023-12-15T14:37:47.350Z INFO sending Commit {"height": 1535, "view": 0} -2023-12-15T14:37:47.350Z INFO approving block {"height": 1535, "hash": "03a346608eb03a265f7fc1c6aec1170397e682da3aa1e6aa9875cdb86ca62a64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c897b2392fe7189faa20d472c15b8d184d2963c4bab838dc6c7034254a6fb942"} -2023-12-15T14:37:47.351Z INFO initializing dbft {"height": 1536, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:47.352Z debug frostfs-node/morph.go:229 new block {"index": 1535} -2023-12-15T14:37:47.891Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 1535, "blockHeight": 1535, "took": "2.565885ms"} -2023-12-15T14:37:48.351Z INFO sending PrepareRequest {"height": 1536, "view": 0} -2023-12-15T14:37:48.351Z INFO sending Commit {"height": 1536, "view": 0} -2023-12-15T14:37:48.351Z INFO approving block {"height": 1536, "hash": "ff051f046b6007d22a01f439b9bfa9e0149a22174fdc406a52156faf2eaa076b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03a346608eb03a265f7fc1c6aec1170397e682da3aa1e6aa9875cdb86ca62a64"} -2023-12-15T14:37:48.352Z INFO initializing dbft {"height": 1537, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:48.353Z debug frostfs-node/morph.go:229 new block {"index": 1536} -2023-12-15T14:37:48.895Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1536, "blockHeight": 1536, "took": "6.297074ms"} -2023-12-15T14:37:49.352Z INFO sending PrepareRequest {"height": 1537, "view": 0} -2023-12-15T14:37:49.352Z INFO sending Commit {"height": 1537, "view": 0} -2023-12-15T14:37:49.353Z INFO approving block {"height": 1537, "hash": "51d68edb9da04c96582013bfd952930fc37700685f4bdebf0d88fab3d0fc0744", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff051f046b6007d22a01f439b9bfa9e0149a22174fdc406a52156faf2eaa076b"} -2023-12-15T14:37:49.353Z INFO initializing dbft {"height": 1538, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:49.354Z debug frostfs-node/morph.go:229 new block {"index": 1537} -2023-12-15T14:37:49.894Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1537, "blockHeight": 1537, "took": "4.049188ms"} -2023-12-15T14:37:50.354Z INFO sending PrepareRequest {"height": 1538, "view": 0} -2023-12-15T14:37:50.354Z INFO sending Commit {"height": 1538, "view": 0} -2023-12-15T14:37:50.354Z INFO approving block {"height": 1538, "hash": "1af12e265aab4d23cfa4f35f510d09e1f173fa82b5e3b45d19d53eba67903a69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51d68edb9da04c96582013bfd952930fc37700685f4bdebf0d88fab3d0fc0744"} -2023-12-15T14:37:50.355Z INFO initializing dbft {"height": 1539, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:50.355Z debug frostfs-node/morph.go:229 new block {"index": 1538} -2023-12-15T14:37:50.893Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1538, "blockHeight": 1538, "took": "2.831043ms"} -2023-12-15T14:37:51.355Z INFO sending PrepareRequest {"height": 1539, "view": 0} -2023-12-15T14:37:51.355Z INFO sending Commit {"height": 1539, "view": 0} -2023-12-15T14:37:51.356Z INFO approving block {"height": 1539, "hash": "eacfeb37a17a76c16099f5121bd7e98a36effaf9d7095e73a788e02bcfa16e8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1af12e265aab4d23cfa4f35f510d09e1f173fa82b5e3b45d19d53eba67903a69"} -2023-12-15T14:37:51.357Z INFO initializing dbft {"height": 1540, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:51.357Z debug frostfs-node/morph.go:229 new block {"index": 1539} -2023-12-15T14:37:51.895Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1539, "blockHeight": 1539, "took": "4.13279ms"} -2023-12-15T14:37:52.357Z INFO sending PrepareRequest {"height": 1540, "view": 0} -2023-12-15T14:37:52.357Z INFO sending Commit {"height": 1540, "view": 0} -2023-12-15T14:37:52.357Z INFO approving block {"height": 1540, "hash": "4149f42c1a2eb7ca247e500a227132b82c8ddf9bcceacf71c2a4c3de279ecf58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eacfeb37a17a76c16099f5121bd7e98a36effaf9d7095e73a788e02bcfa16e8c"} -2023-12-15T14:37:52.358Z INFO initializing dbft {"height": 1541, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:52.358Z debug frostfs-node/morph.go:229 new block {"index": 1540} -2023-12-15T14:37:52.897Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1540, "blockHeight": 1540, "took": "5.792662ms"} -2023-12-15T14:37:53.358Z INFO sending PrepareRequest {"height": 1541, "view": 0} -2023-12-15T14:37:53.359Z INFO sending Commit {"height": 1541, "view": 0} -2023-12-15T14:37:53.359Z INFO approving block {"height": 1541, "hash": "96c0170a6cdbc289171c0f6e6ace73fa7bfcdb49988ca86cf458a9c40e1b5321", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4149f42c1a2eb7ca247e500a227132b82c8ddf9bcceacf71c2a4c3de279ecf58"} -2023-12-15T14:37:53.359Z INFO initializing dbft {"height": 1542, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:53.360Z debug frostfs-node/morph.go:229 new block {"index": 1541} -2023-12-15T14:37:53.897Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1541, "blockHeight": 1541, "took": "4.829235ms"} -2023-12-15T14:37:54.360Z INFO sending PrepareRequest {"height": 1542, "view": 0} -2023-12-15T14:37:54.360Z INFO sending Commit {"height": 1542, "view": 0} -2023-12-15T14:37:54.361Z INFO approving block {"height": 1542, "hash": "348df970051bd6310aa4639dda139add695e070df09c18479ee1fa65ea9f7f54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96c0170a6cdbc289171c0f6e6ace73fa7bfcdb49988ca86cf458a9c40e1b5321"} -2023-12-15T14:37:54.362Z INFO initializing dbft {"height": 1543, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:54.363Z debug frostfs-node/morph.go:229 new block {"index": 1542} -2023-12-15T14:37:54.896Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1542, "blockHeight": 1542, "took": "4.15062ms"} -2023-12-15T14:37:55.361Z INFO sending PrepareRequest {"height": 1543, "view": 0} -2023-12-15T14:37:55.362Z INFO sending Commit {"height": 1543, "view": 0} -2023-12-15T14:37:55.362Z INFO approving block {"height": 1543, "hash": "d242277aa2f2b67ddf8a56c3cbb2eb0732bbf9e4b10a3841761c8f013cb2300a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "348df970051bd6310aa4639dda139add695e070df09c18479ee1fa65ea9f7f54"} -2023-12-15T14:37:55.363Z INFO initializing dbft {"height": 1544, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:55.364Z debug frostfs-node/morph.go:229 new block {"index": 1543} -2023-12-15T14:37:55.897Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1543, "blockHeight": 1543, "took": "4.615895ms"} -2023-12-15T14:37:56.363Z INFO sending PrepareRequest {"height": 1544, "view": 0} -2023-12-15T14:37:56.363Z INFO sending Commit {"height": 1544, "view": 0} -2023-12-15T14:37:56.363Z INFO approving block {"height": 1544, "hash": "1c7b7b8bb322da065148e53973c3723e99318da945850633f479ffe39e0d531c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d242277aa2f2b67ddf8a56c3cbb2eb0732bbf9e4b10a3841761c8f013cb2300a"} -2023-12-15T14:37:56.364Z INFO initializing dbft {"height": 1545, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:56.364Z debug frostfs-node/morph.go:229 new block {"index": 1544} -2023-12-15T14:37:56.898Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1544, "blockHeight": 1544, "took": "5.260376ms"} -2023-12-15T14:37:57.364Z INFO sending PrepareRequest {"height": 1545, "view": 0} -2023-12-15T14:37:57.364Z INFO sending Commit {"height": 1545, "view": 0} -2023-12-15T14:37:57.364Z INFO approving block {"height": 1545, "hash": "9f8b6ed7727c750d65578b6860364a2082dc75504af04631aa14decdce15fa20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c7b7b8bb322da065148e53973c3723e99318da945850633f479ffe39e0d531c"} -2023-12-15T14:37:57.365Z INFO initializing dbft {"height": 1546, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:57.365Z debug frostfs-node/morph.go:229 new block {"index": 1545} -2023-12-15T14:37:57.897Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1545, "blockHeight": 1545, "took": "2.677439ms"} -2023-12-15T14:37:58.365Z INFO sending PrepareRequest {"height": 1546, "view": 0} -2023-12-15T14:37:58.365Z INFO sending Commit {"height": 1546, "view": 0} -2023-12-15T14:37:58.365Z INFO approving block {"height": 1546, "hash": "9abaabcb8ca54045df26c455ed095bc0ed9856964b656f1f8959152a50422ae9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f8b6ed7727c750d65578b6860364a2082dc75504af04631aa14decdce15fa20"} -2023-12-15T14:37:58.367Z INFO initializing dbft {"height": 1547, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:58.367Z debug frostfs-node/morph.go:229 new block {"index": 1546} -2023-12-15T14:37:58.899Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1546, "blockHeight": 1546, "took": "3.7604ms"} -2023-12-15T14:37:59.366Z INFO sending PrepareRequest {"height": 1547, "view": 0} -2023-12-15T14:37:59.367Z INFO sending Commit {"height": 1547, "view": 0} -2023-12-15T14:37:59.367Z INFO approving block {"height": 1547, "hash": "ba035ff68817ef8cdf993ecd9d6887755bd9a53580627f609986e83979fb8143", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9abaabcb8ca54045df26c455ed095bc0ed9856964b656f1f8959152a50422ae9"} -2023-12-15T14:37:59.368Z INFO initializing dbft {"height": 1548, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:37:59.369Z debug frostfs-node/morph.go:229 new block {"index": 1547} -2023-12-15T14:37:59.900Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1547, "blockHeight": 1547, "took": "4.292645ms"} -2023-12-15T14:38:00.368Z INFO sending PrepareRequest {"height": 1548, "view": 0} -2023-12-15T14:38:00.368Z INFO sending Commit {"height": 1548, "view": 0} -2023-12-15T14:38:00.368Z INFO approving block {"height": 1548, "hash": "6a3d79e183a8efbd9cf4f6528b3430a5fc9fb2d70df9eaf22c8e2e0fcc8e95f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba035ff68817ef8cdf993ecd9d6887755bd9a53580627f609986e83979fb8143"} -2023-12-15T14:38:00.370Z INFO initializing dbft {"height": 1549, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:00.370Z debug frostfs-node/morph.go:229 new block {"index": 1548} -2023-12-15T14:38:00.902Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1548, "blockHeight": 1548, "took": "5.436249ms"} -2023-12-15T14:38:01.369Z INFO sending PrepareRequest {"height": 1549, "view": 0} -2023-12-15T14:38:01.369Z INFO sending Commit {"height": 1549, "view": 0} -2023-12-15T14:38:01.370Z INFO approving block {"height": 1549, "hash": "8f4ee313463603ff18b80f750f31647446897ebedcc3b69d9c3c7222b2947149", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a3d79e183a8efbd9cf4f6528b3430a5fc9fb2d70df9eaf22c8e2e0fcc8e95f2"} -2023-12-15T14:38:01.371Z INFO initializing dbft {"height": 1550, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:01.372Z debug frostfs-node/morph.go:229 new block {"index": 1549} -2023-12-15T14:38:01.901Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1549, "blockHeight": 1549, "took": "5.054657ms"} -2023-12-15T14:38:02.371Z INFO sending PrepareRequest {"height": 1550, "view": 0} -2023-12-15T14:38:02.371Z INFO sending Commit {"height": 1550, "view": 0} -2023-12-15T14:38:02.371Z INFO approving block {"height": 1550, "hash": "caf07906bc243371eba01bb8a05d20a2f98f733d3eff5efbc9fc529bc5e18f71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f4ee313463603ff18b80f750f31647446897ebedcc3b69d9c3c7222b2947149"} -2023-12-15T14:38:02.372Z INFO initializing dbft {"height": 1551, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:02.373Z debug frostfs-node/morph.go:229 new block {"index": 1550} -2023-12-15T14:38:02.900Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1550, "blockHeight": 1550, "took": "2.837194ms"} -2023-12-15T14:38:03.372Z INFO sending PrepareRequest {"height": 1551, "view": 0} -2023-12-15T14:38:03.372Z INFO sending Commit {"height": 1551, "view": 0} -2023-12-15T14:38:03.373Z INFO approving block {"height": 1551, "hash": "9ecf2e0628e14116f2734a52c2d1ee07453193bc5e69681f36d940f557ff002e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "caf07906bc243371eba01bb8a05d20a2f98f733d3eff5efbc9fc529bc5e18f71"} -2023-12-15T14:38:03.374Z INFO initializing dbft {"height": 1552, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:03.375Z debug frostfs-node/morph.go:229 new block {"index": 1551} -2023-12-15T14:38:03.903Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1551, "blockHeight": 1551, "took": "5.267191ms"} -2023-12-15T14:38:04.373Z INFO sending PrepareRequest {"height": 1552, "view": 0} -2023-12-15T14:38:04.374Z INFO sending Commit {"height": 1552, "view": 0} -2023-12-15T14:38:04.374Z INFO approving block {"height": 1552, "hash": "143c4ae69ba4399dc4dc1c80167d7cc48b7741f7aece10d3600670c89e09f684", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ecf2e0628e14116f2734a52c2d1ee07453193bc5e69681f36d940f557ff002e"} -2023-12-15T14:38:04.375Z INFO initializing dbft {"height": 1553, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:04.376Z debug frostfs-node/morph.go:229 new block {"index": 1552} -2023-12-15T14:38:04.901Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1552, "blockHeight": 1552, "took": "3.289436ms"} -2023-12-15T14:38:05.375Z INFO sending PrepareRequest {"height": 1553, "view": 0} -2023-12-15T14:38:05.375Z INFO sending Commit {"height": 1553, "view": 0} -2023-12-15T14:38:05.375Z INFO approving block {"height": 1553, "hash": "6ef5d2d6a7ed8794ac2b7253ba77a13a9a5201db7d045f27affd2776d9331dcb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "143c4ae69ba4399dc4dc1c80167d7cc48b7741f7aece10d3600670c89e09f684"} -2023-12-15T14:38:05.376Z INFO initializing dbft {"height": 1554, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:05.376Z debug frostfs-node/morph.go:229 new block {"index": 1553} -2023-12-15T14:38:05.904Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1553, "blockHeight": 1553, "took": "5.762988ms"} -2023-12-15T14:38:06.376Z INFO sending PrepareRequest {"height": 1554, "view": 0} -2023-12-15T14:38:06.376Z INFO sending Commit {"height": 1554, "view": 0} -2023-12-15T14:38:06.377Z INFO approving block {"height": 1554, "hash": "4fabfb47441c0d70af63565d690f02e006b26aee0c0f6a587dc96054607c757b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ef5d2d6a7ed8794ac2b7253ba77a13a9a5201db7d045f27affd2776d9331dcb"} -2023-12-15T14:38:06.378Z INFO initializing dbft {"height": 1555, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:06.378Z debug frostfs-node/morph.go:229 new block {"index": 1554} -2023-12-15T14:38:06.904Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1554, "blockHeight": 1554, "took": "5.49347ms"} -2023-12-15T14:38:07.378Z INFO sending PrepareRequest {"height": 1555, "view": 0} -2023-12-15T14:38:07.378Z INFO sending Commit {"height": 1555, "view": 0} -2023-12-15T14:38:07.379Z INFO approving block {"height": 1555, "hash": "1339db94738ef22b78625e25a9ec62f79984b7304d3f95539b55d3519aaf6931", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fabfb47441c0d70af63565d690f02e006b26aee0c0f6a587dc96054607c757b"} -2023-12-15T14:38:07.380Z INFO initializing dbft {"height": 1556, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:07.381Z debug frostfs-node/morph.go:229 new block {"index": 1555} -2023-12-15T14:38:07.903Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1555, "blockHeight": 1555, "took": "3.634244ms"} -2023-12-15T14:38:08.380Z INFO sending PrepareRequest {"height": 1556, "view": 0} -2023-12-15T14:38:08.380Z INFO sending Commit {"height": 1556, "view": 0} -2023-12-15T14:38:08.381Z INFO approving block {"height": 1556, "hash": "4d281d7ed9e70a5c8fdd64a25820ea1f79b8f4bf5511062a1dc2a8a06e4f8902", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1339db94738ef22b78625e25a9ec62f79984b7304d3f95539b55d3519aaf6931"} -2023-12-15T14:38:08.381Z INFO initializing dbft {"height": 1557, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:08.382Z debug frostfs-node/morph.go:229 new block {"index": 1556} -2023-12-15T14:38:08.903Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1556, "blockHeight": 1556, "took": "3.08784ms"} -2023-12-15T14:38:09.381Z INFO sending PrepareRequest {"height": 1557, "view": 0} -2023-12-15T14:38:09.382Z INFO sending Commit {"height": 1557, "view": 0} -2023-12-15T14:38:09.382Z INFO approving block {"height": 1557, "hash": "08d28a11c3d57da53a3dd66ea4af802689480ed5bbf06ed506d1b15410d7e31d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d281d7ed9e70a5c8fdd64a25820ea1f79b8f4bf5511062a1dc2a8a06e4f8902"} -2023-12-15T14:38:09.383Z INFO initializing dbft {"height": 1558, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:09.383Z debug frostfs-node/morph.go:229 new block {"index": 1557} -2023-12-15T14:38:09.906Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1557, "blockHeight": 1557, "took": "5.658048ms"} -2023-12-15T14:38:10.383Z INFO sending PrepareRequest {"height": 1558, "view": 0} -2023-12-15T14:38:10.383Z INFO sending Commit {"height": 1558, "view": 0} -2023-12-15T14:38:10.384Z INFO approving block {"height": 1558, "hash": "c9680f4f379fafcd05b96bfe33fc0499cf21191670456c7181048fc62dec37cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08d28a11c3d57da53a3dd66ea4af802689480ed5bbf06ed506d1b15410d7e31d"} -2023-12-15T14:38:10.385Z INFO initializing dbft {"height": 1559, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:10.385Z debug frostfs-node/morph.go:229 new block {"index": 1558} -2023-12-15T14:38:10.906Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1558, "blockHeight": 1558, "took": "4.562223ms"} -2023-12-15T14:38:11.385Z INFO sending PrepareRequest {"height": 1559, "view": 0} -2023-12-15T14:38:11.386Z INFO sending Commit {"height": 1559, "view": 0} -2023-12-15T14:38:11.386Z INFO approving block {"height": 1559, "hash": "c59764e8e4e0b9596d88761f76d37371f0cdd7919a1de5000b721c5d1047c3ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9680f4f379fafcd05b96bfe33fc0499cf21191670456c7181048fc62dec37cd"} -2023-12-15T14:38:11.387Z INFO initializing dbft {"height": 1560, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:11.388Z debug frostfs-node/morph.go:229 new block {"index": 1559} -2023-12-15T14:38:11.909Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1559, "blockHeight": 1559, "took": "7.163278ms"} -2023-12-15T14:38:12.387Z INFO sending PrepareRequest {"height": 1560, "view": 0} -2023-12-15T14:38:12.387Z INFO sending Commit {"height": 1560, "view": 0} -2023-12-15T14:38:12.387Z INFO approving block {"height": 1560, "hash": "02a5d7dfa2b2c4481e42e0f7bb1a4a0bfb6117800ef64514c5d0c80a4fe2b05f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c59764e8e4e0b9596d88761f76d37371f0cdd7919a1de5000b721c5d1047c3ef"} -2023-12-15T14:38:12.388Z INFO initializing dbft {"height": 1561, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:12.388Z debug frostfs-node/morph.go:229 new block {"index": 1560} -2023-12-15T14:38:12.907Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1560, "blockHeight": 1560, "took": "4.494671ms"} -2023-12-15T14:38:13.389Z INFO sending PrepareRequest {"height": 1561, "view": 0} -2023-12-15T14:38:13.389Z INFO sending Commit {"height": 1561, "view": 0} -2023-12-15T14:38:13.389Z INFO approving block {"height": 1561, "hash": "a7a9ffd6168ab6086a7407a65a0bbea86f2f74d57af4938275995bd8da702576", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02a5d7dfa2b2c4481e42e0f7bb1a4a0bfb6117800ef64514c5d0c80a4fe2b05f"} -2023-12-15T14:38:13.390Z INFO initializing dbft {"height": 1562, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:13.391Z debug frostfs-node/morph.go:229 new block {"index": 1561} -2023-12-15T14:38:13.907Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1561, "blockHeight": 1561, "took": "4.55625ms"} -2023-12-15T14:38:14.390Z INFO sending PrepareRequest {"height": 1562, "view": 0} -2023-12-15T14:38:14.390Z INFO sending Commit {"height": 1562, "view": 0} -2023-12-15T14:38:14.391Z INFO approving block {"height": 1562, "hash": "f897a76062292c34537a0cdbb4d38f07c7283690f52b148c21bf56737aaf270a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7a9ffd6168ab6086a7407a65a0bbea86f2f74d57af4938275995bd8da702576"} -2023-12-15T14:38:14.392Z INFO initializing dbft {"height": 1563, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:14.393Z debug frostfs-node/morph.go:229 new block {"index": 1562} -2023-12-15T14:38:14.908Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1562, "blockHeight": 1562, "took": "4.984995ms"} -2023-12-15T14:38:15.391Z INFO sending PrepareRequest {"height": 1563, "view": 0} -2023-12-15T14:38:15.392Z INFO sending Commit {"height": 1563, "view": 0} -2023-12-15T14:38:15.392Z INFO approving block {"height": 1563, "hash": "aae546a09a1ed72c8a669f92d7c095f2ff6051932bfc643c76a5727330c9b1dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f897a76062292c34537a0cdbb4d38f07c7283690f52b148c21bf56737aaf270a"} -2023-12-15T14:38:15.393Z INFO initializing dbft {"height": 1564, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:15.394Z debug frostfs-node/morph.go:229 new block {"index": 1563} -2023-12-15T14:38:15.908Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1563, "blockHeight": 1563, "took": "3.957286ms"} -2023-12-15T14:38:16.393Z INFO sending PrepareRequest {"height": 1564, "view": 0} -2023-12-15T14:38:16.393Z INFO sending Commit {"height": 1564, "view": 0} -2023-12-15T14:38:16.394Z INFO approving block {"height": 1564, "hash": "ccff5893ecc89fddf287f4d68bc88853891a2b655573b46162df6a489a571ca1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aae546a09a1ed72c8a669f92d7c095f2ff6051932bfc643c76a5727330c9b1dc"} -2023-12-15T14:38:16.395Z INFO initializing dbft {"height": 1565, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:16.396Z debug frostfs-node/morph.go:229 new block {"index": 1564} -2023-12-15T14:38:16.908Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1564, "blockHeight": 1564, "took": "3.930294ms"} -2023-12-15T14:38:17.394Z INFO sending PrepareRequest {"height": 1565, "view": 0} -2023-12-15T14:38:17.394Z INFO sending Commit {"height": 1565, "view": 0} -2023-12-15T14:38:17.395Z INFO approving block {"height": 1565, "hash": "e6b7ed6d9a0e5ccab278db210e98fbaf731725780df38fffc51f718c48076180", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ccff5893ecc89fddf287f4d68bc88853891a2b655573b46162df6a489a571ca1"} -2023-12-15T14:38:17.395Z INFO initializing dbft {"height": 1566, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:17.396Z debug frostfs-node/morph.go:229 new block {"index": 1565} -2023-12-15T14:38:17.909Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1565, "blockHeight": 1565, "took": "3.900027ms"} -2023-12-15T14:38:18.396Z INFO sending PrepareRequest {"height": 1566, "view": 0} -2023-12-15T14:38:18.397Z INFO sending Commit {"height": 1566, "view": 0} -2023-12-15T14:38:18.397Z INFO approving block {"height": 1566, "hash": "c13c1712b9eebd4b323f787f5a1a8017a9f5a8c79653a2f32410a64c705644f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6b7ed6d9a0e5ccab278db210e98fbaf731725780df38fffc51f718c48076180"} -2023-12-15T14:38:18.398Z INFO initializing dbft {"height": 1567, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:18.399Z debug frostfs-node/morph.go:229 new block {"index": 1566} -2023-12-15T14:38:18.403Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 7, "iteration": 1, "error": "no data for 0 iteration in 7 epoch for consumers's trusts"} -2023-12-15T14:38:18.405Z info settlement/calls.go:61 start basic income collection {"epoch": 7} -2023-12-15T14:38:18.912Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1566, "blockHeight": 1566, "took": "6.685927ms"} -2023-12-15T14:38:19.398Z INFO sending PrepareRequest {"height": 1567, "view": 0} -2023-12-15T14:38:19.398Z INFO sending Commit {"height": 1567, "view": 0} -2023-12-15T14:38:19.398Z INFO approving block {"height": 1567, "hash": "a43a054108e20f4a3e7d564c9925b635c219278221753a3b95268e816d26db48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c13c1712b9eebd4b323f787f5a1a8017a9f5a8c79653a2f32410a64c705644f7"} -2023-12-15T14:38:19.399Z INFO initializing dbft {"height": 1568, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:19.400Z debug frostfs-node/morph.go:229 new block {"index": 1567} -2023-12-15T14:38:19.402Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:38:19.404Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:38:19.404Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:38:19.911Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1567, "blockHeight": 1567, "took": "5.475643ms"} -2023-12-15T14:38:20.399Z INFO sending PrepareRequest {"height": 1568, "view": 0} -2023-12-15T14:38:20.399Z INFO sending Commit {"height": 1568, "view": 0} -2023-12-15T14:38:20.400Z INFO approving block {"height": 1568, "hash": "fd924eff458cf8dfe746de6676cb9db55f88d89931ad7aa207c6ef718611914e", "tx_count": 2, "merkle": "882e764bf7849398bbd936143b43ee7c5767b5171eb320fb14783eec2d525015", "prev": "a43a054108e20f4a3e7d564c9925b635c219278221753a3b95268e816d26db48"} -2023-12-15T14:38:20.401Z INFO runtime log {"tx": "344112e0abdb8d9de970318c45bbbe8c4e6ee6e8353a6a7ddb7203d2dc624afc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:38:20.401Z INFO runtime log {"tx": "344112e0abdb8d9de970318c45bbbe8c4e6ee6e8353a6a7ddb7203d2dc624afc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:38:20.402Z INFO initializing dbft {"height": 1569, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:20.405Z debug frostfs-node/morph.go:229 new block {"index": 1568} -2023-12-15T14:38:20.911Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1568, "blockHeight": 1568, "took": "4.245465ms"} -2023-12-15T14:38:21.400Z INFO sending PrepareRequest {"height": 1569, "view": 0} -2023-12-15T14:38:21.401Z INFO sending Commit {"height": 1569, "view": 0} -2023-12-15T14:38:21.401Z INFO approving block {"height": 1569, "hash": "0cba7f03341cfab33f74498d000b24db86bf811ab934a80e58ab931cb33d36c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd924eff458cf8dfe746de6676cb9db55f88d89931ad7aa207c6ef718611914e"} -2023-12-15T14:38:21.402Z INFO initializing dbft {"height": 1570, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:21.402Z debug frostfs-node/morph.go:229 new block {"index": 1569} -2023-12-15T14:38:21.910Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1569, "blockHeight": 1569, "took": "3.111902ms"} -2023-12-15T14:38:22.402Z INFO sending PrepareRequest {"height": 1570, "view": 0} -2023-12-15T14:38:22.403Z INFO sending Commit {"height": 1570, "view": 0} -2023-12-15T14:38:22.403Z INFO approving block {"height": 1570, "hash": "581703d15b0f2b1f5a168d5a30e31314ca820093a08fa00cf9e62b618a3fd7fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cba7f03341cfab33f74498d000b24db86bf811ab934a80e58ab931cb33d36c2"} -2023-12-15T14:38:22.404Z INFO initializing dbft {"height": 1571, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:22.405Z debug frostfs-node/morph.go:229 new block {"index": 1570} -2023-12-15T14:38:22.911Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1570, "blockHeight": 1570, "took": "3.349517ms"} -2023-12-15T14:38:23.404Z INFO sending PrepareRequest {"height": 1571, "view": 0} -2023-12-15T14:38:23.404Z INFO sending Commit {"height": 1571, "view": 0} -2023-12-15T14:38:23.405Z INFO approving block {"height": 1571, "hash": "b13bc9973903d45633f77d963be3f001ca4821465c716159271b178b1651435b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "581703d15b0f2b1f5a168d5a30e31314ca820093a08fa00cf9e62b618a3fd7fe"} -2023-12-15T14:38:23.406Z INFO initializing dbft {"height": 1572, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:23.406Z debug frostfs-node/morph.go:229 new block {"index": 1571} -2023-12-15T14:38:23.911Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1571, "blockHeight": 1571, "took": "3.007889ms"} -2023-12-15T14:38:24.405Z INFO sending PrepareRequest {"height": 1572, "view": 0} -2023-12-15T14:38:24.405Z INFO sending Commit {"height": 1572, "view": 0} -2023-12-15T14:38:24.405Z INFO approving block {"height": 1572, "hash": "94086de4c32762b7b9487240e60819af423211f4daca13ba355b97c69f0bb7e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b13bc9973903d45633f77d963be3f001ca4821465c716159271b178b1651435b"} -2023-12-15T14:38:24.406Z INFO initializing dbft {"height": 1573, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:24.407Z debug frostfs-node/morph.go:229 new block {"index": 1572} -2023-12-15T14:38:24.913Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1572, "blockHeight": 1572, "took": "4.783186ms"} -2023-12-15T14:38:25.407Z INFO sending PrepareRequest {"height": 1573, "view": 0} -2023-12-15T14:38:25.407Z INFO sending Commit {"height": 1573, "view": 0} -2023-12-15T14:38:25.408Z INFO approving block {"height": 1573, "hash": "af00ccd653db0f26e6b4d5322adb5954ab99a2eb1dc0b9bd2720e7be2934dbfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94086de4c32762b7b9487240e60819af423211f4daca13ba355b97c69f0bb7e1"} -2023-12-15T14:38:25.409Z INFO initializing dbft {"height": 1574, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:25.410Z debug frostfs-node/morph.go:229 new block {"index": 1573} -2023-12-15T14:38:25.912Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1573, "blockHeight": 1573, "took": "2.783181ms"} -2023-12-15T14:38:26.408Z INFO sending PrepareRequest {"height": 1574, "view": 0} -2023-12-15T14:38:26.408Z INFO sending Commit {"height": 1574, "view": 0} -2023-12-15T14:38:26.409Z INFO approving block {"height": 1574, "hash": "052a09ee9b15945b5dc3f9c0bcb65e60c30fbbc5e05970d835516bb248c8bbdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af00ccd653db0f26e6b4d5322adb5954ab99a2eb1dc0b9bd2720e7be2934dbfe"} -2023-12-15T14:38:26.409Z INFO initializing dbft {"height": 1575, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:26.410Z debug frostfs-node/morph.go:229 new block {"index": 1574} -2023-12-15T14:38:26.915Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1574, "blockHeight": 1574, "took": "4.878033ms"} -2023-12-15T14:38:27.409Z INFO sending PrepareRequest {"height": 1575, "view": 0} -2023-12-15T14:38:27.410Z INFO sending Commit {"height": 1575, "view": 0} -2023-12-15T14:38:27.410Z INFO approving block {"height": 1575, "hash": "720f4629c600fa5ad07e7f3d710dbd445eb919a6bd71ed38124c03c84634184d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "052a09ee9b15945b5dc3f9c0bcb65e60c30fbbc5e05970d835516bb248c8bbdf"} -2023-12-15T14:38:27.411Z INFO initializing dbft {"height": 1576, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:27.411Z debug frostfs-node/morph.go:229 new block {"index": 1575} -2023-12-15T14:38:27.915Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1575, "blockHeight": 1575, "took": "3.53794ms"} -2023-12-15T14:38:28.411Z INFO sending PrepareRequest {"height": 1576, "view": 0} -2023-12-15T14:38:28.411Z INFO sending Commit {"height": 1576, "view": 0} -2023-12-15T14:38:28.411Z INFO approving block {"height": 1576, "hash": "2475d5dd42721602fd1a89a9f85d9ed4de8f6e78b6f820556a3bfb6deff58ed6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "720f4629c600fa5ad07e7f3d710dbd445eb919a6bd71ed38124c03c84634184d"} -2023-12-15T14:38:28.412Z INFO initializing dbft {"height": 1577, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:28.413Z debug frostfs-node/morph.go:229 new block {"index": 1576} -2023-12-15T14:38:28.917Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1576, "blockHeight": 1576, "took": "4.581794ms"} -2023-12-15T14:38:29.412Z INFO sending PrepareRequest {"height": 1577, "view": 0} -2023-12-15T14:38:29.413Z INFO sending Commit {"height": 1577, "view": 0} -2023-12-15T14:38:29.413Z INFO approving block {"height": 1577, "hash": "e57644833f90c039bba3e6f63b6545ac8e8b426302ba1bdb193fdef39ab7987e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2475d5dd42721602fd1a89a9f85d9ed4de8f6e78b6f820556a3bfb6deff58ed6"} -2023-12-15T14:38:29.414Z INFO initializing dbft {"height": 1578, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:29.414Z debug frostfs-node/morph.go:229 new block {"index": 1577} -2023-12-15T14:38:29.916Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1577, "blockHeight": 1577, "took": "3.128461ms"} -2023-12-15T14:38:30.414Z INFO sending PrepareRequest {"height": 1578, "view": 0} -2023-12-15T14:38:30.414Z INFO sending Commit {"height": 1578, "view": 0} -2023-12-15T14:38:30.415Z INFO approving block {"height": 1578, "hash": "644da049e32323b6c5f88debde50f99533ebe39dcd9f9ea81b43df7e28f13faf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e57644833f90c039bba3e6f63b6545ac8e8b426302ba1bdb193fdef39ab7987e"} -2023-12-15T14:38:30.417Z INFO initializing dbft {"height": 1579, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:30.417Z debug frostfs-node/morph.go:229 new block {"index": 1578} -2023-12-15T14:38:30.917Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1578, "blockHeight": 1578, "took": "3.669617ms"} -2023-12-15T14:38:31.416Z INFO sending PrepareRequest {"height": 1579, "view": 0} -2023-12-15T14:38:31.416Z INFO sending Commit {"height": 1579, "view": 0} -2023-12-15T14:38:31.416Z INFO approving block {"height": 1579, "hash": "c0b2d9b8a1f5f1c070fcc17a844c3ff319d1eb491d64367f44f5fca8321aea03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "644da049e32323b6c5f88debde50f99533ebe39dcd9f9ea81b43df7e28f13faf"} -2023-12-15T14:38:31.417Z INFO initializing dbft {"height": 1580, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:31.418Z debug frostfs-node/morph.go:229 new block {"index": 1579} -2023-12-15T14:38:31.918Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1579, "blockHeight": 1579, "took": "4.45981ms"} -2023-12-15T14:38:32.417Z INFO sending PrepareRequest {"height": 1580, "view": 0} -2023-12-15T14:38:32.417Z INFO sending Commit {"height": 1580, "view": 0} -2023-12-15T14:38:32.418Z INFO approving block {"height": 1580, "hash": "8a8930bd096593b6c116667c34b228a3ca7ac105ba3a106892a293ea70063da1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0b2d9b8a1f5f1c070fcc17a844c3ff319d1eb491d64367f44f5fca8321aea03"} -2023-12-15T14:38:32.419Z INFO initializing dbft {"height": 1581, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:32.420Z debug frostfs-node/morph.go:229 new block {"index": 1580} -2023-12-15T14:38:32.917Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1580, "blockHeight": 1580, "took": "2.802511ms"} -2023-12-15T14:38:33.418Z INFO sending PrepareRequest {"height": 1581, "view": 0} -2023-12-15T14:38:33.419Z INFO sending Commit {"height": 1581, "view": 0} -2023-12-15T14:38:33.419Z INFO approving block {"height": 1581, "hash": "04e877f5547729b87860d0fd655f68e2503644169ffcbc1d1d7c8dcde86d8b27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a8930bd096593b6c116667c34b228a3ca7ac105ba3a106892a293ea70063da1"} -2023-12-15T14:38:33.420Z INFO initializing dbft {"height": 1582, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:33.420Z debug frostfs-node/morph.go:229 new block {"index": 1581} -2023-12-15T14:38:33.919Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1581, "blockHeight": 1581, "took": "3.995519ms"} -2023-12-15T14:38:34.420Z INFO sending PrepareRequest {"height": 1582, "view": 0} -2023-12-15T14:38:34.420Z INFO sending Commit {"height": 1582, "view": 0} -2023-12-15T14:38:34.420Z INFO approving block {"height": 1582, "hash": "4217047a0851f17f539c27061d1c42aab8c8963c69ff4d8cfea878153e115508", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04e877f5547729b87860d0fd655f68e2503644169ffcbc1d1d7c8dcde86d8b27"} -2023-12-15T14:38:34.421Z INFO initializing dbft {"height": 1583, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:34.421Z debug frostfs-node/morph.go:229 new block {"index": 1582} -2023-12-15T14:38:34.918Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1582, "blockHeight": 1582, "took": "3.06247ms"} -2023-12-15T14:38:35.422Z INFO sending PrepareRequest {"height": 1583, "view": 0} -2023-12-15T14:38:35.422Z INFO sending Commit {"height": 1583, "view": 0} -2023-12-15T14:38:35.422Z INFO approving block {"height": 1583, "hash": "cfd216cf41b2279ed4b7ae4ee15f18e58e6ef3edba846f303f83f0e0e906885e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4217047a0851f17f539c27061d1c42aab8c8963c69ff4d8cfea878153e115508"} -2023-12-15T14:38:35.423Z INFO initializing dbft {"height": 1584, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:35.424Z debug frostfs-node/morph.go:229 new block {"index": 1583} -2023-12-15T14:38:35.920Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1583, "blockHeight": 1583, "took": "3.825718ms"} -2023-12-15T14:38:36.423Z INFO sending PrepareRequest {"height": 1584, "view": 0} -2023-12-15T14:38:36.423Z INFO sending Commit {"height": 1584, "view": 0} -2023-12-15T14:38:36.423Z INFO approving block {"height": 1584, "hash": "b937b9d33551099d2f7f55886b8f82a23b6c1e42734aa174c6f59c0dd173fa3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfd216cf41b2279ed4b7ae4ee15f18e58e6ef3edba846f303f83f0e0e906885e"} -2023-12-15T14:38:36.424Z INFO initializing dbft {"height": 1585, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:36.425Z debug frostfs-node/morph.go:229 new block {"index": 1584} -2023-12-15T14:38:36.920Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1584, "blockHeight": 1584, "took": "3.604105ms"} -2023-12-15T14:38:37.424Z INFO sending PrepareRequest {"height": 1585, "view": 0} -2023-12-15T14:38:37.425Z INFO sending Commit {"height": 1585, "view": 0} -2023-12-15T14:38:37.425Z INFO approving block {"height": 1585, "hash": "ab23afce656454db206a2fe76c595e98edfe06c1f165b4de44e49725e6c565b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b937b9d33551099d2f7f55886b8f82a23b6c1e42734aa174c6f59c0dd173fa3d"} -2023-12-15T14:38:37.426Z INFO initializing dbft {"height": 1586, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:37.426Z debug frostfs-node/morph.go:229 new block {"index": 1585} -2023-12-15T14:38:37.920Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1585, "blockHeight": 1585, "took": "2.878164ms"} -2023-12-15T14:38:38.426Z INFO sending PrepareRequest {"height": 1586, "view": 0} -2023-12-15T14:38:38.427Z INFO sending Commit {"height": 1586, "view": 0} -2023-12-15T14:38:38.427Z INFO approving block {"height": 1586, "hash": "0f1e6facb6006a4eb2e6709a1b1a76d5ca5bbe969c248a4a3102710e64a89566", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab23afce656454db206a2fe76c595e98edfe06c1f165b4de44e49725e6c565b5"} -2023-12-15T14:38:38.429Z INFO initializing dbft {"height": 1587, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:38.430Z debug frostfs-node/morph.go:229 new block {"index": 1586} -2023-12-15T14:38:38.924Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1586, "blockHeight": 1586, "took": "6.089419ms"} -2023-12-15T14:38:39.429Z INFO sending PrepareRequest {"height": 1587, "view": 0} -2023-12-15T14:38:39.429Z INFO sending Commit {"height": 1587, "view": 0} -2023-12-15T14:38:39.429Z INFO approving block {"height": 1587, "hash": "cdbc84a8be140558b5a522e2985575f2fe29956b3def0dfd1d20d8b36df97ff3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f1e6facb6006a4eb2e6709a1b1a76d5ca5bbe969c248a4a3102710e64a89566"} -2023-12-15T14:38:39.430Z INFO initializing dbft {"height": 1588, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:39.431Z debug frostfs-node/morph.go:229 new block {"index": 1587} -2023-12-15T14:38:39.922Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1587, "blockHeight": 1587, "took": "4.039695ms"} -2023-12-15T14:38:40.431Z INFO sending PrepareRequest {"height": 1588, "view": 0} -2023-12-15T14:38:40.431Z INFO sending Commit {"height": 1588, "view": 0} -2023-12-15T14:38:40.432Z INFO approving block {"height": 1588, "hash": "982375c2afb0fb12cf45fa0208c95cffdbc071ad1763f9e0f9ac173c51f6455d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdbc84a8be140558b5a522e2985575f2fe29956b3def0dfd1d20d8b36df97ff3"} -2023-12-15T14:38:40.433Z INFO initializing dbft {"height": 1589, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:40.433Z debug frostfs-node/morph.go:229 new block {"index": 1588} -2023-12-15T14:38:40.922Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1588, "blockHeight": 1588, "took": "2.780158ms"} -2023-12-15T14:38:41.432Z INFO sending PrepareRequest {"height": 1589, "view": 0} -2023-12-15T14:38:41.433Z INFO sending Commit {"height": 1589, "view": 0} -2023-12-15T14:38:41.433Z INFO approving block {"height": 1589, "hash": "850fe0df7c682501443686314bf1dc1848e389292818786c456f631ed0adaacf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "982375c2afb0fb12cf45fa0208c95cffdbc071ad1763f9e0f9ac173c51f6455d"} -2023-12-15T14:38:41.434Z INFO initializing dbft {"height": 1590, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:41.434Z debug frostfs-node/morph.go:229 new block {"index": 1589} -2023-12-15T14:38:41.922Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1589, "blockHeight": 1589, "took": "2.670475ms"} -2023-12-15T14:38:42.434Z INFO sending PrepareRequest {"height": 1590, "view": 0} -2023-12-15T14:38:42.435Z INFO sending Commit {"height": 1590, "view": 0} -2023-12-15T14:38:42.435Z INFO approving block {"height": 1590, "hash": "10ad642d0755dc47e85c5069602e8b04ae21aa11b6c376dab75c30edf34449ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "850fe0df7c682501443686314bf1dc1848e389292818786c456f631ed0adaacf"} -2023-12-15T14:38:42.436Z INFO initializing dbft {"height": 1591, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:42.437Z debug frostfs-node/morph.go:229 new block {"index": 1590} -2023-12-15T14:38:42.925Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1590, "blockHeight": 1590, "took": "4.378175ms"} -2023-12-15T14:38:43.437Z INFO sending PrepareRequest {"height": 1591, "view": 0} -2023-12-15T14:38:43.437Z INFO sending Commit {"height": 1591, "view": 0} -2023-12-15T14:38:43.437Z INFO approving block {"height": 1591, "hash": "8c391cf751ca2024df1887ae66428cb4729fa1a489ee222c24c678b9624b745c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10ad642d0755dc47e85c5069602e8b04ae21aa11b6c376dab75c30edf34449ae"} -2023-12-15T14:38:43.439Z INFO initializing dbft {"height": 1592, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:43.439Z debug frostfs-node/morph.go:229 new block {"index": 1591} -2023-12-15T14:38:43.927Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1591, "blockHeight": 1591, "took": "6.064095ms"} -2023-12-15T14:38:44.438Z INFO sending PrepareRequest {"height": 1592, "view": 0} -2023-12-15T14:38:44.438Z INFO sending Commit {"height": 1592, "view": 0} -2023-12-15T14:38:44.438Z INFO approving block {"height": 1592, "hash": "8fb8e22779edd7f7f4fd91d915bc14531b0211a1d009e5188383ea66da9dc431", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c391cf751ca2024df1887ae66428cb4729fa1a489ee222c24c678b9624b745c"} -2023-12-15T14:38:44.440Z INFO initializing dbft {"height": 1593, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:44.441Z debug frostfs-node/morph.go:229 new block {"index": 1592} -2023-12-15T14:38:44.925Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1592, "blockHeight": 1592, "took": "4.067689ms"} -2023-12-15T14:38:45.440Z INFO sending PrepareRequest {"height": 1593, "view": 0} -2023-12-15T14:38:45.440Z INFO sending Commit {"height": 1593, "view": 0} -2023-12-15T14:38:45.440Z INFO approving block {"height": 1593, "hash": "4dc06ffe96a7d36db7dd42f59f00f379ad7addb34551666106da65314398a165", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fb8e22779edd7f7f4fd91d915bc14531b0211a1d009e5188383ea66da9dc431"} -2023-12-15T14:38:45.442Z INFO initializing dbft {"height": 1594, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:45.442Z debug frostfs-node/morph.go:229 new block {"index": 1593} -2023-12-15T14:38:45.927Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1593, "blockHeight": 1593, "took": "5.395847ms"} -2023-12-15T14:38:46.441Z INFO sending PrepareRequest {"height": 1594, "view": 0} -2023-12-15T14:38:46.441Z INFO sending Commit {"height": 1594, "view": 0} -2023-12-15T14:38:46.441Z INFO approving block {"height": 1594, "hash": "c0886628f7ccdf2d00c422f0b6a7a39ca0b1d8283e5fd6728fd733a994d27762", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4dc06ffe96a7d36db7dd42f59f00f379ad7addb34551666106da65314398a165"} -2023-12-15T14:38:46.442Z INFO initializing dbft {"height": 1595, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:46.443Z debug frostfs-node/morph.go:229 new block {"index": 1594} -2023-12-15T14:38:46.926Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1594, "blockHeight": 1594, "took": "4.011377ms"} -2023-12-15T14:38:47.442Z INFO sending PrepareRequest {"height": 1595, "view": 0} -2023-12-15T14:38:47.443Z INFO sending Commit {"height": 1595, "view": 0} -2023-12-15T14:38:47.443Z INFO approving block {"height": 1595, "hash": "589813049b87591afc399142c465b139d6c2b5a2dd254695452e75c3fba37d1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0886628f7ccdf2d00c422f0b6a7a39ca0b1d8283e5fd6728fd733a994d27762"} -2023-12-15T14:38:47.444Z INFO initializing dbft {"height": 1596, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:47.445Z debug frostfs-node/morph.go:229 new block {"index": 1595} -2023-12-15T14:38:47.929Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1595, "blockHeight": 1595, "took": "6.064616ms"} -2023-12-15T14:38:48.444Z INFO sending PrepareRequest {"height": 1596, "view": 0} -2023-12-15T14:38:48.444Z INFO sending Commit {"height": 1596, "view": 0} -2023-12-15T14:38:48.444Z INFO approving block {"height": 1596, "hash": "8657cb32d7f1eb8b988cacaddae8575962cf358d6aec76c9df89834b2bdcf748", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "589813049b87591afc399142c465b139d6c2b5a2dd254695452e75c3fba37d1a"} -2023-12-15T14:38:48.445Z INFO initializing dbft {"height": 1597, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:48.446Z debug frostfs-node/morph.go:229 new block {"index": 1596} -2023-12-15T14:38:48.926Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1596, "blockHeight": 1596, "took": "2.975036ms"} -2023-12-15T14:38:49.445Z INFO sending PrepareRequest {"height": 1597, "view": 0} -2023-12-15T14:38:49.445Z INFO sending Commit {"height": 1597, "view": 0} -2023-12-15T14:38:49.445Z INFO approving block {"height": 1597, "hash": "8783c40ea55af92a4c3a57808d51919a232c7c6e7bc000dd8c2bc6a2f07a35ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8657cb32d7f1eb8b988cacaddae8575962cf358d6aec76c9df89834b2bdcf748"} -2023-12-15T14:38:49.446Z INFO initializing dbft {"height": 1598, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:49.446Z debug frostfs-node/morph.go:229 new block {"index": 1597} -2023-12-15T14:38:49.927Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1597, "blockHeight": 1597, "took": "3.971722ms"} -2023-12-15T14:38:50.447Z INFO sending PrepareRequest {"height": 1598, "view": 0} -2023-12-15T14:38:50.447Z INFO sending Commit {"height": 1598, "view": 0} -2023-12-15T14:38:50.447Z INFO approving block {"height": 1598, "hash": "2f865d79382b44b224d7d65d81af914657417f402481192ff932635710c5fa4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8783c40ea55af92a4c3a57808d51919a232c7c6e7bc000dd8c2bc6a2f07a35ca"} -2023-12-15T14:38:50.448Z INFO initializing dbft {"height": 1599, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:50.449Z debug frostfs-node/morph.go:229 new block {"index": 1598} -2023-12-15T14:38:50.926Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1598, "blockHeight": 1598, "took": "2.526533ms"} -2023-12-15T14:38:51.448Z INFO sending PrepareRequest {"height": 1599, "view": 0} -2023-12-15T14:38:51.449Z INFO sending Commit {"height": 1599, "view": 0} -2023-12-15T14:38:51.449Z INFO approving block {"height": 1599, "hash": "955ff256c112d251997880e482c37fea9526fcaea5858a47cdc38cc3545a020b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f865d79382b44b224d7d65d81af914657417f402481192ff932635710c5fa4f"} -2023-12-15T14:38:51.450Z INFO initializing dbft {"height": 1600, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:51.451Z debug frostfs-node/morph.go:229 new block {"index": 1599} -2023-12-15T14:38:51.931Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1599, "blockHeight": 1599, "took": "6.414916ms"} -2023-12-15T14:38:52.449Z INFO sending PrepareRequest {"height": 1600, "view": 0} -2023-12-15T14:38:52.450Z INFO sending Commit {"height": 1600, "view": 0} -2023-12-15T14:38:52.450Z INFO approving block {"height": 1600, "hash": "c132df59b4d29e75434858b69422d7f63b0ede6f7faac36ee882bccab2681a7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "955ff256c112d251997880e482c37fea9526fcaea5858a47cdc38cc3545a020b"} -2023-12-15T14:38:52.450Z INFO initializing dbft {"height": 1601, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:52.451Z debug frostfs-node/morph.go:229 new block {"index": 1600} -2023-12-15T14:38:52.929Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1600, "blockHeight": 1600, "took": "4.271599ms"} -2023-12-15T14:38:53.451Z INFO sending PrepareRequest {"height": 1601, "view": 0} -2023-12-15T14:38:53.451Z INFO sending Commit {"height": 1601, "view": 0} -2023-12-15T14:38:53.452Z INFO approving block {"height": 1601, "hash": "185e883ddaf0e0307571aefcee9c8a0a31be1d3ae97d325ca4fae7257c0fdbc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c132df59b4d29e75434858b69422d7f63b0ede6f7faac36ee882bccab2681a7f"} -2023-12-15T14:38:53.453Z INFO initializing dbft {"height": 1602, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:53.453Z debug frostfs-node/morph.go:229 new block {"index": 1601} -2023-12-15T14:38:53.930Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1601, "blockHeight": 1601, "took": "4.192586ms"} -2023-12-15T14:38:54.453Z INFO sending PrepareRequest {"height": 1602, "view": 0} -2023-12-15T14:38:54.453Z INFO sending Commit {"height": 1602, "view": 0} -2023-12-15T14:38:54.453Z INFO approving block {"height": 1602, "hash": "78d88f9f08703783b8e25fcc54c8ac8b166641f748120ba9abacbb4ca23d6aa5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "185e883ddaf0e0307571aefcee9c8a0a31be1d3ae97d325ca4fae7257c0fdbc5"} -2023-12-15T14:38:54.454Z INFO initializing dbft {"height": 1603, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:54.455Z debug frostfs-node/morph.go:229 new block {"index": 1602} -2023-12-15T14:38:54.932Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1602, "blockHeight": 1602, "took": "5.865638ms"} -2023-12-15T14:38:55.454Z INFO sending PrepareRequest {"height": 1603, "view": 0} -2023-12-15T14:38:55.455Z INFO sending Commit {"height": 1603, "view": 0} -2023-12-15T14:38:55.455Z INFO approving block {"height": 1603, "hash": "6099fb06672b475179c542d4693cd72a0ec89d26062a7b18b300d7dcb10a69cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78d88f9f08703783b8e25fcc54c8ac8b166641f748120ba9abacbb4ca23d6aa5"} -2023-12-15T14:38:55.457Z INFO initializing dbft {"height": 1604, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:55.457Z debug frostfs-node/morph.go:229 new block {"index": 1603} -2023-12-15T14:38:55.931Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1603, "blockHeight": 1603, "took": "4.509509ms"} -2023-12-15T14:38:56.457Z INFO sending PrepareRequest {"height": 1604, "view": 0} -2023-12-15T14:38:56.457Z INFO sending Commit {"height": 1604, "view": 0} -2023-12-15T14:38:56.457Z INFO approving block {"height": 1604, "hash": "950059372b6bc657ee2e3c933a447165e8e3058cce864c1d23c55d08edfd1c5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6099fb06672b475179c542d4693cd72a0ec89d26062a7b18b300d7dcb10a69cd"} -2023-12-15T14:38:56.459Z INFO initializing dbft {"height": 1605, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:56.459Z debug frostfs-node/morph.go:229 new block {"index": 1604} -2023-12-15T14:38:56.931Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1604, "blockHeight": 1604, "took": "3.653759ms"} -2023-12-15T14:38:57.458Z INFO sending PrepareRequest {"height": 1605, "view": 0} -2023-12-15T14:38:57.459Z INFO sending Commit {"height": 1605, "view": 0} -2023-12-15T14:38:57.459Z INFO approving block {"height": 1605, "hash": "a99ba8b7b728e77c96d6a7ee2edfad2c8c7c59805367199c642a56de583103fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "950059372b6bc657ee2e3c933a447165e8e3058cce864c1d23c55d08edfd1c5b"} -2023-12-15T14:38:57.460Z INFO initializing dbft {"height": 1606, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:57.461Z debug frostfs-node/morph.go:229 new block {"index": 1605} -2023-12-15T14:38:57.934Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1605, "blockHeight": 1605, "took": "5.862961ms"} -2023-12-15T14:38:58.460Z INFO sending PrepareRequest {"height": 1606, "view": 0} -2023-12-15T14:38:58.460Z INFO sending Commit {"height": 1606, "view": 0} -2023-12-15T14:38:58.460Z INFO approving block {"height": 1606, "hash": "e467621fadcb583a6a12b7276c606a49c5dd1771d07cc96f615bbe666189c8c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a99ba8b7b728e77c96d6a7ee2edfad2c8c7c59805367199c642a56de583103fc"} -2023-12-15T14:38:58.461Z INFO initializing dbft {"height": 1607, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:58.462Z debug frostfs-node/morph.go:229 new block {"index": 1606} -2023-12-15T14:38:58.934Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1606, "blockHeight": 1606, "took": "4.631235ms"} -2023-12-15T14:38:59.462Z INFO sending PrepareRequest {"height": 1607, "view": 0} -2023-12-15T14:38:59.462Z INFO sending Commit {"height": 1607, "view": 0} -2023-12-15T14:38:59.462Z INFO approving block {"height": 1607, "hash": "b614e51de92306fbbd9d642deb9efe1b7866221cadfc1b454a4a03c202c6474a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e467621fadcb583a6a12b7276c606a49c5dd1771d07cc96f615bbe666189c8c9"} -2023-12-15T14:38:59.463Z INFO initializing dbft {"height": 1608, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:38:59.464Z debug frostfs-node/morph.go:229 new block {"index": 1607} -2023-12-15T14:38:59.935Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1607, "blockHeight": 1607, "took": "5.318299ms"} -2023-12-15T14:39:00.463Z INFO sending PrepareRequest {"height": 1608, "view": 0} -2023-12-15T14:39:00.463Z INFO sending Commit {"height": 1608, "view": 0} -2023-12-15T14:39:00.464Z INFO approving block {"height": 1608, "hash": "6de9c8ad3a5c4664b047bc087284fe268df69474ad4b2832b54ce5c1fdfea48d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b614e51de92306fbbd9d642deb9efe1b7866221cadfc1b454a4a03c202c6474a"} -2023-12-15T14:39:00.465Z INFO initializing dbft {"height": 1609, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:00.465Z debug frostfs-node/morph.go:229 new block {"index": 1608} -2023-12-15T14:39:00.933Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1608, "blockHeight": 1608, "took": "2.755781ms"} -2023-12-15T14:39:01.464Z INFO sending PrepareRequest {"height": 1609, "view": 0} -2023-12-15T14:39:01.465Z INFO sending Commit {"height": 1609, "view": 0} -2023-12-15T14:39:01.465Z INFO approving block {"height": 1609, "hash": "28c1924e3424a91bf9534cf241fc0b5986edea71bab7dfef15c04986f61a2201", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6de9c8ad3a5c4664b047bc087284fe268df69474ad4b2832b54ce5c1fdfea48d"} -2023-12-15T14:39:01.467Z INFO initializing dbft {"height": 1610, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:01.467Z debug frostfs-node/morph.go:229 new block {"index": 1609} -2023-12-15T14:39:01.933Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1609, "blockHeight": 1609, "took": "2.840994ms"} -2023-12-15T14:39:02.466Z INFO sending PrepareRequest {"height": 1610, "view": 0} -2023-12-15T14:39:02.467Z INFO sending Commit {"height": 1610, "view": 0} -2023-12-15T14:39:02.467Z INFO approving block {"height": 1610, "hash": "37d98b1e2a90857cea1676d8adcb67e9598d3e87ddd58951c46bcf2b24612ab1", "tx_count": 1, "merkle": "278bf8480f2905822872fc311f1e1b858be808b5eb460fe25284853f5fddb186", "prev": "28c1924e3424a91bf9534cf241fc0b5986edea71bab7dfef15c04986f61a2201"} -2023-12-15T14:39:02.469Z INFO initializing dbft {"height": 1611, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:02.469Z debug frostfs-node/morph.go:229 new block {"index": 1610} -2023-12-15T14:39:02.945Z INFO persisted to disk {"blocks": 1, "keys": 46, "headerHeight": 1610, "blockHeight": 1610, "took": "13.512665ms"} -2023-12-15T14:39:03.468Z INFO sending PrepareRequest {"height": 1611, "view": 0} -2023-12-15T14:39:03.468Z INFO sending Commit {"height": 1611, "view": 0} -2023-12-15T14:39:03.468Z INFO approving block {"height": 1611, "hash": "6d876ca2c31f80d56a71f01505a49db8e0d0299936ea78212141aef3779d86ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37d98b1e2a90857cea1676d8adcb67e9598d3e87ddd58951c46bcf2b24612ab1"} -2023-12-15T14:39:03.469Z INFO initializing dbft {"height": 1612, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:03.470Z debug frostfs-node/morph.go:229 new block {"index": 1611} -2023-12-15T14:39:03.936Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1611, "blockHeight": 1611, "took": "4.174423ms"} -2023-12-15T14:39:04.469Z INFO sending PrepareRequest {"height": 1612, "view": 0} -2023-12-15T14:39:04.469Z INFO sending Commit {"height": 1612, "view": 0} -2023-12-15T14:39:04.470Z INFO approving block {"height": 1612, "hash": "a1a7fb06d8c9aec8247dd5c1654a7a2377bc64b8039dfc02fc19a9860024d565", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d876ca2c31f80d56a71f01505a49db8e0d0299936ea78212141aef3779d86ac"} -2023-12-15T14:39:04.470Z INFO initializing dbft {"height": 1613, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:04.471Z debug frostfs-node/morph.go:229 new block {"index": 1612} -2023-12-15T14:39:04.940Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1612, "blockHeight": 1612, "took": "7.275292ms"} -2023-12-15T14:39:05.470Z INFO sending PrepareRequest {"height": 1613, "view": 0} -2023-12-15T14:39:05.470Z INFO sending Commit {"height": 1613, "view": 0} -2023-12-15T14:39:05.470Z INFO approving block {"height": 1613, "hash": "dd8696ab2a5ab229ce956d589848bd7b0f0aaeaaaadeea109c4c4727244f7db8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1a7fb06d8c9aec8247dd5c1654a7a2377bc64b8039dfc02fc19a9860024d565"} -2023-12-15T14:39:05.471Z INFO initializing dbft {"height": 1614, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:05.472Z debug frostfs-node/morph.go:229 new block {"index": 1613} -2023-12-15T14:39:05.937Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1613, "blockHeight": 1613, "took": "3.913111ms"} -2023-12-15T14:39:06.471Z INFO sending PrepareRequest {"height": 1614, "view": 0} -2023-12-15T14:39:06.472Z INFO sending Commit {"height": 1614, "view": 0} -2023-12-15T14:39:06.472Z INFO approving block {"height": 1614, "hash": "582be92a38ba8c9f49211f4db67ea4535a9549af5790a7cb970d1f7e4ccba8cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd8696ab2a5ab229ce956d589848bd7b0f0aaeaaaadeea109c4c4727244f7db8"} -2023-12-15T14:39:06.473Z INFO initializing dbft {"height": 1615, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:06.473Z debug frostfs-node/morph.go:229 new block {"index": 1614} -2023-12-15T14:39:06.939Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1614, "blockHeight": 1614, "took": "4.928915ms"} -2023-12-15T14:39:07.473Z INFO sending PrepareRequest {"height": 1615, "view": 0} -2023-12-15T14:39:07.473Z INFO sending Commit {"height": 1615, "view": 0} -2023-12-15T14:39:07.473Z INFO approving block {"height": 1615, "hash": "41c6201646a2060e49edad386f971c2f52ba9524d12b440f6a053ef7e545da20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "582be92a38ba8c9f49211f4db67ea4535a9549af5790a7cb970d1f7e4ccba8cc"} -2023-12-15T14:39:07.474Z INFO initializing dbft {"height": 1616, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:07.475Z debug frostfs-node/morph.go:229 new block {"index": 1615} -2023-12-15T14:39:07.937Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1615, "blockHeight": 1615, "took": "2.917895ms"} -2023-12-15T14:39:08.475Z INFO sending PrepareRequest {"height": 1616, "view": 0} -2023-12-15T14:39:08.475Z INFO sending Commit {"height": 1616, "view": 0} -2023-12-15T14:39:08.475Z INFO approving block {"height": 1616, "hash": "0438f39040d7afaf3aac236ca695b6073cd3ac56c4af3741e1bf7ccd15456a27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41c6201646a2060e49edad386f971c2f52ba9524d12b440f6a053ef7e545da20"} -2023-12-15T14:39:08.476Z INFO initializing dbft {"height": 1617, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:08.477Z debug frostfs-node/morph.go:229 new block {"index": 1616} -2023-12-15T14:39:08.938Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1616, "blockHeight": 1616, "took": "2.893655ms"} -2023-12-15T14:39:09.476Z INFO sending PrepareRequest {"height": 1617, "view": 0} -2023-12-15T14:39:09.476Z INFO sending Commit {"height": 1617, "view": 0} -2023-12-15T14:39:09.476Z INFO approving block {"height": 1617, "hash": "b39bb1af138baf18b74d60904c1af1e2f4f49f4fc7f2467dd0ec0ff5f3a3dec0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0438f39040d7afaf3aac236ca695b6073cd3ac56c4af3741e1bf7ccd15456a27"} -2023-12-15T14:39:09.477Z INFO initializing dbft {"height": 1618, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:09.478Z debug frostfs-node/morph.go:229 new block {"index": 1617} -2023-12-15T14:39:09.479Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:39:09.482Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:39:09.482Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:39:09.940Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1617, "blockHeight": 1617, "took": "4.55972ms"} -2023-12-15T14:39:10.478Z INFO sending PrepareRequest {"height": 1618, "view": 0} -2023-12-15T14:39:10.478Z INFO sending Commit {"height": 1618, "view": 0} -2023-12-15T14:39:10.479Z INFO approving block {"height": 1618, "hash": "de2682f6f878dc528846d56d84694c8a3f05bafb6018c16eeb0a47d7aec81f5d", "tx_count": 2, "merkle": "469f680ebaf73712c21a4c7c46447cb191fa43797dbd86e8c4af09b526e38941", "prev": "b39bb1af138baf18b74d60904c1af1e2f4f49f4fc7f2467dd0ec0ff5f3a3dec0"} -2023-12-15T14:39:10.480Z INFO runtime log {"tx": "5adbc8b3db78aacf722cc096a9cd86b0f4d24be28026a62a44f95a40edc8bd0d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:39:10.480Z INFO runtime log {"tx": "5adbc8b3db78aacf722cc096a9cd86b0f4d24be28026a62a44f95a40edc8bd0d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:39:10.481Z INFO initializing dbft {"height": 1619, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:10.482Z debug frostfs-node/morph.go:229 new block {"index": 1618} -2023-12-15T14:39:10.942Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1618, "blockHeight": 1618, "took": "5.085458ms"} -2023-12-15T14:39:11.480Z INFO sending PrepareRequest {"height": 1619, "view": 0} -2023-12-15T14:39:11.480Z INFO sending Commit {"height": 1619, "view": 0} -2023-12-15T14:39:11.480Z INFO approving block {"height": 1619, "hash": "2da5dadbac09e52bc0a816efdadaaf424d7551ce462caa63ef59dcd37133b35d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de2682f6f878dc528846d56d84694c8a3f05bafb6018c16eeb0a47d7aec81f5d"} -2023-12-15T14:39:11.481Z INFO initializing dbft {"height": 1620, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:11.482Z debug frostfs-node/morph.go:229 new block {"index": 1619} -2023-12-15T14:39:11.941Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1619, "blockHeight": 1619, "took": "3.987227ms"} -2023-12-15T14:39:12.481Z INFO sending PrepareRequest {"height": 1620, "view": 0} -2023-12-15T14:39:12.481Z INFO sending Commit {"height": 1620, "view": 0} -2023-12-15T14:39:12.481Z INFO approving block {"height": 1620, "hash": "d31b5a1ac9353ce275586a9da6c85d4cda9260ac489710b628f1e45956a302db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2da5dadbac09e52bc0a816efdadaaf424d7551ce462caa63ef59dcd37133b35d"} -2023-12-15T14:39:12.482Z INFO initializing dbft {"height": 1621, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:12.483Z debug frostfs-node/morph.go:229 new block {"index": 1620} -2023-12-15T14:39:12.941Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1620, "blockHeight": 1620, "took": "3.107089ms"} -2023-12-15T14:39:13.483Z INFO sending PrepareRequest {"height": 1621, "view": 0} -2023-12-15T14:39:13.483Z INFO sending Commit {"height": 1621, "view": 0} -2023-12-15T14:39:13.483Z INFO approving block {"height": 1621, "hash": "7ce4d67a09867dd4b2b7f82f3fa753cdf338cc6cf60374667f94d620760e34c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d31b5a1ac9353ce275586a9da6c85d4cda9260ac489710b628f1e45956a302db"} -2023-12-15T14:39:13.484Z INFO initializing dbft {"height": 1622, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:13.485Z debug frostfs-node/morph.go:229 new block {"index": 1621} -2023-12-15T14:39:13.941Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1621, "blockHeight": 1621, "took": "3.260914ms"} -2023-12-15T14:39:14.485Z INFO sending PrepareRequest {"height": 1622, "view": 0} -2023-12-15T14:39:14.485Z INFO sending Commit {"height": 1622, "view": 0} -2023-12-15T14:39:14.485Z INFO approving block {"height": 1622, "hash": "c9ebebe8ed775d772f8bda08c3c51a9bf09ab683dd4d42e424661187ac7d43d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ce4d67a09867dd4b2b7f82f3fa753cdf338cc6cf60374667f94d620760e34c0"} -2023-12-15T14:39:14.488Z INFO initializing dbft {"height": 1623, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:14.488Z debug frostfs-node/morph.go:229 new block {"index": 1622} -2023-12-15T14:39:14.943Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1622, "blockHeight": 1622, "took": "4.370634ms"} -2023-12-15T14:39:15.486Z INFO sending PrepareRequest {"height": 1623, "view": 0} -2023-12-15T14:39:15.487Z INFO sending Commit {"height": 1623, "view": 0} -2023-12-15T14:39:15.487Z INFO approving block {"height": 1623, "hash": "a4184095e37e29aa97fd4a786c9c1ee743483e8de5bba60cd9356f150634b397", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9ebebe8ed775d772f8bda08c3c51a9bf09ab683dd4d42e424661187ac7d43d2"} -2023-12-15T14:39:15.488Z INFO initializing dbft {"height": 1624, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:15.488Z debug frostfs-node/morph.go:229 new block {"index": 1623} -2023-12-15T14:39:15.943Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1623, "blockHeight": 1623, "took": "4.539109ms"} -2023-12-15T14:39:16.488Z INFO sending PrepareRequest {"height": 1624, "view": 0} -2023-12-15T14:39:16.488Z INFO sending Commit {"height": 1624, "view": 0} -2023-12-15T14:39:16.488Z INFO approving block {"height": 1624, "hash": "28a9d58da4b66857d46a57c1202529bb94678810f9474ba623169c3610097368", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4184095e37e29aa97fd4a786c9c1ee743483e8de5bba60cd9356f150634b397"} -2023-12-15T14:39:16.490Z INFO initializing dbft {"height": 1625, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:16.490Z debug frostfs-node/morph.go:229 new block {"index": 1624} -2023-12-15T14:39:16.944Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1624, "blockHeight": 1624, "took": "4.296698ms"} -2023-12-15T14:39:17.489Z INFO sending PrepareRequest {"height": 1625, "view": 0} -2023-12-15T14:39:17.490Z INFO sending Commit {"height": 1625, "view": 0} -2023-12-15T14:39:17.490Z INFO approving block {"height": 1625, "hash": "f93f215e7a6284eca8284e1090d7ae7b9f3f7302ee9be681eac98f13c1ca16d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28a9d58da4b66857d46a57c1202529bb94678810f9474ba623169c3610097368"} -2023-12-15T14:39:17.491Z INFO initializing dbft {"height": 1626, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:17.492Z debug frostfs-node/morph.go:229 new block {"index": 1625} -2023-12-15T14:39:17.943Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1625, "blockHeight": 1625, "took": "3.801738ms"} -2023-12-15T14:39:18.491Z INFO sending PrepareRequest {"height": 1626, "view": 0} -2023-12-15T14:39:18.491Z INFO sending Commit {"height": 1626, "view": 0} -2023-12-15T14:39:18.492Z INFO approving block {"height": 1626, "hash": "43142f091a5eef6497261bafb0dacc86cb63781b3064b04ff45dea0b14467f19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f93f215e7a6284eca8284e1090d7ae7b9f3f7302ee9be681eac98f13c1ca16d9"} -2023-12-15T14:39:18.493Z INFO initializing dbft {"height": 1627, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:18.493Z debug frostfs-node/morph.go:229 new block {"index": 1626} -2023-12-15T14:39:18.495Z info settlement/calls.go:106 start basic income distribution {"epoch": 7} -2023-12-15T14:39:18.496Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 7, "iteration": 2, "error": "no data for 1 iteration in 7 epoch for consumers's trusts"} -2023-12-15T14:39:18.945Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1626, "blockHeight": 1626, "took": "4.178962ms"} -2023-12-15T14:39:19.493Z INFO sending PrepareRequest {"height": 1627, "view": 0} -2023-12-15T14:39:19.493Z INFO sending Commit {"height": 1627, "view": 0} -2023-12-15T14:39:19.493Z INFO approving block {"height": 1627, "hash": "2d81b6a0e0922a629d94db14ecb55dcbde9858ad43a9ae42df58b7cc6be3ff85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43142f091a5eef6497261bafb0dacc86cb63781b3064b04ff45dea0b14467f19"} -2023-12-15T14:39:19.494Z INFO initializing dbft {"height": 1628, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:19.495Z debug frostfs-node/morph.go:229 new block {"index": 1627} -2023-12-15T14:39:19.944Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1627, "blockHeight": 1627, "took": "3.028258ms"} -2023-12-15T14:39:20.494Z INFO sending PrepareRequest {"height": 1628, "view": 0} -2023-12-15T14:39:20.494Z INFO sending Commit {"height": 1628, "view": 0} -2023-12-15T14:39:20.495Z INFO approving block {"height": 1628, "hash": "c49a494c63c727ab808edee3abaacbc5523736f836c794e3ed48fbc8209b42e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d81b6a0e0922a629d94db14ecb55dcbde9858ad43a9ae42df58b7cc6be3ff85"} -2023-12-15T14:39:20.495Z INFO initializing dbft {"height": 1629, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:20.496Z debug frostfs-node/morph.go:229 new block {"index": 1628} -2023-12-15T14:39:20.946Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1628, "blockHeight": 1628, "took": "4.34726ms"} -2023-12-15T14:39:21.496Z INFO sending PrepareRequest {"height": 1629, "view": 0} -2023-12-15T14:39:21.496Z INFO sending Commit {"height": 1629, "view": 0} -2023-12-15T14:39:21.496Z INFO approving block {"height": 1629, "hash": "a964d30c4e3123eb68bdcd8616dad210c0b3cdd479c33405f480a4651f0024e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c49a494c63c727ab808edee3abaacbc5523736f836c794e3ed48fbc8209b42e6"} -2023-12-15T14:39:21.497Z INFO initializing dbft {"height": 1630, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:21.497Z debug frostfs-node/morph.go:229 new block {"index": 1629} -2023-12-15T14:39:21.946Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1629, "blockHeight": 1629, "took": "4.190732ms"} -2023-12-15T14:39:22.498Z INFO sending PrepareRequest {"height": 1630, "view": 0} -2023-12-15T14:39:22.498Z INFO sending Commit {"height": 1630, "view": 0} -2023-12-15T14:39:22.498Z INFO approving block {"height": 1630, "hash": "56dac97c0e4bd7c89212115680876a8b6dcc68aa16f248e906c01b1c1a477361", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a964d30c4e3123eb68bdcd8616dad210c0b3cdd479c33405f480a4651f0024e7"} -2023-12-15T14:39:22.500Z INFO initializing dbft {"height": 1631, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:22.500Z debug frostfs-node/morph.go:229 new block {"index": 1630} -2023-12-15T14:39:22.948Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1630, "blockHeight": 1630, "took": "5.620108ms"} -2023-12-15T14:39:23.499Z INFO sending PrepareRequest {"height": 1631, "view": 0} -2023-12-15T14:39:23.499Z INFO sending Commit {"height": 1631, "view": 0} -2023-12-15T14:39:23.499Z INFO approving block {"height": 1631, "hash": "6d16f264c7685e16b3a5fdced1a13f766ac02ff5743062518920278d9ec83242", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56dac97c0e4bd7c89212115680876a8b6dcc68aa16f248e906c01b1c1a477361"} -2023-12-15T14:39:23.500Z INFO initializing dbft {"height": 1632, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:23.501Z debug frostfs-node/morph.go:229 new block {"index": 1631} -2023-12-15T14:39:23.947Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1631, "blockHeight": 1631, "took": "3.984718ms"} -2023-12-15T14:39:24.500Z INFO sending PrepareRequest {"height": 1632, "view": 0} -2023-12-15T14:39:24.500Z INFO sending Commit {"height": 1632, "view": 0} -2023-12-15T14:39:24.501Z INFO approving block {"height": 1632, "hash": "afa309e5f9ca73ff37fa9f89c28ed5340bd652d0d4d4d9a6b7c788fe780802df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d16f264c7685e16b3a5fdced1a13f766ac02ff5743062518920278d9ec83242"} -2023-12-15T14:39:24.501Z INFO initializing dbft {"height": 1633, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:24.502Z debug frostfs-node/morph.go:229 new block {"index": 1632} -2023-12-15T14:39:24.948Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1632, "blockHeight": 1632, "took": "4.430491ms"} -2023-12-15T14:39:25.502Z INFO sending PrepareRequest {"height": 1633, "view": 0} -2023-12-15T14:39:25.502Z INFO sending Commit {"height": 1633, "view": 0} -2023-12-15T14:39:25.502Z INFO approving block {"height": 1633, "hash": "31ef81e44f7eb36315f03d3569577c1606b273cea87f6adbb2605a4f54d2aa63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afa309e5f9ca73ff37fa9f89c28ed5340bd652d0d4d4d9a6b7c788fe780802df"} -2023-12-15T14:39:25.503Z INFO initializing dbft {"height": 1634, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:25.504Z debug frostfs-node/morph.go:229 new block {"index": 1633} -2023-12-15T14:39:25.947Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1633, "blockHeight": 1633, "took": "3.243694ms"} -2023-12-15T14:39:26.503Z INFO sending PrepareRequest {"height": 1634, "view": 0} -2023-12-15T14:39:26.503Z INFO sending Commit {"height": 1634, "view": 0} -2023-12-15T14:39:26.504Z INFO approving block {"height": 1634, "hash": "586fde097e66bbb12a3fda7a7d3d0a7a289b9bb161943fa559c1e04a5b5e2054", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31ef81e44f7eb36315f03d3569577c1606b273cea87f6adbb2605a4f54d2aa63"} -2023-12-15T14:39:26.505Z INFO initializing dbft {"height": 1635, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:26.506Z debug frostfs-node/morph.go:229 new block {"index": 1634} -2023-12-15T14:39:26.949Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1634, "blockHeight": 1634, "took": "4.83557ms"} -2023-12-15T14:39:27.505Z INFO sending PrepareRequest {"height": 1635, "view": 0} -2023-12-15T14:39:27.506Z INFO sending Commit {"height": 1635, "view": 0} -2023-12-15T14:39:27.506Z INFO approving block {"height": 1635, "hash": "7f91c92a92ed6cec87b6314d22974cde39bd3fe2cd7c09aa1968b70dea11fdb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "586fde097e66bbb12a3fda7a7d3d0a7a289b9bb161943fa559c1e04a5b5e2054"} -2023-12-15T14:39:27.507Z INFO initializing dbft {"height": 1636, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:27.508Z debug frostfs-node/morph.go:229 new block {"index": 1635} -2023-12-15T14:39:27.948Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1635, "blockHeight": 1635, "took": "2.859574ms"} -2023-12-15T14:39:28.508Z INFO sending PrepareRequest {"height": 1636, "view": 0} -2023-12-15T14:39:28.508Z INFO sending Commit {"height": 1636, "view": 0} -2023-12-15T14:39:28.509Z INFO approving block {"height": 1636, "hash": "a86c50cea30d19f8b0b42f549a5951780107f92e01aa484f44152425446c01c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f91c92a92ed6cec87b6314d22974cde39bd3fe2cd7c09aa1968b70dea11fdb2"} -2023-12-15T14:39:28.510Z INFO initializing dbft {"height": 1637, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:28.510Z debug frostfs-node/morph.go:229 new block {"index": 1636} -2023-12-15T14:39:28.952Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1636, "blockHeight": 1636, "took": "6.005653ms"} -2023-12-15T14:39:29.509Z INFO sending PrepareRequest {"height": 1637, "view": 0} -2023-12-15T14:39:29.509Z INFO sending Commit {"height": 1637, "view": 0} -2023-12-15T14:39:29.510Z INFO approving block {"height": 1637, "hash": "8125c48acd930321eb3609ee343d21d178b165ba242734c75df4e7181b6e4b04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a86c50cea30d19f8b0b42f549a5951780107f92e01aa484f44152425446c01c2"} -2023-12-15T14:39:29.511Z INFO initializing dbft {"height": 1638, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:29.512Z debug frostfs-node/morph.go:229 new block {"index": 1637} -2023-12-15T14:39:29.949Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1637, "blockHeight": 1637, "took": "2.943846ms"} -2023-12-15T14:39:30.511Z INFO sending PrepareRequest {"height": 1638, "view": 0} -2023-12-15T14:39:30.511Z INFO sending Commit {"height": 1638, "view": 0} -2023-12-15T14:39:30.511Z INFO approving block {"height": 1638, "hash": "31b560eaaf9d59f8a4c5d683731ed10a53c7e2168c6c96a1f2ba9d322bc8ddbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8125c48acd930321eb3609ee343d21d178b165ba242734c75df4e7181b6e4b04"} -2023-12-15T14:39:30.512Z INFO initializing dbft {"height": 1639, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:30.513Z debug frostfs-node/morph.go:229 new block {"index": 1638} -2023-12-15T14:39:30.953Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1638, "blockHeight": 1638, "took": "6.319733ms"} -2023-12-15T14:39:31.512Z INFO sending PrepareRequest {"height": 1639, "view": 0} -2023-12-15T14:39:31.512Z INFO sending Commit {"height": 1639, "view": 0} -2023-12-15T14:39:31.513Z INFO approving block {"height": 1639, "hash": "d08e804320d853b0cfd29e26ec56f4197148e206addf6621bbca3d12d3550522", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31b560eaaf9d59f8a4c5d683731ed10a53c7e2168c6c96a1f2ba9d322bc8ddbd"} -2023-12-15T14:39:31.514Z INFO initializing dbft {"height": 1640, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:31.515Z debug frostfs-node/morph.go:229 new block {"index": 1639} -2023-12-15T14:39:31.951Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1639, "blockHeight": 1639, "took": "4.009917ms"} -2023-12-15T14:39:32.514Z INFO sending PrepareRequest {"height": 1640, "view": 0} -2023-12-15T14:39:32.514Z INFO sending Commit {"height": 1640, "view": 0} -2023-12-15T14:39:32.514Z INFO approving block {"height": 1640, "hash": "b84ba86fd142e92fa5e67a19dead60ddb72d9fea695bbd8bc2db1f15805b3303", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d08e804320d853b0cfd29e26ec56f4197148e206addf6621bbca3d12d3550522"} -2023-12-15T14:39:32.516Z INFO initializing dbft {"height": 1641, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:32.516Z debug frostfs-node/morph.go:229 new block {"index": 1640} -2023-12-15T14:39:32.951Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1640, "blockHeight": 1640, "took": "3.737449ms"} -2023-12-15T14:39:33.515Z INFO sending PrepareRequest {"height": 1641, "view": 0} -2023-12-15T14:39:33.515Z INFO sending Commit {"height": 1641, "view": 0} -2023-12-15T14:39:33.515Z INFO approving block {"height": 1641, "hash": "4368215fc6ce3e22e40051d9b82790f98ec2d02ce2fdee609fa8be1ffbd9592c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b84ba86fd142e92fa5e67a19dead60ddb72d9fea695bbd8bc2db1f15805b3303"} -2023-12-15T14:39:33.516Z INFO initializing dbft {"height": 1642, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:33.516Z debug frostfs-node/morph.go:229 new block {"index": 1641} -2023-12-15T14:39:33.953Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1641, "blockHeight": 1641, "took": "4.967854ms"} -2023-12-15T14:39:34.516Z INFO sending PrepareRequest {"height": 1642, "view": 0} -2023-12-15T14:39:34.517Z INFO sending Commit {"height": 1642, "view": 0} -2023-12-15T14:39:34.517Z INFO approving block {"height": 1642, "hash": "0a32e29e7763d2adcd9654dfd70c1c89c56a314acbc0c21627c62b32367a5f55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4368215fc6ce3e22e40051d9b82790f98ec2d02ce2fdee609fa8be1ffbd9592c"} -2023-12-15T14:39:34.518Z INFO initializing dbft {"height": 1643, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:34.519Z debug frostfs-node/morph.go:229 new block {"index": 1642} -2023-12-15T14:39:34.951Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1642, "blockHeight": 1642, "took": "2.786761ms"} -2023-12-15T14:39:35.518Z INFO sending PrepareRequest {"height": 1643, "view": 0} -2023-12-15T14:39:35.518Z INFO sending Commit {"height": 1643, "view": 0} -2023-12-15T14:39:35.518Z INFO approving block {"height": 1643, "hash": "991289d2b033e641200b92b89737a6d2185562914ff739abf356b8d20cc4b322", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a32e29e7763d2adcd9654dfd70c1c89c56a314acbc0c21627c62b32367a5f55"} -2023-12-15T14:39:35.519Z INFO initializing dbft {"height": 1644, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:35.520Z debug frostfs-node/morph.go:229 new block {"index": 1643} -2023-12-15T14:39:35.953Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1643, "blockHeight": 1643, "took": "3.709128ms"} -2023-12-15T14:39:36.519Z INFO sending PrepareRequest {"height": 1644, "view": 0} -2023-12-15T14:39:36.519Z INFO sending Commit {"height": 1644, "view": 0} -2023-12-15T14:39:36.520Z INFO approving block {"height": 1644, "hash": "8611b153d33d104ac62fefcf93397b4bebd511d4cd6ab9e941ae5512d7f0b852", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "991289d2b033e641200b92b89737a6d2185562914ff739abf356b8d20cc4b322"} -2023-12-15T14:39:36.520Z INFO initializing dbft {"height": 1645, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:36.521Z debug frostfs-node/morph.go:229 new block {"index": 1644} -2023-12-15T14:39:36.954Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1644, "blockHeight": 1644, "took": "4.245451ms"} -2023-12-15T14:39:37.521Z INFO sending PrepareRequest {"height": 1645, "view": 0} -2023-12-15T14:39:37.521Z INFO sending Commit {"height": 1645, "view": 0} -2023-12-15T14:39:37.521Z INFO approving block {"height": 1645, "hash": "29a6800e507090d66badb70e189ec40ba7dff4d22d3dbbacc7877a6c110b52da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8611b153d33d104ac62fefcf93397b4bebd511d4cd6ab9e941ae5512d7f0b852"} -2023-12-15T14:39:37.522Z INFO initializing dbft {"height": 1646, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:37.523Z debug frostfs-node/morph.go:229 new block {"index": 1645} -2023-12-15T14:39:37.954Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1645, "blockHeight": 1645, "took": "3.721533ms"} -2023-12-15T14:39:38.522Z INFO sending PrepareRequest {"height": 1646, "view": 0} -2023-12-15T14:39:38.522Z INFO sending Commit {"height": 1646, "view": 0} -2023-12-15T14:39:38.522Z INFO approving block {"height": 1646, "hash": "68cd5a78bc661f29d72ea46f4f197f08e8f0d9b47968035d1e067f5b0489f447", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29a6800e507090d66badb70e189ec40ba7dff4d22d3dbbacc7877a6c110b52da"} -2023-12-15T14:39:38.523Z INFO initializing dbft {"height": 1647, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:38.523Z debug frostfs-node/morph.go:229 new block {"index": 1646} -2023-12-15T14:39:38.955Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1646, "blockHeight": 1646, "took": "4.890232ms"} -2023-12-15T14:39:39.523Z INFO sending PrepareRequest {"height": 1647, "view": 0} -2023-12-15T14:39:39.524Z INFO sending Commit {"height": 1647, "view": 0} -2023-12-15T14:39:39.524Z INFO approving block {"height": 1647, "hash": "d934b7f4d5dea8c6d766d748b8f5f8a4598940697a74c9b59695cf167095f0ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68cd5a78bc661f29d72ea46f4f197f08e8f0d9b47968035d1e067f5b0489f447"} -2023-12-15T14:39:39.525Z INFO initializing dbft {"height": 1648, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:39.526Z debug frostfs-node/morph.go:229 new block {"index": 1647} -2023-12-15T14:39:39.956Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1647, "blockHeight": 1647, "took": "5.669493ms"} -2023-12-15T14:39:40.525Z INFO sending PrepareRequest {"height": 1648, "view": 0} -2023-12-15T14:39:40.525Z INFO sending Commit {"height": 1648, "view": 0} -2023-12-15T14:39:40.525Z INFO approving block {"height": 1648, "hash": "4ebb3105b619119c51d45ff20a8552f0b8e1c9e05425b200c8ba6f8bb64f9edc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d934b7f4d5dea8c6d766d748b8f5f8a4598940697a74c9b59695cf167095f0ad"} -2023-12-15T14:39:40.527Z INFO initializing dbft {"height": 1649, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:40.527Z debug frostfs-node/morph.go:229 new block {"index": 1648} -2023-12-15T14:39:40.954Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1648, "blockHeight": 1648, "took": "2.658552ms"} -2023-12-15T14:39:41.526Z INFO sending PrepareRequest {"height": 1649, "view": 0} -2023-12-15T14:39:41.527Z INFO sending Commit {"height": 1649, "view": 0} -2023-12-15T14:39:41.527Z INFO approving block {"height": 1649, "hash": "1d15ec5e421584de33af5432bcdb98817ec5358d953a51f69a861de0e4fd235f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ebb3105b619119c51d45ff20a8552f0b8e1c9e05425b200c8ba6f8bb64f9edc"} -2023-12-15T14:39:41.528Z INFO initializing dbft {"height": 1650, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:41.528Z debug frostfs-node/morph.go:229 new block {"index": 1649} -2023-12-15T14:39:41.956Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1649, "blockHeight": 1649, "took": "4.158424ms"} -2023-12-15T14:39:42.528Z INFO sending PrepareRequest {"height": 1650, "view": 0} -2023-12-15T14:39:42.528Z INFO sending Commit {"height": 1650, "view": 0} -2023-12-15T14:39:42.529Z INFO approving block {"height": 1650, "hash": "aef48d581e9e28bd08743364690df9c1ef5e04753e7935eee42eb1b35e78c066", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d15ec5e421584de33af5432bcdb98817ec5358d953a51f69a861de0e4fd235f"} -2023-12-15T14:39:42.530Z INFO initializing dbft {"height": 1651, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:42.530Z debug frostfs-node/morph.go:229 new block {"index": 1650} -2023-12-15T14:39:42.959Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1650, "blockHeight": 1650, "took": "6.691175ms"} -2023-12-15T14:39:43.530Z INFO sending PrepareRequest {"height": 1651, "view": 0} -2023-12-15T14:39:43.530Z INFO sending Commit {"height": 1651, "view": 0} -2023-12-15T14:39:43.530Z INFO approving block {"height": 1651, "hash": "436b9e204f7b2acd0eb984e929dc4ca3a418551e3bf29efb6e8488c7a6c05006", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aef48d581e9e28bd08743364690df9c1ef5e04753e7935eee42eb1b35e78c066"} -2023-12-15T14:39:43.531Z INFO initializing dbft {"height": 1652, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:43.531Z debug frostfs-node/morph.go:229 new block {"index": 1651} -2023-12-15T14:39:43.959Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1651, "blockHeight": 1651, "took": "6.015345ms"} -2023-12-15T14:39:44.531Z INFO sending PrepareRequest {"height": 1652, "view": 0} -2023-12-15T14:39:44.531Z INFO sending Commit {"height": 1652, "view": 0} -2023-12-15T14:39:44.532Z INFO approving block {"height": 1652, "hash": "218b26be17040a1e8ecbd890f02d4c652f04cd44abcba2ce10fae50050209f4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "436b9e204f7b2acd0eb984e929dc4ca3a418551e3bf29efb6e8488c7a6c05006"} -2023-12-15T14:39:44.534Z INFO initializing dbft {"height": 1653, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:44.534Z debug frostfs-node/morph.go:229 new block {"index": 1652} -2023-12-15T14:39:44.959Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1652, "blockHeight": 1652, "took": "5.654493ms"} -2023-12-15T14:39:45.533Z INFO sending PrepareRequest {"height": 1653, "view": 0} -2023-12-15T14:39:45.533Z INFO sending Commit {"height": 1653, "view": 0} -2023-12-15T14:39:45.534Z INFO approving block {"height": 1653, "hash": "be1fcf4b8705a2fa8b4813f7c2e506be77344ebaaa4cc110cd4881b0e78fef86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "218b26be17040a1e8ecbd890f02d4c652f04cd44abcba2ce10fae50050209f4b"} -2023-12-15T14:39:45.535Z INFO initializing dbft {"height": 1654, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:45.535Z debug frostfs-node/morph.go:229 new block {"index": 1653} -2023-12-15T14:39:45.959Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1653, "blockHeight": 1653, "took": "5.375046ms"} -2023-12-15T14:39:46.534Z INFO sending PrepareRequest {"height": 1654, "view": 0} -2023-12-15T14:39:46.534Z INFO sending Commit {"height": 1654, "view": 0} -2023-12-15T14:39:46.535Z INFO approving block {"height": 1654, "hash": "97d4ac0eabd8fe76114deb7a294aa15a3fd9ce24a74d1d37a746f02052378bfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be1fcf4b8705a2fa8b4813f7c2e506be77344ebaaa4cc110cd4881b0e78fef86"} -2023-12-15T14:39:46.536Z INFO initializing dbft {"height": 1655, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:46.536Z debug frostfs-node/morph.go:229 new block {"index": 1654} -2023-12-15T14:39:46.957Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1654, "blockHeight": 1654, "took": "2.704148ms"} -2023-12-15T14:39:47.536Z INFO sending PrepareRequest {"height": 1655, "view": 0} -2023-12-15T14:39:47.536Z INFO sending Commit {"height": 1655, "view": 0} -2023-12-15T14:39:47.536Z INFO approving block {"height": 1655, "hash": "4357fc72e38d6e51b20fdfc8c3ed636c84cb56c69fb80f577832f6541b4ba8ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97d4ac0eabd8fe76114deb7a294aa15a3fd9ce24a74d1d37a746f02052378bfd"} -2023-12-15T14:39:47.538Z INFO initializing dbft {"height": 1656, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:47.538Z debug frostfs-node/morph.go:229 new block {"index": 1655} -2023-12-15T14:39:47.960Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1655, "blockHeight": 1655, "took": "5.401355ms"} -2023-12-15T14:39:48.537Z INFO sending PrepareRequest {"height": 1656, "view": 0} -2023-12-15T14:39:48.537Z INFO sending Commit {"height": 1656, "view": 0} -2023-12-15T14:39:48.537Z INFO approving block {"height": 1656, "hash": "20653b2b764b27556a2e2b9d6c494b1c148f0b04d33d2101e5720597fedceb0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4357fc72e38d6e51b20fdfc8c3ed636c84cb56c69fb80f577832f6541b4ba8ed"} -2023-12-15T14:39:48.538Z INFO initializing dbft {"height": 1657, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:48.538Z debug frostfs-node/morph.go:229 new block {"index": 1656} -2023-12-15T14:39:48.961Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1656, "blockHeight": 1656, "took": "5.414939ms"} -2023-12-15T14:39:49.538Z INFO sending PrepareRequest {"height": 1657, "view": 0} -2023-12-15T14:39:49.539Z INFO sending Commit {"height": 1657, "view": 0} -2023-12-15T14:39:49.539Z INFO approving block {"height": 1657, "hash": "a39ae3b139fdf0b3fea10e32702cf3b224a9683703e5bcc412a9bb34bbdb8d38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20653b2b764b27556a2e2b9d6c494b1c148f0b04d33d2101e5720597fedceb0e"} -2023-12-15T14:39:49.540Z INFO initializing dbft {"height": 1658, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:49.541Z debug frostfs-node/morph.go:229 new block {"index": 1657} -2023-12-15T14:39:49.960Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1657, "blockHeight": 1657, "took": "4.11786ms"} -2023-12-15T14:39:50.540Z INFO sending PrepareRequest {"height": 1658, "view": 0} -2023-12-15T14:39:50.540Z INFO sending Commit {"height": 1658, "view": 0} -2023-12-15T14:39:50.540Z INFO approving block {"height": 1658, "hash": "af6c210601f60c0795fdba5e3e11258be0932b9a558cc569784d14b079482e23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a39ae3b139fdf0b3fea10e32702cf3b224a9683703e5bcc412a9bb34bbdb8d38"} -2023-12-15T14:39:50.542Z INFO initializing dbft {"height": 1659, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:50.543Z debug frostfs-node/morph.go:229 new block {"index": 1658} -2023-12-15T14:39:50.961Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1658, "blockHeight": 1658, "took": "4.879198ms"} -2023-12-15T14:39:51.541Z INFO sending PrepareRequest {"height": 1659, "view": 0} -2023-12-15T14:39:51.542Z INFO sending Commit {"height": 1659, "view": 0} -2023-12-15T14:39:51.542Z INFO approving block {"height": 1659, "hash": "b353b522611edd201f27bbd4920de872d46b7e1502a874b27af2887eaed8c7e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af6c210601f60c0795fdba5e3e11258be0932b9a558cc569784d14b079482e23"} -2023-12-15T14:39:51.543Z INFO initializing dbft {"height": 1660, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:51.544Z debug frostfs-node/morph.go:229 new block {"index": 1659} -2023-12-15T14:39:51.961Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1659, "blockHeight": 1659, "took": "4.177339ms"} -2023-12-15T14:39:52.543Z INFO sending PrepareRequest {"height": 1660, "view": 0} -2023-12-15T14:39:52.543Z INFO sending Commit {"height": 1660, "view": 0} -2023-12-15T14:39:52.543Z INFO approving block {"height": 1660, "hash": "e4d786175d8014ffd88d62a2baf0f938bc9efd9bf7d53bddd42fc543960431fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b353b522611edd201f27bbd4920de872d46b7e1502a874b27af2887eaed8c7e1"} -2023-12-15T14:39:52.544Z INFO initializing dbft {"height": 1661, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:52.544Z debug frostfs-node/morph.go:229 new block {"index": 1660} -2023-12-15T14:39:52.961Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1660, "blockHeight": 1660, "took": "4.43665ms"} -2023-12-15T14:39:53.544Z INFO sending PrepareRequest {"height": 1661, "view": 0} -2023-12-15T14:39:53.545Z INFO sending Commit {"height": 1661, "view": 0} -2023-12-15T14:39:53.545Z INFO approving block {"height": 1661, "hash": "5ad85a59e99cf14af07c894725774e51377fdbab3b29fc3c52e71e982aaf3fec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4d786175d8014ffd88d62a2baf0f938bc9efd9bf7d53bddd42fc543960431fb"} -2023-12-15T14:39:53.546Z INFO initializing dbft {"height": 1662, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:53.547Z debug frostfs-node/morph.go:229 new block {"index": 1661} -2023-12-15T14:39:53.961Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1661, "blockHeight": 1661, "took": "3.601575ms"} -2023-12-15T14:39:54.545Z INFO sending PrepareRequest {"height": 1662, "view": 0} -2023-12-15T14:39:54.546Z INFO sending Commit {"height": 1662, "view": 0} -2023-12-15T14:39:54.546Z INFO approving block {"height": 1662, "hash": "98ecd42a6fd423dbc8c7a8ca67626591a08a6db5b797d5b6e3d032d4e66fb525", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ad85a59e99cf14af07c894725774e51377fdbab3b29fc3c52e71e982aaf3fec"} -2023-12-15T14:39:54.547Z INFO initializing dbft {"height": 1663, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:54.547Z debug frostfs-node/morph.go:229 new block {"index": 1662} -2023-12-15T14:39:54.962Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1662, "blockHeight": 1662, "took": "3.898394ms"} -2023-12-15T14:39:55.547Z INFO sending PrepareRequest {"height": 1663, "view": 0} -2023-12-15T14:39:55.547Z INFO sending Commit {"height": 1663, "view": 0} -2023-12-15T14:39:55.547Z INFO approving block {"height": 1663, "hash": "b7ca510d5f219d80272abcaa4ec44f451820648c625da04d77b296c0e0cbbff7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98ecd42a6fd423dbc8c7a8ca67626591a08a6db5b797d5b6e3d032d4e66fb525"} -2023-12-15T14:39:55.548Z INFO initializing dbft {"height": 1664, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:55.549Z debug frostfs-node/morph.go:229 new block {"index": 1663} -2023-12-15T14:39:55.964Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1663, "blockHeight": 1663, "took": "6.065157ms"} -2023-12-15T14:39:56.548Z INFO sending PrepareRequest {"height": 1664, "view": 0} -2023-12-15T14:39:56.548Z INFO sending Commit {"height": 1664, "view": 0} -2023-12-15T14:39:56.548Z INFO approving block {"height": 1664, "hash": "bb9cc3ef8cbe3489e1fdaa5fd0f52164942987a042c75d9efa6b75479654107d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7ca510d5f219d80272abcaa4ec44f451820648c625da04d77b296c0e0cbbff7"} -2023-12-15T14:39:56.549Z INFO initializing dbft {"height": 1665, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:56.550Z debug frostfs-node/morph.go:229 new block {"index": 1664} -2023-12-15T14:39:56.962Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1664, "blockHeight": 1664, "took": "2.586316ms"} -2023-12-15T14:39:57.550Z INFO sending PrepareRequest {"height": 1665, "view": 0} -2023-12-15T14:39:57.550Z INFO sending Commit {"height": 1665, "view": 0} -2023-12-15T14:39:57.550Z INFO approving block {"height": 1665, "hash": "d1943f586aa3bcfdfb964d6154db0c7156d25b2458857dd0f29a155a42dbe2da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb9cc3ef8cbe3489e1fdaa5fd0f52164942987a042c75d9efa6b75479654107d"} -2023-12-15T14:39:57.551Z INFO initializing dbft {"height": 1666, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:57.552Z debug frostfs-node/morph.go:229 new block {"index": 1665} -2023-12-15T14:39:57.966Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1665, "blockHeight": 1665, "took": "6.108922ms"} -2023-12-15T14:39:58.551Z INFO sending PrepareRequest {"height": 1666, "view": 0} -2023-12-15T14:39:58.551Z INFO sending Commit {"height": 1666, "view": 0} -2023-12-15T14:39:58.551Z INFO approving block {"height": 1666, "hash": "88c3f80b479393cb9c54e8cacfbfacdef502a27360ddb56082c39d42cb8a651a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1943f586aa3bcfdfb964d6154db0c7156d25b2458857dd0f29a155a42dbe2da"} -2023-12-15T14:39:58.552Z INFO initializing dbft {"height": 1667, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:58.553Z debug frostfs-node/morph.go:229 new block {"index": 1666} -2023-12-15T14:39:58.967Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1666, "blockHeight": 1666, "took": "5.307159ms"} -2023-12-15T14:39:59.553Z INFO sending PrepareRequest {"height": 1667, "view": 0} -2023-12-15T14:39:59.553Z INFO sending Commit {"height": 1667, "view": 0} -2023-12-15T14:39:59.554Z INFO approving block {"height": 1667, "hash": "63d31ee60718d4b01446adef1999c2069d2bffdb5d101c95fc634710be2a01c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88c3f80b479393cb9c54e8cacfbfacdef502a27360ddb56082c39d42cb8a651a"} -2023-12-15T14:39:59.555Z INFO initializing dbft {"height": 1668, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:39:59.555Z debug frostfs-node/morph.go:229 new block {"index": 1667} -2023-12-15T14:39:59.558Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:39:59.561Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:39:59.561Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:39:59.966Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1667, "blockHeight": 1667, "took": "3.790271ms"} -2023-12-15T14:40:00.555Z INFO sending PrepareRequest {"height": 1668, "view": 0} -2023-12-15T14:40:00.555Z INFO sending Commit {"height": 1668, "view": 0} -2023-12-15T14:40:00.555Z INFO approving block {"height": 1668, "hash": "db419f043222f27b8b17d128ae47c9c241245b2565df62adafee7a623d4c02cc", "tx_count": 2, "merkle": "bd0974e53d15b6df326f30354d37ef48d0f29410e2ebc023055eebff24525585", "prev": "63d31ee60718d4b01446adef1999c2069d2bffdb5d101c95fc634710be2a01c1"} -2023-12-15T14:40:00.556Z INFO runtime log {"tx": "206135fea2bec11cca2772d332969f4aa0e46b8aa732da783e0df499a21996dc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:40:00.556Z INFO runtime log {"tx": "206135fea2bec11cca2772d332969f4aa0e46b8aa732da783e0df499a21996dc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:40:00.557Z INFO initializing dbft {"height": 1669, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:00.557Z debug frostfs-node/morph.go:229 new block {"index": 1668} -2023-12-15T14:40:00.967Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1668, "blockHeight": 1668, "took": "4.300539ms"} -2023-12-15T14:40:01.556Z INFO sending PrepareRequest {"height": 1669, "view": 0} -2023-12-15T14:40:01.556Z INFO sending Commit {"height": 1669, "view": 0} -2023-12-15T14:40:01.556Z INFO approving block {"height": 1669, "hash": "921f1ec63bca9572a9a8d8f7137c87642a65ef2a427ac5894bc59dc9d2335487", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db419f043222f27b8b17d128ae47c9c241245b2565df62adafee7a623d4c02cc"} -2023-12-15T14:40:01.558Z INFO initializing dbft {"height": 1670, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:01.558Z debug frostfs-node/morph.go:229 new block {"index": 1669} -2023-12-15T14:40:01.969Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1669, "blockHeight": 1669, "took": "4.525869ms"} -2023-12-15T14:40:02.558Z INFO sending PrepareRequest {"height": 1670, "view": 0} -2023-12-15T14:40:02.558Z INFO sending Commit {"height": 1670, "view": 0} -2023-12-15T14:40:02.558Z INFO approving block {"height": 1670, "hash": "20345c2253497a7ff7c5bcbf184e5a49e1a678435582569a863e4a02b671ffa3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "921f1ec63bca9572a9a8d8f7137c87642a65ef2a427ac5894bc59dc9d2335487"} -2023-12-15T14:40:02.559Z INFO initializing dbft {"height": 1671, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:02.560Z debug frostfs-node/morph.go:229 new block {"index": 1670} -2023-12-15T14:40:02.967Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1670, "blockHeight": 1670, "took": "2.452789ms"} -2023-12-15T14:40:03.559Z INFO sending PrepareRequest {"height": 1671, "view": 0} -2023-12-15T14:40:03.559Z INFO sending Commit {"height": 1671, "view": 0} -2023-12-15T14:40:03.559Z INFO approving block {"height": 1671, "hash": "fd4a63470776af75c42cb4d443a878c68bb69060ce9a05e72fa8772549265600", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20345c2253497a7ff7c5bcbf184e5a49e1a678435582569a863e4a02b671ffa3"} -2023-12-15T14:40:03.561Z INFO initializing dbft {"height": 1672, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:03.561Z debug frostfs-node/morph.go:229 new block {"index": 1671} -2023-12-15T14:40:03.968Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1671, "blockHeight": 1671, "took": "2.928332ms"} -2023-12-15T14:40:04.560Z INFO sending PrepareRequest {"height": 1672, "view": 0} -2023-12-15T14:40:04.561Z INFO sending Commit {"height": 1672, "view": 0} -2023-12-15T14:40:04.561Z INFO approving block {"height": 1672, "hash": "e2aef327b8d890deaa2c408cccb657c98592fd284d5b6267c268a6f72ecbcba4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd4a63470776af75c42cb4d443a878c68bb69060ce9a05e72fa8772549265600"} -2023-12-15T14:40:04.562Z INFO initializing dbft {"height": 1673, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:04.563Z debug frostfs-node/morph.go:229 new block {"index": 1672} -2023-12-15T14:40:04.969Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1672, "blockHeight": 1672, "took": "3.328004ms"} -2023-12-15T14:40:05.562Z INFO sending PrepareRequest {"height": 1673, "view": 0} -2023-12-15T14:40:05.562Z INFO sending Commit {"height": 1673, "view": 0} -2023-12-15T14:40:05.562Z INFO approving block {"height": 1673, "hash": "34ccae5c2236b5997ef480818ab3f7da070d83199e58d20b48ac84fa094449e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2aef327b8d890deaa2c408cccb657c98592fd284d5b6267c268a6f72ecbcba4"} -2023-12-15T14:40:05.563Z INFO initializing dbft {"height": 1674, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:05.563Z debug frostfs-node/morph.go:229 new block {"index": 1673} -2023-12-15T14:40:05.969Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1673, "blockHeight": 1673, "took": "2.713726ms"} -2023-12-15T14:40:06.563Z INFO sending PrepareRequest {"height": 1674, "view": 0} -2023-12-15T14:40:06.563Z INFO sending Commit {"height": 1674, "view": 0} -2023-12-15T14:40:06.563Z INFO approving block {"height": 1674, "hash": "787dd76a9e93af24a21c4fa5033b22b9f6247df6551a4f2b36b3bf16d56cd334", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34ccae5c2236b5997ef480818ab3f7da070d83199e58d20b48ac84fa094449e9"} -2023-12-15T14:40:06.564Z INFO initializing dbft {"height": 1675, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:06.565Z debug frostfs-node/morph.go:229 new block {"index": 1674} -2023-12-15T14:40:06.970Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1674, "blockHeight": 1674, "took": "3.380983ms"} -2023-12-15T14:40:07.564Z INFO sending PrepareRequest {"height": 1675, "view": 0} -2023-12-15T14:40:07.565Z INFO sending Commit {"height": 1675, "view": 0} -2023-12-15T14:40:07.565Z INFO approving block {"height": 1675, "hash": "580d5e7160b2aa75940fbf8dc1a0b72e26c72663b9d83e0772991b2d0baeab2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "787dd76a9e93af24a21c4fa5033b22b9f6247df6551a4f2b36b3bf16d56cd334"} -2023-12-15T14:40:07.566Z INFO initializing dbft {"height": 1676, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:07.566Z debug frostfs-node/morph.go:229 new block {"index": 1675} -2023-12-15T14:40:07.970Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1675, "blockHeight": 1675, "took": "2.638277ms"} -2023-12-15T14:40:08.566Z INFO sending PrepareRequest {"height": 1676, "view": 0} -2023-12-15T14:40:08.566Z INFO sending Commit {"height": 1676, "view": 0} -2023-12-15T14:40:08.566Z INFO approving block {"height": 1676, "hash": "e3a0fb11222dfa844ed66021ed650591d84e2604fdeb024b1845a453e7ed983d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "580d5e7160b2aa75940fbf8dc1a0b72e26c72663b9d83e0772991b2d0baeab2b"} -2023-12-15T14:40:08.567Z INFO initializing dbft {"height": 1677, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:08.568Z debug frostfs-node/morph.go:229 new block {"index": 1676} -2023-12-15T14:40:08.971Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1676, "blockHeight": 1676, "took": "2.812692ms"} -2023-12-15T14:40:09.568Z INFO sending PrepareRequest {"height": 1677, "view": 0} -2023-12-15T14:40:09.568Z INFO sending Commit {"height": 1677, "view": 0} -2023-12-15T14:40:09.568Z INFO approving block {"height": 1677, "hash": "4b919afd9a591f940ab72d370864978185e5f13d156eb23dd981b01710875235", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3a0fb11222dfa844ed66021ed650591d84e2604fdeb024b1845a453e7ed983d"} -2023-12-15T14:40:09.569Z INFO initializing dbft {"height": 1678, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:09.570Z debug frostfs-node/morph.go:229 new block {"index": 1677} -2023-12-15T14:40:09.972Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1677, "blockHeight": 1677, "took": "4.004027ms"} -2023-12-15T14:40:10.570Z INFO sending PrepareRequest {"height": 1678, "view": 0} -2023-12-15T14:40:10.570Z INFO sending Commit {"height": 1678, "view": 0} -2023-12-15T14:40:10.570Z INFO approving block {"height": 1678, "hash": "3923e21aa33dc032762a9d56a52c239d6523e047610b11b05ebd29e0be51cb9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b919afd9a591f940ab72d370864978185e5f13d156eb23dd981b01710875235"} -2023-12-15T14:40:10.571Z INFO initializing dbft {"height": 1679, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:10.572Z debug frostfs-node/morph.go:229 new block {"index": 1678} -2023-12-15T14:40:10.972Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1678, "blockHeight": 1678, "took": "2.689408ms"} -2023-12-15T14:40:11.572Z INFO sending PrepareRequest {"height": 1679, "view": 0} -2023-12-15T14:40:11.572Z INFO sending Commit {"height": 1679, "view": 0} -2023-12-15T14:40:11.572Z INFO approving block {"height": 1679, "hash": "a60d92696dea87306339067b4bad5a172ac9134f87e0a7ea13a0b57fba29fb2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3923e21aa33dc032762a9d56a52c239d6523e047610b11b05ebd29e0be51cb9f"} -2023-12-15T14:40:11.573Z INFO initializing dbft {"height": 1680, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:11.573Z debug frostfs-node/morph.go:229 new block {"index": 1679} -2023-12-15T14:40:11.974Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1679, "blockHeight": 1679, "took": "4.100849ms"} -2023-12-15T14:40:12.573Z INFO sending PrepareRequest {"height": 1680, "view": 0} -2023-12-15T14:40:12.573Z INFO sending Commit {"height": 1680, "view": 0} -2023-12-15T14:40:12.574Z INFO approving block {"height": 1680, "hash": "8e8b74f0ced26add4bfb3a9be74bbc61888de611c21d91c9561ffd87f6e5079b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a60d92696dea87306339067b4bad5a172ac9134f87e0a7ea13a0b57fba29fb2b"} -2023-12-15T14:40:12.575Z INFO initializing dbft {"height": 1681, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:12.576Z debug frostfs-node/morph.go:229 new block {"index": 1680} -2023-12-15T14:40:12.976Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1680, "blockHeight": 1680, "took": "5.307368ms"} -2023-12-15T14:40:13.575Z INFO sending PrepareRequest {"height": 1681, "view": 0} -2023-12-15T14:40:13.575Z INFO sending Commit {"height": 1681, "view": 0} -2023-12-15T14:40:13.575Z INFO approving block {"height": 1681, "hash": "fc919fea9e877f0f985f056988024d03686e201580dea5f07ce97edc59457930", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e8b74f0ced26add4bfb3a9be74bbc61888de611c21d91c9561ffd87f6e5079b"} -2023-12-15T14:40:13.576Z INFO initializing dbft {"height": 1682, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:13.577Z debug frostfs-node/morph.go:229 new block {"index": 1681} -2023-12-15T14:40:13.976Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1681, "blockHeight": 1681, "took": "4.307023ms"} -2023-12-15T14:40:14.577Z INFO sending PrepareRequest {"height": 1682, "view": 0} -2023-12-15T14:40:14.577Z INFO sending Commit {"height": 1682, "view": 0} -2023-12-15T14:40:14.577Z INFO approving block {"height": 1682, "hash": "256283696a38cc8f76852c8062570de4b221be88369f99c0355f2491e3c43fb3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc919fea9e877f0f985f056988024d03686e201580dea5f07ce97edc59457930"} -2023-12-15T14:40:14.578Z INFO initializing dbft {"height": 1683, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:14.578Z debug frostfs-node/morph.go:229 new block {"index": 1682} -2023-12-15T14:40:14.977Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1682, "blockHeight": 1682, "took": "5.108467ms"} -2023-12-15T14:40:15.578Z INFO sending PrepareRequest {"height": 1683, "view": 0} -2023-12-15T14:40:15.578Z INFO sending Commit {"height": 1683, "view": 0} -2023-12-15T14:40:15.579Z INFO approving block {"height": 1683, "hash": "3050a542215a7202689c6e81f8902f7dfbdb8b01a97d918066ab244c595ed3eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "256283696a38cc8f76852c8062570de4b221be88369f99c0355f2491e3c43fb3"} -2023-12-15T14:40:15.580Z INFO initializing dbft {"height": 1684, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:15.581Z debug frostfs-node/morph.go:229 new block {"index": 1683} -2023-12-15T14:40:15.977Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1683, "blockHeight": 1683, "took": "4.595358ms"} -2023-12-15T14:40:16.580Z INFO sending PrepareRequest {"height": 1684, "view": 0} -2023-12-15T14:40:16.580Z INFO sending Commit {"height": 1684, "view": 0} -2023-12-15T14:40:16.580Z INFO approving block {"height": 1684, "hash": "d42ed30ad3d28412a5ae17f225a44cee2163126f5f6f530ba027528809f8a17f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3050a542215a7202689c6e81f8902f7dfbdb8b01a97d918066ab244c595ed3eb"} -2023-12-15T14:40:16.582Z INFO initializing dbft {"height": 1685, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:16.582Z debug frostfs-node/morph.go:229 new block {"index": 1684} -2023-12-15T14:40:16.978Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1684, "blockHeight": 1684, "took": "5.718527ms"} -2023-12-15T14:40:17.581Z INFO sending PrepareRequest {"height": 1685, "view": 0} -2023-12-15T14:40:17.581Z INFO sending Commit {"height": 1685, "view": 0} -2023-12-15T14:40:17.581Z INFO approving block {"height": 1685, "hash": "58c441386e8a5c95db277cbc1b2ba878323d90fa708a5311318c045fb692f430", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d42ed30ad3d28412a5ae17f225a44cee2163126f5f6f530ba027528809f8a17f"} -2023-12-15T14:40:17.582Z INFO initializing dbft {"height": 1686, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:17.582Z debug frostfs-node/morph.go:229 new block {"index": 1685} -2023-12-15T14:40:17.979Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1685, "blockHeight": 1685, "took": "5.858267ms"} -2023-12-15T14:40:18.583Z INFO sending PrepareRequest {"height": 1686, "view": 0} -2023-12-15T14:40:18.583Z INFO sending Commit {"height": 1686, "view": 0} -2023-12-15T14:40:18.583Z INFO approving block {"height": 1686, "hash": "88b4007fdbdfbd12cd9ec2051e517259283a4bfa4bb5a953523888a6adf06ca0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58c441386e8a5c95db277cbc1b2ba878323d90fa708a5311318c045fb692f430"} -2023-12-15T14:40:18.584Z INFO initializing dbft {"height": 1687, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:18.585Z debug frostfs-node/morph.go:229 new block {"index": 1686} -2023-12-15T14:40:18.587Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:40:18.588Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 7, "iteration": 3, "error": "no data for 2 iteration in 7 epoch for consumers's trusts"} -2023-12-15T14:40:18.592Z INFO runtime log {"tx": "5028b5a59384203a10d9db3fa2221a2c488405a61e6691a265ada125dcd1222f", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:40:18.980Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1686, "blockHeight": 1686, "took": "6.24367ms"} -2023-12-15T14:40:19.585Z INFO sending PrepareRequest {"height": 1687, "view": 0} -2023-12-15T14:40:19.585Z INFO sending Commit {"height": 1687, "view": 0} -2023-12-15T14:40:19.585Z INFO approving block {"height": 1687, "hash": "a117a9a7c9f5ee6f500777ac0b0c63c59428738325b314fc5c50d5347752729b", "tx_count": 1, "merkle": "dbd938ac22cc2004633b56389b2c261264b86d39ad2ad846044c3db765136f1d", "prev": "88b4007fdbdfbd12cd9ec2051e517259283a4bfa4bb5a953523888a6adf06ca0"} -2023-12-15T14:40:19.586Z INFO runtime log {"tx": "1d6f1365b73d4c0446d82aad396db86412262c9b38563b630420cc22ac38d9db", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:40:19.588Z INFO initializing dbft {"height": 1688, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:19.589Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 9} -2023-12-15T14:40:19.589Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 9} -2023-12-15T14:40:19.590Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:40:19.590Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 9} -2023-12-15T14:40:19.590Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 9} -2023-12-15T14:40:19.590Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:40:19.590Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 9} -2023-12-15T14:40:19.590Z debug controller/calls.go:95 starting to report local trust values {"epoch": 8} -2023-12-15T14:40:19.590Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 8} -2023-12-15T14:40:19.590Z debug frostfs-node/morph.go:229 new block {"index": 1687} -2023-12-15T14:40:19.593Z debug controller/calls.go:146 reporting successfully finished {"epoch": 8} -2023-12-15T14:40:19.593Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 8} -2023-12-15T14:40:19.594Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:40:19.594Z INFO runtime log {"tx": "97df7bb8ccdb374028f0dbf6b725982b6c654d4fdcbf1885e08293a8c2d032c3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:40:19.598Z info client/notary.go:214 notary deposit invoke {"amount": 1945868080, "expire_at": 4294967295, "vub": 1690, "tx_hash": "cc3c68294144151daef164cc77da4fadb703e5e0f453eac177c6143e469ed483"} -2023-12-15T14:40:19.601Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:40:19.601Z info audit/handlers.go:13 new round of audit {"epoch": 9} -2023-12-15T14:40:19.601Z info settlement/calls.go:26 new audit settlement event {"epoch": 9} -2023-12-15T14:40:19.602Z info settlement/handlers.go:14 process audit settlements {"epoch": 9} -2023-12-15T14:40:19.602Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 9} -2023-12-15T14:40:19.603Z info settlement/handlers.go:18 audit processing finished {"epoch": 9} -2023-12-15T14:40:19.604Z info audit/process.go:39 select containers for audit {"epoch": 9, "amount": 0} -2023-12-15T14:40:19.606Z info client/notary.go:214 notary deposit invoke {"amount": 194663325443, "expire_at": 4294967295, "vub": 1690, "tx_hash": "485d6ed76118d806d58c65845cf4a9550fc41c562dc52244c495a346139ff261"} -2023-12-15T14:40:19.979Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 1687, "blockHeight": 1687, "took": "4.481251ms"} -2023-12-15T14:40:20.587Z INFO sending PrepareRequest {"height": 1688, "view": 0} -2023-12-15T14:40:20.587Z INFO sending Commit {"height": 1688, "view": 0} -2023-12-15T14:40:20.587Z INFO approving block {"height": 1688, "hash": "6e7ce4b40bc80af0a95376852b1e1f88d4ee9347190bcd6900ccfb632fe2aa6b", "tx_count": 3, "merkle": "a8ca3697b8cf685e2f6716d9200c2dbb1af93237a61b4401b10cd2b7c9322643", "prev": "a117a9a7c9f5ee6f500777ac0b0c63c59428738325b314fc5c50d5347752729b"} -2023-12-15T14:40:20.588Z INFO runtime log {"tx": "498063e505b3c29f56f62bdfcdf3e4cb73107472d2786120fd6c6701b748fd23", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:40:20.589Z INFO initializing dbft {"height": 1689, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:20.589Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 8} -2023-12-15T14:40:20.589Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 8} -2023-12-15T14:40:20.589Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 8} -2023-12-15T14:40:20.590Z debug frostfs-node/morph.go:229 new block {"index": 1688} -2023-12-15T14:40:20.980Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 1688, "blockHeight": 1688, "took": "4.80712ms"} -2023-12-15T14:40:21.588Z INFO sending PrepareRequest {"height": 1689, "view": 0} -2023-12-15T14:40:21.588Z INFO sending Commit {"height": 1689, "view": 0} -2023-12-15T14:40:21.589Z INFO approving block {"height": 1689, "hash": "b1bca6657bfa08259b1f5d03a7fb9b35b1d128de29d79fc220136d2745565524", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e7ce4b40bc80af0a95376852b1e1f88d4ee9347190bcd6900ccfb632fe2aa6b"} -2023-12-15T14:40:21.590Z INFO initializing dbft {"height": 1690, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:21.590Z debug frostfs-node/morph.go:229 new block {"index": 1689} -2023-12-15T14:40:21.979Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1689, "blockHeight": 1689, "took": "3.853552ms"} -2023-12-15T14:40:22.589Z INFO sending PrepareRequest {"height": 1690, "view": 0} -2023-12-15T14:40:22.590Z INFO sending Commit {"height": 1690, "view": 0} -2023-12-15T14:40:22.590Z INFO approving block {"height": 1690, "hash": "7123304b61e60d763186ac0a50347812804d023d8ecb491ed6d8ae6ca9ba1c45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1bca6657bfa08259b1f5d03a7fb9b35b1d128de29d79fc220136d2745565524"} -2023-12-15T14:40:22.591Z INFO initializing dbft {"height": 1691, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:22.591Z debug frostfs-node/morph.go:229 new block {"index": 1690} -2023-12-15T14:40:22.979Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1690, "blockHeight": 1690, "took": "3.613597ms"} -2023-12-15T14:40:23.591Z INFO sending PrepareRequest {"height": 1691, "view": 0} -2023-12-15T14:40:23.591Z INFO sending Commit {"height": 1691, "view": 0} -2023-12-15T14:40:23.592Z INFO approving block {"height": 1691, "hash": "5890ed8809eb4aaa532a146ea6528727f1675962e3a42204380e7048bfee3c34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7123304b61e60d763186ac0a50347812804d023d8ecb491ed6d8ae6ca9ba1c45"} -2023-12-15T14:40:23.593Z INFO initializing dbft {"height": 1692, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:23.594Z debug frostfs-node/morph.go:229 new block {"index": 1691} -2023-12-15T14:40:23.980Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1691, "blockHeight": 1691, "took": "4.040752ms"} -2023-12-15T14:40:24.593Z INFO sending PrepareRequest {"height": 1692, "view": 0} -2023-12-15T14:40:24.593Z INFO sending Commit {"height": 1692, "view": 0} -2023-12-15T14:40:24.593Z INFO approving block {"height": 1692, "hash": "fff9fc9bc6986dcec6816df95dabb5c7a8bb276691d455c654b890a61907f82d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5890ed8809eb4aaa532a146ea6528727f1675962e3a42204380e7048bfee3c34"} -2023-12-15T14:40:24.594Z INFO initializing dbft {"height": 1693, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:24.595Z debug frostfs-node/morph.go:229 new block {"index": 1692} -2023-12-15T14:40:24.982Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1692, "blockHeight": 1692, "took": "4.942328ms"} -2023-12-15T14:40:25.595Z INFO sending PrepareRequest {"height": 1693, "view": 0} -2023-12-15T14:40:25.595Z INFO sending Commit {"height": 1693, "view": 0} -2023-12-15T14:40:25.595Z INFO approving block {"height": 1693, "hash": "12b754a866ed1cb963afed766d3b8bfcbece9c22d17b5ad659b216d2844cfa34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fff9fc9bc6986dcec6816df95dabb5c7a8bb276691d455c654b890a61907f82d"} -2023-12-15T14:40:25.596Z INFO initializing dbft {"height": 1694, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:25.597Z debug frostfs-node/morph.go:229 new block {"index": 1693} -2023-12-15T14:40:25.982Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1693, "blockHeight": 1693, "took": "3.640426ms"} -2023-12-15T14:40:26.596Z INFO sending PrepareRequest {"height": 1694, "view": 0} -2023-12-15T14:40:26.596Z INFO sending Commit {"height": 1694, "view": 0} -2023-12-15T14:40:26.597Z INFO approving block {"height": 1694, "hash": "0776444d4fae118bdd3fabe1192876cb002908f3f9a96dd6d9507cf3a096c3f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12b754a866ed1cb963afed766d3b8bfcbece9c22d17b5ad659b216d2844cfa34"} -2023-12-15T14:40:26.598Z INFO initializing dbft {"height": 1695, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:26.598Z debug frostfs-node/morph.go:229 new block {"index": 1694} -2023-12-15T14:40:26.981Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1694, "blockHeight": 1694, "took": "2.934474ms"} -2023-12-15T14:40:27.598Z INFO sending PrepareRequest {"height": 1695, "view": 0} -2023-12-15T14:40:27.598Z INFO sending Commit {"height": 1695, "view": 0} -2023-12-15T14:40:27.599Z INFO approving block {"height": 1695, "hash": "fec11f0e54a3de03a60dd9cf732bde50ac08dace0a66a83b35ec3e77d871756c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0776444d4fae118bdd3fabe1192876cb002908f3f9a96dd6d9507cf3a096c3f8"} -2023-12-15T14:40:27.600Z INFO initializing dbft {"height": 1696, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:27.600Z debug frostfs-node/morph.go:229 new block {"index": 1695} -2023-12-15T14:40:27.984Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1695, "blockHeight": 1695, "took": "4.248276ms"} -2023-12-15T14:40:28.599Z INFO sending PrepareRequest {"height": 1696, "view": 0} -2023-12-15T14:40:28.600Z INFO sending Commit {"height": 1696, "view": 0} -2023-12-15T14:40:28.600Z INFO approving block {"height": 1696, "hash": "9fa3bebc5c3eb435e82b983e9bda7344dab67eaed3d0841ad38e620bae9d141a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fec11f0e54a3de03a60dd9cf732bde50ac08dace0a66a83b35ec3e77d871756c"} -2023-12-15T14:40:28.602Z INFO initializing dbft {"height": 1697, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:28.603Z debug frostfs-node/morph.go:229 new block {"index": 1696} -2023-12-15T14:40:28.984Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1696, "blockHeight": 1696, "took": "3.86207ms"} -2023-12-15T14:40:29.601Z INFO sending PrepareRequest {"height": 1697, "view": 0} -2023-12-15T14:40:29.601Z INFO sending Commit {"height": 1697, "view": 0} -2023-12-15T14:40:29.601Z INFO approving block {"height": 1697, "hash": "dfacc9d89427f01b45a5150ffa66030e5a01368967bbf7102fe4e54702ab1e37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fa3bebc5c3eb435e82b983e9bda7344dab67eaed3d0841ad38e620bae9d141a"} -2023-12-15T14:40:29.602Z INFO initializing dbft {"height": 1698, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:29.603Z debug frostfs-node/morph.go:229 new block {"index": 1697} -2023-12-15T14:40:29.983Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1697, "blockHeight": 1697, "took": "2.832683ms"} -2023-12-15T14:40:30.602Z INFO sending PrepareRequest {"height": 1698, "view": 0} -2023-12-15T14:40:30.603Z INFO sending Commit {"height": 1698, "view": 0} -2023-12-15T14:40:30.603Z INFO approving block {"height": 1698, "hash": "868daf89c204da3b73463b431b094ef2c1ae9395bfd8ae664a81172c91181f3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfacc9d89427f01b45a5150ffa66030e5a01368967bbf7102fe4e54702ab1e37"} -2023-12-15T14:40:30.604Z INFO initializing dbft {"height": 1699, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:30.604Z debug frostfs-node/morph.go:229 new block {"index": 1698} -2023-12-15T14:40:30.985Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1698, "blockHeight": 1698, "took": "3.900037ms"} -2023-12-15T14:40:31.604Z INFO sending PrepareRequest {"height": 1699, "view": 0} -2023-12-15T14:40:31.605Z INFO sending Commit {"height": 1699, "view": 0} -2023-12-15T14:40:31.605Z INFO approving block {"height": 1699, "hash": "83333c98512ad0d6301d7f8d2dc5f8ee3b4f1110b86e128ad3958d9cbac1369f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "868daf89c204da3b73463b431b094ef2c1ae9395bfd8ae664a81172c91181f3a"} -2023-12-15T14:40:31.606Z INFO initializing dbft {"height": 1700, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:31.607Z debug frostfs-node/morph.go:229 new block {"index": 1699} -2023-12-15T14:40:31.985Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1699, "blockHeight": 1699, "took": "3.931245ms"} -2023-12-15T14:40:32.606Z INFO sending PrepareRequest {"height": 1700, "view": 0} -2023-12-15T14:40:32.606Z INFO sending Commit {"height": 1700, "view": 0} -2023-12-15T14:40:32.607Z INFO approving block {"height": 1700, "hash": "197b0cb349a1e81ca458dd14c8a9a6419798ec3e8e84377df34afd530e05048f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83333c98512ad0d6301d7f8d2dc5f8ee3b4f1110b86e128ad3958d9cbac1369f"} -2023-12-15T14:40:32.607Z INFO initializing dbft {"height": 1701, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:32.608Z debug frostfs-node/morph.go:229 new block {"index": 1700} -2023-12-15T14:40:32.984Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1700, "blockHeight": 1700, "took": "2.933339ms"} -2023-12-15T14:40:33.608Z INFO sending PrepareRequest {"height": 1701, "view": 0} -2023-12-15T14:40:33.608Z INFO sending Commit {"height": 1701, "view": 0} -2023-12-15T14:40:33.608Z INFO approving block {"height": 1701, "hash": "8af5fa42f0e4262c584a14a257cdcad1dd2e120e01f75e8d15b09b3cd44fa36d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "197b0cb349a1e81ca458dd14c8a9a6419798ec3e8e84377df34afd530e05048f"} -2023-12-15T14:40:33.610Z INFO initializing dbft {"height": 1702, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:33.610Z debug frostfs-node/morph.go:229 new block {"index": 1701} -2023-12-15T14:40:33.986Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1701, "blockHeight": 1701, "took": "4.428181ms"} -2023-12-15T14:40:34.609Z INFO sending PrepareRequest {"height": 1702, "view": 0} -2023-12-15T14:40:34.610Z INFO sending Commit {"height": 1702, "view": 0} -2023-12-15T14:40:34.610Z INFO approving block {"height": 1702, "hash": "0a12ccd3cb580594d3d8c01cf4cb67d484dcc82d16e5b7735177ffc22d99f8e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8af5fa42f0e4262c584a14a257cdcad1dd2e120e01f75e8d15b09b3cd44fa36d"} -2023-12-15T14:40:34.611Z INFO initializing dbft {"height": 1703, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:34.612Z debug frostfs-node/morph.go:229 new block {"index": 1702} -2023-12-15T14:40:34.986Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1702, "blockHeight": 1702, "took": "3.979367ms"} -2023-12-15T14:40:35.611Z INFO sending PrepareRequest {"height": 1703, "view": 0} -2023-12-15T14:40:35.611Z INFO sending Commit {"height": 1703, "view": 0} -2023-12-15T14:40:35.611Z INFO approving block {"height": 1703, "hash": "2f180b4a7c6eb3646d1ddbc4b0ab7fb9f14bb805f8c4060832f8498aab4d8dca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a12ccd3cb580594d3d8c01cf4cb67d484dcc82d16e5b7735177ffc22d99f8e8"} -2023-12-15T14:40:35.612Z INFO initializing dbft {"height": 1704, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:35.612Z debug frostfs-node/morph.go:229 new block {"index": 1703} -2023-12-15T14:40:35.985Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1703, "blockHeight": 1703, "took": "2.696888ms"} -2023-12-15T14:40:36.612Z INFO sending PrepareRequest {"height": 1704, "view": 0} -2023-12-15T14:40:36.612Z INFO sending Commit {"height": 1704, "view": 0} -2023-12-15T14:40:36.612Z INFO approving block {"height": 1704, "hash": "64f87cb583239c44264e37b2cf62a5ecdb83df32d14b81f93da9fdffdf42fcd9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f180b4a7c6eb3646d1ddbc4b0ab7fb9f14bb805f8c4060832f8498aab4d8dca"} -2023-12-15T14:40:36.613Z INFO initializing dbft {"height": 1705, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:36.613Z debug frostfs-node/morph.go:229 new block {"index": 1704} -2023-12-15T14:40:36.987Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1704, "blockHeight": 1704, "took": "3.958826ms"} -2023-12-15T14:40:37.614Z INFO sending PrepareRequest {"height": 1705, "view": 0} -2023-12-15T14:40:37.614Z INFO sending Commit {"height": 1705, "view": 0} -2023-12-15T14:40:37.614Z INFO approving block {"height": 1705, "hash": "087a4cb9dbc434c51834389717c2c631496a3d112e95461cc0f1016d7440379e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64f87cb583239c44264e37b2cf62a5ecdb83df32d14b81f93da9fdffdf42fcd9"} -2023-12-15T14:40:37.615Z INFO initializing dbft {"height": 1706, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:37.615Z debug frostfs-node/morph.go:229 new block {"index": 1705} -2023-12-15T14:40:37.988Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1705, "blockHeight": 1705, "took": "3.949775ms"} -2023-12-15T14:40:38.616Z INFO sending PrepareRequest {"height": 1706, "view": 0} -2023-12-15T14:40:38.616Z INFO sending Commit {"height": 1706, "view": 0} -2023-12-15T14:40:38.616Z INFO approving block {"height": 1706, "hash": "445acd0e4e8b2d0c5a15e1fc8756e00a28bb47d32be4d37ab0dc7e26681ae7ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "087a4cb9dbc434c51834389717c2c631496a3d112e95461cc0f1016d7440379e"} -2023-12-15T14:40:38.617Z INFO initializing dbft {"height": 1707, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:38.618Z debug frostfs-node/morph.go:229 new block {"index": 1706} -2023-12-15T14:40:38.987Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1706, "blockHeight": 1706, "took": "2.760062ms"} -2023-12-15T14:40:39.617Z INFO sending PrepareRequest {"height": 1707, "view": 0} -2023-12-15T14:40:39.617Z INFO sending Commit {"height": 1707, "view": 0} -2023-12-15T14:40:39.617Z INFO approving block {"height": 1707, "hash": "759fc59f327551c39ff1ae227f7d936d0304750873b5817686b4bccbba0103fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "445acd0e4e8b2d0c5a15e1fc8756e00a28bb47d32be4d37ab0dc7e26681ae7ad"} -2023-12-15T14:40:39.618Z INFO initializing dbft {"height": 1708, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:39.618Z debug frostfs-node/morph.go:229 new block {"index": 1707} -2023-12-15T14:40:39.987Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1707, "blockHeight": 1707, "took": "2.614816ms"} -2023-12-15T14:40:40.618Z INFO sending PrepareRequest {"height": 1708, "view": 0} -2023-12-15T14:40:40.618Z INFO sending Commit {"height": 1708, "view": 0} -2023-12-15T14:40:40.619Z INFO approving block {"height": 1708, "hash": "0a5d34388b5dd0ebe4aa29a84bbc93cfaa5e710896cba2fbdeb1688584990f8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "759fc59f327551c39ff1ae227f7d936d0304750873b5817686b4bccbba0103fc"} -2023-12-15T14:40:40.620Z INFO initializing dbft {"height": 1709, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:40.620Z debug frostfs-node/morph.go:229 new block {"index": 1708} -2023-12-15T14:40:40.989Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1708, "blockHeight": 1708, "took": "3.617336ms"} -2023-12-15T14:40:41.620Z INFO sending PrepareRequest {"height": 1709, "view": 0} -2023-12-15T14:40:41.621Z INFO sending Commit {"height": 1709, "view": 0} -2023-12-15T14:40:41.621Z INFO approving block {"height": 1709, "hash": "cf1ea5d93093a866a722494acf0dc0c6cc54286b08b3ff82d79c7b0440e73314", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a5d34388b5dd0ebe4aa29a84bbc93cfaa5e710896cba2fbdeb1688584990f8d"} -2023-12-15T14:40:41.622Z INFO initializing dbft {"height": 1710, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:41.623Z debug frostfs-node/morph.go:229 new block {"index": 1709} -2023-12-15T14:40:41.990Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1709, "blockHeight": 1709, "took": "3.141072ms"} -2023-12-15T14:40:42.623Z INFO sending PrepareRequest {"height": 1710, "view": 0} -2023-12-15T14:40:42.623Z INFO sending Commit {"height": 1710, "view": 0} -2023-12-15T14:40:42.623Z INFO approving block {"height": 1710, "hash": "fb3aeab9d32191fe01109db863531789866ca9fdecaa9044f5a1748ef74655f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf1ea5d93093a866a722494acf0dc0c6cc54286b08b3ff82d79c7b0440e73314"} -2023-12-15T14:40:42.625Z INFO initializing dbft {"height": 1711, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:42.626Z debug frostfs-node/morph.go:229 new block {"index": 1710} -2023-12-15T14:40:42.991Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1710, "blockHeight": 1710, "took": "4.202426ms"} -2023-12-15T14:40:43.624Z INFO sending PrepareRequest {"height": 1711, "view": 0} -2023-12-15T14:40:43.624Z INFO sending Commit {"height": 1711, "view": 0} -2023-12-15T14:40:43.624Z INFO approving block {"height": 1711, "hash": "60cb918c9fd495ac90226558968403ae63ea23f5d0057523e2d358801ddbf63a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb3aeab9d32191fe01109db863531789866ca9fdecaa9044f5a1748ef74655f0"} -2023-12-15T14:40:43.625Z INFO initializing dbft {"height": 1712, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:43.626Z debug frostfs-node/morph.go:229 new block {"index": 1711} -2023-12-15T14:40:43.990Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1711, "blockHeight": 1711, "took": "3.287735ms"} -2023-12-15T14:40:44.625Z INFO sending PrepareRequest {"height": 1712, "view": 0} -2023-12-15T14:40:44.625Z INFO sending Commit {"height": 1712, "view": 0} -2023-12-15T14:40:44.626Z INFO approving block {"height": 1712, "hash": "1314135cf35bfa2b9720fcfd992956c12bc11a10fd912d3fab6f6fd90432d9b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60cb918c9fd495ac90226558968403ae63ea23f5d0057523e2d358801ddbf63a"} -2023-12-15T14:40:44.626Z INFO initializing dbft {"height": 1713, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:44.627Z debug frostfs-node/morph.go:229 new block {"index": 1712} -2023-12-15T14:40:44.992Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1712, "blockHeight": 1712, "took": "4.260598ms"} -2023-12-15T14:40:45.626Z INFO sending PrepareRequest {"height": 1713, "view": 0} -2023-12-15T14:40:45.627Z INFO sending Commit {"height": 1713, "view": 0} -2023-12-15T14:40:45.627Z INFO approving block {"height": 1713, "hash": "f5678443fa035ebd30ab73134af71368e7830994b2871e26ea05d1aab7b20804", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1314135cf35bfa2b9720fcfd992956c12bc11a10fd912d3fab6f6fd90432d9b6"} -2023-12-15T14:40:45.628Z INFO initializing dbft {"height": 1714, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:45.629Z debug frostfs-node/morph.go:229 new block {"index": 1713} -2023-12-15T14:40:45.992Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1713, "blockHeight": 1713, "took": "4.081209ms"} -2023-12-15T14:40:46.628Z INFO sending PrepareRequest {"height": 1714, "view": 0} -2023-12-15T14:40:46.628Z INFO sending Commit {"height": 1714, "view": 0} -2023-12-15T14:40:46.628Z INFO approving block {"height": 1714, "hash": "acd28dd00279493ca3919777cdf0a1b665c9bfd5fe2ecbf7f72fb5475b19d1b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5678443fa035ebd30ab73134af71368e7830994b2871e26ea05d1aab7b20804"} -2023-12-15T14:40:46.629Z INFO initializing dbft {"height": 1715, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:46.629Z debug frostfs-node/morph.go:229 new block {"index": 1714} -2023-12-15T14:40:46.995Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1714, "blockHeight": 1714, "took": "6.016156ms"} -2023-12-15T14:40:47.630Z INFO sending PrepareRequest {"height": 1715, "view": 0} -2023-12-15T14:40:47.630Z INFO sending Commit {"height": 1715, "view": 0} -2023-12-15T14:40:47.630Z INFO approving block {"height": 1715, "hash": "29b3349222b2bfc11b73a13e08f7c5a9792e1a34849d586543f0251401e21dbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acd28dd00279493ca3919777cdf0a1b665c9bfd5fe2ecbf7f72fb5475b19d1b5"} -2023-12-15T14:40:47.631Z INFO initializing dbft {"height": 1716, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:47.632Z debug frostfs-node/morph.go:229 new block {"index": 1715} -2023-12-15T14:40:47.993Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1715, "blockHeight": 1715, "took": "3.08396ms"} -2023-12-15T14:40:48.631Z INFO sending PrepareRequest {"height": 1716, "view": 0} -2023-12-15T14:40:48.631Z INFO sending Commit {"height": 1716, "view": 0} -2023-12-15T14:40:48.631Z INFO approving block {"height": 1716, "hash": "0920450293bef60de3809cdac9e0ea66380939f1e1d0bda032ad67118e372385", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29b3349222b2bfc11b73a13e08f7c5a9792e1a34849d586543f0251401e21dbb"} -2023-12-15T14:40:48.632Z INFO initializing dbft {"height": 1717, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:48.633Z debug frostfs-node/morph.go:229 new block {"index": 1716} -2023-12-15T14:40:48.994Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1716, "blockHeight": 1716, "took": "3.953696ms"} -2023-12-15T14:40:49.632Z INFO sending PrepareRequest {"height": 1717, "view": 0} -2023-12-15T14:40:49.633Z INFO sending Commit {"height": 1717, "view": 0} -2023-12-15T14:40:49.633Z INFO approving block {"height": 1717, "hash": "c9aeafd351e4b3488f137b24b6c6d6332b68e65942592c085ef29b461b37b826", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0920450293bef60de3809cdac9e0ea66380939f1e1d0bda032ad67118e372385"} -2023-12-15T14:40:49.634Z INFO initializing dbft {"height": 1718, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:49.635Z debug frostfs-node/morph.go:229 new block {"index": 1717} -2023-12-15T14:40:49.637Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:40:49.640Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:40:49.641Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:40:49.995Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1717, "blockHeight": 1717, "took": "4.629435ms"} -2023-12-15T14:40:50.635Z INFO sending PrepareRequest {"height": 1718, "view": 0} -2023-12-15T14:40:50.635Z INFO sending Commit {"height": 1718, "view": 0} -2023-12-15T14:40:50.635Z INFO approving block {"height": 1718, "hash": "13f951d008ed6b7332efd3c08531dd2a195226729ac459ea6a3f1e3d5ad56ce1", "tx_count": 2, "merkle": "d9d1e1c642a6d2cedb1bbf0c411fbfae3d91fc5c099e3e922b3769eb5693574b", "prev": "c9aeafd351e4b3488f137b24b6c6d6332b68e65942592c085ef29b461b37b826"} -2023-12-15T14:40:50.636Z INFO runtime log {"tx": "cb755d8ffbe73f6700c038e103b2e7541f2257959517a596a90a329216e30955", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:40:50.636Z INFO runtime log {"tx": "cb755d8ffbe73f6700c038e103b2e7541f2257959517a596a90a329216e30955", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:40:50.637Z INFO initializing dbft {"height": 1719, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:50.638Z debug frostfs-node/morph.go:229 new block {"index": 1718} -2023-12-15T14:40:50.996Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1718, "blockHeight": 1718, "took": "5.186231ms"} -2023-12-15T14:40:51.636Z INFO sending PrepareRequest {"height": 1719, "view": 0} -2023-12-15T14:40:51.637Z INFO sending Commit {"height": 1719, "view": 0} -2023-12-15T14:40:51.637Z INFO approving block {"height": 1719, "hash": "8406a8bf4762e3c3ecd5b1337fa27b17dc8d9daa1adb29fa0d5599d0ae24eb07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13f951d008ed6b7332efd3c08531dd2a195226729ac459ea6a3f1e3d5ad56ce1"} -2023-12-15T14:40:51.638Z INFO initializing dbft {"height": 1720, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:51.639Z debug frostfs-node/morph.go:229 new block {"index": 1719} -2023-12-15T14:40:51.994Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1719, "blockHeight": 1719, "took": "2.872903ms"} -2023-12-15T14:40:52.637Z INFO sending PrepareRequest {"height": 1720, "view": 0} -2023-12-15T14:40:52.637Z INFO sending Commit {"height": 1720, "view": 0} -2023-12-15T14:40:52.638Z INFO approving block {"height": 1720, "hash": "67b586995d881314565ad2b3d3ecfddff870cf7cd697e03fb5f7245001d14ab5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8406a8bf4762e3c3ecd5b1337fa27b17dc8d9daa1adb29fa0d5599d0ae24eb07"} -2023-12-15T14:40:52.638Z INFO initializing dbft {"height": 1721, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:52.639Z debug frostfs-node/morph.go:229 new block {"index": 1720} -2023-12-15T14:40:52.996Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1720, "blockHeight": 1720, "took": "4.009409ms"} -2023-12-15T14:40:53.639Z INFO sending PrepareRequest {"height": 1721, "view": 0} -2023-12-15T14:40:53.639Z INFO sending Commit {"height": 1721, "view": 0} -2023-12-15T14:40:53.639Z INFO approving block {"height": 1721, "hash": "903a3f7c268c03edc64408b1ab36529d358ad092be25d490cab509f3b4608dec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67b586995d881314565ad2b3d3ecfddff870cf7cd697e03fb5f7245001d14ab5"} -2023-12-15T14:40:53.640Z INFO initializing dbft {"height": 1722, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:53.640Z debug frostfs-node/morph.go:229 new block {"index": 1721} -2023-12-15T14:40:53.996Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1721, "blockHeight": 1721, "took": "4.055801ms"} -2023-12-15T14:40:54.641Z INFO sending PrepareRequest {"height": 1722, "view": 0} -2023-12-15T14:40:54.641Z INFO sending Commit {"height": 1722, "view": 0} -2023-12-15T14:40:54.641Z INFO approving block {"height": 1722, "hash": "20210efe56fd8cec055d33ad10f955bfa90e3aab2e6a7adb0413962734d071cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "903a3f7c268c03edc64408b1ab36529d358ad092be25d490cab509f3b4608dec"} -2023-12-15T14:40:54.643Z INFO initializing dbft {"height": 1723, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:54.643Z debug frostfs-node/morph.go:229 new block {"index": 1722} -2023-12-15T14:40:54.997Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1722, "blockHeight": 1722, "took": "4.663904ms"} -2023-12-15T14:40:55.642Z INFO sending PrepareRequest {"height": 1723, "view": 0} -2023-12-15T14:40:55.642Z INFO sending Commit {"height": 1723, "view": 0} -2023-12-15T14:40:55.642Z INFO approving block {"height": 1723, "hash": "196d4ec545a8d45936c4bede855435edc93e6fcb86d5b4d5a871cdb3e703de06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20210efe56fd8cec055d33ad10f955bfa90e3aab2e6a7adb0413962734d071cb"} -2023-12-15T14:40:55.643Z INFO initializing dbft {"height": 1724, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:55.644Z debug frostfs-node/morph.go:229 new block {"index": 1723} -2023-12-15T14:40:55.998Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1723, "blockHeight": 1723, "took": "5.046587ms"} -2023-12-15T14:40:56.643Z INFO sending PrepareRequest {"height": 1724, "view": 0} -2023-12-15T14:40:56.644Z INFO sending Commit {"height": 1724, "view": 0} -2023-12-15T14:40:56.644Z INFO approving block {"height": 1724, "hash": "716593495b31631d8fb875f389c6e2a37e86603c513e2a4a2d99865d10b553a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "196d4ec545a8d45936c4bede855435edc93e6fcb86d5b4d5a871cdb3e703de06"} -2023-12-15T14:40:56.645Z INFO initializing dbft {"height": 1725, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:56.646Z debug frostfs-node/morph.go:229 new block {"index": 1724} -2023-12-15T14:40:56.997Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1724, "blockHeight": 1724, "took": "2.835604ms"} -2023-12-15T14:40:57.645Z INFO sending PrepareRequest {"height": 1725, "view": 0} -2023-12-15T14:40:57.645Z INFO sending Commit {"height": 1725, "view": 0} -2023-12-15T14:40:57.646Z INFO approving block {"height": 1725, "hash": "b9386d9394cc1d3aefd2a51e808fa11ecb4b0f07ab5f40765916eca01dc8ce94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "716593495b31631d8fb875f389c6e2a37e86603c513e2a4a2d99865d10b553a4"} -2023-12-15T14:40:57.647Z INFO initializing dbft {"height": 1726, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:57.647Z debug frostfs-node/morph.go:229 new block {"index": 1725} -2023-12-15T14:40:57.999Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1725, "blockHeight": 1725, "took": "4.140201ms"} -2023-12-15T14:40:58.646Z INFO sending PrepareRequest {"height": 1726, "view": 0} -2023-12-15T14:40:58.647Z INFO sending Commit {"height": 1726, "view": 0} -2023-12-15T14:40:58.647Z INFO approving block {"height": 1726, "hash": "c3516465f8a62db2d82bae02fae04da633cd2c497c3e5dcf692fba316fd7ffba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9386d9394cc1d3aefd2a51e808fa11ecb4b0f07ab5f40765916eca01dc8ce94"} -2023-12-15T14:40:58.648Z INFO initializing dbft {"height": 1727, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:58.649Z debug frostfs-node/morph.go:229 new block {"index": 1726} -2023-12-15T14:40:58.998Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1726, "blockHeight": 1726, "took": "2.619076ms"} -2023-12-15T14:40:59.648Z INFO sending PrepareRequest {"height": 1727, "view": 0} -2023-12-15T14:40:59.648Z INFO sending Commit {"height": 1727, "view": 0} -2023-12-15T14:40:59.649Z INFO approving block {"height": 1727, "hash": "39aef678274a5f102f3a6d3c3786b242bc84831244429b8560ae2d14151ce322", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3516465f8a62db2d82bae02fae04da633cd2c497c3e5dcf692fba316fd7ffba"} -2023-12-15T14:40:59.650Z INFO initializing dbft {"height": 1728, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:40:59.651Z debug frostfs-node/morph.go:229 new block {"index": 1727} -2023-12-15T14:41:00.000Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1727, "blockHeight": 1727, "took": "3.74652ms"} -2023-12-15T14:41:00.649Z INFO sending PrepareRequest {"height": 1728, "view": 0} -2023-12-15T14:41:00.650Z INFO sending Commit {"height": 1728, "view": 0} -2023-12-15T14:41:00.650Z INFO approving block {"height": 1728, "hash": "42f7c9f8eb2588533fabbf0ac053eab397120f0ef14d003ad648a0a73b9e3980", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39aef678274a5f102f3a6d3c3786b242bc84831244429b8560ae2d14151ce322"} -2023-12-15T14:41:00.651Z INFO initializing dbft {"height": 1729, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:00.652Z debug frostfs-node/morph.go:229 new block {"index": 1728} -2023-12-15T14:41:00.999Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1728, "blockHeight": 1728, "took": "2.655718ms"} -2023-12-15T14:41:01.651Z INFO sending PrepareRequest {"height": 1729, "view": 0} -2023-12-15T14:41:01.652Z INFO sending Commit {"height": 1729, "view": 0} -2023-12-15T14:41:01.652Z INFO approving block {"height": 1729, "hash": "1d5ee449b93dc2f45796969b646cfb582a23de1eae2a03d72a1026f6ba939848", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42f7c9f8eb2588533fabbf0ac053eab397120f0ef14d003ad648a0a73b9e3980"} -2023-12-15T14:41:01.653Z INFO initializing dbft {"height": 1730, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:01.654Z debug frostfs-node/morph.go:229 new block {"index": 1729} -2023-12-15T14:41:02.002Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1729, "blockHeight": 1729, "took": "4.696273ms"} -2023-12-15T14:41:02.653Z INFO sending PrepareRequest {"height": 1730, "view": 0} -2023-12-15T14:41:02.654Z INFO sending Commit {"height": 1730, "view": 0} -2023-12-15T14:41:02.654Z INFO approving block {"height": 1730, "hash": "8b816a693dcfbd44aa6d678226f6369ca1835e571a73f61583b34ed91d1f16de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d5ee449b93dc2f45796969b646cfb582a23de1eae2a03d72a1026f6ba939848"} -2023-12-15T14:41:02.655Z INFO initializing dbft {"height": 1731, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:02.655Z debug frostfs-node/morph.go:229 new block {"index": 1730} -2023-12-15T14:41:03.001Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1730, "blockHeight": 1730, "took": "3.598842ms"} -2023-12-15T14:41:03.655Z INFO sending PrepareRequest {"height": 1731, "view": 0} -2023-12-15T14:41:03.655Z INFO sending Commit {"height": 1731, "view": 0} -2023-12-15T14:41:03.655Z INFO approving block {"height": 1731, "hash": "01b46979fce62d96e01de1c1db7940db0866683dc1eb678a04d2d7bcb81a8b52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b816a693dcfbd44aa6d678226f6369ca1835e571a73f61583b34ed91d1f16de"} -2023-12-15T14:41:03.657Z INFO initializing dbft {"height": 1732, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:03.657Z debug frostfs-node/morph.go:229 new block {"index": 1731} -2023-12-15T14:41:04.002Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1731, "blockHeight": 1731, "took": "3.028748ms"} -2023-12-15T14:41:04.656Z INFO sending PrepareRequest {"height": 1732, "view": 0} -2023-12-15T14:41:04.656Z INFO sending Commit {"height": 1732, "view": 0} -2023-12-15T14:41:04.656Z INFO approving block {"height": 1732, "hash": "9aa4761be601b40acb9c8b7b78e13d46c3a6c7d11bc746ede06f9a37a628225d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01b46979fce62d96e01de1c1db7940db0866683dc1eb678a04d2d7bcb81a8b52"} -2023-12-15T14:41:04.658Z INFO initializing dbft {"height": 1733, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:04.658Z debug frostfs-node/morph.go:229 new block {"index": 1732} -2023-12-15T14:41:05.003Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1732, "blockHeight": 1732, "took": "4.038693ms"} -2023-12-15T14:41:05.658Z INFO sending PrepareRequest {"height": 1733, "view": 0} -2023-12-15T14:41:05.658Z INFO sending Commit {"height": 1733, "view": 0} -2023-12-15T14:41:05.658Z INFO approving block {"height": 1733, "hash": "0fc83a66c3c8688b5fc5f350801beb54c438608441637564d52d23597a620864", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9aa4761be601b40acb9c8b7b78e13d46c3a6c7d11bc746ede06f9a37a628225d"} -2023-12-15T14:41:05.660Z INFO initializing dbft {"height": 1734, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:05.661Z debug frostfs-node/morph.go:229 new block {"index": 1733} -2023-12-15T14:41:06.004Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1733, "blockHeight": 1733, "took": "4.544006ms"} -2023-12-15T14:41:06.659Z INFO sending PrepareRequest {"height": 1734, "view": 0} -2023-12-15T14:41:06.659Z INFO sending Commit {"height": 1734, "view": 0} -2023-12-15T14:41:06.659Z INFO approving block {"height": 1734, "hash": "8bee393e00e7d0cec23a3761c5e0370aa601efab0ea863d224ad19708b44d891", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fc83a66c3c8688b5fc5f350801beb54c438608441637564d52d23597a620864"} -2023-12-15T14:41:06.660Z INFO initializing dbft {"height": 1735, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:06.660Z debug frostfs-node/morph.go:229 new block {"index": 1734} -2023-12-15T14:41:07.004Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1734, "blockHeight": 1734, "took": "3.441301ms"} -2023-12-15T14:41:07.661Z INFO sending PrepareRequest {"height": 1735, "view": 0} -2023-12-15T14:41:07.661Z INFO sending Commit {"height": 1735, "view": 0} -2023-12-15T14:41:07.661Z INFO approving block {"height": 1735, "hash": "18214e79ffd80c5849f6ce196778ac62e3e1ff0b03f68d41401ce5239d5ef6d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bee393e00e7d0cec23a3761c5e0370aa601efab0ea863d224ad19708b44d891"} -2023-12-15T14:41:07.663Z INFO initializing dbft {"height": 1736, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:07.663Z debug frostfs-node/morph.go:229 new block {"index": 1735} -2023-12-15T14:41:08.005Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1735, "blockHeight": 1735, "took": "4.330801ms"} -2023-12-15T14:41:08.662Z INFO sending PrepareRequest {"height": 1736, "view": 0} -2023-12-15T14:41:08.663Z INFO sending Commit {"height": 1736, "view": 0} -2023-12-15T14:41:08.663Z INFO approving block {"height": 1736, "hash": "20102e2e320860d328fec1a119a1603ca9aa29973c57674cef841767857a3553", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18214e79ffd80c5849f6ce196778ac62e3e1ff0b03f68d41401ce5239d5ef6d4"} -2023-12-15T14:41:08.664Z INFO initializing dbft {"height": 1737, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:08.665Z debug frostfs-node/morph.go:229 new block {"index": 1736} -2023-12-15T14:41:09.005Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1736, "blockHeight": 1736, "took": "3.752449ms"} -2023-12-15T14:41:09.664Z INFO sending PrepareRequest {"height": 1737, "view": 0} -2023-12-15T14:41:09.664Z INFO sending Commit {"height": 1737, "view": 0} -2023-12-15T14:41:09.664Z INFO approving block {"height": 1737, "hash": "256c4814883b7da6439e4b90f6dec92d1eb013d3e6b135dd85781ae6c99309f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20102e2e320860d328fec1a119a1603ca9aa29973c57674cef841767857a3553"} -2023-12-15T14:41:09.666Z INFO initializing dbft {"height": 1738, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:09.666Z debug frostfs-node/morph.go:229 new block {"index": 1737} -2023-12-15T14:41:10.007Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1737, "blockHeight": 1737, "took": "5.382357ms"} -2023-12-15T14:41:10.665Z INFO sending PrepareRequest {"height": 1738, "view": 0} -2023-12-15T14:41:10.665Z INFO sending Commit {"height": 1738, "view": 0} -2023-12-15T14:41:10.666Z INFO approving block {"height": 1738, "hash": "f4bd2824973a9fd6fa0012c03092acf48ad1894a8585ad26fa9137d68e9060f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "256c4814883b7da6439e4b90f6dec92d1eb013d3e6b135dd85781ae6c99309f9"} -2023-12-15T14:41:10.667Z INFO initializing dbft {"height": 1739, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:10.668Z debug frostfs-node/morph.go:229 new block {"index": 1738} -2023-12-15T14:41:11.009Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1738, "blockHeight": 1738, "took": "6.676365ms"} -2023-12-15T14:41:11.667Z INFO sending PrepareRequest {"height": 1739, "view": 0} -2023-12-15T14:41:11.667Z INFO sending Commit {"height": 1739, "view": 0} -2023-12-15T14:41:11.667Z INFO approving block {"height": 1739, "hash": "270c4ae5e4790e83b480687654dfd4105dbdd3fd97c989062887aa8bb7f0c15f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4bd2824973a9fd6fa0012c03092acf48ad1894a8585ad26fa9137d68e9060f0"} -2023-12-15T14:41:11.669Z INFO initializing dbft {"height": 1740, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:11.669Z debug frostfs-node/morph.go:229 new block {"index": 1739} -2023-12-15T14:41:12.007Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1739, "blockHeight": 1739, "took": "4.011407ms"} -2023-12-15T14:41:12.668Z INFO sending PrepareRequest {"height": 1740, "view": 0} -2023-12-15T14:41:12.669Z INFO sending Commit {"height": 1740, "view": 0} -2023-12-15T14:41:12.670Z INFO approving block {"height": 1740, "hash": "a63bb3b98c086a28a7685548a611391bd1b317337e89ac41afe5d85988d6e704", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "270c4ae5e4790e83b480687654dfd4105dbdd3fd97c989062887aa8bb7f0c15f"} -2023-12-15T14:41:12.671Z INFO initializing dbft {"height": 1741, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:12.671Z debug frostfs-node/morph.go:229 new block {"index": 1740} -2023-12-15T14:41:13.010Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1740, "blockHeight": 1740, "took": "6.139969ms"} -2023-12-15T14:41:13.670Z INFO sending PrepareRequest {"height": 1741, "view": 0} -2023-12-15T14:41:13.670Z INFO sending Commit {"height": 1741, "view": 0} -2023-12-15T14:41:13.670Z INFO approving block {"height": 1741, "hash": "d1c5e3dda5a4ef599611dfde8116523cd5b7790a207de8bcfcbc87db9446c64b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a63bb3b98c086a28a7685548a611391bd1b317337e89ac41afe5d85988d6e704"} -2023-12-15T14:41:13.671Z INFO initializing dbft {"height": 1742, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:13.672Z debug frostfs-node/morph.go:229 new block {"index": 1741} -2023-12-15T14:41:14.009Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1741, "blockHeight": 1741, "took": "4.081589ms"} -2023-12-15T14:41:14.671Z INFO sending PrepareRequest {"height": 1742, "view": 0} -2023-12-15T14:41:14.672Z INFO sending Commit {"height": 1742, "view": 0} -2023-12-15T14:41:14.672Z INFO approving block {"height": 1742, "hash": "ae069e6f2aea8f2133e7bba58325d3671d1f0ae16490ae4bda5040134a6888f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1c5e3dda5a4ef599611dfde8116523cd5b7790a207de8bcfcbc87db9446c64b"} -2023-12-15T14:41:14.673Z INFO initializing dbft {"height": 1743, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:14.674Z debug frostfs-node/morph.go:229 new block {"index": 1742} -2023-12-15T14:41:15.010Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1742, "blockHeight": 1742, "took": "4.80045ms"} -2023-12-15T14:41:15.673Z INFO sending PrepareRequest {"height": 1743, "view": 0} -2023-12-15T14:41:15.673Z INFO sending Commit {"height": 1743, "view": 0} -2023-12-15T14:41:15.673Z INFO approving block {"height": 1743, "hash": "c8b7c75846722374ee01bd252d8ab03fa0738ba642a7d9a8f7448598a21ed6e9", "tx_count": 1, "merkle": "dcfe06e2c8216d988fe179d451b008387664f836138c6fae46b50675794f5592", "prev": "ae069e6f2aea8f2133e7bba58325d3671d1f0ae16490ae4bda5040134a6888f1"} -2023-12-15T14:41:15.675Z INFO initializing dbft {"height": 1744, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:15.675Z debug frostfs-node/morph.go:229 new block {"index": 1743} -2023-12-15T14:41:16.012Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 1743, "blockHeight": 1743, "took": "6.055004ms"} -2023-12-15T14:41:16.674Z INFO sending PrepareRequest {"height": 1744, "view": 0} -2023-12-15T14:41:16.674Z INFO sending Commit {"height": 1744, "view": 0} -2023-12-15T14:41:16.675Z INFO approving block {"height": 1744, "hash": "97854d10fc6c5219c18241b94d4fd44068b46fff7d956d5a2b0a08cfc836fa4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8b7c75846722374ee01bd252d8ab03fa0738ba642a7d9a8f7448598a21ed6e9"} -2023-12-15T14:41:16.676Z INFO initializing dbft {"height": 1745, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:16.677Z debug frostfs-node/morph.go:229 new block {"index": 1744} -2023-12-15T14:41:17.010Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1744, "blockHeight": 1744, "took": "3.631526ms"} -2023-12-15T14:41:17.676Z INFO sending PrepareRequest {"height": 1745, "view": 0} -2023-12-15T14:41:17.676Z INFO sending Commit {"height": 1745, "view": 0} -2023-12-15T14:41:17.676Z INFO approving block {"height": 1745, "hash": "67ac06703295eacf46f28b73b01966d48432a57c82e255ea5d2b882e1e6a0540", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97854d10fc6c5219c18241b94d4fd44068b46fff7d956d5a2b0a08cfc836fa4d"} -2023-12-15T14:41:17.678Z INFO initializing dbft {"height": 1746, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:17.678Z debug frostfs-node/morph.go:229 new block {"index": 1745} -2023-12-15T14:41:18.010Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1745, "blockHeight": 1745, "took": "2.926133ms"} -2023-12-15T14:41:18.678Z INFO sending PrepareRequest {"height": 1746, "view": 0} -2023-12-15T14:41:18.678Z INFO sending Commit {"height": 1746, "view": 0} -2023-12-15T14:41:18.678Z INFO approving block {"height": 1746, "hash": "37b95fe87a9df0376004975cf103a081f406659d3ec26be41ca76b17f2454f58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67ac06703295eacf46f28b73b01966d48432a57c82e255ea5d2b882e1e6a0540"} -2023-12-15T14:41:18.679Z INFO initializing dbft {"height": 1747, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:18.679Z debug frostfs-node/morph.go:229 new block {"index": 1746} -2023-12-15T14:41:19.010Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1746, "blockHeight": 1746, "took": "2.662955ms"} -2023-12-15T14:41:19.679Z INFO sending PrepareRequest {"height": 1747, "view": 0} -2023-12-15T14:41:19.679Z INFO sending Commit {"height": 1747, "view": 0} -2023-12-15T14:41:19.680Z INFO approving block {"height": 1747, "hash": "97d0813850ef794b817635102bdf3c69f9d532e978d1908b84314e72bccf0ca3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37b95fe87a9df0376004975cf103a081f406659d3ec26be41ca76b17f2454f58"} -2023-12-15T14:41:19.681Z INFO initializing dbft {"height": 1748, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:19.681Z debug frostfs-node/morph.go:229 new block {"index": 1747} -2023-12-15T14:41:19.686Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 8 epoch for daughters"} -2023-12-15T14:41:19.687Z INFO runtime log {"tx": "f13adcd73688af89cddc3fc76cea15126116c6dac438333c66a1fb99399dd679", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:41:20.011Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1747, "blockHeight": 1747, "took": "3.256642ms"} -2023-12-15T14:41:20.681Z INFO sending PrepareRequest {"height": 1748, "view": 0} -2023-12-15T14:41:20.682Z INFO sending Commit {"height": 1748, "view": 0} -2023-12-15T14:41:20.682Z INFO approving block {"height": 1748, "hash": "2fef8f782e03c5339166afc66aeca9c24a55eab891dff1c7f552bddc0548dcc5", "tx_count": 1, "merkle": "2143bf7eec28b4eb54abb0b735803578aa4358c8d7ed0246f3a1581e0257282f", "prev": "97d0813850ef794b817635102bdf3c69f9d532e978d1908b84314e72bccf0ca3"} -2023-12-15T14:41:20.683Z INFO runtime log {"tx": "2f2857021e58a1f34602edd7c85843aa78358035b7b0ab54ebb428ec7ebf4321", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:41:20.684Z INFO initializing dbft {"height": 1749, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:20.684Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 8} -2023-12-15T14:41:20.684Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 8} -2023-12-15T14:41:20.685Z debug frostfs-node/morph.go:229 new block {"index": 1748} -2023-12-15T14:41:21.013Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 1748, "blockHeight": 1748, "took": "4.160158ms"} -2023-12-15T14:41:21.683Z INFO sending PrepareRequest {"height": 1749, "view": 0} -2023-12-15T14:41:21.683Z INFO sending Commit {"height": 1749, "view": 0} -2023-12-15T14:41:21.684Z INFO approving block {"height": 1749, "hash": "e53f29874cb9d12daf5f455f5c453ad09374bff8513c3cf28a33b8fb38f34738", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fef8f782e03c5339166afc66aeca9c24a55eab891dff1c7f552bddc0548dcc5"} -2023-12-15T14:41:21.685Z INFO initializing dbft {"height": 1750, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:21.685Z debug frostfs-node/morph.go:229 new block {"index": 1749} -2023-12-15T14:41:22.012Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1749, "blockHeight": 1749, "took": "3.399566ms"} -2023-12-15T14:41:22.684Z INFO sending PrepareRequest {"height": 1750, "view": 0} -2023-12-15T14:41:22.685Z INFO sending Commit {"height": 1750, "view": 0} -2023-12-15T14:41:22.685Z INFO approving block {"height": 1750, "hash": "9f9a3841c02e506c9480edf9fd2d150fbf119245a5658d348cd74fee3abc9462", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e53f29874cb9d12daf5f455f5c453ad09374bff8513c3cf28a33b8fb38f34738"} -2023-12-15T14:41:22.687Z INFO initializing dbft {"height": 1751, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:22.687Z debug frostfs-node/morph.go:229 new block {"index": 1750} -2023-12-15T14:41:23.013Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1750, "blockHeight": 1750, "took": "3.131752ms"} -2023-12-15T14:41:23.686Z INFO sending PrepareRequest {"height": 1751, "view": 0} -2023-12-15T14:41:23.686Z INFO sending Commit {"height": 1751, "view": 0} -2023-12-15T14:41:23.687Z INFO approving block {"height": 1751, "hash": "31c0fadbd0d291417649ae2237e5b89210720d925d0efca096a316a1143e08eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f9a3841c02e506c9480edf9fd2d150fbf119245a5658d348cd74fee3abc9462"} -2023-12-15T14:41:23.687Z INFO initializing dbft {"height": 1752, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:23.688Z debug frostfs-node/morph.go:229 new block {"index": 1751} -2023-12-15T14:41:24.015Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1751, "blockHeight": 1751, "took": "3.923721ms"} -2023-12-15T14:41:24.688Z INFO sending PrepareRequest {"height": 1752, "view": 0} -2023-12-15T14:41:24.688Z INFO sending Commit {"height": 1752, "view": 0} -2023-12-15T14:41:24.688Z INFO approving block {"height": 1752, "hash": "b1a4387f76d6945f6cea903a8f29def1305db1777c44d9a23c617de09a3aaf28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31c0fadbd0d291417649ae2237e5b89210720d925d0efca096a316a1143e08eb"} -2023-12-15T14:41:24.690Z INFO initializing dbft {"height": 1753, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:24.690Z debug frostfs-node/morph.go:229 new block {"index": 1752} -2023-12-15T14:41:25.015Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1752, "blockHeight": 1752, "took": "4.387648ms"} -2023-12-15T14:41:25.689Z INFO sending PrepareRequest {"height": 1753, "view": 0} -2023-12-15T14:41:25.689Z INFO sending Commit {"height": 1753, "view": 0} -2023-12-15T14:41:25.690Z INFO approving block {"height": 1753, "hash": "fa7b341bdf21e3de12460d58b458d7ed716b44dd0833ef26579cd7a1340b9575", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1a4387f76d6945f6cea903a8f29def1305db1777c44d9a23c617de09a3aaf28"} -2023-12-15T14:41:25.691Z INFO initializing dbft {"height": 1754, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:25.692Z debug frostfs-node/morph.go:229 new block {"index": 1753} -2023-12-15T14:41:26.015Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1753, "blockHeight": 1753, "took": "3.919174ms"} -2023-12-15T14:41:26.690Z INFO sending PrepareRequest {"height": 1754, "view": 0} -2023-12-15T14:41:26.690Z INFO sending Commit {"height": 1754, "view": 0} -2023-12-15T14:41:26.691Z INFO approving block {"height": 1754, "hash": "4a7ee987a3c22b83874f9060af8ffd6b8a201ccd7a440e7a6cbf6fb68ee86d63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa7b341bdf21e3de12460d58b458d7ed716b44dd0833ef26579cd7a1340b9575"} -2023-12-15T14:41:26.691Z INFO initializing dbft {"height": 1755, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:26.692Z debug frostfs-node/morph.go:229 new block {"index": 1754} -2023-12-15T14:41:27.016Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1754, "blockHeight": 1754, "took": "3.151301ms"} -2023-12-15T14:41:27.692Z INFO sending PrepareRequest {"height": 1755, "view": 0} -2023-12-15T14:41:27.692Z INFO sending Commit {"height": 1755, "view": 0} -2023-12-15T14:41:27.692Z INFO approving block {"height": 1755, "hash": "0fc2a11fed765a055eaa01bcb3de5b4027e4b29cf2a67f3caf57e30039f9c34e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a7ee987a3c22b83874f9060af8ffd6b8a201ccd7a440e7a6cbf6fb68ee86d63"} -2023-12-15T14:41:27.693Z INFO initializing dbft {"height": 1756, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:27.694Z debug frostfs-node/morph.go:229 new block {"index": 1755} -2023-12-15T14:41:28.017Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1755, "blockHeight": 1755, "took": "4.521152ms"} -2023-12-15T14:41:28.693Z INFO sending PrepareRequest {"height": 1756, "view": 0} -2023-12-15T14:41:28.693Z INFO sending Commit {"height": 1756, "view": 0} -2023-12-15T14:41:28.694Z INFO approving block {"height": 1756, "hash": "d4ed723f001845340096ccb4e4fa6592cbd015143840999835e5a62039f6906e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fc2a11fed765a055eaa01bcb3de5b4027e4b29cf2a67f3caf57e30039f9c34e"} -2023-12-15T14:41:28.695Z INFO initializing dbft {"height": 1757, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:28.695Z debug frostfs-node/morph.go:229 new block {"index": 1756} -2023-12-15T14:41:29.016Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1756, "blockHeight": 1756, "took": "2.747401ms"} -2023-12-15T14:41:29.695Z INFO sending PrepareRequest {"height": 1757, "view": 0} -2023-12-15T14:41:29.695Z INFO sending Commit {"height": 1757, "view": 0} -2023-12-15T14:41:29.695Z INFO approving block {"height": 1757, "hash": "160a33f4aa6df0d530b384fed836fa15cab01a565d814c116953c01e1bc24f1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4ed723f001845340096ccb4e4fa6592cbd015143840999835e5a62039f6906e"} -2023-12-15T14:41:29.696Z INFO initializing dbft {"height": 1758, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:29.697Z debug frostfs-node/morph.go:229 new block {"index": 1757} -2023-12-15T14:41:30.018Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1757, "blockHeight": 1757, "took": "3.955396ms"} -2023-12-15T14:41:30.696Z INFO sending PrepareRequest {"height": 1758, "view": 0} -2023-12-15T14:41:30.697Z INFO sending Commit {"height": 1758, "view": 0} -2023-12-15T14:41:30.697Z INFO approving block {"height": 1758, "hash": "eebfe7afd7d12266bfde091b523fb19c7f47f6ff3be6ee802dc71418f3703a74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "160a33f4aa6df0d530b384fed836fa15cab01a565d814c116953c01e1bc24f1b"} -2023-12-15T14:41:30.698Z INFO initializing dbft {"height": 1759, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:30.699Z debug frostfs-node/morph.go:229 new block {"index": 1758} -2023-12-15T14:41:31.019Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1758, "blockHeight": 1758, "took": "4.465911ms"} -2023-12-15T14:41:31.698Z INFO sending PrepareRequest {"height": 1759, "view": 0} -2023-12-15T14:41:31.698Z INFO sending Commit {"height": 1759, "view": 0} -2023-12-15T14:41:31.698Z INFO approving block {"height": 1759, "hash": "cbc92c859789d13ad4daa21093ad380c766af75f1839bcdc786a6dd796d53da6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eebfe7afd7d12266bfde091b523fb19c7f47f6ff3be6ee802dc71418f3703a74"} -2023-12-15T14:41:31.699Z INFO initializing dbft {"height": 1760, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:31.699Z debug frostfs-node/morph.go:229 new block {"index": 1759} -2023-12-15T14:41:32.018Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1759, "blockHeight": 1759, "took": "3.155173ms"} -2023-12-15T14:41:32.699Z INFO sending PrepareRequest {"height": 1760, "view": 0} -2023-12-15T14:41:32.700Z INFO sending Commit {"height": 1760, "view": 0} -2023-12-15T14:41:32.700Z INFO approving block {"height": 1760, "hash": "172e76a0a9c9fe452ebfb7916f8fe53e493bf2e7f4bf57f2a1253c9ab93043f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbc92c859789d13ad4daa21093ad380c766af75f1839bcdc786a6dd796d53da6"} -2023-12-15T14:41:32.701Z INFO initializing dbft {"height": 1761, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:32.702Z debug frostfs-node/morph.go:229 new block {"index": 1760} -2023-12-15T14:41:33.019Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1760, "blockHeight": 1760, "took": "3.238045ms"} -2023-12-15T14:41:33.701Z INFO sending PrepareRequest {"height": 1761, "view": 0} -2023-12-15T14:41:33.701Z INFO sending Commit {"height": 1761, "view": 0} -2023-12-15T14:41:33.701Z INFO approving block {"height": 1761, "hash": "0e02e7bec81e23affe23bef3fdb23e46ed5ea75f5391a455fd92d309b04ced24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "172e76a0a9c9fe452ebfb7916f8fe53e493bf2e7f4bf57f2a1253c9ab93043f4"} -2023-12-15T14:41:33.702Z INFO initializing dbft {"height": 1762, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:33.703Z debug frostfs-node/morph.go:229 new block {"index": 1761} -2023-12-15T14:41:34.020Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1761, "blockHeight": 1761, "took": "4.181293ms"} -2023-12-15T14:41:34.702Z INFO sending PrepareRequest {"height": 1762, "view": 0} -2023-12-15T14:41:34.702Z INFO sending Commit {"height": 1762, "view": 0} -2023-12-15T14:41:34.702Z INFO approving block {"height": 1762, "hash": "23d70fdbb846ca451c9b95ee3666b31a50f53c61f8ff6c7b738d4747e51e4bc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e02e7bec81e23affe23bef3fdb23e46ed5ea75f5391a455fd92d309b04ced24"} -2023-12-15T14:41:34.703Z INFO initializing dbft {"height": 1763, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:34.703Z debug frostfs-node/morph.go:229 new block {"index": 1762} -2023-12-15T14:41:35.019Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1762, "blockHeight": 1762, "took": "2.72737ms"} -2023-12-15T14:41:35.703Z INFO sending PrepareRequest {"height": 1763, "view": 0} -2023-12-15T14:41:35.703Z INFO sending Commit {"height": 1763, "view": 0} -2023-12-15T14:41:35.704Z INFO approving block {"height": 1763, "hash": "9d3d758b86197da03f2f3757e1e0594a77ca754156be27e2be90896d2314d94f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23d70fdbb846ca451c9b95ee3666b31a50f53c61f8ff6c7b738d4747e51e4bc5"} -2023-12-15T14:41:35.704Z INFO initializing dbft {"height": 1764, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:35.705Z debug frostfs-node/morph.go:229 new block {"index": 1763} -2023-12-15T14:41:36.023Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1763, "blockHeight": 1763, "took": "6.055416ms"} -2023-12-15T14:41:36.705Z INFO sending PrepareRequest {"height": 1764, "view": 0} -2023-12-15T14:41:36.705Z INFO sending Commit {"height": 1764, "view": 0} -2023-12-15T14:41:36.705Z INFO approving block {"height": 1764, "hash": "9ae054069168b8d4110f01396e3a79e3ec7a5b14be97214a3deea62a53201940", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d3d758b86197da03f2f3757e1e0594a77ca754156be27e2be90896d2314d94f"} -2023-12-15T14:41:36.706Z INFO initializing dbft {"height": 1765, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:36.706Z debug frostfs-node/morph.go:229 new block {"index": 1764} -2023-12-15T14:41:37.021Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1764, "blockHeight": 1764, "took": "4.390396ms"} -2023-12-15T14:41:37.706Z INFO sending PrepareRequest {"height": 1765, "view": 0} -2023-12-15T14:41:37.707Z INFO sending Commit {"height": 1765, "view": 0} -2023-12-15T14:41:37.707Z INFO approving block {"height": 1765, "hash": "2e512e1be1e4283eb0f851ec5f43defc79e7018f7450ff432de84657dd9004f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ae054069168b8d4110f01396e3a79e3ec7a5b14be97214a3deea62a53201940"} -2023-12-15T14:41:37.708Z INFO initializing dbft {"height": 1766, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:37.709Z debug frostfs-node/morph.go:229 new block {"index": 1765} -2023-12-15T14:41:38.021Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1765, "blockHeight": 1765, "took": "3.235705ms"} -2023-12-15T14:41:38.708Z INFO sending PrepareRequest {"height": 1766, "view": 0} -2023-12-15T14:41:38.708Z INFO sending Commit {"height": 1766, "view": 0} -2023-12-15T14:41:38.708Z INFO approving block {"height": 1766, "hash": "c5fb5c9e146a4699f1d367003e96601dcaaf8bbdfd2f53e6a64fe9c28c918e2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e512e1be1e4283eb0f851ec5f43defc79e7018f7450ff432de84657dd9004f6"} -2023-12-15T14:41:38.709Z INFO initializing dbft {"height": 1767, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:38.710Z debug frostfs-node/morph.go:229 new block {"index": 1766} -2023-12-15T14:41:39.022Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1766, "blockHeight": 1766, "took": "3.871453ms"} -2023-12-15T14:41:39.709Z INFO sending PrepareRequest {"height": 1767, "view": 0} -2023-12-15T14:41:39.709Z INFO sending Commit {"height": 1767, "view": 0} -2023-12-15T14:41:39.710Z INFO approving block {"height": 1767, "hash": "49442cf1116b5ff8a6246920895e75c0492006ac91f80ba8ebae3423ac41dc2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5fb5c9e146a4699f1d367003e96601dcaaf8bbdfd2f53e6a64fe9c28c918e2e"} -2023-12-15T14:41:39.713Z INFO initializing dbft {"height": 1768, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:39.714Z debug frostfs-node/morph.go:229 new block {"index": 1767} -2023-12-15T14:41:39.716Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:41:39.719Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:41:39.719Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:41:40.023Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1767, "blockHeight": 1767, "took": "4.251526ms"} -2023-12-15T14:41:40.712Z INFO sending PrepareRequest {"height": 1768, "view": 0} -2023-12-15T14:41:40.712Z INFO sending Commit {"height": 1768, "view": 0} -2023-12-15T14:41:40.712Z INFO approving block {"height": 1768, "hash": "b10987c3c8bacdc5ca280e31db1029246cadb8889ef3d793d4dcd8e7f137bd98", "tx_count": 2, "merkle": "31114ad2304580b360fa8166fa15eb2cef12eb4cb26cf167f7ff59013293cb7b", "prev": "49442cf1116b5ff8a6246920895e75c0492006ac91f80ba8ebae3423ac41dc2b"} -2023-12-15T14:41:40.713Z INFO runtime log {"tx": "2977de43b1f6e61e3f6279b8a302076d30cb042f5b9976e074878bfbc8cc4fc8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:41:40.713Z INFO runtime log {"tx": "2977de43b1f6e61e3f6279b8a302076d30cb042f5b9976e074878bfbc8cc4fc8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:41:40.714Z INFO initializing dbft {"height": 1769, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:40.715Z debug frostfs-node/morph.go:229 new block {"index": 1768} -2023-12-15T14:41:41.024Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1768, "blockHeight": 1768, "took": "4.397871ms"} -2023-12-15T14:41:41.713Z INFO sending PrepareRequest {"height": 1769, "view": 0} -2023-12-15T14:41:41.714Z INFO sending Commit {"height": 1769, "view": 0} -2023-12-15T14:41:41.714Z INFO approving block {"height": 1769, "hash": "46371245bd024e75e5066272e78f35e677db60aaca9c89d56cac85e25f96c453", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b10987c3c8bacdc5ca280e31db1029246cadb8889ef3d793d4dcd8e7f137bd98"} -2023-12-15T14:41:41.715Z INFO initializing dbft {"height": 1770, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:41.716Z debug frostfs-node/morph.go:229 new block {"index": 1769} -2023-12-15T14:41:42.024Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1769, "blockHeight": 1769, "took": "3.901862ms"} -2023-12-15T14:41:42.715Z INFO sending PrepareRequest {"height": 1770, "view": 0} -2023-12-15T14:41:42.715Z INFO sending Commit {"height": 1770, "view": 0} -2023-12-15T14:41:42.716Z INFO approving block {"height": 1770, "hash": "2a481ee6c9357299df24d71c00bad96def840cee25b46ba7b56de01e99c95701", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46371245bd024e75e5066272e78f35e677db60aaca9c89d56cac85e25f96c453"} -2023-12-15T14:41:42.718Z INFO initializing dbft {"height": 1771, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:42.718Z debug frostfs-node/morph.go:229 new block {"index": 1770} -2023-12-15T14:41:43.025Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1770, "blockHeight": 1770, "took": "4.305691ms"} -2023-12-15T14:41:43.717Z INFO sending PrepareRequest {"height": 1771, "view": 0} -2023-12-15T14:41:43.718Z INFO sending Commit {"height": 1771, "view": 0} -2023-12-15T14:41:43.718Z INFO approving block {"height": 1771, "hash": "5abcfaeaa7a2ea9cf6be3f48a530f7a2ba805b2c391291266a9c3b66701afee2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a481ee6c9357299df24d71c00bad96def840cee25b46ba7b56de01e99c95701"} -2023-12-15T14:41:43.719Z INFO initializing dbft {"height": 1772, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:43.720Z debug frostfs-node/morph.go:229 new block {"index": 1771} -2023-12-15T14:41:44.024Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1771, "blockHeight": 1771, "took": "2.689769ms"} -2023-12-15T14:41:44.719Z INFO sending PrepareRequest {"height": 1772, "view": 0} -2023-12-15T14:41:44.719Z INFO sending Commit {"height": 1772, "view": 0} -2023-12-15T14:41:44.719Z INFO approving block {"height": 1772, "hash": "542b6e3c070db683ef68cbccb4e018fd51945dcd5984a888fc4b15ed64dfeeab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5abcfaeaa7a2ea9cf6be3f48a530f7a2ba805b2c391291266a9c3b66701afee2"} -2023-12-15T14:41:44.721Z INFO initializing dbft {"height": 1773, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:44.721Z debug frostfs-node/morph.go:229 new block {"index": 1772} -2023-12-15T14:41:45.026Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1772, "blockHeight": 1772, "took": "4.086119ms"} -2023-12-15T14:41:45.720Z INFO sending PrepareRequest {"height": 1773, "view": 0} -2023-12-15T14:41:45.721Z INFO sending Commit {"height": 1773, "view": 0} -2023-12-15T14:41:45.721Z INFO approving block {"height": 1773, "hash": "42082da2d73a386f2e6d6621165103caa5b97c7b9f86dbd9692f4afb0bf57a5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "542b6e3c070db683ef68cbccb4e018fd51945dcd5984a888fc4b15ed64dfeeab"} -2023-12-15T14:41:45.722Z INFO initializing dbft {"height": 1774, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:45.723Z debug frostfs-node/morph.go:229 new block {"index": 1773} -2023-12-15T14:41:46.026Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1773, "blockHeight": 1773, "took": "3.986634ms"} -2023-12-15T14:41:46.722Z INFO sending PrepareRequest {"height": 1774, "view": 0} -2023-12-15T14:41:46.722Z INFO sending Commit {"height": 1774, "view": 0} -2023-12-15T14:41:46.722Z INFO approving block {"height": 1774, "hash": "340098717c923b6fdd0d52ba0a20e36a4c1c0746686392cefcd87d863a07e738", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42082da2d73a386f2e6d6621165103caa5b97c7b9f86dbd9692f4afb0bf57a5b"} -2023-12-15T14:41:46.723Z INFO initializing dbft {"height": 1775, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:46.723Z debug frostfs-node/morph.go:229 new block {"index": 1774} -2023-12-15T14:41:47.027Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1774, "blockHeight": 1774, "took": "4.588787ms"} -2023-12-15T14:41:47.723Z INFO sending PrepareRequest {"height": 1775, "view": 0} -2023-12-15T14:41:47.723Z INFO sending Commit {"height": 1775, "view": 0} -2023-12-15T14:41:47.723Z INFO approving block {"height": 1775, "hash": "f73cd66e95d3eef177cfeefe0d2c543529bd2660d31222fe75449be63d722f3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "340098717c923b6fdd0d52ba0a20e36a4c1c0746686392cefcd87d863a07e738"} -2023-12-15T14:41:47.724Z INFO initializing dbft {"height": 1776, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:47.725Z debug frostfs-node/morph.go:229 new block {"index": 1775} -2023-12-15T14:41:48.027Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1775, "blockHeight": 1775, "took": "4.188854ms"} -2023-12-15T14:41:48.725Z INFO sending PrepareRequest {"height": 1776, "view": 0} -2023-12-15T14:41:48.725Z INFO sending Commit {"height": 1776, "view": 0} -2023-12-15T14:41:48.726Z INFO approving block {"height": 1776, "hash": "c0c0b1e3c5a640ed7dbb4823d05d9b026e4dc907f123f37aa780ce22ebee76e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f73cd66e95d3eef177cfeefe0d2c543529bd2660d31222fe75449be63d722f3e"} -2023-12-15T14:41:48.727Z INFO initializing dbft {"height": 1777, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:48.728Z debug frostfs-node/morph.go:229 new block {"index": 1776} -2023-12-15T14:41:49.028Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1776, "blockHeight": 1776, "took": "3.978003ms"} -2023-12-15T14:41:49.727Z INFO sending PrepareRequest {"height": 1777, "view": 0} -2023-12-15T14:41:49.728Z INFO sending Commit {"height": 1777, "view": 0} -2023-12-15T14:41:49.728Z INFO approving block {"height": 1777, "hash": "84ef0550f17f862f4e2c16e869db6640d5d82521593be9fbf5b2adbf2d6c750f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0c0b1e3c5a640ed7dbb4823d05d9b026e4dc907f123f37aa780ce22ebee76e2"} -2023-12-15T14:41:49.729Z INFO initializing dbft {"height": 1778, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:49.729Z debug frostfs-node/morph.go:229 new block {"index": 1777} -2023-12-15T14:41:50.028Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1777, "blockHeight": 1777, "took": "3.988847ms"} -2023-12-15T14:41:50.729Z INFO sending PrepareRequest {"height": 1778, "view": 0} -2023-12-15T14:41:50.729Z INFO sending Commit {"height": 1778, "view": 0} -2023-12-15T14:41:50.729Z INFO approving block {"height": 1778, "hash": "e62e76a5b6fc51cf415f8005e52496bc1b4f67076fd9f5730fcb0583db3766a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84ef0550f17f862f4e2c16e869db6640d5d82521593be9fbf5b2adbf2d6c750f"} -2023-12-15T14:41:50.730Z INFO initializing dbft {"height": 1779, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:50.730Z debug frostfs-node/morph.go:229 new block {"index": 1778} -2023-12-15T14:41:51.028Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1778, "blockHeight": 1778, "took": "2.814549ms"} -2023-12-15T14:41:51.730Z INFO sending PrepareRequest {"height": 1779, "view": 0} -2023-12-15T14:41:51.731Z INFO sending Commit {"height": 1779, "view": 0} -2023-12-15T14:41:51.731Z INFO approving block {"height": 1779, "hash": "dddde606f4b6040d5982e7edf199cc2a37310f1af869e9b079b99505a7f81aee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e62e76a5b6fc51cf415f8005e52496bc1b4f67076fd9f5730fcb0583db3766a1"} -2023-12-15T14:41:51.732Z INFO initializing dbft {"height": 1780, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:51.733Z debug frostfs-node/morph.go:229 new block {"index": 1779} -2023-12-15T14:41:52.028Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1779, "blockHeight": 1779, "took": "2.870071ms"} -2023-12-15T14:41:52.732Z INFO sending PrepareRequest {"height": 1780, "view": 0} -2023-12-15T14:41:52.732Z INFO sending Commit {"height": 1780, "view": 0} -2023-12-15T14:41:52.732Z INFO approving block {"height": 1780, "hash": "2a5ab1bcc510151869e3402abc49045b28d61068d0334e5fbcd5698e1a7231ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dddde606f4b6040d5982e7edf199cc2a37310f1af869e9b079b99505a7f81aee"} -2023-12-15T14:41:52.734Z INFO initializing dbft {"height": 1781, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:52.734Z debug frostfs-node/morph.go:229 new block {"index": 1780} -2023-12-15T14:41:53.030Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1780, "blockHeight": 1780, "took": "4.126454ms"} -2023-12-15T14:41:53.733Z INFO sending PrepareRequest {"height": 1781, "view": 0} -2023-12-15T14:41:53.733Z INFO sending Commit {"height": 1781, "view": 0} -2023-12-15T14:41:53.733Z INFO approving block {"height": 1781, "hash": "5047b75338cfcc0779aa880230e3653a16ed60078946b0bd1d35beb3c1ea3af8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a5ab1bcc510151869e3402abc49045b28d61068d0334e5fbcd5698e1a7231ea"} -2023-12-15T14:41:53.734Z INFO initializing dbft {"height": 1782, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:53.734Z debug frostfs-node/morph.go:229 new block {"index": 1781} -2023-12-15T14:41:54.032Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1781, "blockHeight": 1781, "took": "6.227892ms"} -2023-12-15T14:41:54.734Z INFO sending PrepareRequest {"height": 1782, "view": 0} -2023-12-15T14:41:54.735Z INFO sending Commit {"height": 1782, "view": 0} -2023-12-15T14:41:54.735Z INFO approving block {"height": 1782, "hash": "6c75954ac23a1711b837987e52279e226a014d40e4d61a3715f5a765582a6b9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5047b75338cfcc0779aa880230e3653a16ed60078946b0bd1d35beb3c1ea3af8"} -2023-12-15T14:41:54.736Z INFO initializing dbft {"height": 1783, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:54.737Z debug frostfs-node/morph.go:229 new block {"index": 1782} -2023-12-15T14:41:55.034Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1782, "blockHeight": 1782, "took": "7.266045ms"} -2023-12-15T14:41:55.737Z INFO sending PrepareRequest {"height": 1783, "view": 0} -2023-12-15T14:41:55.737Z INFO sending Commit {"height": 1783, "view": 0} -2023-12-15T14:41:55.737Z INFO approving block {"height": 1783, "hash": "2184ffb8fd35760642167bb2a4bd7c7f9f96e74c30559856bd29d38803c5ab7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c75954ac23a1711b837987e52279e226a014d40e4d61a3715f5a765582a6b9f"} -2023-12-15T14:41:55.739Z INFO initializing dbft {"height": 1784, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:55.739Z debug frostfs-node/morph.go:229 new block {"index": 1783} -2023-12-15T14:41:56.032Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1783, "blockHeight": 1783, "took": "5.294161ms"} -2023-12-15T14:41:56.738Z INFO sending PrepareRequest {"height": 1784, "view": 0} -2023-12-15T14:41:56.739Z INFO sending Commit {"height": 1784, "view": 0} -2023-12-15T14:41:56.739Z INFO approving block {"height": 1784, "hash": "533d2fffed994591f6bcdee56a54edde1560a1f9196636823484fc1cbb0b3a99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2184ffb8fd35760642167bb2a4bd7c7f9f96e74c30559856bd29d38803c5ab7a"} -2023-12-15T14:41:56.740Z INFO initializing dbft {"height": 1785, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:56.741Z debug frostfs-node/morph.go:229 new block {"index": 1784} -2023-12-15T14:41:57.030Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1784, "blockHeight": 1784, "took": "2.778051ms"} -2023-12-15T14:41:57.740Z INFO sending PrepareRequest {"height": 1785, "view": 0} -2023-12-15T14:41:57.741Z INFO sending Commit {"height": 1785, "view": 0} -2023-12-15T14:41:57.741Z INFO approving block {"height": 1785, "hash": "5bdb7dc7fa3f72d201976a57e9329540eb3f3adc5a9a1d0529a569e073f0a8f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "533d2fffed994591f6bcdee56a54edde1560a1f9196636823484fc1cbb0b3a99"} -2023-12-15T14:41:57.743Z INFO initializing dbft {"height": 1786, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:57.743Z debug frostfs-node/morph.go:229 new block {"index": 1785} -2023-12-15T14:41:58.031Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1785, "blockHeight": 1785, "took": "2.703959ms"} -2023-12-15T14:41:58.742Z INFO sending PrepareRequest {"height": 1786, "view": 0} -2023-12-15T14:41:58.742Z INFO sending Commit {"height": 1786, "view": 0} -2023-12-15T14:41:58.743Z INFO approving block {"height": 1786, "hash": "c7e756956883d11b7cfbe4de19a39c705f5e8b45ef440cb50602ab2c4bf48315", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5bdb7dc7fa3f72d201976a57e9329540eb3f3adc5a9a1d0529a569e073f0a8f2"} -2023-12-15T14:41:58.743Z INFO initializing dbft {"height": 1787, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:58.744Z debug frostfs-node/morph.go:229 new block {"index": 1786} -2023-12-15T14:41:59.033Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1786, "blockHeight": 1786, "took": "4.729378ms"} -2023-12-15T14:41:59.744Z INFO sending PrepareRequest {"height": 1787, "view": 0} -2023-12-15T14:41:59.744Z INFO sending Commit {"height": 1787, "view": 0} -2023-12-15T14:41:59.744Z INFO approving block {"height": 1787, "hash": "20afc18490847d9bb6eeb256f0e25d9ec2fa65b83c77c1bf264e008c6d46d4cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7e756956883d11b7cfbe4de19a39c705f5e8b45ef440cb50602ab2c4bf48315"} -2023-12-15T14:41:59.745Z INFO initializing dbft {"height": 1788, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:41:59.746Z debug frostfs-node/morph.go:229 new block {"index": 1787} -2023-12-15T14:42:00.033Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1787, "blockHeight": 1787, "took": "3.946696ms"} -2023-12-15T14:42:00.745Z INFO sending PrepareRequest {"height": 1788, "view": 0} -2023-12-15T14:42:00.745Z INFO sending Commit {"height": 1788, "view": 0} -2023-12-15T14:42:00.746Z INFO approving block {"height": 1788, "hash": "3690c7c29f2c9c414410a65d2a96afaf006d174aa4ffdf0486b53e3815397cf6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20afc18490847d9bb6eeb256f0e25d9ec2fa65b83c77c1bf264e008c6d46d4cb"} -2023-12-15T14:42:00.746Z INFO initializing dbft {"height": 1789, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:00.747Z debug frostfs-node/morph.go:229 new block {"index": 1788} -2023-12-15T14:42:01.035Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1788, "blockHeight": 1788, "took": "5.543346ms"} -2023-12-15T14:42:01.747Z INFO sending PrepareRequest {"height": 1789, "view": 0} -2023-12-15T14:42:01.747Z INFO sending Commit {"height": 1789, "view": 0} -2023-12-15T14:42:01.747Z INFO approving block {"height": 1789, "hash": "57d81c2c760e70c79bf667a3eb9eeff5f56d70709275f6b2975ad7b11b722ada", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3690c7c29f2c9c414410a65d2a96afaf006d174aa4ffdf0486b53e3815397cf6"} -2023-12-15T14:42:01.748Z INFO initializing dbft {"height": 1790, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:01.748Z debug frostfs-node/morph.go:229 new block {"index": 1789} -2023-12-15T14:42:02.033Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1789, "blockHeight": 1789, "took": "2.684029ms"} -2023-12-15T14:42:02.748Z INFO sending PrepareRequest {"height": 1790, "view": 0} -2023-12-15T14:42:02.748Z INFO sending Commit {"height": 1790, "view": 0} -2023-12-15T14:42:02.748Z INFO approving block {"height": 1790, "hash": "b7dbdf657becc4b77d4c38f7078b5c5eb0d52648a1e6244029ac2b6d1169a7a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57d81c2c760e70c79bf667a3eb9eeff5f56d70709275f6b2975ad7b11b722ada"} -2023-12-15T14:42:02.749Z INFO initializing dbft {"height": 1791, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:02.750Z debug frostfs-node/morph.go:229 new block {"index": 1790} -2023-12-15T14:42:03.036Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1790, "blockHeight": 1790, "took": "6.178811ms"} -2023-12-15T14:42:03.750Z INFO sending PrepareRequest {"height": 1791, "view": 0} -2023-12-15T14:42:03.750Z INFO sending Commit {"height": 1791, "view": 0} -2023-12-15T14:42:03.750Z INFO approving block {"height": 1791, "hash": "f7074879749c5a4fd7987ca439df4ef50126840166899cb3b990fc6035bbbe28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7dbdf657becc4b77d4c38f7078b5c5eb0d52648a1e6244029ac2b6d1169a7a7"} -2023-12-15T14:42:03.752Z INFO initializing dbft {"height": 1792, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:03.752Z debug frostfs-node/morph.go:229 new block {"index": 1791} -2023-12-15T14:42:04.033Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 1791, "blockHeight": 1791, "took": "2.621007ms"} -2023-12-15T14:42:04.751Z INFO sending PrepareRequest {"height": 1792, "view": 0} -2023-12-15T14:42:04.751Z INFO sending Commit {"height": 1792, "view": 0} -2023-12-15T14:42:04.752Z INFO approving block {"height": 1792, "hash": "3413821d08ec587626be3d67cffd19e035e8d63ada2a0f6550ddf63df6be9781", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7074879749c5a4fd7987ca439df4ef50126840166899cb3b990fc6035bbbe28"} -2023-12-15T14:42:04.753Z INFO initializing dbft {"height": 1793, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:04.754Z debug frostfs-node/morph.go:229 new block {"index": 1792} -2023-12-15T14:42:05.035Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1792, "blockHeight": 1792, "took": "3.846162ms"} -2023-12-15T14:42:05.752Z INFO sending PrepareRequest {"height": 1793, "view": 0} -2023-12-15T14:42:05.752Z INFO sending Commit {"height": 1793, "view": 0} -2023-12-15T14:42:05.753Z INFO approving block {"height": 1793, "hash": "d60feedc07758b815a63432d452ed8505d4c4363e37028880625224ed457c662", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3413821d08ec587626be3d67cffd19e035e8d63ada2a0f6550ddf63df6be9781"} -2023-12-15T14:42:05.754Z INFO initializing dbft {"height": 1794, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:05.754Z debug frostfs-node/morph.go:229 new block {"index": 1793} -2023-12-15T14:42:06.036Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1793, "blockHeight": 1793, "took": "4.414889ms"} -2023-12-15T14:42:06.753Z INFO sending PrepareRequest {"height": 1794, "view": 0} -2023-12-15T14:42:06.753Z INFO sending Commit {"height": 1794, "view": 0} -2023-12-15T14:42:06.754Z INFO approving block {"height": 1794, "hash": "cb19088b241de2f90e8c8d4519d9fde710a9a41902c7dc565ec6d93d04bbfa34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d60feedc07758b815a63432d452ed8505d4c4363e37028880625224ed457c662"} -2023-12-15T14:42:06.755Z INFO initializing dbft {"height": 1795, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:06.755Z debug frostfs-node/morph.go:229 new block {"index": 1794} -2023-12-15T14:42:07.037Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1794, "blockHeight": 1794, "took": "4.45817ms"} -2023-12-15T14:42:07.755Z INFO sending PrepareRequest {"height": 1795, "view": 0} -2023-12-15T14:42:07.755Z INFO sending Commit {"height": 1795, "view": 0} -2023-12-15T14:42:07.756Z INFO approving block {"height": 1795, "hash": "b21f8d8add5ec6ba6384094a275011f0b4121c08649d4cf332dbafcfd7f3c66e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb19088b241de2f90e8c8d4519d9fde710a9a41902c7dc565ec6d93d04bbfa34"} -2023-12-15T14:42:07.757Z INFO initializing dbft {"height": 1796, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:07.758Z debug frostfs-node/morph.go:229 new block {"index": 1795} -2023-12-15T14:42:08.037Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1795, "blockHeight": 1795, "took": "3.252304ms"} -2023-12-15T14:42:08.757Z INFO sending PrepareRequest {"height": 1796, "view": 0} -2023-12-15T14:42:08.757Z INFO sending Commit {"height": 1796, "view": 0} -2023-12-15T14:42:08.757Z INFO approving block {"height": 1796, "hash": "e52138d0f672c42592970574c88a69b692920f4f4d2cc48432fe63a9c540dd68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b21f8d8add5ec6ba6384094a275011f0b4121c08649d4cf332dbafcfd7f3c66e"} -2023-12-15T14:42:08.758Z INFO initializing dbft {"height": 1797, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:08.759Z debug frostfs-node/morph.go:229 new block {"index": 1796} -2023-12-15T14:42:09.038Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1796, "blockHeight": 1796, "took": "3.606922ms"} -2023-12-15T14:42:09.758Z INFO sending PrepareRequest {"height": 1797, "view": 0} -2023-12-15T14:42:09.759Z INFO sending Commit {"height": 1797, "view": 0} -2023-12-15T14:42:09.759Z INFO approving block {"height": 1797, "hash": "5d908dd1b1f1e37dfc29585eee6449e431154e435d83fb24411ca65110825221", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e52138d0f672c42592970574c88a69b692920f4f4d2cc48432fe63a9c540dd68"} -2023-12-15T14:42:09.760Z INFO initializing dbft {"height": 1798, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:09.761Z debug frostfs-node/morph.go:229 new block {"index": 1797} -2023-12-15T14:42:10.037Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1797, "blockHeight": 1797, "took": "2.626286ms"} -2023-12-15T14:42:10.760Z INFO sending PrepareRequest {"height": 1798, "view": 0} -2023-12-15T14:42:10.760Z INFO sending Commit {"height": 1798, "view": 0} -2023-12-15T14:42:10.760Z INFO approving block {"height": 1798, "hash": "25ba89285cf67e714696f0674b3e71c361ab38b59812a0d412480d959512552b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d908dd1b1f1e37dfc29585eee6449e431154e435d83fb24411ca65110825221"} -2023-12-15T14:42:10.762Z INFO initializing dbft {"height": 1799, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:10.762Z debug frostfs-node/morph.go:229 new block {"index": 1798} -2023-12-15T14:42:11.039Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1798, "blockHeight": 1798, "took": "3.955585ms"} -2023-12-15T14:42:11.761Z INFO sending PrepareRequest {"height": 1799, "view": 0} -2023-12-15T14:42:11.762Z INFO sending Commit {"height": 1799, "view": 0} -2023-12-15T14:42:11.762Z INFO approving block {"height": 1799, "hash": "89406400adb5dfdca244ea2f1c0c57d9a81b62dec4d6b1b42bb76c90d1290b7e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25ba89285cf67e714696f0674b3e71c361ab38b59812a0d412480d959512552b"} -2023-12-15T14:42:11.763Z INFO initializing dbft {"height": 1800, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:11.764Z debug frostfs-node/morph.go:229 new block {"index": 1799} -2023-12-15T14:42:12.040Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1799, "blockHeight": 1799, "took": "4.88635ms"} -2023-12-15T14:42:12.763Z INFO sending PrepareRequest {"height": 1800, "view": 0} -2023-12-15T14:42:12.763Z INFO sending Commit {"height": 1800, "view": 0} -2023-12-15T14:42:12.764Z INFO approving block {"height": 1800, "hash": "61173f75c056e327be7abb7fe66a94a284cc834402b8caf79637f0ef74d21b99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89406400adb5dfdca244ea2f1c0c57d9a81b62dec4d6b1b42bb76c90d1290b7e"} -2023-12-15T14:42:12.766Z INFO initializing dbft {"height": 1801, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:12.767Z debug frostfs-node/morph.go:229 new block {"index": 1800} -2023-12-15T14:42:13.038Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1800, "blockHeight": 1800, "took": "2.678679ms"} -2023-12-15T14:42:13.764Z INFO sending PrepareRequest {"height": 1801, "view": 0} -2023-12-15T14:42:13.764Z INFO sending Commit {"height": 1801, "view": 0} -2023-12-15T14:42:13.765Z INFO approving block {"height": 1801, "hash": "f9d245cc9dbec9fe0cd6cc71da843641fdb815f67611dd60f170945095792229", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61173f75c056e327be7abb7fe66a94a284cc834402b8caf79637f0ef74d21b99"} -2023-12-15T14:42:13.765Z INFO initializing dbft {"height": 1802, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:13.766Z debug frostfs-node/morph.go:229 new block {"index": 1801} -2023-12-15T14:42:14.039Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1801, "blockHeight": 1801, "took": "3.047939ms"} -2023-12-15T14:42:14.765Z INFO sending PrepareRequest {"height": 1802, "view": 0} -2023-12-15T14:42:14.765Z INFO sending Commit {"height": 1802, "view": 0} -2023-12-15T14:42:14.765Z INFO approving block {"height": 1802, "hash": "960f86ab84253ddca59c65a226384acdb821a8310ceae61694805f1aeb2b881c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9d245cc9dbec9fe0cd6cc71da843641fdb815f67611dd60f170945095792229"} -2023-12-15T14:42:14.766Z INFO initializing dbft {"height": 1803, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:14.767Z debug frostfs-node/morph.go:229 new block {"index": 1802} -2023-12-15T14:42:15.042Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1802, "blockHeight": 1802, "took": "4.297025ms"} -2023-12-15T14:42:15.767Z INFO sending PrepareRequest {"height": 1803, "view": 0} -2023-12-15T14:42:15.767Z INFO sending Commit {"height": 1803, "view": 0} -2023-12-15T14:42:15.767Z INFO approving block {"height": 1803, "hash": "98e89f13543d5fcbd17b7c75c9270eb0be74fc6fcb675c8ac2aa28f4311c3baa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "960f86ab84253ddca59c65a226384acdb821a8310ceae61694805f1aeb2b881c"} -2023-12-15T14:42:15.769Z INFO initializing dbft {"height": 1804, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:15.769Z debug frostfs-node/morph.go:229 new block {"index": 1803} -2023-12-15T14:42:16.042Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1803, "blockHeight": 1803, "took": "4.228923ms"} -2023-12-15T14:42:16.768Z INFO sending PrepareRequest {"height": 1804, "view": 0} -2023-12-15T14:42:16.768Z INFO sending Commit {"height": 1804, "view": 0} -2023-12-15T14:42:16.768Z INFO approving block {"height": 1804, "hash": "b83255f03911a48ba3bba01095edfe215ea39a24442979a84013cd6c18649bee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98e89f13543d5fcbd17b7c75c9270eb0be74fc6fcb675c8ac2aa28f4311c3baa"} -2023-12-15T14:42:16.769Z INFO initializing dbft {"height": 1805, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:16.769Z debug frostfs-node/morph.go:229 new block {"index": 1804} -2023-12-15T14:42:17.041Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1804, "blockHeight": 1804, "took": "3.001457ms"} -2023-12-15T14:42:17.769Z INFO sending PrepareRequest {"height": 1805, "view": 0} -2023-12-15T14:42:17.769Z INFO sending Commit {"height": 1805, "view": 0} -2023-12-15T14:42:17.770Z INFO approving block {"height": 1805, "hash": "fb247988d167ea5d1cb09c19ba4854ac714616790c77bcbc99bfa8d2a0f45472", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b83255f03911a48ba3bba01095edfe215ea39a24442979a84013cd6c18649bee"} -2023-12-15T14:42:17.771Z INFO initializing dbft {"height": 1806, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:17.771Z debug frostfs-node/morph.go:229 new block {"index": 1805} -2023-12-15T14:42:18.043Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1805, "blockHeight": 1805, "took": "3.330275ms"} -2023-12-15T14:42:18.770Z INFO sending PrepareRequest {"height": 1806, "view": 0} -2023-12-15T14:42:18.771Z INFO sending Commit {"height": 1806, "view": 0} -2023-12-15T14:42:18.771Z INFO approving block {"height": 1806, "hash": "c1bda2bbd93010e86a4ec66014da175e5089c944c4bebbb15d1cde26efde4b84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb247988d167ea5d1cb09c19ba4854ac714616790c77bcbc99bfa8d2a0f45472"} -2023-12-15T14:42:18.772Z INFO initializing dbft {"height": 1807, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:18.772Z debug frostfs-node/morph.go:229 new block {"index": 1806} -2023-12-15T14:42:19.042Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1806, "blockHeight": 1806, "took": "2.982274ms"} -2023-12-15T14:42:19.772Z INFO sending PrepareRequest {"height": 1807, "view": 0} -2023-12-15T14:42:19.772Z INFO sending Commit {"height": 1807, "view": 0} -2023-12-15T14:42:19.772Z INFO approving block {"height": 1807, "hash": "f9f2cbff874d85d4309f99d2700cb1171bfb30d6464a7fc032e4e572fb05ddc9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1bda2bbd93010e86a4ec66014da175e5089c944c4bebbb15d1cde26efde4b84"} -2023-12-15T14:42:19.773Z INFO initializing dbft {"height": 1808, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:19.773Z debug frostfs-node/morph.go:229 new block {"index": 1807} -2023-12-15T14:42:19.776Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 8, "iteration": 1, "error": "no data for 0 iteration in 8 epoch for consumers's trusts"} -2023-12-15T14:42:19.778Z info settlement/calls.go:61 start basic income collection {"epoch": 8} -2023-12-15T14:42:20.046Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1807, "blockHeight": 1807, "took": "6.14551ms"} -2023-12-15T14:42:20.773Z INFO sending PrepareRequest {"height": 1808, "view": 0} -2023-12-15T14:42:20.773Z INFO sending Commit {"height": 1808, "view": 0} -2023-12-15T14:42:20.773Z INFO approving block {"height": 1808, "hash": "f84e3b928850c392afedcf7d4bf057f87c3c4e7bce18c116dedf27f476d95538", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9f2cbff874d85d4309f99d2700cb1171bfb30d6464a7fc032e4e572fb05ddc9"} -2023-12-15T14:42:20.774Z INFO initializing dbft {"height": 1809, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:20.775Z debug frostfs-node/morph.go:229 new block {"index": 1808} -2023-12-15T14:42:21.045Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1808, "blockHeight": 1808, "took": "4.42924ms"} -2023-12-15T14:42:21.774Z INFO sending PrepareRequest {"height": 1809, "view": 0} -2023-12-15T14:42:21.774Z INFO sending Commit {"height": 1809, "view": 0} -2023-12-15T14:42:21.774Z INFO approving block {"height": 1809, "hash": "a0a2aa950935d6bc235a1b27b0e8c7ee42cabd51060cb91910c9309509f1f78c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f84e3b928850c392afedcf7d4bf057f87c3c4e7bce18c116dedf27f476d95538"} -2023-12-15T14:42:21.775Z INFO initializing dbft {"height": 1810, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:21.776Z debug frostfs-node/morph.go:229 new block {"index": 1809} -2023-12-15T14:42:22.046Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1809, "blockHeight": 1809, "took": "5.042504ms"} -2023-12-15T14:42:22.776Z INFO sending PrepareRequest {"height": 1810, "view": 0} -2023-12-15T14:42:22.776Z INFO sending Commit {"height": 1810, "view": 0} -2023-12-15T14:42:22.776Z INFO approving block {"height": 1810, "hash": "919f78916818926cb4dd21affbc509d722e94dcb553ee44673d84506b70ff932", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0a2aa950935d6bc235a1b27b0e8c7ee42cabd51060cb91910c9309509f1f78c"} -2023-12-15T14:42:22.777Z INFO initializing dbft {"height": 1811, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:22.778Z debug frostfs-node/morph.go:229 new block {"index": 1810} -2023-12-15T14:42:23.044Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1810, "blockHeight": 1810, "took": "2.744061ms"} -2023-12-15T14:42:23.777Z INFO sending PrepareRequest {"height": 1811, "view": 0} -2023-12-15T14:42:23.777Z INFO sending Commit {"height": 1811, "view": 0} -2023-12-15T14:42:23.777Z INFO approving block {"height": 1811, "hash": "1948b0f732ff28ddc2b1b7b8bf264788b1970ac84f727f919bdcca45250f80ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "919f78916818926cb4dd21affbc509d722e94dcb553ee44673d84506b70ff932"} -2023-12-15T14:42:23.778Z INFO initializing dbft {"height": 1812, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:23.778Z debug frostfs-node/morph.go:229 new block {"index": 1811} -2023-12-15T14:42:24.047Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1811, "blockHeight": 1811, "took": "5.169762ms"} -2023-12-15T14:42:24.778Z INFO sending PrepareRequest {"height": 1812, "view": 0} -2023-12-15T14:42:24.779Z INFO sending Commit {"height": 1812, "view": 0} -2023-12-15T14:42:24.779Z INFO approving block {"height": 1812, "hash": "3c2fdbabffc86935e9ea66d14c4a3ee0e77f3d32e335bbd3450415b5a853182d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1948b0f732ff28ddc2b1b7b8bf264788b1970ac84f727f919bdcca45250f80ce"} -2023-12-15T14:42:24.780Z INFO initializing dbft {"height": 1813, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:24.780Z debug frostfs-node/morph.go:229 new block {"index": 1812} -2023-12-15T14:42:25.046Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1812, "blockHeight": 1812, "took": "3.671317ms"} -2023-12-15T14:42:25.780Z INFO sending PrepareRequest {"height": 1813, "view": 0} -2023-12-15T14:42:25.780Z INFO sending Commit {"height": 1813, "view": 0} -2023-12-15T14:42:25.780Z INFO approving block {"height": 1813, "hash": "bada35824d2950492e20451f3b780968adb0247ddf1805d77fefb8055b0b2849", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c2fdbabffc86935e9ea66d14c4a3ee0e77f3d32e335bbd3450415b5a853182d"} -2023-12-15T14:42:25.781Z INFO initializing dbft {"height": 1814, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:25.781Z debug frostfs-node/morph.go:229 new block {"index": 1813} -2023-12-15T14:42:26.046Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1813, "blockHeight": 1813, "took": "3.347022ms"} -2023-12-15T14:42:26.781Z INFO sending PrepareRequest {"height": 1814, "view": 0} -2023-12-15T14:42:26.781Z INFO sending Commit {"height": 1814, "view": 0} -2023-12-15T14:42:26.781Z INFO approving block {"height": 1814, "hash": "6dc5e58d46d5bd094d5d257b8c1a10ba372d37f06c02d04b2237b5b2c94f9409", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bada35824d2950492e20451f3b780968adb0247ddf1805d77fefb8055b0b2849"} -2023-12-15T14:42:26.782Z INFO initializing dbft {"height": 1815, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:26.782Z debug frostfs-node/morph.go:229 new block {"index": 1814} -2023-12-15T14:42:27.050Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1814, "blockHeight": 1814, "took": "6.12161ms"} -2023-12-15T14:42:27.782Z INFO sending PrepareRequest {"height": 1815, "view": 0} -2023-12-15T14:42:27.782Z INFO sending Commit {"height": 1815, "view": 0} -2023-12-15T14:42:27.782Z INFO approving block {"height": 1815, "hash": "03d705cb17d09154381e88d4e20512d6a9c762c89b9b63ec8694537904792be9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dc5e58d46d5bd094d5d257b8c1a10ba372d37f06c02d04b2237b5b2c94f9409"} -2023-12-15T14:42:27.783Z INFO initializing dbft {"height": 1816, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:27.783Z debug frostfs-node/morph.go:229 new block {"index": 1815} -2023-12-15T14:42:28.047Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1815, "blockHeight": 1815, "took": "2.841832ms"} -2023-12-15T14:42:28.783Z INFO sending PrepareRequest {"height": 1816, "view": 0} -2023-12-15T14:42:28.783Z INFO sending Commit {"height": 1816, "view": 0} -2023-12-15T14:42:28.783Z INFO approving block {"height": 1816, "hash": "33c595e8453f9c1f30497aea21d2ca96020231721bdaa78e673a7c250060551a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03d705cb17d09154381e88d4e20512d6a9c762c89b9b63ec8694537904792be9"} -2023-12-15T14:42:28.784Z INFO initializing dbft {"height": 1817, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:28.785Z debug frostfs-node/morph.go:229 new block {"index": 1816} -2023-12-15T14:42:29.049Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1816, "blockHeight": 1816, "took": "4.211502ms"} -2023-12-15T14:42:29.785Z INFO sending PrepareRequest {"height": 1817, "view": 0} -2023-12-15T14:42:29.785Z INFO sending Commit {"height": 1817, "view": 0} -2023-12-15T14:42:29.785Z INFO approving block {"height": 1817, "hash": "4859875209cee28394745b02e7690adae889b32cebadd77529c748e0b3551e22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33c595e8453f9c1f30497aea21d2ca96020231721bdaa78e673a7c250060551a"} -2023-12-15T14:42:29.786Z INFO initializing dbft {"height": 1818, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:29.786Z debug frostfs-node/morph.go:229 new block {"index": 1817} -2023-12-15T14:42:29.788Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:42:29.788Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:42:29.789Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:42:30.051Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1817, "blockHeight": 1817, "took": "5.782218ms"} -2023-12-15T14:42:30.786Z INFO sending PrepareRequest {"height": 1818, "view": 0} -2023-12-15T14:42:30.786Z INFO sending Commit {"height": 1818, "view": 0} -2023-12-15T14:42:30.786Z INFO approving block {"height": 1818, "hash": "fcd735d2fc631bdb41b34a7b75c00dfb41b5807e388ff5d5728e3548e8fbcc44", "tx_count": 2, "merkle": "7fe7e9a2f2d8732bd4c8bda9993cd6bfb27f74b755f90728ab1b6d4ed83622cb", "prev": "4859875209cee28394745b02e7690adae889b32cebadd77529c748e0b3551e22"} -2023-12-15T14:42:30.787Z INFO runtime log {"tx": "cb8481be28a50a140c2009e7f4a611d4cbaf3d3de0744778e297de15698ed7dc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:42:30.787Z INFO runtime log {"tx": "cb8481be28a50a140c2009e7f4a611d4cbaf3d3de0744778e297de15698ed7dc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:42:30.787Z INFO initializing dbft {"height": 1819, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:30.788Z debug frostfs-node/morph.go:229 new block {"index": 1818} -2023-12-15T14:42:31.050Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1818, "blockHeight": 1818, "took": "4.457854ms"} -2023-12-15T14:42:31.787Z INFO sending PrepareRequest {"height": 1819, "view": 0} -2023-12-15T14:42:31.787Z INFO sending Commit {"height": 1819, "view": 0} -2023-12-15T14:42:31.787Z INFO approving block {"height": 1819, "hash": "209bc92dec84d10eed36d297ab3ec294e1bea29eb21d1b35366a0f3f74c40077", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcd735d2fc631bdb41b34a7b75c00dfb41b5807e388ff5d5728e3548e8fbcc44"} -2023-12-15T14:42:31.788Z INFO initializing dbft {"height": 1820, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:31.789Z debug frostfs-node/morph.go:229 new block {"index": 1819} -2023-12-15T14:42:32.050Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1819, "blockHeight": 1819, "took": "3.570085ms"} -2023-12-15T14:42:32.788Z INFO sending PrepareRequest {"height": 1820, "view": 0} -2023-12-15T14:42:32.788Z INFO sending Commit {"height": 1820, "view": 0} -2023-12-15T14:42:32.789Z INFO approving block {"height": 1820, "hash": "a442cdc76ea121dd91e33002a4195ca289c475505e3ae52507c3b49a310bff4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "209bc92dec84d10eed36d297ab3ec294e1bea29eb21d1b35366a0f3f74c40077"} -2023-12-15T14:42:32.790Z INFO initializing dbft {"height": 1821, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:32.790Z debug frostfs-node/morph.go:229 new block {"index": 1820} -2023-12-15T14:42:33.049Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1820, "blockHeight": 1820, "took": "2.755451ms"} -2023-12-15T14:42:33.790Z INFO sending PrepareRequest {"height": 1821, "view": 0} -2023-12-15T14:42:33.790Z INFO sending Commit {"height": 1821, "view": 0} -2023-12-15T14:42:33.790Z INFO approving block {"height": 1821, "hash": "4265f48937b9526826a812eac4eb1abbd0cd02674b33086eebeae9a893a2f507", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a442cdc76ea121dd91e33002a4195ca289c475505e3ae52507c3b49a310bff4e"} -2023-12-15T14:42:33.791Z INFO initializing dbft {"height": 1822, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:33.791Z debug frostfs-node/morph.go:229 new block {"index": 1821} -2023-12-15T14:42:34.051Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1821, "blockHeight": 1821, "took": "4.256925ms"} -2023-12-15T14:42:34.791Z INFO sending PrepareRequest {"height": 1822, "view": 0} -2023-12-15T14:42:34.791Z INFO sending Commit {"height": 1822, "view": 0} -2023-12-15T14:42:34.792Z INFO approving block {"height": 1822, "hash": "5391190f0a525f41461d943a21c869dc25b575b3ff59dccdf1a7d5cefc6ab552", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4265f48937b9526826a812eac4eb1abbd0cd02674b33086eebeae9a893a2f507"} -2023-12-15T14:42:34.792Z INFO initializing dbft {"height": 1823, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:34.793Z debug frostfs-node/morph.go:229 new block {"index": 1822} -2023-12-15T14:42:35.051Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1822, "blockHeight": 1822, "took": "3.37863ms"} -2023-12-15T14:42:35.793Z INFO sending PrepareRequest {"height": 1823, "view": 0} -2023-12-15T14:42:35.793Z INFO sending Commit {"height": 1823, "view": 0} -2023-12-15T14:42:35.793Z INFO approving block {"height": 1823, "hash": "7a183acbf14029fda9ec1ee6df2283328bcc58fc4867418d1d047a0e3d86a3d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5391190f0a525f41461d943a21c869dc25b575b3ff59dccdf1a7d5cefc6ab552"} -2023-12-15T14:42:35.795Z INFO initializing dbft {"height": 1824, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:35.795Z debug frostfs-node/morph.go:229 new block {"index": 1823} -2023-12-15T14:42:36.051Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1823, "blockHeight": 1823, "took": "2.695737ms"} -2023-12-15T14:42:36.794Z INFO sending PrepareRequest {"height": 1824, "view": 0} -2023-12-15T14:42:36.795Z INFO sending Commit {"height": 1824, "view": 0} -2023-12-15T14:42:36.795Z INFO approving block {"height": 1824, "hash": "bf6203eed3f0063615567312846b16a21a6600bd16f6f580d6caf266358422c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a183acbf14029fda9ec1ee6df2283328bcc58fc4867418d1d047a0e3d86a3d8"} -2023-12-15T14:42:36.796Z INFO initializing dbft {"height": 1825, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:36.796Z debug frostfs-node/morph.go:229 new block {"index": 1824} -2023-12-15T14:42:37.051Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1824, "blockHeight": 1824, "took": "2.691139ms"} -2023-12-15T14:42:37.795Z INFO sending PrepareRequest {"height": 1825, "view": 0} -2023-12-15T14:42:37.796Z INFO sending Commit {"height": 1825, "view": 0} -2023-12-15T14:42:37.796Z INFO approving block {"height": 1825, "hash": "2ea6bdf500f518107da656d5d33a55dafeb9b48aa32d5cf620535853ddcc0caa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf6203eed3f0063615567312846b16a21a6600bd16f6f580d6caf266358422c3"} -2023-12-15T14:42:37.797Z INFO initializing dbft {"height": 1826, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:37.797Z debug frostfs-node/morph.go:229 new block {"index": 1825} -2023-12-15T14:42:38.053Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1825, "blockHeight": 1825, "took": "4.422866ms"} -2023-12-15T14:42:38.797Z INFO sending PrepareRequest {"height": 1826, "view": 0} -2023-12-15T14:42:38.797Z INFO sending Commit {"height": 1826, "view": 0} -2023-12-15T14:42:38.797Z INFO approving block {"height": 1826, "hash": "64c116aba712a911f8ad9748129fd8f6a06012635a69e3d202a27bd7e9379771", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ea6bdf500f518107da656d5d33a55dafeb9b48aa32d5cf620535853ddcc0caa"} -2023-12-15T14:42:38.798Z INFO initializing dbft {"height": 1827, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:38.799Z debug frostfs-node/morph.go:229 new block {"index": 1826} -2023-12-15T14:42:39.052Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1826, "blockHeight": 1826, "took": "2.776912ms"} -2023-12-15T14:42:39.798Z INFO sending PrepareRequest {"height": 1827, "view": 0} -2023-12-15T14:42:39.798Z INFO sending Commit {"height": 1827, "view": 0} -2023-12-15T14:42:39.798Z INFO approving block {"height": 1827, "hash": "313a89c2c156122462e5caabd6ed7c47c9ec8dff4d7877527b90c2ba01680a14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64c116aba712a911f8ad9748129fd8f6a06012635a69e3d202a27bd7e9379771"} -2023-12-15T14:42:39.799Z INFO initializing dbft {"height": 1828, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:39.799Z debug frostfs-node/morph.go:229 new block {"index": 1827} -2023-12-15T14:42:40.053Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1827, "blockHeight": 1827, "took": "2.860185ms"} -2023-12-15T14:42:40.799Z INFO sending PrepareRequest {"height": 1828, "view": 0} -2023-12-15T14:42:40.799Z INFO sending Commit {"height": 1828, "view": 0} -2023-12-15T14:42:40.799Z INFO approving block {"height": 1828, "hash": "492773401e4a7693d42f51c32c3145a3245438e8903a4f76cc884325246c5655", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "313a89c2c156122462e5caabd6ed7c47c9ec8dff4d7877527b90c2ba01680a14"} -2023-12-15T14:42:40.800Z INFO initializing dbft {"height": 1829, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:40.801Z debug frostfs-node/morph.go:229 new block {"index": 1828} -2023-12-15T14:42:41.054Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1828, "blockHeight": 1828, "took": "3.356345ms"} -2023-12-15T14:42:41.800Z INFO sending PrepareRequest {"height": 1829, "view": 0} -2023-12-15T14:42:41.800Z INFO sending Commit {"height": 1829, "view": 0} -2023-12-15T14:42:41.800Z INFO approving block {"height": 1829, "hash": "22db69e641ce060ab4ef76871d537c23567082f1e07fe5d1bde81d52f5eb74bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "492773401e4a7693d42f51c32c3145a3245438e8903a4f76cc884325246c5655"} -2023-12-15T14:42:41.801Z INFO initializing dbft {"height": 1830, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:41.802Z debug frostfs-node/morph.go:229 new block {"index": 1829} -2023-12-15T14:42:42.054Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1829, "blockHeight": 1829, "took": "2.857107ms"} -2023-12-15T14:42:42.801Z INFO sending PrepareRequest {"height": 1830, "view": 0} -2023-12-15T14:42:42.801Z INFO sending Commit {"height": 1830, "view": 0} -2023-12-15T14:42:42.802Z INFO approving block {"height": 1830, "hash": "7de78b1b85e07760755fe061541b18c5c4506a5b2d68e581e893c28aec7dd706", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22db69e641ce060ab4ef76871d537c23567082f1e07fe5d1bde81d52f5eb74bf"} -2023-12-15T14:42:42.802Z INFO initializing dbft {"height": 1831, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:42.803Z debug frostfs-node/morph.go:229 new block {"index": 1830} -2023-12-15T14:42:43.055Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1830, "blockHeight": 1830, "took": "3.08881ms"} -2023-12-15T14:42:43.803Z INFO sending PrepareRequest {"height": 1831, "view": 0} -2023-12-15T14:42:43.803Z INFO sending Commit {"height": 1831, "view": 0} -2023-12-15T14:42:43.803Z INFO approving block {"height": 1831, "hash": "856e497715529b9829f4212a05dc30a5f812370916e7159fd5fd3fdafd3c616c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7de78b1b85e07760755fe061541b18c5c4506a5b2d68e581e893c28aec7dd706"} -2023-12-15T14:42:43.804Z INFO initializing dbft {"height": 1832, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:43.805Z debug frostfs-node/morph.go:229 new block {"index": 1831} -2023-12-15T14:42:44.054Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1831, "blockHeight": 1831, "took": "2.529464ms"} -2023-12-15T14:42:44.804Z INFO sending PrepareRequest {"height": 1832, "view": 0} -2023-12-15T14:42:44.805Z INFO sending Commit {"height": 1832, "view": 0} -2023-12-15T14:42:44.805Z INFO approving block {"height": 1832, "hash": "ecd5e7412203a70b810abb36821178d01bc14c0aa3e5bb3096437e54b86ddcdc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "856e497715529b9829f4212a05dc30a5f812370916e7159fd5fd3fdafd3c616c"} -2023-12-15T14:42:44.806Z INFO initializing dbft {"height": 1833, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:44.807Z debug frostfs-node/morph.go:229 new block {"index": 1832} -2023-12-15T14:42:45.055Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1832, "blockHeight": 1832, "took": "2.851474ms"} -2023-12-15T14:42:45.805Z INFO sending PrepareRequest {"height": 1833, "view": 0} -2023-12-15T14:42:45.806Z INFO sending Commit {"height": 1833, "view": 0} -2023-12-15T14:42:45.806Z INFO approving block {"height": 1833, "hash": "c6b135b4cc59c2f47119ec4b4abfe8592e5d9f4e00605d5878ac99c523785bd2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecd5e7412203a70b810abb36821178d01bc14c0aa3e5bb3096437e54b86ddcdc"} -2023-12-15T14:42:45.806Z INFO initializing dbft {"height": 1834, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:45.807Z debug frostfs-node/morph.go:229 new block {"index": 1833} -2023-12-15T14:42:46.057Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1833, "blockHeight": 1833, "took": "4.671249ms"} -2023-12-15T14:42:46.806Z INFO sending PrepareRequest {"height": 1834, "view": 0} -2023-12-15T14:42:46.807Z INFO sending Commit {"height": 1834, "view": 0} -2023-12-15T14:42:46.807Z INFO approving block {"height": 1834, "hash": "86ea1fd2b7f870cca101402237035668ebd6552452cb8e5ab404c3cd9bd4fb8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6b135b4cc59c2f47119ec4b4abfe8592e5d9f4e00605d5878ac99c523785bd2"} -2023-12-15T14:42:46.808Z INFO initializing dbft {"height": 1835, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:46.808Z debug frostfs-node/morph.go:229 new block {"index": 1834} -2023-12-15T14:42:47.056Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1834, "blockHeight": 1834, "took": "2.785652ms"} -2023-12-15T14:42:47.808Z INFO sending PrepareRequest {"height": 1835, "view": 0} -2023-12-15T14:42:47.808Z INFO sending Commit {"height": 1835, "view": 0} -2023-12-15T14:42:47.808Z INFO approving block {"height": 1835, "hash": "ea0423b13cd59b3f2a193241e293b9bfad0d759c94faa2c0240f51507abf9d38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86ea1fd2b7f870cca101402237035668ebd6552452cb8e5ab404c3cd9bd4fb8c"} -2023-12-15T14:42:47.809Z INFO initializing dbft {"height": 1836, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:47.809Z debug frostfs-node/morph.go:229 new block {"index": 1835} -2023-12-15T14:42:48.057Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1835, "blockHeight": 1835, "took": "3.55208ms"} -2023-12-15T14:42:48.809Z INFO sending PrepareRequest {"height": 1836, "view": 0} -2023-12-15T14:42:48.809Z INFO sending Commit {"height": 1836, "view": 0} -2023-12-15T14:42:48.810Z INFO approving block {"height": 1836, "hash": "09fc49e6f367f4ff87b726f8072459e4484341647363301261548fb995792dfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea0423b13cd59b3f2a193241e293b9bfad0d759c94faa2c0240f51507abf9d38"} -2023-12-15T14:42:48.810Z INFO initializing dbft {"height": 1837, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:48.811Z debug frostfs-node/morph.go:229 new block {"index": 1836} -2023-12-15T14:42:49.057Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1836, "blockHeight": 1836, "took": "3.014389ms"} -2023-12-15T14:42:49.810Z INFO sending PrepareRequest {"height": 1837, "view": 0} -2023-12-15T14:42:49.810Z INFO sending Commit {"height": 1837, "view": 0} -2023-12-15T14:42:49.811Z INFO approving block {"height": 1837, "hash": "dd70806a165e1cf953ed75d9340abc18b6061815f5e901f40e445ff074b47968", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09fc49e6f367f4ff87b726f8072459e4484341647363301261548fb995792dfa"} -2023-12-15T14:42:49.811Z INFO initializing dbft {"height": 1838, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:49.812Z debug frostfs-node/morph.go:229 new block {"index": 1837} -2023-12-15T14:42:50.059Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1837, "blockHeight": 1837, "took": "3.972257ms"} -2023-12-15T14:42:50.812Z INFO sending PrepareRequest {"height": 1838, "view": 0} -2023-12-15T14:42:50.812Z INFO sending Commit {"height": 1838, "view": 0} -2023-12-15T14:42:50.812Z INFO approving block {"height": 1838, "hash": "74f24e46a952ac71c4cbfd65f8aeab2e29c4391adad9b2e903c6cf8b2cb4597f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd70806a165e1cf953ed75d9340abc18b6061815f5e901f40e445ff074b47968"} -2023-12-15T14:42:50.813Z INFO initializing dbft {"height": 1839, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:50.813Z debug frostfs-node/morph.go:229 new block {"index": 1838} -2023-12-15T14:42:51.061Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1838, "blockHeight": 1838, "took": "5.062598ms"} -2023-12-15T14:42:51.813Z INFO sending PrepareRequest {"height": 1839, "view": 0} -2023-12-15T14:42:51.813Z INFO sending Commit {"height": 1839, "view": 0} -2023-12-15T14:42:51.813Z INFO approving block {"height": 1839, "hash": "874950aaa1dfe3ddba0712c7a537fa4b22c969368ce98576ce8ce5509052aeb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74f24e46a952ac71c4cbfd65f8aeab2e29c4391adad9b2e903c6cf8b2cb4597f"} -2023-12-15T14:42:51.815Z INFO initializing dbft {"height": 1840, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:51.815Z debug frostfs-node/morph.go:229 new block {"index": 1839} -2023-12-15T14:42:52.059Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1839, "blockHeight": 1839, "took": "2.668828ms"} -2023-12-15T14:42:52.814Z INFO sending PrepareRequest {"height": 1840, "view": 0} -2023-12-15T14:42:52.815Z INFO sending Commit {"height": 1840, "view": 0} -2023-12-15T14:42:52.815Z INFO approving block {"height": 1840, "hash": "65bdc36b8c4bb67ca6ab68a227ad58189b6e7171a07f116ecd5902ebe0982278", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "874950aaa1dfe3ddba0712c7a537fa4b22c969368ce98576ce8ce5509052aeb4"} -2023-12-15T14:42:52.817Z INFO initializing dbft {"height": 1841, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:52.817Z debug frostfs-node/morph.go:229 new block {"index": 1840} -2023-12-15T14:42:53.061Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1840, "blockHeight": 1840, "took": "4.964434ms"} -2023-12-15T14:42:53.816Z INFO sending PrepareRequest {"height": 1841, "view": 0} -2023-12-15T14:42:53.816Z INFO sending Commit {"height": 1841, "view": 0} -2023-12-15T14:42:53.816Z INFO approving block {"height": 1841, "hash": "74f92fdba5306455d86dbce75732ee20840cb1852af35da96bd0c07f4977db0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65bdc36b8c4bb67ca6ab68a227ad58189b6e7171a07f116ecd5902ebe0982278"} -2023-12-15T14:42:53.817Z INFO initializing dbft {"height": 1842, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:53.818Z debug frostfs-node/morph.go:229 new block {"index": 1841} -2023-12-15T14:42:54.061Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1841, "blockHeight": 1841, "took": "4.154711ms"} -2023-12-15T14:42:54.817Z INFO sending PrepareRequest {"height": 1842, "view": 0} -2023-12-15T14:42:54.818Z INFO sending Commit {"height": 1842, "view": 0} -2023-12-15T14:42:54.818Z INFO approving block {"height": 1842, "hash": "9b444e921e98c8386ffec3493fa3cc6f5a21e517d5044129e6813b7ce3c692b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74f92fdba5306455d86dbce75732ee20840cb1852af35da96bd0c07f4977db0e"} -2023-12-15T14:42:54.819Z INFO initializing dbft {"height": 1843, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:54.820Z debug frostfs-node/morph.go:229 new block {"index": 1842} -2023-12-15T14:42:55.061Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1842, "blockHeight": 1842, "took": "4.13276ms"} -2023-12-15T14:42:55.819Z INFO sending PrepareRequest {"height": 1843, "view": 0} -2023-12-15T14:42:55.819Z INFO sending Commit {"height": 1843, "view": 0} -2023-12-15T14:42:55.819Z INFO approving block {"height": 1843, "hash": "42966f2ca86e854a0ca171bdd67b3d55ffdfeda7595cf886d304dd29b489c86d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b444e921e98c8386ffec3493fa3cc6f5a21e517d5044129e6813b7ce3c692b5"} -2023-12-15T14:42:55.821Z INFO initializing dbft {"height": 1844, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:55.821Z debug frostfs-node/morph.go:229 new block {"index": 1843} -2023-12-15T14:42:56.064Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1843, "blockHeight": 1843, "took": "5.646641ms"} -2023-12-15T14:42:56.821Z INFO sending PrepareRequest {"height": 1844, "view": 0} -2023-12-15T14:42:56.821Z INFO sending Commit {"height": 1844, "view": 0} -2023-12-15T14:42:56.821Z INFO approving block {"height": 1844, "hash": "6b95b5e70f2f3afa5225743017b19be1d9416fb9ffd490ddc8c0847dffc444c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42966f2ca86e854a0ca171bdd67b3d55ffdfeda7595cf886d304dd29b489c86d"} -2023-12-15T14:42:56.822Z INFO initializing dbft {"height": 1845, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:56.823Z debug frostfs-node/morph.go:229 new block {"index": 1844} -2023-12-15T14:42:57.064Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1844, "blockHeight": 1844, "took": "5.625682ms"} -2023-12-15T14:42:57.823Z INFO sending PrepareRequest {"height": 1845, "view": 0} -2023-12-15T14:42:57.823Z INFO sending Commit {"height": 1845, "view": 0} -2023-12-15T14:42:57.823Z INFO approving block {"height": 1845, "hash": "2cf3289271796083c8be523fa42c33bad1b176a0bba1ccccd1fc9bf22eedbeab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b95b5e70f2f3afa5225743017b19be1d9416fb9ffd490ddc8c0847dffc444c3"} -2023-12-15T14:42:57.824Z INFO initializing dbft {"height": 1846, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:57.824Z debug frostfs-node/morph.go:229 new block {"index": 1845} -2023-12-15T14:42:58.064Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1845, "blockHeight": 1845, "took": "4.073959ms"} -2023-12-15T14:42:58.824Z INFO sending PrepareRequest {"height": 1846, "view": 0} -2023-12-15T14:42:58.824Z INFO sending Commit {"height": 1846, "view": 0} -2023-12-15T14:42:58.824Z INFO approving block {"height": 1846, "hash": "57d6d0fd3879b4c138328e209031cdf091b09a2a23b2e26031b4d65d511477b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2cf3289271796083c8be523fa42c33bad1b176a0bba1ccccd1fc9bf22eedbeab"} -2023-12-15T14:42:58.825Z INFO initializing dbft {"height": 1847, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:58.825Z debug frostfs-node/morph.go:229 new block {"index": 1846} -2023-12-15T14:42:59.063Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1846, "blockHeight": 1846, "took": "2.928495ms"} -2023-12-15T14:42:59.825Z INFO sending PrepareRequest {"height": 1847, "view": 0} -2023-12-15T14:42:59.825Z INFO sending Commit {"height": 1847, "view": 0} -2023-12-15T14:42:59.826Z INFO approving block {"height": 1847, "hash": "ef1cf85e3bd72ec8c4905b7e9b25feed4ba2b45e77ef526426c35e8d4711ccfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57d6d0fd3879b4c138328e209031cdf091b09a2a23b2e26031b4d65d511477b6"} -2023-12-15T14:42:59.826Z INFO initializing dbft {"height": 1848, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:42:59.827Z debug frostfs-node/morph.go:229 new block {"index": 1847} -2023-12-15T14:43:00.064Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1847, "blockHeight": 1847, "took": "3.227261ms"} -2023-12-15T14:43:00.827Z INFO sending PrepareRequest {"height": 1848, "view": 0} -2023-12-15T14:43:00.827Z INFO sending Commit {"height": 1848, "view": 0} -2023-12-15T14:43:00.828Z INFO approving block {"height": 1848, "hash": "04af88c1413816e68e3a77d139714b0693ea633b0156e5f46b0212d84479959e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef1cf85e3bd72ec8c4905b7e9b25feed4ba2b45e77ef526426c35e8d4711ccfe"} -2023-12-15T14:43:00.829Z INFO initializing dbft {"height": 1849, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:00.829Z debug frostfs-node/morph.go:229 new block {"index": 1848} -2023-12-15T14:43:01.064Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1848, "blockHeight": 1848, "took": "3.029508ms"} -2023-12-15T14:43:01.828Z INFO sending PrepareRequest {"height": 1849, "view": 0} -2023-12-15T14:43:01.829Z INFO sending Commit {"height": 1849, "view": 0} -2023-12-15T14:43:01.829Z INFO approving block {"height": 1849, "hash": "7dbae0c81f32848a038aef273b3c214f40ff2852e59fd2603ebe28924f4e4c97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04af88c1413816e68e3a77d139714b0693ea633b0156e5f46b0212d84479959e"} -2023-12-15T14:43:01.830Z INFO initializing dbft {"height": 1850, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:01.830Z debug frostfs-node/morph.go:229 new block {"index": 1849} -2023-12-15T14:43:02.066Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1849, "blockHeight": 1849, "took": "4.054228ms"} -2023-12-15T14:43:02.830Z INFO sending PrepareRequest {"height": 1850, "view": 0} -2023-12-15T14:43:02.830Z INFO sending Commit {"height": 1850, "view": 0} -2023-12-15T14:43:02.830Z INFO approving block {"height": 1850, "hash": "38dd74681bc6cc0aa0b6141a4eca3d0e1acbf5d3b272a53babbda83afeac7394", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7dbae0c81f32848a038aef273b3c214f40ff2852e59fd2603ebe28924f4e4c97"} -2023-12-15T14:43:02.831Z INFO initializing dbft {"height": 1851, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:02.831Z debug frostfs-node/morph.go:229 new block {"index": 1850} -2023-12-15T14:43:03.068Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1850, "blockHeight": 1850, "took": "6.501409ms"} -2023-12-15T14:43:03.831Z INFO sending PrepareRequest {"height": 1851, "view": 0} -2023-12-15T14:43:03.832Z INFO sending Commit {"height": 1851, "view": 0} -2023-12-15T14:43:03.832Z INFO approving block {"height": 1851, "hash": "5748c789666afa64bcc7169b29f112fe54c0ab3eaf4463f67cca4781244ea4ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38dd74681bc6cc0aa0b6141a4eca3d0e1acbf5d3b272a53babbda83afeac7394"} -2023-12-15T14:43:03.834Z INFO initializing dbft {"height": 1852, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:03.834Z debug frostfs-node/morph.go:229 new block {"index": 1851} -2023-12-15T14:43:04.066Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1851, "blockHeight": 1851, "took": "3.409725ms"} -2023-12-15T14:43:04.833Z INFO sending PrepareRequest {"height": 1852, "view": 0} -2023-12-15T14:43:04.833Z INFO sending Commit {"height": 1852, "view": 0} -2023-12-15T14:43:04.834Z INFO approving block {"height": 1852, "hash": "ad75740284be0c04009d33561ffef514b92ec5a93978841fad31ff94e9cf34d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5748c789666afa64bcc7169b29f112fe54c0ab3eaf4463f67cca4781244ea4ba"} -2023-12-15T14:43:04.835Z INFO initializing dbft {"height": 1853, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:04.836Z debug frostfs-node/morph.go:229 new block {"index": 1852} -2023-12-15T14:43:05.068Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1852, "blockHeight": 1852, "took": "4.474177ms"} -2023-12-15T14:43:05.835Z INFO sending PrepareRequest {"height": 1853, "view": 0} -2023-12-15T14:43:05.835Z INFO sending Commit {"height": 1853, "view": 0} -2023-12-15T14:43:05.835Z INFO approving block {"height": 1853, "hash": "faade2d36c9dad561e35373a129006a7df066d8a45a5a764d7d5fcde89c7c7b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad75740284be0c04009d33561ffef514b92ec5a93978841fad31ff94e9cf34d1"} -2023-12-15T14:43:05.836Z INFO initializing dbft {"height": 1854, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:05.836Z debug frostfs-node/morph.go:229 new block {"index": 1853} -2023-12-15T14:43:06.066Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1853, "blockHeight": 1853, "took": "2.763287ms"} -2023-12-15T14:43:06.836Z INFO sending PrepareRequest {"height": 1854, "view": 0} -2023-12-15T14:43:06.836Z INFO sending Commit {"height": 1854, "view": 0} -2023-12-15T14:43:06.836Z INFO approving block {"height": 1854, "hash": "53f0f826a46e4189573c0b12d45faacec2176785b8e8874ce3e65686b2064f44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "faade2d36c9dad561e35373a129006a7df066d8a45a5a764d7d5fcde89c7c7b5"} -2023-12-15T14:43:06.837Z INFO initializing dbft {"height": 1855, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:06.838Z debug frostfs-node/morph.go:229 new block {"index": 1854} -2023-12-15T14:43:07.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1854, "blockHeight": 1854, "took": "5.843571ms"} -2023-12-15T14:43:07.837Z INFO sending PrepareRequest {"height": 1855, "view": 0} -2023-12-15T14:43:07.837Z INFO sending Commit {"height": 1855, "view": 0} -2023-12-15T14:43:07.838Z INFO approving block {"height": 1855, "hash": "417fc9fc54d48112b259f719c423988dda23f14f46b79441ae3615171d6de23b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53f0f826a46e4189573c0b12d45faacec2176785b8e8874ce3e65686b2064f44"} -2023-12-15T14:43:07.838Z INFO initializing dbft {"height": 1856, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:07.839Z debug frostfs-node/morph.go:229 new block {"index": 1855} -2023-12-15T14:43:08.068Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1855, "blockHeight": 1855, "took": "3.194923ms"} -2023-12-15T14:43:08.839Z INFO sending PrepareRequest {"height": 1856, "view": 0} -2023-12-15T14:43:08.839Z INFO sending Commit {"height": 1856, "view": 0} -2023-12-15T14:43:08.839Z INFO approving block {"height": 1856, "hash": "4a14e2694b394b5b4f876c24a13b03a686b8577c49b75fe7110c5f2376160d0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "417fc9fc54d48112b259f719c423988dda23f14f46b79441ae3615171d6de23b"} -2023-12-15T14:43:08.841Z INFO initializing dbft {"height": 1857, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:08.841Z debug frostfs-node/morph.go:229 new block {"index": 1856} -2023-12-15T14:43:09.069Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1856, "blockHeight": 1856, "took": "3.861773ms"} -2023-12-15T14:43:09.840Z INFO sending PrepareRequest {"height": 1857, "view": 0} -2023-12-15T14:43:09.840Z INFO sending Commit {"height": 1857, "view": 0} -2023-12-15T14:43:09.840Z INFO approving block {"height": 1857, "hash": "9784ef7265a567e0a6b934d81de45e934adfb51fad9555056c9fba23a85909b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a14e2694b394b5b4f876c24a13b03a686b8577c49b75fe7110c5f2376160d0d"} -2023-12-15T14:43:09.841Z INFO initializing dbft {"height": 1858, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:09.842Z debug frostfs-node/morph.go:229 new block {"index": 1857} -2023-12-15T14:43:10.071Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1857, "blockHeight": 1857, "took": "5.575173ms"} -2023-12-15T14:43:10.841Z INFO sending PrepareRequest {"height": 1858, "view": 0} -2023-12-15T14:43:10.841Z INFO sending Commit {"height": 1858, "view": 0} -2023-12-15T14:43:10.842Z INFO approving block {"height": 1858, "hash": "d1653b7d5eea62cc93bf280a7a850391d09f392a24fad9aeb1332ee49852f9c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9784ef7265a567e0a6b934d81de45e934adfb51fad9555056c9fba23a85909b5"} -2023-12-15T14:43:10.842Z INFO initializing dbft {"height": 1859, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:10.843Z debug frostfs-node/morph.go:229 new block {"index": 1858} -2023-12-15T14:43:11.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1858, "blockHeight": 1858, "took": "3.755927ms"} -2023-12-15T14:43:11.843Z INFO sending PrepareRequest {"height": 1859, "view": 0} -2023-12-15T14:43:11.843Z INFO sending Commit {"height": 1859, "view": 0} -2023-12-15T14:43:11.843Z INFO approving block {"height": 1859, "hash": "f6e86f6dc73a98a95b524fc7b9c6fe0db4caee0740290f673099deae3f602c1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1653b7d5eea62cc93bf280a7a850391d09f392a24fad9aeb1332ee49852f9c4"} -2023-12-15T14:43:11.844Z INFO initializing dbft {"height": 1860, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:11.844Z debug frostfs-node/morph.go:229 new block {"index": 1859} -2023-12-15T14:43:12.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1859, "blockHeight": 1859, "took": "3.951305ms"} -2023-12-15T14:43:12.844Z INFO sending PrepareRequest {"height": 1860, "view": 0} -2023-12-15T14:43:12.844Z INFO sending Commit {"height": 1860, "view": 0} -2023-12-15T14:43:12.844Z INFO approving block {"height": 1860, "hash": "ac51cad71e29c12e44302954a7cde314591ff84fe52ffadb056cb3f648e818f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6e86f6dc73a98a95b524fc7b9c6fe0db4caee0740290f673099deae3f602c1f"} -2023-12-15T14:43:12.845Z INFO initializing dbft {"height": 1861, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:12.846Z debug frostfs-node/morph.go:229 new block {"index": 1860} -2023-12-15T14:43:13.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1860, "blockHeight": 1860, "took": "3.692125ms"} -2023-12-15T14:43:13.845Z INFO sending PrepareRequest {"height": 1861, "view": 0} -2023-12-15T14:43:13.845Z INFO sending Commit {"height": 1861, "view": 0} -2023-12-15T14:43:13.845Z INFO approving block {"height": 1861, "hash": "42724702de416fca9b88cd9aae1d8d7cce609018ead15a755e8e2d1ec460e59c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac51cad71e29c12e44302954a7cde314591ff84fe52ffadb056cb3f648e818f6"} -2023-12-15T14:43:13.846Z INFO initializing dbft {"height": 1862, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:13.847Z debug frostfs-node/morph.go:229 new block {"index": 1861} -2023-12-15T14:43:14.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1861, "blockHeight": 1861, "took": "2.949163ms"} -2023-12-15T14:43:14.847Z INFO sending PrepareRequest {"height": 1862, "view": 0} -2023-12-15T14:43:14.847Z INFO sending Commit {"height": 1862, "view": 0} -2023-12-15T14:43:14.847Z INFO approving block {"height": 1862, "hash": "c87f1fed45036b15f04093e87d8c0df3fd851ba7853c05f435e0a2685d8bc72b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42724702de416fca9b88cd9aae1d8d7cce609018ead15a755e8e2d1ec460e59c"} -2023-12-15T14:43:14.849Z INFO initializing dbft {"height": 1863, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:14.849Z debug frostfs-node/morph.go:229 new block {"index": 1862} -2023-12-15T14:43:15.072Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1862, "blockHeight": 1862, "took": "4.296973ms"} -2023-12-15T14:43:15.848Z INFO sending PrepareRequest {"height": 1863, "view": 0} -2023-12-15T14:43:15.849Z INFO sending Commit {"height": 1863, "view": 0} -2023-12-15T14:43:15.849Z INFO approving block {"height": 1863, "hash": "7b1a2ca9ab531813d4cadc16e3e055cdb18fbc720a0673471eb714bdee0e95e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c87f1fed45036b15f04093e87d8c0df3fd851ba7853c05f435e0a2685d8bc72b"} -2023-12-15T14:43:15.850Z INFO initializing dbft {"height": 1864, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:15.851Z debug frostfs-node/morph.go:229 new block {"index": 1863} -2023-12-15T14:43:16.072Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1863, "blockHeight": 1863, "took": "3.958266ms"} -2023-12-15T14:43:16.850Z INFO sending PrepareRequest {"height": 1864, "view": 0} -2023-12-15T14:43:16.850Z INFO sending Commit {"height": 1864, "view": 0} -2023-12-15T14:43:16.850Z INFO approving block {"height": 1864, "hash": "49eda3ff770794fa2895b2303c26bdec7a6b2d4ad12cb856d70560d600cdaa37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b1a2ca9ab531813d4cadc16e3e055cdb18fbc720a0673471eb714bdee0e95e0"} -2023-12-15T14:43:16.851Z INFO initializing dbft {"height": 1865, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:16.851Z debug frostfs-node/morph.go:229 new block {"index": 1864} -2023-12-15T14:43:17.074Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1864, "blockHeight": 1864, "took": "5.426961ms"} -2023-12-15T14:43:17.851Z INFO sending PrepareRequest {"height": 1865, "view": 0} -2023-12-15T14:43:17.851Z INFO sending Commit {"height": 1865, "view": 0} -2023-12-15T14:43:17.851Z INFO approving block {"height": 1865, "hash": "10494171467da8280117d65de298cc435167f9de5fb307f0d30f0ad3c10c7e24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49eda3ff770794fa2895b2303c26bdec7a6b2d4ad12cb856d70560d600cdaa37"} -2023-12-15T14:43:17.852Z INFO initializing dbft {"height": 1866, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:17.852Z debug frostfs-node/morph.go:229 new block {"index": 1865} -2023-12-15T14:43:18.072Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1865, "blockHeight": 1865, "took": "3.149562ms"} -2023-12-15T14:43:18.852Z INFO sending PrepareRequest {"height": 1866, "view": 0} -2023-12-15T14:43:18.853Z INFO sending Commit {"height": 1866, "view": 0} -2023-12-15T14:43:18.853Z INFO approving block {"height": 1866, "hash": "b2d689742db06943633cc2eb0896328ddf2150c302cfd03a3fe8e9094b8ab393", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10494171467da8280117d65de298cc435167f9de5fb307f0d30f0ad3c10c7e24"} -2023-12-15T14:43:18.854Z INFO initializing dbft {"height": 1867, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:18.854Z debug frostfs-node/morph.go:229 new block {"index": 1866} -2023-12-15T14:43:19.074Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1866, "blockHeight": 1866, "took": "4.019181ms"} -2023-12-15T14:43:19.854Z INFO sending PrepareRequest {"height": 1867, "view": 0} -2023-12-15T14:43:19.854Z INFO sending Commit {"height": 1867, "view": 0} -2023-12-15T14:43:19.855Z INFO approving block {"height": 1867, "hash": "93c0e473b87bc8ebfeed435bf7c82ceaaadab6ad35670af87a70b2c8511df550", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2d689742db06943633cc2eb0896328ddf2150c302cfd03a3fe8e9094b8ab393"} -2023-12-15T14:43:19.856Z INFO initializing dbft {"height": 1868, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:19.857Z debug frostfs-node/morph.go:229 new block {"index": 1867} -2023-12-15T14:43:19.860Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 8, "iteration": 2, "error": "no data for 1 iteration in 8 epoch for consumers's trusts"} -2023-12-15T14:43:19.861Z info settlement/calls.go:106 start basic income distribution {"epoch": 8} -2023-12-15T14:43:19.861Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:43:19.861Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:43:19.861Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:43:20.075Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1867, "blockHeight": 1867, "took": "3.799331ms"} -2023-12-15T14:43:20.855Z INFO sending PrepareRequest {"height": 1868, "view": 0} -2023-12-15T14:43:20.855Z INFO sending Commit {"height": 1868, "view": 0} -2023-12-15T14:43:20.856Z INFO approving block {"height": 1868, "hash": "6a55cadcbdeba9cf1cdd0073f650b5fba579385267108c4579f86c993f9f4167", "tx_count": 2, "merkle": "f47fd30c27d1bebf6a88ece557e20be03e2199ec6bc3c5b245cf9848cf3fa0e2", "prev": "93c0e473b87bc8ebfeed435bf7c82ceaaadab6ad35670af87a70b2c8511df550"} -2023-12-15T14:43:20.856Z INFO runtime log {"tx": "652e56f51abea9024b3e6445b6fc7d1af457cc0ce0a9660a671be4302a7c0d4d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:43:20.856Z INFO runtime log {"tx": "652e56f51abea9024b3e6445b6fc7d1af457cc0ce0a9660a671be4302a7c0d4d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:43:20.857Z INFO initializing dbft {"height": 1869, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:20.857Z debug frostfs-node/morph.go:229 new block {"index": 1868} -2023-12-15T14:43:21.076Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1868, "blockHeight": 1868, "took": "4.990196ms"} -2023-12-15T14:43:21.857Z INFO sending PrepareRequest {"height": 1869, "view": 0} -2023-12-15T14:43:21.857Z INFO sending Commit {"height": 1869, "view": 0} -2023-12-15T14:43:21.857Z INFO approving block {"height": 1869, "hash": "2a3d7ae84a40ae9dfcf6a2ad4214e46e5af0cd726584f50f3f821e9cc4c6a6aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a55cadcbdeba9cf1cdd0073f650b5fba579385267108c4579f86c993f9f4167"} -2023-12-15T14:43:21.859Z INFO initializing dbft {"height": 1870, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:21.859Z debug frostfs-node/morph.go:229 new block {"index": 1869} -2023-12-15T14:43:22.076Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1869, "blockHeight": 1869, "took": "3.102247ms"} -2023-12-15T14:43:22.858Z INFO sending PrepareRequest {"height": 1870, "view": 0} -2023-12-15T14:43:22.858Z INFO sending Commit {"height": 1870, "view": 0} -2023-12-15T14:43:22.858Z INFO approving block {"height": 1870, "hash": "53e4bbbb766cf101f1ccced6ed44aedf35ca7bd45e082ec0147af5cd83093853", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a3d7ae84a40ae9dfcf6a2ad4214e46e5af0cd726584f50f3f821e9cc4c6a6aa"} -2023-12-15T14:43:22.859Z INFO initializing dbft {"height": 1871, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:22.859Z debug frostfs-node/morph.go:229 new block {"index": 1870} -2023-12-15T14:43:23.076Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1870, "blockHeight": 1870, "took": "2.672428ms"} -2023-12-15T14:43:23.859Z INFO sending PrepareRequest {"height": 1871, "view": 0} -2023-12-15T14:43:23.859Z INFO sending Commit {"height": 1871, "view": 0} -2023-12-15T14:43:23.860Z INFO approving block {"height": 1871, "hash": "fe040a10e0e7317c2b280f1181746962b3f9ad40519c611289cdb4008b0791bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53e4bbbb766cf101f1ccced6ed44aedf35ca7bd45e082ec0147af5cd83093853"} -2023-12-15T14:43:23.861Z INFO initializing dbft {"height": 1872, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:23.861Z debug frostfs-node/morph.go:229 new block {"index": 1871} -2023-12-15T14:43:24.078Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1871, "blockHeight": 1871, "took": "4.45847ms"} -2023-12-15T14:43:24.861Z INFO sending PrepareRequest {"height": 1872, "view": 0} -2023-12-15T14:43:24.861Z INFO sending Commit {"height": 1872, "view": 0} -2023-12-15T14:43:24.861Z INFO approving block {"height": 1872, "hash": "e9dabd71a7ee1bc72406bf1c6b6cbbab1930ae72e3e4036a3173951c92df7b26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe040a10e0e7317c2b280f1181746962b3f9ad40519c611289cdb4008b0791bc"} -2023-12-15T14:43:24.862Z INFO initializing dbft {"height": 1873, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:24.862Z debug frostfs-node/morph.go:229 new block {"index": 1872} -2023-12-15T14:43:25.078Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1872, "blockHeight": 1872, "took": "4.156301ms"} -2023-12-15T14:43:25.862Z INFO sending PrepareRequest {"height": 1873, "view": 0} -2023-12-15T14:43:25.862Z INFO sending Commit {"height": 1873, "view": 0} -2023-12-15T14:43:25.862Z INFO approving block {"height": 1873, "hash": "0073c97aa5e70952f9843710c396aa38a22716b87608f27102bdb2a1f899993c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9dabd71a7ee1bc72406bf1c6b6cbbab1930ae72e3e4036a3173951c92df7b26"} -2023-12-15T14:43:25.863Z INFO initializing dbft {"height": 1874, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:25.864Z debug frostfs-node/morph.go:229 new block {"index": 1873} -2023-12-15T14:43:26.077Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1873, "blockHeight": 1873, "took": "2.857654ms"} -2023-12-15T14:43:26.864Z INFO sending PrepareRequest {"height": 1874, "view": 0} -2023-12-15T14:43:26.864Z INFO sending Commit {"height": 1874, "view": 0} -2023-12-15T14:43:26.864Z INFO approving block {"height": 1874, "hash": "fb556b028d3e56dd152365aa05a9169465953100f5d8770153200835edf4e6bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0073c97aa5e70952f9843710c396aa38a22716b87608f27102bdb2a1f899993c"} -2023-12-15T14:43:26.865Z INFO initializing dbft {"height": 1875, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:26.866Z debug frostfs-node/morph.go:229 new block {"index": 1874} -2023-12-15T14:43:27.079Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1874, "blockHeight": 1874, "took": "4.079868ms"} -2023-12-15T14:43:27.866Z INFO sending PrepareRequest {"height": 1875, "view": 0} -2023-12-15T14:43:27.866Z INFO sending Commit {"height": 1875, "view": 0} -2023-12-15T14:43:27.866Z INFO approving block {"height": 1875, "hash": "16fa55d9f563f09ce6c3f973bbcd42bebc6680243cc37d8a7d8feb5ca8aa3e9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb556b028d3e56dd152365aa05a9169465953100f5d8770153200835edf4e6bb"} -2023-12-15T14:43:27.867Z INFO initializing dbft {"height": 1876, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:27.867Z debug frostfs-node/morph.go:229 new block {"index": 1875} -2023-12-15T14:43:28.079Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1875, "blockHeight": 1875, "took": "3.260025ms"} -2023-12-15T14:43:28.867Z INFO sending PrepareRequest {"height": 1876, "view": 0} -2023-12-15T14:43:28.867Z INFO sending Commit {"height": 1876, "view": 0} -2023-12-15T14:43:28.867Z INFO approving block {"height": 1876, "hash": "a424a0930d5c9fb4629c5ec19d5319d2deabdcd79c462e03007dddab89688f85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16fa55d9f563f09ce6c3f973bbcd42bebc6680243cc37d8a7d8feb5ca8aa3e9e"} -2023-12-15T14:43:28.868Z INFO initializing dbft {"height": 1877, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:28.868Z debug frostfs-node/morph.go:229 new block {"index": 1876} -2023-12-15T14:43:29.079Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1876, "blockHeight": 1876, "took": "2.75042ms"} -2023-12-15T14:43:29.868Z INFO sending PrepareRequest {"height": 1877, "view": 0} -2023-12-15T14:43:29.869Z INFO sending Commit {"height": 1877, "view": 0} -2023-12-15T14:43:29.869Z INFO approving block {"height": 1877, "hash": "31c1efe17ceff31ba0861bd6469d93aeed43766c7a5d5d3c060ed70a79009820", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a424a0930d5c9fb4629c5ec19d5319d2deabdcd79c462e03007dddab89688f85"} -2023-12-15T14:43:29.870Z INFO initializing dbft {"height": 1878, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:29.870Z debug frostfs-node/morph.go:229 new block {"index": 1877} -2023-12-15T14:43:30.083Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1877, "blockHeight": 1877, "took": "6.87816ms"} -2023-12-15T14:43:30.870Z INFO sending PrepareRequest {"height": 1878, "view": 0} -2023-12-15T14:43:30.870Z INFO sending Commit {"height": 1878, "view": 0} -2023-12-15T14:43:30.871Z INFO approving block {"height": 1878, "hash": "59ef02bf704bf37b868c097166e25688a1b2eff19fa528a31288470548b346ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31c1efe17ceff31ba0861bd6469d93aeed43766c7a5d5d3c060ed70a79009820"} -2023-12-15T14:43:30.872Z INFO initializing dbft {"height": 1879, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:30.872Z debug frostfs-node/morph.go:229 new block {"index": 1878} -2023-12-15T14:43:31.081Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1878, "blockHeight": 1878, "took": "4.030497ms"} -2023-12-15T14:43:31.871Z INFO sending PrepareRequest {"height": 1879, "view": 0} -2023-12-15T14:43:31.871Z INFO sending Commit {"height": 1879, "view": 0} -2023-12-15T14:43:31.872Z INFO approving block {"height": 1879, "hash": "bb90fa5debefd3db9b8444ae8b5a9f9f48e8a64714e83b04593740ddf6aa6446", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59ef02bf704bf37b868c097166e25688a1b2eff19fa528a31288470548b346ac"} -2023-12-15T14:43:31.873Z INFO initializing dbft {"height": 1880, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:31.873Z debug frostfs-node/morph.go:229 new block {"index": 1879} -2023-12-15T14:43:32.082Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1879, "blockHeight": 1879, "took": "4.506192ms"} -2023-12-15T14:43:32.872Z INFO sending PrepareRequest {"height": 1880, "view": 0} -2023-12-15T14:43:32.872Z INFO sending Commit {"height": 1880, "view": 0} -2023-12-15T14:43:32.872Z INFO approving block {"height": 1880, "hash": "2fa8df3bdd0bc16b62d49f236ea6f21b0c177fb41e2b428fa20a33096cde241d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb90fa5debefd3db9b8444ae8b5a9f9f48e8a64714e83b04593740ddf6aa6446"} -2023-12-15T14:43:32.873Z INFO initializing dbft {"height": 1881, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:32.874Z debug frostfs-node/morph.go:229 new block {"index": 1880} -2023-12-15T14:43:33.084Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1880, "blockHeight": 1880, "took": "5.317833ms"} -2023-12-15T14:43:33.873Z INFO sending PrepareRequest {"height": 1881, "view": 0} -2023-12-15T14:43:33.873Z INFO sending Commit {"height": 1881, "view": 0} -2023-12-15T14:43:33.874Z INFO approving block {"height": 1881, "hash": "0ef964a5e1c7df418d2b762b34b36e280d4f9ee65d593e121ac3f0e44b1869c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fa8df3bdd0bc16b62d49f236ea6f21b0c177fb41e2b428fa20a33096cde241d"} -2023-12-15T14:43:33.874Z INFO initializing dbft {"height": 1882, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:33.875Z debug frostfs-node/morph.go:229 new block {"index": 1881} -2023-12-15T14:43:34.084Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1881, "blockHeight": 1881, "took": "5.498251ms"} -2023-12-15T14:43:34.874Z INFO sending PrepareRequest {"height": 1882, "view": 0} -2023-12-15T14:43:34.874Z INFO sending Commit {"height": 1882, "view": 0} -2023-12-15T14:43:34.874Z INFO approving block {"height": 1882, "hash": "11c40b0d0720d1cb3189d34737f1a94a4a15e68c97aafd9338e4325225170486", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ef964a5e1c7df418d2b762b34b36e280d4f9ee65d593e121ac3f0e44b1869c4"} -2023-12-15T14:43:34.875Z INFO initializing dbft {"height": 1883, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:34.875Z debug frostfs-node/morph.go:229 new block {"index": 1882} -2023-12-15T14:43:35.083Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1882, "blockHeight": 1882, "took": "3.739505ms"} -2023-12-15T14:43:35.876Z INFO sending PrepareRequest {"height": 1883, "view": 0} -2023-12-15T14:43:35.876Z INFO sending Commit {"height": 1883, "view": 0} -2023-12-15T14:43:35.876Z INFO approving block {"height": 1883, "hash": "1335d323b9d1b6e87e1f4eec02b54f1aeac4c4d17fffe5d161870720e884417e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11c40b0d0720d1cb3189d34737f1a94a4a15e68c97aafd9338e4325225170486"} -2023-12-15T14:43:35.877Z INFO initializing dbft {"height": 1884, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:35.877Z debug frostfs-node/morph.go:229 new block {"index": 1883} -2023-12-15T14:43:36.084Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1883, "blockHeight": 1883, "took": "4.735767ms"} -2023-12-15T14:43:36.877Z INFO sending PrepareRequest {"height": 1884, "view": 0} -2023-12-15T14:43:36.878Z INFO sending Commit {"height": 1884, "view": 0} -2023-12-15T14:43:36.878Z INFO approving block {"height": 1884, "hash": "933791eb3d3e745b4a2a55208f1231e655883a90e714502cf6d6300c27363c70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1335d323b9d1b6e87e1f4eec02b54f1aeac4c4d17fffe5d161870720e884417e"} -2023-12-15T14:43:36.879Z INFO initializing dbft {"height": 1885, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:36.880Z debug frostfs-node/morph.go:229 new block {"index": 1884} -2023-12-15T14:43:37.084Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1884, "blockHeight": 1884, "took": "3.957162ms"} -2023-12-15T14:43:37.879Z INFO sending PrepareRequest {"height": 1885, "view": 0} -2023-12-15T14:43:37.879Z INFO sending Commit {"height": 1885, "view": 0} -2023-12-15T14:43:37.879Z INFO approving block {"height": 1885, "hash": "ccfcf62da42c8ea8a967c9dfecbabae2100a6119f1a22cabec9634948b3ef662", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "933791eb3d3e745b4a2a55208f1231e655883a90e714502cf6d6300c27363c70"} -2023-12-15T14:43:37.880Z INFO initializing dbft {"height": 1886, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:37.880Z debug frostfs-node/morph.go:229 new block {"index": 1885} -2023-12-15T14:43:38.084Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1885, "blockHeight": 1885, "took": "2.883015ms"} -2023-12-15T14:43:38.880Z INFO sending PrepareRequest {"height": 1886, "view": 0} -2023-12-15T14:43:38.880Z INFO sending Commit {"height": 1886, "view": 0} -2023-12-15T14:43:38.880Z INFO approving block {"height": 1886, "hash": "a71a7a7b80d518bac12e15e1f61064137f1c56fa7f4cda34feec4733e03168cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ccfcf62da42c8ea8a967c9dfecbabae2100a6119f1a22cabec9634948b3ef662"} -2023-12-15T14:43:38.881Z INFO initializing dbft {"height": 1887, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:38.882Z debug frostfs-node/morph.go:229 new block {"index": 1886} -2023-12-15T14:43:39.086Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1886, "blockHeight": 1886, "took": "4.308016ms"} -2023-12-15T14:43:39.882Z INFO sending PrepareRequest {"height": 1887, "view": 0} -2023-12-15T14:43:39.882Z INFO sending Commit {"height": 1887, "view": 0} -2023-12-15T14:43:39.883Z INFO approving block {"height": 1887, "hash": "6450d32787c2b7e819dbdb555b85eefe0fa15f2f8e6ca28e4c26bc2cdb8f7474", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a71a7a7b80d518bac12e15e1f61064137f1c56fa7f4cda34feec4733e03168cc"} -2023-12-15T14:43:39.883Z INFO initializing dbft {"height": 1888, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:39.884Z debug frostfs-node/morph.go:229 new block {"index": 1887} -2023-12-15T14:43:40.086Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1887, "blockHeight": 1887, "took": "3.997497ms"} -2023-12-15T14:43:40.883Z INFO sending PrepareRequest {"height": 1888, "view": 0} -2023-12-15T14:43:40.884Z INFO sending Commit {"height": 1888, "view": 0} -2023-12-15T14:43:40.884Z INFO approving block {"height": 1888, "hash": "3c4423e2c0ecb205774ca5e290d0f745afa014e51eab6ab9a1fea5f9a7532dae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6450d32787c2b7e819dbdb555b85eefe0fa15f2f8e6ca28e4c26bc2cdb8f7474"} -2023-12-15T14:43:40.885Z INFO initializing dbft {"height": 1889, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:40.886Z debug frostfs-node/morph.go:229 new block {"index": 1888} -2023-12-15T14:43:41.088Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1888, "blockHeight": 1888, "took": "5.091579ms"} -2023-12-15T14:43:41.884Z INFO sending PrepareRequest {"height": 1889, "view": 0} -2023-12-15T14:43:41.885Z INFO sending Commit {"height": 1889, "view": 0} -2023-12-15T14:43:41.885Z INFO approving block {"height": 1889, "hash": "9cb7c2083b581b381a819650d3769ccb12367dc8d6f9ef9d1e1ccc6b46e925ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c4423e2c0ecb205774ca5e290d0f745afa014e51eab6ab9a1fea5f9a7532dae"} -2023-12-15T14:43:41.886Z INFO initializing dbft {"height": 1890, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:41.887Z debug frostfs-node/morph.go:229 new block {"index": 1889} -2023-12-15T14:43:42.087Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1889, "blockHeight": 1889, "took": "3.78107ms"} -2023-12-15T14:43:42.886Z INFO sending PrepareRequest {"height": 1890, "view": 0} -2023-12-15T14:43:42.887Z INFO sending Commit {"height": 1890, "view": 0} -2023-12-15T14:43:42.887Z INFO approving block {"height": 1890, "hash": "91b848349c9beecd9823a8b4d9d3088c80c12ac90d92e9d8355fff8a7326e99f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cb7c2083b581b381a819650d3769ccb12367dc8d6f9ef9d1e1ccc6b46e925ec"} -2023-12-15T14:43:42.888Z INFO initializing dbft {"height": 1891, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:42.888Z debug frostfs-node/morph.go:229 new block {"index": 1890} -2023-12-15T14:43:43.089Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1890, "blockHeight": 1890, "took": "4.356007ms"} -2023-12-15T14:43:43.888Z INFO sending PrepareRequest {"height": 1891, "view": 0} -2023-12-15T14:43:43.888Z INFO sending Commit {"height": 1891, "view": 0} -2023-12-15T14:43:43.888Z INFO approving block {"height": 1891, "hash": "e81d535ac02506f99b089e7e30fbd326e42106c133836147970ab87cfb4a00a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91b848349c9beecd9823a8b4d9d3088c80c12ac90d92e9d8355fff8a7326e99f"} -2023-12-15T14:43:43.889Z INFO initializing dbft {"height": 1892, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:43.889Z debug frostfs-node/morph.go:229 new block {"index": 1891} -2023-12-15T14:43:44.090Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1891, "blockHeight": 1891, "took": "4.903ms"} -2023-12-15T14:43:44.889Z INFO sending PrepareRequest {"height": 1892, "view": 0} -2023-12-15T14:43:44.889Z INFO sending Commit {"height": 1892, "view": 0} -2023-12-15T14:43:44.889Z INFO approving block {"height": 1892, "hash": "09543f063a36d4ce4afeb24d53485843a6a8f824aaa1d60648d34b7e5e5d15ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e81d535ac02506f99b089e7e30fbd326e42106c133836147970ab87cfb4a00a9"} -2023-12-15T14:43:44.890Z INFO initializing dbft {"height": 1893, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:44.890Z debug frostfs-node/morph.go:229 new block {"index": 1892} -2023-12-15T14:43:45.090Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1892, "blockHeight": 1892, "took": "3.896684ms"} -2023-12-15T14:43:45.890Z INFO sending PrepareRequest {"height": 1893, "view": 0} -2023-12-15T14:43:45.890Z INFO sending Commit {"height": 1893, "view": 0} -2023-12-15T14:43:45.890Z INFO approving block {"height": 1893, "hash": "140b756e076c6768fad6d2588cd40a821ecd9840f20c060890a7a71c068c7433", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09543f063a36d4ce4afeb24d53485843a6a8f824aaa1d60648d34b7e5e5d15ca"} -2023-12-15T14:43:45.891Z INFO initializing dbft {"height": 1894, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:45.891Z debug frostfs-node/morph.go:229 new block {"index": 1893} -2023-12-15T14:43:46.093Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1893, "blockHeight": 1893, "took": "5.880422ms"} -2023-12-15T14:43:46.891Z INFO sending PrepareRequest {"height": 1894, "view": 0} -2023-12-15T14:43:46.891Z INFO sending Commit {"height": 1894, "view": 0} -2023-12-15T14:43:46.891Z INFO approving block {"height": 1894, "hash": "1ce2866148ec3134e8a8992a4043da70003931b459c34dd112a9be34e9d2be76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "140b756e076c6768fad6d2588cd40a821ecd9840f20c060890a7a71c068c7433"} -2023-12-15T14:43:46.892Z INFO initializing dbft {"height": 1895, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:46.893Z debug frostfs-node/morph.go:229 new block {"index": 1894} -2023-12-15T14:43:47.091Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1894, "blockHeight": 1894, "took": "3.806475ms"} -2023-12-15T14:43:47.892Z INFO sending PrepareRequest {"height": 1895, "view": 0} -2023-12-15T14:43:47.892Z INFO sending Commit {"height": 1895, "view": 0} -2023-12-15T14:43:47.893Z INFO approving block {"height": 1895, "hash": "cc9f3f18afadad8d50f9f59e5101262b1ada9fb28dc23ff76110fdf0041b24b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ce2866148ec3134e8a8992a4043da70003931b459c34dd112a9be34e9d2be76"} -2023-12-15T14:43:47.893Z INFO initializing dbft {"height": 1896, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:47.894Z debug frostfs-node/morph.go:229 new block {"index": 1895} -2023-12-15T14:43:48.091Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1895, "blockHeight": 1895, "took": "3.988857ms"} -2023-12-15T14:43:48.894Z INFO sending PrepareRequest {"height": 1896, "view": 0} -2023-12-15T14:43:48.894Z INFO sending Commit {"height": 1896, "view": 0} -2023-12-15T14:43:48.895Z INFO approving block {"height": 1896, "hash": "d29836e6ef0d0b7ff56257a866a2bdd65de25390efb6cb6a64b3ce5b0424bcb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc9f3f18afadad8d50f9f59e5101262b1ada9fb28dc23ff76110fdf0041b24b5"} -2023-12-15T14:43:48.896Z INFO initializing dbft {"height": 1897, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:48.896Z debug frostfs-node/morph.go:229 new block {"index": 1896} -2023-12-15T14:43:49.093Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1896, "blockHeight": 1896, "took": "4.79531ms"} -2023-12-15T14:43:49.895Z INFO sending PrepareRequest {"height": 1897, "view": 0} -2023-12-15T14:43:49.896Z INFO sending Commit {"height": 1897, "view": 0} -2023-12-15T14:43:49.896Z INFO approving block {"height": 1897, "hash": "dd75011e82dfab0d4d5cbdf85a2bcf350f533260b222c2f358f3ca64b5f58f81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d29836e6ef0d0b7ff56257a866a2bdd65de25390efb6cb6a64b3ce5b0424bcb7"} -2023-12-15T14:43:49.896Z INFO initializing dbft {"height": 1898, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:49.897Z debug frostfs-node/morph.go:229 new block {"index": 1897} -2023-12-15T14:43:50.095Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1897, "blockHeight": 1897, "took": "6.855378ms"} -2023-12-15T14:43:50.896Z INFO sending PrepareRequest {"height": 1898, "view": 0} -2023-12-15T14:43:50.897Z INFO sending Commit {"height": 1898, "view": 0} -2023-12-15T14:43:50.897Z INFO approving block {"height": 1898, "hash": "fdc97d4c777f3ddb4f2e703b09bf44c37ec842bf89d876d5585fd732118325a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd75011e82dfab0d4d5cbdf85a2bcf350f533260b222c2f358f3ca64b5f58f81"} -2023-12-15T14:43:50.898Z INFO initializing dbft {"height": 1899, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:50.898Z debug frostfs-node/morph.go:229 new block {"index": 1898} -2023-12-15T14:43:51.092Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1898, "blockHeight": 1898, "took": "3.336067ms"} -2023-12-15T14:43:51.897Z INFO sending PrepareRequest {"height": 1899, "view": 0} -2023-12-15T14:43:51.897Z INFO sending Commit {"height": 1899, "view": 0} -2023-12-15T14:43:51.898Z INFO approving block {"height": 1899, "hash": "23079d461a8cc20232df8e77a8296e3bf6e97fb47db25a8a5ebb71fe9c4172f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdc97d4c777f3ddb4f2e703b09bf44c37ec842bf89d876d5585fd732118325a0"} -2023-12-15T14:43:51.898Z INFO initializing dbft {"height": 1900, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:51.899Z debug frostfs-node/morph.go:229 new block {"index": 1899} -2023-12-15T14:43:52.093Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1899, "blockHeight": 1899, "took": "4.091979ms"} -2023-12-15T14:43:52.899Z INFO sending PrepareRequest {"height": 1900, "view": 0} -2023-12-15T14:43:52.899Z INFO sending Commit {"height": 1900, "view": 0} -2023-12-15T14:43:52.899Z INFO approving block {"height": 1900, "hash": "6532298dc4f2480bce44d273e863f3278203fbe0b78a47b81cc60eba31853a27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23079d461a8cc20232df8e77a8296e3bf6e97fb47db25a8a5ebb71fe9c4172f9"} -2023-12-15T14:43:52.900Z INFO initializing dbft {"height": 1901, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:52.901Z debug frostfs-node/morph.go:229 new block {"index": 1900} -2023-12-15T14:43:53.095Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1900, "blockHeight": 1900, "took": "5.034543ms"} -2023-12-15T14:43:53.900Z INFO sending PrepareRequest {"height": 1901, "view": 0} -2023-12-15T14:43:53.900Z INFO sending Commit {"height": 1901, "view": 0} -2023-12-15T14:43:53.900Z INFO approving block {"height": 1901, "hash": "3ccf4095e6449532054be3a0a3b283cb576736236c6b4365d5da24a688fe2224", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6532298dc4f2480bce44d273e863f3278203fbe0b78a47b81cc60eba31853a27"} -2023-12-15T14:43:53.901Z INFO initializing dbft {"height": 1902, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:53.901Z debug frostfs-node/morph.go:229 new block {"index": 1901} -2023-12-15T14:43:54.095Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1901, "blockHeight": 1901, "took": "4.167301ms"} -2023-12-15T14:43:54.900Z INFO sending PrepareRequest {"height": 1902, "view": 0} -2023-12-15T14:43:54.901Z INFO sending Commit {"height": 1902, "view": 0} -2023-12-15T14:43:54.901Z INFO approving block {"height": 1902, "hash": "47ebf1eb154a60f6cefe8bff27aadebe623f6d0edb2543f765b8abd29938c497", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ccf4095e6449532054be3a0a3b283cb576736236c6b4365d5da24a688fe2224"} -2023-12-15T14:43:54.902Z INFO initializing dbft {"height": 1903, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:54.902Z debug frostfs-node/morph.go:229 new block {"index": 1902} -2023-12-15T14:43:55.096Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1902, "blockHeight": 1902, "took": "4.429259ms"} -2023-12-15T14:43:55.901Z INFO sending PrepareRequest {"height": 1903, "view": 0} -2023-12-15T14:43:55.901Z INFO sending Commit {"height": 1903, "view": 0} -2023-12-15T14:43:55.902Z INFO approving block {"height": 1903, "hash": "fe96bd22bcbcb6b798e853a27dbc032d60eee7b42f20c927ff15a5028f117ac3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47ebf1eb154a60f6cefe8bff27aadebe623f6d0edb2543f765b8abd29938c497"} -2023-12-15T14:43:55.902Z INFO initializing dbft {"height": 1904, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:55.903Z debug frostfs-node/morph.go:229 new block {"index": 1903} -2023-12-15T14:43:56.097Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1903, "blockHeight": 1903, "took": "4.532332ms"} -2023-12-15T14:43:56.903Z INFO sending PrepareRequest {"height": 1904, "view": 0} -2023-12-15T14:43:56.903Z INFO sending Commit {"height": 1904, "view": 0} -2023-12-15T14:43:56.903Z INFO approving block {"height": 1904, "hash": "7a695571a3321f42508f36ca9dcae4618d9068e1ac27086eb0c41762f9e6658b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe96bd22bcbcb6b798e853a27dbc032d60eee7b42f20c927ff15a5028f117ac3"} -2023-12-15T14:43:56.904Z INFO initializing dbft {"height": 1905, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:56.905Z debug frostfs-node/morph.go:229 new block {"index": 1904} -2023-12-15T14:43:57.096Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1904, "blockHeight": 1904, "took": "3.534754ms"} -2023-12-15T14:43:57.904Z INFO sending PrepareRequest {"height": 1905, "view": 0} -2023-12-15T14:43:57.905Z INFO sending Commit {"height": 1905, "view": 0} -2023-12-15T14:43:57.905Z INFO approving block {"height": 1905, "hash": "266040f5d17d445b4f331026acc65cc47a5e3d2c0c3e7b134f8ffbc1afc75a9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a695571a3321f42508f36ca9dcae4618d9068e1ac27086eb0c41762f9e6658b"} -2023-12-15T14:43:57.905Z INFO initializing dbft {"height": 1906, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:57.906Z debug frostfs-node/morph.go:229 new block {"index": 1905} -2023-12-15T14:43:58.096Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1905, "blockHeight": 1905, "took": "2.842303ms"} -2023-12-15T14:43:58.906Z INFO sending PrepareRequest {"height": 1906, "view": 0} -2023-12-15T14:43:58.906Z INFO sending Commit {"height": 1906, "view": 0} -2023-12-15T14:43:58.906Z INFO approving block {"height": 1906, "hash": "273876f71749c69a69f3f97de0e1ee8e1872d2554cc354500f7695af1fef8b12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "266040f5d17d445b4f331026acc65cc47a5e3d2c0c3e7b134f8ffbc1afc75a9f"} -2023-12-15T14:43:58.907Z INFO initializing dbft {"height": 1907, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:58.907Z debug frostfs-node/morph.go:229 new block {"index": 1906} -2023-12-15T14:43:59.098Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1906, "blockHeight": 1906, "took": "4.121877ms"} -2023-12-15T14:43:59.907Z INFO sending PrepareRequest {"height": 1907, "view": 0} -2023-12-15T14:43:59.907Z INFO sending Commit {"height": 1907, "view": 0} -2023-12-15T14:43:59.907Z INFO approving block {"height": 1907, "hash": "8bf9c698bea8962692afe409d13515873a6fb7abed74d3fd02c1940119ece7ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "273876f71749c69a69f3f97de0e1ee8e1872d2554cc354500f7695af1fef8b12"} -2023-12-15T14:43:59.908Z INFO initializing dbft {"height": 1908, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:43:59.909Z debug frostfs-node/morph.go:229 new block {"index": 1907} -2023-12-15T14:44:00.101Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1907, "blockHeight": 1907, "took": "5.80539ms"} -2023-12-15T14:44:00.908Z INFO sending PrepareRequest {"height": 1908, "view": 0} -2023-12-15T14:44:00.909Z INFO sending Commit {"height": 1908, "view": 0} -2023-12-15T14:44:00.909Z INFO approving block {"height": 1908, "hash": "e8dedafdfa7830642d4a154f54e3f6a1e4c0679a4fda3a62dbda2c539b5d4077", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bf9c698bea8962692afe409d13515873a6fb7abed74d3fd02c1940119ece7ef"} -2023-12-15T14:44:00.910Z INFO initializing dbft {"height": 1909, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:00.911Z debug frostfs-node/morph.go:229 new block {"index": 1908} -2023-12-15T14:44:01.099Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1908, "blockHeight": 1908, "took": "4.152991ms"} -2023-12-15T14:44:01.910Z INFO sending PrepareRequest {"height": 1909, "view": 0} -2023-12-15T14:44:01.910Z INFO sending Commit {"height": 1909, "view": 0} -2023-12-15T14:44:01.910Z INFO approving block {"height": 1909, "hash": "2943ed80156b2bcb7a1c38b309f9caa2f913f83c63122a304c9f7651592dfc08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8dedafdfa7830642d4a154f54e3f6a1e4c0679a4fda3a62dbda2c539b5d4077"} -2023-12-15T14:44:01.912Z INFO initializing dbft {"height": 1910, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:01.912Z debug frostfs-node/morph.go:229 new block {"index": 1909} -2023-12-15T14:44:02.098Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1909, "blockHeight": 1909, "took": "2.616887ms"} -2023-12-15T14:44:02.911Z INFO sending PrepareRequest {"height": 1910, "view": 0} -2023-12-15T14:44:02.911Z INFO sending Commit {"height": 1910, "view": 0} -2023-12-15T14:44:02.911Z INFO approving block {"height": 1910, "hash": "94dc7394b44ce9bf60a9cd8fb302f614ee1f13f946cadf2b583271e31734241f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2943ed80156b2bcb7a1c38b309f9caa2f913f83c63122a304c9f7651592dfc08"} -2023-12-15T14:44:02.912Z INFO initializing dbft {"height": 1911, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:02.913Z debug frostfs-node/morph.go:229 new block {"index": 1910} -2023-12-15T14:44:03.100Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1910, "blockHeight": 1910, "took": "4.407947ms"} -2023-12-15T14:44:03.913Z INFO sending PrepareRequest {"height": 1911, "view": 0} -2023-12-15T14:44:03.913Z INFO sending Commit {"height": 1911, "view": 0} -2023-12-15T14:44:03.913Z INFO approving block {"height": 1911, "hash": "fcb41ca4d8b2215e41567ba90583ce437ce40a08df90b9e84c5c3407ea573611", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94dc7394b44ce9bf60a9cd8fb302f614ee1f13f946cadf2b583271e31734241f"} -2023-12-15T14:44:03.914Z INFO initializing dbft {"height": 1912, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:03.914Z debug frostfs-node/morph.go:229 new block {"index": 1911} -2023-12-15T14:44:04.101Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1911, "blockHeight": 1911, "took": "3.92257ms"} -2023-12-15T14:44:04.913Z INFO sending PrepareRequest {"height": 1912, "view": 0} -2023-12-15T14:44:04.914Z INFO sending Commit {"height": 1912, "view": 0} -2023-12-15T14:44:04.914Z INFO approving block {"height": 1912, "hash": "9156f0e44e935c875fabfda1ebd70f91159982b67ee4a8f04b893e2f3bd27442", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcb41ca4d8b2215e41567ba90583ce437ce40a08df90b9e84c5c3407ea573611"} -2023-12-15T14:44:04.915Z INFO initializing dbft {"height": 1913, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:04.915Z debug frostfs-node/morph.go:229 new block {"index": 1912} -2023-12-15T14:44:05.102Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1912, "blockHeight": 1912, "took": "4.126721ms"} -2023-12-15T14:44:05.915Z INFO sending PrepareRequest {"height": 1913, "view": 0} -2023-12-15T14:44:05.915Z INFO sending Commit {"height": 1913, "view": 0} -2023-12-15T14:44:05.916Z INFO approving block {"height": 1913, "hash": "621d2e0ea80528e9a381aef685ae9d3f6d73836a386a318ec42811ff61e5330c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9156f0e44e935c875fabfda1ebd70f91159982b67ee4a8f04b893e2f3bd27442"} -2023-12-15T14:44:05.917Z INFO initializing dbft {"height": 1914, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:05.917Z debug frostfs-node/morph.go:229 new block {"index": 1913} -2023-12-15T14:44:06.102Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1913, "blockHeight": 1913, "took": "3.954931ms"} -2023-12-15T14:44:06.916Z INFO sending PrepareRequest {"height": 1914, "view": 0} -2023-12-15T14:44:06.916Z INFO sending Commit {"height": 1914, "view": 0} -2023-12-15T14:44:06.917Z INFO approving block {"height": 1914, "hash": "44abef205f3d61ef6e1fc923bbf19e6b206a2f471d3954a879d3f41e6d4a6f2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "621d2e0ea80528e9a381aef685ae9d3f6d73836a386a318ec42811ff61e5330c"} -2023-12-15T14:44:06.917Z INFO initializing dbft {"height": 1915, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:06.918Z debug frostfs-node/morph.go:229 new block {"index": 1914} -2023-12-15T14:44:07.103Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1914, "blockHeight": 1914, "took": "4.262115ms"} -2023-12-15T14:44:07.918Z INFO sending PrepareRequest {"height": 1915, "view": 0} -2023-12-15T14:44:07.918Z INFO sending Commit {"height": 1915, "view": 0} -2023-12-15T14:44:07.918Z INFO approving block {"height": 1915, "hash": "f49f64834b81ec7f79206b7fc0be5a3863040cb7cd60414801ca384e353f834a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44abef205f3d61ef6e1fc923bbf19e6b206a2f471d3954a879d3f41e6d4a6f2d"} -2023-12-15T14:44:07.919Z INFO initializing dbft {"height": 1916, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:07.919Z debug frostfs-node/morph.go:229 new block {"index": 1915} -2023-12-15T14:44:08.102Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1915, "blockHeight": 1915, "took": "3.696068ms"} -2023-12-15T14:44:08.919Z INFO sending PrepareRequest {"height": 1916, "view": 0} -2023-12-15T14:44:08.919Z INFO sending Commit {"height": 1916, "view": 0} -2023-12-15T14:44:08.919Z INFO approving block {"height": 1916, "hash": "674b39948422dbfddec5fa56c40a71be2d4a5e697149b8e8edd4880136215e0c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f49f64834b81ec7f79206b7fc0be5a3863040cb7cd60414801ca384e353f834a"} -2023-12-15T14:44:08.920Z INFO initializing dbft {"height": 1917, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:08.921Z debug frostfs-node/morph.go:229 new block {"index": 1916} -2023-12-15T14:44:09.103Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1916, "blockHeight": 1916, "took": "4.031042ms"} -2023-12-15T14:44:09.920Z INFO sending PrepareRequest {"height": 1917, "view": 0} -2023-12-15T14:44:09.920Z INFO sending Commit {"height": 1917, "view": 0} -2023-12-15T14:44:09.921Z INFO approving block {"height": 1917, "hash": "3e514bb7a4191dee510a68b77ece2d077993133206eca75fe7c1b2faa6d3bae2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "674b39948422dbfddec5fa56c40a71be2d4a5e697149b8e8edd4880136215e0c"} -2023-12-15T14:44:09.923Z INFO initializing dbft {"height": 1918, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:09.924Z debug frostfs-node/morph.go:229 new block {"index": 1917} -2023-12-15T14:44:09.926Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:44:09.928Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:44:09.928Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:44:10.104Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1917, "blockHeight": 1917, "took": "3.592175ms"} -2023-12-15T14:44:10.922Z INFO sending PrepareRequest {"height": 1918, "view": 0} -2023-12-15T14:44:10.922Z INFO sending Commit {"height": 1918, "view": 0} -2023-12-15T14:44:10.922Z INFO approving block {"height": 1918, "hash": "aad48bc119ac112f54f29eb1f57edbc26b6524f6096f4163e796e6d7da1561a6", "tx_count": 2, "merkle": "dc1e5cd3809768c4c5bc951e77af1e1b4adc10cea8dbca6ca31b794dc6a2b89a", "prev": "3e514bb7a4191dee510a68b77ece2d077993133206eca75fe7c1b2faa6d3bae2"} -2023-12-15T14:44:10.923Z INFO runtime log {"tx": "0e925a60020f424217854eea4bc05f83ffe9373ed2d0413a8bc5d60efe1114f0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:44:10.923Z INFO runtime log {"tx": "0e925a60020f424217854eea4bc05f83ffe9373ed2d0413a8bc5d60efe1114f0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:44:10.924Z INFO initializing dbft {"height": 1919, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:10.925Z debug frostfs-node/morph.go:229 new block {"index": 1918} -2023-12-15T14:44:11.106Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1918, "blockHeight": 1918, "took": "5.414508ms"} -2023-12-15T14:44:11.923Z INFO sending PrepareRequest {"height": 1919, "view": 0} -2023-12-15T14:44:11.923Z INFO sending Commit {"height": 1919, "view": 0} -2023-12-15T14:44:11.924Z INFO approving block {"height": 1919, "hash": "62a37216397fe8c7c648dd8bdc19b20041014ed8fc5556c9d02fde739d0d9a45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad48bc119ac112f54f29eb1f57edbc26b6524f6096f4163e796e6d7da1561a6"} -2023-12-15T14:44:11.925Z INFO initializing dbft {"height": 1920, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:11.926Z debug frostfs-node/morph.go:229 new block {"index": 1919} -2023-12-15T14:44:12.106Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1919, "blockHeight": 1919, "took": "4.556573ms"} -2023-12-15T14:44:12.925Z INFO sending PrepareRequest {"height": 1920, "view": 0} -2023-12-15T14:44:12.925Z INFO sending Commit {"height": 1920, "view": 0} -2023-12-15T14:44:12.926Z INFO approving block {"height": 1920, "hash": "d0044dea4dfb1ab9c1d927e9a1e8e5e641d8a84552b736888f7f91d547f298e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62a37216397fe8c7c648dd8bdc19b20041014ed8fc5556c9d02fde739d0d9a45"} -2023-12-15T14:44:12.927Z INFO initializing dbft {"height": 1921, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:12.928Z debug frostfs-node/morph.go:229 new block {"index": 1920} -2023-12-15T14:44:13.106Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1920, "blockHeight": 1920, "took": "4.12436ms"} -2023-12-15T14:44:13.926Z INFO sending PrepareRequest {"height": 1921, "view": 0} -2023-12-15T14:44:13.927Z INFO sending Commit {"height": 1921, "view": 0} -2023-12-15T14:44:13.927Z INFO approving block {"height": 1921, "hash": "eaec2c68205fad2dc30afb9ce0c128eb50ff0e4c247611e23dc0c99e2d30e569", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0044dea4dfb1ab9c1d927e9a1e8e5e641d8a84552b736888f7f91d547f298e5"} -2023-12-15T14:44:13.928Z INFO initializing dbft {"height": 1922, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:13.928Z debug frostfs-node/morph.go:229 new block {"index": 1921} -2023-12-15T14:44:14.106Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1921, "blockHeight": 1921, "took": "3.479978ms"} -2023-12-15T14:44:14.928Z INFO sending PrepareRequest {"height": 1922, "view": 0} -2023-12-15T14:44:14.928Z INFO sending Commit {"height": 1922, "view": 0} -2023-12-15T14:44:14.928Z INFO approving block {"height": 1922, "hash": "5a4e29925fecf2553b058e5e848bdfeb8ffac008d9449e3fe46ec31c72f32ca4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eaec2c68205fad2dc30afb9ce0c128eb50ff0e4c247611e23dc0c99e2d30e569"} -2023-12-15T14:44:14.929Z INFO initializing dbft {"height": 1923, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:14.931Z debug frostfs-node/morph.go:229 new block {"index": 1922} -2023-12-15T14:44:15.107Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1922, "blockHeight": 1922, "took": "3.888136ms"} -2023-12-15T14:44:15.929Z INFO sending PrepareRequest {"height": 1923, "view": 0} -2023-12-15T14:44:15.929Z INFO sending Commit {"height": 1923, "view": 0} -2023-12-15T14:44:15.930Z INFO approving block {"height": 1923, "hash": "eabf435530d34d734489e25466ac9c3722dfced43a150b20e92c8589414ccfe0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a4e29925fecf2553b058e5e848bdfeb8ffac008d9449e3fe46ec31c72f32ca4"} -2023-12-15T14:44:15.930Z INFO initializing dbft {"height": 1924, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:15.931Z debug frostfs-node/morph.go:229 new block {"index": 1923} -2023-12-15T14:44:16.108Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1923, "blockHeight": 1923, "took": "4.459844ms"} -2023-12-15T14:44:16.931Z INFO sending PrepareRequest {"height": 1924, "view": 0} -2023-12-15T14:44:16.931Z INFO sending Commit {"height": 1924, "view": 0} -2023-12-15T14:44:16.931Z INFO approving block {"height": 1924, "hash": "89439a7368ce1e4ffc31df697fda841076a07bd38b6e65200689274b1a0e8a64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eabf435530d34d734489e25466ac9c3722dfced43a150b20e92c8589414ccfe0"} -2023-12-15T14:44:16.932Z INFO initializing dbft {"height": 1925, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:16.932Z debug frostfs-node/morph.go:229 new block {"index": 1924} -2023-12-15T14:44:17.108Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1924, "blockHeight": 1924, "took": "4.599924ms"} -2023-12-15T14:44:17.932Z INFO sending PrepareRequest {"height": 1925, "view": 0} -2023-12-15T14:44:17.933Z INFO sending Commit {"height": 1925, "view": 0} -2023-12-15T14:44:17.933Z INFO approving block {"height": 1925, "hash": "c2db969b156d5cf0a2bcc43b4ed27f7a11fba957c243a0e867bec8c8e9c836ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89439a7368ce1e4ffc31df697fda841076a07bd38b6e65200689274b1a0e8a64"} -2023-12-15T14:44:17.935Z INFO initializing dbft {"height": 1926, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:17.935Z debug frostfs-node/morph.go:229 new block {"index": 1925} -2023-12-15T14:44:18.107Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1925, "blockHeight": 1925, "took": "2.76081ms"} -2023-12-15T14:44:18.934Z INFO sending PrepareRequest {"height": 1926, "view": 0} -2023-12-15T14:44:18.934Z INFO sending Commit {"height": 1926, "view": 0} -2023-12-15T14:44:18.934Z INFO approving block {"height": 1926, "hash": "bb6ac67c327c2d5e09f1e4f3fd91e6020b60bf22e6d419938b365b5caa77c8f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2db969b156d5cf0a2bcc43b4ed27f7a11fba957c243a0e867bec8c8e9c836ef"} -2023-12-15T14:44:18.935Z INFO initializing dbft {"height": 1927, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:18.935Z debug frostfs-node/morph.go:229 new block {"index": 1926} -2023-12-15T14:44:19.109Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1926, "blockHeight": 1926, "took": "4.072489ms"} -2023-12-15T14:44:19.935Z INFO sending PrepareRequest {"height": 1927, "view": 0} -2023-12-15T14:44:19.935Z INFO sending Commit {"height": 1927, "view": 0} -2023-12-15T14:44:19.935Z INFO approving block {"height": 1927, "hash": "91b84eaab2ccbd0575724c0e9f8f9672186ca0c34baf88c20373f9994f904b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb6ac67c327c2d5e09f1e4f3fd91e6020b60bf22e6d419938b365b5caa77c8f9"} -2023-12-15T14:44:19.936Z INFO initializing dbft {"height": 1928, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:19.937Z debug frostfs-node/morph.go:229 new block {"index": 1927} -2023-12-15T14:44:19.939Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:44:19.940Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 8, "iteration": 3, "error": "no data for 2 iteration in 8 epoch for consumers's trusts"} -2023-12-15T14:44:19.941Z INFO runtime log {"tx": "28dfa8983a4d5213acfdd9a53e13e16a4dafe49160007f86919c13f092f5a494", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:44:20.108Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1927, "blockHeight": 1927, "took": "2.770171ms"} -2023-12-15T14:44:20.937Z INFO sending PrepareRequest {"height": 1928, "view": 0} -2023-12-15T14:44:20.937Z INFO sending Commit {"height": 1928, "view": 0} -2023-12-15T14:44:20.937Z INFO approving block {"height": 1928, "hash": "eeb6b4c9a417798e81d980e445546809351477f4dacbd276a311c2f8fbb0d1ee", "tx_count": 1, "merkle": "76db6ff4e3ebfbc784d4b0c87f4961455d44484a8dad6edf3928461c43889458", "prev": "91b84eaab2ccbd0575724c0e9f8f9672186ca0c34baf88c20373f9994f904b39"} -2023-12-15T14:44:20.938Z INFO runtime log {"tx": "589488431c462839df6ead8d4a48445d4561497fc8b0d484c7fbebe3f46fdb76", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:44:20.939Z INFO initializing dbft {"height": 1929, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:20.939Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 10} -2023-12-15T14:44:20.939Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 10} -2023-12-15T14:44:20.940Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:44:20.940Z debug frostfs-node/morph.go:229 new block {"index": 1928} -2023-12-15T14:44:20.940Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 10} -2023-12-15T14:44:20.940Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 10} -2023-12-15T14:44:20.940Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T14:44:20.940Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 10} -2023-12-15T14:44:20.940Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:44:20.940Z debug controller/calls.go:95 starting to report local trust values {"epoch": 9} -2023-12-15T14:44:20.940Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 9} -2023-12-15T14:44:20.942Z debug controller/calls.go:146 reporting successfully finished {"epoch": 9} -2023-12-15T14:44:20.943Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 9} -2023-12-15T14:44:20.944Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:44:20.944Z INFO runtime log {"tx": "0676c684fb94dfc1a3c76c73eac724ad533efc0dba13fefb365c331463e88deb", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:44:20.946Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 1931, "tx_hash": "6a16310efaed865afc554ff4994c9401e7d435434a0e43013b34138c97722648"} -2023-12-15T14:44:20.952Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 2000, "fallback_valid_for": 40, "tx_hash": "7dc9b6eae949bb6a973e2e752b534141eaa7a4261db8b9d6e5d9fc1da4b8a8e4"} -2023-12-15T14:44:20.952Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:44:20.952Z info audit/handlers.go:13 new round of audit {"epoch": 10} -2023-12-15T14:44:20.952Z info settlement/calls.go:26 new audit settlement event {"epoch": 10} -2023-12-15T14:44:20.952Z info settlement/handlers.go:14 process audit settlements {"epoch": 10} -2023-12-15T14:44:20.952Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 10} -2023-12-15T14:44:20.953Z info settlement/handlers.go:18 audit processing finished {"epoch": 10} -2023-12-15T14:44:20.954Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T14:44:20.954Z info audit/process.go:39 select containers for audit {"epoch": 10, "amount": 0} -2023-12-15T14:44:20.957Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 1931, "tx_hash": "6838d896244cacbf00cfff349f8654046a708fbf756ed26c1c46585fca613865"} -2023-12-15T14:44:21.113Z INFO persisted to disk {"blocks": 1, "keys": 55, "headerHeight": 1928, "blockHeight": 1928, "took": "7.434888ms"} -2023-12-15T14:44:21.938Z INFO sending PrepareRequest {"height": 1929, "view": 0} -2023-12-15T14:44:21.939Z INFO sending Commit {"height": 1929, "view": 0} -2023-12-15T14:44:21.939Z INFO approving block {"height": 1929, "hash": "50cdc64823d883f2851ef6e3bb50d0f47988087b330fb86cf568136ad1c82d95", "tx_count": 3, "merkle": "adc8f6fc3d1b4a0c49917c3b999da7f6d02e706b059be2df2f075f28b7a42869", "prev": "eeb6b4c9a417798e81d980e445546809351477f4dacbd276a311c2f8fbb0d1ee"} -2023-12-15T14:44:21.940Z INFO runtime log {"tx": "efb51f7d2c312a61ed3616b97f97733fc65238516b0bcbc126e9bb6b5026dd62", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:44:21.940Z INFO initializing dbft {"height": 1930, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:21.941Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 9} -2023-12-15T14:44:21.941Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 9} -2023-12-15T14:44:21.941Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 9} -2023-12-15T14:44:21.942Z debug frostfs-node/morph.go:229 new block {"index": 1929} -2023-12-15T14:44:22.114Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 1929, "blockHeight": 1929, "took": "8.044354ms"} -2023-12-15T14:44:22.941Z INFO sending PrepareRequest {"height": 1930, "view": 0} -2023-12-15T14:44:22.941Z INFO sending Commit {"height": 1930, "view": 0} -2023-12-15T14:44:22.941Z INFO approving block {"height": 1930, "hash": "18164adc2eee1247fe77c2227637ed9ded1c302ec51b642ebaf6292928e528d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50cdc64823d883f2851ef6e3bb50d0f47988087b330fb86cf568136ad1c82d95"} -2023-12-15T14:44:22.942Z INFO initializing dbft {"height": 1931, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:22.943Z debug frostfs-node/morph.go:229 new block {"index": 1930} -2023-12-15T14:44:23.109Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1930, "blockHeight": 1930, "took": "2.982297ms"} -2023-12-15T14:44:23.942Z INFO sending PrepareRequest {"height": 1931, "view": 0} -2023-12-15T14:44:23.942Z INFO sending Commit {"height": 1931, "view": 0} -2023-12-15T14:44:23.942Z INFO approving block {"height": 1931, "hash": "616ec5c94406b143a45bd727379d206bef10cec8223bffcbf4e9e42475bfff8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18164adc2eee1247fe77c2227637ed9ded1c302ec51b642ebaf6292928e528d3"} -2023-12-15T14:44:23.943Z INFO initializing dbft {"height": 1932, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:23.943Z debug frostfs-node/morph.go:229 new block {"index": 1931} -2023-12-15T14:44:24.111Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1931, "blockHeight": 1931, "took": "4.556116ms"} -2023-12-15T14:44:24.943Z INFO sending PrepareRequest {"height": 1932, "view": 0} -2023-12-15T14:44:24.943Z INFO sending Commit {"height": 1932, "view": 0} -2023-12-15T14:44:24.944Z INFO approving block {"height": 1932, "hash": "f1d2bf132d8efdb5dd06c8aae38fa2024cb5674148d9f5fc19de10f3020665f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "616ec5c94406b143a45bd727379d206bef10cec8223bffcbf4e9e42475bfff8a"} -2023-12-15T14:44:24.944Z INFO initializing dbft {"height": 1933, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:24.945Z debug frostfs-node/morph.go:229 new block {"index": 1932} -2023-12-15T14:44:25.111Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1932, "blockHeight": 1932, "took": "3.617866ms"} -2023-12-15T14:44:25.944Z INFO sending PrepareRequest {"height": 1933, "view": 0} -2023-12-15T14:44:25.945Z INFO sending Commit {"height": 1933, "view": 0} -2023-12-15T14:44:25.945Z INFO approving block {"height": 1933, "hash": "1b5f52ad06b4f4db9ec1dc8cfbf19a37b3a1076aafd71b3b0e6de4adbca04f71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1d2bf132d8efdb5dd06c8aae38fa2024cb5674148d9f5fc19de10f3020665f8"} -2023-12-15T14:44:25.946Z INFO initializing dbft {"height": 1934, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:25.946Z debug frostfs-node/morph.go:229 new block {"index": 1933} -2023-12-15T14:44:26.111Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1933, "blockHeight": 1933, "took": "3.832372ms"} -2023-12-15T14:44:26.945Z INFO sending PrepareRequest {"height": 1934, "view": 0} -2023-12-15T14:44:26.946Z INFO sending Commit {"height": 1934, "view": 0} -2023-12-15T14:44:26.946Z INFO approving block {"height": 1934, "hash": "53376da6985c7c005c6da0c69a7def04aa3398911e503ffc9b67385832cf96c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b5f52ad06b4f4db9ec1dc8cfbf19a37b3a1076aafd71b3b0e6de4adbca04f71"} -2023-12-15T14:44:26.947Z INFO initializing dbft {"height": 1935, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:26.947Z debug frostfs-node/morph.go:229 new block {"index": 1934} -2023-12-15T14:44:27.112Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1934, "blockHeight": 1934, "took": "3.179853ms"} -2023-12-15T14:44:27.947Z INFO sending PrepareRequest {"height": 1935, "view": 0} -2023-12-15T14:44:27.947Z INFO sending Commit {"height": 1935, "view": 0} -2023-12-15T14:44:27.947Z INFO approving block {"height": 1935, "hash": "10ea0550a141043b70e10a40d4690a4ff630bb0af358d3ee5c8765fd005df171", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53376da6985c7c005c6da0c69a7def04aa3398911e503ffc9b67385832cf96c6"} -2023-12-15T14:44:27.948Z INFO initializing dbft {"height": 1936, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:27.949Z debug frostfs-node/morph.go:229 new block {"index": 1935} -2023-12-15T14:44:28.112Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1935, "blockHeight": 1935, "took": "2.873324ms"} -2023-12-15T14:44:28.948Z INFO sending PrepareRequest {"height": 1936, "view": 0} -2023-12-15T14:44:28.948Z INFO sending Commit {"height": 1936, "view": 0} -2023-12-15T14:44:28.948Z INFO approving block {"height": 1936, "hash": "ab6b296501aa2c90058dc3475caee094ad93bbc482f2a479126f271bb99c5ac4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10ea0550a141043b70e10a40d4690a4ff630bb0af358d3ee5c8765fd005df171"} -2023-12-15T14:44:28.949Z INFO initializing dbft {"height": 1937, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:28.950Z debug frostfs-node/morph.go:229 new block {"index": 1936} -2023-12-15T14:44:29.113Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1936, "blockHeight": 1936, "took": "3.787211ms"} -2023-12-15T14:44:29.950Z INFO sending PrepareRequest {"height": 1937, "view": 0} -2023-12-15T14:44:29.950Z INFO sending Commit {"height": 1937, "view": 0} -2023-12-15T14:44:29.950Z INFO approving block {"height": 1937, "hash": "f27cffbb9659a0c45b94785e15e1ee76145f443564cadcc774c8135880c01d2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab6b296501aa2c90058dc3475caee094ad93bbc482f2a479126f271bb99c5ac4"} -2023-12-15T14:44:29.951Z INFO initializing dbft {"height": 1938, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:29.952Z debug frostfs-node/morph.go:229 new block {"index": 1937} -2023-12-15T14:44:30.113Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1937, "blockHeight": 1937, "took": "2.959016ms"} -2023-12-15T14:44:30.951Z INFO sending PrepareRequest {"height": 1938, "view": 0} -2023-12-15T14:44:30.952Z INFO sending Commit {"height": 1938, "view": 0} -2023-12-15T14:44:30.952Z INFO approving block {"height": 1938, "hash": "ffbbd0eb643b8a90cc7c5c0871927403af9bef821040848c839d37804af629d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f27cffbb9659a0c45b94785e15e1ee76145f443564cadcc774c8135880c01d2f"} -2023-12-15T14:44:30.954Z INFO initializing dbft {"height": 1939, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:30.954Z debug frostfs-node/morph.go:229 new block {"index": 1938} -2023-12-15T14:44:31.115Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1938, "blockHeight": 1938, "took": "4.477081ms"} -2023-12-15T14:44:31.953Z INFO sending PrepareRequest {"height": 1939, "view": 0} -2023-12-15T14:44:31.953Z INFO sending Commit {"height": 1939, "view": 0} -2023-12-15T14:44:31.954Z INFO approving block {"height": 1939, "hash": "4ee3be2368a6b24d190b2a7e967c2263718432d8b3d6dcae90faf5ea3b862a26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffbbd0eb643b8a90cc7c5c0871927403af9bef821040848c839d37804af629d5"} -2023-12-15T14:44:31.955Z INFO initializing dbft {"height": 1940, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:31.956Z debug frostfs-node/morph.go:229 new block {"index": 1939} -2023-12-15T14:44:32.116Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1939, "blockHeight": 1939, "took": "4.513092ms"} -2023-12-15T14:44:32.954Z INFO sending PrepareRequest {"height": 1940, "view": 0} -2023-12-15T14:44:32.955Z INFO sending Commit {"height": 1940, "view": 0} -2023-12-15T14:44:32.955Z INFO approving block {"height": 1940, "hash": "5a339d0f6c4b322556a44d8e15d9b231266231433703703c5aa350d73f9e848b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ee3be2368a6b24d190b2a7e967c2263718432d8b3d6dcae90faf5ea3b862a26"} -2023-12-15T14:44:32.957Z INFO initializing dbft {"height": 1941, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:32.957Z debug frostfs-node/morph.go:229 new block {"index": 1940} -2023-12-15T14:44:33.117Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1940, "blockHeight": 1940, "took": "5.331806ms"} -2023-12-15T14:44:33.956Z INFO sending PrepareRequest {"height": 1941, "view": 0} -2023-12-15T14:44:33.956Z INFO sending Commit {"height": 1941, "view": 0} -2023-12-15T14:44:33.956Z INFO approving block {"height": 1941, "hash": "b8b0fdca8d689dbe311079419a4b08d9390227d3aec8ee1c09db08a80bdacdce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a339d0f6c4b322556a44d8e15d9b231266231433703703c5aa350d73f9e848b"} -2023-12-15T14:44:33.958Z INFO initializing dbft {"height": 1942, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:33.958Z debug frostfs-node/morph.go:229 new block {"index": 1941} -2023-12-15T14:44:34.115Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1941, "blockHeight": 1941, "took": "2.946376ms"} -2023-12-15T14:44:34.957Z INFO sending PrepareRequest {"height": 1942, "view": 0} -2023-12-15T14:44:34.957Z INFO sending Commit {"height": 1942, "view": 0} -2023-12-15T14:44:34.958Z INFO approving block {"height": 1942, "hash": "2d30630ba9ba069b83a4b9d6d26b99cf132539cd0990879af687a083b2c275d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8b0fdca8d689dbe311079419a4b08d9390227d3aec8ee1c09db08a80bdacdce"} -2023-12-15T14:44:34.959Z INFO initializing dbft {"height": 1943, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:34.959Z debug frostfs-node/morph.go:229 new block {"index": 1942} -2023-12-15T14:44:35.115Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1942, "blockHeight": 1942, "took": "2.876994ms"} -2023-12-15T14:44:35.958Z INFO sending PrepareRequest {"height": 1943, "view": 0} -2023-12-15T14:44:35.958Z INFO sending Commit {"height": 1943, "view": 0} -2023-12-15T14:44:35.958Z INFO approving block {"height": 1943, "hash": "af724466df9248ea587e1993bb99d50c6f553bf1d91afed271588a0d6323dbaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d30630ba9ba069b83a4b9d6d26b99cf132539cd0990879af687a083b2c275d3"} -2023-12-15T14:44:35.959Z INFO initializing dbft {"height": 1944, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:35.960Z debug frostfs-node/morph.go:229 new block {"index": 1943} -2023-12-15T14:44:36.119Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1943, "blockHeight": 1943, "took": "5.960204ms"} -2023-12-15T14:44:36.959Z INFO sending PrepareRequest {"height": 1944, "view": 0} -2023-12-15T14:44:36.959Z INFO sending Commit {"height": 1944, "view": 0} -2023-12-15T14:44:36.960Z INFO approving block {"height": 1944, "hash": "b9c1f6b9bc7e6e4c2b3215625342ccb6c331f5222b8b246b5f2cf26c0a8342c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af724466df9248ea587e1993bb99d50c6f553bf1d91afed271588a0d6323dbaa"} -2023-12-15T14:44:36.961Z INFO initializing dbft {"height": 1945, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:36.962Z debug frostfs-node/morph.go:229 new block {"index": 1944} -2023-12-15T14:44:37.117Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1944, "blockHeight": 1944, "took": "2.876363ms"} -2023-12-15T14:44:37.960Z INFO sending PrepareRequest {"height": 1945, "view": 0} -2023-12-15T14:44:37.961Z INFO sending Commit {"height": 1945, "view": 0} -2023-12-15T14:44:37.961Z INFO approving block {"height": 1945, "hash": "14e95d00474977f56e09620933feed17138601c7dd367ce9c9d1d98a66087595", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9c1f6b9bc7e6e4c2b3215625342ccb6c331f5222b8b246b5f2cf26c0a8342c5"} -2023-12-15T14:44:37.962Z INFO initializing dbft {"height": 1946, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:37.962Z debug frostfs-node/morph.go:229 new block {"index": 1945} -2023-12-15T14:44:38.117Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1945, "blockHeight": 1945, "took": "2.872883ms"} -2023-12-15T14:44:38.962Z INFO sending PrepareRequest {"height": 1946, "view": 0} -2023-12-15T14:44:38.962Z INFO sending Commit {"height": 1946, "view": 0} -2023-12-15T14:44:38.962Z INFO approving block {"height": 1946, "hash": "75cbd526b2c7e349cdf0b4e82594718c1e7364887e9078ec908132b21d90e3aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14e95d00474977f56e09620933feed17138601c7dd367ce9c9d1d98a66087595"} -2023-12-15T14:44:38.963Z INFO initializing dbft {"height": 1947, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:38.963Z debug frostfs-node/morph.go:229 new block {"index": 1946} -2023-12-15T14:44:39.118Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1946, "blockHeight": 1946, "took": "2.957177ms"} -2023-12-15T14:44:39.963Z INFO sending PrepareRequest {"height": 1947, "view": 0} -2023-12-15T14:44:39.963Z INFO sending Commit {"height": 1947, "view": 0} -2023-12-15T14:44:39.963Z INFO approving block {"height": 1947, "hash": "01d1e247cc83633388712d074b98eabcda906f10d2817b1ac1465d606b8f399e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75cbd526b2c7e349cdf0b4e82594718c1e7364887e9078ec908132b21d90e3aa"} -2023-12-15T14:44:39.964Z INFO initializing dbft {"height": 1948, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:39.965Z debug frostfs-node/morph.go:229 new block {"index": 1947} -2023-12-15T14:44:40.120Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1947, "blockHeight": 1947, "took": "4.553463ms"} -2023-12-15T14:44:40.964Z INFO sending PrepareRequest {"height": 1948, "view": 0} -2023-12-15T14:44:40.964Z INFO sending Commit {"height": 1948, "view": 0} -2023-12-15T14:44:40.964Z INFO approving block {"height": 1948, "hash": "0a07a3898811ee40142fe1d84aeb3435d80b828be581ac85278af697d7441ef2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01d1e247cc83633388712d074b98eabcda906f10d2817b1ac1465d606b8f399e"} -2023-12-15T14:44:40.965Z INFO initializing dbft {"height": 1949, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:40.966Z debug frostfs-node/morph.go:229 new block {"index": 1948} -2023-12-15T14:44:41.119Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1948, "blockHeight": 1948, "took": "2.975277ms"} -2023-12-15T14:44:41.965Z INFO sending PrepareRequest {"height": 1949, "view": 0} -2023-12-15T14:44:41.965Z INFO sending Commit {"height": 1949, "view": 0} -2023-12-15T14:44:41.966Z INFO approving block {"height": 1949, "hash": "fd4adb382fb44800f08fe3fa7d52f2417b591635a488586ac1c0309229f13057", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a07a3898811ee40142fe1d84aeb3435d80b828be581ac85278af697d7441ef2"} -2023-12-15T14:44:41.967Z INFO initializing dbft {"height": 1950, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:41.967Z debug frostfs-node/morph.go:229 new block {"index": 1949} -2023-12-15T14:44:42.119Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1949, "blockHeight": 1949, "took": "3.193033ms"} -2023-12-15T14:44:42.966Z INFO sending PrepareRequest {"height": 1950, "view": 0} -2023-12-15T14:44:42.966Z INFO sending Commit {"height": 1950, "view": 0} -2023-12-15T14:44:42.966Z INFO approving block {"height": 1950, "hash": "f881e2d7368646e6b903fd4a9a85eb289be732d898c48c844c9144434788f48f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd4adb382fb44800f08fe3fa7d52f2417b591635a488586ac1c0309229f13057"} -2023-12-15T14:44:42.968Z INFO initializing dbft {"height": 1951, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:42.968Z debug frostfs-node/morph.go:229 new block {"index": 1950} -2023-12-15T14:44:43.121Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1950, "blockHeight": 1950, "took": "4.202903ms"} -2023-12-15T14:44:43.967Z INFO sending PrepareRequest {"height": 1951, "view": 0} -2023-12-15T14:44:43.967Z INFO sending Commit {"height": 1951, "view": 0} -2023-12-15T14:44:43.967Z INFO approving block {"height": 1951, "hash": "a7edd2fd8d79e572e0c61aca818c9c6044a35524da192f403456c24986906cff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f881e2d7368646e6b903fd4a9a85eb289be732d898c48c844c9144434788f48f"} -2023-12-15T14:44:43.968Z INFO initializing dbft {"height": 1952, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:43.969Z debug frostfs-node/morph.go:229 new block {"index": 1951} -2023-12-15T14:44:44.121Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1951, "blockHeight": 1951, "took": "2.622986ms"} -2023-12-15T14:44:44.968Z INFO sending PrepareRequest {"height": 1952, "view": 0} -2023-12-15T14:44:44.969Z INFO sending Commit {"height": 1952, "view": 0} -2023-12-15T14:44:44.969Z INFO approving block {"height": 1952, "hash": "1ad9cb6ae766a30f20043b40e24c37e20cb3e5aa21379212ee29eac94461d8f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7edd2fd8d79e572e0c61aca818c9c6044a35524da192f403456c24986906cff"} -2023-12-15T14:44:44.970Z INFO initializing dbft {"height": 1953, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:44.970Z debug frostfs-node/morph.go:229 new block {"index": 1952} -2023-12-15T14:44:45.123Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1952, "blockHeight": 1952, "took": "4.11129ms"} -2023-12-15T14:44:45.969Z INFO sending PrepareRequest {"height": 1953, "view": 0} -2023-12-15T14:44:45.969Z INFO sending Commit {"height": 1953, "view": 0} -2023-12-15T14:44:45.970Z INFO approving block {"height": 1953, "hash": "f6fe36a9dee5c3a364967dd42aabc529d757731a9d3d19798a11b41ad76a2ae5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ad9cb6ae766a30f20043b40e24c37e20cb3e5aa21379212ee29eac94461d8f6"} -2023-12-15T14:44:45.971Z INFO initializing dbft {"height": 1954, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:45.971Z debug frostfs-node/morph.go:229 new block {"index": 1953} -2023-12-15T14:44:46.123Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1953, "blockHeight": 1953, "took": "3.62439ms"} -2023-12-15T14:44:46.971Z INFO sending PrepareRequest {"height": 1954, "view": 0} -2023-12-15T14:44:46.971Z INFO sending Commit {"height": 1954, "view": 0} -2023-12-15T14:44:46.971Z INFO approving block {"height": 1954, "hash": "686d8723d0fd7f6a249f6de9da1c167ead35346f2fafcc93b7d38792efd912de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6fe36a9dee5c3a364967dd42aabc529d757731a9d3d19798a11b41ad76a2ae5"} -2023-12-15T14:44:46.972Z INFO initializing dbft {"height": 1955, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:46.973Z debug frostfs-node/morph.go:229 new block {"index": 1954} -2023-12-15T14:44:47.123Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1954, "blockHeight": 1954, "took": "2.712329ms"} -2023-12-15T14:44:47.972Z INFO sending PrepareRequest {"height": 1955, "view": 0} -2023-12-15T14:44:47.972Z INFO sending Commit {"height": 1955, "view": 0} -2023-12-15T14:44:47.973Z INFO approving block {"height": 1955, "hash": "c2d6b20a256aaf7981e1fd2710815def073a648d4cbe83e0fa17f54a248dcd8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "686d8723d0fd7f6a249f6de9da1c167ead35346f2fafcc93b7d38792efd912de"} -2023-12-15T14:44:47.974Z INFO initializing dbft {"height": 1956, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:47.974Z debug frostfs-node/morph.go:229 new block {"index": 1955} -2023-12-15T14:44:48.126Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1955, "blockHeight": 1955, "took": "5.888685ms"} -2023-12-15T14:44:48.974Z INFO sending PrepareRequest {"height": 1956, "view": 0} -2023-12-15T14:44:48.974Z INFO sending Commit {"height": 1956, "view": 0} -2023-12-15T14:44:48.975Z INFO approving block {"height": 1956, "hash": "33c31adb239068f549e2a6778dda4362b7f5e4b23546d458e8c0ad9b52c25bbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2d6b20a256aaf7981e1fd2710815def073a648d4cbe83e0fa17f54a248dcd8f"} -2023-12-15T14:44:48.976Z INFO initializing dbft {"height": 1957, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:48.976Z debug frostfs-node/morph.go:229 new block {"index": 1956} -2023-12-15T14:44:49.124Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1956, "blockHeight": 1956, "took": "3.015157ms"} -2023-12-15T14:44:49.976Z INFO sending PrepareRequest {"height": 1957, "view": 0} -2023-12-15T14:44:49.976Z INFO sending Commit {"height": 1957, "view": 0} -2023-12-15T14:44:49.977Z INFO approving block {"height": 1957, "hash": "a2269d7da770883b8df75162871ea520ef2fb4f7b6d970fb68568c0aeb3e7777", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33c31adb239068f549e2a6778dda4362b7f5e4b23546d458e8c0ad9b52c25bbc"} -2023-12-15T14:44:49.978Z INFO initializing dbft {"height": 1958, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:49.979Z debug frostfs-node/morph.go:229 new block {"index": 1957} -2023-12-15T14:44:50.126Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1957, "blockHeight": 1957, "took": "4.46332ms"} -2023-12-15T14:44:50.977Z INFO sending PrepareRequest {"height": 1958, "view": 0} -2023-12-15T14:44:50.977Z INFO sending Commit {"height": 1958, "view": 0} -2023-12-15T14:44:50.978Z INFO approving block {"height": 1958, "hash": "78c97dc5c08666c9342303a58081e3dfd0bc5b7f6387e8784a5511aa10353e64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2269d7da770883b8df75162871ea520ef2fb4f7b6d970fb68568c0aeb3e7777"} -2023-12-15T14:44:50.979Z INFO initializing dbft {"height": 1959, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:50.979Z debug frostfs-node/morph.go:229 new block {"index": 1958} -2023-12-15T14:44:51.125Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1958, "blockHeight": 1958, "took": "2.673238ms"} -2023-12-15T14:44:51.978Z INFO sending PrepareRequest {"height": 1959, "view": 0} -2023-12-15T14:44:51.978Z INFO sending Commit {"height": 1959, "view": 0} -2023-12-15T14:44:51.978Z INFO approving block {"height": 1959, "hash": "2bb0f0555431ca950e5f657516aea14234462e0b222d12d73db9b8fe1f6ca287", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78c97dc5c08666c9342303a58081e3dfd0bc5b7f6387e8784a5511aa10353e64"} -2023-12-15T14:44:51.979Z INFO initializing dbft {"height": 1960, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:51.980Z debug frostfs-node/morph.go:229 new block {"index": 1959} -2023-12-15T14:44:52.127Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1959, "blockHeight": 1959, "took": "3.283336ms"} -2023-12-15T14:44:52.980Z INFO sending PrepareRequest {"height": 1960, "view": 0} -2023-12-15T14:44:52.980Z INFO sending Commit {"height": 1960, "view": 0} -2023-12-15T14:44:52.981Z INFO approving block {"height": 1960, "hash": "56a7d88987a1f5ecdc4812f20939d07902a278a7d6eb6cd8667bd0bcba49b410", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2bb0f0555431ca950e5f657516aea14234462e0b222d12d73db9b8fe1f6ca287"} -2023-12-15T14:44:52.982Z INFO initializing dbft {"height": 1961, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:52.982Z debug frostfs-node/morph.go:229 new block {"index": 1960} -2023-12-15T14:44:53.128Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1960, "blockHeight": 1960, "took": "3.658217ms"} -2023-12-15T14:44:53.981Z INFO sending PrepareRequest {"height": 1961, "view": 0} -2023-12-15T14:44:53.982Z INFO sending Commit {"height": 1961, "view": 0} -2023-12-15T14:44:53.982Z INFO approving block {"height": 1961, "hash": "06fbd4208680e6fbf743c4ff59f74fe844e81973648238bf2898b81a7568aeca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56a7d88987a1f5ecdc4812f20939d07902a278a7d6eb6cd8667bd0bcba49b410"} -2023-12-15T14:44:53.983Z INFO initializing dbft {"height": 1962, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:53.983Z debug frostfs-node/morph.go:229 new block {"index": 1961} -2023-12-15T14:44:54.130Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1961, "blockHeight": 1961, "took": "4.698527ms"} -2023-12-15T14:44:54.982Z INFO sending PrepareRequest {"height": 1962, "view": 0} -2023-12-15T14:44:54.982Z INFO sending Commit {"height": 1962, "view": 0} -2023-12-15T14:44:54.982Z INFO approving block {"height": 1962, "hash": "0fb02c0bb7f83bfb23c02fa08a6bd692a5743b20376a5bb9ccabe990574d2a55", "tx_count": 1, "merkle": "e8f046595ac19c80926647611ded0cdcc7c9e6dd69bdaf21c487dbd940862d66", "prev": "06fbd4208680e6fbf743c4ff59f74fe844e81973648238bf2898b81a7568aeca"} -2023-12-15T14:44:54.983Z INFO initializing dbft {"height": 1963, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:54.984Z debug frostfs-node/morph.go:229 new block {"index": 1962} -2023-12-15T14:44:54.987Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T14:44:55.130Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 1962, "blockHeight": 1962, "took": "4.56823ms"} -2023-12-15T14:44:55.983Z INFO sending PrepareRequest {"height": 1963, "view": 0} -2023-12-15T14:44:55.983Z INFO sending Commit {"height": 1963, "view": 0} -2023-12-15T14:44:55.983Z INFO approving block {"height": 1963, "hash": "67190e28c61e07254f135e33236a7f45f282de3aa903723363d445835f004e3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fb02c0bb7f83bfb23c02fa08a6bd692a5743b20376a5bb9ccabe990574d2a55"} -2023-12-15T14:44:55.984Z INFO initializing dbft {"height": 1964, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:55.985Z debug frostfs-node/morph.go:229 new block {"index": 1963} -2023-12-15T14:44:56.129Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1963, "blockHeight": 1963, "took": "2.873984ms"} -2023-12-15T14:44:56.985Z INFO sending PrepareRequest {"height": 1964, "view": 0} -2023-12-15T14:44:56.985Z INFO sending Commit {"height": 1964, "view": 0} -2023-12-15T14:44:56.985Z INFO approving block {"height": 1964, "hash": "aa9b4fec2f34e20b2d46a3c8e29cd988df9e369a6c94cc6c58369dc18829e210", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67190e28c61e07254f135e33236a7f45f282de3aa903723363d445835f004e3c"} -2023-12-15T14:44:56.986Z INFO initializing dbft {"height": 1965, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:56.987Z debug frostfs-node/morph.go:229 new block {"index": 1964} -2023-12-15T14:44:57.131Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1964, "blockHeight": 1964, "took": "4.825564ms"} -2023-12-15T14:44:57.986Z INFO sending PrepareRequest {"height": 1965, "view": 0} -2023-12-15T14:44:57.986Z INFO sending Commit {"height": 1965, "view": 0} -2023-12-15T14:44:57.986Z INFO approving block {"height": 1965, "hash": "8f9ba4da05f317a05ec3d023b8ca5989839fb549390cc90c3d4543b71f3efaf7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa9b4fec2f34e20b2d46a3c8e29cd988df9e369a6c94cc6c58369dc18829e210"} -2023-12-15T14:44:57.987Z INFO initializing dbft {"height": 1966, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:57.987Z debug frostfs-node/morph.go:229 new block {"index": 1965} -2023-12-15T14:44:58.131Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1965, "blockHeight": 1965, "took": "4.015303ms"} -2023-12-15T14:44:58.987Z INFO sending PrepareRequest {"height": 1966, "view": 0} -2023-12-15T14:44:58.988Z INFO sending Commit {"height": 1966, "view": 0} -2023-12-15T14:44:58.988Z INFO approving block {"height": 1966, "hash": "6ed004c52e198802ab64e45729435fa2bf75a2e69a34b3f5b2322a14ca80c92b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f9ba4da05f317a05ec3d023b8ca5989839fb549390cc90c3d4543b71f3efaf7"} -2023-12-15T14:44:58.988Z INFO initializing dbft {"height": 1967, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:58.989Z debug frostfs-node/morph.go:229 new block {"index": 1966} -2023-12-15T14:44:59.131Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1966, "blockHeight": 1966, "took": "2.935939ms"} -2023-12-15T14:44:59.989Z INFO sending PrepareRequest {"height": 1967, "view": 0} -2023-12-15T14:44:59.989Z INFO sending Commit {"height": 1967, "view": 0} -2023-12-15T14:44:59.989Z INFO approving block {"height": 1967, "hash": "6c7a02cd59ced60cd6e0be97210cf4b4df6b2254794d672a599965ca8314d2a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ed004c52e198802ab64e45729435fa2bf75a2e69a34b3f5b2322a14ca80c92b"} -2023-12-15T14:44:59.990Z INFO initializing dbft {"height": 1968, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:44:59.991Z debug frostfs-node/morph.go:229 new block {"index": 1967} -2023-12-15T14:44:59.993Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:44:59.995Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:44:59.995Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:45:00.133Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1967, "blockHeight": 1967, "took": "4.59262ms"} -2023-12-15T14:45:00.991Z INFO sending PrepareRequest {"height": 1968, "view": 0} -2023-12-15T14:45:00.991Z INFO sending Commit {"height": 1968, "view": 0} -2023-12-15T14:45:00.991Z INFO approving block {"height": 1968, "hash": "04c82ac32720988df739ba50dc9d085123c56c2343769262e448fb31992c3f14", "tx_count": 2, "merkle": "9214ffd86ec5bfdf26513479283a81fa2a5089611dec8482f448c7b09aa96289", "prev": "6c7a02cd59ced60cd6e0be97210cf4b4df6b2254794d672a599965ca8314d2a1"} -2023-12-15T14:45:00.992Z INFO runtime log {"tx": "122168ec5702d9c2e967193a0d51e05e5fd47a6a29b1a59cc6bb09b47e0a55ff", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:45:00.992Z INFO runtime log {"tx": "122168ec5702d9c2e967193a0d51e05e5fd47a6a29b1a59cc6bb09b47e0a55ff", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:45:00.993Z INFO initializing dbft {"height": 1969, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:00.994Z debug frostfs-node/morph.go:229 new block {"index": 1968} -2023-12-15T14:45:01.133Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 1968, "blockHeight": 1968, "took": "4.143252ms"} -2023-12-15T14:45:01.992Z INFO sending PrepareRequest {"height": 1969, "view": 0} -2023-12-15T14:45:01.992Z INFO sending Commit {"height": 1969, "view": 0} -2023-12-15T14:45:01.992Z INFO approving block {"height": 1969, "hash": "cf664708d7a84036cdb28c38d0d53a5e2a5c1f0e26e1f25222fe5322d3bf088b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04c82ac32720988df739ba50dc9d085123c56c2343769262e448fb31992c3f14"} -2023-12-15T14:45:01.993Z INFO initializing dbft {"height": 1970, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:01.993Z debug frostfs-node/morph.go:229 new block {"index": 1969} -2023-12-15T14:45:02.133Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1969, "blockHeight": 1969, "took": "2.686369ms"} -2023-12-15T14:45:02.993Z INFO sending PrepareRequest {"height": 1970, "view": 0} -2023-12-15T14:45:02.994Z INFO sending Commit {"height": 1970, "view": 0} -2023-12-15T14:45:02.994Z INFO approving block {"height": 1970, "hash": "75c8e02437a93a56b08822211cfb8abd2499c47bb2c020f8e938ee3ad2cb1fe0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf664708d7a84036cdb28c38d0d53a5e2a5c1f0e26e1f25222fe5322d3bf088b"} -2023-12-15T14:45:02.995Z INFO initializing dbft {"height": 1971, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:02.996Z debug frostfs-node/morph.go:229 new block {"index": 1970} -2023-12-15T14:45:03.134Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1970, "blockHeight": 1970, "took": "3.06288ms"} -2023-12-15T14:45:03.995Z INFO sending PrepareRequest {"height": 1971, "view": 0} -2023-12-15T14:45:03.995Z INFO sending Commit {"height": 1971, "view": 0} -2023-12-15T14:45:03.995Z INFO approving block {"height": 1971, "hash": "456259ffd9d7a3c1d6216f1b84e982a56f979879c8d023dbfa154d2046b5f50b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75c8e02437a93a56b08822211cfb8abd2499c47bb2c020f8e938ee3ad2cb1fe0"} -2023-12-15T14:45:03.996Z INFO initializing dbft {"height": 1972, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:03.996Z debug frostfs-node/morph.go:229 new block {"index": 1971} -2023-12-15T14:45:04.135Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1971, "blockHeight": 1971, "took": "3.715778ms"} -2023-12-15T14:45:04.996Z INFO sending PrepareRequest {"height": 1972, "view": 0} -2023-12-15T14:45:04.996Z INFO sending Commit {"height": 1972, "view": 0} -2023-12-15T14:45:04.996Z INFO approving block {"height": 1972, "hash": "65c0a577d87a284c718f5f1a19116a0f4476d979c3a58f6a7a4e7059f94e16b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "456259ffd9d7a3c1d6216f1b84e982a56f979879c8d023dbfa154d2046b5f50b"} -2023-12-15T14:45:04.997Z INFO initializing dbft {"height": 1973, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:04.998Z debug frostfs-node/morph.go:229 new block {"index": 1972} -2023-12-15T14:45:05.135Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1972, "blockHeight": 1972, "took": "3.852657ms"} -2023-12-15T14:45:05.998Z INFO sending PrepareRequest {"height": 1973, "view": 0} -2023-12-15T14:45:05.998Z INFO sending Commit {"height": 1973, "view": 0} -2023-12-15T14:45:05.998Z INFO approving block {"height": 1973, "hash": "8e1b15da2abc043899bac8c53d4231cc585f15b4f68a59d22197f1e4c8b7a066", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65c0a577d87a284c718f5f1a19116a0f4476d979c3a58f6a7a4e7059f94e16b1"} -2023-12-15T14:45:05.999Z INFO initializing dbft {"height": 1974, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:06.000Z debug frostfs-node/morph.go:229 new block {"index": 1973} -2023-12-15T14:45:06.135Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1973, "blockHeight": 1973, "took": "3.509987ms"} -2023-12-15T14:45:06.999Z INFO sending PrepareRequest {"height": 1974, "view": 0} -2023-12-15T14:45:06.999Z INFO sending Commit {"height": 1974, "view": 0} -2023-12-15T14:45:07.000Z INFO approving block {"height": 1974, "hash": "229edf5ae913ff1b5438a89c8919df5ba0f27e7643bf75c0562322d513b8828b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e1b15da2abc043899bac8c53d4231cc585f15b4f68a59d22197f1e4c8b7a066"} -2023-12-15T14:45:07.001Z INFO initializing dbft {"height": 1975, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:07.001Z debug frostfs-node/morph.go:229 new block {"index": 1974} -2023-12-15T14:45:07.136Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1974, "blockHeight": 1974, "took": "3.41535ms"} -2023-12-15T14:45:08.001Z INFO sending PrepareRequest {"height": 1975, "view": 0} -2023-12-15T14:45:08.001Z INFO sending Commit {"height": 1975, "view": 0} -2023-12-15T14:45:08.001Z INFO approving block {"height": 1975, "hash": "3c54a4e6b64b40fdb9241d98ec31d7767c31ff6988a2bf085197f3db62ab447a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "229edf5ae913ff1b5438a89c8919df5ba0f27e7643bf75c0562322d513b8828b"} -2023-12-15T14:45:08.002Z INFO initializing dbft {"height": 1976, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:08.003Z debug frostfs-node/morph.go:229 new block {"index": 1975} -2023-12-15T14:45:08.137Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1975, "blockHeight": 1975, "took": "4.423931ms"} -2023-12-15T14:45:09.002Z INFO sending PrepareRequest {"height": 1976, "view": 0} -2023-12-15T14:45:09.002Z INFO sending Commit {"height": 1976, "view": 0} -2023-12-15T14:45:09.002Z INFO approving block {"height": 1976, "hash": "6718bd69969cef3f824e1dfd3d4d5a7f300b4eb2c6c6c13e14822b0f9281c27e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c54a4e6b64b40fdb9241d98ec31d7767c31ff6988a2bf085197f3db62ab447a"} -2023-12-15T14:45:09.003Z INFO initializing dbft {"height": 1977, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:09.004Z debug frostfs-node/morph.go:229 new block {"index": 1976} -2023-12-15T14:45:09.136Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1976, "blockHeight": 1976, "took": "3.235321ms"} -2023-12-15T14:45:10.003Z INFO sending PrepareRequest {"height": 1977, "view": 0} -2023-12-15T14:45:10.003Z INFO sending Commit {"height": 1977, "view": 0} -2023-12-15T14:45:10.004Z INFO approving block {"height": 1977, "hash": "5191d46c03fad0ffff179721e05e3ae354fbcafef98ed649cf6af394934f9480", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6718bd69969cef3f824e1dfd3d4d5a7f300b4eb2c6c6c13e14822b0f9281c27e"} -2023-12-15T14:45:10.004Z INFO initializing dbft {"height": 1978, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:10.005Z debug frostfs-node/morph.go:229 new block {"index": 1977} -2023-12-15T14:45:10.138Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1977, "blockHeight": 1977, "took": "4.835861ms"} -2023-12-15T14:45:11.004Z INFO sending PrepareRequest {"height": 1978, "view": 0} -2023-12-15T14:45:11.005Z INFO sending Commit {"height": 1978, "view": 0} -2023-12-15T14:45:11.005Z INFO approving block {"height": 1978, "hash": "046af6dcd28d8047063554c369e457eec42e91162fe6b2b4ac57137c3c35fe8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5191d46c03fad0ffff179721e05e3ae354fbcafef98ed649cf6af394934f9480"} -2023-12-15T14:45:11.006Z INFO initializing dbft {"height": 1979, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:11.006Z debug frostfs-node/morph.go:229 new block {"index": 1978} -2023-12-15T14:45:11.137Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1978, "blockHeight": 1978, "took": "3.101022ms"} -2023-12-15T14:45:12.005Z INFO sending PrepareRequest {"height": 1979, "view": 0} -2023-12-15T14:45:12.005Z INFO sending Commit {"height": 1979, "view": 0} -2023-12-15T14:45:12.006Z INFO approving block {"height": 1979, "hash": "9c9548905df538c64f84ed64ccf3e661c0a488d0551ebdb79957f389b17719d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "046af6dcd28d8047063554c369e457eec42e91162fe6b2b4ac57137c3c35fe8b"} -2023-12-15T14:45:12.007Z INFO initializing dbft {"height": 1980, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:12.007Z debug frostfs-node/morph.go:229 new block {"index": 1979} -2023-12-15T14:45:12.137Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1979, "blockHeight": 1979, "took": "2.703599ms"} -2023-12-15T14:45:13.006Z INFO sending PrepareRequest {"height": 1980, "view": 0} -2023-12-15T14:45:13.007Z INFO sending Commit {"height": 1980, "view": 0} -2023-12-15T14:45:13.007Z INFO approving block {"height": 1980, "hash": "403b6733b38d80d1bf31915ab37ceef7cf8cf86ac9d7b232359f3e49a22fff10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c9548905df538c64f84ed64ccf3e661c0a488d0551ebdb79957f389b17719d1"} -2023-12-15T14:45:13.007Z INFO initializing dbft {"height": 1981, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:13.008Z debug frostfs-node/morph.go:229 new block {"index": 1980} -2023-12-15T14:45:13.138Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1980, "blockHeight": 1980, "took": "3.03755ms"} -2023-12-15T14:45:14.008Z INFO sending PrepareRequest {"height": 1981, "view": 0} -2023-12-15T14:45:14.008Z INFO sending Commit {"height": 1981, "view": 0} -2023-12-15T14:45:14.008Z INFO approving block {"height": 1981, "hash": "ce5a0d319bfd445de1df2391db5937f12075925ddae40bca01a9ed69445e202b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "403b6733b38d80d1bf31915ab37ceef7cf8cf86ac9d7b232359f3e49a22fff10"} -2023-12-15T14:45:14.009Z INFO initializing dbft {"height": 1982, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:14.009Z debug frostfs-node/morph.go:229 new block {"index": 1981} -2023-12-15T14:45:14.138Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1981, "blockHeight": 1981, "took": "2.691059ms"} -2023-12-15T14:45:15.009Z INFO sending PrepareRequest {"height": 1982, "view": 0} -2023-12-15T14:45:15.009Z INFO sending Commit {"height": 1982, "view": 0} -2023-12-15T14:45:15.010Z INFO approving block {"height": 1982, "hash": "02ec6df529282da8d3229f0e24f628ed1ad6f6d653e5b5bab238909043c1f2bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce5a0d319bfd445de1df2391db5937f12075925ddae40bca01a9ed69445e202b"} -2023-12-15T14:45:15.011Z INFO initializing dbft {"height": 1983, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:15.011Z debug frostfs-node/morph.go:229 new block {"index": 1982} -2023-12-15T14:45:15.139Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1982, "blockHeight": 1982, "took": "3.843682ms"} -2023-12-15T14:45:16.011Z INFO sending PrepareRequest {"height": 1983, "view": 0} -2023-12-15T14:45:16.011Z INFO sending Commit {"height": 1983, "view": 0} -2023-12-15T14:45:16.011Z INFO approving block {"height": 1983, "hash": "044d1746a1edf249134563785c8057b3ca95189d69aa25274fa51a31353a2c33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02ec6df529282da8d3229f0e24f628ed1ad6f6d653e5b5bab238909043c1f2bf"} -2023-12-15T14:45:16.013Z INFO initializing dbft {"height": 1984, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:16.013Z debug frostfs-node/morph.go:229 new block {"index": 1983} -2023-12-15T14:45:16.140Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1983, "blockHeight": 1983, "took": "4.262378ms"} -2023-12-15T14:45:17.012Z INFO sending PrepareRequest {"height": 1984, "view": 0} -2023-12-15T14:45:17.012Z INFO sending Commit {"height": 1984, "view": 0} -2023-12-15T14:45:17.013Z INFO approving block {"height": 1984, "hash": "fecc599cbb7a4c9b3551bdf073182373326533dd2e31f4b85cfad79a7387b5e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "044d1746a1edf249134563785c8057b3ca95189d69aa25274fa51a31353a2c33"} -2023-12-15T14:45:17.013Z INFO initializing dbft {"height": 1985, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:17.014Z debug frostfs-node/morph.go:229 new block {"index": 1984} -2023-12-15T14:45:17.140Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1984, "blockHeight": 1984, "took": "3.330408ms"} -2023-12-15T14:45:18.014Z INFO sending PrepareRequest {"height": 1985, "view": 0} -2023-12-15T14:45:18.014Z INFO sending Commit {"height": 1985, "view": 0} -2023-12-15T14:45:18.014Z INFO approving block {"height": 1985, "hash": "b6ada52582e31e157593510a36390ba5ab61cfd99ee97b2d11c514a48b00f33e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fecc599cbb7a4c9b3551bdf073182373326533dd2e31f4b85cfad79a7387b5e8"} -2023-12-15T14:45:18.015Z INFO initializing dbft {"height": 1986, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:18.015Z debug frostfs-node/morph.go:229 new block {"index": 1985} -2023-12-15T14:45:18.140Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1985, "blockHeight": 1985, "took": "2.983468ms"} -2023-12-15T14:45:19.015Z INFO sending PrepareRequest {"height": 1986, "view": 0} -2023-12-15T14:45:19.015Z INFO sending Commit {"height": 1986, "view": 0} -2023-12-15T14:45:19.015Z INFO approving block {"height": 1986, "hash": "7eda3139c01074c398211158f2f39caf59797a27dd911ba13259dcf887838717", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6ada52582e31e157593510a36390ba5ab61cfd99ee97b2d11c514a48b00f33e"} -2023-12-15T14:45:19.016Z INFO initializing dbft {"height": 1987, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:19.016Z debug frostfs-node/morph.go:229 new block {"index": 1986} -2023-12-15T14:45:19.141Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1986, "blockHeight": 1986, "took": "2.882164ms"} -2023-12-15T14:45:20.016Z INFO sending PrepareRequest {"height": 1987, "view": 0} -2023-12-15T14:45:20.016Z INFO sending Commit {"height": 1987, "view": 0} -2023-12-15T14:45:20.017Z INFO approving block {"height": 1987, "hash": "0f2a83453391827ab2d90a8821d1b529c24a6718032a072cbb4701f3ad0d343d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7eda3139c01074c398211158f2f39caf59797a27dd911ba13259dcf887838717"} -2023-12-15T14:45:20.017Z INFO initializing dbft {"height": 1988, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:20.018Z debug frostfs-node/morph.go:229 new block {"index": 1987} -2023-12-15T14:45:20.141Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1987, "blockHeight": 1987, "took": "2.923706ms"} -2023-12-15T14:45:21.018Z INFO sending PrepareRequest {"height": 1988, "view": 0} -2023-12-15T14:45:21.018Z INFO sending Commit {"height": 1988, "view": 0} -2023-12-15T14:45:21.018Z INFO approving block {"height": 1988, "hash": "1d7e904de2a1e597f6cc9bb1bf67483ada47b10e727d07d6d47721397d933af4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f2a83453391827ab2d90a8821d1b529c24a6718032a072cbb4701f3ad0d343d"} -2023-12-15T14:45:21.019Z INFO initializing dbft {"height": 1989, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:21.019Z debug frostfs-node/morph.go:229 new block {"index": 1988} -2023-12-15T14:45:21.022Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 9 epoch for daughters"} -2023-12-15T14:45:21.024Z INFO runtime log {"tx": "878fdc5ef45712b79c15eca04f85cb74c421866c46c87cfb1564be73cef6ebc2", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:45:21.143Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1988, "blockHeight": 1988, "took": "4.00698ms"} -2023-12-15T14:45:22.019Z INFO sending PrepareRequest {"height": 1989, "view": 0} -2023-12-15T14:45:22.019Z INFO sending Commit {"height": 1989, "view": 0} -2023-12-15T14:45:22.020Z INFO approving block {"height": 1989, "hash": "88d896ceeec96c4784ce3aa64d257458fce0a3a895bbfcd60a6c6856dc109cb7", "tx_count": 1, "merkle": "5fb19509db7b8c2d71ec03bae07c958bbb5793c6693c4bd2b5679f209404194f", "prev": "1d7e904de2a1e597f6cc9bb1bf67483ada47b10e727d07d6d47721397d933af4"} -2023-12-15T14:45:22.020Z INFO runtime log {"tx": "4f190494209f67b5d24b3c69c69357bb8b957ce0ba03ec712d8c7bdb0995b15f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:45:22.021Z INFO initializing dbft {"height": 1990, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:22.022Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 9} -2023-12-15T14:45:22.022Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 9} -2023-12-15T14:45:22.022Z debug frostfs-node/morph.go:229 new block {"index": 1989} -2023-12-15T14:45:22.146Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 1989, "blockHeight": 1989, "took": "6.914283ms"} -2023-12-15T14:45:23.020Z INFO sending PrepareRequest {"height": 1990, "view": 0} -2023-12-15T14:45:23.021Z INFO sending Commit {"height": 1990, "view": 0} -2023-12-15T14:45:23.021Z INFO approving block {"height": 1990, "hash": "7af675b383b893f397628a55418602c7333aaa95792c1637c5a2f4a0630be45a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88d896ceeec96c4784ce3aa64d257458fce0a3a895bbfcd60a6c6856dc109cb7"} -2023-12-15T14:45:23.022Z INFO initializing dbft {"height": 1991, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:23.022Z debug frostfs-node/morph.go:229 new block {"index": 1990} -2023-12-15T14:45:23.144Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1990, "blockHeight": 1990, "took": "4.309756ms"} -2023-12-15T14:45:24.022Z INFO sending PrepareRequest {"height": 1991, "view": 0} -2023-12-15T14:45:24.022Z INFO sending Commit {"height": 1991, "view": 0} -2023-12-15T14:45:24.022Z INFO approving block {"height": 1991, "hash": "640ca7ae20a6b2d1c3ba460ee36ad4440783beba429dbaf305ddd013a566aef3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7af675b383b893f397628a55418602c7333aaa95792c1637c5a2f4a0630be45a"} -2023-12-15T14:45:24.023Z INFO initializing dbft {"height": 1992, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:24.023Z debug frostfs-node/morph.go:229 new block {"index": 1991} -2023-12-15T14:45:24.143Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1991, "blockHeight": 1991, "took": "3.018197ms"} -2023-12-15T14:45:25.024Z INFO sending PrepareRequest {"height": 1992, "view": 0} -2023-12-15T14:45:25.024Z INFO sending Commit {"height": 1992, "view": 0} -2023-12-15T14:45:25.024Z INFO approving block {"height": 1992, "hash": "c5337b0948c8dd452b74b5370e18a15530232fc91824f3c839f958a7a1edc052", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "640ca7ae20a6b2d1c3ba460ee36ad4440783beba429dbaf305ddd013a566aef3"} -2023-12-15T14:45:25.025Z INFO initializing dbft {"height": 1993, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:25.025Z debug frostfs-node/morph.go:229 new block {"index": 1992} -2023-12-15T14:45:25.144Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1992, "blockHeight": 1992, "took": "3.05691ms"} -2023-12-15T14:45:26.025Z INFO sending PrepareRequest {"height": 1993, "view": 0} -2023-12-15T14:45:26.025Z INFO sending Commit {"height": 1993, "view": 0} -2023-12-15T14:45:26.026Z INFO approving block {"height": 1993, "hash": "785aa5cbaf000099737e5bd12c7ac997729cd88a88751f18461f0f32300e9f05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5337b0948c8dd452b74b5370e18a15530232fc91824f3c839f958a7a1edc052"} -2023-12-15T14:45:26.027Z INFO initializing dbft {"height": 1994, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:26.027Z debug frostfs-node/morph.go:229 new block {"index": 1993} -2023-12-15T14:45:26.144Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1993, "blockHeight": 1993, "took": "3.197643ms"} -2023-12-15T14:45:27.027Z INFO sending PrepareRequest {"height": 1994, "view": 0} -2023-12-15T14:45:27.027Z INFO sending Commit {"height": 1994, "view": 0} -2023-12-15T14:45:27.028Z INFO approving block {"height": 1994, "hash": "77bdb5ce08b3477e2e29805538573165bdd181ca7bcec2f6990553bbba1a555c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "785aa5cbaf000099737e5bd12c7ac997729cd88a88751f18461f0f32300e9f05"} -2023-12-15T14:45:27.029Z INFO initializing dbft {"height": 1995, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:27.029Z debug frostfs-node/morph.go:229 new block {"index": 1994} -2023-12-15T14:45:27.146Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1994, "blockHeight": 1994, "took": "4.279235ms"} -2023-12-15T14:45:28.029Z INFO sending PrepareRequest {"height": 1995, "view": 0} -2023-12-15T14:45:28.029Z INFO sending Commit {"height": 1995, "view": 0} -2023-12-15T14:45:28.029Z INFO approving block {"height": 1995, "hash": "0a4f2c12cb1c6af9ebc280bae3e74da240bbed4f97b239eaf9a59c07a14bdf98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77bdb5ce08b3477e2e29805538573165bdd181ca7bcec2f6990553bbba1a555c"} -2023-12-15T14:45:28.030Z INFO initializing dbft {"height": 1996, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:28.030Z debug frostfs-node/morph.go:229 new block {"index": 1995} -2023-12-15T14:45:28.146Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1995, "blockHeight": 1995, "took": "2.725779ms"} -2023-12-15T14:45:29.030Z INFO sending PrepareRequest {"height": 1996, "view": 0} -2023-12-15T14:45:29.030Z INFO sending Commit {"height": 1996, "view": 0} -2023-12-15T14:45:29.031Z INFO approving block {"height": 1996, "hash": "636caba78172e5969bb49b6bc746b6665f8731850bcfe952fdf031501faf92fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a4f2c12cb1c6af9ebc280bae3e74da240bbed4f97b239eaf9a59c07a14bdf98"} -2023-12-15T14:45:29.031Z INFO initializing dbft {"height": 1997, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:29.032Z debug frostfs-node/morph.go:229 new block {"index": 1996} -2023-12-15T14:45:29.150Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1996, "blockHeight": 1996, "took": "6.563311ms"} -2023-12-15T14:45:30.032Z INFO sending PrepareRequest {"height": 1997, "view": 0} -2023-12-15T14:45:30.032Z INFO sending Commit {"height": 1997, "view": 0} -2023-12-15T14:45:30.032Z INFO approving block {"height": 1997, "hash": "5c856fa1eb43774e0f63c6aebf08b4af27e8f3e92577d1174da1a1e8dbc3b4a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "636caba78172e5969bb49b6bc746b6665f8731850bcfe952fdf031501faf92fe"} -2023-12-15T14:45:30.033Z INFO initializing dbft {"height": 1998, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:30.033Z debug frostfs-node/morph.go:229 new block {"index": 1997} -2023-12-15T14:45:30.148Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 1997, "blockHeight": 1997, "took": "4.372578ms"} -2023-12-15T14:45:31.033Z INFO sending PrepareRequest {"height": 1998, "view": 0} -2023-12-15T14:45:31.033Z INFO sending Commit {"height": 1998, "view": 0} -2023-12-15T14:45:31.034Z INFO approving block {"height": 1998, "hash": "0b9a1ea078daaddb63da8bfbdc03363c8eab635a39191821f734a2ddfb3fefb3", "tx_count": 1, "merkle": "1b2a8bae64bf93065f9feab86f6a2fa4e8ec6264280c954a1b889d98ab221c86", "prev": "5c856fa1eb43774e0f63c6aebf08b4af27e8f3e92577d1174da1a1e8dbc3b4a7"} -2023-12-15T14:45:31.035Z INFO initializing dbft {"height": 1999, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:31.035Z debug frostfs-node/morph.go:229 new block {"index": 1998} -2023-12-15T14:45:31.150Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 1998, "blockHeight": 1998, "took": "5.315482ms"} -2023-12-15T14:45:32.035Z INFO sending PrepareRequest {"height": 1999, "view": 0} -2023-12-15T14:45:32.035Z INFO sending Commit {"height": 1999, "view": 0} -2023-12-15T14:45:32.035Z INFO approving block {"height": 1999, "hash": "92b3c346f6520bbd340c6fda1af09d2c9e56aefc1c47b03499b1e750303b07d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b9a1ea078daaddb63da8bfbdc03363c8eab635a39191821f734a2ddfb3fefb3"} -2023-12-15T14:45:32.037Z INFO initializing dbft {"height": 2000, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:32.037Z debug frostfs-node/morph.go:229 new block {"index": 1999} -2023-12-15T14:45:32.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 1999, "blockHeight": 1999, "took": "6.909359ms"} -2023-12-15T14:45:33.037Z INFO sending PrepareRequest {"height": 2000, "view": 0} -2023-12-15T14:45:33.037Z INFO sending Commit {"height": 2000, "view": 0} -2023-12-15T14:45:33.037Z INFO approving block {"height": 2000, "hash": "9fbd5f2a03a6d05a61c847577743416ddf44e861505433c43d1b5ef49bb962df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92b3c346f6520bbd340c6fda1af09d2c9e56aefc1c47b03499b1e750303b07d3"} -2023-12-15T14:45:33.038Z INFO initializing dbft {"height": 2001, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:33.039Z debug frostfs-node/morph.go:229 new block {"index": 2000} -2023-12-15T14:45:33.150Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2000, "blockHeight": 2000, "took": "4.551459ms"} -2023-12-15T14:45:34.038Z INFO sending PrepareRequest {"height": 2001, "view": 0} -2023-12-15T14:45:34.038Z INFO sending Commit {"height": 2001, "view": 0} -2023-12-15T14:45:34.038Z INFO approving block {"height": 2001, "hash": "3375bcbda44e7017e6570a11f15ff30d91bc13adeb3b0fb03c9b9fc7917cd039", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fbd5f2a03a6d05a61c847577743416ddf44e861505433c43d1b5ef49bb962df"} -2023-12-15T14:45:34.039Z INFO initializing dbft {"height": 2002, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:34.040Z debug frostfs-node/morph.go:229 new block {"index": 2001} -2023-12-15T14:45:34.149Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2001, "blockHeight": 2001, "took": "2.794709ms"} -2023-12-15T14:45:35.040Z INFO sending PrepareRequest {"height": 2002, "view": 0} -2023-12-15T14:45:35.040Z INFO sending Commit {"height": 2002, "view": 0} -2023-12-15T14:45:35.040Z INFO approving block {"height": 2002, "hash": "d5aa16a39e3287666480ae7ce94ba832b5cabdc63c1de4b6747e079d73c714ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3375bcbda44e7017e6570a11f15ff30d91bc13adeb3b0fb03c9b9fc7917cd039"} -2023-12-15T14:45:35.041Z INFO initializing dbft {"height": 2003, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:35.041Z debug frostfs-node/morph.go:229 new block {"index": 2002} -2023-12-15T14:45:35.151Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2002, "blockHeight": 2002, "took": "4.160386ms"} -2023-12-15T14:45:36.041Z INFO sending PrepareRequest {"height": 2003, "view": 0} -2023-12-15T14:45:36.041Z INFO sending Commit {"height": 2003, "view": 0} -2023-12-15T14:45:36.042Z INFO approving block {"height": 2003, "hash": "f462e1c43bb54eb53851c26aaeb5f134f4fcbc752dbaef53fb7f734f61960f58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5aa16a39e3287666480ae7ce94ba832b5cabdc63c1de4b6747e079d73c714ff"} -2023-12-15T14:45:36.043Z INFO initializing dbft {"height": 2004, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:36.043Z debug frostfs-node/morph.go:229 new block {"index": 2003} -2023-12-15T14:45:36.151Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2003, "blockHeight": 2003, "took": "2.982798ms"} -2023-12-15T14:45:37.042Z INFO sending PrepareRequest {"height": 2004, "view": 0} -2023-12-15T14:45:37.042Z INFO sending Commit {"height": 2004, "view": 0} -2023-12-15T14:45:37.043Z INFO approving block {"height": 2004, "hash": "2c40f2518015cc733eb427111fd72c53797af3424808b1a0a68c415a702ffdbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f462e1c43bb54eb53851c26aaeb5f134f4fcbc752dbaef53fb7f734f61960f58"} -2023-12-15T14:45:37.044Z INFO initializing dbft {"height": 2005, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:37.044Z debug frostfs-node/morph.go:229 new block {"index": 2004} -2023-12-15T14:45:37.152Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2004, "blockHeight": 2004, "took": "3.227055ms"} -2023-12-15T14:45:38.044Z INFO sending PrepareRequest {"height": 2005, "view": 0} -2023-12-15T14:45:38.044Z INFO sending Commit {"height": 2005, "view": 0} -2023-12-15T14:45:38.044Z INFO approving block {"height": 2005, "hash": "c55934c92dbf9ec49d01c9ac8fcfb5ee06ac71666ea1c00a4cc2d69251d4670e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c40f2518015cc733eb427111fd72c53797af3424808b1a0a68c415a702ffdbd"} -2023-12-15T14:45:38.046Z INFO initializing dbft {"height": 2006, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:38.046Z debug frostfs-node/morph.go:229 new block {"index": 2005} -2023-12-15T14:45:38.152Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2005, "blockHeight": 2005, "took": "3.015589ms"} -2023-12-15T14:45:39.045Z INFO sending PrepareRequest {"height": 2006, "view": 0} -2023-12-15T14:45:39.045Z INFO sending Commit {"height": 2006, "view": 0} -2023-12-15T14:45:39.046Z INFO approving block {"height": 2006, "hash": "5e2b579d04d25b2377085c94000e48bae9927ad42f26b40e0f824e6244e1d6ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c55934c92dbf9ec49d01c9ac8fcfb5ee06ac71666ea1c00a4cc2d69251d4670e"} -2023-12-15T14:45:39.046Z INFO initializing dbft {"height": 2007, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:39.047Z debug frostfs-node/morph.go:229 new block {"index": 2006} -2023-12-15T14:45:39.152Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2006, "blockHeight": 2006, "took": "3.05304ms"} -2023-12-15T14:45:40.047Z INFO sending PrepareRequest {"height": 2007, "view": 0} -2023-12-15T14:45:40.047Z INFO sending Commit {"height": 2007, "view": 0} -2023-12-15T14:45:40.048Z INFO approving block {"height": 2007, "hash": "161b988bcffde40b8aaa59f17713cc5206c4ecefe04d65eff2d50cb3db89401e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e2b579d04d25b2377085c94000e48bae9927ad42f26b40e0f824e6244e1d6ea"} -2023-12-15T14:45:40.049Z INFO initializing dbft {"height": 2008, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:40.050Z debug frostfs-node/morph.go:229 new block {"index": 2007} -2023-12-15T14:45:40.155Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2007, "blockHeight": 2007, "took": "4.638247ms"} -2023-12-15T14:45:41.049Z INFO sending PrepareRequest {"height": 2008, "view": 0} -2023-12-15T14:45:41.049Z INFO sending Commit {"height": 2008, "view": 0} -2023-12-15T14:45:41.049Z INFO approving block {"height": 2008, "hash": "50010be7170cd302a0e16e494f5a676052f59d42e66d78e905d0667c91123090", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "161b988bcffde40b8aaa59f17713cc5206c4ecefe04d65eff2d50cb3db89401e"} -2023-12-15T14:45:41.050Z INFO initializing dbft {"height": 2009, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:41.050Z debug frostfs-node/morph.go:229 new block {"index": 2008} -2023-12-15T14:45:41.154Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2008, "blockHeight": 2008, "took": "3.386959ms"} -2023-12-15T14:45:42.049Z INFO sending PrepareRequest {"height": 2009, "view": 0} -2023-12-15T14:45:42.049Z INFO sending Commit {"height": 2009, "view": 0} -2023-12-15T14:45:42.050Z INFO approving block {"height": 2009, "hash": "4d6d6215a595d6e28aa4cbe584a83298e1d76855ae24c185704ac16a0528bab8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50010be7170cd302a0e16e494f5a676052f59d42e66d78e905d0667c91123090"} -2023-12-15T14:45:42.050Z INFO initializing dbft {"height": 2010, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:42.051Z debug frostfs-node/morph.go:229 new block {"index": 2009} -2023-12-15T14:45:42.156Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2009, "blockHeight": 2009, "took": "4.410918ms"} -2023-12-15T14:45:43.051Z INFO sending PrepareRequest {"height": 2010, "view": 0} -2023-12-15T14:45:43.051Z INFO sending Commit {"height": 2010, "view": 0} -2023-12-15T14:45:43.051Z INFO approving block {"height": 2010, "hash": "712b2925f520822b3fd620406c36ff6d0f1770e285df6c77dcabe2d76ee7cc46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d6d6215a595d6e28aa4cbe584a83298e1d76855ae24c185704ac16a0528bab8"} -2023-12-15T14:45:43.052Z INFO initializing dbft {"height": 2011, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:43.052Z debug frostfs-node/morph.go:229 new block {"index": 2010} -2023-12-15T14:45:43.155Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2010, "blockHeight": 2010, "took": "3.015848ms"} -2023-12-15T14:45:44.052Z INFO sending PrepareRequest {"height": 2011, "view": 0} -2023-12-15T14:45:44.052Z INFO sending Commit {"height": 2011, "view": 0} -2023-12-15T14:45:44.053Z INFO approving block {"height": 2011, "hash": "ed2abb219bb51141198423d5810b3506b217ecbdd4a740a4e282644b7d2b8b48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "712b2925f520822b3fd620406c36ff6d0f1770e285df6c77dcabe2d76ee7cc46"} -2023-12-15T14:45:44.053Z INFO initializing dbft {"height": 2012, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:44.054Z debug frostfs-node/morph.go:229 new block {"index": 2011} -2023-12-15T14:45:44.156Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2011, "blockHeight": 2011, "took": "3.025079ms"} -2023-12-15T14:45:45.054Z INFO sending PrepareRequest {"height": 2012, "view": 0} -2023-12-15T14:45:45.054Z INFO sending Commit {"height": 2012, "view": 0} -2023-12-15T14:45:45.054Z INFO approving block {"height": 2012, "hash": "623394fc3fc6ae1507e5cb15b6d7c54590875718f42bbcba462af285f84769cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed2abb219bb51141198423d5810b3506b217ecbdd4a740a4e282644b7d2b8b48"} -2023-12-15T14:45:45.055Z INFO initializing dbft {"height": 2013, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:45.055Z debug frostfs-node/morph.go:229 new block {"index": 2012} -2023-12-15T14:45:45.156Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2012, "blockHeight": 2012, "took": "2.904916ms"} -2023-12-15T14:45:46.055Z INFO sending PrepareRequest {"height": 2013, "view": 0} -2023-12-15T14:45:46.055Z INFO sending Commit {"height": 2013, "view": 0} -2023-12-15T14:45:46.056Z INFO approving block {"height": 2013, "hash": "e12c35082afa94dd72ddaf1deaa496f198da2d04d410700ea7bdb2997467c1b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "623394fc3fc6ae1507e5cb15b6d7c54590875718f42bbcba462af285f84769cf"} -2023-12-15T14:45:46.056Z INFO initializing dbft {"height": 2014, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:46.057Z debug frostfs-node/morph.go:229 new block {"index": 2013} -2023-12-15T14:45:46.161Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2013, "blockHeight": 2013, "took": "7.728959ms"} -2023-12-15T14:45:47.057Z INFO sending PrepareRequest {"height": 2014, "view": 0} -2023-12-15T14:45:47.057Z INFO sending Commit {"height": 2014, "view": 0} -2023-12-15T14:45:47.057Z INFO approving block {"height": 2014, "hash": "444358ec710380467a4e9b802c2929ab382a0770ef2f1b78b3649a213c199a64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e12c35082afa94dd72ddaf1deaa496f198da2d04d410700ea7bdb2997467c1b9"} -2023-12-15T14:45:47.058Z INFO initializing dbft {"height": 2015, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:47.059Z debug frostfs-node/morph.go:229 new block {"index": 2014} -2023-12-15T14:45:47.159Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2014, "blockHeight": 2014, "took": "5.082231ms"} -2023-12-15T14:45:48.058Z INFO sending PrepareRequest {"height": 2015, "view": 0} -2023-12-15T14:45:48.058Z INFO sending Commit {"height": 2015, "view": 0} -2023-12-15T14:45:48.059Z INFO approving block {"height": 2015, "hash": "74456bd52591f3e599ca62b8ba4926e4dd0ea255713f9b24c1f3f94ab1632dbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "444358ec710380467a4e9b802c2929ab382a0770ef2f1b78b3649a213c199a64"} -2023-12-15T14:45:48.059Z INFO initializing dbft {"height": 2016, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:48.060Z debug frostfs-node/morph.go:229 new block {"index": 2015} -2023-12-15T14:45:48.158Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2015, "blockHeight": 2015, "took": "3.152963ms"} -2023-12-15T14:45:49.059Z INFO sending PrepareRequest {"height": 2016, "view": 0} -2023-12-15T14:45:49.059Z INFO sending Commit {"height": 2016, "view": 0} -2023-12-15T14:45:49.059Z INFO approving block {"height": 2016, "hash": "c823cab878072c3cd9c733a54acb5de5d921a333bf694bab874b293e860403ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74456bd52591f3e599ca62b8ba4926e4dd0ea255713f9b24c1f3f94ab1632dbd"} -2023-12-15T14:45:49.060Z INFO initializing dbft {"height": 2017, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:49.061Z debug frostfs-node/morph.go:229 new block {"index": 2016} -2023-12-15T14:45:49.158Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2016, "blockHeight": 2016, "took": "3.210147ms"} -2023-12-15T14:45:50.060Z INFO sending PrepareRequest {"height": 2017, "view": 0} -2023-12-15T14:45:50.061Z INFO sending Commit {"height": 2017, "view": 0} -2023-12-15T14:45:50.061Z INFO approving block {"height": 2017, "hash": "7ddae204f46b552065c050b32e2d05cb83c823fb4d9d9c590e94f4ff1f5b552f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c823cab878072c3cd9c733a54acb5de5d921a333bf694bab874b293e860403ea"} -2023-12-15T14:45:50.062Z INFO initializing dbft {"height": 2018, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:50.062Z debug frostfs-node/morph.go:229 new block {"index": 2017} -2023-12-15T14:45:50.064Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:45:50.067Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:45:50.067Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:45:50.160Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2017, "blockHeight": 2017, "took": "4.928679ms"} -2023-12-15T14:45:51.062Z INFO sending PrepareRequest {"height": 2018, "view": 0} -2023-12-15T14:45:51.062Z INFO sending Commit {"height": 2018, "view": 0} -2023-12-15T14:45:51.062Z INFO approving block {"height": 2018, "hash": "c7b2c8b0b31726510bf2f82f1d83709cf2c1b4a1125fb0457c97c88ca90bffb0", "tx_count": 2, "merkle": "a95988554a109d6f0e2edf1625692266336db885968ef8fed1ef5659297b21f2", "prev": "7ddae204f46b552065c050b32e2d05cb83c823fb4d9d9c590e94f4ff1f5b552f"} -2023-12-15T14:45:51.063Z INFO runtime log {"tx": "d18841681cb73b547f56a96f2743ece5856f8990f0dc41089bcb3c21344eafe1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:45:51.063Z INFO runtime log {"tx": "d18841681cb73b547f56a96f2743ece5856f8990f0dc41089bcb3c21344eafe1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:45:51.064Z INFO initializing dbft {"height": 2019, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:51.065Z debug frostfs-node/morph.go:229 new block {"index": 2018} -2023-12-15T14:45:51.164Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2018, "blockHeight": 2018, "took": "8.364997ms"} -2023-12-15T14:45:52.063Z INFO sending PrepareRequest {"height": 2019, "view": 0} -2023-12-15T14:45:52.063Z INFO sending Commit {"height": 2019, "view": 0} -2023-12-15T14:45:52.064Z INFO approving block {"height": 2019, "hash": "5e5fd0f3916e65dc8535449ddfde8fe4cb6fe57739dc07f59c018163ff379cb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7b2c8b0b31726510bf2f82f1d83709cf2c1b4a1125fb0457c97c88ca90bffb0"} -2023-12-15T14:45:52.065Z INFO initializing dbft {"height": 2020, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:52.066Z debug frostfs-node/morph.go:229 new block {"index": 2019} -2023-12-15T14:45:52.160Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2019, "blockHeight": 2019, "took": "2.910912ms"} -2023-12-15T14:45:53.064Z INFO sending PrepareRequest {"height": 2020, "view": 0} -2023-12-15T14:45:53.065Z INFO sending Commit {"height": 2020, "view": 0} -2023-12-15T14:45:53.065Z INFO approving block {"height": 2020, "hash": "8ff408f7b153c6ed7aeb83fa0ccfb1995b9ee9896effe03f737c986c56336025", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e5fd0f3916e65dc8535449ddfde8fe4cb6fe57739dc07f59c018163ff379cb0"} -2023-12-15T14:45:53.066Z INFO initializing dbft {"height": 2021, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:53.066Z debug frostfs-node/morph.go:229 new block {"index": 2020} -2023-12-15T14:45:53.162Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2020, "blockHeight": 2020, "took": "3.912421ms"} -2023-12-15T14:45:54.066Z INFO sending PrepareRequest {"height": 2021, "view": 0} -2023-12-15T14:45:54.066Z INFO sending Commit {"height": 2021, "view": 0} -2023-12-15T14:45:54.066Z INFO approving block {"height": 2021, "hash": "48d7444bdad9b22cfd5806878094a663dd4d8f2122c3fb6730736dfb9e4d3b1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ff408f7b153c6ed7aeb83fa0ccfb1995b9ee9896effe03f737c986c56336025"} -2023-12-15T14:45:54.067Z INFO initializing dbft {"height": 2022, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:54.068Z debug frostfs-node/morph.go:229 new block {"index": 2021} -2023-12-15T14:45:54.161Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2021, "blockHeight": 2021, "took": "3.054146ms"} -2023-12-15T14:45:55.068Z INFO sending PrepareRequest {"height": 2022, "view": 0} -2023-12-15T14:45:55.068Z INFO sending Commit {"height": 2022, "view": 0} -2023-12-15T14:45:55.069Z INFO approving block {"height": 2022, "hash": "b9f507e8ee84bee9f6dadae8f05dbba327a0e41a08998dc2e11df5aaf968ed1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48d7444bdad9b22cfd5806878094a663dd4d8f2122c3fb6730736dfb9e4d3b1d"} -2023-12-15T14:45:55.070Z INFO initializing dbft {"height": 2023, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:55.070Z debug frostfs-node/morph.go:229 new block {"index": 2022} -2023-12-15T14:45:55.163Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2022, "blockHeight": 2022, "took": "4.074049ms"} -2023-12-15T14:45:56.069Z INFO sending PrepareRequest {"height": 2023, "view": 0} -2023-12-15T14:45:56.069Z INFO sending Commit {"height": 2023, "view": 0} -2023-12-15T14:45:56.070Z INFO approving block {"height": 2023, "hash": "01b9874a13b0e345c8df8c4f80fe25138de42309f938da03ee36430d66b2386d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9f507e8ee84bee9f6dadae8f05dbba327a0e41a08998dc2e11df5aaf968ed1a"} -2023-12-15T14:45:56.071Z INFO initializing dbft {"height": 2024, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:56.071Z debug frostfs-node/morph.go:229 new block {"index": 2023} -2023-12-15T14:45:56.164Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2023, "blockHeight": 2023, "took": "5.14479ms"} -2023-12-15T14:45:57.071Z INFO sending PrepareRequest {"height": 2024, "view": 0} -2023-12-15T14:45:57.071Z INFO sending Commit {"height": 2024, "view": 0} -2023-12-15T14:45:57.071Z INFO approving block {"height": 2024, "hash": "703c7a6a74b7d36d070df9d94057b8925a8ab0f2f6bd11fcdbb32839e1467cfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01b9874a13b0e345c8df8c4f80fe25138de42309f938da03ee36430d66b2386d"} -2023-12-15T14:45:57.072Z INFO initializing dbft {"height": 2025, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:57.073Z debug frostfs-node/morph.go:229 new block {"index": 2024} -2023-12-15T14:45:57.166Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2024, "blockHeight": 2024, "took": "5.875647ms"} -2023-12-15T14:45:58.072Z INFO sending PrepareRequest {"height": 2025, "view": 0} -2023-12-15T14:45:58.073Z INFO sending Commit {"height": 2025, "view": 0} -2023-12-15T14:45:58.073Z INFO approving block {"height": 2025, "hash": "ffb23677ca39c1c0d27801706932d6b31492819f055945a472e2e46ff9a18d97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "703c7a6a74b7d36d070df9d94057b8925a8ab0f2f6bd11fcdbb32839e1467cfa"} -2023-12-15T14:45:58.074Z INFO initializing dbft {"height": 2026, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:58.074Z debug frostfs-node/morph.go:229 new block {"index": 2025} -2023-12-15T14:45:58.164Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2025, "blockHeight": 2025, "took": "3.878ms"} -2023-12-15T14:45:59.073Z INFO sending PrepareRequest {"height": 2026, "view": 0} -2023-12-15T14:45:59.074Z INFO sending Commit {"height": 2026, "view": 0} -2023-12-15T14:45:59.074Z INFO approving block {"height": 2026, "hash": "0c8a5388e110a476b20623d2f391952b5d44e3c59dcd15f0e43d2585434f7fad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffb23677ca39c1c0d27801706932d6b31492819f055945a472e2e46ff9a18d97"} -2023-12-15T14:45:59.075Z INFO initializing dbft {"height": 2027, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:45:59.076Z debug frostfs-node/morph.go:229 new block {"index": 2026} -2023-12-15T14:45:59.167Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2026, "blockHeight": 2026, "took": "5.781557ms"} -2023-12-15T14:46:00.075Z INFO sending PrepareRequest {"height": 2027, "view": 0} -2023-12-15T14:46:00.076Z INFO sending Commit {"height": 2027, "view": 0} -2023-12-15T14:46:00.076Z INFO approving block {"height": 2027, "hash": "d6abf9d2618b093adea3dd70faa6afa244b131e70f1a93c24d9b6806c89f0176", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c8a5388e110a476b20623d2f391952b5d44e3c59dcd15f0e43d2585434f7fad"} -2023-12-15T14:46:00.077Z INFO initializing dbft {"height": 2028, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:00.078Z debug frostfs-node/morph.go:229 new block {"index": 2027} -2023-12-15T14:46:00.167Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2027, "blockHeight": 2027, "took": "5.573606ms"} -2023-12-15T14:46:01.077Z INFO sending PrepareRequest {"height": 2028, "view": 0} -2023-12-15T14:46:01.077Z INFO sending Commit {"height": 2028, "view": 0} -2023-12-15T14:46:01.078Z INFO approving block {"height": 2028, "hash": "f402db9ac1df330ed8dff669519b11581a06ba19cbe4da51f9840de2f2b4228b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6abf9d2618b093adea3dd70faa6afa244b131e70f1a93c24d9b6806c89f0176"} -2023-12-15T14:46:01.079Z INFO initializing dbft {"height": 2029, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:01.079Z debug frostfs-node/morph.go:229 new block {"index": 2028} -2023-12-15T14:46:01.167Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2028, "blockHeight": 2028, "took": "4.833485ms"} -2023-12-15T14:46:02.079Z INFO sending PrepareRequest {"height": 2029, "view": 0} -2023-12-15T14:46:02.079Z INFO sending Commit {"height": 2029, "view": 0} -2023-12-15T14:46:02.080Z INFO approving block {"height": 2029, "hash": "7a6cb82bb9751919740fc43fb253269fb94e33542c7c775b31b36271126ec1cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f402db9ac1df330ed8dff669519b11581a06ba19cbe4da51f9840de2f2b4228b"} -2023-12-15T14:46:02.080Z INFO initializing dbft {"height": 2030, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:02.081Z debug frostfs-node/morph.go:229 new block {"index": 2029} -2023-12-15T14:46:02.167Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2029, "blockHeight": 2029, "took": "4.324383ms"} -2023-12-15T14:46:03.081Z INFO sending PrepareRequest {"height": 2030, "view": 0} -2023-12-15T14:46:03.081Z INFO sending Commit {"height": 2030, "view": 0} -2023-12-15T14:46:03.081Z INFO approving block {"height": 2030, "hash": "7c6a2e8c25f2da400ad50bd6b17cc6509742e9c2bf00a556372c8f926d76d37b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a6cb82bb9751919740fc43fb253269fb94e33542c7c775b31b36271126ec1cd"} -2023-12-15T14:46:03.083Z INFO initializing dbft {"height": 2031, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:03.083Z debug frostfs-node/morph.go:229 new block {"index": 2030} -2023-12-15T14:46:03.168Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2030, "blockHeight": 2030, "took": "4.3675ms"} -2023-12-15T14:46:04.082Z INFO sending PrepareRequest {"height": 2031, "view": 0} -2023-12-15T14:46:04.082Z INFO sending Commit {"height": 2031, "view": 0} -2023-12-15T14:46:04.083Z INFO approving block {"height": 2031, "hash": "2c5f95d6887217298c3ee7a3729134ba3f915948977692933b48ceb0a576e2ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c6a2e8c25f2da400ad50bd6b17cc6509742e9c2bf00a556372c8f926d76d37b"} -2023-12-15T14:46:04.084Z INFO initializing dbft {"height": 2032, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:04.084Z debug frostfs-node/morph.go:229 new block {"index": 2031} -2023-12-15T14:46:04.170Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2031, "blockHeight": 2031, "took": "5.987514ms"} -2023-12-15T14:46:05.084Z INFO sending PrepareRequest {"height": 2032, "view": 0} -2023-12-15T14:46:05.084Z INFO sending Commit {"height": 2032, "view": 0} -2023-12-15T14:46:05.084Z INFO approving block {"height": 2032, "hash": "84e6db0b720eb772b936ff048c3b0759a6b364a5775d9b2a4ae4eda71181d001", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c5f95d6887217298c3ee7a3729134ba3f915948977692933b48ceb0a576e2ca"} -2023-12-15T14:46:05.085Z INFO initializing dbft {"height": 2033, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:05.086Z debug frostfs-node/morph.go:229 new block {"index": 2032} -2023-12-15T14:46:05.170Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2032, "blockHeight": 2032, "took": "5.316268ms"} -2023-12-15T14:46:06.085Z INFO sending PrepareRequest {"height": 2033, "view": 0} -2023-12-15T14:46:06.085Z INFO sending Commit {"height": 2033, "view": 0} -2023-12-15T14:46:06.086Z INFO approving block {"height": 2033, "hash": "53c7c93af029b568cfaa34292cc14de930685d09b74b2e1d662ad01afd10cbf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84e6db0b720eb772b936ff048c3b0759a6b364a5775d9b2a4ae4eda71181d001"} -2023-12-15T14:46:06.087Z INFO initializing dbft {"height": 2034, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:06.087Z debug frostfs-node/morph.go:229 new block {"index": 2033} -2023-12-15T14:46:06.170Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2033, "blockHeight": 2033, "took": "4.217673ms"} -2023-12-15T14:46:07.087Z INFO sending PrepareRequest {"height": 2034, "view": 0} -2023-12-15T14:46:07.087Z INFO sending Commit {"height": 2034, "view": 0} -2023-12-15T14:46:07.088Z INFO approving block {"height": 2034, "hash": "24791afa62a17f5b243c170bd462b2c090d7a81965a261cc4729c23fd78e8a99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53c7c93af029b568cfaa34292cc14de930685d09b74b2e1d662ad01afd10cbf3"} -2023-12-15T14:46:07.089Z INFO initializing dbft {"height": 2035, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:07.089Z debug frostfs-node/morph.go:229 new block {"index": 2034} -2023-12-15T14:46:07.169Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2034, "blockHeight": 2034, "took": "3.321153ms"} -2023-12-15T14:46:08.089Z INFO sending PrepareRequest {"height": 2035, "view": 0} -2023-12-15T14:46:08.089Z INFO sending Commit {"height": 2035, "view": 0} -2023-12-15T14:46:08.089Z INFO approving block {"height": 2035, "hash": "333cf64271c5484c98fe68158d96630839e8b1991592c87da492b2065b28254d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24791afa62a17f5b243c170bd462b2c090d7a81965a261cc4729c23fd78e8a99"} -2023-12-15T14:46:08.091Z INFO initializing dbft {"height": 2036, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:08.092Z debug frostfs-node/morph.go:229 new block {"index": 2035} -2023-12-15T14:46:08.170Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2035, "blockHeight": 2035, "took": "3.088401ms"} -2023-12-15T14:46:09.090Z INFO sending PrepareRequest {"height": 2036, "view": 0} -2023-12-15T14:46:09.090Z INFO sending Commit {"height": 2036, "view": 0} -2023-12-15T14:46:09.091Z INFO approving block {"height": 2036, "hash": "f60a6ef3ea4b7247c6435be1ff62c47e6d9f6e45e7e79854204f952958ff49e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "333cf64271c5484c98fe68158d96630839e8b1991592c87da492b2065b28254d"} -2023-12-15T14:46:09.092Z INFO initializing dbft {"height": 2037, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:09.093Z debug frostfs-node/morph.go:229 new block {"index": 2036} -2023-12-15T14:46:09.171Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2036, "blockHeight": 2036, "took": "4.201503ms"} -2023-12-15T14:46:10.092Z INFO sending PrepareRequest {"height": 2037, "view": 0} -2023-12-15T14:46:10.092Z INFO sending Commit {"height": 2037, "view": 0} -2023-12-15T14:46:10.093Z INFO approving block {"height": 2037, "hash": "9cd7332739c2d9219bd68a341efa6f920d32906e0e2661a19e356dd6ca8ecda9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f60a6ef3ea4b7247c6435be1ff62c47e6d9f6e45e7e79854204f952958ff49e6"} -2023-12-15T14:46:10.093Z INFO initializing dbft {"height": 2038, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:10.094Z debug frostfs-node/morph.go:229 new block {"index": 2037} -2023-12-15T14:46:10.174Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2037, "blockHeight": 2037, "took": "5.234146ms"} -2023-12-15T14:46:11.094Z INFO sending PrepareRequest {"height": 2038, "view": 0} -2023-12-15T14:46:11.094Z INFO sending Commit {"height": 2038, "view": 0} -2023-12-15T14:46:11.095Z INFO approving block {"height": 2038, "hash": "f2eb170d8f637c05bca39b1f1ad6a54552e2c5d53bcae1f681966066054c5c4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cd7332739c2d9219bd68a341efa6f920d32906e0e2661a19e356dd6ca8ecda9"} -2023-12-15T14:46:11.096Z INFO initializing dbft {"height": 2039, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:11.096Z debug frostfs-node/morph.go:229 new block {"index": 2038} -2023-12-15T14:46:11.173Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2038, "blockHeight": 2038, "took": "2.978676ms"} -2023-12-15T14:46:12.095Z INFO sending PrepareRequest {"height": 2039, "view": 0} -2023-12-15T14:46:12.096Z INFO sending Commit {"height": 2039, "view": 0} -2023-12-15T14:46:12.096Z INFO approving block {"height": 2039, "hash": "9c7400825ee9a7c858ec8de33d561f8be618f719241aae2f452364463e77a7f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2eb170d8f637c05bca39b1f1ad6a54552e2c5d53bcae1f681966066054c5c4f"} -2023-12-15T14:46:12.097Z INFO initializing dbft {"height": 2040, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:12.097Z debug frostfs-node/morph.go:229 new block {"index": 2039} -2023-12-15T14:46:12.174Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2039, "blockHeight": 2039, "took": "3.068609ms"} -2023-12-15T14:46:13.097Z INFO sending PrepareRequest {"height": 2040, "view": 0} -2023-12-15T14:46:13.097Z INFO sending Commit {"height": 2040, "view": 0} -2023-12-15T14:46:13.098Z INFO approving block {"height": 2040, "hash": "3c8b9ca2ff16fbc894803a9a43a71f0eba012bdc2c25025bbc538b9c19de3b1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c7400825ee9a7c858ec8de33d561f8be618f719241aae2f452364463e77a7f7"} -2023-12-15T14:46:13.099Z INFO initializing dbft {"height": 2041, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:13.099Z debug frostfs-node/morph.go:229 new block {"index": 2040} -2023-12-15T14:46:13.175Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2040, "blockHeight": 2040, "took": "4.04192ms"} -2023-12-15T14:46:14.099Z INFO sending PrepareRequest {"height": 2041, "view": 0} -2023-12-15T14:46:14.099Z INFO sending Commit {"height": 2041, "view": 0} -2023-12-15T14:46:14.099Z INFO approving block {"height": 2041, "hash": "6beb5103e68a71426dc16f18bb5b55a1098bfc7074067469448ba5d6b99f3e27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c8b9ca2ff16fbc894803a9a43a71f0eba012bdc2c25025bbc538b9c19de3b1f"} -2023-12-15T14:46:14.100Z INFO initializing dbft {"height": 2042, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:14.101Z debug frostfs-node/morph.go:229 new block {"index": 2041} -2023-12-15T14:46:14.176Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2041, "blockHeight": 2041, "took": "4.170728ms"} -2023-12-15T14:46:15.100Z INFO sending PrepareRequest {"height": 2042, "view": 0} -2023-12-15T14:46:15.100Z INFO sending Commit {"height": 2042, "view": 0} -2023-12-15T14:46:15.100Z INFO approving block {"height": 2042, "hash": "dc9b4cd9bd19712d352c583e983dccb932f68fee7f247c15d84c1daa14877fe0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6beb5103e68a71426dc16f18bb5b55a1098bfc7074067469448ba5d6b99f3e27"} -2023-12-15T14:46:15.101Z INFO initializing dbft {"height": 2043, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:15.101Z debug frostfs-node/morph.go:229 new block {"index": 2042} -2023-12-15T14:46:15.178Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2042, "blockHeight": 2042, "took": "5.190936ms"} -2023-12-15T14:46:16.101Z INFO sending PrepareRequest {"height": 2043, "view": 0} -2023-12-15T14:46:16.102Z INFO sending Commit {"height": 2043, "view": 0} -2023-12-15T14:46:16.102Z INFO approving block {"height": 2043, "hash": "aa3f0db51e31eb4d3c0ee683860048fed540a1ae082cb9bfd356d19725d545fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc9b4cd9bd19712d352c583e983dccb932f68fee7f247c15d84c1daa14877fe0"} -2023-12-15T14:46:16.104Z INFO initializing dbft {"height": 2044, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:16.104Z debug frostfs-node/morph.go:229 new block {"index": 2043} -2023-12-15T14:46:16.179Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2043, "blockHeight": 2043, "took": "5.194696ms"} -2023-12-15T14:46:17.103Z INFO sending PrepareRequest {"height": 2044, "view": 0} -2023-12-15T14:46:17.103Z INFO sending Commit {"height": 2044, "view": 0} -2023-12-15T14:46:17.104Z INFO approving block {"height": 2044, "hash": "8e513d0b9754084ccd9dc4e3d1fc808a04b704a0a3985876502fece7e6e057f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa3f0db51e31eb4d3c0ee683860048fed540a1ae082cb9bfd356d19725d545fe"} -2023-12-15T14:46:17.105Z INFO initializing dbft {"height": 2045, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:17.106Z debug frostfs-node/morph.go:229 new block {"index": 2044} -2023-12-15T14:46:17.178Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2044, "blockHeight": 2044, "took": "4.072088ms"} -2023-12-15T14:46:18.105Z INFO sending PrepareRequest {"height": 2045, "view": 0} -2023-12-15T14:46:18.105Z INFO sending Commit {"height": 2045, "view": 0} -2023-12-15T14:46:18.105Z INFO approving block {"height": 2045, "hash": "96b480b79d8f4ab42427b7b0c288df1e7315ce16cd19913bf6f2db9c481240d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e513d0b9754084ccd9dc4e3d1fc808a04b704a0a3985876502fece7e6e057f6"} -2023-12-15T14:46:18.107Z INFO initializing dbft {"height": 2046, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:18.107Z debug frostfs-node/morph.go:229 new block {"index": 2045} -2023-12-15T14:46:18.179Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2045, "blockHeight": 2045, "took": "3.961853ms"} -2023-12-15T14:46:19.106Z INFO sending PrepareRequest {"height": 2046, "view": 0} -2023-12-15T14:46:19.107Z INFO sending Commit {"height": 2046, "view": 0} -2023-12-15T14:46:19.107Z INFO approving block {"height": 2046, "hash": "e94ab57ccb833ced8a3d2b595c92e747f17f3b0313181e7a26217ea37edfd14f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96b480b79d8f4ab42427b7b0c288df1e7315ce16cd19913bf6f2db9c481240d8"} -2023-12-15T14:46:19.108Z INFO initializing dbft {"height": 2047, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:19.109Z debug frostfs-node/morph.go:229 new block {"index": 2046} -2023-12-15T14:46:19.180Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2046, "blockHeight": 2046, "took": "4.795709ms"} -2023-12-15T14:46:20.108Z INFO sending PrepareRequest {"height": 2047, "view": 0} -2023-12-15T14:46:20.108Z INFO sending Commit {"height": 2047, "view": 0} -2023-12-15T14:46:20.108Z INFO approving block {"height": 2047, "hash": "86b4e5e98596dc12452082044d3457e8de374dec077ea9bb1216a3819f4f7fd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e94ab57ccb833ced8a3d2b595c92e747f17f3b0313181e7a26217ea37edfd14f"} -2023-12-15T14:46:20.109Z INFO initializing dbft {"height": 2048, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:20.110Z debug frostfs-node/morph.go:229 new block {"index": 2047} -2023-12-15T14:46:20.179Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 2047, "blockHeight": 2047, "took": "3.396738ms"} -2023-12-15T14:46:21.110Z INFO sending PrepareRequest {"height": 2048, "view": 0} -2023-12-15T14:46:21.110Z INFO sending Commit {"height": 2048, "view": 0} -2023-12-15T14:46:21.110Z INFO approving block {"height": 2048, "hash": "0ee78b763c87c6fe22a8b796742769730eba34d4ab12fd83ae4826ce5460867b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86b4e5e98596dc12452082044d3457e8de374dec077ea9bb1216a3819f4f7fd0"} -2023-12-15T14:46:21.111Z INFO initializing dbft {"height": 2049, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:21.112Z debug frostfs-node/morph.go:229 new block {"index": 2048} -2023-12-15T14:46:21.116Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 9, "iteration": 1, "error": "no data for 0 iteration in 9 epoch for consumers's trusts"} -2023-12-15T14:46:21.117Z info settlement/calls.go:61 start basic income collection {"epoch": 9} -2023-12-15T14:46:21.182Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2048, "blockHeight": 2048, "took": "4.73326ms"} -2023-12-15T14:46:22.111Z INFO sending PrepareRequest {"height": 2049, "view": 0} -2023-12-15T14:46:22.112Z INFO sending Commit {"height": 2049, "view": 0} -2023-12-15T14:46:22.112Z INFO approving block {"height": 2049, "hash": "51522cffd586625e1851cf255d55cc567363953b2ff7eea46e898116bd867396", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ee78b763c87c6fe22a8b796742769730eba34d4ab12fd83ae4826ce5460867b"} -2023-12-15T14:46:22.113Z INFO initializing dbft {"height": 2050, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:22.113Z debug frostfs-node/morph.go:229 new block {"index": 2049} -2023-12-15T14:46:22.182Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2049, "blockHeight": 2049, "took": "4.703447ms"} -2023-12-15T14:46:23.113Z INFO sending PrepareRequest {"height": 2050, "view": 0} -2023-12-15T14:46:23.113Z INFO sending Commit {"height": 2050, "view": 0} -2023-12-15T14:46:23.114Z INFO approving block {"height": 2050, "hash": "604e10bb0661dd6faf76f54073d2e7ebc62bec40761ec2422208269f73ff1098", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51522cffd586625e1851cf255d55cc567363953b2ff7eea46e898116bd867396"} -2023-12-15T14:46:23.115Z INFO initializing dbft {"height": 2051, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:23.116Z debug frostfs-node/morph.go:229 new block {"index": 2050} -2023-12-15T14:46:23.182Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2050, "blockHeight": 2050, "took": "4.093985ms"} -2023-12-15T14:46:24.115Z INFO sending PrepareRequest {"height": 2051, "view": 0} -2023-12-15T14:46:24.115Z INFO sending Commit {"height": 2051, "view": 0} -2023-12-15T14:46:24.115Z INFO approving block {"height": 2051, "hash": "ac21a285f25a732062b42cd80aeefb6d924f8c0873b185643a150ee2d16c06d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "604e10bb0661dd6faf76f54073d2e7ebc62bec40761ec2422208269f73ff1098"} -2023-12-15T14:46:24.116Z INFO initializing dbft {"height": 2052, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:24.116Z debug frostfs-node/morph.go:229 new block {"index": 2051} -2023-12-15T14:46:24.183Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2051, "blockHeight": 2051, "took": "3.926299ms"} -2023-12-15T14:46:25.116Z INFO sending PrepareRequest {"height": 2052, "view": 0} -2023-12-15T14:46:25.117Z INFO sending Commit {"height": 2052, "view": 0} -2023-12-15T14:46:25.117Z INFO approving block {"height": 2052, "hash": "b3ae8f450c6c4ceb5c0533f161b01e8b10f1e49d6dedb15d034b3e7d5593fcc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac21a285f25a732062b42cd80aeefb6d924f8c0873b185643a150ee2d16c06d2"} -2023-12-15T14:46:25.118Z INFO initializing dbft {"height": 2053, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:25.119Z debug frostfs-node/morph.go:229 new block {"index": 2052} -2023-12-15T14:46:25.183Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2052, "blockHeight": 2052, "took": "3.512082ms"} -2023-12-15T14:46:26.118Z INFO sending PrepareRequest {"height": 2053, "view": 0} -2023-12-15T14:46:26.118Z INFO sending Commit {"height": 2053, "view": 0} -2023-12-15T14:46:26.119Z INFO approving block {"height": 2053, "hash": "9ca34b93201d07aa9d9c80743708cf61c41e1e61a87c648e5e687fa0656b529c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3ae8f450c6c4ceb5c0533f161b01e8b10f1e49d6dedb15d034b3e7d5593fcc0"} -2023-12-15T14:46:26.120Z INFO initializing dbft {"height": 2054, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:26.121Z debug frostfs-node/morph.go:229 new block {"index": 2053} -2023-12-15T14:46:26.184Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2053, "blockHeight": 2053, "took": "3.466731ms"} -2023-12-15T14:46:27.120Z INFO sending PrepareRequest {"height": 2054, "view": 0} -2023-12-15T14:46:27.120Z INFO sending Commit {"height": 2054, "view": 0} -2023-12-15T14:46:27.120Z INFO approving block {"height": 2054, "hash": "26f4849e256427d9de43cd30b7e2f8518d8e93dc5129a220d19de0ae2159b82c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ca34b93201d07aa9d9c80743708cf61c41e1e61a87c648e5e687fa0656b529c"} -2023-12-15T14:46:27.121Z INFO initializing dbft {"height": 2055, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:27.122Z debug frostfs-node/morph.go:229 new block {"index": 2054} -2023-12-15T14:46:27.184Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2054, "blockHeight": 2054, "took": "3.166033ms"} -2023-12-15T14:46:28.121Z INFO sending PrepareRequest {"height": 2055, "view": 0} -2023-12-15T14:46:28.121Z INFO sending Commit {"height": 2055, "view": 0} -2023-12-15T14:46:28.121Z INFO approving block {"height": 2055, "hash": "c17daa0c9891b4826310adb3bb81153f6414a4f9d53f0be31c3fe505b7b96f61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26f4849e256427d9de43cd30b7e2f8518d8e93dc5129a220d19de0ae2159b82c"} -2023-12-15T14:46:28.122Z INFO initializing dbft {"height": 2056, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:28.123Z debug frostfs-node/morph.go:229 new block {"index": 2055} -2023-12-15T14:46:28.185Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2055, "blockHeight": 2055, "took": "4.065042ms"} -2023-12-15T14:46:29.123Z INFO sending PrepareRequest {"height": 2056, "view": 0} -2023-12-15T14:46:29.123Z INFO sending Commit {"height": 2056, "view": 0} -2023-12-15T14:46:29.123Z INFO approving block {"height": 2056, "hash": "ebb75ab525d8b4a90c9b88c0a78b19bd1a3fc5a37a4bf2bfdacf2717282b6d63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c17daa0c9891b4826310adb3bb81153f6414a4f9d53f0be31c3fe505b7b96f61"} -2023-12-15T14:46:29.124Z INFO initializing dbft {"height": 2057, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:29.125Z debug frostfs-node/morph.go:229 new block {"index": 2056} -2023-12-15T14:46:29.186Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2056, "blockHeight": 2056, "took": "4.138558ms"} -2023-12-15T14:46:30.125Z INFO sending PrepareRequest {"height": 2057, "view": 0} -2023-12-15T14:46:30.125Z INFO sending Commit {"height": 2057, "view": 0} -2023-12-15T14:46:30.125Z INFO approving block {"height": 2057, "hash": "b19da7968e514c6f8119adbd094e98604f0a3f2db70f84d482a6d85c832f8664", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebb75ab525d8b4a90c9b88c0a78b19bd1a3fc5a37a4bf2bfdacf2717282b6d63"} -2023-12-15T14:46:30.126Z INFO initializing dbft {"height": 2058, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:30.127Z debug frostfs-node/morph.go:229 new block {"index": 2057} -2023-12-15T14:46:30.190Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2057, "blockHeight": 2057, "took": "7.19293ms"} -2023-12-15T14:46:31.126Z INFO sending PrepareRequest {"height": 2058, "view": 0} -2023-12-15T14:46:31.126Z INFO sending Commit {"height": 2058, "view": 0} -2023-12-15T14:46:31.127Z INFO approving block {"height": 2058, "hash": "bb9f0b2390fb13ba6f5d9dbc62437a91f4436b02de780ec9006ad6d9554e47fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b19da7968e514c6f8119adbd094e98604f0a3f2db70f84d482a6d85c832f8664"} -2023-12-15T14:46:31.128Z INFO initializing dbft {"height": 2059, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:31.129Z debug frostfs-node/morph.go:229 new block {"index": 2058} -2023-12-15T14:46:31.188Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2058, "blockHeight": 2058, "took": "4.240903ms"} -2023-12-15T14:46:32.128Z INFO sending PrepareRequest {"height": 2059, "view": 0} -2023-12-15T14:46:32.128Z INFO sending Commit {"height": 2059, "view": 0} -2023-12-15T14:46:32.129Z INFO approving block {"height": 2059, "hash": "aa0681c376547513e66ce4542925e0d82c778c0c4adcf641a79bb2fe9b623cb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb9f0b2390fb13ba6f5d9dbc62437a91f4436b02de780ec9006ad6d9554e47fb"} -2023-12-15T14:46:32.130Z INFO initializing dbft {"height": 2060, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:32.131Z debug frostfs-node/morph.go:229 new block {"index": 2059} -2023-12-15T14:46:32.188Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2059, "blockHeight": 2059, "took": "3.723578ms"} -2023-12-15T14:46:33.130Z INFO sending PrepareRequest {"height": 2060, "view": 0} -2023-12-15T14:46:33.130Z INFO sending Commit {"height": 2060, "view": 0} -2023-12-15T14:46:33.130Z INFO approving block {"height": 2060, "hash": "6fbfb5a0b1f67fab9a284ffaf6b4261386d22f4bf5abd4da201a44e36ba8fc19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa0681c376547513e66ce4542925e0d82c778c0c4adcf641a79bb2fe9b623cb1"} -2023-12-15T14:46:33.131Z INFO initializing dbft {"height": 2061, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:33.132Z debug frostfs-node/morph.go:229 new block {"index": 2060} -2023-12-15T14:46:33.191Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2060, "blockHeight": 2060, "took": "6.313624ms"} -2023-12-15T14:46:34.131Z INFO sending PrepareRequest {"height": 2061, "view": 0} -2023-12-15T14:46:34.131Z INFO sending Commit {"height": 2061, "view": 0} -2023-12-15T14:46:34.131Z INFO approving block {"height": 2061, "hash": "ffe130ceea0d602e0b14047fe7a08f62dc2c279407691ee761776c31ae5c3c9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fbfb5a0b1f67fab9a284ffaf6b4261386d22f4bf5abd4da201a44e36ba8fc19"} -2023-12-15T14:46:34.132Z INFO initializing dbft {"height": 2062, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:34.132Z debug frostfs-node/morph.go:229 new block {"index": 2061} -2023-12-15T14:46:34.189Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2061, "blockHeight": 2061, "took": "3.19352ms"} -2023-12-15T14:46:35.132Z INFO sending PrepareRequest {"height": 2062, "view": 0} -2023-12-15T14:46:35.132Z INFO sending Commit {"height": 2062, "view": 0} -2023-12-15T14:46:35.133Z INFO approving block {"height": 2062, "hash": "db06f9bf5b6f996b7cd79f6b018cd6f0c17c90a0b915f8c77bb52517255af632", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffe130ceea0d602e0b14047fe7a08f62dc2c279407691ee761776c31ae5c3c9f"} -2023-12-15T14:46:35.134Z INFO initializing dbft {"height": 2063, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:35.135Z debug frostfs-node/morph.go:229 new block {"index": 2062} -2023-12-15T14:46:35.191Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2062, "blockHeight": 2062, "took": "4.4517ms"} -2023-12-15T14:46:36.134Z INFO sending PrepareRequest {"height": 2063, "view": 0} -2023-12-15T14:46:36.134Z INFO sending Commit {"height": 2063, "view": 0} -2023-12-15T14:46:36.134Z INFO approving block {"height": 2063, "hash": "e9d44fda9e7238423e979624c44f11e8193f489a4147ac055e22009bfbc4204d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db06f9bf5b6f996b7cd79f6b018cd6f0c17c90a0b915f8c77bb52517255af632"} -2023-12-15T14:46:36.135Z INFO initializing dbft {"height": 2064, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:36.136Z debug frostfs-node/morph.go:229 new block {"index": 2063} -2023-12-15T14:46:36.191Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2063, "blockHeight": 2063, "took": "4.027138ms"} -2023-12-15T14:46:37.135Z INFO sending PrepareRequest {"height": 2064, "view": 0} -2023-12-15T14:46:37.136Z INFO sending Commit {"height": 2064, "view": 0} -2023-12-15T14:46:37.136Z INFO approving block {"height": 2064, "hash": "4f290b82bbd4ec76c21951a92341c16f58ae8e2be77d06d953658ca20c687ddd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9d44fda9e7238423e979624c44f11e8193f489a4147ac055e22009bfbc4204d"} -2023-12-15T14:46:37.138Z INFO initializing dbft {"height": 2065, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:37.138Z debug frostfs-node/morph.go:229 new block {"index": 2064} -2023-12-15T14:46:37.211Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2064, "blockHeight": 2064, "took": "23.41362ms"} -2023-12-15T14:46:38.137Z INFO sending PrepareRequest {"height": 2065, "view": 0} -2023-12-15T14:46:38.138Z INFO sending Commit {"height": 2065, "view": 0} -2023-12-15T14:46:38.138Z INFO approving block {"height": 2065, "hash": "edaa81b46ee2f27edec77e6a0ae278509bcab9ad74b15e90027dfd808b5a0144", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f290b82bbd4ec76c21951a92341c16f58ae8e2be77d06d953658ca20c687ddd"} -2023-12-15T14:46:38.139Z INFO initializing dbft {"height": 2066, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:38.140Z debug frostfs-node/morph.go:229 new block {"index": 2065} -2023-12-15T14:46:38.192Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2065, "blockHeight": 2065, "took": "3.724763ms"} -2023-12-15T14:46:39.139Z INFO sending PrepareRequest {"height": 2066, "view": 0} -2023-12-15T14:46:39.139Z INFO sending Commit {"height": 2066, "view": 0} -2023-12-15T14:46:39.140Z INFO approving block {"height": 2066, "hash": "37d356923f72aea351503bdf92d1859307b2d7db8c6238cd2bbab75daf246e7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edaa81b46ee2f27edec77e6a0ae278509bcab9ad74b15e90027dfd808b5a0144"} -2023-12-15T14:46:39.141Z INFO initializing dbft {"height": 2067, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:39.141Z debug frostfs-node/morph.go:229 new block {"index": 2066} -2023-12-15T14:46:39.192Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2066, "blockHeight": 2066, "took": "3.4104ms"} -2023-12-15T14:46:40.140Z INFO sending PrepareRequest {"height": 2067, "view": 0} -2023-12-15T14:46:40.140Z INFO sending Commit {"height": 2067, "view": 0} -2023-12-15T14:46:40.141Z INFO approving block {"height": 2067, "hash": "5ae3b66b2b0064786510a8e4eb0fc3c629104608b9ddae8142e87847d707bf66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37d356923f72aea351503bdf92d1859307b2d7db8c6238cd2bbab75daf246e7a"} -2023-12-15T14:46:40.141Z INFO initializing dbft {"height": 2068, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:40.142Z debug frostfs-node/morph.go:229 new block {"index": 2067} -2023-12-15T14:46:40.144Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:46:40.146Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:46:40.146Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:46:40.193Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2067, "blockHeight": 2067, "took": "4.041178ms"} -2023-12-15T14:46:41.142Z INFO sending PrepareRequest {"height": 2068, "view": 0} -2023-12-15T14:46:41.142Z INFO sending Commit {"height": 2068, "view": 0} -2023-12-15T14:46:41.143Z INFO approving block {"height": 2068, "hash": "61f0f15d8bf2b055ab106f4ff3e17e49479478ba8ed03b6bf57dd417afbaf6b5", "tx_count": 2, "merkle": "cdc70940ee9505e770e106b848205303aecb0175df6bda5748bf02abed5b7edd", "prev": "5ae3b66b2b0064786510a8e4eb0fc3c629104608b9ddae8142e87847d707bf66"} -2023-12-15T14:46:41.144Z INFO runtime log {"tx": "6d1aaf657f17cd57e371f97280aaccff50591a615a3d7874d3b0fb9e5d8a158f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:46:41.144Z INFO runtime log {"tx": "6d1aaf657f17cd57e371f97280aaccff50591a615a3d7874d3b0fb9e5d8a158f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:46:41.144Z INFO initializing dbft {"height": 2069, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:41.145Z debug frostfs-node/morph.go:229 new block {"index": 2068} -2023-12-15T14:46:41.196Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2068, "blockHeight": 2068, "took": "5.484791ms"} -2023-12-15T14:46:42.144Z INFO sending PrepareRequest {"height": 2069, "view": 0} -2023-12-15T14:46:42.144Z INFO sending Commit {"height": 2069, "view": 0} -2023-12-15T14:46:42.144Z INFO approving block {"height": 2069, "hash": "d4ee87419eea80dbffe28bc981dc4385841d9cd6f7a1e13378a592b5cc4d9c0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61f0f15d8bf2b055ab106f4ff3e17e49479478ba8ed03b6bf57dd417afbaf6b5"} -2023-12-15T14:46:42.145Z INFO initializing dbft {"height": 2070, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:42.145Z debug frostfs-node/morph.go:229 new block {"index": 2069} -2023-12-15T14:46:42.194Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2069, "blockHeight": 2069, "took": "3.329037ms"} -2023-12-15T14:46:43.145Z INFO sending PrepareRequest {"height": 2070, "view": 0} -2023-12-15T14:46:43.145Z INFO sending Commit {"height": 2070, "view": 0} -2023-12-15T14:46:43.146Z INFO approving block {"height": 2070, "hash": "57dd3e10f66330a5e8ff924eaed8e567527edf635712fa013a073285a87b7319", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4ee87419eea80dbffe28bc981dc4385841d9cd6f7a1e13378a592b5cc4d9c0b"} -2023-12-15T14:46:43.147Z INFO initializing dbft {"height": 2071, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:43.147Z debug frostfs-node/morph.go:229 new block {"index": 2070} -2023-12-15T14:46:43.195Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2070, "blockHeight": 2070, "took": "3.727839ms"} -2023-12-15T14:46:44.147Z INFO sending PrepareRequest {"height": 2071, "view": 0} -2023-12-15T14:46:44.147Z INFO sending Commit {"height": 2071, "view": 0} -2023-12-15T14:46:44.147Z INFO approving block {"height": 2071, "hash": "dce9a33e3f39f6bb7ee867098a5966c5e35b90c07fdbb73d37b60ce0b402ea7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57dd3e10f66330a5e8ff924eaed8e567527edf635712fa013a073285a87b7319"} -2023-12-15T14:46:44.148Z INFO initializing dbft {"height": 2072, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:44.148Z debug frostfs-node/morph.go:229 new block {"index": 2071} -2023-12-15T14:46:44.197Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2071, "blockHeight": 2071, "took": "5.429948ms"} -2023-12-15T14:46:45.148Z INFO sending PrepareRequest {"height": 2072, "view": 0} -2023-12-15T14:46:45.148Z INFO sending Commit {"height": 2072, "view": 0} -2023-12-15T14:46:45.148Z INFO approving block {"height": 2072, "hash": "0286f3f726aa67f991dcaf9f65e329c7ae3579b72fc90aa1411f07af772c2b8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dce9a33e3f39f6bb7ee867098a5966c5e35b90c07fdbb73d37b60ce0b402ea7a"} -2023-12-15T14:46:45.149Z INFO initializing dbft {"height": 2073, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:45.150Z debug frostfs-node/morph.go:229 new block {"index": 2072} -2023-12-15T14:46:45.196Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2072, "blockHeight": 2072, "took": "3.74966ms"} -2023-12-15T14:46:46.150Z INFO sending PrepareRequest {"height": 2073, "view": 0} -2023-12-15T14:46:46.150Z INFO sending Commit {"height": 2073, "view": 0} -2023-12-15T14:46:46.150Z INFO approving block {"height": 2073, "hash": "3d65b3fa6736eb412480a95b53c6ba5c5fa53d06509ff49822982d7f5115dfa7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0286f3f726aa67f991dcaf9f65e329c7ae3579b72fc90aa1411f07af772c2b8f"} -2023-12-15T14:46:46.151Z INFO initializing dbft {"height": 2074, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:46.152Z debug frostfs-node/morph.go:229 new block {"index": 2073} -2023-12-15T14:46:46.196Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2073, "blockHeight": 2073, "took": "3.062449ms"} -2023-12-15T14:46:47.151Z INFO sending PrepareRequest {"height": 2074, "view": 0} -2023-12-15T14:46:47.151Z INFO sending Commit {"height": 2074, "view": 0} -2023-12-15T14:46:47.152Z INFO approving block {"height": 2074, "hash": "adf62af1a09cfc835d759020aa7901dea589de5073292db6c361472a295ff615", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d65b3fa6736eb412480a95b53c6ba5c5fa53d06509ff49822982d7f5115dfa7"} -2023-12-15T14:46:47.153Z INFO initializing dbft {"height": 2075, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:47.153Z debug frostfs-node/morph.go:229 new block {"index": 2074} -2023-12-15T14:46:47.198Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2074, "blockHeight": 2074, "took": "4.80885ms"} -2023-12-15T14:46:48.153Z INFO sending PrepareRequest {"height": 2075, "view": 0} -2023-12-15T14:46:48.153Z INFO sending Commit {"height": 2075, "view": 0} -2023-12-15T14:46:48.154Z INFO approving block {"height": 2075, "hash": "70b62a0db78d2f4c35ebc5b39ec3df6d53f1b8e7c02d36b9fa54d600e1e29681", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adf62af1a09cfc835d759020aa7901dea589de5073292db6c361472a295ff615"} -2023-12-15T14:46:48.155Z INFO initializing dbft {"height": 2076, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:48.156Z debug frostfs-node/morph.go:229 new block {"index": 2075} -2023-12-15T14:46:48.197Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2075, "blockHeight": 2075, "took": "3.504842ms"} -2023-12-15T14:46:49.155Z INFO sending PrepareRequest {"height": 2076, "view": 0} -2023-12-15T14:46:49.155Z INFO sending Commit {"height": 2076, "view": 0} -2023-12-15T14:46:49.155Z INFO approving block {"height": 2076, "hash": "fd2502eb0da0a0dfac7b1a1f8e796bfb1bd983b44e68ecdcee35fbfe34b25653", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70b62a0db78d2f4c35ebc5b39ec3df6d53f1b8e7c02d36b9fa54d600e1e29681"} -2023-12-15T14:46:49.156Z INFO initializing dbft {"height": 2077, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:49.157Z debug frostfs-node/morph.go:229 new block {"index": 2076} -2023-12-15T14:46:49.198Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2076, "blockHeight": 2076, "took": "3.197533ms"} -2023-12-15T14:46:50.156Z INFO sending PrepareRequest {"height": 2077, "view": 0} -2023-12-15T14:46:50.156Z INFO sending Commit {"height": 2077, "view": 0} -2023-12-15T14:46:50.156Z INFO approving block {"height": 2077, "hash": "106db5decadacf3fd1311ec3cb9a737a1bc892e3f225ce3074f96ffa596ea3db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd2502eb0da0a0dfac7b1a1f8e796bfb1bd983b44e68ecdcee35fbfe34b25653"} -2023-12-15T14:46:50.157Z INFO initializing dbft {"height": 2078, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:50.158Z debug frostfs-node/morph.go:229 new block {"index": 2077} -2023-12-15T14:46:50.199Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2077, "blockHeight": 2077, "took": "4.150152ms"} -2023-12-15T14:46:51.157Z INFO sending PrepareRequest {"height": 2078, "view": 0} -2023-12-15T14:46:51.158Z INFO sending Commit {"height": 2078, "view": 0} -2023-12-15T14:46:51.158Z INFO approving block {"height": 2078, "hash": "50d22b7611fc7c2a290b0fcfe33419b482d1c6b122057da4024d30105e522848", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "106db5decadacf3fd1311ec3cb9a737a1bc892e3f225ce3074f96ffa596ea3db"} -2023-12-15T14:46:51.159Z INFO initializing dbft {"height": 2079, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:51.159Z debug frostfs-node/morph.go:229 new block {"index": 2078} -2023-12-15T14:46:51.199Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2078, "blockHeight": 2078, "took": "3.031058ms"} -2023-12-15T14:46:52.159Z INFO sending PrepareRequest {"height": 2079, "view": 0} -2023-12-15T14:46:52.159Z INFO sending Commit {"height": 2079, "view": 0} -2023-12-15T14:46:52.159Z INFO approving block {"height": 2079, "hash": "9e8cc31d08ec7cc290dc0ffe6ea111f280901fb1821f34c2a5d6b7874fe9f526", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50d22b7611fc7c2a290b0fcfe33419b482d1c6b122057da4024d30105e522848"} -2023-12-15T14:46:52.160Z INFO initializing dbft {"height": 2080, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:52.161Z debug frostfs-node/morph.go:229 new block {"index": 2079} -2023-12-15T14:46:52.199Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2079, "blockHeight": 2079, "took": "2.852834ms"} -2023-12-15T14:46:53.161Z INFO sending PrepareRequest {"height": 2080, "view": 0} -2023-12-15T14:46:53.161Z INFO sending Commit {"height": 2080, "view": 0} -2023-12-15T14:46:53.162Z INFO approving block {"height": 2080, "hash": "423e47eb1590b5b9396e12b21ab64e939a9cab590cd7c1d52823769d52663b2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e8cc31d08ec7cc290dc0ffe6ea111f280901fb1821f34c2a5d6b7874fe9f526"} -2023-12-15T14:46:53.163Z INFO initializing dbft {"height": 2081, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:53.164Z debug frostfs-node/morph.go:229 new block {"index": 2080} -2023-12-15T14:46:53.200Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2080, "blockHeight": 2080, "took": "3.288241ms"} -2023-12-15T14:46:54.162Z INFO sending PrepareRequest {"height": 2081, "view": 0} -2023-12-15T14:46:54.162Z INFO sending Commit {"height": 2081, "view": 0} -2023-12-15T14:46:54.163Z INFO approving block {"height": 2081, "hash": "333753c41f1d1f086c82ac2a26963da51323c496badd44ce1446ba0b197d57dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "423e47eb1590b5b9396e12b21ab64e939a9cab590cd7c1d52823769d52663b2b"} -2023-12-15T14:46:54.163Z INFO initializing dbft {"height": 2082, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:54.164Z debug frostfs-node/morph.go:229 new block {"index": 2081} -2023-12-15T14:46:54.201Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2081, "blockHeight": 2081, "took": "3.502862ms"} -2023-12-15T14:46:55.164Z INFO sending PrepareRequest {"height": 2082, "view": 0} -2023-12-15T14:46:55.164Z INFO sending Commit {"height": 2082, "view": 0} -2023-12-15T14:46:55.164Z INFO approving block {"height": 2082, "hash": "29b16a3d85676a6de374d017a1e36ebcb70f4806a5be2dfed397b61f0fe55f6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "333753c41f1d1f086c82ac2a26963da51323c496badd44ce1446ba0b197d57dd"} -2023-12-15T14:46:55.166Z INFO initializing dbft {"height": 2083, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:55.166Z debug frostfs-node/morph.go:229 new block {"index": 2082} -2023-12-15T14:46:55.201Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2082, "blockHeight": 2082, "took": "3.149466ms"} -2023-12-15T14:46:56.165Z INFO sending PrepareRequest {"height": 2083, "view": 0} -2023-12-15T14:46:56.165Z INFO sending Commit {"height": 2083, "view": 0} -2023-12-15T14:46:56.166Z INFO approving block {"height": 2083, "hash": "71a4cdaa0d116982465fe819655d9a04838854d76b283ed2f5491b5515f4a42e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29b16a3d85676a6de374d017a1e36ebcb70f4806a5be2dfed397b61f0fe55f6b"} -2023-12-15T14:46:56.167Z INFO initializing dbft {"height": 2084, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:56.167Z debug frostfs-node/morph.go:229 new block {"index": 2083} -2023-12-15T14:46:56.201Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2083, "blockHeight": 2083, "took": "2.735849ms"} -2023-12-15T14:46:57.166Z INFO sending PrepareRequest {"height": 2084, "view": 0} -2023-12-15T14:46:57.166Z INFO sending Commit {"height": 2084, "view": 0} -2023-12-15T14:46:57.167Z INFO approving block {"height": 2084, "hash": "ed18735cd714fd2afa2d84b9d12158fa3dbfc82afd6a5ffd70979f8890480346", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71a4cdaa0d116982465fe819655d9a04838854d76b283ed2f5491b5515f4a42e"} -2023-12-15T14:46:57.167Z INFO initializing dbft {"height": 2085, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:57.168Z debug frostfs-node/morph.go:229 new block {"index": 2084} -2023-12-15T14:46:57.203Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2084, "blockHeight": 2084, "took": "3.166743ms"} -2023-12-15T14:46:58.168Z INFO sending PrepareRequest {"height": 2085, "view": 0} -2023-12-15T14:46:58.168Z INFO sending Commit {"height": 2085, "view": 0} -2023-12-15T14:46:58.168Z INFO approving block {"height": 2085, "hash": "ff1c0247310e4aa2da6982e3492785450e43ba36f968cfb528608acd44bdb27e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed18735cd714fd2afa2d84b9d12158fa3dbfc82afd6a5ffd70979f8890480346"} -2023-12-15T14:46:58.169Z INFO initializing dbft {"height": 2086, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:58.169Z debug frostfs-node/morph.go:229 new block {"index": 2085} -2023-12-15T14:46:58.204Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2085, "blockHeight": 2085, "took": "2.951166ms"} -2023-12-15T14:46:59.169Z INFO sending PrepareRequest {"height": 2086, "view": 0} -2023-12-15T14:46:59.170Z INFO sending Commit {"height": 2086, "view": 0} -2023-12-15T14:46:59.170Z INFO approving block {"height": 2086, "hash": "14f1be659d2a0b026f4e148c4694843a1130dcc19b81d14c9cfa543cebd59ec3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff1c0247310e4aa2da6982e3492785450e43ba36f968cfb528608acd44bdb27e"} -2023-12-15T14:46:59.171Z INFO initializing dbft {"height": 2087, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:46:59.171Z debug frostfs-node/morph.go:229 new block {"index": 2086} -2023-12-15T14:46:59.205Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2086, "blockHeight": 2086, "took": "3.635505ms"} -2023-12-15T14:47:00.171Z INFO sending PrepareRequest {"height": 2087, "view": 0} -2023-12-15T14:47:00.171Z INFO sending Commit {"height": 2087, "view": 0} -2023-12-15T14:47:00.171Z INFO approving block {"height": 2087, "hash": "7dbee69ebf840de663409d05d2e99c83e8a14c52ee2964b4029e3147c657a729", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14f1be659d2a0b026f4e148c4694843a1130dcc19b81d14c9cfa543cebd59ec3"} -2023-12-15T14:47:00.172Z INFO initializing dbft {"height": 2088, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:00.172Z debug frostfs-node/morph.go:229 new block {"index": 2087} -2023-12-15T14:47:00.206Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2087, "blockHeight": 2087, "took": "2.971957ms"} -2023-12-15T14:47:01.172Z INFO sending PrepareRequest {"height": 2088, "view": 0} -2023-12-15T14:47:01.172Z INFO sending Commit {"height": 2088, "view": 0} -2023-12-15T14:47:01.172Z INFO approving block {"height": 2088, "hash": "ac3462d75d2dff9602ff32a4403fa7e66c79a3febe225041781e883c41a5b6bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7dbee69ebf840de663409d05d2e99c83e8a14c52ee2964b4029e3147c657a729"} -2023-12-15T14:47:01.173Z INFO initializing dbft {"height": 2089, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:01.173Z debug frostfs-node/morph.go:229 new block {"index": 2088} -2023-12-15T14:47:01.206Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2088, "blockHeight": 2088, "took": "3.018358ms"} -2023-12-15T14:47:02.174Z INFO sending PrepareRequest {"height": 2089, "view": 0} -2023-12-15T14:47:02.174Z INFO sending Commit {"height": 2089, "view": 0} -2023-12-15T14:47:02.174Z INFO approving block {"height": 2089, "hash": "a11f1df8d76a3849dd3dfd106968328d69dad24651f45b5eb0772a1dfa922987", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac3462d75d2dff9602ff32a4403fa7e66c79a3febe225041781e883c41a5b6bc"} -2023-12-15T14:47:02.176Z INFO initializing dbft {"height": 2090, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:02.178Z debug frostfs-node/morph.go:229 new block {"index": 2089} -2023-12-15T14:47:02.208Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2089, "blockHeight": 2089, "took": "4.259467ms"} -2023-12-15T14:47:03.176Z INFO sending PrepareRequest {"height": 2090, "view": 0} -2023-12-15T14:47:03.176Z INFO sending Commit {"height": 2090, "view": 0} -2023-12-15T14:47:03.176Z INFO approving block {"height": 2090, "hash": "05833652ac8c95d4ba12152cfefa892a21375e8f4506f9027322e550ff9339f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a11f1df8d76a3849dd3dfd106968328d69dad24651f45b5eb0772a1dfa922987"} -2023-12-15T14:47:03.177Z INFO initializing dbft {"height": 2091, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:03.178Z debug frostfs-node/morph.go:229 new block {"index": 2090} -2023-12-15T14:47:03.207Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2090, "blockHeight": 2090, "took": "3.09649ms"} -2023-12-15T14:47:04.177Z INFO sending PrepareRequest {"height": 2091, "view": 0} -2023-12-15T14:47:04.178Z INFO sending Commit {"height": 2091, "view": 0} -2023-12-15T14:47:04.178Z INFO approving block {"height": 2091, "hash": "3bfa9d95a8e31cbff34ad278acd90a070c7ac33106cca8fe61766425e061d6f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05833652ac8c95d4ba12152cfefa892a21375e8f4506f9027322e550ff9339f9"} -2023-12-15T14:47:04.179Z INFO initializing dbft {"height": 2092, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:04.179Z debug frostfs-node/morph.go:229 new block {"index": 2091} -2023-12-15T14:47:04.208Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2091, "blockHeight": 2091, "took": "3.136131ms"} -2023-12-15T14:47:05.179Z INFO sending PrepareRequest {"height": 2092, "view": 0} -2023-12-15T14:47:05.179Z INFO sending Commit {"height": 2092, "view": 0} -2023-12-15T14:47:05.179Z INFO approving block {"height": 2092, "hash": "b1796a0ba1861f51ce0b5a2a881e6f7c137d2b713a02d75605d39b746befeafd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bfa9d95a8e31cbff34ad278acd90a070c7ac33106cca8fe61766425e061d6f5"} -2023-12-15T14:47:05.180Z INFO initializing dbft {"height": 2093, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:05.181Z debug frostfs-node/morph.go:229 new block {"index": 2092} -2023-12-15T14:47:05.208Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2092, "blockHeight": 2092, "took": "2.969527ms"} -2023-12-15T14:47:06.180Z INFO sending PrepareRequest {"height": 2093, "view": 0} -2023-12-15T14:47:06.180Z INFO sending Commit {"height": 2093, "view": 0} -2023-12-15T14:47:06.181Z INFO approving block {"height": 2093, "hash": "0d6d9fb057b9f9f1489674680fe4c1b778f67b539b5e6989657c5bb5f85fde1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1796a0ba1861f51ce0b5a2a881e6f7c137d2b713a02d75605d39b746befeafd"} -2023-12-15T14:47:06.182Z INFO initializing dbft {"height": 2094, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:06.182Z debug frostfs-node/morph.go:229 new block {"index": 2093} -2023-12-15T14:47:06.208Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2093, "blockHeight": 2093, "took": "3.0975ms"} -2023-12-15T14:47:07.182Z INFO sending PrepareRequest {"height": 2094, "view": 0} -2023-12-15T14:47:07.182Z INFO sending Commit {"height": 2094, "view": 0} -2023-12-15T14:47:07.182Z INFO approving block {"height": 2094, "hash": "89c78877175ac430398836b9f0c9a5bab99f466dc683ca2aa0c410279fc43649", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d6d9fb057b9f9f1489674680fe4c1b778f67b539b5e6989657c5bb5f85fde1b"} -2023-12-15T14:47:07.183Z INFO initializing dbft {"height": 2095, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:07.183Z debug frostfs-node/morph.go:229 new block {"index": 2094} -2023-12-15T14:47:07.209Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2094, "blockHeight": 2094, "took": "3.033679ms"} -2023-12-15T14:47:08.183Z INFO sending PrepareRequest {"height": 2095, "view": 0} -2023-12-15T14:47:08.184Z INFO sending Commit {"height": 2095, "view": 0} -2023-12-15T14:47:08.184Z INFO approving block {"height": 2095, "hash": "4d5017f11e88ea8e9bed5b022512b398b27093378e25822b8b7573bc4f3f8b96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89c78877175ac430398836b9f0c9a5bab99f466dc683ca2aa0c410279fc43649"} -2023-12-15T14:47:08.185Z INFO initializing dbft {"height": 2096, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:08.185Z debug frostfs-node/morph.go:229 new block {"index": 2095} -2023-12-15T14:47:08.209Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2095, "blockHeight": 2095, "took": "2.916665ms"} -2023-12-15T14:47:09.185Z INFO sending PrepareRequest {"height": 2096, "view": 0} -2023-12-15T14:47:09.186Z INFO sending Commit {"height": 2096, "view": 0} -2023-12-15T14:47:09.186Z INFO approving block {"height": 2096, "hash": "0e623e05c96917a25e3ef3025294585c4adf4f3011ca981c1b83ac2379b798ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d5017f11e88ea8e9bed5b022512b398b27093378e25822b8b7573bc4f3f8b96"} -2023-12-15T14:47:09.187Z INFO initializing dbft {"height": 2097, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:09.188Z debug frostfs-node/morph.go:229 new block {"index": 2096} -2023-12-15T14:47:09.210Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2096, "blockHeight": 2096, "took": "3.002097ms"} -2023-12-15T14:47:10.187Z INFO sending PrepareRequest {"height": 2097, "view": 0} -2023-12-15T14:47:10.187Z INFO sending Commit {"height": 2097, "view": 0} -2023-12-15T14:47:10.187Z INFO approving block {"height": 2097, "hash": "3cdd5dabc9ac5b2fe01449cf97a7395c7e25c365e630933c56dc15f232440d4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e623e05c96917a25e3ef3025294585c4adf4f3011ca981c1b83ac2379b798ae"} -2023-12-15T14:47:10.188Z INFO initializing dbft {"height": 2098, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:10.189Z debug frostfs-node/morph.go:229 new block {"index": 2097} -2023-12-15T14:47:10.212Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2097, "blockHeight": 2097, "took": "4.209092ms"} -2023-12-15T14:47:11.188Z INFO sending PrepareRequest {"height": 2098, "view": 0} -2023-12-15T14:47:11.188Z INFO sending Commit {"height": 2098, "view": 0} -2023-12-15T14:47:11.188Z INFO approving block {"height": 2098, "hash": "ec75d8fe1a20399d250529a8990fef76dbd2c3174d97441626b2f1e6285daa15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cdd5dabc9ac5b2fe01449cf97a7395c7e25c365e630933c56dc15f232440d4a"} -2023-12-15T14:47:11.189Z INFO initializing dbft {"height": 2099, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:11.189Z debug frostfs-node/morph.go:229 new block {"index": 2098} -2023-12-15T14:47:11.213Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2098, "blockHeight": 2098, "took": "3.366089ms"} -2023-12-15T14:47:12.189Z INFO sending PrepareRequest {"height": 2099, "view": 0} -2023-12-15T14:47:12.189Z INFO sending Commit {"height": 2099, "view": 0} -2023-12-15T14:47:12.189Z INFO approving block {"height": 2099, "hash": "e28fc5b91757c84f0946e7cefd58377fc85063831290ab0e2c413100358841bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec75d8fe1a20399d250529a8990fef76dbd2c3174d97441626b2f1e6285daa15"} -2023-12-15T14:47:12.190Z INFO initializing dbft {"height": 2100, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:12.190Z debug frostfs-node/morph.go:229 new block {"index": 2099} -2023-12-15T14:47:12.213Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2099, "blockHeight": 2099, "took": "3.058266ms"} -2023-12-15T14:47:13.190Z INFO sending PrepareRequest {"height": 2100, "view": 0} -2023-12-15T14:47:13.190Z INFO sending Commit {"height": 2100, "view": 0} -2023-12-15T14:47:13.190Z INFO approving block {"height": 2100, "hash": "876bf38324f3b04f96852aa20c5db68de3ce9bd377649b9d3896113ca704f9bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e28fc5b91757c84f0946e7cefd58377fc85063831290ab0e2c413100358841bc"} -2023-12-15T14:47:13.191Z INFO initializing dbft {"height": 2101, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:13.192Z debug frostfs-node/morph.go:229 new block {"index": 2100} -2023-12-15T14:47:13.213Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2100, "blockHeight": 2100, "took": "2.953036ms"} -2023-12-15T14:47:14.192Z INFO sending PrepareRequest {"height": 2101, "view": 0} -2023-12-15T14:47:14.192Z INFO sending Commit {"height": 2101, "view": 0} -2023-12-15T14:47:14.193Z INFO approving block {"height": 2101, "hash": "fe80c30e723e338861efd7cabd1ca6cfa6d046c7dd407de500a906ac9265459d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "876bf38324f3b04f96852aa20c5db68de3ce9bd377649b9d3896113ca704f9bd"} -2023-12-15T14:47:14.194Z INFO initializing dbft {"height": 2102, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:14.195Z debug frostfs-node/morph.go:229 new block {"index": 2101} -2023-12-15T14:47:14.214Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2101, "blockHeight": 2101, "took": "3.019222ms"} -2023-12-15T14:47:15.194Z INFO sending PrepareRequest {"height": 2102, "view": 0} -2023-12-15T14:47:15.195Z INFO sending Commit {"height": 2102, "view": 0} -2023-12-15T14:47:15.195Z INFO approving block {"height": 2102, "hash": "a039257b63f992ffae97a5337ad51ae40c57f6798dcaa633b46cfa4d44f7a770", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe80c30e723e338861efd7cabd1ca6cfa6d046c7dd407de500a906ac9265459d"} -2023-12-15T14:47:15.196Z INFO initializing dbft {"height": 2103, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:15.197Z debug frostfs-node/morph.go:229 new block {"index": 2102} -2023-12-15T14:47:15.214Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2102, "blockHeight": 2102, "took": "2.93896ms"} -2023-12-15T14:47:16.196Z INFO sending PrepareRequest {"height": 2103, "view": 0} -2023-12-15T14:47:16.196Z INFO sending Commit {"height": 2103, "view": 0} -2023-12-15T14:47:16.196Z INFO approving block {"height": 2103, "hash": "bcfda5a4fc155cc4e1db26d96c3fbe80454a60f46e650383db78bad3591ab3fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a039257b63f992ffae97a5337ad51ae40c57f6798dcaa633b46cfa4d44f7a770"} -2023-12-15T14:47:16.197Z INFO initializing dbft {"height": 2104, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:16.198Z debug frostfs-node/morph.go:229 new block {"index": 2103} -2023-12-15T14:47:16.215Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2103, "blockHeight": 2103, "took": "3.257855ms"} -2023-12-15T14:47:17.197Z INFO sending PrepareRequest {"height": 2104, "view": 0} -2023-12-15T14:47:17.198Z INFO sending Commit {"height": 2104, "view": 0} -2023-12-15T14:47:17.198Z INFO approving block {"height": 2104, "hash": "4538849339719fed97dcf8aa058131a2507fc481914923c7209d57f443861bda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcfda5a4fc155cc4e1db26d96c3fbe80454a60f46e650383db78bad3591ab3fe"} -2023-12-15T14:47:17.199Z INFO initializing dbft {"height": 2105, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:17.199Z debug frostfs-node/morph.go:229 new block {"index": 2104} -2023-12-15T14:47:17.215Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2104, "blockHeight": 2104, "took": "2.830753ms"} -2023-12-15T14:47:18.198Z INFO sending PrepareRequest {"height": 2105, "view": 0} -2023-12-15T14:47:18.198Z INFO sending Commit {"height": 2105, "view": 0} -2023-12-15T14:47:18.199Z INFO approving block {"height": 2105, "hash": "d5fb049b6fe152a5c02f0fac100cf0acdcf42ff341b467f1931b5659cbffba6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4538849339719fed97dcf8aa058131a2507fc481914923c7209d57f443861bda"} -2023-12-15T14:47:18.199Z INFO initializing dbft {"height": 2106, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:18.200Z debug frostfs-node/morph.go:229 new block {"index": 2105} -2023-12-15T14:47:18.218Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2105, "blockHeight": 2105, "took": "4.302296ms"} -2023-12-15T14:47:19.200Z INFO sending PrepareRequest {"height": 2106, "view": 0} -2023-12-15T14:47:19.200Z INFO sending Commit {"height": 2106, "view": 0} -2023-12-15T14:47:19.200Z INFO approving block {"height": 2106, "hash": "5e400ec0372cafb3f2904e6614d6bb773768df922d5dd1ff0cbc1c75ca6571d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5fb049b6fe152a5c02f0fac100cf0acdcf42ff341b467f1931b5659cbffba6d"} -2023-12-15T14:47:19.201Z INFO initializing dbft {"height": 2107, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:19.201Z debug frostfs-node/morph.go:229 new block {"index": 2106} -2023-12-15T14:47:19.217Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2106, "blockHeight": 2106, "took": "3.121061ms"} -2023-12-15T14:47:20.201Z INFO sending PrepareRequest {"height": 2107, "view": 0} -2023-12-15T14:47:20.202Z INFO sending Commit {"height": 2107, "view": 0} -2023-12-15T14:47:20.202Z INFO approving block {"height": 2107, "hash": "c903847973a87ddffae6ccc8d21fec67d4de6ddeb7d8f003b7598178b3b9284d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e400ec0372cafb3f2904e6614d6bb773768df922d5dd1ff0cbc1c75ca6571d7"} -2023-12-15T14:47:20.203Z INFO initializing dbft {"height": 2108, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:20.204Z debug frostfs-node/morph.go:229 new block {"index": 2107} -2023-12-15T14:47:20.219Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2107, "blockHeight": 2107, "took": "4.400528ms"} -2023-12-15T14:47:21.203Z INFO sending PrepareRequest {"height": 2108, "view": 0} -2023-12-15T14:47:21.203Z INFO sending Commit {"height": 2108, "view": 0} -2023-12-15T14:47:21.203Z INFO approving block {"height": 2108, "hash": "f0ba5adcaf523682964c0935e93672850ae761cff57609ec3afa5c105e8c9132", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c903847973a87ddffae6ccc8d21fec67d4de6ddeb7d8f003b7598178b3b9284d"} -2023-12-15T14:47:21.204Z INFO initializing dbft {"height": 2109, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:21.204Z debug frostfs-node/morph.go:229 new block {"index": 2108} -2023-12-15T14:47:21.207Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 9, "iteration": 2, "error": "no data for 1 iteration in 9 epoch for consumers's trusts"} -2023-12-15T14:47:21.208Z info settlement/calls.go:106 start basic income distribution {"epoch": 9} -2023-12-15T14:47:21.218Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2108, "blockHeight": 2108, "took": "3.09768ms"} -2023-12-15T14:47:22.204Z INFO sending PrepareRequest {"height": 2109, "view": 0} -2023-12-15T14:47:22.204Z INFO sending Commit {"height": 2109, "view": 0} -2023-12-15T14:47:22.205Z INFO approving block {"height": 2109, "hash": "9d88b5095edc06a20aef052fcac5a79c319af1bf3a5b4ba59f77f7d66020c7ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0ba5adcaf523682964c0935e93672850ae761cff57609ec3afa5c105e8c9132"} -2023-12-15T14:47:22.205Z INFO initializing dbft {"height": 2110, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:22.206Z debug frostfs-node/morph.go:229 new block {"index": 2109} -2023-12-15T14:47:22.218Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2109, "blockHeight": 2109, "took": "3.014798ms"} -2023-12-15T14:47:23.206Z INFO sending PrepareRequest {"height": 2110, "view": 0} -2023-12-15T14:47:23.206Z INFO sending Commit {"height": 2110, "view": 0} -2023-12-15T14:47:23.206Z INFO approving block {"height": 2110, "hash": "58f1347372364442b30c8a18b8f0472fbb4d74931102d3c23a474dd5774da336", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d88b5095edc06a20aef052fcac5a79c319af1bf3a5b4ba59f77f7d66020c7ad"} -2023-12-15T14:47:23.207Z INFO initializing dbft {"height": 2111, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:23.208Z debug frostfs-node/morph.go:229 new block {"index": 2110} -2023-12-15T14:47:23.219Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2110, "blockHeight": 2110, "took": "3.190964ms"} -2023-12-15T14:47:24.207Z INFO sending PrepareRequest {"height": 2111, "view": 0} -2023-12-15T14:47:24.208Z INFO sending Commit {"height": 2111, "view": 0} -2023-12-15T14:47:24.208Z INFO approving block {"height": 2111, "hash": "ba91f2a9222d728c7be7791781474ac753ae9ab9e049e96c25a85e3107cc99d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58f1347372364442b30c8a18b8f0472fbb4d74931102d3c23a474dd5774da336"} -2023-12-15T14:47:24.209Z INFO initializing dbft {"height": 2112, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:24.210Z debug frostfs-node/morph.go:229 new block {"index": 2111} -2023-12-15T14:47:24.221Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2111, "blockHeight": 2111, "took": "4.18588ms"} -2023-12-15T14:47:25.209Z INFO sending PrepareRequest {"height": 2112, "view": 0} -2023-12-15T14:47:25.209Z INFO sending Commit {"height": 2112, "view": 0} -2023-12-15T14:47:25.209Z INFO approving block {"height": 2112, "hash": "0c2e9749e4dd209b4cc526ff971f979fa6fb0e4d53f7596a2e7e73ac641bbc71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba91f2a9222d728c7be7791781474ac753ae9ab9e049e96c25a85e3107cc99d4"} -2023-12-15T14:47:25.210Z INFO initializing dbft {"height": 2113, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:25.210Z debug frostfs-node/morph.go:229 new block {"index": 2112} -2023-12-15T14:47:25.220Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2112, "blockHeight": 2112, "took": "3.242106ms"} -2023-12-15T14:47:26.210Z INFO sending PrepareRequest {"height": 2113, "view": 0} -2023-12-15T14:47:26.211Z INFO sending Commit {"height": 2113, "view": 0} -2023-12-15T14:47:26.211Z INFO approving block {"height": 2113, "hash": "cf9e87133c6185ae68acf66c7904131fe828f07b6a04b175ace924abb2639e36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c2e9749e4dd209b4cc526ff971f979fa6fb0e4d53f7596a2e7e73ac641bbc71"} -2023-12-15T14:47:26.213Z INFO initializing dbft {"height": 2114, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:26.213Z debug frostfs-node/morph.go:229 new block {"index": 2113} -2023-12-15T14:47:26.222Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2113, "blockHeight": 2113, "took": "4.679113ms"} -2023-12-15T14:47:27.211Z INFO sending PrepareRequest {"height": 2114, "view": 0} -2023-12-15T14:47:27.212Z INFO sending Commit {"height": 2114, "view": 0} -2023-12-15T14:47:27.212Z INFO approving block {"height": 2114, "hash": "5d8e8761c06ce68820a1a31b4951550e5c18912a0d3480f7c4ce71d1be2083db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf9e87133c6185ae68acf66c7904131fe828f07b6a04b175ace924abb2639e36"} -2023-12-15T14:47:27.213Z INFO initializing dbft {"height": 2115, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:27.213Z debug frostfs-node/morph.go:229 new block {"index": 2114} -2023-12-15T14:47:27.221Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2114, "blockHeight": 2114, "took": "2.815712ms"} -2023-12-15T14:47:28.213Z INFO sending PrepareRequest {"height": 2115, "view": 0} -2023-12-15T14:47:28.213Z INFO sending Commit {"height": 2115, "view": 0} -2023-12-15T14:47:28.214Z INFO approving block {"height": 2115, "hash": "0cb69da51dca60a52a4beb2f631b2569fd939239e732bce36379c220614fc9b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d8e8761c06ce68820a1a31b4951550e5c18912a0d3480f7c4ce71d1be2083db"} -2023-12-15T14:47:28.214Z INFO initializing dbft {"height": 2116, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:28.215Z debug frostfs-node/morph.go:229 new block {"index": 2115} -2023-12-15T14:47:28.222Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2115, "blockHeight": 2115, "took": "2.964136ms"} -2023-12-15T14:47:29.215Z INFO sending PrepareRequest {"height": 2116, "view": 0} -2023-12-15T14:47:29.215Z INFO sending Commit {"height": 2116, "view": 0} -2023-12-15T14:47:29.215Z INFO approving block {"height": 2116, "hash": "b33d50498e24d5e9726d51e86208e717c4ce2bc4b6faf9f0120e33b388425176", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cb69da51dca60a52a4beb2f631b2569fd939239e732bce36379c220614fc9b4"} -2023-12-15T14:47:29.216Z INFO initializing dbft {"height": 2117, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:29.216Z debug frostfs-node/morph.go:229 new block {"index": 2116} -2023-12-15T14:47:29.224Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2116, "blockHeight": 2116, "took": "4.375079ms"} -2023-12-15T14:47:30.216Z INFO sending PrepareRequest {"height": 2117, "view": 0} -2023-12-15T14:47:30.216Z INFO sending Commit {"height": 2117, "view": 0} -2023-12-15T14:47:30.217Z INFO approving block {"height": 2117, "hash": "e43647924fa82d4fc213081be3526bf039ddf7069f7928c540dc09039f3db444", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b33d50498e24d5e9726d51e86208e717c4ce2bc4b6faf9f0120e33b388425176"} -2023-12-15T14:47:30.218Z INFO initializing dbft {"height": 2118, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:30.218Z debug frostfs-node/morph.go:229 new block {"index": 2117} -2023-12-15T14:47:30.220Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:47:30.221Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:47:30.221Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:47:30.224Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2117, "blockHeight": 2117, "took": "3.337238ms"} -2023-12-15T14:47:31.217Z INFO sending PrepareRequest {"height": 2118, "view": 0} -2023-12-15T14:47:31.217Z INFO sending Commit {"height": 2118, "view": 0} -2023-12-15T14:47:31.218Z INFO approving block {"height": 2118, "hash": "0f3c762877e7e442d87592692ac0cd57acd07d70aaf59b7e65368bb8b028e39b", "tx_count": 2, "merkle": "46d5882982b88f574a6c57b351ae0f7c9e8db579852e7f7defb2ebc977430989", "prev": "e43647924fa82d4fc213081be3526bf039ddf7069f7928c540dc09039f3db444"} -2023-12-15T14:47:31.218Z INFO runtime log {"tx": "b57d70bf123ed72195fb2c36c05e71b20ea6a7809cae12ad08eb23cfe51bfa46", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:47:31.218Z INFO runtime log {"tx": "b57d70bf123ed72195fb2c36c05e71b20ea6a7809cae12ad08eb23cfe51bfa46", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:47:31.219Z INFO initializing dbft {"height": 2119, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:31.220Z debug frostfs-node/morph.go:229 new block {"index": 2118} -2023-12-15T14:47:31.227Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2118, "blockHeight": 2118, "took": "6.003064ms"} -2023-12-15T14:47:32.219Z INFO sending PrepareRequest {"height": 2119, "view": 0} -2023-12-15T14:47:32.219Z INFO sending Commit {"height": 2119, "view": 0} -2023-12-15T14:47:32.219Z INFO approving block {"height": 2119, "hash": "ac2b4a5fd0b0ead37f50b619273e6de6de501c33a2667e7de8889272b1fb9f6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f3c762877e7e442d87592692ac0cd57acd07d70aaf59b7e65368bb8b028e39b"} -2023-12-15T14:47:32.220Z INFO initializing dbft {"height": 2120, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:32.220Z debug frostfs-node/morph.go:229 new block {"index": 2119} -2023-12-15T14:47:32.227Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2119, "blockHeight": 2119, "took": "4.652871ms"} -2023-12-15T14:47:33.221Z INFO sending PrepareRequest {"height": 2120, "view": 0} -2023-12-15T14:47:33.221Z INFO sending Commit {"height": 2120, "view": 0} -2023-12-15T14:47:33.221Z INFO approving block {"height": 2120, "hash": "4e9ebe2d39ea485b488f2f0f857f7f840752bf1c3c80fbcaed160b858aef3c7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac2b4a5fd0b0ead37f50b619273e6de6de501c33a2667e7de8889272b1fb9f6b"} -2023-12-15T14:47:33.222Z INFO initializing dbft {"height": 2121, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:33.223Z debug frostfs-node/morph.go:229 new block {"index": 2120} -2023-12-15T14:47:33.226Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2120, "blockHeight": 2120, "took": "3.455925ms"} -2023-12-15T14:47:34.222Z INFO sending PrepareRequest {"height": 2121, "view": 0} -2023-12-15T14:47:34.223Z INFO sending Commit {"height": 2121, "view": 0} -2023-12-15T14:47:34.223Z INFO approving block {"height": 2121, "hash": "e0b3dbc74f66f14f7a4d46340b2e1a66c7a6d0ad1094ba361a1c46dc2594a0d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e9ebe2d39ea485b488f2f0f857f7f840752bf1c3c80fbcaed160b858aef3c7f"} -2023-12-15T14:47:34.224Z INFO initializing dbft {"height": 2122, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:34.225Z debug frostfs-node/morph.go:229 new block {"index": 2121} -2023-12-15T14:47:35.224Z INFO sending PrepareRequest {"height": 2122, "view": 0} -2023-12-15T14:47:35.224Z INFO sending Commit {"height": 2122, "view": 0} -2023-12-15T14:47:35.225Z INFO approving block {"height": 2122, "hash": "1a85ebb6bc863056e08e2110806eb04c41d6ec04a0bbbc250df1edc44a4cf972", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0b3dbc74f66f14f7a4d46340b2e1a66c7a6d0ad1094ba361a1c46dc2594a0d7"} -2023-12-15T14:47:35.226Z INFO initializing dbft {"height": 2123, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:35.228Z debug frostfs-node/morph.go:229 new block {"index": 2122} -2023-12-15T14:47:35.232Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2121, "blockHeight": 2121, "took": "8.552876ms"} -2023-12-15T14:47:36.227Z INFO sending PrepareRequest {"height": 2123, "view": 0} -2023-12-15T14:47:36.228Z INFO sending Commit {"height": 2123, "view": 0} -2023-12-15T14:47:36.229Z INFO approving block {"height": 2123, "hash": "43e7fa0739a6605b3b970f6258876a1d1c92fe791789c766de444f08a9a67b4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a85ebb6bc863056e08e2110806eb04c41d6ec04a0bbbc250df1edc44a4cf972"} -2023-12-15T14:47:36.232Z INFO initializing dbft {"height": 2124, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:36.234Z debug frostfs-node/morph.go:229 new block {"index": 2123} -2023-12-15T14:47:36.242Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2122, "blockHeight": 2122, "took": "17.712464ms"} -2023-12-15T14:47:37.230Z INFO sending PrepareRequest {"height": 2124, "view": 0} -2023-12-15T14:47:37.230Z INFO sending Commit {"height": 2124, "view": 0} -2023-12-15T14:47:37.231Z INFO approving block {"height": 2124, "hash": "02dfa8e06a84a3225e9e83924f46ff3ca810022efcdf5c7c335e144c1081d06e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43e7fa0739a6605b3b970f6258876a1d1c92fe791789c766de444f08a9a67b4d"} -2023-12-15T14:47:37.232Z INFO initializing dbft {"height": 2125, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:37.234Z debug frostfs-node/morph.go:229 new block {"index": 2124} -2023-12-15T14:47:37.234Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2123, "blockHeight": 2123, "took": "8.036215ms"} -2023-12-15T14:47:38.233Z INFO sending PrepareRequest {"height": 2125, "view": 0} -2023-12-15T14:47:38.233Z INFO sending Commit {"height": 2125, "view": 0} -2023-12-15T14:47:38.234Z INFO approving block {"height": 2125, "hash": "fab9d33bbed3951b3f5037755787e7164e54d9a99505c0d59f7031eb4d5d6d0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02dfa8e06a84a3225e9e83924f46ff3ca810022efcdf5c7c335e144c1081d06e"} -2023-12-15T14:47:38.236Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2124, "blockHeight": 2124, "took": "9.279775ms"} -2023-12-15T14:47:38.236Z INFO initializing dbft {"height": 2126, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:38.237Z debug frostfs-node/morph.go:229 new block {"index": 2125} -2023-12-15T14:47:39.234Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2125, "blockHeight": 2125, "took": "6.670713ms"} -2023-12-15T14:47:39.235Z INFO sending PrepareRequest {"height": 2126, "view": 0} -2023-12-15T14:47:39.235Z INFO sending Commit {"height": 2126, "view": 0} -2023-12-15T14:47:39.236Z INFO approving block {"height": 2126, "hash": "fabe9c43411a94f3a83a44ac620feeb07c6e5a70cb09255e875138bc9ecb37db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fab9d33bbed3951b3f5037755787e7164e54d9a99505c0d59f7031eb4d5d6d0f"} -2023-12-15T14:47:39.237Z INFO initializing dbft {"height": 2127, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:39.238Z debug frostfs-node/morph.go:229 new block {"index": 2126} -2023-12-15T14:47:40.235Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2126, "blockHeight": 2126, "took": "6.064906ms"} -2023-12-15T14:47:40.237Z INFO sending PrepareRequest {"height": 2127, "view": 0} -2023-12-15T14:47:40.237Z INFO sending Commit {"height": 2127, "view": 0} -2023-12-15T14:47:40.238Z INFO approving block {"height": 2127, "hash": "a470be104c7dfb77c4bb4b6a44b7b4c728d73ee50a3e755eae2ae3d542951b42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fabe9c43411a94f3a83a44ac620feeb07c6e5a70cb09255e875138bc9ecb37db"} -2023-12-15T14:47:40.240Z INFO initializing dbft {"height": 2128, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:40.241Z debug frostfs-node/morph.go:229 new block {"index": 2127} -2023-12-15T14:47:41.235Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2127, "blockHeight": 2127, "took": "5.528023ms"} -2023-12-15T14:47:41.240Z INFO sending PrepareRequest {"height": 2128, "view": 0} -2023-12-15T14:47:41.240Z INFO sending Commit {"height": 2128, "view": 0} -2023-12-15T14:47:41.241Z INFO approving block {"height": 2128, "hash": "1a3e59e77f82d2f2ee7718eb84525ad7d235919b19c0199064cc719c4f4bbfb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a470be104c7dfb77c4bb4b6a44b7b4c728d73ee50a3e755eae2ae3d542951b42"} -2023-12-15T14:47:41.242Z INFO initializing dbft {"height": 2129, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:41.243Z debug frostfs-node/morph.go:229 new block {"index": 2128} -2023-12-15T14:47:42.235Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2128, "blockHeight": 2128, "took": "5.151241ms"} -2023-12-15T14:47:42.242Z INFO sending PrepareRequest {"height": 2129, "view": 0} -2023-12-15T14:47:42.243Z INFO sending Commit {"height": 2129, "view": 0} -2023-12-15T14:47:42.243Z INFO approving block {"height": 2129, "hash": "93983195e2eb253743c4fb88f595a50652789f8035beb2406abb337bf923e152", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a3e59e77f82d2f2ee7718eb84525ad7d235919b19c0199064cc719c4f4bbfb6"} -2023-12-15T14:47:42.245Z INFO initializing dbft {"height": 2130, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:42.246Z debug frostfs-node/morph.go:229 new block {"index": 2129} -2023-12-15T14:47:43.241Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2129, "blockHeight": 2129, "took": "10.454969ms"} -2023-12-15T14:47:43.245Z INFO sending PrepareRequest {"height": 2130, "view": 0} -2023-12-15T14:47:43.245Z INFO sending Commit {"height": 2130, "view": 0} -2023-12-15T14:47:43.246Z INFO approving block {"height": 2130, "hash": "1d02990c57cff5b2bf949d9bc06b4ea18a7be495148b5e9c41197efe5fa2cc24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93983195e2eb253743c4fb88f595a50652789f8035beb2406abb337bf923e152"} -2023-12-15T14:47:43.248Z INFO initializing dbft {"height": 2131, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:43.249Z debug frostfs-node/morph.go:229 new block {"index": 2130} -2023-12-15T14:47:44.239Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2130, "blockHeight": 2130, "took": "7.23291ms"} -2023-12-15T14:47:44.247Z INFO sending PrepareRequest {"height": 2131, "view": 0} -2023-12-15T14:47:44.248Z INFO sending Commit {"height": 2131, "view": 0} -2023-12-15T14:47:44.248Z INFO approving block {"height": 2131, "hash": "053e91ca08ba5cb897cce32e7814ff4c69a4be919fcd511d5c087e4ebd3db593", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d02990c57cff5b2bf949d9bc06b4ea18a7be495148b5e9c41197efe5fa2cc24"} -2023-12-15T14:47:44.250Z INFO initializing dbft {"height": 2132, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:44.252Z debug frostfs-node/morph.go:229 new block {"index": 2131} -2023-12-15T14:47:45.243Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2131, "blockHeight": 2131, "took": "10.775324ms"} -2023-12-15T14:47:45.250Z INFO sending PrepareRequest {"height": 2132, "view": 0} -2023-12-15T14:47:45.250Z INFO sending Commit {"height": 2132, "view": 0} -2023-12-15T14:47:45.251Z INFO approving block {"height": 2132, "hash": "4a494408625773593f45e4eac3f78ea18a3f13f527b3f25f0cb19cbf543056d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "053e91ca08ba5cb897cce32e7814ff4c69a4be919fcd511d5c087e4ebd3db593"} -2023-12-15T14:47:45.253Z INFO initializing dbft {"height": 2133, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:45.254Z debug frostfs-node/morph.go:229 new block {"index": 2132} -2023-12-15T14:47:46.243Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2132, "blockHeight": 2132, "took": "8.728704ms"} -2023-12-15T14:47:46.252Z INFO sending PrepareRequest {"height": 2133, "view": 0} -2023-12-15T14:47:46.252Z INFO sending Commit {"height": 2133, "view": 0} -2023-12-15T14:47:46.253Z INFO approving block {"height": 2133, "hash": "91ce3be164bfd75b1f3b909f3215696b185518f052d51bf83e2f9accad70263e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a494408625773593f45e4eac3f78ea18a3f13f527b3f25f0cb19cbf543056d2"} -2023-12-15T14:47:46.254Z INFO initializing dbft {"height": 2134, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:46.255Z debug frostfs-node/morph.go:229 new block {"index": 2133} -2023-12-15T14:47:47.240Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2133, "blockHeight": 2133, "took": "5.190722ms"} -2023-12-15T14:47:47.253Z INFO sending PrepareRequest {"height": 2134, "view": 0} -2023-12-15T14:47:47.254Z INFO sending Commit {"height": 2134, "view": 0} -2023-12-15T14:47:47.254Z INFO approving block {"height": 2134, "hash": "2b69407d8e82f13f09b92b932556202f3a5d0661264d8f8329e90b378a0924ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91ce3be164bfd75b1f3b909f3215696b185518f052d51bf83e2f9accad70263e"} -2023-12-15T14:47:47.255Z INFO initializing dbft {"height": 2135, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:47.256Z debug frostfs-node/morph.go:229 new block {"index": 2134} -2023-12-15T14:47:48.241Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2134, "blockHeight": 2134, "took": "5.386713ms"} -2023-12-15T14:47:48.255Z INFO sending PrepareRequest {"height": 2135, "view": 0} -2023-12-15T14:47:48.255Z INFO sending Commit {"height": 2135, "view": 0} -2023-12-15T14:47:48.256Z INFO approving block {"height": 2135, "hash": "761381e3fe47437401c0c07a50d8b12f051b55e59fc45609fec2af4e5a1a6403", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b69407d8e82f13f09b92b932556202f3a5d0661264d8f8329e90b378a0924ba"} -2023-12-15T14:47:48.257Z INFO initializing dbft {"height": 2136, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:48.258Z debug frostfs-node/morph.go:229 new block {"index": 2135} -2023-12-15T14:47:49.243Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2135, "blockHeight": 2135, "took": "7.246351ms"} -2023-12-15T14:47:49.257Z INFO sending PrepareRequest {"height": 2136, "view": 0} -2023-12-15T14:47:49.257Z INFO sending Commit {"height": 2136, "view": 0} -2023-12-15T14:47:49.257Z INFO approving block {"height": 2136, "hash": "2f30c01d418a5875dc2a3a1100ff88538dc258bfcc8a085fb76090a7ad45e8e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "761381e3fe47437401c0c07a50d8b12f051b55e59fc45609fec2af4e5a1a6403"} -2023-12-15T14:47:49.259Z INFO initializing dbft {"height": 2137, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:49.259Z debug frostfs-node/morph.go:229 new block {"index": 2136} -2023-12-15T14:47:50.243Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2136, "blockHeight": 2136, "took": "6.101118ms"} -2023-12-15T14:47:50.259Z INFO sending PrepareRequest {"height": 2137, "view": 0} -2023-12-15T14:47:50.259Z INFO sending Commit {"height": 2137, "view": 0} -2023-12-15T14:47:50.260Z INFO approving block {"height": 2137, "hash": "31385a8fef95a1320cf13e15840dbe15dd72581c4d29f1eafd606a3afce268a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f30c01d418a5875dc2a3a1100ff88538dc258bfcc8a085fb76090a7ad45e8e4"} -2023-12-15T14:47:50.261Z INFO initializing dbft {"height": 2138, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:50.262Z debug frostfs-node/morph.go:229 new block {"index": 2137} -2023-12-15T14:47:51.243Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2137, "blockHeight": 2137, "took": "5.365867ms"} -2023-12-15T14:47:51.261Z INFO sending PrepareRequest {"height": 2138, "view": 0} -2023-12-15T14:47:51.261Z INFO sending Commit {"height": 2138, "view": 0} -2023-12-15T14:47:51.261Z INFO approving block {"height": 2138, "hash": "75201de3ca5f67981cbea071c80f1b53e822acdb64cd5afe997f36e304944045", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31385a8fef95a1320cf13e15840dbe15dd72581c4d29f1eafd606a3afce268a2"} -2023-12-15T14:47:51.263Z INFO initializing dbft {"height": 2139, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:51.264Z debug frostfs-node/morph.go:229 new block {"index": 2138} -2023-12-15T14:47:52.246Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2138, "blockHeight": 2138, "took": "7.516629ms"} -2023-12-15T14:47:52.263Z INFO sending PrepareRequest {"height": 2139, "view": 0} -2023-12-15T14:47:52.263Z INFO sending Commit {"height": 2139, "view": 0} -2023-12-15T14:47:52.263Z INFO approving block {"height": 2139, "hash": "7b4feaf55194c07aa0b3d0605c54fd917734fc84816128d9e455fb64bab5d107", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75201de3ca5f67981cbea071c80f1b53e822acdb64cd5afe997f36e304944045"} -2023-12-15T14:47:52.265Z INFO initializing dbft {"height": 2140, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:52.266Z debug frostfs-node/morph.go:229 new block {"index": 2139} -2023-12-15T14:47:53.248Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2139, "blockHeight": 2139, "took": "8.246056ms"} -2023-12-15T14:47:53.265Z INFO sending PrepareRequest {"height": 2140, "view": 0} -2023-12-15T14:47:53.265Z INFO sending Commit {"height": 2140, "view": 0} -2023-12-15T14:47:53.266Z INFO approving block {"height": 2140, "hash": "fea364653b46d386a602dd95c917c883ab715c4633da06fd0fc3391bfbb3e10f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b4feaf55194c07aa0b3d0605c54fd917734fc84816128d9e455fb64bab5d107"} -2023-12-15T14:47:53.268Z INFO initializing dbft {"height": 2141, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:53.270Z debug frostfs-node/morph.go:229 new block {"index": 2140} -2023-12-15T14:47:54.247Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2140, "blockHeight": 2140, "took": "6.234336ms"} -2023-12-15T14:47:54.267Z INFO sending PrepareRequest {"height": 2141, "view": 0} -2023-12-15T14:47:54.268Z INFO sending Commit {"height": 2141, "view": 0} -2023-12-15T14:47:54.268Z INFO approving block {"height": 2141, "hash": "e2e8047e57d003163999df02db5a118758f8c2773e9eca865c2d94ea6c0f83e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fea364653b46d386a602dd95c917c883ab715c4633da06fd0fc3391bfbb3e10f"} -2023-12-15T14:47:54.269Z INFO initializing dbft {"height": 2142, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:54.270Z debug frostfs-node/morph.go:229 new block {"index": 2141} -2023-12-15T14:47:55.247Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2141, "blockHeight": 2141, "took": "6.452409ms"} -2023-12-15T14:47:55.269Z INFO sending PrepareRequest {"height": 2142, "view": 0} -2023-12-15T14:47:55.269Z INFO sending Commit {"height": 2142, "view": 0} -2023-12-15T14:47:55.270Z INFO approving block {"height": 2142, "hash": "9358a785921a423810eb4c48d1716c6c8c502fa0db12b8b839b26c3a4db8a1bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2e8047e57d003163999df02db5a118758f8c2773e9eca865c2d94ea6c0f83e3"} -2023-12-15T14:47:55.271Z INFO initializing dbft {"height": 2143, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:55.272Z debug frostfs-node/morph.go:229 new block {"index": 2142} -2023-12-15T14:47:56.248Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2142, "blockHeight": 2142, "took": "6.681755ms"} -2023-12-15T14:47:56.271Z INFO sending PrepareRequest {"height": 2143, "view": 0} -2023-12-15T14:47:56.271Z INFO sending Commit {"height": 2143, "view": 0} -2023-12-15T14:47:56.272Z INFO approving block {"height": 2143, "hash": "cfeb5d0a4e2f52498a93e88af6c56541bba9e0ec3fc12871e46411889cfe389d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9358a785921a423810eb4c48d1716c6c8c502fa0db12b8b839b26c3a4db8a1bb"} -2023-12-15T14:47:56.273Z INFO initializing dbft {"height": 2144, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:56.274Z debug frostfs-node/morph.go:229 new block {"index": 2143} -2023-12-15T14:47:57.249Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2143, "blockHeight": 2143, "took": "5.567412ms"} -2023-12-15T14:47:57.273Z INFO sending PrepareRequest {"height": 2144, "view": 0} -2023-12-15T14:47:57.274Z INFO sending Commit {"height": 2144, "view": 0} -2023-12-15T14:47:57.274Z INFO approving block {"height": 2144, "hash": "4ffcd5d859f2f38337912536d5388d832b58257aa3c2cdf6127b0c660ed1def0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfeb5d0a4e2f52498a93e88af6c56541bba9e0ec3fc12871e46411889cfe389d"} -2023-12-15T14:47:57.275Z INFO initializing dbft {"height": 2145, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:57.276Z debug frostfs-node/morph.go:229 new block {"index": 2144} -2023-12-15T14:47:58.250Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2144, "blockHeight": 2144, "took": "6.273867ms"} -2023-12-15T14:47:58.275Z INFO sending PrepareRequest {"height": 2145, "view": 0} -2023-12-15T14:47:58.276Z INFO sending Commit {"height": 2145, "view": 0} -2023-12-15T14:47:58.276Z INFO approving block {"height": 2145, "hash": "369cd60eb426c13cee70c036fbd194827c2a581cf7423cc3bf75a81c32dd3cd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ffcd5d859f2f38337912536d5388d832b58257aa3c2cdf6127b0c660ed1def0"} -2023-12-15T14:47:58.277Z INFO initializing dbft {"height": 2146, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:58.278Z debug frostfs-node/morph.go:229 new block {"index": 2145} -2023-12-15T14:47:59.250Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2145, "blockHeight": 2145, "took": "5.530281ms"} -2023-12-15T14:47:59.278Z INFO sending PrepareRequest {"height": 2146, "view": 0} -2023-12-15T14:47:59.278Z INFO sending Commit {"height": 2146, "view": 0} -2023-12-15T14:47:59.278Z INFO approving block {"height": 2146, "hash": "9c931a0e5e5fce5506aaf2b62bcff762d332b18416022e864be6d963eea5a7b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "369cd60eb426c13cee70c036fbd194827c2a581cf7423cc3bf75a81c32dd3cd6"} -2023-12-15T14:47:59.280Z INFO initializing dbft {"height": 2147, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:47:59.281Z debug frostfs-node/morph.go:229 new block {"index": 2146} -2023-12-15T14:48:00.252Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2146, "blockHeight": 2146, "took": "6.230424ms"} -2023-12-15T14:48:00.279Z INFO sending PrepareRequest {"height": 2147, "view": 0} -2023-12-15T14:48:00.280Z INFO sending Commit {"height": 2147, "view": 0} -2023-12-15T14:48:00.280Z INFO approving block {"height": 2147, "hash": "67e3722afc3f941500d367df73cedfd78afb1a693c03b5d9f5b665f27b7dbe4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c931a0e5e5fce5506aaf2b62bcff762d332b18416022e864be6d963eea5a7b8"} -2023-12-15T14:48:00.281Z INFO initializing dbft {"height": 2148, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:00.282Z debug frostfs-node/morph.go:229 new block {"index": 2147} -2023-12-15T14:48:01.252Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2147, "blockHeight": 2147, "took": "6.088917ms"} -2023-12-15T14:48:01.281Z INFO sending PrepareRequest {"height": 2148, "view": 0} -2023-12-15T14:48:01.282Z INFO sending Commit {"height": 2148, "view": 0} -2023-12-15T14:48:01.282Z INFO approving block {"height": 2148, "hash": "0b56d984c116582e8778a09e11ea3b7f977cbcac428c54e8399c236426a6663d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67e3722afc3f941500d367df73cedfd78afb1a693c03b5d9f5b665f27b7dbe4d"} -2023-12-15T14:48:01.284Z INFO initializing dbft {"height": 2149, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:01.286Z debug frostfs-node/morph.go:229 new block {"index": 2148} -2023-12-15T14:48:02.255Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2148, "blockHeight": 2148, "took": "7.510205ms"} -2023-12-15T14:48:02.283Z INFO sending PrepareRequest {"height": 2149, "view": 0} -2023-12-15T14:48:02.284Z INFO sending Commit {"height": 2149, "view": 0} -2023-12-15T14:48:02.284Z INFO approving block {"height": 2149, "hash": "7b12f7314d7304f3c17f29d6cf88b0ca6b42a3654a9cf00de107308a39b5b162", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b56d984c116582e8778a09e11ea3b7f977cbcac428c54e8399c236426a6663d"} -2023-12-15T14:48:02.286Z INFO initializing dbft {"height": 2150, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:02.287Z debug frostfs-node/morph.go:229 new block {"index": 2149} -2023-12-15T14:48:03.253Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2149, "blockHeight": 2149, "took": "5.43678ms"} -2023-12-15T14:48:03.286Z INFO sending PrepareRequest {"height": 2150, "view": 0} -2023-12-15T14:48:03.286Z INFO sending Commit {"height": 2150, "view": 0} -2023-12-15T14:48:03.286Z INFO approving block {"height": 2150, "hash": "94f41d684a063d61300e1ed40685f427d93b365df85a7fb1cf803a6ba8822dfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b12f7314d7304f3c17f29d6cf88b0ca6b42a3654a9cf00de107308a39b5b162"} -2023-12-15T14:48:03.288Z INFO initializing dbft {"height": 2151, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:03.289Z debug frostfs-node/morph.go:229 new block {"index": 2150} -2023-12-15T14:48:04.254Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2150, "blockHeight": 2150, "took": "5.461549ms"} -2023-12-15T14:48:04.288Z INFO sending PrepareRequest {"height": 2151, "view": 0} -2023-12-15T14:48:04.288Z INFO sending Commit {"height": 2151, "view": 0} -2023-12-15T14:48:04.289Z INFO approving block {"height": 2151, "hash": "4cf35cf3a2c43cb61eba704a8f01af078fb194dee13c09ef4c53113a0d792f4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94f41d684a063d61300e1ed40685f427d93b365df85a7fb1cf803a6ba8822dfd"} -2023-12-15T14:48:04.291Z INFO initializing dbft {"height": 2152, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:04.292Z debug frostfs-node/morph.go:229 new block {"index": 2151} -2023-12-15T14:48:05.255Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2151, "blockHeight": 2151, "took": "5.137529ms"} -2023-12-15T14:48:05.291Z INFO sending PrepareRequest {"height": 2152, "view": 0} -2023-12-15T14:48:05.291Z INFO sending Commit {"height": 2152, "view": 0} -2023-12-15T14:48:05.292Z INFO approving block {"height": 2152, "hash": "5031cc60c4a8a634e77c9d727b096819e92a2145360c7b4bd990bd79172df285", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cf35cf3a2c43cb61eba704a8f01af078fb194dee13c09ef4c53113a0d792f4b"} -2023-12-15T14:48:05.294Z INFO initializing dbft {"height": 2153, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:05.294Z debug frostfs-node/morph.go:229 new block {"index": 2152} -2023-12-15T14:48:06.256Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2152, "blockHeight": 2152, "took": "5.532042ms"} -2023-12-15T14:48:06.293Z INFO sending PrepareRequest {"height": 2153, "view": 0} -2023-12-15T14:48:06.294Z INFO sending Commit {"height": 2153, "view": 0} -2023-12-15T14:48:06.294Z INFO approving block {"height": 2153, "hash": "c94a8f27f538c7ac48e4f885611bee134fd9a9238742a56de2b2c8c30f0cf01d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5031cc60c4a8a634e77c9d727b096819e92a2145360c7b4bd990bd79172df285"} -2023-12-15T14:48:06.295Z INFO initializing dbft {"height": 2154, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:06.296Z debug frostfs-node/morph.go:229 new block {"index": 2153} -2023-12-15T14:48:07.257Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2153, "blockHeight": 2153, "took": "5.808719ms"} -2023-12-15T14:48:07.295Z INFO sending PrepareRequest {"height": 2154, "view": 0} -2023-12-15T14:48:07.295Z INFO sending Commit {"height": 2154, "view": 0} -2023-12-15T14:48:07.296Z INFO approving block {"height": 2154, "hash": "a4ee4ad99fb0c032a62b537c2637e3087600a903a06a3684df2ebe22a29babcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c94a8f27f538c7ac48e4f885611bee134fd9a9238742a56de2b2c8c30f0cf01d"} -2023-12-15T14:48:07.298Z INFO initializing dbft {"height": 2155, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:07.298Z debug frostfs-node/morph.go:229 new block {"index": 2154} -2023-12-15T14:48:08.257Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2154, "blockHeight": 2154, "took": "5.663785ms"} -2023-12-15T14:48:08.297Z INFO sending PrepareRequest {"height": 2155, "view": 0} -2023-12-15T14:48:08.297Z INFO sending Commit {"height": 2155, "view": 0} -2023-12-15T14:48:08.297Z INFO approving block {"height": 2155, "hash": "c25c610af1175ec5da30b288c92a3837702f593a8b11134a646d5cea0c7fd0de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4ee4ad99fb0c032a62b537c2637e3087600a903a06a3684df2ebe22a29babcf"} -2023-12-15T14:48:08.299Z INFO initializing dbft {"height": 2156, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:08.300Z debug frostfs-node/morph.go:229 new block {"index": 2155} -2023-12-15T14:48:09.257Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2155, "blockHeight": 2155, "took": "4.991569ms"} -2023-12-15T14:48:09.298Z INFO sending PrepareRequest {"height": 2156, "view": 0} -2023-12-15T14:48:09.299Z INFO sending Commit {"height": 2156, "view": 0} -2023-12-15T14:48:09.299Z INFO approving block {"height": 2156, "hash": "3732816e92188964b3ec173616075b3f1cd8d0fc09500cb9b8c1560763226f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c25c610af1175ec5da30b288c92a3837702f593a8b11134a646d5cea0c7fd0de"} -2023-12-15T14:48:09.301Z INFO initializing dbft {"height": 2157, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:09.302Z debug frostfs-node/morph.go:229 new block {"index": 2156} -2023-12-15T14:48:10.258Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2156, "blockHeight": 2156, "took": "4.804631ms"} -2023-12-15T14:48:10.300Z INFO sending PrepareRequest {"height": 2157, "view": 0} -2023-12-15T14:48:10.300Z INFO sending Commit {"height": 2157, "view": 0} -2023-12-15T14:48:10.301Z INFO approving block {"height": 2157, "hash": "42ba6c95db375cf000254b32af2a70b366785a1818e3e44085fe31e9694b48e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3732816e92188964b3ec173616075b3f1cd8d0fc09500cb9b8c1560763226f8b"} -2023-12-15T14:48:10.302Z INFO initializing dbft {"height": 2158, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:10.303Z debug frostfs-node/morph.go:229 new block {"index": 2157} -2023-12-15T14:48:11.261Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2157, "blockHeight": 2157, "took": "6.294715ms"} -2023-12-15T14:48:11.302Z INFO sending PrepareRequest {"height": 2158, "view": 0} -2023-12-15T14:48:11.302Z INFO sending Commit {"height": 2158, "view": 0} -2023-12-15T14:48:11.303Z INFO approving block {"height": 2158, "hash": "d97eb47e833c4bf0778edf31fff6794a52ee75003fb124fc1917e04fab40ac63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42ba6c95db375cf000254b32af2a70b366785a1818e3e44085fe31e9694b48e5"} -2023-12-15T14:48:11.304Z INFO initializing dbft {"height": 2159, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:11.305Z debug frostfs-node/morph.go:229 new block {"index": 2158} -2023-12-15T14:48:12.258Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2158, "blockHeight": 2158, "took": "2.854265ms"} -2023-12-15T14:48:12.304Z INFO sending PrepareRequest {"height": 2159, "view": 0} -2023-12-15T14:48:12.304Z INFO sending Commit {"height": 2159, "view": 0} -2023-12-15T14:48:12.304Z INFO approving block {"height": 2159, "hash": "90cc8ea85d4d708025cb0f9faf4225edea0ad940e0b02cd576a4ccb17b97bce1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d97eb47e833c4bf0778edf31fff6794a52ee75003fb124fc1917e04fab40ac63"} -2023-12-15T14:48:12.305Z INFO initializing dbft {"height": 2160, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:12.305Z debug frostfs-node/morph.go:229 new block {"index": 2159} -2023-12-15T14:48:13.260Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2159, "blockHeight": 2159, "took": "4.411539ms"} -2023-12-15T14:48:13.305Z INFO sending PrepareRequest {"height": 2160, "view": 0} -2023-12-15T14:48:13.305Z INFO sending Commit {"height": 2160, "view": 0} -2023-12-15T14:48:13.306Z INFO approving block {"height": 2160, "hash": "f929991fba1afc7debe888be0c6492f5cad9c81cc0004df6d56c493825cfb2ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90cc8ea85d4d708025cb0f9faf4225edea0ad940e0b02cd576a4ccb17b97bce1"} -2023-12-15T14:48:13.307Z INFO initializing dbft {"height": 2161, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:13.308Z debug frostfs-node/morph.go:229 new block {"index": 2160} -2023-12-15T14:48:14.261Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2160, "blockHeight": 2160, "took": "5.12264ms"} -2023-12-15T14:48:14.307Z INFO sending PrepareRequest {"height": 2161, "view": 0} -2023-12-15T14:48:14.307Z INFO sending Commit {"height": 2161, "view": 0} -2023-12-15T14:48:14.307Z INFO approving block {"height": 2161, "hash": "18981711f5529ca1116f6fcd5b46a85d173a6e2e9dc56b7f8d1f2b55acfdc11d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f929991fba1afc7debe888be0c6492f5cad9c81cc0004df6d56c493825cfb2ac"} -2023-12-15T14:48:14.308Z INFO initializing dbft {"height": 2162, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:14.309Z debug frostfs-node/morph.go:229 new block {"index": 2161} -2023-12-15T14:48:15.260Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2161, "blockHeight": 2161, "took": "2.967857ms"} -2023-12-15T14:48:15.308Z INFO sending PrepareRequest {"height": 2162, "view": 0} -2023-12-15T14:48:15.308Z INFO sending Commit {"height": 2162, "view": 0} -2023-12-15T14:48:15.309Z INFO approving block {"height": 2162, "hash": "61501807821a80ffc1ff800942af9c6e7df0ad505cfb04651ed1034b4d28a5df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18981711f5529ca1116f6fcd5b46a85d173a6e2e9dc56b7f8d1f2b55acfdc11d"} -2023-12-15T14:48:15.309Z INFO initializing dbft {"height": 2163, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:15.310Z debug frostfs-node/morph.go:229 new block {"index": 2162} -2023-12-15T14:48:16.260Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2162, "blockHeight": 2162, "took": "3.298177ms"} -2023-12-15T14:48:16.310Z INFO sending PrepareRequest {"height": 2163, "view": 0} -2023-12-15T14:48:16.310Z INFO sending Commit {"height": 2163, "view": 0} -2023-12-15T14:48:16.310Z INFO approving block {"height": 2163, "hash": "f1025db8c6551a0ba62345762553153772373f5af02f12b88ab9de7cdf02c008", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61501807821a80ffc1ff800942af9c6e7df0ad505cfb04651ed1034b4d28a5df"} -2023-12-15T14:48:16.311Z INFO initializing dbft {"height": 2164, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:16.311Z debug frostfs-node/morph.go:229 new block {"index": 2163} -2023-12-15T14:48:17.261Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2163, "blockHeight": 2163, "took": "3.255686ms"} -2023-12-15T14:48:17.311Z INFO sending PrepareRequest {"height": 2164, "view": 0} -2023-12-15T14:48:17.311Z INFO sending Commit {"height": 2164, "view": 0} -2023-12-15T14:48:17.311Z INFO approving block {"height": 2164, "hash": "26ed431e69856177ded455a2fa6a688ed9cf4f71efff86b7ca10f649e1028e3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1025db8c6551a0ba62345762553153772373f5af02f12b88ab9de7cdf02c008"} -2023-12-15T14:48:17.312Z INFO initializing dbft {"height": 2165, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:17.313Z debug frostfs-node/morph.go:229 new block {"index": 2164} -2023-12-15T14:48:18.262Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2164, "blockHeight": 2164, "took": "4.0777ms"} -2023-12-15T14:48:18.313Z INFO sending PrepareRequest {"height": 2165, "view": 0} -2023-12-15T14:48:18.313Z INFO sending Commit {"height": 2165, "view": 0} -2023-12-15T14:48:18.313Z INFO approving block {"height": 2165, "hash": "f113f1623d20df65e6b2f89bf775d2444fc8b5d5d14a0cff54882a1d36121881", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26ed431e69856177ded455a2fa6a688ed9cf4f71efff86b7ca10f649e1028e3b"} -2023-12-15T14:48:18.315Z INFO initializing dbft {"height": 2166, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:18.315Z debug frostfs-node/morph.go:229 new block {"index": 2165} -2023-12-15T14:48:19.262Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2165, "blockHeight": 2165, "took": "2.911765ms"} -2023-12-15T14:48:19.315Z INFO sending PrepareRequest {"height": 2166, "view": 0} -2023-12-15T14:48:19.315Z INFO sending Commit {"height": 2166, "view": 0} -2023-12-15T14:48:19.315Z INFO approving block {"height": 2166, "hash": "96716d5ba7c0ebfb809321bb1acfc3a7085602aa2b56ca7b86df7ea1d03321d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f113f1623d20df65e6b2f89bf775d2444fc8b5d5d14a0cff54882a1d36121881"} -2023-12-15T14:48:19.317Z INFO initializing dbft {"height": 2167, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:19.317Z debug frostfs-node/morph.go:229 new block {"index": 2166} -2023-12-15T14:48:20.263Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2166, "blockHeight": 2166, "took": "4.079848ms"} -2023-12-15T14:48:20.316Z INFO sending PrepareRequest {"height": 2167, "view": 0} -2023-12-15T14:48:20.316Z INFO sending Commit {"height": 2167, "view": 0} -2023-12-15T14:48:20.317Z INFO approving block {"height": 2167, "hash": "83b1fc72a73db552a59cf0d78fe7bc01fc7c08a285ee812e1eaea6bb02ce8a82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96716d5ba7c0ebfb809321bb1acfc3a7085602aa2b56ca7b86df7ea1d03321d1"} -2023-12-15T14:48:20.318Z INFO initializing dbft {"height": 2168, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:20.318Z debug frostfs-node/morph.go:229 new block {"index": 2167} -2023-12-15T14:48:20.321Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:48:20.324Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:48:20.324Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:48:21.263Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2167, "blockHeight": 2167, "took": "2.763641ms"} -2023-12-15T14:48:21.318Z INFO sending PrepareRequest {"height": 2168, "view": 0} -2023-12-15T14:48:21.318Z INFO sending Commit {"height": 2168, "view": 0} -2023-12-15T14:48:21.318Z INFO approving block {"height": 2168, "hash": "0df9b350a2a63700bd09aff5cf41cd087b5f2a483a68950c09023756bb36ab4f", "tx_count": 2, "merkle": "83bea321afeccc707f234f4cb20a56bc6cceb19ef6d96d45d228036e045fec95", "prev": "83b1fc72a73db552a59cf0d78fe7bc01fc7c08a285ee812e1eaea6bb02ce8a82"} -2023-12-15T14:48:21.319Z INFO runtime log {"tx": "3f0434458d260e1abf759f9e044755727e96e93d2458bda213846dc72a7c3205", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:48:21.319Z INFO runtime log {"tx": "3f0434458d260e1abf759f9e044755727e96e93d2458bda213846dc72a7c3205", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:48:21.321Z INFO initializing dbft {"height": 2169, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:21.322Z debug frostfs-node/morph.go:229 new block {"index": 2168} -2023-12-15T14:48:21.323Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:48:21.325Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 9, "iteration": 3, "error": "no data for 2 iteration in 9 epoch for consumers's trusts"} -2023-12-15T14:48:21.325Z INFO runtime log {"tx": "a0f8aad88a6d4f40b1bee0e4ed5f945fe200c3c4db326b662b44df6639d0cd0c", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:48:22.265Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2168, "blockHeight": 2168, "took": "3.391819ms"} -2023-12-15T14:48:22.319Z INFO sending PrepareRequest {"height": 2169, "view": 0} -2023-12-15T14:48:22.319Z INFO sending Commit {"height": 2169, "view": 0} -2023-12-15T14:48:22.319Z INFO approving block {"height": 2169, "hash": "79f96044044ba46fdc5fe2fa758dfc39c1e5ba2bd7f54e8093ada02872ebb837", "tx_count": 1, "merkle": "592cb746810708902a21c5a954d3511dfb20a601f869062ad7f337d8fd144724", "prev": "0df9b350a2a63700bd09aff5cf41cd087b5f2a483a68950c09023756bb36ab4f"} -2023-12-15T14:48:22.320Z INFO runtime log {"tx": "244714fdd837f3d72a0669f801a620fb1d51d354a9c5212a9008078146b72c59", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:48:22.321Z INFO initializing dbft {"height": 2170, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:22.322Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 11} -2023-12-15T14:48:22.322Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 11} -2023-12-15T14:48:22.322Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:48:22.322Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 11} -2023-12-15T14:48:22.322Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 11} -2023-12-15T14:48:22.322Z debug frostfs-node/morph.go:229 new block {"index": 2169} -2023-12-15T14:48:22.322Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 11} -2023-12-15T14:48:22.322Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:48:22.322Z debug controller/calls.go:95 starting to report local trust values {"epoch": 10} -2023-12-15T14:48:22.322Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 10} -2023-12-15T14:48:22.324Z debug controller/calls.go:146 reporting successfully finished {"epoch": 10} -2023-12-15T14:48:22.325Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 10} -2023-12-15T14:48:22.325Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:48:22.327Z INFO runtime log {"tx": "651e1e2606ed0bbf22d845b4352f58e58d6af21e450e49fc6fc50d684472f0c8", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:48:22.329Z info client/notary.go:214 notary deposit invoke {"amount": 2960648959, "expire_at": 4294967295, "vub": 2172, "tx_hash": "07d639bfb202879a38188d8762a22a2e91ae96f7b01805fe40c9070d77fc1383"} -2023-12-15T14:48:22.333Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:48:22.333Z info audit/handlers.go:13 new round of audit {"epoch": 11} -2023-12-15T14:48:22.333Z info settlement/calls.go:26 new audit settlement event {"epoch": 11} -2023-12-15T14:48:22.334Z info settlement/handlers.go:14 process audit settlements {"epoch": 11} -2023-12-15T14:48:22.334Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 11} -2023-12-15T14:48:22.335Z info settlement/handlers.go:18 audit processing finished {"epoch": 11} -2023-12-15T14:48:22.336Z info audit/process.go:39 select containers for audit {"epoch": 11, "amount": 0} -2023-12-15T14:48:22.338Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 2172, "tx_hash": "52a7fd8219e704d210e847e7af68d070c3d7e5c2e84940e3dbed2ce93f9e656e"} -2023-12-15T14:48:23.268Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 2169, "blockHeight": 2169, "took": "6.03974ms"} -2023-12-15T14:48:23.320Z INFO sending PrepareRequest {"height": 2170, "view": 0} -2023-12-15T14:48:23.320Z INFO sending Commit {"height": 2170, "view": 0} -2023-12-15T14:48:23.321Z INFO approving block {"height": 2170, "hash": "25be57f644eb15a289ab3a2a7cfb3d28819127317f3e26483178f32b47ee2137", "tx_count": 3, "merkle": "223a48bc213c4dd11f148206e33e2087ff134c6e4b2a63a01957e7bab22faf81", "prev": "79f96044044ba46fdc5fe2fa758dfc39c1e5ba2bd7f54e8093ada02872ebb837"} -2023-12-15T14:48:23.321Z INFO runtime log {"tx": "f1fb90d266ba55cea483213ffc7cbbad2f5ec6d4b793a4fc8d4685b15d400ae3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:48:23.323Z INFO initializing dbft {"height": 2171, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:23.323Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 10} -2023-12-15T14:48:23.323Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 10} -2023-12-15T14:48:23.323Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 10} -2023-12-15T14:48:23.324Z debug frostfs-node/morph.go:229 new block {"index": 2170} -2023-12-15T14:48:24.268Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 2170, "blockHeight": 2170, "took": "4.824131ms"} -2023-12-15T14:48:24.322Z INFO sending PrepareRequest {"height": 2171, "view": 0} -2023-12-15T14:48:24.322Z INFO sending Commit {"height": 2171, "view": 0} -2023-12-15T14:48:24.322Z INFO approving block {"height": 2171, "hash": "ed71bbc6e33494a021f580ff6b90e1de282d636407a65e9eae3b8bd3cc4a91f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25be57f644eb15a289ab3a2a7cfb3d28819127317f3e26483178f32b47ee2137"} -2023-12-15T14:48:24.323Z INFO initializing dbft {"height": 2172, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:24.324Z debug frostfs-node/morph.go:229 new block {"index": 2171} -2023-12-15T14:48:25.266Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2171, "blockHeight": 2171, "took": "3.06526ms"} -2023-12-15T14:48:25.323Z INFO sending PrepareRequest {"height": 2172, "view": 0} -2023-12-15T14:48:25.323Z INFO sending Commit {"height": 2172, "view": 0} -2023-12-15T14:48:25.323Z INFO approving block {"height": 2172, "hash": "00c50094c1f6a1fcbef2ff4984533a981eb5cb19b17c10d90a1f29d200d303e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed71bbc6e33494a021f580ff6b90e1de282d636407a65e9eae3b8bd3cc4a91f2"} -2023-12-15T14:48:25.324Z INFO initializing dbft {"height": 2173, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:25.325Z debug frostfs-node/morph.go:229 new block {"index": 2172} -2023-12-15T14:48:26.267Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2172, "blockHeight": 2172, "took": "3.41264ms"} -2023-12-15T14:48:26.324Z INFO sending PrepareRequest {"height": 2173, "view": 0} -2023-12-15T14:48:26.325Z INFO sending Commit {"height": 2173, "view": 0} -2023-12-15T14:48:26.325Z INFO approving block {"height": 2173, "hash": "85316f8356de8c7d0f4128ddb43362ea3e3d06e3cc66cae3fbba7e81a8631a65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00c50094c1f6a1fcbef2ff4984533a981eb5cb19b17c10d90a1f29d200d303e8"} -2023-12-15T14:48:26.326Z INFO initializing dbft {"height": 2174, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:26.326Z debug frostfs-node/morph.go:229 new block {"index": 2173} -2023-12-15T14:48:27.268Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2173, "blockHeight": 2173, "took": "3.933069ms"} -2023-12-15T14:48:27.326Z INFO sending PrepareRequest {"height": 2174, "view": 0} -2023-12-15T14:48:27.326Z INFO sending Commit {"height": 2174, "view": 0} -2023-12-15T14:48:27.326Z INFO approving block {"height": 2174, "hash": "bbda36b72c6f6fa89613fc6e75ca47d95edaeb236303b7dd4c833c8b20d72284", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85316f8356de8c7d0f4128ddb43362ea3e3d06e3cc66cae3fbba7e81a8631a65"} -2023-12-15T14:48:27.327Z INFO initializing dbft {"height": 2175, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:27.327Z debug frostfs-node/morph.go:229 new block {"index": 2174} -2023-12-15T14:48:28.269Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2174, "blockHeight": 2174, "took": "3.729069ms"} -2023-12-15T14:48:28.328Z INFO sending PrepareRequest {"height": 2175, "view": 0} -2023-12-15T14:48:28.328Z INFO sending Commit {"height": 2175, "view": 0} -2023-12-15T14:48:28.329Z INFO approving block {"height": 2175, "hash": "4f57c1ec4a02f5766f3dedf6f5bc883fafce1f640a15c5136b565e77944f1310", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbda36b72c6f6fa89613fc6e75ca47d95edaeb236303b7dd4c833c8b20d72284"} -2023-12-15T14:48:28.330Z INFO initializing dbft {"height": 2176, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:28.330Z debug frostfs-node/morph.go:229 new block {"index": 2175} -2023-12-15T14:48:29.270Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2175, "blockHeight": 2175, "took": "3.863876ms"} -2023-12-15T14:48:29.329Z INFO sending PrepareRequest {"height": 2176, "view": 0} -2023-12-15T14:48:29.329Z INFO sending Commit {"height": 2176, "view": 0} -2023-12-15T14:48:29.329Z INFO approving block {"height": 2176, "hash": "f62693380f78eb6c309e0c1c26d02bd7f1b231c10c939bd5dce9332d070b12fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f57c1ec4a02f5766f3dedf6f5bc883fafce1f640a15c5136b565e77944f1310"} -2023-12-15T14:48:29.331Z INFO initializing dbft {"height": 2177, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:29.332Z debug frostfs-node/morph.go:229 new block {"index": 2176} -2023-12-15T14:48:30.270Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2176, "blockHeight": 2176, "took": "3.057179ms"} -2023-12-15T14:48:30.331Z INFO sending PrepareRequest {"height": 2177, "view": 0} -2023-12-15T14:48:30.331Z INFO sending Commit {"height": 2177, "view": 0} -2023-12-15T14:48:30.331Z INFO approving block {"height": 2177, "hash": "124fe3db45d5cfe2e76aaf92896e043e6e1fe4babb0118e1da680907d28cbf17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f62693380f78eb6c309e0c1c26d02bd7f1b231c10c939bd5dce9332d070b12fc"} -2023-12-15T14:48:30.332Z INFO initializing dbft {"height": 2178, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:30.332Z debug frostfs-node/morph.go:229 new block {"index": 2177} -2023-12-15T14:48:31.271Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2177, "blockHeight": 2177, "took": "3.577474ms"} -2023-12-15T14:48:31.332Z INFO sending PrepareRequest {"height": 2178, "view": 0} -2023-12-15T14:48:31.332Z INFO sending Commit {"height": 2178, "view": 0} -2023-12-15T14:48:31.332Z INFO approving block {"height": 2178, "hash": "d1e8ee8aabfe428f4d0550d19df707eb6f21a3da46af082c01ad0ced5f184a13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "124fe3db45d5cfe2e76aaf92896e043e6e1fe4babb0118e1da680907d28cbf17"} -2023-12-15T14:48:31.334Z INFO initializing dbft {"height": 2179, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:31.334Z debug frostfs-node/morph.go:229 new block {"index": 2178} -2023-12-15T14:48:32.271Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2178, "blockHeight": 2178, "took": "2.971154ms"} -2023-12-15T14:48:32.333Z INFO sending PrepareRequest {"height": 2179, "view": 0} -2023-12-15T14:48:32.334Z INFO sending Commit {"height": 2179, "view": 0} -2023-12-15T14:48:32.334Z INFO approving block {"height": 2179, "hash": "8158c827d0a7ea3e5dae424eb07b3e68328833cd561f2fa4f810d5bcfe3c962a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1e8ee8aabfe428f4d0550d19df707eb6f21a3da46af082c01ad0ced5f184a13"} -2023-12-15T14:48:32.335Z INFO initializing dbft {"height": 2180, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:32.336Z debug frostfs-node/morph.go:229 new block {"index": 2179} -2023-12-15T14:48:33.272Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2179, "blockHeight": 2179, "took": "3.493816ms"} -2023-12-15T14:48:33.335Z INFO sending PrepareRequest {"height": 2180, "view": 0} -2023-12-15T14:48:33.335Z INFO sending Commit {"height": 2180, "view": 0} -2023-12-15T14:48:33.335Z INFO approving block {"height": 2180, "hash": "370a19731dcb4092e6ed5e401bb668153a3ae945777ee44adb29724a1682ec22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8158c827d0a7ea3e5dae424eb07b3e68328833cd561f2fa4f810d5bcfe3c962a"} -2023-12-15T14:48:33.336Z INFO initializing dbft {"height": 2181, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:33.337Z debug frostfs-node/morph.go:229 new block {"index": 2180} -2023-12-15T14:48:34.272Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2180, "blockHeight": 2180, "took": "3.457581ms"} -2023-12-15T14:48:34.336Z INFO sending PrepareRequest {"height": 2181, "view": 0} -2023-12-15T14:48:34.336Z INFO sending Commit {"height": 2181, "view": 0} -2023-12-15T14:48:34.337Z INFO approving block {"height": 2181, "hash": "0489e824ca0e18d19d2f49de7cfd0e83e1b0b7a0e6b1711cb1624648db8d86ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "370a19731dcb4092e6ed5e401bb668153a3ae945777ee44adb29724a1682ec22"} -2023-12-15T14:48:34.337Z INFO initializing dbft {"height": 2182, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:34.338Z debug frostfs-node/morph.go:229 new block {"index": 2181} -2023-12-15T14:48:35.272Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2181, "blockHeight": 2181, "took": "3.145301ms"} -2023-12-15T14:48:35.338Z INFO sending PrepareRequest {"height": 2182, "view": 0} -2023-12-15T14:48:35.338Z INFO sending Commit {"height": 2182, "view": 0} -2023-12-15T14:48:35.338Z INFO approving block {"height": 2182, "hash": "1e727f013e1387a4fc7b0355abbcf6233dd61712168b16c07ee54a23cf3cfec4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0489e824ca0e18d19d2f49de7cfd0e83e1b0b7a0e6b1711cb1624648db8d86ea"} -2023-12-15T14:48:35.339Z INFO initializing dbft {"height": 2183, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:35.339Z debug frostfs-node/morph.go:229 new block {"index": 2182} -2023-12-15T14:48:36.272Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2182, "blockHeight": 2182, "took": "2.952886ms"} -2023-12-15T14:48:36.339Z INFO sending PrepareRequest {"height": 2183, "view": 0} -2023-12-15T14:48:36.339Z INFO sending Commit {"height": 2183, "view": 0} -2023-12-15T14:48:36.340Z INFO approving block {"height": 2183, "hash": "9d6066321bafce5d8b4eb97da8004f9ff6a6f49cf928c9b23795070837aa7282", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e727f013e1387a4fc7b0355abbcf6233dd61712168b16c07ee54a23cf3cfec4"} -2023-12-15T14:48:36.340Z INFO initializing dbft {"height": 2184, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:36.341Z debug frostfs-node/morph.go:229 new block {"index": 2183} -2023-12-15T14:48:37.273Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2183, "blockHeight": 2183, "took": "3.208151ms"} -2023-12-15T14:48:37.341Z INFO sending PrepareRequest {"height": 2184, "view": 0} -2023-12-15T14:48:37.341Z INFO sending Commit {"height": 2184, "view": 0} -2023-12-15T14:48:37.341Z INFO approving block {"height": 2184, "hash": "f194d33ca6592e17a1df723801b5c5a4e8f8751d9a73b43498f8eb9381dd822b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d6066321bafce5d8b4eb97da8004f9ff6a6f49cf928c9b23795070837aa7282"} -2023-12-15T14:48:37.342Z INFO initializing dbft {"height": 2185, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:37.342Z debug frostfs-node/morph.go:229 new block {"index": 2184} -2023-12-15T14:48:38.274Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2184, "blockHeight": 2184, "took": "3.43682ms"} -2023-12-15T14:48:38.342Z INFO sending PrepareRequest {"height": 2185, "view": 0} -2023-12-15T14:48:38.343Z INFO sending Commit {"height": 2185, "view": 0} -2023-12-15T14:48:38.343Z INFO approving block {"height": 2185, "hash": "26c0d4bd365638fe93fa197a8cdc4d01f0fdd59794d72b1721d6e38331e1f989", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f194d33ca6592e17a1df723801b5c5a4e8f8751d9a73b43498f8eb9381dd822b"} -2023-12-15T14:48:38.344Z INFO initializing dbft {"height": 2186, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:38.345Z debug frostfs-node/morph.go:229 new block {"index": 2185} -2023-12-15T14:48:39.274Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2185, "blockHeight": 2185, "took": "3.279116ms"} -2023-12-15T14:48:39.343Z INFO sending PrepareRequest {"height": 2186, "view": 0} -2023-12-15T14:48:39.344Z INFO sending Commit {"height": 2186, "view": 0} -2023-12-15T14:48:39.344Z INFO approving block {"height": 2186, "hash": "717234b5ed0609ff1a02d408b1919eebd110d6320ba09752ed098157f4cf2af5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26c0d4bd365638fe93fa197a8cdc4d01f0fdd59794d72b1721d6e38331e1f989"} -2023-12-15T14:48:39.344Z INFO initializing dbft {"height": 2187, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:39.345Z debug frostfs-node/morph.go:229 new block {"index": 2186} -2023-12-15T14:48:40.275Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2186, "blockHeight": 2186, "took": "2.787381ms"} -2023-12-15T14:48:40.345Z INFO sending PrepareRequest {"height": 2187, "view": 0} -2023-12-15T14:48:40.345Z INFO sending Commit {"height": 2187, "view": 0} -2023-12-15T14:48:40.345Z INFO approving block {"height": 2187, "hash": "dab838359ad875b64b0d3fb260994505495cbcccf6942c3262e682eb7b230ad6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "717234b5ed0609ff1a02d408b1919eebd110d6320ba09752ed098157f4cf2af5"} -2023-12-15T14:48:40.346Z INFO initializing dbft {"height": 2188, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:40.346Z debug frostfs-node/morph.go:229 new block {"index": 2187} -2023-12-15T14:48:41.277Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2187, "blockHeight": 2187, "took": "3.907918ms"} -2023-12-15T14:48:41.345Z INFO sending PrepareRequest {"height": 2188, "view": 0} -2023-12-15T14:48:41.346Z INFO sending Commit {"height": 2188, "view": 0} -2023-12-15T14:48:41.346Z INFO approving block {"height": 2188, "hash": "3aa1ee488271fc7c98c54a5c0168e49623f9cfa2f2bcd17ce80795b075d5a6e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dab838359ad875b64b0d3fb260994505495cbcccf6942c3262e682eb7b230ad6"} -2023-12-15T14:48:41.347Z INFO initializing dbft {"height": 2189, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:41.348Z debug frostfs-node/morph.go:229 new block {"index": 2188} -2023-12-15T14:48:42.279Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2188, "blockHeight": 2188, "took": "5.629344ms"} -2023-12-15T14:48:42.347Z INFO sending PrepareRequest {"height": 2189, "view": 0} -2023-12-15T14:48:42.347Z INFO sending Commit {"height": 2189, "view": 0} -2023-12-15T14:48:42.347Z INFO approving block {"height": 2189, "hash": "f799379ca1a5ed521915fa0b00523ad801a2cf813ced9d5e213a49d433e543da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3aa1ee488271fc7c98c54a5c0168e49623f9cfa2f2bcd17ce80795b075d5a6e2"} -2023-12-15T14:48:42.348Z INFO initializing dbft {"height": 2190, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:42.348Z debug frostfs-node/morph.go:229 new block {"index": 2189} -2023-12-15T14:48:43.279Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2189, "blockHeight": 2189, "took": "5.263834ms"} -2023-12-15T14:48:43.349Z INFO sending PrepareRequest {"height": 2190, "view": 0} -2023-12-15T14:48:43.349Z INFO sending Commit {"height": 2190, "view": 0} -2023-12-15T14:48:43.349Z INFO approving block {"height": 2190, "hash": "b8dec8d389c31b6224881b04ee5082b85955176ae90f7e789304844175c7ef78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f799379ca1a5ed521915fa0b00523ad801a2cf813ced9d5e213a49d433e543da"} -2023-12-15T14:48:43.350Z INFO initializing dbft {"height": 2191, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:43.351Z debug frostfs-node/morph.go:229 new block {"index": 2190} -2023-12-15T14:48:44.279Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2190, "blockHeight": 2190, "took": "4.585675ms"} -2023-12-15T14:48:44.350Z INFO sending PrepareRequest {"height": 2191, "view": 0} -2023-12-15T14:48:44.350Z INFO sending Commit {"height": 2191, "view": 0} -2023-12-15T14:48:44.350Z INFO approving block {"height": 2191, "hash": "841e1c4d31b08842fb34aad90a50f05da11b188d00b9507446a6fbb40e217e7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8dec8d389c31b6224881b04ee5082b85955176ae90f7e789304844175c7ef78"} -2023-12-15T14:48:44.351Z INFO initializing dbft {"height": 2192, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:44.352Z debug frostfs-node/morph.go:229 new block {"index": 2191} -2023-12-15T14:48:45.278Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2191, "blockHeight": 2191, "took": "3.300272ms"} -2023-12-15T14:48:45.351Z INFO sending PrepareRequest {"height": 2192, "view": 0} -2023-12-15T14:48:45.352Z INFO sending Commit {"height": 2192, "view": 0} -2023-12-15T14:48:45.352Z INFO approving block {"height": 2192, "hash": "dc2bd272c2eac366d67ba8566f7cd5ad72597c0194b072ab046899b2d584838e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "841e1c4d31b08842fb34aad90a50f05da11b188d00b9507446a6fbb40e217e7d"} -2023-12-15T14:48:45.353Z INFO initializing dbft {"height": 2193, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:45.353Z debug frostfs-node/morph.go:229 new block {"index": 2192} -2023-12-15T14:48:46.278Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2192, "blockHeight": 2192, "took": "3.014279ms"} -2023-12-15T14:48:46.353Z INFO sending PrepareRequest {"height": 2193, "view": 0} -2023-12-15T14:48:46.353Z INFO sending Commit {"height": 2193, "view": 0} -2023-12-15T14:48:46.354Z INFO approving block {"height": 2193, "hash": "f6b14246e898313373dcbdfcb1e2c21e6aa470ef9161994c79cdaf691e0726ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc2bd272c2eac366d67ba8566f7cd5ad72597c0194b072ab046899b2d584838e"} -2023-12-15T14:48:46.355Z INFO initializing dbft {"height": 2194, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:46.356Z debug frostfs-node/morph.go:229 new block {"index": 2193} -2023-12-15T14:48:47.282Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2193, "blockHeight": 2193, "took": "5.979234ms"} -2023-12-15T14:48:47.355Z INFO sending PrepareRequest {"height": 2194, "view": 0} -2023-12-15T14:48:47.355Z INFO sending Commit {"height": 2194, "view": 0} -2023-12-15T14:48:47.356Z INFO approving block {"height": 2194, "hash": "30e9b57ce6cfae1099782c58bc5df27802402dafa4c6d2ecd20ebf668cd5dfc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6b14246e898313373dcbdfcb1e2c21e6aa470ef9161994c79cdaf691e0726ef"} -2023-12-15T14:48:47.357Z INFO initializing dbft {"height": 2195, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:47.358Z debug frostfs-node/morph.go:229 new block {"index": 2194} -2023-12-15T14:48:48.282Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2194, "blockHeight": 2194, "took": "5.772079ms"} -2023-12-15T14:48:48.356Z INFO sending PrepareRequest {"height": 2195, "view": 0} -2023-12-15T14:48:48.357Z INFO sending Commit {"height": 2195, "view": 0} -2023-12-15T14:48:48.357Z INFO approving block {"height": 2195, "hash": "2b65a4c4ee8c4d2d61827e4196ae903ceaeaa8d2a3668e08771530bbd603598b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30e9b57ce6cfae1099782c58bc5df27802402dafa4c6d2ecd20ebf668cd5dfc4"} -2023-12-15T14:48:48.358Z INFO initializing dbft {"height": 2196, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:48.359Z debug frostfs-node/morph.go:229 new block {"index": 2195} -2023-12-15T14:48:49.280Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2195, "blockHeight": 2195, "took": "3.137881ms"} -2023-12-15T14:48:49.358Z INFO sending PrepareRequest {"height": 2196, "view": 0} -2023-12-15T14:48:49.358Z INFO sending Commit {"height": 2196, "view": 0} -2023-12-15T14:48:49.358Z INFO approving block {"height": 2196, "hash": "ffd8646b2472937c0ba08e94572bb6dcf96f0dfa82ad296d96d119cd30598754", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b65a4c4ee8c4d2d61827e4196ae903ceaeaa8d2a3668e08771530bbd603598b"} -2023-12-15T14:48:49.359Z INFO initializing dbft {"height": 2197, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:49.360Z debug frostfs-node/morph.go:229 new block {"index": 2196} -2023-12-15T14:48:50.282Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2196, "blockHeight": 2196, "took": "4.496101ms"} -2023-12-15T14:48:50.360Z INFO sending PrepareRequest {"height": 2197, "view": 0} -2023-12-15T14:48:50.360Z INFO sending Commit {"height": 2197, "view": 0} -2023-12-15T14:48:50.360Z INFO approving block {"height": 2197, "hash": "b799d0bfaf17f9a16c9218a1c00b7bbfe6be24519517c2ee7783f576dfa78b54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffd8646b2472937c0ba08e94572bb6dcf96f0dfa82ad296d96d119cd30598754"} -2023-12-15T14:48:50.362Z INFO initializing dbft {"height": 2198, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:50.362Z debug frostfs-node/morph.go:229 new block {"index": 2197} -2023-12-15T14:48:51.288Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2197, "blockHeight": 2197, "took": "9.165269ms"} -2023-12-15T14:48:51.361Z INFO sending PrepareRequest {"height": 2198, "view": 0} -2023-12-15T14:48:51.361Z INFO sending Commit {"height": 2198, "view": 0} -2023-12-15T14:48:51.362Z INFO approving block {"height": 2198, "hash": "b2350c168a630d29cdff889acbff2fa14b15d22ecfb7e80aa85eabbd9b99e83f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b799d0bfaf17f9a16c9218a1c00b7bbfe6be24519517c2ee7783f576dfa78b54"} -2023-12-15T14:48:51.363Z INFO initializing dbft {"height": 2199, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:51.363Z debug frostfs-node/morph.go:229 new block {"index": 2198} -2023-12-15T14:48:52.283Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2198, "blockHeight": 2198, "took": "3.989767ms"} -2023-12-15T14:48:52.363Z INFO sending PrepareRequest {"height": 2199, "view": 0} -2023-12-15T14:48:52.363Z INFO sending Commit {"height": 2199, "view": 0} -2023-12-15T14:48:52.364Z INFO approving block {"height": 2199, "hash": "3089d22181cf0870bfddbf3023c00adc8f94e9d11f963cfa07843a5ce54dd69e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2350c168a630d29cdff889acbff2fa14b15d22ecfb7e80aa85eabbd9b99e83f"} -2023-12-15T14:48:52.365Z INFO initializing dbft {"height": 2200, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:52.365Z debug frostfs-node/morph.go:229 new block {"index": 2199} -2023-12-15T14:48:53.287Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2199, "blockHeight": 2199, "took": "6.76814ms"} -2023-12-15T14:48:53.365Z INFO sending PrepareRequest {"height": 2200, "view": 0} -2023-12-15T14:48:53.365Z INFO sending Commit {"height": 2200, "view": 0} -2023-12-15T14:48:53.365Z INFO approving block {"height": 2200, "hash": "1e70a8b836bdb9e04ec25a7ca6f77c52886b3a72676cbb2f6ae499c2ceffb429", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3089d22181cf0870bfddbf3023c00adc8f94e9d11f963cfa07843a5ce54dd69e"} -2023-12-15T14:48:53.366Z INFO initializing dbft {"height": 2201, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:53.366Z debug frostfs-node/morph.go:229 new block {"index": 2200} -2023-12-15T14:48:54.285Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2200, "blockHeight": 2200, "took": "4.388538ms"} -2023-12-15T14:48:54.366Z INFO sending PrepareRequest {"height": 2201, "view": 0} -2023-12-15T14:48:54.367Z INFO sending Commit {"height": 2201, "view": 0} -2023-12-15T14:48:54.367Z INFO approving block {"height": 2201, "hash": "0fda7066192a55dcd39698294fbae8c625b8f28dd38976b1078870fc94ebc7b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e70a8b836bdb9e04ec25a7ca6f77c52886b3a72676cbb2f6ae499c2ceffb429"} -2023-12-15T14:48:54.368Z INFO initializing dbft {"height": 2202, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:54.369Z debug frostfs-node/morph.go:229 new block {"index": 2201} -2023-12-15T14:48:55.284Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2201, "blockHeight": 2201, "took": "2.962037ms"} -2023-12-15T14:48:55.368Z INFO sending PrepareRequest {"height": 2202, "view": 0} -2023-12-15T14:48:55.368Z INFO sending Commit {"height": 2202, "view": 0} -2023-12-15T14:48:55.368Z INFO approving block {"height": 2202, "hash": "b4d42b50efc2ab5dec70e4c40220527162875460ea4553f0d8d860eb736015dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fda7066192a55dcd39698294fbae8c625b8f28dd38976b1078870fc94ebc7b4"} -2023-12-15T14:48:55.370Z INFO initializing dbft {"height": 2203, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:55.370Z debug frostfs-node/morph.go:229 new block {"index": 2202} -2023-12-15T14:48:56.290Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2202, "blockHeight": 2202, "took": "7.936671ms"} -2023-12-15T14:48:56.369Z INFO sending PrepareRequest {"height": 2203, "view": 0} -2023-12-15T14:48:56.370Z INFO sending Commit {"height": 2203, "view": 0} -2023-12-15T14:48:56.370Z INFO approving block {"height": 2203, "hash": "b715eedb7639bbee64469c6d9fadf49db49d3385f1abc7ef6e22562dbd36f1d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4d42b50efc2ab5dec70e4c40220527162875460ea4553f0d8d860eb736015dc"} -2023-12-15T14:48:56.372Z INFO initializing dbft {"height": 2204, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:56.373Z debug frostfs-node/morph.go:229 new block {"index": 2203} -2023-12-15T14:48:57.291Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2203, "blockHeight": 2203, "took": "7.55295ms"} -2023-12-15T14:48:57.371Z INFO sending PrepareRequest {"height": 2204, "view": 0} -2023-12-15T14:48:57.372Z INFO sending Commit {"height": 2204, "view": 0} -2023-12-15T14:48:57.372Z INFO approving block {"height": 2204, "hash": "daa46586822d921256c63c2918fa68e750b93419da840358f9ef7feb885dd79e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b715eedb7639bbee64469c6d9fadf49db49d3385f1abc7ef6e22562dbd36f1d4"} -2023-12-15T14:48:57.373Z INFO initializing dbft {"height": 2205, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:57.374Z debug frostfs-node/morph.go:229 new block {"index": 2204} -2023-12-15T14:48:58.288Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2204, "blockHeight": 2204, "took": "3.747639ms"} -2023-12-15T14:48:58.372Z INFO sending PrepareRequest {"height": 2205, "view": 0} -2023-12-15T14:48:58.373Z INFO sending Commit {"height": 2205, "view": 0} -2023-12-15T14:48:58.373Z INFO approving block {"height": 2205, "hash": "0e884705480c656f086fad03651615301f139880f485844e5e0ca13120081ce3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "daa46586822d921256c63c2918fa68e750b93419da840358f9ef7feb885dd79e"} -2023-12-15T14:48:58.374Z INFO initializing dbft {"height": 2206, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:58.374Z debug frostfs-node/morph.go:229 new block {"index": 2205} -2023-12-15T14:48:59.289Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2205, "blockHeight": 2205, "took": "4.269211ms"} -2023-12-15T14:48:59.374Z INFO sending PrepareRequest {"height": 2206, "view": 0} -2023-12-15T14:48:59.374Z INFO sending Commit {"height": 2206, "view": 0} -2023-12-15T14:48:59.374Z INFO approving block {"height": 2206, "hash": "0bbb752537420a38b99080c555edbbde5e75fb102433f58f677742081e58c8c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e884705480c656f086fad03651615301f139880f485844e5e0ca13120081ce3"} -2023-12-15T14:48:59.376Z INFO initializing dbft {"height": 2207, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:48:59.376Z debug frostfs-node/morph.go:229 new block {"index": 2206} -2023-12-15T14:49:00.289Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2206, "blockHeight": 2206, "took": "4.093856ms"} -2023-12-15T14:49:00.376Z INFO sending PrepareRequest {"height": 2207, "view": 0} -2023-12-15T14:49:00.376Z INFO sending Commit {"height": 2207, "view": 0} -2023-12-15T14:49:00.376Z INFO approving block {"height": 2207, "hash": "29e84cd94b23b6d1e2c136b25327d54683a7ae45037a4f43127686c84993bce4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bbb752537420a38b99080c555edbbde5e75fb102433f58f677742081e58c8c9"} -2023-12-15T14:49:00.377Z INFO initializing dbft {"height": 2208, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:00.378Z debug frostfs-node/morph.go:229 new block {"index": 2207} -2023-12-15T14:49:01.289Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2207, "blockHeight": 2207, "took": "3.855979ms"} -2023-12-15T14:49:01.377Z INFO sending PrepareRequest {"height": 2208, "view": 0} -2023-12-15T14:49:01.377Z INFO sending Commit {"height": 2208, "view": 0} -2023-12-15T14:49:01.377Z INFO approving block {"height": 2208, "hash": "29e65334c3f377c2e36a5d6ae74cdda51bf1cfc4670a83de2055f16097959e2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29e84cd94b23b6d1e2c136b25327d54683a7ae45037a4f43127686c84993bce4"} -2023-12-15T14:49:01.379Z INFO initializing dbft {"height": 2209, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:01.379Z debug frostfs-node/morph.go:229 new block {"index": 2208} -2023-12-15T14:49:02.292Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2208, "blockHeight": 2208, "took": "5.769047ms"} -2023-12-15T14:49:02.379Z INFO sending PrepareRequest {"height": 2209, "view": 0} -2023-12-15T14:49:02.379Z INFO sending Commit {"height": 2209, "view": 0} -2023-12-15T14:49:02.379Z INFO approving block {"height": 2209, "hash": "36d56bf16e8fc604afcaa3987b33afa739fc3903235f53221da915a3983df429", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29e65334c3f377c2e36a5d6ae74cdda51bf1cfc4670a83de2055f16097959e2e"} -2023-12-15T14:49:02.380Z INFO initializing dbft {"height": 2210, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:02.381Z debug frostfs-node/morph.go:229 new block {"index": 2209} -2023-12-15T14:49:03.291Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2209, "blockHeight": 2209, "took": "4.241864ms"} -2023-12-15T14:49:03.380Z INFO sending PrepareRequest {"height": 2210, "view": 0} -2023-12-15T14:49:03.381Z INFO sending Commit {"height": 2210, "view": 0} -2023-12-15T14:49:03.381Z INFO approving block {"height": 2210, "hash": "f344e0884c2523f0678cf2d25358bd644e623b469a2c08b5634fc4b91689fae8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36d56bf16e8fc604afcaa3987b33afa739fc3903235f53221da915a3983df429"} -2023-12-15T14:49:03.382Z INFO initializing dbft {"height": 2211, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:03.382Z debug frostfs-node/morph.go:229 new block {"index": 2210} -2023-12-15T14:49:04.292Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2210, "blockHeight": 2210, "took": "4.372874ms"} -2023-12-15T14:49:04.382Z INFO sending PrepareRequest {"height": 2211, "view": 0} -2023-12-15T14:49:04.382Z INFO sending Commit {"height": 2211, "view": 0} -2023-12-15T14:49:04.382Z INFO approving block {"height": 2211, "hash": "d11d98e0053aefd076ec8de60302f7ad7c19577e2c75852304f669804e9fa1d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f344e0884c2523f0678cf2d25358bd644e623b469a2c08b5634fc4b91689fae8"} -2023-12-15T14:49:04.383Z INFO initializing dbft {"height": 2212, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:04.384Z debug frostfs-node/morph.go:229 new block {"index": 2211} -2023-12-15T14:49:05.293Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2211, "blockHeight": 2211, "took": "5.674971ms"} -2023-12-15T14:49:05.384Z INFO sending PrepareRequest {"height": 2212, "view": 0} -2023-12-15T14:49:05.384Z INFO sending Commit {"height": 2212, "view": 0} -2023-12-15T14:49:05.384Z INFO approving block {"height": 2212, "hash": "50b07a01cf6b8a3ba5eeac8401802f4a5189bace0a929224671f0718a461a348", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d11d98e0053aefd076ec8de60302f7ad7c19577e2c75852304f669804e9fa1d7"} -2023-12-15T14:49:05.386Z INFO initializing dbft {"height": 2213, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:05.387Z debug frostfs-node/morph.go:229 new block {"index": 2212} -2023-12-15T14:49:06.292Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2212, "blockHeight": 2212, "took": "3.32024ms"} -2023-12-15T14:49:06.385Z INFO sending PrepareRequest {"height": 2213, "view": 0} -2023-12-15T14:49:06.385Z INFO sending Commit {"height": 2213, "view": 0} -2023-12-15T14:49:06.386Z INFO approving block {"height": 2213, "hash": "6a513eb338072393831c7954cdbf23bc95db09162639df39d378e9997d4f370e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50b07a01cf6b8a3ba5eeac8401802f4a5189bace0a929224671f0718a461a348"} -2023-12-15T14:49:06.387Z INFO initializing dbft {"height": 2214, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:06.387Z debug frostfs-node/morph.go:229 new block {"index": 2213} -2023-12-15T14:49:07.292Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2213, "blockHeight": 2213, "took": "2.821962ms"} -2023-12-15T14:49:07.387Z INFO sending PrepareRequest {"height": 2214, "view": 0} -2023-12-15T14:49:07.387Z INFO sending Commit {"height": 2214, "view": 0} -2023-12-15T14:49:07.387Z INFO approving block {"height": 2214, "hash": "2bcc4d63f7499600987fdab252a336903565803222e318d97e563ee4593cdd0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a513eb338072393831c7954cdbf23bc95db09162639df39d378e9997d4f370e"} -2023-12-15T14:49:07.388Z INFO initializing dbft {"height": 2215, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:07.388Z debug frostfs-node/morph.go:229 new block {"index": 2214} -2023-12-15T14:49:08.294Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2214, "blockHeight": 2214, "took": "4.45032ms"} -2023-12-15T14:49:08.388Z INFO sending PrepareRequest {"height": 2215, "view": 0} -2023-12-15T14:49:08.388Z INFO sending Commit {"height": 2215, "view": 0} -2023-12-15T14:49:08.388Z INFO approving block {"height": 2215, "hash": "8deb47c3924e33ba85f23da378e33fa414b8ccdc0afcae3d223e653218996e5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2bcc4d63f7499600987fdab252a336903565803222e318d97e563ee4593cdd0f"} -2023-12-15T14:49:08.389Z INFO initializing dbft {"height": 2216, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:08.390Z debug frostfs-node/morph.go:229 new block {"index": 2215} -2023-12-15T14:49:09.293Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2215, "blockHeight": 2215, "took": "3.06561ms"} -2023-12-15T14:49:09.389Z INFO sending PrepareRequest {"height": 2216, "view": 0} -2023-12-15T14:49:09.389Z INFO sending Commit {"height": 2216, "view": 0} -2023-12-15T14:49:09.389Z INFO approving block {"height": 2216, "hash": "1853492b34ad21ee1da0e20ad2d669157c96e38b682f26cbf5f079b8d9794f14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8deb47c3924e33ba85f23da378e33fa414b8ccdc0afcae3d223e653218996e5e"} -2023-12-15T14:49:09.391Z INFO initializing dbft {"height": 2217, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:09.391Z debug frostfs-node/morph.go:229 new block {"index": 2216} -2023-12-15T14:49:10.295Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2216, "blockHeight": 2216, "took": "3.851152ms"} -2023-12-15T14:49:10.391Z INFO sending PrepareRequest {"height": 2217, "view": 0} -2023-12-15T14:49:10.391Z INFO sending Commit {"height": 2217, "view": 0} -2023-12-15T14:49:10.391Z INFO approving block {"height": 2217, "hash": "346ad4ea18076b85b76657f2a2079d2d30e47158f900f417599da85a6ea88206", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1853492b34ad21ee1da0e20ad2d669157c96e38b682f26cbf5f079b8d9794f14"} -2023-12-15T14:49:10.393Z INFO initializing dbft {"height": 2218, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:10.393Z debug frostfs-node/morph.go:229 new block {"index": 2217} -2023-12-15T14:49:10.396Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:49:10.399Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:49:10.399Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:49:11.296Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2217, "blockHeight": 2217, "took": "3.808654ms"} -2023-12-15T14:49:11.393Z INFO sending PrepareRequest {"height": 2218, "view": 0} -2023-12-15T14:49:11.393Z INFO sending Commit {"height": 2218, "view": 0} -2023-12-15T14:49:11.394Z INFO approving block {"height": 2218, "hash": "42468c369cc1313a249356be60016f9ca0783c1a32c95c53567ce7e6f6d7e362", "tx_count": 2, "merkle": "d30ded2eb283c630d6c7bcc4ec1994a57a9506902bc6b723fd3d43e3f341d698", "prev": "346ad4ea18076b85b76657f2a2079d2d30e47158f900f417599da85a6ea88206"} -2023-12-15T14:49:11.395Z INFO runtime log {"tx": "7b04c1f662976abbc87daa856e2d9e4d77c24edf13d53fa1ab456efea88fc62e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:49:11.395Z INFO runtime log {"tx": "7b04c1f662976abbc87daa856e2d9e4d77c24edf13d53fa1ab456efea88fc62e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:49:11.396Z INFO initializing dbft {"height": 2219, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:11.397Z debug frostfs-node/morph.go:229 new block {"index": 2218} -2023-12-15T14:49:12.298Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2218, "blockHeight": 2218, "took": "5.695564ms"} -2023-12-15T14:49:12.395Z INFO sending PrepareRequest {"height": 2219, "view": 0} -2023-12-15T14:49:12.396Z INFO sending Commit {"height": 2219, "view": 0} -2023-12-15T14:49:12.396Z INFO approving block {"height": 2219, "hash": "2d1b6df18f9e0d1d43f28113e2e0ce047741cacd5f8766490afd0135507caea0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42468c369cc1313a249356be60016f9ca0783c1a32c95c53567ce7e6f6d7e362"} -2023-12-15T14:49:12.397Z INFO initializing dbft {"height": 2220, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:12.398Z debug frostfs-node/morph.go:229 new block {"index": 2219} -2023-12-15T14:49:13.299Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2219, "blockHeight": 2219, "took": "5.743438ms"} -2023-12-15T14:49:13.397Z INFO sending PrepareRequest {"height": 2220, "view": 0} -2023-12-15T14:49:13.397Z INFO sending Commit {"height": 2220, "view": 0} -2023-12-15T14:49:13.397Z INFO approving block {"height": 2220, "hash": "c5eb6bfeb7e057626fec41a2b1de95804d0a37477b41fbce0d54201ee7f2bb7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d1b6df18f9e0d1d43f28113e2e0ce047741cacd5f8766490afd0135507caea0"} -2023-12-15T14:49:13.399Z INFO initializing dbft {"height": 2221, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:13.399Z debug frostfs-node/morph.go:229 new block {"index": 2220} -2023-12-15T14:49:14.297Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2220, "blockHeight": 2220, "took": "3.781055ms"} -2023-12-15T14:49:14.398Z INFO sending PrepareRequest {"height": 2221, "view": 0} -2023-12-15T14:49:14.399Z INFO sending Commit {"height": 2221, "view": 0} -2023-12-15T14:49:14.399Z INFO approving block {"height": 2221, "hash": "07c1bbc9aa0ecd484396340ffbc7f5c24f443cde467e0b57306486a9a558207b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5eb6bfeb7e057626fec41a2b1de95804d0a37477b41fbce0d54201ee7f2bb7a"} -2023-12-15T14:49:14.401Z INFO initializing dbft {"height": 2222, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:14.402Z debug frostfs-node/morph.go:229 new block {"index": 2221} -2023-12-15T14:49:15.298Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2221, "blockHeight": 2221, "took": "3.844228ms"} -2023-12-15T14:49:15.400Z INFO sending PrepareRequest {"height": 2222, "view": 0} -2023-12-15T14:49:15.400Z INFO sending Commit {"height": 2222, "view": 0} -2023-12-15T14:49:15.400Z INFO approving block {"height": 2222, "hash": "9c00420273498c4b55336cb8fa8262d9e6bff1b2d3ba92c1a1fdd77414069236", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07c1bbc9aa0ecd484396340ffbc7f5c24f443cde467e0b57306486a9a558207b"} -2023-12-15T14:49:15.402Z INFO initializing dbft {"height": 2223, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:15.402Z debug frostfs-node/morph.go:229 new block {"index": 2222} -2023-12-15T14:49:16.298Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2222, "blockHeight": 2222, "took": "3.274643ms"} -2023-12-15T14:49:16.401Z INFO sending PrepareRequest {"height": 2223, "view": 0} -2023-12-15T14:49:16.402Z INFO sending Commit {"height": 2223, "view": 0} -2023-12-15T14:49:16.402Z INFO approving block {"height": 2223, "hash": "ce9f14552e0e868ccbbfd94eb50612603403c67ebd50a5681c08eea8122d09be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c00420273498c4b55336cb8fa8262d9e6bff1b2d3ba92c1a1fdd77414069236"} -2023-12-15T14:49:16.404Z INFO initializing dbft {"height": 2224, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:16.404Z debug frostfs-node/morph.go:229 new block {"index": 2223} -2023-12-15T14:49:17.299Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2223, "blockHeight": 2223, "took": "3.869216ms"} -2023-12-15T14:49:17.402Z INFO sending PrepareRequest {"height": 2224, "view": 0} -2023-12-15T14:49:17.402Z INFO sending Commit {"height": 2224, "view": 0} -2023-12-15T14:49:17.403Z INFO approving block {"height": 2224, "hash": "2f318c898f0ebb9776e8a61ae9b0621458bbd7a0f4bba7708381ed170b480cf2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce9f14552e0e868ccbbfd94eb50612603403c67ebd50a5681c08eea8122d09be"} -2023-12-15T14:49:17.403Z INFO initializing dbft {"height": 2225, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:17.404Z debug frostfs-node/morph.go:229 new block {"index": 2224} -2023-12-15T14:49:18.299Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2224, "blockHeight": 2224, "took": "3.149361ms"} -2023-12-15T14:49:18.404Z INFO sending PrepareRequest {"height": 2225, "view": 0} -2023-12-15T14:49:18.404Z INFO sending Commit {"height": 2225, "view": 0} -2023-12-15T14:49:18.404Z INFO approving block {"height": 2225, "hash": "8361b71c0e22384bc2c799e577544b46d506850483786c9fdaa8c7d0267d6538", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f318c898f0ebb9776e8a61ae9b0621458bbd7a0f4bba7708381ed170b480cf2"} -2023-12-15T14:49:18.405Z INFO initializing dbft {"height": 2226, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:18.405Z debug frostfs-node/morph.go:229 new block {"index": 2225} -2023-12-15T14:49:19.300Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2225, "blockHeight": 2225, "took": "3.13814ms"} -2023-12-15T14:49:19.406Z INFO sending PrepareRequest {"height": 2226, "view": 0} -2023-12-15T14:49:19.407Z INFO sending Commit {"height": 2226, "view": 0} -2023-12-15T14:49:19.407Z INFO approving block {"height": 2226, "hash": "ce5ba73d4aae4b2e4400dec18a463bbd59095fc676cc4d407e0bbedc4a86ee36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8361b71c0e22384bc2c799e577544b46d506850483786c9fdaa8c7d0267d6538"} -2023-12-15T14:49:19.410Z INFO initializing dbft {"height": 2227, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:19.410Z debug frostfs-node/morph.go:229 new block {"index": 2226} -2023-12-15T14:49:20.301Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2226, "blockHeight": 2226, "took": "3.450728ms"} -2023-12-15T14:49:20.408Z INFO sending PrepareRequest {"height": 2227, "view": 0} -2023-12-15T14:49:20.408Z INFO sending Commit {"height": 2227, "view": 0} -2023-12-15T14:49:20.408Z INFO approving block {"height": 2227, "hash": "b005a6a63f87cf1c0d605e5dd36983707388dbd0ecd547adad6284777d3a6de2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce5ba73d4aae4b2e4400dec18a463bbd59095fc676cc4d407e0bbedc4a86ee36"} -2023-12-15T14:49:20.409Z INFO initializing dbft {"height": 2228, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:20.410Z debug frostfs-node/morph.go:229 new block {"index": 2227} -2023-12-15T14:49:21.302Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2227, "blockHeight": 2227, "took": "4.476822ms"} -2023-12-15T14:49:21.409Z INFO sending PrepareRequest {"height": 2228, "view": 0} -2023-12-15T14:49:21.409Z INFO sending Commit {"height": 2228, "view": 0} -2023-12-15T14:49:21.410Z INFO approving block {"height": 2228, "hash": "531b36125d10b43ec601d533d660b9a53d72e0d5bfed8a0b8bcbd9d126a2f621", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b005a6a63f87cf1c0d605e5dd36983707388dbd0ecd547adad6284777d3a6de2"} -2023-12-15T14:49:21.410Z INFO initializing dbft {"height": 2229, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:21.411Z debug frostfs-node/morph.go:229 new block {"index": 2228} -2023-12-15T14:49:22.304Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2228, "blockHeight": 2228, "took": "5.984958ms"} -2023-12-15T14:49:22.411Z INFO sending PrepareRequest {"height": 2229, "view": 0} -2023-12-15T14:49:22.411Z INFO sending Commit {"height": 2229, "view": 0} -2023-12-15T14:49:22.412Z INFO approving block {"height": 2229, "hash": "b4cb1a0a3713f95704b294860735041519c85a29a17625d4d60f3e00901da648", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "531b36125d10b43ec601d533d660b9a53d72e0d5bfed8a0b8bcbd9d126a2f621"} -2023-12-15T14:49:22.413Z INFO initializing dbft {"height": 2230, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:22.414Z debug frostfs-node/morph.go:229 new block {"index": 2229} -2023-12-15T14:49:22.417Z INFO runtime log {"tx": "6214a69993279bfc3993acf99c8c876cb244df451e72099c944203f77ccff964", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:49:22.418Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 10 epoch for daughters"} -2023-12-15T14:49:23.302Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2229, "blockHeight": 2229, "took": "3.12348ms"} -2023-12-15T14:49:23.412Z INFO sending PrepareRequest {"height": 2230, "view": 0} -2023-12-15T14:49:23.413Z INFO sending Commit {"height": 2230, "view": 0} -2023-12-15T14:49:23.413Z INFO approving block {"height": 2230, "hash": "c0a4d344dfa68d1dd8209a1a2344a4ab16c619ae440cd12a1f5119ea366b02c5", "tx_count": 1, "merkle": "59607aaafd0beb318ffb66855aa7f0c56839fdf3ced54ede4043fc9250d70bca", "prev": "b4cb1a0a3713f95704b294860735041519c85a29a17625d4d60f3e00901da648"} -2023-12-15T14:49:23.413Z INFO runtime log {"tx": "ca0bd75092fc4340de4ed5cef3fd3968c5f0a75a8566fb8f31eb0bfdaa7a6059", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:49:23.414Z INFO initializing dbft {"height": 2231, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:23.415Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 10} -2023-12-15T14:49:23.415Z debug frostfs-node/morph.go:229 new block {"index": 2230} -2023-12-15T14:49:23.416Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 10} -2023-12-15T14:49:24.304Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 2230, "blockHeight": 2230, "took": "4.764802ms"} -2023-12-15T14:49:24.414Z INFO sending PrepareRequest {"height": 2231, "view": 0} -2023-12-15T14:49:24.414Z INFO sending Commit {"height": 2231, "view": 0} -2023-12-15T14:49:24.414Z INFO approving block {"height": 2231, "hash": "69ca3b33ed849269b1f1edc1aa9bdf030712eb58f6a147b5bb86e52fb1980da7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0a4d344dfa68d1dd8209a1a2344a4ab16c619ae440cd12a1f5119ea366b02c5"} -2023-12-15T14:49:24.415Z INFO initializing dbft {"height": 2232, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:24.416Z debug frostfs-node/morph.go:229 new block {"index": 2231} -2023-12-15T14:49:25.305Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2231, "blockHeight": 2231, "took": "4.859111ms"} -2023-12-15T14:49:25.416Z INFO sending PrepareRequest {"height": 2232, "view": 0} -2023-12-15T14:49:25.416Z INFO sending Commit {"height": 2232, "view": 0} -2023-12-15T14:49:25.416Z INFO approving block {"height": 2232, "hash": "3f3b68030678e9547f426cb5b2c66c4eb917f70b630fe48ec3f1dfbf08b079b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69ca3b33ed849269b1f1edc1aa9bdf030712eb58f6a147b5bb86e52fb1980da7"} -2023-12-15T14:49:25.417Z INFO initializing dbft {"height": 2233, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:25.418Z debug frostfs-node/morph.go:229 new block {"index": 2232} -2023-12-15T14:49:26.305Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2232, "blockHeight": 2232, "took": "4.307685ms"} -2023-12-15T14:49:26.417Z INFO sending PrepareRequest {"height": 2233, "view": 0} -2023-12-15T14:49:26.417Z INFO sending Commit {"height": 2233, "view": 0} -2023-12-15T14:49:26.417Z INFO approving block {"height": 2233, "hash": "720caeea16ccbf1c2c9a56b18539dfbf6e5c619247217b23775449458d1944e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f3b68030678e9547f426cb5b2c66c4eb917f70b630fe48ec3f1dfbf08b079b5"} -2023-12-15T14:49:26.418Z INFO initializing dbft {"height": 2234, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:26.418Z debug frostfs-node/morph.go:229 new block {"index": 2233} -2023-12-15T14:49:27.305Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2233, "blockHeight": 2233, "took": "4.226953ms"} -2023-12-15T14:49:27.419Z INFO sending PrepareRequest {"height": 2234, "view": 0} -2023-12-15T14:49:27.419Z INFO sending Commit {"height": 2234, "view": 0} -2023-12-15T14:49:27.419Z INFO approving block {"height": 2234, "hash": "92a3ada2b224fea452fadd35beca06892c55e284a573ca8a1b49a0c858ec2008", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "720caeea16ccbf1c2c9a56b18539dfbf6e5c619247217b23775449458d1944e8"} -2023-12-15T14:49:27.421Z INFO initializing dbft {"height": 2235, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:27.421Z debug frostfs-node/morph.go:229 new block {"index": 2234} -2023-12-15T14:49:28.305Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2234, "blockHeight": 2234, "took": "3.504206ms"} -2023-12-15T14:49:28.420Z INFO sending PrepareRequest {"height": 2235, "view": 0} -2023-12-15T14:49:28.420Z INFO sending Commit {"height": 2235, "view": 0} -2023-12-15T14:49:28.421Z INFO approving block {"height": 2235, "hash": "c762bbcad3645f2c4867a3b6d3d28bed3a94a01be740c1ca440ab65ff8d3267a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92a3ada2b224fea452fadd35beca06892c55e284a573ca8a1b49a0c858ec2008"} -2023-12-15T14:49:28.422Z INFO initializing dbft {"height": 2236, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:28.423Z debug frostfs-node/morph.go:229 new block {"index": 2235} -2023-12-15T14:49:29.306Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2235, "blockHeight": 2235, "took": "3.946557ms"} -2023-12-15T14:49:29.422Z INFO sending PrepareRequest {"height": 2236, "view": 0} -2023-12-15T14:49:29.422Z INFO sending Commit {"height": 2236, "view": 0} -2023-12-15T14:49:29.423Z INFO approving block {"height": 2236, "hash": "dc7550cff1bdf6296a8d19ef75b1b038f08b8e41ad37fb6c62bf7b28e362c9fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c762bbcad3645f2c4867a3b6d3d28bed3a94a01be740c1ca440ab65ff8d3267a"} -2023-12-15T14:49:29.425Z INFO initializing dbft {"height": 2237, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:29.426Z debug frostfs-node/morph.go:229 new block {"index": 2236} -2023-12-15T14:49:30.306Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2236, "blockHeight": 2236, "took": "3.172434ms"} -2023-12-15T14:49:30.424Z INFO sending PrepareRequest {"height": 2237, "view": 0} -2023-12-15T14:49:30.425Z INFO sending Commit {"height": 2237, "view": 0} -2023-12-15T14:49:30.425Z INFO approving block {"height": 2237, "hash": "868b8c525d4a6d9fc53be98b64f1b39f8c1581ccc9c72c5a72b4f023914d8595", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc7550cff1bdf6296a8d19ef75b1b038f08b8e41ad37fb6c62bf7b28e362c9fc"} -2023-12-15T14:49:30.426Z INFO initializing dbft {"height": 2238, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:30.426Z debug frostfs-node/morph.go:229 new block {"index": 2237} -2023-12-15T14:49:31.307Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2237, "blockHeight": 2237, "took": "4.355036ms"} -2023-12-15T14:49:31.426Z INFO sending PrepareRequest {"height": 2238, "view": 0} -2023-12-15T14:49:31.426Z INFO sending Commit {"height": 2238, "view": 0} -2023-12-15T14:49:31.426Z INFO approving block {"height": 2238, "hash": "3086b64da6f5d88575a83f97fbcda63436f55c39071ddd91899bf43454037b23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "868b8c525d4a6d9fc53be98b64f1b39f8c1581ccc9c72c5a72b4f023914d8595"} -2023-12-15T14:49:31.427Z INFO initializing dbft {"height": 2239, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:31.428Z debug frostfs-node/morph.go:229 new block {"index": 2238} -2023-12-15T14:49:32.306Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2238, "blockHeight": 2238, "took": "2.828683ms"} -2023-12-15T14:49:32.427Z INFO sending PrepareRequest {"height": 2239, "view": 0} -2023-12-15T14:49:32.428Z INFO sending Commit {"height": 2239, "view": 0} -2023-12-15T14:49:32.428Z INFO approving block {"height": 2239, "hash": "24cf624783a34dca7913ca7d6e085ee2665b9a0e23612d2ef98bc52e137b9932", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3086b64da6f5d88575a83f97fbcda63436f55c39071ddd91899bf43454037b23"} -2023-12-15T14:49:32.429Z INFO initializing dbft {"height": 2240, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:32.430Z debug frostfs-node/morph.go:229 new block {"index": 2239} -2023-12-15T14:49:33.307Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2239, "blockHeight": 2239, "took": "3.365309ms"} -2023-12-15T14:49:33.429Z INFO sending PrepareRequest {"height": 2240, "view": 0} -2023-12-15T14:49:33.429Z INFO sending Commit {"height": 2240, "view": 0} -2023-12-15T14:49:33.430Z INFO approving block {"height": 2240, "hash": "cf044350c8481db930b7065b19c1a087d420b9a3e5a711cf885bb1117da1aa98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24cf624783a34dca7913ca7d6e085ee2665b9a0e23612d2ef98bc52e137b9932"} -2023-12-15T14:49:33.431Z INFO initializing dbft {"height": 2241, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:33.431Z debug frostfs-node/morph.go:229 new block {"index": 2240} -2023-12-15T14:49:34.309Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2240, "blockHeight": 2240, "took": "4.814472ms"} -2023-12-15T14:49:34.431Z INFO sending PrepareRequest {"height": 2241, "view": 0} -2023-12-15T14:49:34.431Z INFO sending Commit {"height": 2241, "view": 0} -2023-12-15T14:49:34.431Z INFO approving block {"height": 2241, "hash": "f2b87b15233cb63f6109bbbabb1a86969487ef5e78377eccd0c7647a9d26cb4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf044350c8481db930b7065b19c1a087d420b9a3e5a711cf885bb1117da1aa98"} -2023-12-15T14:49:34.433Z INFO initializing dbft {"height": 2242, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:34.433Z debug frostfs-node/morph.go:229 new block {"index": 2241} -2023-12-15T14:49:35.309Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2241, "blockHeight": 2241, "took": "3.909624ms"} -2023-12-15T14:49:35.432Z INFO sending PrepareRequest {"height": 2242, "view": 0} -2023-12-15T14:49:35.432Z INFO sending Commit {"height": 2242, "view": 0} -2023-12-15T14:49:35.432Z INFO approving block {"height": 2242, "hash": "a826f6a9a653b593f413d7d320e99dbb307edfeeacf0d2acf71c5228555c85c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2b87b15233cb63f6109bbbabb1a86969487ef5e78377eccd0c7647a9d26cb4f"} -2023-12-15T14:49:35.433Z INFO initializing dbft {"height": 2243, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:35.433Z debug frostfs-node/morph.go:229 new block {"index": 2242} -2023-12-15T14:49:36.308Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2242, "blockHeight": 2242, "took": "2.814923ms"} -2023-12-15T14:49:36.433Z INFO sending PrepareRequest {"height": 2243, "view": 0} -2023-12-15T14:49:36.434Z INFO sending Commit {"height": 2243, "view": 0} -2023-12-15T14:49:36.434Z INFO approving block {"height": 2243, "hash": "6eb366b507315a2ca368be9e804f6e170c00b07435768c458837870594953156", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a826f6a9a653b593f413d7d320e99dbb307edfeeacf0d2acf71c5228555c85c8"} -2023-12-15T14:49:36.435Z INFO initializing dbft {"height": 2244, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:36.435Z debug frostfs-node/morph.go:229 new block {"index": 2243} -2023-12-15T14:49:37.310Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2243, "blockHeight": 2243, "took": "4.086786ms"} -2023-12-15T14:49:37.435Z INFO sending PrepareRequest {"height": 2244, "view": 0} -2023-12-15T14:49:37.435Z INFO sending Commit {"height": 2244, "view": 0} -2023-12-15T14:49:37.435Z INFO approving block {"height": 2244, "hash": "dabae6003da2d0d53686b1aba82dd101139ed354180bee62d2b254be6a603a04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6eb366b507315a2ca368be9e804f6e170c00b07435768c458837870594953156"} -2023-12-15T14:49:37.436Z INFO initializing dbft {"height": 2245, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:37.436Z debug frostfs-node/morph.go:229 new block {"index": 2244} -2023-12-15T14:49:38.312Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2244, "blockHeight": 2244, "took": "5.187679ms"} -2023-12-15T14:49:38.436Z INFO sending PrepareRequest {"height": 2245, "view": 0} -2023-12-15T14:49:38.436Z INFO sending Commit {"height": 2245, "view": 0} -2023-12-15T14:49:38.437Z INFO approving block {"height": 2245, "hash": "efdd582937052a3705d5269a39b974f206230d1f11ff724dbbd5fe8b477be73b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dabae6003da2d0d53686b1aba82dd101139ed354180bee62d2b254be6a603a04"} -2023-12-15T14:49:38.438Z INFO initializing dbft {"height": 2246, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:38.438Z debug frostfs-node/morph.go:229 new block {"index": 2245} -2023-12-15T14:49:39.312Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2245, "blockHeight": 2245, "took": "4.87867ms"} -2023-12-15T14:49:39.438Z INFO sending PrepareRequest {"height": 2246, "view": 0} -2023-12-15T14:49:39.438Z INFO sending Commit {"height": 2246, "view": 0} -2023-12-15T14:49:39.439Z INFO approving block {"height": 2246, "hash": "5255488ccf011c0567cda5073c5a2f1659e4679acd33df46fd27e5f102c0e949", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efdd582937052a3705d5269a39b974f206230d1f11ff724dbbd5fe8b477be73b"} -2023-12-15T14:49:39.440Z INFO initializing dbft {"height": 2247, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:39.440Z debug frostfs-node/morph.go:229 new block {"index": 2246} -2023-12-15T14:49:40.313Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2246, "blockHeight": 2246, "took": "5.042358ms"} -2023-12-15T14:49:40.439Z INFO sending PrepareRequest {"height": 2247, "view": 0} -2023-12-15T14:49:40.439Z INFO sending Commit {"height": 2247, "view": 0} -2023-12-15T14:49:40.440Z INFO approving block {"height": 2247, "hash": "de1b8a73e4c763c4dbe1109f46f033e0cdbff16f7832d1040f0ad812b2250671", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5255488ccf011c0567cda5073c5a2f1659e4679acd33df46fd27e5f102c0e949"} -2023-12-15T14:49:40.441Z INFO initializing dbft {"height": 2248, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:40.442Z debug frostfs-node/morph.go:229 new block {"index": 2247} -2023-12-15T14:49:41.312Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2247, "blockHeight": 2247, "took": "3.186133ms"} -2023-12-15T14:49:41.441Z INFO sending PrepareRequest {"height": 2248, "view": 0} -2023-12-15T14:49:41.442Z INFO sending Commit {"height": 2248, "view": 0} -2023-12-15T14:49:41.442Z INFO approving block {"height": 2248, "hash": "fcaeb631121844ec7e12359d3916967102e9c83a7d37c4163adc64f9cbfcdb41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de1b8a73e4c763c4dbe1109f46f033e0cdbff16f7832d1040f0ad812b2250671"} -2023-12-15T14:49:41.443Z INFO initializing dbft {"height": 2249, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:41.443Z debug frostfs-node/morph.go:229 new block {"index": 2248} -2023-12-15T14:49:42.312Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2248, "blockHeight": 2248, "took": "3.342889ms"} -2023-12-15T14:49:42.443Z INFO sending PrepareRequest {"height": 2249, "view": 0} -2023-12-15T14:49:42.443Z INFO sending Commit {"height": 2249, "view": 0} -2023-12-15T14:49:42.443Z INFO approving block {"height": 2249, "hash": "90387db64c4dceb86013550a519175f124c0a9b22b88f1f20d1cf43429a77747", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcaeb631121844ec7e12359d3916967102e9c83a7d37c4163adc64f9cbfcdb41"} -2023-12-15T14:49:42.444Z INFO initializing dbft {"height": 2250, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:42.444Z debug frostfs-node/morph.go:229 new block {"index": 2249} -2023-12-15T14:49:43.313Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2249, "blockHeight": 2249, "took": "3.546514ms"} -2023-12-15T14:49:43.444Z INFO sending PrepareRequest {"height": 2250, "view": 0} -2023-12-15T14:49:43.444Z INFO sending Commit {"height": 2250, "view": 0} -2023-12-15T14:49:43.445Z INFO approving block {"height": 2250, "hash": "42a8046c371778183326b83201d453d2c4bdec78ac00f7fbd1c19b43ec29fbc7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90387db64c4dceb86013550a519175f124c0a9b22b88f1f20d1cf43429a77747"} -2023-12-15T14:49:43.446Z INFO initializing dbft {"height": 2251, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:43.446Z debug frostfs-node/morph.go:229 new block {"index": 2250} -2023-12-15T14:49:44.314Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2250, "blockHeight": 2250, "took": "4.157982ms"} -2023-12-15T14:49:44.446Z INFO sending PrepareRequest {"height": 2251, "view": 0} -2023-12-15T14:49:44.446Z INFO sending Commit {"height": 2251, "view": 0} -2023-12-15T14:49:44.446Z INFO approving block {"height": 2251, "hash": "ebbda08d7ce101a1114565cee479e51a029ee37f9fa593257a81f56de558aa80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42a8046c371778183326b83201d453d2c4bdec78ac00f7fbd1c19b43ec29fbc7"} -2023-12-15T14:49:44.447Z INFO initializing dbft {"height": 2252, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:44.448Z debug frostfs-node/morph.go:229 new block {"index": 2251} -2023-12-15T14:49:45.314Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2251, "blockHeight": 2251, "took": "3.179083ms"} -2023-12-15T14:49:45.448Z INFO sending PrepareRequest {"height": 2252, "view": 0} -2023-12-15T14:49:45.448Z INFO sending Commit {"height": 2252, "view": 0} -2023-12-15T14:49:45.448Z INFO approving block {"height": 2252, "hash": "013701b4cb13dcc8e078f1b1fcfc4b7fdea46b329276cb2aad4f0fb2c7980af6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebbda08d7ce101a1114565cee479e51a029ee37f9fa593257a81f56de558aa80"} -2023-12-15T14:49:45.450Z INFO initializing dbft {"height": 2253, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:45.451Z debug frostfs-node/morph.go:229 new block {"index": 2252} -2023-12-15T14:49:46.317Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2252, "blockHeight": 2252, "took": "5.99999ms"} -2023-12-15T14:49:46.449Z INFO sending PrepareRequest {"height": 2253, "view": 0} -2023-12-15T14:49:46.449Z INFO sending Commit {"height": 2253, "view": 0} -2023-12-15T14:49:46.450Z INFO approving block {"height": 2253, "hash": "9d7799d1a55653db35a92235ccf3d19e1537bf9a52444f53c4bc97f1d29fe7af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "013701b4cb13dcc8e078f1b1fcfc4b7fdea46b329276cb2aad4f0fb2c7980af6"} -2023-12-15T14:49:46.451Z INFO initializing dbft {"height": 2254, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:46.452Z debug frostfs-node/morph.go:229 new block {"index": 2253} -2023-12-15T14:49:47.316Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2253, "blockHeight": 2253, "took": "4.169762ms"} -2023-12-15T14:49:47.451Z INFO sending PrepareRequest {"height": 2254, "view": 0} -2023-12-15T14:49:47.451Z INFO sending Commit {"height": 2254, "view": 0} -2023-12-15T14:49:47.451Z INFO approving block {"height": 2254, "hash": "6bede54029f6053ad240236c102eb0036073834e0e21ab15285f561ac2f5cca7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d7799d1a55653db35a92235ccf3d19e1537bf9a52444f53c4bc97f1d29fe7af"} -2023-12-15T14:49:47.453Z INFO initializing dbft {"height": 2255, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:47.453Z debug frostfs-node/morph.go:229 new block {"index": 2254} -2023-12-15T14:49:48.315Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2254, "blockHeight": 2254, "took": "2.938756ms"} -2023-12-15T14:49:48.452Z INFO sending PrepareRequest {"height": 2255, "view": 0} -2023-12-15T14:49:48.452Z INFO sending Commit {"height": 2255, "view": 0} -2023-12-15T14:49:48.452Z INFO approving block {"height": 2255, "hash": "86b73f3672b26b3e416f5f85e36ecb0613248a09549e091387769e5921daf5ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bede54029f6053ad240236c102eb0036073834e0e21ab15285f561ac2f5cca7"} -2023-12-15T14:49:48.453Z INFO initializing dbft {"height": 2256, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:48.454Z debug frostfs-node/morph.go:229 new block {"index": 2255} -2023-12-15T14:49:49.317Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2255, "blockHeight": 2255, "took": "3.785121ms"} -2023-12-15T14:49:49.453Z INFO sending PrepareRequest {"height": 2256, "view": 0} -2023-12-15T14:49:49.454Z INFO sending Commit {"height": 2256, "view": 0} -2023-12-15T14:49:49.454Z INFO approving block {"height": 2256, "hash": "72ee0a709fbb0ea449146a76a219108cf92e09831ac34a9677cc0939cbf1b936", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86b73f3672b26b3e416f5f85e36ecb0613248a09549e091387769e5921daf5ae"} -2023-12-15T14:49:49.455Z INFO initializing dbft {"height": 2257, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:49.455Z debug frostfs-node/morph.go:229 new block {"index": 2256} -2023-12-15T14:49:50.318Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2256, "blockHeight": 2256, "took": "4.559583ms"} -2023-12-15T14:49:50.455Z INFO sending PrepareRequest {"height": 2257, "view": 0} -2023-12-15T14:49:50.455Z INFO sending Commit {"height": 2257, "view": 0} -2023-12-15T14:49:50.455Z INFO approving block {"height": 2257, "hash": "170116a2184ec642ac8078d6a9cef68758e191b399a7b4050cc7b347436d8dd2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72ee0a709fbb0ea449146a76a219108cf92e09831ac34a9677cc0939cbf1b936"} -2023-12-15T14:49:50.456Z INFO initializing dbft {"height": 2258, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:50.456Z debug frostfs-node/morph.go:229 new block {"index": 2257} -2023-12-15T14:49:51.317Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2257, "blockHeight": 2257, "took": "3.784022ms"} -2023-12-15T14:49:51.456Z INFO sending PrepareRequest {"height": 2258, "view": 0} -2023-12-15T14:49:51.456Z INFO sending Commit {"height": 2258, "view": 0} -2023-12-15T14:49:51.457Z INFO approving block {"height": 2258, "hash": "1377229b7fd83c1a092fe561215ca21ff2446b867fdbaea4bcb4d7e0e0c6dc3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "170116a2184ec642ac8078d6a9cef68758e191b399a7b4050cc7b347436d8dd2"} -2023-12-15T14:49:51.457Z INFO initializing dbft {"height": 2259, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:51.458Z debug frostfs-node/morph.go:229 new block {"index": 2258} -2023-12-15T14:49:52.317Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2258, "blockHeight": 2258, "took": "2.946276ms"} -2023-12-15T14:49:52.458Z INFO sending PrepareRequest {"height": 2259, "view": 0} -2023-12-15T14:49:52.458Z INFO sending Commit {"height": 2259, "view": 0} -2023-12-15T14:49:52.458Z INFO approving block {"height": 2259, "hash": "69cedb16f373b984b83bcb98c088a198be95e315e0c5fb05beff3927f8abfe80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1377229b7fd83c1a092fe561215ca21ff2446b867fdbaea4bcb4d7e0e0c6dc3c"} -2023-12-15T14:49:52.459Z INFO initializing dbft {"height": 2260, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:52.460Z debug frostfs-node/morph.go:229 new block {"index": 2259} -2023-12-15T14:49:53.318Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2259, "blockHeight": 2259, "took": "3.348538ms"} -2023-12-15T14:49:53.459Z INFO sending PrepareRequest {"height": 2260, "view": 0} -2023-12-15T14:49:53.459Z INFO sending Commit {"height": 2260, "view": 0} -2023-12-15T14:49:53.460Z INFO approving block {"height": 2260, "hash": "5cefef44c24cdcb626bf69adbc72a40b6ad71ef4a5e5ea2a1dcb9fbe892c56da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69cedb16f373b984b83bcb98c088a198be95e315e0c5fb05beff3927f8abfe80"} -2023-12-15T14:49:53.460Z INFO initializing dbft {"height": 2261, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:53.461Z debug frostfs-node/morph.go:229 new block {"index": 2260} -2023-12-15T14:49:54.321Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2260, "blockHeight": 2260, "took": "5.896286ms"} -2023-12-15T14:49:54.460Z INFO sending PrepareRequest {"height": 2261, "view": 0} -2023-12-15T14:49:54.460Z INFO sending Commit {"height": 2261, "view": 0} -2023-12-15T14:49:54.461Z INFO approving block {"height": 2261, "hash": "3f54c3f4bef6057f58d81dea880a04896cb622f9722c44320ac5a871c7c02308", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cefef44c24cdcb626bf69adbc72a40b6ad71ef4a5e5ea2a1dcb9fbe892c56da"} -2023-12-15T14:49:54.462Z INFO initializing dbft {"height": 2262, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:54.462Z debug frostfs-node/morph.go:229 new block {"index": 2261} -2023-12-15T14:49:55.319Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2261, "blockHeight": 2261, "took": "3.143342ms"} -2023-12-15T14:49:55.461Z INFO sending PrepareRequest {"height": 2262, "view": 0} -2023-12-15T14:49:55.461Z INFO sending Commit {"height": 2262, "view": 0} -2023-12-15T14:49:55.462Z INFO approving block {"height": 2262, "hash": "b48ff8d4787356b85cf2b1eec87688f73a5328a3bb3ae69d1e3f6ab490437b31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f54c3f4bef6057f58d81dea880a04896cb622f9722c44320ac5a871c7c02308"} -2023-12-15T14:49:55.463Z INFO initializing dbft {"height": 2263, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:55.464Z debug frostfs-node/morph.go:229 new block {"index": 2262} -2023-12-15T14:49:56.321Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2262, "blockHeight": 2262, "took": "5.085108ms"} -2023-12-15T14:49:56.463Z INFO sending PrepareRequest {"height": 2263, "view": 0} -2023-12-15T14:49:56.463Z INFO sending Commit {"height": 2263, "view": 0} -2023-12-15T14:49:56.463Z INFO approving block {"height": 2263, "hash": "5c6d899479bcd7a9856be442e84c9280207ba00478ab51b3a800e2780abcb84a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b48ff8d4787356b85cf2b1eec87688f73a5328a3bb3ae69d1e3f6ab490437b31"} -2023-12-15T14:49:56.464Z INFO initializing dbft {"height": 2264, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:56.465Z debug frostfs-node/morph.go:229 new block {"index": 2263} -2023-12-15T14:49:57.322Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2263, "blockHeight": 2263, "took": "4.352621ms"} -2023-12-15T14:49:57.465Z INFO sending PrepareRequest {"height": 2264, "view": 0} -2023-12-15T14:49:57.465Z INFO sending Commit {"height": 2264, "view": 0} -2023-12-15T14:49:57.466Z INFO approving block {"height": 2264, "hash": "eb0ff4ba475d76d477004ab6b7973908f76e71ed742e74320f08ce59509ab3c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c6d899479bcd7a9856be442e84c9280207ba00478ab51b3a800e2780abcb84a"} -2023-12-15T14:49:57.467Z INFO initializing dbft {"height": 2265, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:57.468Z debug frostfs-node/morph.go:229 new block {"index": 2264} -2023-12-15T14:49:58.322Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2264, "blockHeight": 2264, "took": "4.43376ms"} -2023-12-15T14:49:58.467Z INFO sending PrepareRequest {"height": 2265, "view": 0} -2023-12-15T14:49:58.467Z INFO sending Commit {"height": 2265, "view": 0} -2023-12-15T14:49:58.468Z INFO approving block {"height": 2265, "hash": "0dab2cb0450362ae97e069970473dff929a18a94301eb9f376b50892a6cd86a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb0ff4ba475d76d477004ab6b7973908f76e71ed742e74320f08ce59509ab3c2"} -2023-12-15T14:49:58.469Z INFO initializing dbft {"height": 2266, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:58.469Z debug frostfs-node/morph.go:229 new block {"index": 2265} -2023-12-15T14:49:59.323Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2265, "blockHeight": 2265, "took": "4.409431ms"} -2023-12-15T14:49:59.469Z INFO sending PrepareRequest {"height": 2266, "view": 0} -2023-12-15T14:49:59.469Z INFO sending Commit {"height": 2266, "view": 0} -2023-12-15T14:49:59.469Z INFO approving block {"height": 2266, "hash": "a2ca48476d543b20f0c50f312e868ea05d1c85784bd84a45a4489cccf02993d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0dab2cb0450362ae97e069970473dff929a18a94301eb9f376b50892a6cd86a6"} -2023-12-15T14:49:59.471Z INFO initializing dbft {"height": 2267, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:49:59.471Z debug frostfs-node/morph.go:229 new block {"index": 2266} -2023-12-15T14:50:00.327Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2266, "blockHeight": 2266, "took": "7.417247ms"} -2023-12-15T14:50:00.470Z INFO sending PrepareRequest {"height": 2267, "view": 0} -2023-12-15T14:50:00.470Z INFO sending Commit {"height": 2267, "view": 0} -2023-12-15T14:50:00.471Z INFO approving block {"height": 2267, "hash": "6cf77997248da44dffe029101f61f6efe03351d0955da4f1132eb5b20063c8f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2ca48476d543b20f0c50f312e868ea05d1c85784bd84a45a4489cccf02993d8"} -2023-12-15T14:50:00.472Z INFO initializing dbft {"height": 2268, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:00.473Z debug frostfs-node/morph.go:229 new block {"index": 2267} -2023-12-15T14:50:00.474Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:50:00.477Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:50:00.477Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:50:01.325Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2267, "blockHeight": 2267, "took": "4.358418ms"} -2023-12-15T14:50:01.472Z INFO sending PrepareRequest {"height": 2268, "view": 0} -2023-12-15T14:50:01.473Z INFO sending Commit {"height": 2268, "view": 0} -2023-12-15T14:50:01.473Z INFO approving block {"height": 2268, "hash": "4ef10861572369b3b345cb5c09e1b9edf2c6d857d390aa993be6b26d86558906", "tx_count": 2, "merkle": "bbd4e9d6e8fba4b9d35e94dfd1725ec502dd9dcfa8b7fee9d049a3c5e1225990", "prev": "6cf77997248da44dffe029101f61f6efe03351d0955da4f1132eb5b20063c8f2"} -2023-12-15T14:50:01.474Z INFO runtime log {"tx": "ba59b4a4fdcba9b2299006ddc74f0bf7f70339a8c604a30487fb0a197c951725", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:50:01.474Z INFO runtime log {"tx": "ba59b4a4fdcba9b2299006ddc74f0bf7f70339a8c604a30487fb0a197c951725", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:50:01.475Z INFO initializing dbft {"height": 2269, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:01.476Z debug frostfs-node/morph.go:229 new block {"index": 2268} -2023-12-15T14:50:02.328Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2268, "blockHeight": 2268, "took": "6.812118ms"} -2023-12-15T14:50:02.474Z INFO sending PrepareRequest {"height": 2269, "view": 0} -2023-12-15T14:50:02.474Z INFO sending Commit {"height": 2269, "view": 0} -2023-12-15T14:50:02.475Z INFO approving block {"height": 2269, "hash": "a8197c755870306e6daa93d0f181a8c782c73124846be67e2a92758838a4b943", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ef10861572369b3b345cb5c09e1b9edf2c6d857d390aa993be6b26d86558906"} -2023-12-15T14:50:02.476Z INFO initializing dbft {"height": 2270, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:02.477Z debug frostfs-node/morph.go:229 new block {"index": 2269} -2023-12-15T14:50:03.325Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2269, "blockHeight": 2269, "took": "3.026359ms"} -2023-12-15T14:50:03.476Z INFO sending PrepareRequest {"height": 2270, "view": 0} -2023-12-15T14:50:03.476Z INFO sending Commit {"height": 2270, "view": 0} -2023-12-15T14:50:03.476Z INFO approving block {"height": 2270, "hash": "bef903632e46d2d90a77dea916c20b7c60298e3958beba1b480c6c4e64254d4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8197c755870306e6daa93d0f181a8c782c73124846be67e2a92758838a4b943"} -2023-12-15T14:50:03.477Z INFO initializing dbft {"height": 2271, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:03.478Z debug frostfs-node/morph.go:229 new block {"index": 2270} -2023-12-15T14:50:04.326Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2270, "blockHeight": 2270, "took": "3.736158ms"} -2023-12-15T14:50:04.477Z INFO sending PrepareRequest {"height": 2271, "view": 0} -2023-12-15T14:50:04.477Z INFO sending Commit {"height": 2271, "view": 0} -2023-12-15T14:50:04.478Z INFO approving block {"height": 2271, "hash": "c1541df119da3186501c019d96e5e4b784872c6a37a81e6fbb185ea43c32008f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bef903632e46d2d90a77dea916c20b7c60298e3958beba1b480c6c4e64254d4d"} -2023-12-15T14:50:04.479Z INFO initializing dbft {"height": 2272, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:04.479Z debug frostfs-node/morph.go:229 new block {"index": 2271} -2023-12-15T14:50:05.328Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2271, "blockHeight": 2271, "took": "4.730402ms"} -2023-12-15T14:50:05.479Z INFO sending PrepareRequest {"height": 2272, "view": 0} -2023-12-15T14:50:05.479Z INFO sending Commit {"height": 2272, "view": 0} -2023-12-15T14:50:05.479Z INFO approving block {"height": 2272, "hash": "f6eec605961f521a6d99f9641b870da6b86eabe8be2211e3f07df09fa480d0c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1541df119da3186501c019d96e5e4b784872c6a37a81e6fbb185ea43c32008f"} -2023-12-15T14:50:05.480Z INFO initializing dbft {"height": 2273, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:05.481Z debug frostfs-node/morph.go:229 new block {"index": 2272} -2023-12-15T14:50:06.328Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2272, "blockHeight": 2272, "took": "4.613627ms"} -2023-12-15T14:50:06.480Z INFO sending PrepareRequest {"height": 2273, "view": 0} -2023-12-15T14:50:06.480Z INFO sending Commit {"height": 2273, "view": 0} -2023-12-15T14:50:06.481Z INFO approving block {"height": 2273, "hash": "951600580e9e0bba14a416570674a8d4feaf817c825de0d9867a14ea88459b4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6eec605961f521a6d99f9641b870da6b86eabe8be2211e3f07df09fa480d0c8"} -2023-12-15T14:50:06.482Z INFO initializing dbft {"height": 2274, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:06.483Z debug frostfs-node/morph.go:229 new block {"index": 2273} -2023-12-15T14:50:07.328Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2273, "blockHeight": 2273, "took": "4.074546ms"} -2023-12-15T14:50:07.482Z INFO sending PrepareRequest {"height": 2274, "view": 0} -2023-12-15T14:50:07.482Z INFO sending Commit {"height": 2274, "view": 0} -2023-12-15T14:50:07.483Z INFO approving block {"height": 2274, "hash": "6c31aadcfbc7a0a33565a851b7c1543c995d8bacc858d13671b0d7f01403ce08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "951600580e9e0bba14a416570674a8d4feaf817c825de0d9867a14ea88459b4d"} -2023-12-15T14:50:07.484Z INFO initializing dbft {"height": 2275, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:07.484Z debug frostfs-node/morph.go:229 new block {"index": 2274} -2023-12-15T14:50:08.329Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2274, "blockHeight": 2274, "took": "4.613084ms"} -2023-12-15T14:50:08.483Z INFO sending PrepareRequest {"height": 2275, "view": 0} -2023-12-15T14:50:08.483Z INFO sending Commit {"height": 2275, "view": 0} -2023-12-15T14:50:08.483Z INFO approving block {"height": 2275, "hash": "9aea8c95946dca79a61bce85a44caad75ecb41d218d7e99fe550128ee4fb5b93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c31aadcfbc7a0a33565a851b7c1543c995d8bacc858d13671b0d7f01403ce08"} -2023-12-15T14:50:08.484Z INFO initializing dbft {"height": 2276, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:08.485Z debug frostfs-node/morph.go:229 new block {"index": 2275} -2023-12-15T14:50:09.330Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2275, "blockHeight": 2275, "took": "4.679266ms"} -2023-12-15T14:50:09.485Z INFO sending PrepareRequest {"height": 2276, "view": 0} -2023-12-15T14:50:09.485Z INFO sending Commit {"height": 2276, "view": 0} -2023-12-15T14:50:09.485Z INFO approving block {"height": 2276, "hash": "2bf4e302d2960c80b613111f9019e086bcaf1d6e9de64fb71865693c0b54c919", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9aea8c95946dca79a61bce85a44caad75ecb41d218d7e99fe550128ee4fb5b93"} -2023-12-15T14:50:09.486Z INFO initializing dbft {"height": 2277, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:09.486Z debug frostfs-node/morph.go:229 new block {"index": 2276} -2023-12-15T14:50:10.330Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2276, "blockHeight": 2276, "took": "4.387666ms"} -2023-12-15T14:50:10.486Z INFO sending PrepareRequest {"height": 2277, "view": 0} -2023-12-15T14:50:10.487Z INFO sending Commit {"height": 2277, "view": 0} -2023-12-15T14:50:10.487Z INFO approving block {"height": 2277, "hash": "63490f4f8012bfcbdb2cf88cf56e689afc439f5f44bf3a5583674961a7a39014", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2bf4e302d2960c80b613111f9019e086bcaf1d6e9de64fb71865693c0b54c919"} -2023-12-15T14:50:10.488Z INFO initializing dbft {"height": 2278, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:10.488Z debug frostfs-node/morph.go:229 new block {"index": 2277} -2023-12-15T14:50:11.331Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2277, "blockHeight": 2277, "took": "5.02691ms"} -2023-12-15T14:50:11.488Z INFO sending PrepareRequest {"height": 2278, "view": 0} -2023-12-15T14:50:11.488Z INFO sending Commit {"height": 2278, "view": 0} -2023-12-15T14:50:11.489Z INFO approving block {"height": 2278, "hash": "dc6fea2c1e11be59709970df8570ffb3ec333659aa7ff9f299c8d0fcf3e740e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63490f4f8012bfcbdb2cf88cf56e689afc439f5f44bf3a5583674961a7a39014"} -2023-12-15T14:50:11.489Z INFO initializing dbft {"height": 2279, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:11.490Z debug frostfs-node/morph.go:229 new block {"index": 2278} -2023-12-15T14:50:12.331Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2278, "blockHeight": 2278, "took": "4.398298ms"} -2023-12-15T14:50:12.490Z INFO sending PrepareRequest {"height": 2279, "view": 0} -2023-12-15T14:50:12.490Z INFO sending Commit {"height": 2279, "view": 0} -2023-12-15T14:50:12.491Z INFO approving block {"height": 2279, "hash": "d7ab05d022a54d211669b943ea840e66a127531e42e6b16006970f574a7ae855", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc6fea2c1e11be59709970df8570ffb3ec333659aa7ff9f299c8d0fcf3e740e0"} -2023-12-15T14:50:12.492Z INFO initializing dbft {"height": 2280, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:12.493Z debug frostfs-node/morph.go:229 new block {"index": 2279} -2023-12-15T14:50:13.330Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2279, "blockHeight": 2279, "took": "2.808621ms"} -2023-12-15T14:50:13.492Z INFO sending PrepareRequest {"height": 2280, "view": 0} -2023-12-15T14:50:13.492Z INFO sending Commit {"height": 2280, "view": 0} -2023-12-15T14:50:13.493Z INFO approving block {"height": 2280, "hash": "d39427c54890df9c793df01216814e2f61651d7b2d74db7cb135cf4202300a22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7ab05d022a54d211669b943ea840e66a127531e42e6b16006970f574a7ae855"} -2023-12-15T14:50:13.493Z INFO initializing dbft {"height": 2281, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:13.494Z debug frostfs-node/morph.go:229 new block {"index": 2280} -2023-12-15T14:50:14.332Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2280, "blockHeight": 2280, "took": "3.841846ms"} -2023-12-15T14:50:14.494Z INFO sending PrepareRequest {"height": 2281, "view": 0} -2023-12-15T14:50:14.494Z INFO sending Commit {"height": 2281, "view": 0} -2023-12-15T14:50:14.494Z INFO approving block {"height": 2281, "hash": "c97104d7570c0c546f8df6c8c6e34b7d5e02c1fdd31ec0b187df4599d0475bd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d39427c54890df9c793df01216814e2f61651d7b2d74db7cb135cf4202300a22"} -2023-12-15T14:50:14.495Z INFO initializing dbft {"height": 2282, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:14.495Z debug frostfs-node/morph.go:229 new block {"index": 2281} -2023-12-15T14:50:15.333Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2281, "blockHeight": 2281, "took": "4.631954ms"} -2023-12-15T14:50:15.495Z INFO sending PrepareRequest {"height": 2282, "view": 0} -2023-12-15T14:50:15.495Z INFO sending Commit {"height": 2282, "view": 0} -2023-12-15T14:50:15.496Z INFO approving block {"height": 2282, "hash": "c0a0be2172849340dd12deb1fd5929ba5f7437090135e6c81cacad26bf4dfa05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c97104d7570c0c546f8df6c8c6e34b7d5e02c1fdd31ec0b187df4599d0475bd1"} -2023-12-15T14:50:15.496Z INFO initializing dbft {"height": 2283, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:15.497Z debug frostfs-node/morph.go:229 new block {"index": 2282} -2023-12-15T14:50:16.333Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2282, "blockHeight": 2282, "took": "4.105003ms"} -2023-12-15T14:50:16.497Z INFO sending PrepareRequest {"height": 2283, "view": 0} -2023-12-15T14:50:16.497Z INFO sending Commit {"height": 2283, "view": 0} -2023-12-15T14:50:16.497Z INFO approving block {"height": 2283, "hash": "cd3f5a588f3bf6ad1519121ad61b70fd0379f426d0870acaaa07c361fd48e9f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0a0be2172849340dd12deb1fd5929ba5f7437090135e6c81cacad26bf4dfa05"} -2023-12-15T14:50:16.498Z INFO initializing dbft {"height": 2284, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:16.499Z debug frostfs-node/morph.go:229 new block {"index": 2283} -2023-12-15T14:50:17.334Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2283, "blockHeight": 2283, "took": "3.985256ms"} -2023-12-15T14:50:17.498Z INFO sending PrepareRequest {"height": 2284, "view": 0} -2023-12-15T14:50:17.499Z INFO sending Commit {"height": 2284, "view": 0} -2023-12-15T14:50:17.499Z INFO approving block {"height": 2284, "hash": "2df9efabf3d212d023c571158c412c1d403e56255852a9dd5ab315522dfc82d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd3f5a588f3bf6ad1519121ad61b70fd0379f426d0870acaaa07c361fd48e9f4"} -2023-12-15T14:50:17.500Z INFO initializing dbft {"height": 2285, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:17.501Z debug frostfs-node/morph.go:229 new block {"index": 2284} -2023-12-15T14:50:18.334Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2284, "blockHeight": 2284, "took": "4.237873ms"} -2023-12-15T14:50:18.500Z INFO sending PrepareRequest {"height": 2285, "view": 0} -2023-12-15T14:50:18.500Z INFO sending Commit {"height": 2285, "view": 0} -2023-12-15T14:50:18.500Z INFO approving block {"height": 2285, "hash": "86254f1b22556d863ae1524ef00a8b256cc08dfbc3ec6c2485f2f2e97b60c61b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2df9efabf3d212d023c571158c412c1d403e56255852a9dd5ab315522dfc82d0"} -2023-12-15T14:50:18.501Z INFO initializing dbft {"height": 2286, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:18.501Z debug frostfs-node/morph.go:229 new block {"index": 2285} -2023-12-15T14:50:19.335Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2285, "blockHeight": 2285, "took": "4.510377ms"} -2023-12-15T14:50:19.502Z INFO sending PrepareRequest {"height": 2286, "view": 0} -2023-12-15T14:50:19.502Z INFO sending Commit {"height": 2286, "view": 0} -2023-12-15T14:50:19.502Z INFO approving block {"height": 2286, "hash": "905ca0867212b9d35b0d2c4855591e660cd46c3298e173c7404893f043d8ed38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86254f1b22556d863ae1524ef00a8b256cc08dfbc3ec6c2485f2f2e97b60c61b"} -2023-12-15T14:50:19.503Z INFO initializing dbft {"height": 2287, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:19.503Z debug frostfs-node/morph.go:229 new block {"index": 2286} -2023-12-15T14:50:20.335Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2286, "blockHeight": 2286, "took": "3.930071ms"} -2023-12-15T14:50:20.503Z INFO sending PrepareRequest {"height": 2287, "view": 0} -2023-12-15T14:50:20.503Z INFO sending Commit {"height": 2287, "view": 0} -2023-12-15T14:50:20.503Z INFO approving block {"height": 2287, "hash": "4540dfe30e62b2e441461d327c42d24cba27b87a43fa45de26e89f2ea34c9bbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "905ca0867212b9d35b0d2c4855591e660cd46c3298e173c7404893f043d8ed38"} -2023-12-15T14:50:20.505Z INFO initializing dbft {"height": 2288, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:20.505Z debug frostfs-node/morph.go:229 new block {"index": 2287} -2023-12-15T14:50:21.337Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2287, "blockHeight": 2287, "took": "5.775395ms"} -2023-12-15T14:50:21.505Z INFO sending PrepareRequest {"height": 2288, "view": 0} -2023-12-15T14:50:21.505Z INFO sending Commit {"height": 2288, "view": 0} -2023-12-15T14:50:21.505Z INFO approving block {"height": 2288, "hash": "cf7dae0124c25093e86eb305fad2437661e08b50d167fc1dcdd23e12ada70d39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4540dfe30e62b2e441461d327c42d24cba27b87a43fa45de26e89f2ea34c9bbb"} -2023-12-15T14:50:21.506Z INFO initializing dbft {"height": 2289, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:21.507Z debug frostfs-node/morph.go:229 new block {"index": 2288} -2023-12-15T14:50:22.336Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2288, "blockHeight": 2288, "took": "3.459821ms"} -2023-12-15T14:50:22.506Z INFO sending PrepareRequest {"height": 2289, "view": 0} -2023-12-15T14:50:22.506Z INFO sending Commit {"height": 2289, "view": 0} -2023-12-15T14:50:22.506Z INFO approving block {"height": 2289, "hash": "6ec7ad1ca377dde4f5f889f77cfd80088aad0ed2b9770767bc049b72d064d433", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf7dae0124c25093e86eb305fad2437661e08b50d167fc1dcdd23e12ada70d39"} -2023-12-15T14:50:22.507Z INFO initializing dbft {"height": 2290, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:22.508Z debug frostfs-node/morph.go:229 new block {"index": 2289} -2023-12-15T14:50:22.510Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 10, "iteration": 1, "error": "no data for 0 iteration in 10 epoch for consumers's trusts"} -2023-12-15T14:50:22.511Z info settlement/calls.go:61 start basic income collection {"epoch": 10} -2023-12-15T14:50:23.337Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2289, "blockHeight": 2289, "took": "3.953791ms"} -2023-12-15T14:50:23.507Z INFO sending PrepareRequest {"height": 2290, "view": 0} -2023-12-15T14:50:23.508Z INFO sending Commit {"height": 2290, "view": 0} -2023-12-15T14:50:23.508Z INFO approving block {"height": 2290, "hash": "1d6070cfa1440c5f8614825af7ed2de65c0004586ebd34f94c091326ce211023", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ec7ad1ca377dde4f5f889f77cfd80088aad0ed2b9770767bc049b72d064d433"} -2023-12-15T14:50:23.509Z INFO initializing dbft {"height": 2291, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:23.509Z debug frostfs-node/morph.go:229 new block {"index": 2290} -2023-12-15T14:50:24.339Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2290, "blockHeight": 2290, "took": "5.259736ms"} -2023-12-15T14:50:24.509Z INFO sending PrepareRequest {"height": 2291, "view": 0} -2023-12-15T14:50:24.510Z INFO sending Commit {"height": 2291, "view": 0} -2023-12-15T14:50:24.510Z INFO approving block {"height": 2291, "hash": "e22e2d57caa2a6a169d532fa41943a6bcd74a446ced42fc5794f55e100044ce0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d6070cfa1440c5f8614825af7ed2de65c0004586ebd34f94c091326ce211023"} -2023-12-15T14:50:24.512Z INFO initializing dbft {"height": 2292, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:24.512Z debug frostfs-node/morph.go:229 new block {"index": 2291} -2023-12-15T14:50:25.338Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2291, "blockHeight": 2291, "took": "3.737989ms"} -2023-12-15T14:50:25.511Z INFO sending PrepareRequest {"height": 2292, "view": 0} -2023-12-15T14:50:25.511Z INFO sending Commit {"height": 2292, "view": 0} -2023-12-15T14:50:25.512Z INFO approving block {"height": 2292, "hash": "c69207d80a5bb6e6e8317fa353fcb34b15d0f9706e9321d78052661d718b67de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e22e2d57caa2a6a169d532fa41943a6bcd74a446ced42fc5794f55e100044ce0"} -2023-12-15T14:50:25.513Z INFO initializing dbft {"height": 2293, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:25.513Z debug frostfs-node/morph.go:229 new block {"index": 2292} -2023-12-15T14:50:26.338Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2292, "blockHeight": 2292, "took": "3.916452ms"} -2023-12-15T14:50:26.513Z INFO sending PrepareRequest {"height": 2293, "view": 0} -2023-12-15T14:50:26.513Z INFO sending Commit {"height": 2293, "view": 0} -2023-12-15T14:50:26.513Z INFO approving block {"height": 2293, "hash": "d6e4d7639af62619ba1449907bec4a65a2695f4568619c20b62c0c2bde4ec26b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c69207d80a5bb6e6e8317fa353fcb34b15d0f9706e9321d78052661d718b67de"} -2023-12-15T14:50:26.514Z INFO initializing dbft {"height": 2294, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:26.515Z debug frostfs-node/morph.go:229 new block {"index": 2293} -2023-12-15T14:50:27.339Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2293, "blockHeight": 2293, "took": "4.315119ms"} -2023-12-15T14:50:27.514Z INFO sending PrepareRequest {"height": 2294, "view": 0} -2023-12-15T14:50:27.514Z INFO sending Commit {"height": 2294, "view": 0} -2023-12-15T14:50:27.514Z INFO approving block {"height": 2294, "hash": "d652a5e20fca5cb37f081edb7945143b4d83bf09bb93be7a201c144fa7eb221c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6e4d7639af62619ba1449907bec4a65a2695f4568619c20b62c0c2bde4ec26b"} -2023-12-15T14:50:27.515Z INFO initializing dbft {"height": 2295, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:27.516Z debug frostfs-node/morph.go:229 new block {"index": 2294} -2023-12-15T14:50:28.339Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2294, "blockHeight": 2294, "took": "3.90124ms"} -2023-12-15T14:50:28.515Z INFO sending PrepareRequest {"height": 2295, "view": 0} -2023-12-15T14:50:28.515Z INFO sending Commit {"height": 2295, "view": 0} -2023-12-15T14:50:28.515Z INFO approving block {"height": 2295, "hash": "8eadd1fb7d482be30cb8c7a790aebd501d83f6b2086b87d9034398f0ab024fe7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d652a5e20fca5cb37f081edb7945143b4d83bf09bb93be7a201c144fa7eb221c"} -2023-12-15T14:50:28.516Z INFO initializing dbft {"height": 2296, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:28.516Z debug frostfs-node/morph.go:229 new block {"index": 2295} -2023-12-15T14:50:29.341Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2295, "blockHeight": 2295, "took": "5.467249ms"} -2023-12-15T14:50:29.516Z INFO sending PrepareRequest {"height": 2296, "view": 0} -2023-12-15T14:50:29.517Z INFO sending Commit {"height": 2296, "view": 0} -2023-12-15T14:50:29.517Z INFO approving block {"height": 2296, "hash": "58790884339d10ca9af9e815da715d913f9c8dae641c4071ac306fb004fe8ec6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8eadd1fb7d482be30cb8c7a790aebd501d83f6b2086b87d9034398f0ab024fe7"} -2023-12-15T14:50:29.517Z INFO initializing dbft {"height": 2297, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:29.518Z debug frostfs-node/morph.go:229 new block {"index": 2296} -2023-12-15T14:50:30.340Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2296, "blockHeight": 2296, "took": "4.094085ms"} -2023-12-15T14:50:30.518Z INFO sending PrepareRequest {"height": 2297, "view": 0} -2023-12-15T14:50:30.518Z INFO sending Commit {"height": 2297, "view": 0} -2023-12-15T14:50:30.518Z INFO approving block {"height": 2297, "hash": "f2af833ac69b3b292c15efe846a07c8d59aeb78264f45710e9ade4f5dcda5557", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58790884339d10ca9af9e815da715d913f9c8dae641c4071ac306fb004fe8ec6"} -2023-12-15T14:50:30.519Z INFO initializing dbft {"height": 2298, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:30.520Z debug frostfs-node/morph.go:229 new block {"index": 2297} -2023-12-15T14:50:31.341Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2297, "blockHeight": 2297, "took": "3.784177ms"} -2023-12-15T14:50:31.520Z INFO sending PrepareRequest {"height": 2298, "view": 0} -2023-12-15T14:50:31.520Z INFO sending Commit {"height": 2298, "view": 0} -2023-12-15T14:50:31.520Z INFO approving block {"height": 2298, "hash": "6cd10a58ad27d2f82ea3f9ff7d6256ba4412c218cce287c8a9c9ddf004c58940", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2af833ac69b3b292c15efe846a07c8d59aeb78264f45710e9ade4f5dcda5557"} -2023-12-15T14:50:31.522Z INFO initializing dbft {"height": 2299, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:31.522Z debug frostfs-node/morph.go:229 new block {"index": 2298} -2023-12-15T14:50:32.340Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2298, "blockHeight": 2298, "took": "3.118778ms"} -2023-12-15T14:50:32.521Z INFO sending PrepareRequest {"height": 2299, "view": 0} -2023-12-15T14:50:32.521Z INFO sending Commit {"height": 2299, "view": 0} -2023-12-15T14:50:32.522Z INFO approving block {"height": 2299, "hash": "81459b04300e24142696f17f643965de3aed206a22ba3816f75b710610de3c58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cd10a58ad27d2f82ea3f9ff7d6256ba4412c218cce287c8a9c9ddf004c58940"} -2023-12-15T14:50:32.523Z INFO initializing dbft {"height": 2300, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:32.524Z debug frostfs-node/morph.go:229 new block {"index": 2299} -2023-12-15T14:50:33.342Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2299, "blockHeight": 2299, "took": "4.488245ms"} -2023-12-15T14:50:33.522Z INFO sending PrepareRequest {"height": 2300, "view": 0} -2023-12-15T14:50:33.522Z INFO sending Commit {"height": 2300, "view": 0} -2023-12-15T14:50:33.523Z INFO approving block {"height": 2300, "hash": "8e7f1bbcd8f5fb4a6d465c6f89fd8e08e27825fa1a792fed8f861f8d95e14aa2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81459b04300e24142696f17f643965de3aed206a22ba3816f75b710610de3c58"} -2023-12-15T14:50:33.523Z INFO initializing dbft {"height": 2301, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:33.524Z debug frostfs-node/morph.go:229 new block {"index": 2300} -2023-12-15T14:50:34.346Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2300, "blockHeight": 2300, "took": "7.847576ms"} -2023-12-15T14:50:34.524Z INFO sending PrepareRequest {"height": 2301, "view": 0} -2023-12-15T14:50:34.524Z INFO sending Commit {"height": 2301, "view": 0} -2023-12-15T14:50:34.524Z INFO approving block {"height": 2301, "hash": "a8456f0f3a7e2d39b84c2156f855c62f73d828ec4907bba24ed5c38823df77cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e7f1bbcd8f5fb4a6d465c6f89fd8e08e27825fa1a792fed8f861f8d95e14aa2"} -2023-12-15T14:50:34.526Z INFO initializing dbft {"height": 2302, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:34.526Z debug frostfs-node/morph.go:229 new block {"index": 2301} -2023-12-15T14:50:35.342Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2301, "blockHeight": 2301, "took": "3.398355ms"} -2023-12-15T14:50:35.525Z INFO sending PrepareRequest {"height": 2302, "view": 0} -2023-12-15T14:50:35.526Z INFO sending Commit {"height": 2302, "view": 0} -2023-12-15T14:50:35.526Z INFO approving block {"height": 2302, "hash": "9e97c07eb2483aae952ada94c24874f06dcfc1372f0e2671ede2d4ead3f43b7e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8456f0f3a7e2d39b84c2156f855c62f73d828ec4907bba24ed5c38823df77cd"} -2023-12-15T14:50:35.527Z INFO initializing dbft {"height": 2303, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:35.527Z debug frostfs-node/morph.go:229 new block {"index": 2302} -2023-12-15T14:50:36.343Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2302, "blockHeight": 2302, "took": "3.783394ms"} -2023-12-15T14:50:36.527Z INFO sending PrepareRequest {"height": 2303, "view": 0} -2023-12-15T14:50:36.527Z INFO sending Commit {"height": 2303, "view": 0} -2023-12-15T14:50:36.528Z INFO approving block {"height": 2303, "hash": "cf05fcd9d52f553b4eeaae40eb988ada28769cf0c181e794704dad439354e725", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e97c07eb2483aae952ada94c24874f06dcfc1372f0e2671ede2d4ead3f43b7e"} -2023-12-15T14:50:36.529Z INFO initializing dbft {"height": 2304, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:36.529Z debug frostfs-node/morph.go:229 new block {"index": 2303} -2023-12-15T14:50:37.344Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 2303, "blockHeight": 2303, "took": "3.994056ms"} -2023-12-15T14:50:37.528Z INFO sending PrepareRequest {"height": 2304, "view": 0} -2023-12-15T14:50:37.528Z INFO sending Commit {"height": 2304, "view": 0} -2023-12-15T14:50:37.529Z INFO approving block {"height": 2304, "hash": "21da6b746c9be76d938404b15ada1c674e7d22a3dfd29fd3aeff3ea884e50dc8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf05fcd9d52f553b4eeaae40eb988ada28769cf0c181e794704dad439354e725"} -2023-12-15T14:50:37.529Z INFO initializing dbft {"height": 2305, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:37.530Z debug frostfs-node/morph.go:229 new block {"index": 2304} -2023-12-15T14:50:38.343Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2304, "blockHeight": 2304, "took": "3.408979ms"} -2023-12-15T14:50:38.530Z INFO sending PrepareRequest {"height": 2305, "view": 0} -2023-12-15T14:50:38.530Z INFO sending Commit {"height": 2305, "view": 0} -2023-12-15T14:50:38.530Z INFO approving block {"height": 2305, "hash": "3c2f04b4d144f9bf0bd4dcdc76608fec559967753b77d63d8b179af95d47687c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21da6b746c9be76d938404b15ada1c674e7d22a3dfd29fd3aeff3ea884e50dc8"} -2023-12-15T14:50:38.531Z INFO initializing dbft {"height": 2306, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:38.532Z debug frostfs-node/morph.go:229 new block {"index": 2305} -2023-12-15T14:50:39.345Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2305, "blockHeight": 2305, "took": "4.317193ms"} -2023-12-15T14:50:39.532Z INFO sending PrepareRequest {"height": 2306, "view": 0} -2023-12-15T14:50:39.532Z INFO sending Commit {"height": 2306, "view": 0} -2023-12-15T14:50:39.532Z INFO approving block {"height": 2306, "hash": "6db49b8e7517503095b36384d42f21b00c813cf327c207a169828d0945ab2907", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c2f04b4d144f9bf0bd4dcdc76608fec559967753b77d63d8b179af95d47687c"} -2023-12-15T14:50:39.534Z INFO initializing dbft {"height": 2307, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:39.534Z debug frostfs-node/morph.go:229 new block {"index": 2306} -2023-12-15T14:50:40.344Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2306, "blockHeight": 2306, "took": "3.292266ms"} -2023-12-15T14:50:40.533Z INFO sending PrepareRequest {"height": 2307, "view": 0} -2023-12-15T14:50:40.533Z INFO sending Commit {"height": 2307, "view": 0} -2023-12-15T14:50:40.533Z INFO approving block {"height": 2307, "hash": "eb92eb782877cf0d17d3c5ab7be46bbd7dedc1cb4b77ea0e9a31625181d75807", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6db49b8e7517503095b36384d42f21b00c813cf327c207a169828d0945ab2907"} -2023-12-15T14:50:40.534Z INFO initializing dbft {"height": 2308, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:40.535Z debug frostfs-node/morph.go:229 new block {"index": 2307} -2023-12-15T14:50:41.347Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2307, "blockHeight": 2307, "took": "4.736364ms"} -2023-12-15T14:50:41.535Z INFO sending PrepareRequest {"height": 2308, "view": 0} -2023-12-15T14:50:41.535Z INFO sending Commit {"height": 2308, "view": 0} -2023-12-15T14:50:41.535Z INFO approving block {"height": 2308, "hash": "ab8efef32d1672cbdbcdea1d2939530035e296d2783f7b39a15e5d0985ac69f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb92eb782877cf0d17d3c5ab7be46bbd7dedc1cb4b77ea0e9a31625181d75807"} -2023-12-15T14:50:41.536Z INFO initializing dbft {"height": 2309, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:41.536Z debug frostfs-node/morph.go:229 new block {"index": 2308} -2023-12-15T14:50:42.347Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2308, "blockHeight": 2308, "took": "4.355947ms"} -2023-12-15T14:50:42.536Z INFO sending PrepareRequest {"height": 2309, "view": 0} -2023-12-15T14:50:42.536Z INFO sending Commit {"height": 2309, "view": 0} -2023-12-15T14:50:42.537Z INFO approving block {"height": 2309, "hash": "cc39b46b726b2d0b904d8e35602f342a7aa7f3340fd18a4e8acfb1ef77a38fd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab8efef32d1672cbdbcdea1d2939530035e296d2783f7b39a15e5d0985ac69f5"} -2023-12-15T14:50:42.538Z INFO initializing dbft {"height": 2310, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:42.539Z debug frostfs-node/morph.go:229 new block {"index": 2309} -2023-12-15T14:50:43.346Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2309, "blockHeight": 2309, "took": "3.568704ms"} -2023-12-15T14:50:43.538Z INFO sending PrepareRequest {"height": 2310, "view": 0} -2023-12-15T14:50:43.538Z INFO sending Commit {"height": 2310, "view": 0} -2023-12-15T14:50:43.538Z INFO approving block {"height": 2310, "hash": "4e6ac558d2f39fd82297b33da26ba7f82b791f2fec5315527a98150413118252", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc39b46b726b2d0b904d8e35602f342a7aa7f3340fd18a4e8acfb1ef77a38fd6"} -2023-12-15T14:50:43.539Z INFO initializing dbft {"height": 2311, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:43.539Z debug frostfs-node/morph.go:229 new block {"index": 2310} -2023-12-15T14:50:44.346Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2310, "blockHeight": 2310, "took": "3.023228ms"} -2023-12-15T14:50:44.540Z INFO sending PrepareRequest {"height": 2311, "view": 0} -2023-12-15T14:50:44.541Z INFO sending Commit {"height": 2311, "view": 0} -2023-12-15T14:50:44.542Z INFO approving block {"height": 2311, "hash": "df4f963e3c3e5278c82153bebcf037186ab57b47265f5bd163f7592eb872eade", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e6ac558d2f39fd82297b33da26ba7f82b791f2fec5315527a98150413118252"} -2023-12-15T14:50:44.543Z INFO initializing dbft {"height": 2312, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:44.544Z debug frostfs-node/morph.go:229 new block {"index": 2311} -2023-12-15T14:50:45.348Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2311, "blockHeight": 2311, "took": "4.16475ms"} -2023-12-15T14:50:45.543Z INFO sending PrepareRequest {"height": 2312, "view": 0} -2023-12-15T14:50:45.544Z INFO sending Commit {"height": 2312, "view": 0} -2023-12-15T14:50:45.544Z INFO approving block {"height": 2312, "hash": "339e6d43d9ff33bf223ac8d1072beca738a56b0d3e6cf3cf588185e5f06062b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df4f963e3c3e5278c82153bebcf037186ab57b47265f5bd163f7592eb872eade"} -2023-12-15T14:50:45.545Z INFO initializing dbft {"height": 2313, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:45.546Z debug frostfs-node/morph.go:229 new block {"index": 2312} -2023-12-15T14:50:46.348Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2312, "blockHeight": 2312, "took": "3.19617ms"} -2023-12-15T14:50:46.545Z INFO sending PrepareRequest {"height": 2313, "view": 0} -2023-12-15T14:50:46.545Z INFO sending Commit {"height": 2313, "view": 0} -2023-12-15T14:50:46.545Z INFO approving block {"height": 2313, "hash": "86edd22459c596282b2a5ebe549b823e78bbbca38fe16deeaa56f37765be5e93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "339e6d43d9ff33bf223ac8d1072beca738a56b0d3e6cf3cf588185e5f06062b3"} -2023-12-15T14:50:46.546Z INFO initializing dbft {"height": 2314, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:46.547Z debug frostfs-node/morph.go:229 new block {"index": 2313} -2023-12-15T14:50:47.349Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2313, "blockHeight": 2313, "took": "3.679056ms"} -2023-12-15T14:50:47.546Z INFO sending PrepareRequest {"height": 2314, "view": 0} -2023-12-15T14:50:47.546Z INFO sending Commit {"height": 2314, "view": 0} -2023-12-15T14:50:47.546Z INFO approving block {"height": 2314, "hash": "961769ae537b8f4e25e12187cb9f523db46205aa23181e7ed98b46c3adbc5969", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86edd22459c596282b2a5ebe549b823e78bbbca38fe16deeaa56f37765be5e93"} -2023-12-15T14:50:47.547Z INFO initializing dbft {"height": 2315, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:47.548Z debug frostfs-node/morph.go:229 new block {"index": 2314} -2023-12-15T14:50:48.354Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2314, "blockHeight": 2314, "took": "7.910248ms"} -2023-12-15T14:50:48.547Z INFO sending PrepareRequest {"height": 2315, "view": 0} -2023-12-15T14:50:48.548Z INFO sending Commit {"height": 2315, "view": 0} -2023-12-15T14:50:48.548Z INFO approving block {"height": 2315, "hash": "1136204afccb56b5d386d9543d52d6923ba7487bf4c1e00ff61c23547edeb078", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "961769ae537b8f4e25e12187cb9f523db46205aa23181e7ed98b46c3adbc5969"} -2023-12-15T14:50:48.549Z INFO initializing dbft {"height": 2316, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:48.550Z debug frostfs-node/morph.go:229 new block {"index": 2315} -2023-12-15T14:50:49.349Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2315, "blockHeight": 2315, "took": "3.106441ms"} -2023-12-15T14:50:49.549Z INFO sending PrepareRequest {"height": 2316, "view": 0} -2023-12-15T14:50:49.549Z INFO sending Commit {"height": 2316, "view": 0} -2023-12-15T14:50:49.549Z INFO approving block {"height": 2316, "hash": "ee413fd3da552990159e6f61b0cce2881dcab4962943819f1bbd6f47c48f790c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1136204afccb56b5d386d9543d52d6923ba7487bf4c1e00ff61c23547edeb078"} -2023-12-15T14:50:49.550Z INFO initializing dbft {"height": 2317, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:49.551Z debug frostfs-node/morph.go:229 new block {"index": 2316} -2023-12-15T14:50:50.352Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2316, "blockHeight": 2316, "took": "5.446072ms"} -2023-12-15T14:50:50.550Z INFO sending PrepareRequest {"height": 2317, "view": 0} -2023-12-15T14:50:50.551Z INFO sending Commit {"height": 2317, "view": 0} -2023-12-15T14:50:50.551Z INFO approving block {"height": 2317, "hash": "2049f0c0f7a285c4dbeb65c8748eadd171a611d7e429199af12cb713a78b00c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee413fd3da552990159e6f61b0cce2881dcab4962943819f1bbd6f47c48f790c"} -2023-12-15T14:50:50.552Z INFO initializing dbft {"height": 2318, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:50.552Z debug frostfs-node/morph.go:229 new block {"index": 2317} -2023-12-15T14:50:50.554Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:50:50.556Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:50:50.556Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:50:51.352Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2317, "blockHeight": 2317, "took": "4.182252ms"} -2023-12-15T14:50:51.552Z INFO sending PrepareRequest {"height": 2318, "view": 0} -2023-12-15T14:50:51.552Z INFO sending Commit {"height": 2318, "view": 0} -2023-12-15T14:50:51.553Z INFO approving block {"height": 2318, "hash": "23540a3b4719473a3eef7c4937812fcd3ea7b04b4130b8cba7064ca9d1db0fb3", "tx_count": 2, "merkle": "6f5c8767002fbf75e1737ef0e766572e48ce7eb5e0828ba0c304041d92bef6dc", "prev": "2049f0c0f7a285c4dbeb65c8748eadd171a611d7e429199af12cb713a78b00c5"} -2023-12-15T14:50:51.553Z INFO runtime log {"tx": "6338cca1583ffcd10fa647e393b134f11ebf4b10323bc91a3400a5449074098c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:50:51.553Z INFO runtime log {"tx": "6338cca1583ffcd10fa647e393b134f11ebf4b10323bc91a3400a5449074098c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:50:51.554Z INFO initializing dbft {"height": 2319, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:51.555Z debug frostfs-node/morph.go:229 new block {"index": 2318} -2023-12-15T14:50:52.354Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2318, "blockHeight": 2318, "took": "6.363707ms"} -2023-12-15T14:50:52.554Z INFO sending PrepareRequest {"height": 2319, "view": 0} -2023-12-15T14:50:52.554Z INFO sending Commit {"height": 2319, "view": 0} -2023-12-15T14:50:52.554Z INFO approving block {"height": 2319, "hash": "c18a03cb1640c74ab30aa242f57e43015fa3157dd0de0fa72de8195c867b1e19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23540a3b4719473a3eef7c4937812fcd3ea7b04b4130b8cba7064ca9d1db0fb3"} -2023-12-15T14:50:52.556Z INFO initializing dbft {"height": 2320, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:52.556Z debug frostfs-node/morph.go:229 new block {"index": 2319} -2023-12-15T14:50:53.353Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2319, "blockHeight": 2319, "took": "4.695482ms"} -2023-12-15T14:50:53.556Z INFO sending PrepareRequest {"height": 2320, "view": 0} -2023-12-15T14:50:53.556Z INFO sending Commit {"height": 2320, "view": 0} -2023-12-15T14:50:53.556Z INFO approving block {"height": 2320, "hash": "c6c69df90cb9648dff889da09d35329edddbe8ce2a2f1ed89d9226ea701e1b14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c18a03cb1640c74ab30aa242f57e43015fa3157dd0de0fa72de8195c867b1e19"} -2023-12-15T14:50:53.557Z INFO initializing dbft {"height": 2321, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:53.557Z debug frostfs-node/morph.go:229 new block {"index": 2320} -2023-12-15T14:50:54.353Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2320, "blockHeight": 2320, "took": "3.680495ms"} -2023-12-15T14:50:54.557Z INFO sending PrepareRequest {"height": 2321, "view": 0} -2023-12-15T14:50:54.557Z INFO sending Commit {"height": 2321, "view": 0} -2023-12-15T14:50:54.558Z INFO approving block {"height": 2321, "hash": "c194435f3df59f4f97ab124d5a215d3c37d05cb28232513b614949e14b6f36ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6c69df90cb9648dff889da09d35329edddbe8ce2a2f1ed89d9226ea701e1b14"} -2023-12-15T14:50:54.558Z INFO initializing dbft {"height": 2322, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:54.559Z debug frostfs-node/morph.go:229 new block {"index": 2321} -2023-12-15T14:50:55.353Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2321, "blockHeight": 2321, "took": "3.25853ms"} -2023-12-15T14:50:55.559Z INFO sending PrepareRequest {"height": 2322, "view": 0} -2023-12-15T14:50:55.559Z INFO sending Commit {"height": 2322, "view": 0} -2023-12-15T14:50:55.559Z INFO approving block {"height": 2322, "hash": "579c3957e98eaacb282b7bdbc6d2b3879b6a8ca1f378ec64b5e06635ee33a691", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c194435f3df59f4f97ab124d5a215d3c37d05cb28232513b614949e14b6f36ed"} -2023-12-15T14:50:55.560Z INFO initializing dbft {"height": 2323, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:55.561Z debug frostfs-node/morph.go:229 new block {"index": 2322} -2023-12-15T14:50:56.356Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2322, "blockHeight": 2322, "took": "4.73779ms"} -2023-12-15T14:50:56.561Z INFO sending PrepareRequest {"height": 2323, "view": 0} -2023-12-15T14:50:56.561Z INFO sending Commit {"height": 2323, "view": 0} -2023-12-15T14:50:56.561Z INFO approving block {"height": 2323, "hash": "1c818c4bfc293c84234b6a5ba82d225d5108752737d52f8dd3d69b9c2273b4e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "579c3957e98eaacb282b7bdbc6d2b3879b6a8ca1f378ec64b5e06635ee33a691"} -2023-12-15T14:50:56.562Z INFO initializing dbft {"height": 2324, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:56.563Z debug frostfs-node/morph.go:229 new block {"index": 2323} -2023-12-15T14:50:57.354Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2323, "blockHeight": 2323, "took": "3.049249ms"} -2023-12-15T14:50:57.563Z INFO sending PrepareRequest {"height": 2324, "view": 0} -2023-12-15T14:50:57.563Z INFO sending Commit {"height": 2324, "view": 0} -2023-12-15T14:50:57.563Z INFO approving block {"height": 2324, "hash": "6c14fcad04b863a4efdd59887ece6ee366eed3e57af3a5a1eb5dd9983e2e172f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c818c4bfc293c84234b6a5ba82d225d5108752737d52f8dd3d69b9c2273b4e1"} -2023-12-15T14:50:57.564Z INFO initializing dbft {"height": 2325, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:57.565Z debug frostfs-node/morph.go:229 new block {"index": 2324} -2023-12-15T14:50:58.356Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2324, "blockHeight": 2324, "took": "4.395169ms"} -2023-12-15T14:50:58.565Z INFO sending PrepareRequest {"height": 2325, "view": 0} -2023-12-15T14:50:58.565Z INFO sending Commit {"height": 2325, "view": 0} -2023-12-15T14:50:58.566Z INFO approving block {"height": 2325, "hash": "f7960d62458860a3d3ce1f06d1e0789dab7decc7bff528bda379b01b8cc60e46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c14fcad04b863a4efdd59887ece6ee366eed3e57af3a5a1eb5dd9983e2e172f"} -2023-12-15T14:50:58.567Z INFO initializing dbft {"height": 2326, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:58.568Z debug frostfs-node/morph.go:229 new block {"index": 2325} -2023-12-15T14:50:59.357Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2325, "blockHeight": 2325, "took": "3.843742ms"} -2023-12-15T14:50:59.567Z INFO sending PrepareRequest {"height": 2326, "view": 0} -2023-12-15T14:50:59.567Z INFO sending Commit {"height": 2326, "view": 0} -2023-12-15T14:50:59.567Z INFO approving block {"height": 2326, "hash": "12f0fc34df537a97963f9fd7b479d5750f1a92e719b79c156430f15df21f5b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7960d62458860a3d3ce1f06d1e0789dab7decc7bff528bda379b01b8cc60e46"} -2023-12-15T14:50:59.568Z INFO initializing dbft {"height": 2327, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:50:59.569Z debug frostfs-node/morph.go:229 new block {"index": 2326} -2023-12-15T14:51:00.356Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2326, "blockHeight": 2326, "took": "2.895685ms"} -2023-12-15T14:51:00.568Z INFO sending PrepareRequest {"height": 2327, "view": 0} -2023-12-15T14:51:00.569Z INFO sending Commit {"height": 2327, "view": 0} -2023-12-15T14:51:00.569Z INFO approving block {"height": 2327, "hash": "ddab72c987846ffbd814e6dd18cd6e35bf17ce7ba1dcd6fe4eb9b1fd2f441bff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12f0fc34df537a97963f9fd7b479d5750f1a92e719b79c156430f15df21f5b39"} -2023-12-15T14:51:00.570Z INFO initializing dbft {"height": 2328, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:00.571Z debug frostfs-node/morph.go:229 new block {"index": 2327} -2023-12-15T14:51:01.363Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2327, "blockHeight": 2327, "took": "8.620108ms"} -2023-12-15T14:51:01.570Z INFO sending PrepareRequest {"height": 2328, "view": 0} -2023-12-15T14:51:01.570Z INFO sending Commit {"height": 2328, "view": 0} -2023-12-15T14:51:01.570Z INFO approving block {"height": 2328, "hash": "1314701bd212ab1c8885f3e93fb0f5fe7f4f4d5f9ec7ec4e1f4adbad621b21e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddab72c987846ffbd814e6dd18cd6e35bf17ce7ba1dcd6fe4eb9b1fd2f441bff"} -2023-12-15T14:51:01.572Z INFO initializing dbft {"height": 2329, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:01.572Z debug frostfs-node/morph.go:229 new block {"index": 2328} -2023-12-15T14:51:02.358Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2328, "blockHeight": 2328, "took": "3.538825ms"} -2023-12-15T14:51:02.571Z INFO sending PrepareRequest {"height": 2329, "view": 0} -2023-12-15T14:51:02.571Z INFO sending Commit {"height": 2329, "view": 0} -2023-12-15T14:51:02.572Z INFO approving block {"height": 2329, "hash": "439e8dee6dc70e09206b85b937fe10b4307aa61205472ff3ad50e3eb3386a88f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1314701bd212ab1c8885f3e93fb0f5fe7f4f4d5f9ec7ec4e1f4adbad621b21e3"} -2023-12-15T14:51:02.573Z INFO initializing dbft {"height": 2330, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:02.574Z debug frostfs-node/morph.go:229 new block {"index": 2329} -2023-12-15T14:51:03.358Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2329, "blockHeight": 2329, "took": "3.237515ms"} -2023-12-15T14:51:03.573Z INFO sending PrepareRequest {"height": 2330, "view": 0} -2023-12-15T14:51:03.573Z INFO sending Commit {"height": 2330, "view": 0} -2023-12-15T14:51:03.574Z INFO approving block {"height": 2330, "hash": "132f674d880af8d4594e412ae4998857eed8c26066814611a5199566e531bbd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "439e8dee6dc70e09206b85b937fe10b4307aa61205472ff3ad50e3eb3386a88f"} -2023-12-15T14:51:03.575Z INFO initializing dbft {"height": 2331, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:03.576Z debug frostfs-node/morph.go:229 new block {"index": 2330} -2023-12-15T14:51:04.359Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2330, "blockHeight": 2330, "took": "4.07124ms"} -2023-12-15T14:51:04.574Z INFO sending PrepareRequest {"height": 2331, "view": 0} -2023-12-15T14:51:04.574Z INFO sending Commit {"height": 2331, "view": 0} -2023-12-15T14:51:04.574Z INFO approving block {"height": 2331, "hash": "8bbb95a5de58983b7713e3b0ad4eb50f32b0d07ed20c27c09827242c6f4a7876", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "132f674d880af8d4594e412ae4998857eed8c26066814611a5199566e531bbd0"} -2023-12-15T14:51:04.575Z INFO initializing dbft {"height": 2332, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:04.576Z debug frostfs-node/morph.go:229 new block {"index": 2331} -2023-12-15T14:51:05.360Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2331, "blockHeight": 2331, "took": "4.479655ms"} -2023-12-15T14:51:05.576Z INFO sending PrepareRequest {"height": 2332, "view": 0} -2023-12-15T14:51:05.576Z INFO sending Commit {"height": 2332, "view": 0} -2023-12-15T14:51:05.576Z INFO approving block {"height": 2332, "hash": "ecb4a72b7e41c748c0b4e0a9a1a50eac46d805ff8cf5daad66243dd38896d9c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bbb95a5de58983b7713e3b0ad4eb50f32b0d07ed20c27c09827242c6f4a7876"} -2023-12-15T14:51:05.577Z INFO initializing dbft {"height": 2333, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:05.577Z debug frostfs-node/morph.go:229 new block {"index": 2332} -2023-12-15T14:51:06.360Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2332, "blockHeight": 2332, "took": "3.939543ms"} -2023-12-15T14:51:06.577Z INFO sending PrepareRequest {"height": 2333, "view": 0} -2023-12-15T14:51:06.578Z INFO sending Commit {"height": 2333, "view": 0} -2023-12-15T14:51:06.578Z INFO approving block {"height": 2333, "hash": "1da9dda3ca625f349f4c766bc5260a57ffc4156ab6c8dd9bb68fe76a6eaf2c5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecb4a72b7e41c748c0b4e0a9a1a50eac46d805ff8cf5daad66243dd38896d9c2"} -2023-12-15T14:51:06.579Z INFO initializing dbft {"height": 2334, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:06.579Z debug frostfs-node/morph.go:229 new block {"index": 2333} -2023-12-15T14:51:07.361Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2333, "blockHeight": 2333, "took": "4.215253ms"} -2023-12-15T14:51:07.579Z INFO sending PrepareRequest {"height": 2334, "view": 0} -2023-12-15T14:51:07.580Z INFO sending Commit {"height": 2334, "view": 0} -2023-12-15T14:51:07.580Z INFO approving block {"height": 2334, "hash": "214fca3f53ba8bba6f0c4e75bac9e0a25ab1272a65e89c5ed92bc001db13de08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1da9dda3ca625f349f4c766bc5260a57ffc4156ab6c8dd9bb68fe76a6eaf2c5b"} -2023-12-15T14:51:07.581Z INFO initializing dbft {"height": 2335, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:07.582Z debug frostfs-node/morph.go:229 new block {"index": 2334} -2023-12-15T14:51:08.364Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2334, "blockHeight": 2334, "took": "6.240887ms"} -2023-12-15T14:51:08.580Z INFO sending PrepareRequest {"height": 2335, "view": 0} -2023-12-15T14:51:08.580Z INFO sending Commit {"height": 2335, "view": 0} -2023-12-15T14:51:08.581Z INFO approving block {"height": 2335, "hash": "244094a3f3665b19c885cb2e23d53c0c06e693e74e929447297cef13ffb6dabb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "214fca3f53ba8bba6f0c4e75bac9e0a25ab1272a65e89c5ed92bc001db13de08"} -2023-12-15T14:51:08.582Z INFO initializing dbft {"height": 2336, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:08.583Z debug frostfs-node/morph.go:229 new block {"index": 2335} -2023-12-15T14:51:09.364Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2335, "blockHeight": 2335, "took": "5.567634ms"} -2023-12-15T14:51:09.582Z INFO sending PrepareRequest {"height": 2336, "view": 0} -2023-12-15T14:51:09.582Z INFO sending Commit {"height": 2336, "view": 0} -2023-12-15T14:51:09.583Z INFO approving block {"height": 2336, "hash": "3493130c8a24716fcd6bdba7c28e43ab8158a760445f53de0ab97bdcd074c60b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "244094a3f3665b19c885cb2e23d53c0c06e693e74e929447297cef13ffb6dabb"} -2023-12-15T14:51:09.584Z INFO initializing dbft {"height": 2337, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:09.585Z debug frostfs-node/morph.go:229 new block {"index": 2336} -2023-12-15T14:51:10.362Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2336, "blockHeight": 2336, "took": "3.060539ms"} -2023-12-15T14:51:10.583Z INFO sending PrepareRequest {"height": 2337, "view": 0} -2023-12-15T14:51:10.584Z INFO sending Commit {"height": 2337, "view": 0} -2023-12-15T14:51:10.584Z INFO approving block {"height": 2337, "hash": "d1f15dbe10fbe90ed3807cbfea21b14ea28a05303ac9096d04f444d6297f55e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3493130c8a24716fcd6bdba7c28e43ab8158a760445f53de0ab97bdcd074c60b"} -2023-12-15T14:51:10.585Z INFO initializing dbft {"height": 2338, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:10.585Z debug frostfs-node/morph.go:229 new block {"index": 2337} -2023-12-15T14:51:11.363Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2337, "blockHeight": 2337, "took": "4.210806ms"} -2023-12-15T14:51:11.585Z INFO sending PrepareRequest {"height": 2338, "view": 0} -2023-12-15T14:51:11.585Z INFO sending Commit {"height": 2338, "view": 0} -2023-12-15T14:51:11.585Z INFO approving block {"height": 2338, "hash": "78d30583fe6dc0551f09de9c867551e6058d8450ae2eebb2dc3e2b976db20fb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1f15dbe10fbe90ed3807cbfea21b14ea28a05303ac9096d04f444d6297f55e7"} -2023-12-15T14:51:11.587Z INFO initializing dbft {"height": 2339, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:11.587Z debug frostfs-node/morph.go:229 new block {"index": 2338} -2023-12-15T14:51:12.363Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2338, "blockHeight": 2338, "took": "3.173301ms"} -2023-12-15T14:51:12.587Z INFO sending PrepareRequest {"height": 2339, "view": 0} -2023-12-15T14:51:12.587Z INFO sending Commit {"height": 2339, "view": 0} -2023-12-15T14:51:12.587Z INFO approving block {"height": 2339, "hash": "241a19c56e989e68477d9e877831fda2ad798243eaecc9fe1b41358573247036", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78d30583fe6dc0551f09de9c867551e6058d8450ae2eebb2dc3e2b976db20fb5"} -2023-12-15T14:51:12.589Z INFO initializing dbft {"height": 2340, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:12.589Z debug frostfs-node/morph.go:229 new block {"index": 2339} -2023-12-15T14:51:13.365Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2339, "blockHeight": 2339, "took": "4.797262ms"} -2023-12-15T14:51:13.588Z INFO sending PrepareRequest {"height": 2340, "view": 0} -2023-12-15T14:51:13.589Z INFO sending Commit {"height": 2340, "view": 0} -2023-12-15T14:51:13.589Z INFO approving block {"height": 2340, "hash": "6dbb90eb5d652c034fe2e3fbd444c06c4cf0f7ea6fc49d49ade0d3b6fcf733be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "241a19c56e989e68477d9e877831fda2ad798243eaecc9fe1b41358573247036"} -2023-12-15T14:51:13.591Z INFO initializing dbft {"height": 2341, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:13.591Z debug frostfs-node/morph.go:229 new block {"index": 2340} -2023-12-15T14:51:14.364Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2340, "blockHeight": 2340, "took": "3.51588ms"} -2023-12-15T14:51:14.591Z INFO sending PrepareRequest {"height": 2341, "view": 0} -2023-12-15T14:51:14.591Z INFO sending Commit {"height": 2341, "view": 0} -2023-12-15T14:51:14.591Z INFO approving block {"height": 2341, "hash": "a60c33af09b8e6214ef9794276cdaf54c4f22506cd3f923a6e83e4180264343e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dbb90eb5d652c034fe2e3fbd444c06c4cf0f7ea6fc49d49ade0d3b6fcf733be"} -2023-12-15T14:51:14.592Z INFO initializing dbft {"height": 2342, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:14.593Z debug frostfs-node/morph.go:229 new block {"index": 2341} -2023-12-15T14:51:15.365Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2341, "blockHeight": 2341, "took": "4.047937ms"} -2023-12-15T14:51:15.592Z INFO sending PrepareRequest {"height": 2342, "view": 0} -2023-12-15T14:51:15.592Z INFO sending Commit {"height": 2342, "view": 0} -2023-12-15T14:51:15.593Z INFO approving block {"height": 2342, "hash": "2a59162b8efe65fee044a57d115710c183873777fa07c8ace4c32ff176d60105", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a60c33af09b8e6214ef9794276cdaf54c4f22506cd3f923a6e83e4180264343e"} -2023-12-15T14:51:15.594Z INFO initializing dbft {"height": 2343, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:15.594Z debug frostfs-node/morph.go:229 new block {"index": 2342} -2023-12-15T14:51:16.365Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2342, "blockHeight": 2342, "took": "3.499101ms"} -2023-12-15T14:51:16.594Z INFO sending PrepareRequest {"height": 2343, "view": 0} -2023-12-15T14:51:16.594Z INFO sending Commit {"height": 2343, "view": 0} -2023-12-15T14:51:16.595Z INFO approving block {"height": 2343, "hash": "bd7ad6789c9baf7ae77e1f919212d24ef360a5ddd82bd98057fefb35eb81a62e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a59162b8efe65fee044a57d115710c183873777fa07c8ace4c32ff176d60105"} -2023-12-15T14:51:16.596Z INFO initializing dbft {"height": 2344, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:16.597Z debug frostfs-node/morph.go:229 new block {"index": 2343} -2023-12-15T14:51:17.367Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2343, "blockHeight": 2343, "took": "4.767589ms"} -2023-12-15T14:51:17.596Z INFO sending PrepareRequest {"height": 2344, "view": 0} -2023-12-15T14:51:17.596Z INFO sending Commit {"height": 2344, "view": 0} -2023-12-15T14:51:17.596Z INFO approving block {"height": 2344, "hash": "f52615d9a63a5ecb0bd0e6d3af5706352e8e792af7d026b67e19236a4484a5a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd7ad6789c9baf7ae77e1f919212d24ef360a5ddd82bd98057fefb35eb81a62e"} -2023-12-15T14:51:17.598Z INFO initializing dbft {"height": 2345, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:17.598Z debug frostfs-node/morph.go:229 new block {"index": 2344} -2023-12-15T14:51:18.367Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2344, "blockHeight": 2344, "took": "4.389118ms"} -2023-12-15T14:51:18.598Z INFO sending PrepareRequest {"height": 2345, "view": 0} -2023-12-15T14:51:18.598Z INFO sending Commit {"height": 2345, "view": 0} -2023-12-15T14:51:18.599Z INFO approving block {"height": 2345, "hash": "adb1a333bf15e6f3a9dbcaf111f2a3b2d3d39be00d771963c4f6e59b265e062c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f52615d9a63a5ecb0bd0e6d3af5706352e8e792af7d026b67e19236a4484a5a1"} -2023-12-15T14:51:18.600Z INFO initializing dbft {"height": 2346, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:18.600Z debug frostfs-node/morph.go:229 new block {"index": 2345} -2023-12-15T14:51:19.368Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2345, "blockHeight": 2345, "took": "4.438599ms"} -2023-12-15T14:51:19.599Z INFO sending PrepareRequest {"height": 2346, "view": 0} -2023-12-15T14:51:19.600Z INFO sending Commit {"height": 2346, "view": 0} -2023-12-15T14:51:19.600Z INFO approving block {"height": 2346, "hash": "26b57a50bce10da0d9ebcad18b4dd4e8048ee12a8894870bf55271bfd04fd410", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adb1a333bf15e6f3a9dbcaf111f2a3b2d3d39be00d771963c4f6e59b265e062c"} -2023-12-15T14:51:19.601Z INFO initializing dbft {"height": 2347, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:19.602Z debug frostfs-node/morph.go:229 new block {"index": 2346} -2023-12-15T14:51:20.368Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2346, "blockHeight": 2346, "took": "4.46108ms"} -2023-12-15T14:51:20.601Z INFO sending PrepareRequest {"height": 2347, "view": 0} -2023-12-15T14:51:20.601Z INFO sending Commit {"height": 2347, "view": 0} -2023-12-15T14:51:20.602Z INFO approving block {"height": 2347, "hash": "fdd3163993dc139a1676733b74db6738d73620c73118f97133b823b5d8c50485", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26b57a50bce10da0d9ebcad18b4dd4e8048ee12a8894870bf55271bfd04fd410"} -2023-12-15T14:51:20.603Z INFO initializing dbft {"height": 2348, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:20.603Z debug frostfs-node/morph.go:229 new block {"index": 2347} -2023-12-15T14:51:21.369Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2347, "blockHeight": 2347, "took": "4.072408ms"} -2023-12-15T14:51:21.603Z INFO sending PrepareRequest {"height": 2348, "view": 0} -2023-12-15T14:51:21.603Z INFO sending Commit {"height": 2348, "view": 0} -2023-12-15T14:51:21.603Z INFO approving block {"height": 2348, "hash": "b5c354adab3d9215a98a62c029deb6302ebe7cc2b9729fcb07f5ff0307912c5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdd3163993dc139a1676733b74db6738d73620c73118f97133b823b5d8c50485"} -2023-12-15T14:51:21.604Z INFO initializing dbft {"height": 2349, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:21.605Z debug frostfs-node/morph.go:229 new block {"index": 2348} -2023-12-15T14:51:22.371Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2348, "blockHeight": 2348, "took": "5.218623ms"} -2023-12-15T14:51:22.604Z INFO sending PrepareRequest {"height": 2349, "view": 0} -2023-12-15T14:51:22.605Z INFO sending Commit {"height": 2349, "view": 0} -2023-12-15T14:51:22.605Z INFO approving block {"height": 2349, "hash": "cfd42ecce3972d1695e07722c0a76101d0faa278b3653a6830e99fa1bd92f5fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5c354adab3d9215a98a62c029deb6302ebe7cc2b9729fcb07f5ff0307912c5d"} -2023-12-15T14:51:22.606Z INFO initializing dbft {"height": 2350, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:22.607Z debug frostfs-node/morph.go:229 new block {"index": 2349} -2023-12-15T14:51:22.611Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 10, "iteration": 2, "error": "no data for 1 iteration in 10 epoch for consumers's trusts"} -2023-12-15T14:51:22.612Z info settlement/calls.go:106 start basic income distribution {"epoch": 10} -2023-12-15T14:51:23.371Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2349, "blockHeight": 2349, "took": "4.872196ms"} -2023-12-15T14:51:23.606Z INFO sending PrepareRequest {"height": 2350, "view": 0} -2023-12-15T14:51:23.607Z INFO sending Commit {"height": 2350, "view": 0} -2023-12-15T14:51:23.607Z INFO approving block {"height": 2350, "hash": "c200d8e8840ef9471959363f259cdd7c991c9999e761efc022dce0d1d2445ce3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfd42ecce3972d1695e07722c0a76101d0faa278b3653a6830e99fa1bd92f5fa"} -2023-12-15T14:51:23.608Z INFO initializing dbft {"height": 2351, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:23.609Z debug frostfs-node/morph.go:229 new block {"index": 2350} -2023-12-15T14:51:24.371Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2350, "blockHeight": 2350, "took": "4.313165ms"} -2023-12-15T14:51:24.608Z INFO sending PrepareRequest {"height": 2351, "view": 0} -2023-12-15T14:51:24.608Z INFO sending Commit {"height": 2351, "view": 0} -2023-12-15T14:51:24.608Z INFO approving block {"height": 2351, "hash": "0968df72d9bfa1235ef3808901f7fb7344a18434189062a1258818660dc3397d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c200d8e8840ef9471959363f259cdd7c991c9999e761efc022dce0d1d2445ce3"} -2023-12-15T14:51:24.610Z INFO initializing dbft {"height": 2352, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:24.610Z debug frostfs-node/morph.go:229 new block {"index": 2351} -2023-12-15T14:51:25.372Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2351, "blockHeight": 2351, "took": "4.308235ms"} -2023-12-15T14:51:25.609Z INFO sending PrepareRequest {"height": 2352, "view": 0} -2023-12-15T14:51:25.610Z INFO sending Commit {"height": 2352, "view": 0} -2023-12-15T14:51:25.610Z INFO approving block {"height": 2352, "hash": "37e0dc47fa6c28855de23118d901cfeb915bc73291141e875f316356c232e755", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0968df72d9bfa1235ef3808901f7fb7344a18434189062a1258818660dc3397d"} -2023-12-15T14:51:25.611Z INFO initializing dbft {"height": 2353, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:25.612Z debug frostfs-node/morph.go:229 new block {"index": 2352} -2023-12-15T14:51:26.373Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2352, "blockHeight": 2352, "took": "4.656807ms"} -2023-12-15T14:51:26.611Z INFO sending PrepareRequest {"height": 2353, "view": 0} -2023-12-15T14:51:26.611Z INFO sending Commit {"height": 2353, "view": 0} -2023-12-15T14:51:26.612Z INFO approving block {"height": 2353, "hash": "6f52cb49f0ebecee6cfe19e535aaa2cb6729d94bd236b8e6522b4435e68ea410", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37e0dc47fa6c28855de23118d901cfeb915bc73291141e875f316356c232e755"} -2023-12-15T14:51:26.613Z INFO initializing dbft {"height": 2354, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:26.613Z debug frostfs-node/morph.go:229 new block {"index": 2353} -2023-12-15T14:51:27.373Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2353, "blockHeight": 2353, "took": "4.833537ms"} -2023-12-15T14:51:27.612Z INFO sending PrepareRequest {"height": 2354, "view": 0} -2023-12-15T14:51:27.613Z INFO sending Commit {"height": 2354, "view": 0} -2023-12-15T14:51:27.613Z INFO approving block {"height": 2354, "hash": "edea669eef92ade13d6d751ae650c898723bc1fb84693796f16bae44a1e49b7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f52cb49f0ebecee6cfe19e535aaa2cb6729d94bd236b8e6522b4435e68ea410"} -2023-12-15T14:51:27.615Z INFO initializing dbft {"height": 2355, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:27.615Z debug frostfs-node/morph.go:229 new block {"index": 2354} -2023-12-15T14:51:28.373Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2354, "blockHeight": 2354, "took": "3.949681ms"} -2023-12-15T14:51:28.615Z INFO sending PrepareRequest {"height": 2355, "view": 0} -2023-12-15T14:51:28.616Z INFO sending Commit {"height": 2355, "view": 0} -2023-12-15T14:51:28.616Z INFO approving block {"height": 2355, "hash": "c9627783cc6ebea23e5f9c19418b4eedc22dfc115846fd0633be0847af4dc201", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edea669eef92ade13d6d751ae650c898723bc1fb84693796f16bae44a1e49b7d"} -2023-12-15T14:51:28.618Z INFO initializing dbft {"height": 2356, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:28.618Z debug frostfs-node/morph.go:229 new block {"index": 2355} -2023-12-15T14:51:29.374Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2355, "blockHeight": 2355, "took": "4.138224ms"} -2023-12-15T14:51:29.617Z INFO sending PrepareRequest {"height": 2356, "view": 0} -2023-12-15T14:51:29.617Z INFO sending Commit {"height": 2356, "view": 0} -2023-12-15T14:51:29.617Z INFO approving block {"height": 2356, "hash": "36b57bae29e928fdc761736e422dae3bcedd2dfe0328f5b3f3fe1f8b256d5567", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9627783cc6ebea23e5f9c19418b4eedc22dfc115846fd0633be0847af4dc201"} -2023-12-15T14:51:29.618Z INFO initializing dbft {"height": 2357, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:29.619Z debug frostfs-node/morph.go:229 new block {"index": 2356} -2023-12-15T14:51:30.375Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2356, "blockHeight": 2356, "took": "4.486495ms"} -2023-12-15T14:51:30.619Z INFO sending PrepareRequest {"height": 2357, "view": 0} -2023-12-15T14:51:30.619Z INFO sending Commit {"height": 2357, "view": 0} -2023-12-15T14:51:30.620Z INFO approving block {"height": 2357, "hash": "38094c29327ea302f53daca7d31e67f282f067fec526d1174d3398cdb95e55a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36b57bae29e928fdc761736e422dae3bcedd2dfe0328f5b3f3fe1f8b256d5567"} -2023-12-15T14:51:30.621Z INFO initializing dbft {"height": 2358, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:30.622Z debug frostfs-node/morph.go:229 new block {"index": 2357} -2023-12-15T14:51:31.375Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2357, "blockHeight": 2357, "took": "3.548321ms"} -2023-12-15T14:51:31.620Z INFO sending PrepareRequest {"height": 2358, "view": 0} -2023-12-15T14:51:31.621Z INFO sending Commit {"height": 2358, "view": 0} -2023-12-15T14:51:31.621Z INFO approving block {"height": 2358, "hash": "a984fed6343eab5da920a27a7d491ac1737bd07eb333241576bfbc4c7f08b3b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38094c29327ea302f53daca7d31e67f282f067fec526d1174d3398cdb95e55a4"} -2023-12-15T14:51:31.623Z INFO initializing dbft {"height": 2359, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:31.623Z debug frostfs-node/morph.go:229 new block {"index": 2358} -2023-12-15T14:51:32.378Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2358, "blockHeight": 2358, "took": "6.526649ms"} -2023-12-15T14:51:32.622Z INFO sending PrepareRequest {"height": 2359, "view": 0} -2023-12-15T14:51:32.622Z INFO sending Commit {"height": 2359, "view": 0} -2023-12-15T14:51:32.623Z INFO approving block {"height": 2359, "hash": "53e7f39df6561c342df4a7bb2a598b127d1f3b1cce2dd9ec128b61deff387ce8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a984fed6343eab5da920a27a7d491ac1737bd07eb333241576bfbc4c7f08b3b0"} -2023-12-15T14:51:32.624Z INFO initializing dbft {"height": 2360, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:32.624Z debug frostfs-node/morph.go:229 new block {"index": 2359} -2023-12-15T14:51:33.376Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2359, "blockHeight": 2359, "took": "3.625942ms"} -2023-12-15T14:51:33.623Z INFO sending PrepareRequest {"height": 2360, "view": 0} -2023-12-15T14:51:33.624Z INFO sending Commit {"height": 2360, "view": 0} -2023-12-15T14:51:33.624Z INFO approving block {"height": 2360, "hash": "cd9498898aaabe540a8da9e9ad6bbf268c3bd2320dd28b0864ce066f3c837023", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53e7f39df6561c342df4a7bb2a598b127d1f3b1cce2dd9ec128b61deff387ce8"} -2023-12-15T14:51:33.625Z INFO initializing dbft {"height": 2361, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:33.625Z debug frostfs-node/morph.go:229 new block {"index": 2360} -2023-12-15T14:51:34.378Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2360, "blockHeight": 2360, "took": "5.041747ms"} -2023-12-15T14:51:34.625Z INFO sending PrepareRequest {"height": 2361, "view": 0} -2023-12-15T14:51:34.625Z INFO sending Commit {"height": 2361, "view": 0} -2023-12-15T14:51:34.626Z INFO approving block {"height": 2361, "hash": "5accb0c5e15cd7d43b87fef35fd07b12ecd5ffae6ab974a1aff6bad56850c2b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd9498898aaabe540a8da9e9ad6bbf268c3bd2320dd28b0864ce066f3c837023"} -2023-12-15T14:51:34.627Z INFO initializing dbft {"height": 2362, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:34.628Z debug frostfs-node/morph.go:229 new block {"index": 2361} -2023-12-15T14:51:35.378Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2361, "blockHeight": 2361, "took": "4.856551ms"} -2023-12-15T14:51:35.626Z INFO sending PrepareRequest {"height": 2362, "view": 0} -2023-12-15T14:51:35.627Z INFO sending Commit {"height": 2362, "view": 0} -2023-12-15T14:51:35.627Z INFO approving block {"height": 2362, "hash": "0c9816230a2970599e52542059333df0572d33587b4ed139bad74195b6885b69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5accb0c5e15cd7d43b87fef35fd07b12ecd5ffae6ab974a1aff6bad56850c2b4"} -2023-12-15T14:51:35.628Z INFO initializing dbft {"height": 2363, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:35.628Z debug frostfs-node/morph.go:229 new block {"index": 2362} -2023-12-15T14:51:36.377Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2362, "blockHeight": 2362, "took": "2.802701ms"} -2023-12-15T14:51:36.628Z INFO sending PrepareRequest {"height": 2363, "view": 0} -2023-12-15T14:51:36.628Z INFO sending Commit {"height": 2363, "view": 0} -2023-12-15T14:51:36.629Z INFO approving block {"height": 2363, "hash": "eabf9e28718b126618e24533fb0d2099f2cf67ece4e30ea189987a2d426fcc75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c9816230a2970599e52542059333df0572d33587b4ed139bad74195b6885b69"} -2023-12-15T14:51:36.630Z INFO initializing dbft {"height": 2364, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:36.630Z debug frostfs-node/morph.go:229 new block {"index": 2363} -2023-12-15T14:51:37.378Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2363, "blockHeight": 2363, "took": "3.262975ms"} -2023-12-15T14:51:37.629Z INFO sending PrepareRequest {"height": 2364, "view": 0} -2023-12-15T14:51:37.629Z INFO sending Commit {"height": 2364, "view": 0} -2023-12-15T14:51:37.630Z INFO approving block {"height": 2364, "hash": "0469fa5626049db60ec2163a0b74680f44d9e04c1bb9beac709cc7bac8298cb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eabf9e28718b126618e24533fb0d2099f2cf67ece4e30ea189987a2d426fcc75"} -2023-12-15T14:51:37.630Z INFO initializing dbft {"height": 2365, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:37.631Z debug frostfs-node/morph.go:229 new block {"index": 2364} -2023-12-15T14:51:38.379Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2364, "blockHeight": 2364, "took": "4.402572ms"} -2023-12-15T14:51:38.631Z INFO sending PrepareRequest {"height": 2365, "view": 0} -2023-12-15T14:51:38.632Z INFO sending Commit {"height": 2365, "view": 0} -2023-12-15T14:51:38.632Z INFO approving block {"height": 2365, "hash": "c1cb3c8904cbf67ba0ab416e5ac191d732d0fdddee804bc3b4ffe7d906769f9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0469fa5626049db60ec2163a0b74680f44d9e04c1bb9beac709cc7bac8298cb4"} -2023-12-15T14:51:38.634Z INFO initializing dbft {"height": 2366, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:38.634Z debug frostfs-node/morph.go:229 new block {"index": 2365} -2023-12-15T14:51:39.380Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2365, "blockHeight": 2365, "took": "3.688447ms"} -2023-12-15T14:51:39.633Z INFO sending PrepareRequest {"height": 2366, "view": 0} -2023-12-15T14:51:39.633Z INFO sending Commit {"height": 2366, "view": 0} -2023-12-15T14:51:39.633Z INFO approving block {"height": 2366, "hash": "a1375427bcc6623f7af297ea67721422f9c4f701c62f5fa4a0f97879fd16b5d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1cb3c8904cbf67ba0ab416e5ac191d732d0fdddee804bc3b4ffe7d906769f9f"} -2023-12-15T14:51:39.634Z INFO initializing dbft {"height": 2367, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:39.634Z debug frostfs-node/morph.go:229 new block {"index": 2366} -2023-12-15T14:51:40.381Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2366, "blockHeight": 2366, "took": "4.81788ms"} -2023-12-15T14:51:40.634Z INFO sending PrepareRequest {"height": 2367, "view": 0} -2023-12-15T14:51:40.635Z INFO sending Commit {"height": 2367, "view": 0} -2023-12-15T14:51:40.635Z INFO approving block {"height": 2367, "hash": "db2175691eb18ab2104ff9202e7aa73841ed632ea576011e5cc0c39d847d4227", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1375427bcc6623f7af297ea67721422f9c4f701c62f5fa4a0f97879fd16b5d2"} -2023-12-15T14:51:40.636Z INFO initializing dbft {"height": 2368, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:40.637Z debug frostfs-node/morph.go:229 new block {"index": 2367} -2023-12-15T14:51:40.640Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:51:40.643Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:51:40.643Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:51:41.382Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2367, "blockHeight": 2367, "took": "4.987355ms"} -2023-12-15T14:51:41.636Z INFO sending PrepareRequest {"height": 2368, "view": 0} -2023-12-15T14:51:41.636Z INFO sending Commit {"height": 2368, "view": 0} -2023-12-15T14:51:41.636Z INFO approving block {"height": 2368, "hash": "5e4ffe5ae1d8b4a45526885902376031658236e7e520013b20907e13f08cf710", "tx_count": 2, "merkle": "43f5dab8ae51a06b06a49fe66b3deed9b2edf4b4fd098be2f25ee9a070b9aae4", "prev": "db2175691eb18ab2104ff9202e7aa73841ed632ea576011e5cc0c39d847d4227"} -2023-12-15T14:51:41.637Z INFO runtime log {"tx": "e1e9415a003bc3de10a2dc4fae578af63f9c0b7c1206ce2eb21d387c08351632", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:51:41.637Z INFO runtime log {"tx": "e1e9415a003bc3de10a2dc4fae578af63f9c0b7c1206ce2eb21d387c08351632", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:51:41.637Z INFO initializing dbft {"height": 2369, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:41.638Z debug frostfs-node/morph.go:229 new block {"index": 2368} -2023-12-15T14:51:42.385Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2368, "blockHeight": 2368, "took": "8.36597ms"} -2023-12-15T14:51:42.637Z INFO sending PrepareRequest {"height": 2369, "view": 0} -2023-12-15T14:51:42.637Z INFO sending Commit {"height": 2369, "view": 0} -2023-12-15T14:51:42.637Z INFO approving block {"height": 2369, "hash": "7bbcd68411fb338aadd71b2872b9225c7b24333c1fb02904321ca85490b12609", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e4ffe5ae1d8b4a45526885902376031658236e7e520013b20907e13f08cf710"} -2023-12-15T14:51:42.638Z INFO initializing dbft {"height": 2370, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:42.638Z debug frostfs-node/morph.go:229 new block {"index": 2369} -2023-12-15T14:51:43.380Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2369, "blockHeight": 2369, "took": "2.85236ms"} -2023-12-15T14:51:43.638Z INFO sending PrepareRequest {"height": 2370, "view": 0} -2023-12-15T14:51:43.639Z INFO sending Commit {"height": 2370, "view": 0} -2023-12-15T14:51:43.639Z INFO approving block {"height": 2370, "hash": "740ce02cd877804c32a4a337aa61448a500c41f48fd9be808ce64d8f5b494d22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bbcd68411fb338aadd71b2872b9225c7b24333c1fb02904321ca85490b12609"} -2023-12-15T14:51:43.640Z INFO initializing dbft {"height": 2371, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:43.640Z debug frostfs-node/morph.go:229 new block {"index": 2370} -2023-12-15T14:51:44.381Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2370, "blockHeight": 2370, "took": "3.131308ms"} -2023-12-15T14:51:44.640Z INFO sending PrepareRequest {"height": 2371, "view": 0} -2023-12-15T14:51:44.640Z INFO sending Commit {"height": 2371, "view": 0} -2023-12-15T14:51:44.640Z INFO approving block {"height": 2371, "hash": "980e3894ea5a2bd858bab1bd97cb3d26a60d97a5e5fd17b4ff6a8638afa28492", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "740ce02cd877804c32a4a337aa61448a500c41f48fd9be808ce64d8f5b494d22"} -2023-12-15T14:51:44.641Z INFO initializing dbft {"height": 2372, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:44.642Z debug frostfs-node/morph.go:229 new block {"index": 2371} -2023-12-15T14:51:45.384Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2371, "blockHeight": 2371, "took": "5.420429ms"} -2023-12-15T14:51:45.642Z INFO sending PrepareRequest {"height": 2372, "view": 0} -2023-12-15T14:51:45.642Z INFO sending Commit {"height": 2372, "view": 0} -2023-12-15T14:51:45.643Z INFO approving block {"height": 2372, "hash": "0731276993c2dfcc302d075d9a5d2c3302ead3c4abed8583dd9d8261731c3c0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "980e3894ea5a2bd858bab1bd97cb3d26a60d97a5e5fd17b4ff6a8638afa28492"} -2023-12-15T14:51:45.646Z INFO initializing dbft {"height": 2373, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:45.646Z debug frostfs-node/morph.go:229 new block {"index": 2372} -2023-12-15T14:51:46.382Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2372, "blockHeight": 2372, "took": "3.004625ms"} -2023-12-15T14:51:46.643Z INFO sending PrepareRequest {"height": 2373, "view": 0} -2023-12-15T14:51:46.644Z INFO sending Commit {"height": 2373, "view": 0} -2023-12-15T14:51:46.644Z INFO approving block {"height": 2373, "hash": "a1a04594654fe9fe400ac8b43537cce7efab6766ae4b5bb144f6811162a617ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0731276993c2dfcc302d075d9a5d2c3302ead3c4abed8583dd9d8261731c3c0b"} -2023-12-15T14:51:46.645Z INFO initializing dbft {"height": 2374, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:46.646Z debug frostfs-node/morph.go:229 new block {"index": 2373} -2023-12-15T14:51:47.384Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2373, "blockHeight": 2373, "took": "4.583122ms"} -2023-12-15T14:51:47.645Z INFO sending PrepareRequest {"height": 2374, "view": 0} -2023-12-15T14:51:47.645Z INFO sending Commit {"height": 2374, "view": 0} -2023-12-15T14:51:47.646Z INFO approving block {"height": 2374, "hash": "b5f9e958811854f5ce531cea2bd2959b5830a19a9840e7271b2ff9d748cc5b27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1a04594654fe9fe400ac8b43537cce7efab6766ae4b5bb144f6811162a617ab"} -2023-12-15T14:51:47.647Z INFO initializing dbft {"height": 2375, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:47.648Z debug frostfs-node/morph.go:229 new block {"index": 2374} -2023-12-15T14:51:48.385Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2374, "blockHeight": 2374, "took": "4.294891ms"} -2023-12-15T14:51:48.647Z INFO sending PrepareRequest {"height": 2375, "view": 0} -2023-12-15T14:51:48.647Z INFO sending Commit {"height": 2375, "view": 0} -2023-12-15T14:51:48.647Z INFO approving block {"height": 2375, "hash": "abadf25e6fa962103991e6f8576b56c3e976ceef29d43ab583236695b8788a73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5f9e958811854f5ce531cea2bd2959b5830a19a9840e7271b2ff9d748cc5b27"} -2023-12-15T14:51:48.649Z INFO initializing dbft {"height": 2376, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:48.649Z debug frostfs-node/morph.go:229 new block {"index": 2375} -2023-12-15T14:51:49.384Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2375, "blockHeight": 2375, "took": "3.194286ms"} -2023-12-15T14:51:49.648Z INFO sending PrepareRequest {"height": 2376, "view": 0} -2023-12-15T14:51:49.649Z INFO sending Commit {"height": 2376, "view": 0} -2023-12-15T14:51:49.649Z INFO approving block {"height": 2376, "hash": "b7e43c9f60cd0dd96665d37473e7b2ce9c29ee8df059bccbfa973de6c622ca5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abadf25e6fa962103991e6f8576b56c3e976ceef29d43ab583236695b8788a73"} -2023-12-15T14:51:49.650Z INFO initializing dbft {"height": 2377, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:49.651Z debug frostfs-node/morph.go:229 new block {"index": 2376} -2023-12-15T14:51:50.385Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2376, "blockHeight": 2376, "took": "2.984443ms"} -2023-12-15T14:51:50.650Z INFO sending PrepareRequest {"height": 2377, "view": 0} -2023-12-15T14:51:50.650Z INFO sending Commit {"height": 2377, "view": 0} -2023-12-15T14:51:50.650Z INFO approving block {"height": 2377, "hash": "1059d6804980f1a9367a2257ecd128a5e09f78599efa5a7ef2e2545b8312e1e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7e43c9f60cd0dd96665d37473e7b2ce9c29ee8df059bccbfa973de6c622ca5e"} -2023-12-15T14:51:50.652Z INFO initializing dbft {"height": 2378, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:50.652Z debug frostfs-node/morph.go:229 new block {"index": 2377} -2023-12-15T14:51:51.387Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2377, "blockHeight": 2377, "took": "4.197039ms"} -2023-12-15T14:51:51.651Z INFO sending PrepareRequest {"height": 2378, "view": 0} -2023-12-15T14:51:51.651Z INFO sending Commit {"height": 2378, "view": 0} -2023-12-15T14:51:51.652Z INFO approving block {"height": 2378, "hash": "c65d845509fe9e81c3ef32b0d827b73b1a6c797edf549bdc17918147f9c3af22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1059d6804980f1a9367a2257ecd128a5e09f78599efa5a7ef2e2545b8312e1e0"} -2023-12-15T14:51:51.652Z INFO initializing dbft {"height": 2379, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:51.653Z debug frostfs-node/morph.go:229 new block {"index": 2378} -2023-12-15T14:51:52.388Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2378, "blockHeight": 2378, "took": "4.923856ms"} -2023-12-15T14:51:52.653Z INFO sending PrepareRequest {"height": 2379, "view": 0} -2023-12-15T14:51:52.653Z INFO sending Commit {"height": 2379, "view": 0} -2023-12-15T14:51:52.653Z INFO approving block {"height": 2379, "hash": "930e8a18345d7bea562f591f31f58ed711be86f546fe66d3f2aa651bc535da37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c65d845509fe9e81c3ef32b0d827b73b1a6c797edf549bdc17918147f9c3af22"} -2023-12-15T14:51:52.654Z INFO initializing dbft {"height": 2380, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:52.655Z debug frostfs-node/morph.go:229 new block {"index": 2379} -2023-12-15T14:51:53.387Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2379, "blockHeight": 2379, "took": "4.279734ms"} -2023-12-15T14:51:53.654Z INFO sending PrepareRequest {"height": 2380, "view": 0} -2023-12-15T14:51:53.654Z INFO sending Commit {"height": 2380, "view": 0} -2023-12-15T14:51:53.654Z INFO approving block {"height": 2380, "hash": "e3f300d2da06ce01bb8b77a9c2c6ba2c3436704271176c15eccd875a287fdd30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "930e8a18345d7bea562f591f31f58ed711be86f546fe66d3f2aa651bc535da37"} -2023-12-15T14:51:53.655Z INFO initializing dbft {"height": 2381, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:53.655Z debug frostfs-node/morph.go:229 new block {"index": 2380} -2023-12-15T14:51:54.388Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2380, "blockHeight": 2380, "took": "4.495208ms"} -2023-12-15T14:51:54.656Z INFO sending PrepareRequest {"height": 2381, "view": 0} -2023-12-15T14:51:54.656Z INFO sending Commit {"height": 2381, "view": 0} -2023-12-15T14:51:54.656Z INFO approving block {"height": 2381, "hash": "c5c33d7164cbe6d66f9ab22ac499ddbf1797a700bd6f45bdc092999aadec4545", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3f300d2da06ce01bb8b77a9c2c6ba2c3436704271176c15eccd875a287fdd30"} -2023-12-15T14:51:54.658Z INFO initializing dbft {"height": 2382, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:54.658Z debug frostfs-node/morph.go:229 new block {"index": 2381} -2023-12-15T14:51:55.391Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2381, "blockHeight": 2381, "took": "6.233116ms"} -2023-12-15T14:51:55.657Z INFO sending PrepareRequest {"height": 2382, "view": 0} -2023-12-15T14:51:55.657Z INFO sending Commit {"height": 2382, "view": 0} -2023-12-15T14:51:55.657Z INFO approving block {"height": 2382, "hash": "9d27f00d9eecdbfea1ff007e72cbf89eaf98d158b1b9545758973e404127558a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5c33d7164cbe6d66f9ab22ac499ddbf1797a700bd6f45bdc092999aadec4545"} -2023-12-15T14:51:55.658Z INFO initializing dbft {"height": 2383, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:55.659Z debug frostfs-node/morph.go:229 new block {"index": 2382} -2023-12-15T14:51:56.389Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2382, "blockHeight": 2382, "took": "3.919235ms"} -2023-12-15T14:51:56.658Z INFO sending PrepareRequest {"height": 2383, "view": 0} -2023-12-15T14:51:56.658Z INFO sending Commit {"height": 2383, "view": 0} -2023-12-15T14:51:56.659Z INFO approving block {"height": 2383, "hash": "cb125f1a46fc39229b1606d532f447ff1821d4619ee6b73622423f98c65e49e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d27f00d9eecdbfea1ff007e72cbf89eaf98d158b1b9545758973e404127558a"} -2023-12-15T14:51:56.660Z INFO initializing dbft {"height": 2384, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:56.660Z debug frostfs-node/morph.go:229 new block {"index": 2383} -2023-12-15T14:51:57.390Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2383, "blockHeight": 2383, "took": "4.143168ms"} -2023-12-15T14:51:57.660Z INFO sending PrepareRequest {"height": 2384, "view": 0} -2023-12-15T14:51:57.660Z INFO sending Commit {"height": 2384, "view": 0} -2023-12-15T14:51:57.660Z INFO approving block {"height": 2384, "hash": "c2c601f0593c455c37ed980f213148abfc01101462ec9f7d6cd019e6c7785e86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb125f1a46fc39229b1606d532f447ff1821d4619ee6b73622423f98c65e49e7"} -2023-12-15T14:51:57.661Z INFO initializing dbft {"height": 2385, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:57.661Z debug frostfs-node/morph.go:229 new block {"index": 2384} -2023-12-15T14:51:58.389Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2384, "blockHeight": 2384, "took": "3.259735ms"} -2023-12-15T14:51:58.661Z INFO sending PrepareRequest {"height": 2385, "view": 0} -2023-12-15T14:51:58.661Z INFO sending Commit {"height": 2385, "view": 0} -2023-12-15T14:51:58.662Z INFO approving block {"height": 2385, "hash": "c8715cf9fc813389a8a23b9c1e29c4a1f017b8bd928e8cdc3f9f29d41ee9df2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2c601f0593c455c37ed980f213148abfc01101462ec9f7d6cd019e6c7785e86"} -2023-12-15T14:51:58.663Z INFO initializing dbft {"height": 2386, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:58.663Z debug frostfs-node/morph.go:229 new block {"index": 2385} -2023-12-15T14:51:59.390Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2385, "blockHeight": 2385, "took": "3.678623ms"} -2023-12-15T14:51:59.663Z INFO sending PrepareRequest {"height": 2386, "view": 0} -2023-12-15T14:51:59.663Z INFO sending Commit {"height": 2386, "view": 0} -2023-12-15T14:51:59.664Z INFO approving block {"height": 2386, "hash": "bb485a749ed59eec2e3e7fd812d0f3622796160e83e02fe89f83d2b002b153fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8715cf9fc813389a8a23b9c1e29c4a1f017b8bd928e8cdc3f9f29d41ee9df2d"} -2023-12-15T14:51:59.666Z INFO initializing dbft {"height": 2387, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:51:59.666Z debug frostfs-node/morph.go:229 new block {"index": 2386} -2023-12-15T14:52:00.391Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2386, "blockHeight": 2386, "took": "4.074656ms"} -2023-12-15T14:52:00.665Z INFO sending PrepareRequest {"height": 2387, "view": 0} -2023-12-15T14:52:00.666Z INFO sending Commit {"height": 2387, "view": 0} -2023-12-15T14:52:00.666Z INFO approving block {"height": 2387, "hash": "2452fb9d51423dfda2fa5b316b123a7c0a48c6d435bf7a197d58645a19689fe7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb485a749ed59eec2e3e7fd812d0f3622796160e83e02fe89f83d2b002b153fa"} -2023-12-15T14:52:00.667Z INFO initializing dbft {"height": 2388, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:00.668Z debug frostfs-node/morph.go:229 new block {"index": 2387} -2023-12-15T14:52:01.392Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2387, "blockHeight": 2387, "took": "3.982625ms"} -2023-12-15T14:52:01.667Z INFO sending PrepareRequest {"height": 2388, "view": 0} -2023-12-15T14:52:01.667Z INFO sending Commit {"height": 2388, "view": 0} -2023-12-15T14:52:01.667Z INFO approving block {"height": 2388, "hash": "c97b26b093fdf637748d634e2886c3ee7b49fa06397ccc52e3e740da0e591bc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2452fb9d51423dfda2fa5b316b123a7c0a48c6d435bf7a197d58645a19689fe7"} -2023-12-15T14:52:01.668Z INFO initializing dbft {"height": 2389, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:01.668Z debug frostfs-node/morph.go:229 new block {"index": 2388} -2023-12-15T14:52:02.391Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2388, "blockHeight": 2388, "took": "2.74483ms"} -2023-12-15T14:52:02.668Z INFO sending PrepareRequest {"height": 2389, "view": 0} -2023-12-15T14:52:02.669Z INFO sending Commit {"height": 2389, "view": 0} -2023-12-15T14:52:02.669Z INFO approving block {"height": 2389, "hash": "5291f97b4b0fb4bd3d83f163ae3ec02e4be737042d20cf35484788714b2a981f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c97b26b093fdf637748d634e2886c3ee7b49fa06397ccc52e3e740da0e591bc1"} -2023-12-15T14:52:02.670Z INFO initializing dbft {"height": 2390, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:02.671Z debug frostfs-node/morph.go:229 new block {"index": 2389} -2023-12-15T14:52:03.393Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2389, "blockHeight": 2389, "took": "4.055829ms"} -2023-12-15T14:52:03.670Z INFO sending PrepareRequest {"height": 2390, "view": 0} -2023-12-15T14:52:03.670Z INFO sending Commit {"height": 2390, "view": 0} -2023-12-15T14:52:03.670Z INFO approving block {"height": 2390, "hash": "5e532fb343e56a860925332a87170b7f23cfad448b0a001ee7a3f234031a7b1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5291f97b4b0fb4bd3d83f163ae3ec02e4be737042d20cf35484788714b2a981f"} -2023-12-15T14:52:03.671Z INFO initializing dbft {"height": 2391, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:03.671Z debug frostfs-node/morph.go:229 new block {"index": 2390} -2023-12-15T14:52:04.392Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2390, "blockHeight": 2390, "took": "2.714829ms"} -2023-12-15T14:52:04.671Z INFO sending PrepareRequest {"height": 2391, "view": 0} -2023-12-15T14:52:04.672Z INFO sending Commit {"height": 2391, "view": 0} -2023-12-15T14:52:04.672Z INFO approving block {"height": 2391, "hash": "f5204e7bf380d1eef928e44c29b7327c2a59a3b377d1dcaad39d8a49599d7d5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e532fb343e56a860925332a87170b7f23cfad448b0a001ee7a3f234031a7b1e"} -2023-12-15T14:52:04.674Z INFO initializing dbft {"height": 2392, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:04.675Z debug frostfs-node/morph.go:229 new block {"index": 2391} -2023-12-15T14:52:05.395Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2391, "blockHeight": 2391, "took": "4.81704ms"} -2023-12-15T14:52:05.673Z INFO sending PrepareRequest {"height": 2392, "view": 0} -2023-12-15T14:52:05.673Z INFO sending Commit {"height": 2392, "view": 0} -2023-12-15T14:52:05.674Z INFO approving block {"height": 2392, "hash": "1cbaf423500dd14a37dfb4559461bb1e43750974e902231f98403a3dea294f65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5204e7bf380d1eef928e44c29b7327c2a59a3b377d1dcaad39d8a49599d7d5a"} -2023-12-15T14:52:05.675Z INFO initializing dbft {"height": 2393, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:05.675Z debug frostfs-node/morph.go:229 new block {"index": 2392} -2023-12-15T14:52:06.394Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2392, "blockHeight": 2392, "took": "3.538893ms"} -2023-12-15T14:52:06.674Z INFO sending PrepareRequest {"height": 2393, "view": 0} -2023-12-15T14:52:06.675Z INFO sending Commit {"height": 2393, "view": 0} -2023-12-15T14:52:06.675Z INFO approving block {"height": 2393, "hash": "60312d87459f80dc488fa110f0207a9f9eff0b52ab961b274baaa6e28770a8a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cbaf423500dd14a37dfb4559461bb1e43750974e902231f98403a3dea294f65"} -2023-12-15T14:52:06.676Z INFO initializing dbft {"height": 2394, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:06.677Z debug frostfs-node/morph.go:229 new block {"index": 2393} -2023-12-15T14:52:07.394Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2393, "blockHeight": 2393, "took": "3.480291ms"} -2023-12-15T14:52:07.676Z INFO sending PrepareRequest {"height": 2394, "view": 0} -2023-12-15T14:52:07.676Z INFO sending Commit {"height": 2394, "view": 0} -2023-12-15T14:52:07.676Z INFO approving block {"height": 2394, "hash": "19d77b7291ce83964c19a1dce216225b3f75c09d880919c32bbfdd851700bb16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60312d87459f80dc488fa110f0207a9f9eff0b52ab961b274baaa6e28770a8a8"} -2023-12-15T14:52:07.678Z INFO initializing dbft {"height": 2395, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:07.679Z debug frostfs-node/morph.go:229 new block {"index": 2394} -2023-12-15T14:52:08.396Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2394, "blockHeight": 2394, "took": "4.461937ms"} -2023-12-15T14:52:08.677Z INFO sending PrepareRequest {"height": 2395, "view": 0} -2023-12-15T14:52:08.678Z INFO sending Commit {"height": 2395, "view": 0} -2023-12-15T14:52:08.678Z INFO approving block {"height": 2395, "hash": "5649dc9bd77422a96aa346b04437c86bcd5983425a965774801b301aea0e1a2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19d77b7291ce83964c19a1dce216225b3f75c09d880919c32bbfdd851700bb16"} -2023-12-15T14:52:08.679Z INFO initializing dbft {"height": 2396, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:08.680Z debug frostfs-node/morph.go:229 new block {"index": 2395} -2023-12-15T14:52:09.396Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2395, "blockHeight": 2395, "took": "3.974289ms"} -2023-12-15T14:52:09.678Z INFO sending PrepareRequest {"height": 2396, "view": 0} -2023-12-15T14:52:09.679Z INFO sending Commit {"height": 2396, "view": 0} -2023-12-15T14:52:09.679Z INFO approving block {"height": 2396, "hash": "a5764c39d7b25187526eca56d83ac52837c207d3ab1e7d88a7f1f28cffdba389", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5649dc9bd77422a96aa346b04437c86bcd5983425a965774801b301aea0e1a2f"} -2023-12-15T14:52:09.679Z INFO initializing dbft {"height": 2397, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:09.680Z debug frostfs-node/morph.go:229 new block {"index": 2396} -2023-12-15T14:52:10.396Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2396, "blockHeight": 2396, "took": "4.110609ms"} -2023-12-15T14:52:10.680Z INFO sending PrepareRequest {"height": 2397, "view": 0} -2023-12-15T14:52:10.681Z INFO sending Commit {"height": 2397, "view": 0} -2023-12-15T14:52:10.681Z INFO approving block {"height": 2397, "hash": "784c3cd78e8c5c45eb8fb14cb7f2f23686e6ba9a713fdc17a005836f95b84f81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5764c39d7b25187526eca56d83ac52837c207d3ab1e7d88a7f1f28cffdba389"} -2023-12-15T14:52:10.683Z INFO initializing dbft {"height": 2398, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:10.683Z debug frostfs-node/morph.go:229 new block {"index": 2397} -2023-12-15T14:52:11.396Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2397, "blockHeight": 2397, "took": "3.036677ms"} -2023-12-15T14:52:11.682Z INFO sending PrepareRequest {"height": 2398, "view": 0} -2023-12-15T14:52:11.682Z INFO sending Commit {"height": 2398, "view": 0} -2023-12-15T14:52:11.683Z INFO approving block {"height": 2398, "hash": "e16b0b712795eccdbdde41000bafe25ec8979ac3a9b1e9340326a7b7bf1869f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "784c3cd78e8c5c45eb8fb14cb7f2f23686e6ba9a713fdc17a005836f95b84f81"} -2023-12-15T14:52:11.684Z INFO initializing dbft {"height": 2399, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:11.685Z debug frostfs-node/morph.go:229 new block {"index": 2398} -2023-12-15T14:52:12.398Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2398, "blockHeight": 2398, "took": "4.122239ms"} -2023-12-15T14:52:12.683Z INFO sending PrepareRequest {"height": 2399, "view": 0} -2023-12-15T14:52:12.684Z INFO sending Commit {"height": 2399, "view": 0} -2023-12-15T14:52:12.684Z INFO approving block {"height": 2399, "hash": "79fb46ed9e4077367985957f21e61c5016df76396590fd960defc58a9fd90c18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e16b0b712795eccdbdde41000bafe25ec8979ac3a9b1e9340326a7b7bf1869f3"} -2023-12-15T14:52:12.685Z INFO initializing dbft {"height": 2400, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:12.685Z debug frostfs-node/morph.go:229 new block {"index": 2399} -2023-12-15T14:52:13.401Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2399, "blockHeight": 2399, "took": "6.630663ms"} -2023-12-15T14:52:13.685Z INFO sending PrepareRequest {"height": 2400, "view": 0} -2023-12-15T14:52:13.685Z INFO sending Commit {"height": 2400, "view": 0} -2023-12-15T14:52:13.685Z INFO approving block {"height": 2400, "hash": "5c2695fbf6be2d6f345d160f9247e467d96db8b951f34331f58ea00456820069", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79fb46ed9e4077367985957f21e61c5016df76396590fd960defc58a9fd90c18"} -2023-12-15T14:52:13.686Z INFO initializing dbft {"height": 2401, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:13.686Z debug frostfs-node/morph.go:229 new block {"index": 2400} -2023-12-15T14:52:14.400Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2400, "blockHeight": 2400, "took": "5.410657ms"} -2023-12-15T14:52:14.687Z INFO sending PrepareRequest {"height": 2401, "view": 0} -2023-12-15T14:52:14.687Z INFO sending Commit {"height": 2401, "view": 0} -2023-12-15T14:52:14.687Z INFO approving block {"height": 2401, "hash": "85939b15903095864d502229de66a2b144fe58d23fd1af5ac83002d7624d8a42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c2695fbf6be2d6f345d160f9247e467d96db8b951f34331f58ea00456820069"} -2023-12-15T14:52:14.688Z INFO initializing dbft {"height": 2402, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:14.689Z debug frostfs-node/morph.go:229 new block {"index": 2401} -2023-12-15T14:52:15.399Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2401, "blockHeight": 2401, "took": "3.887943ms"} -2023-12-15T14:52:15.688Z INFO sending PrepareRequest {"height": 2402, "view": 0} -2023-12-15T14:52:15.688Z INFO sending Commit {"height": 2402, "view": 0} -2023-12-15T14:52:15.689Z INFO approving block {"height": 2402, "hash": "7086de780231d49bf45999c41f255335abb641ce8a51711b7d2608e24079652f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85939b15903095864d502229de66a2b144fe58d23fd1af5ac83002d7624d8a42"} -2023-12-15T14:52:15.690Z INFO initializing dbft {"height": 2403, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:15.690Z debug frostfs-node/morph.go:229 new block {"index": 2402} -2023-12-15T14:52:16.400Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2402, "blockHeight": 2402, "took": "4.148437ms"} -2023-12-15T14:52:16.690Z INFO sending PrepareRequest {"height": 2403, "view": 0} -2023-12-15T14:52:16.690Z INFO sending Commit {"height": 2403, "view": 0} -2023-12-15T14:52:16.690Z INFO approving block {"height": 2403, "hash": "2d9b35745a1b1bb73865fd7ebf40bf4ab6da983c7fdc655daea964eb607cf8ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7086de780231d49bf45999c41f255335abb641ce8a51711b7d2608e24079652f"} -2023-12-15T14:52:16.691Z INFO initializing dbft {"height": 2404, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:16.691Z debug frostfs-node/morph.go:229 new block {"index": 2403} -2023-12-15T14:52:17.400Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2403, "blockHeight": 2403, "took": "3.21011ms"} -2023-12-15T14:52:17.691Z INFO sending PrepareRequest {"height": 2404, "view": 0} -2023-12-15T14:52:17.691Z INFO sending Commit {"height": 2404, "view": 0} -2023-12-15T14:52:17.692Z INFO approving block {"height": 2404, "hash": "32f4c99aea95608b0e954fc26ffb9251b399daf48efa88d2b15ffab1c0574600", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d9b35745a1b1bb73865fd7ebf40bf4ab6da983c7fdc655daea964eb607cf8ce"} -2023-12-15T14:52:17.692Z INFO initializing dbft {"height": 2405, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:17.694Z debug frostfs-node/morph.go:229 new block {"index": 2404} -2023-12-15T14:52:18.401Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2404, "blockHeight": 2404, "took": "4.176084ms"} -2023-12-15T14:52:18.693Z INFO sending PrepareRequest {"height": 2405, "view": 0} -2023-12-15T14:52:18.693Z INFO sending Commit {"height": 2405, "view": 0} -2023-12-15T14:52:18.693Z INFO approving block {"height": 2405, "hash": "e56a7f882c6ad44d2e17bfd6893307b382c2354ecd98c09d642c9b1ec8075fa2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32f4c99aea95608b0e954fc26ffb9251b399daf48efa88d2b15ffab1c0574600"} -2023-12-15T14:52:18.694Z INFO initializing dbft {"height": 2406, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:18.694Z debug frostfs-node/morph.go:229 new block {"index": 2405} -2023-12-15T14:52:19.400Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2405, "blockHeight": 2405, "took": "2.816372ms"} -2023-12-15T14:52:19.694Z INFO sending PrepareRequest {"height": 2406, "view": 0} -2023-12-15T14:52:19.694Z INFO sending Commit {"height": 2406, "view": 0} -2023-12-15T14:52:19.695Z INFO approving block {"height": 2406, "hash": "f7d6d6a73a18c68a88fc2cad92d78d6a3aafacf004797f30bb24433a64f62364", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e56a7f882c6ad44d2e17bfd6893307b382c2354ecd98c09d642c9b1ec8075fa2"} -2023-12-15T14:52:19.695Z INFO initializing dbft {"height": 2407, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:19.696Z debug frostfs-node/morph.go:229 new block {"index": 2406} -2023-12-15T14:52:20.403Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2406, "blockHeight": 2406, "took": "4.725939ms"} -2023-12-15T14:52:20.696Z INFO sending PrepareRequest {"height": 2407, "view": 0} -2023-12-15T14:52:20.696Z INFO sending Commit {"height": 2407, "view": 0} -2023-12-15T14:52:20.697Z INFO approving block {"height": 2407, "hash": "30d9565301a967acbcdebbafd0b21c7c2d0d6890d0390a3e1a5993d68ae4f238", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7d6d6a73a18c68a88fc2cad92d78d6a3aafacf004797f30bb24433a64f62364"} -2023-12-15T14:52:20.698Z INFO initializing dbft {"height": 2408, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:20.699Z debug frostfs-node/morph.go:229 new block {"index": 2407} -2023-12-15T14:52:21.401Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2407, "blockHeight": 2407, "took": "2.910385ms"} -2023-12-15T14:52:21.697Z INFO sending PrepareRequest {"height": 2408, "view": 0} -2023-12-15T14:52:21.698Z INFO sending Commit {"height": 2408, "view": 0} -2023-12-15T14:52:21.698Z INFO approving block {"height": 2408, "hash": "2cc35a0149777a25e490df78ee636ad63e6a4782653ba69529dc713fe6f60e8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30d9565301a967acbcdebbafd0b21c7c2d0d6890d0390a3e1a5993d68ae4f238"} -2023-12-15T14:52:21.699Z INFO initializing dbft {"height": 2409, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:21.699Z debug frostfs-node/morph.go:229 new block {"index": 2408} -2023-12-15T14:52:22.403Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2408, "blockHeight": 2408, "took": "4.518558ms"} -2023-12-15T14:52:22.699Z INFO sending PrepareRequest {"height": 2409, "view": 0} -2023-12-15T14:52:22.699Z INFO sending Commit {"height": 2409, "view": 0} -2023-12-15T14:52:22.700Z INFO approving block {"height": 2409, "hash": "68b94a67c0de13bcc55520ee5c9dc3e9195f545e1a71509d0dba282613c7e1cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2cc35a0149777a25e490df78ee636ad63e6a4782653ba69529dc713fe6f60e8a"} -2023-12-15T14:52:22.701Z INFO initializing dbft {"height": 2410, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:22.702Z debug frostfs-node/morph.go:229 new block {"index": 2409} -2023-12-15T14:52:22.704Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:52:22.705Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 10, "iteration": 3, "error": "no data for 2 iteration in 10 epoch for consumers's trusts"} -2023-12-15T14:52:22.708Z INFO runtime log {"tx": "862c75fb62be82d98cc0bb77a978501db7318cdb88d1d84e21ae0038d4e46ca9", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:52:23.406Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2409, "blockHeight": 2409, "took": "7.213391ms"} -2023-12-15T14:52:23.701Z INFO sending PrepareRequest {"height": 2410, "view": 0} -2023-12-15T14:52:23.701Z INFO sending Commit {"height": 2410, "view": 0} -2023-12-15T14:52:23.701Z INFO approving block {"height": 2410, "hash": "f01aa3bf67c845cd6cc9f8ad80b4d969154a819aeffa1d593c5a7b1d3f4f43de", "tx_count": 1, "merkle": "8e6b5c2053cf8db6b80e469fbe6b8d482778905c0bcced30c48b39a52b7d1aac", "prev": "68b94a67c0de13bcc55520ee5c9dc3e9195f545e1a71509d0dba282613c7e1cd"} -2023-12-15T14:52:23.702Z INFO runtime log {"tx": "ac1a7d2ba5398bc430edcc0b5c907827488d6bbe9f460eb8b68dcf53205c6b8e", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:52:23.703Z INFO initializing dbft {"height": 2411, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:23.704Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 12} -2023-12-15T14:52:23.704Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 12} -2023-12-15T14:52:23.704Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:52:23.704Z debug frostfs-node/morph.go:229 new block {"index": 2410} -2023-12-15T14:52:23.704Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:52:23.704Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 12} -2023-12-15T14:52:23.704Z debug controller/calls.go:95 starting to report local trust values {"epoch": 11} -2023-12-15T14:52:23.704Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 12} -2023-12-15T14:52:23.704Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 11} -2023-12-15T14:52:23.704Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T14:52:23.704Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 12} -2023-12-15T14:52:23.707Z debug controller/calls.go:146 reporting successfully finished {"epoch": 11} -2023-12-15T14:52:23.707Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 11} -2023-12-15T14:52:23.708Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:52:23.709Z INFO runtime log {"tx": "78d24eedeb555687075fb4c14feb20ad9eac8e102c732929eb7b635c5d00c162", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:52:23.711Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 2413, "tx_hash": "178c7995c07df0b64dbaba0208b0617cd141c15a9eb3416bbc8e5cc6e54db0e7"} -2023-12-15T14:52:23.718Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:52:23.718Z info audit/handlers.go:13 new round of audit {"epoch": 12} -2023-12-15T14:52:23.718Z info settlement/calls.go:26 new audit settlement event {"epoch": 12} -2023-12-15T14:52:23.718Z info settlement/handlers.go:14 process audit settlements {"epoch": 12} -2023-12-15T14:52:23.718Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 12} -2023-12-15T14:52:23.719Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 2500, "fallback_valid_for": 40, "tx_hash": "2f1ec71b902d174e26d7097b5697c93eeb1e4af4f72f5f501cbdde3ef3294e36"} -2023-12-15T14:52:23.719Z info settlement/handlers.go:18 audit processing finished {"epoch": 12} -2023-12-15T14:52:23.721Z info audit/process.go:39 select containers for audit {"epoch": 12, "amount": 0} -2023-12-15T14:52:23.721Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T14:52:23.723Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 2413, "tx_hash": "5e32dafa487520448a39b2b841dd3845438e224f49bbe90fcccf8a1451fd67ae"} -2023-12-15T14:52:24.406Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 2410, "blockHeight": 2410, "took": "6.618024ms"} -2023-12-15T14:52:24.703Z INFO sending PrepareRequest {"height": 2411, "view": 0} -2023-12-15T14:52:24.703Z INFO sending Commit {"height": 2411, "view": 0} -2023-12-15T14:52:24.703Z INFO approving block {"height": 2411, "hash": "c090f041de2a459231d7005dae140cf88f19517d9c89bbffb5aba3f08f148ce9", "tx_count": 3, "merkle": "17a4dbea749faa0c8dd342e4847dc04bc20a6db64d3a215e7065fc5f3baeb847", "prev": "f01aa3bf67c845cd6cc9f8ad80b4d969154a819aeffa1d593c5a7b1d3f4f43de"} -2023-12-15T14:52:24.704Z INFO runtime log {"tx": "e5c45b60213787fc52a22df0e7c7f9fe2218ae1ce077cdabfc93dc4bcda0db68", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:52:24.706Z INFO initializing dbft {"height": 2412, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:24.707Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 11} -2023-12-15T14:52:24.707Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 11} -2023-12-15T14:52:24.707Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 11} -2023-12-15T14:52:24.707Z debug frostfs-node/morph.go:229 new block {"index": 2411} -2023-12-15T14:52:25.408Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 2411, "blockHeight": 2411, "took": "7.721642ms"} -2023-12-15T14:52:25.704Z INFO sending PrepareRequest {"height": 2412, "view": 0} -2023-12-15T14:52:25.704Z INFO sending Commit {"height": 2412, "view": 0} -2023-12-15T14:52:25.704Z INFO approving block {"height": 2412, "hash": "c01c7bd753872fd87ee292cec119b8ea7e53416d59c83fb1d18df9edaf7a2a5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c090f041de2a459231d7005dae140cf88f19517d9c89bbffb5aba3f08f148ce9"} -2023-12-15T14:52:25.706Z INFO initializing dbft {"height": 2413, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:25.707Z debug frostfs-node/morph.go:229 new block {"index": 2412} -2023-12-15T14:52:26.405Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2412, "blockHeight": 2412, "took": "4.876605ms"} -2023-12-15T14:52:26.705Z INFO sending PrepareRequest {"height": 2413, "view": 0} -2023-12-15T14:52:26.706Z INFO sending Commit {"height": 2413, "view": 0} -2023-12-15T14:52:26.706Z INFO approving block {"height": 2413, "hash": "36f9d61325a1a0d75389e1b20dc6043519d486c0708a9d22e9245733dc4246fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c01c7bd753872fd87ee292cec119b8ea7e53416d59c83fb1d18df9edaf7a2a5b"} -2023-12-15T14:52:26.708Z INFO initializing dbft {"height": 2414, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:26.708Z debug frostfs-node/morph.go:229 new block {"index": 2413} -2023-12-15T14:52:27.407Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2413, "blockHeight": 2413, "took": "4.651907ms"} -2023-12-15T14:52:27.707Z INFO sending PrepareRequest {"height": 2414, "view": 0} -2023-12-15T14:52:27.707Z INFO sending Commit {"height": 2414, "view": 0} -2023-12-15T14:52:27.708Z INFO approving block {"height": 2414, "hash": "c2cc99ce08fee36965808a41336d7ef1ef3ca4fc8229f016561a1082a8735e34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36f9d61325a1a0d75389e1b20dc6043519d486c0708a9d22e9245733dc4246fa"} -2023-12-15T14:52:27.709Z INFO initializing dbft {"height": 2415, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:27.709Z debug frostfs-node/morph.go:229 new block {"index": 2414} -2023-12-15T14:52:28.406Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2414, "blockHeight": 2414, "took": "3.605875ms"} -2023-12-15T14:52:28.709Z INFO sending PrepareRequest {"height": 2415, "view": 0} -2023-12-15T14:52:28.709Z INFO sending Commit {"height": 2415, "view": 0} -2023-12-15T14:52:28.709Z INFO approving block {"height": 2415, "hash": "3179a53d12746122095fbace51a5f5eb05b5e8361106c2b4fc9dd8b46e3db2e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2cc99ce08fee36965808a41336d7ef1ef3ca4fc8229f016561a1082a8735e34"} -2023-12-15T14:52:28.710Z INFO initializing dbft {"height": 2416, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:28.711Z debug frostfs-node/morph.go:229 new block {"index": 2415} -2023-12-15T14:52:29.407Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2415, "blockHeight": 2415, "took": "3.699858ms"} -2023-12-15T14:52:29.711Z INFO sending PrepareRequest {"height": 2416, "view": 0} -2023-12-15T14:52:29.711Z INFO sending Commit {"height": 2416, "view": 0} -2023-12-15T14:52:29.711Z INFO approving block {"height": 2416, "hash": "c849ed84b6dcd03d5496ffe85eca78be7662c075de6a954a4b6873cd1ab0d77e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3179a53d12746122095fbace51a5f5eb05b5e8361106c2b4fc9dd8b46e3db2e2"} -2023-12-15T14:52:29.712Z INFO initializing dbft {"height": 2417, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:29.712Z debug frostfs-node/morph.go:229 new block {"index": 2416} -2023-12-15T14:52:30.407Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2416, "blockHeight": 2416, "took": "3.401109ms"} -2023-12-15T14:52:30.712Z INFO sending PrepareRequest {"height": 2417, "view": 0} -2023-12-15T14:52:30.712Z INFO sending Commit {"height": 2417, "view": 0} -2023-12-15T14:52:30.713Z INFO approving block {"height": 2417, "hash": "c84a5df7877981a5e1c9bd1980ec1d0e473898b287599df2f51e96d8b79242b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c849ed84b6dcd03d5496ffe85eca78be7662c075de6a954a4b6873cd1ab0d77e"} -2023-12-15T14:52:30.713Z INFO initializing dbft {"height": 2418, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:30.714Z debug frostfs-node/morph.go:229 new block {"index": 2417} -2023-12-15T14:52:30.716Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:52:30.716Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:52:30.716Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:52:31.407Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2417, "blockHeight": 2417, "took": "3.115171ms"} -2023-12-15T14:52:31.713Z INFO sending PrepareRequest {"height": 2418, "view": 0} -2023-12-15T14:52:31.713Z INFO sending Commit {"height": 2418, "view": 0} -2023-12-15T14:52:31.713Z INFO approving block {"height": 2418, "hash": "487e2ce737596e03475e75f3059da7d2e201f1de343afd64b3303f2764e56fe9", "tx_count": 2, "merkle": "f9d4874d419530f910e5aa682af5b8dc093746dc4c29aec45f54697c33a930ea", "prev": "c84a5df7877981a5e1c9bd1980ec1d0e473898b287599df2f51e96d8b79242b2"} -2023-12-15T14:52:31.714Z INFO runtime log {"tx": "9c0c8c72ac25c66827c06655d8ebcf9d07b368b081113fada0a69635d9e0e75d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:52:31.714Z INFO runtime log {"tx": "9c0c8c72ac25c66827c06655d8ebcf9d07b368b081113fada0a69635d9e0e75d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:52:31.715Z INFO initializing dbft {"height": 2419, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:31.715Z debug frostfs-node/morph.go:229 new block {"index": 2418} -2023-12-15T14:52:32.409Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2418, "blockHeight": 2418, "took": "4.777246ms"} -2023-12-15T14:52:32.715Z INFO sending PrepareRequest {"height": 2419, "view": 0} -2023-12-15T14:52:32.715Z INFO sending Commit {"height": 2419, "view": 0} -2023-12-15T14:52:32.715Z INFO approving block {"height": 2419, "hash": "b078daebe3556b740be795e583033c124720e7910e094253e5ba40dc6628ff34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "487e2ce737596e03475e75f3059da7d2e201f1de343afd64b3303f2764e56fe9"} -2023-12-15T14:52:32.717Z INFO initializing dbft {"height": 2420, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:32.718Z debug frostfs-node/morph.go:229 new block {"index": 2419} -2023-12-15T14:52:33.409Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2419, "blockHeight": 2419, "took": "3.928384ms"} -2023-12-15T14:52:33.716Z INFO sending PrepareRequest {"height": 2420, "view": 0} -2023-12-15T14:52:33.717Z INFO sending Commit {"height": 2420, "view": 0} -2023-12-15T14:52:33.717Z INFO approving block {"height": 2420, "hash": "0bfcc89a5c287e4479a66dbb838a1e7097432a895158b99cfe2d2fd186494295", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b078daebe3556b740be795e583033c124720e7910e094253e5ba40dc6628ff34"} -2023-12-15T14:52:33.718Z INFO initializing dbft {"height": 2421, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:33.718Z debug frostfs-node/morph.go:229 new block {"index": 2420} -2023-12-15T14:52:34.410Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2420, "blockHeight": 2420, "took": "3.922685ms"} -2023-12-15T14:52:34.718Z INFO sending PrepareRequest {"height": 2421, "view": 0} -2023-12-15T14:52:34.718Z INFO sending Commit {"height": 2421, "view": 0} -2023-12-15T14:52:34.719Z INFO approving block {"height": 2421, "hash": "d3721d0aa14880095997998e6d9a03785ff611208a21afca26adf8152b7d0a26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bfcc89a5c287e4479a66dbb838a1e7097432a895158b99cfe2d2fd186494295"} -2023-12-15T14:52:34.720Z INFO initializing dbft {"height": 2422, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:34.720Z debug frostfs-node/morph.go:229 new block {"index": 2421} -2023-12-15T14:52:35.410Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2421, "blockHeight": 2421, "took": "3.814671ms"} -2023-12-15T14:52:35.719Z INFO sending PrepareRequest {"height": 2422, "view": 0} -2023-12-15T14:52:35.720Z INFO sending Commit {"height": 2422, "view": 0} -2023-12-15T14:52:35.720Z INFO approving block {"height": 2422, "hash": "41efb0cb3bfc593ea84528ddbc7c60561f8c660de35f254719a8af83c211ae8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3721d0aa14880095997998e6d9a03785ff611208a21afca26adf8152b7d0a26"} -2023-12-15T14:52:35.721Z INFO initializing dbft {"height": 2423, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:35.722Z debug frostfs-node/morph.go:229 new block {"index": 2422} -2023-12-15T14:52:36.411Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2422, "blockHeight": 2422, "took": "3.967267ms"} -2023-12-15T14:52:36.721Z INFO sending PrepareRequest {"height": 2423, "view": 0} -2023-12-15T14:52:36.721Z INFO sending Commit {"height": 2423, "view": 0} -2023-12-15T14:52:36.721Z INFO approving block {"height": 2423, "hash": "c9761d6d603f7230a867610676e93383abb6ae04b292fced02001388dd2ccec5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41efb0cb3bfc593ea84528ddbc7c60561f8c660de35f254719a8af83c211ae8f"} -2023-12-15T14:52:36.723Z INFO initializing dbft {"height": 2424, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:36.724Z debug frostfs-node/morph.go:229 new block {"index": 2423} -2023-12-15T14:52:37.413Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2423, "blockHeight": 2423, "took": "5.774138ms"} -2023-12-15T14:52:37.549Z INFO bad notification {"contract": "faf7ce489f702d5ee48a5c41bc5525daee73ebe6", "event": "Crup number: ", "error": "event Crup number: does not exist"} -2023-12-15T14:52:37.549Z INFO bad notification {"contract": "faf7ce489f702d5ee48a5c41bc5525daee73ebe6", "event": "Crup number: ", "error": "event Crup number: does not exist"} -2023-12-15T14:52:37.549Z INFO bad notification {"contract": "faf7ce489f702d5ee48a5c41bc5525daee73ebe6", "event": "Crup number: ", "error": "event Crup number: does not exist"} -2023-12-15T14:52:37.722Z INFO sending PrepareRequest {"height": 2424, "view": 0} -2023-12-15T14:52:37.722Z INFO sending Commit {"height": 2424, "view": 0} -2023-12-15T14:52:37.723Z INFO approving block {"height": 2424, "hash": "0ce6abbf8a5882816ab00c28e4b3366d13162cfae5c4cbe8e8bd9f4181d174e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9761d6d603f7230a867610676e93383abb6ae04b292fced02001388dd2ccec5"} -2023-12-15T14:52:37.724Z INFO initializing dbft {"height": 2425, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:37.725Z debug frostfs-node/morph.go:229 new block {"index": 2424} -2023-12-15T14:52:38.414Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2424, "blockHeight": 2424, "took": "6.706092ms"} -2023-12-15T14:52:38.724Z INFO sending PrepareRequest {"height": 2425, "view": 0} -2023-12-15T14:52:38.724Z INFO sending Commit {"height": 2425, "view": 0} -2023-12-15T14:52:38.724Z INFO approving block {"height": 2425, "hash": "55f65b77d501504e0bd81e0206fd0ee0099ed83beb5ec436252bfa3905fc046d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ce6abbf8a5882816ab00c28e4b3366d13162cfae5c4cbe8e8bd9f4181d174e3"} -2023-12-15T14:52:38.725Z INFO initializing dbft {"height": 2426, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:38.725Z debug frostfs-node/morph.go:229 new block {"index": 2425} -2023-12-15T14:52:39.413Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2425, "blockHeight": 2425, "took": "4.067129ms"} -2023-12-15T14:52:39.726Z INFO sending PrepareRequest {"height": 2426, "view": 0} -2023-12-15T14:52:39.726Z INFO sending Commit {"height": 2426, "view": 0} -2023-12-15T14:52:39.727Z INFO approving block {"height": 2426, "hash": "3efa76a684e1f05c594895034c044a93f6f25810387de9f21662fec23a747d7f", "tx_count": 1, "merkle": "535117f255e4fa86d86b038ae3ad617a4481cb8ebce9600737a406f5d1efad36", "prev": "55f65b77d501504e0bd81e0206fd0ee0099ed83beb5ec436252bfa3905fc046d"} -2023-12-15T14:52:39.727Z INFO bad notification {"contract": "faf7ce489f702d5ee48a5c41bc5525daee73ebe6", "event": "Crup number: ", "error": "event Crup number: does not exist"} -2023-12-15T14:52:39.727Z INFO bad notification {"contract": "faf7ce489f702d5ee48a5c41bc5525daee73ebe6", "event": "Crup number: ", "error": "event Crup number: does not exist"} -2023-12-15T14:52:39.727Z INFO bad notification {"contract": "faf7ce489f702d5ee48a5c41bc5525daee73ebe6", "event": "Crup number: ", "error": "event Crup number: does not exist"} -2023-12-15T14:52:39.728Z INFO initializing dbft {"height": 2427, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:39.729Z debug frostfs-node/morph.go:229 new block {"index": 2426} -2023-12-15T14:52:40.415Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 2426, "blockHeight": 2426, "took": "5.846778ms"} -2023-12-15T14:52:40.728Z INFO sending PrepareRequest {"height": 2427, "view": 0} -2023-12-15T14:52:40.728Z INFO sending Commit {"height": 2427, "view": 0} -2023-12-15T14:52:40.729Z INFO approving block {"height": 2427, "hash": "306cac5fd4d8455b7bc376579b906cb05f2a1df1a9b1f9f80acba46c524458c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3efa76a684e1f05c594895034c044a93f6f25810387de9f21662fec23a747d7f"} -2023-12-15T14:52:40.730Z INFO initializing dbft {"height": 2428, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:40.731Z debug frostfs-node/morph.go:229 new block {"index": 2427} -2023-12-15T14:52:41.413Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2427, "blockHeight": 2427, "took": "3.255535ms"} -2023-12-15T14:52:41.729Z INFO sending PrepareRequest {"height": 2428, "view": 0} -2023-12-15T14:52:41.730Z INFO sending Commit {"height": 2428, "view": 0} -2023-12-15T14:52:41.731Z INFO approving block {"height": 2428, "hash": "df4e1a303350e3d0203df43c528e253da69a2b2093b9f793e7a9497562f9d36e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "306cac5fd4d8455b7bc376579b906cb05f2a1df1a9b1f9f80acba46c524458c3"} -2023-12-15T14:52:41.732Z INFO initializing dbft {"height": 2429, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:41.732Z debug frostfs-node/morph.go:229 new block {"index": 2428} -2023-12-15T14:52:42.414Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2428, "blockHeight": 2428, "took": "2.927005ms"} -2023-12-15T14:52:42.732Z INFO sending PrepareRequest {"height": 2429, "view": 0} -2023-12-15T14:52:42.732Z INFO sending Commit {"height": 2429, "view": 0} -2023-12-15T14:52:42.732Z INFO approving block {"height": 2429, "hash": "6b4bdfc02c2afa5ed779932f06f54198f416ca418dc1a36e3f6b7283b0a6d03c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df4e1a303350e3d0203df43c528e253da69a2b2093b9f793e7a9497562f9d36e"} -2023-12-15T14:52:42.733Z INFO initializing dbft {"height": 2430, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:42.733Z debug frostfs-node/morph.go:229 new block {"index": 2429} -2023-12-15T14:52:43.414Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2429, "blockHeight": 2429, "took": "2.950266ms"} -2023-12-15T14:52:43.733Z INFO sending PrepareRequest {"height": 2430, "view": 0} -2023-12-15T14:52:43.734Z INFO sending Commit {"height": 2430, "view": 0} -2023-12-15T14:52:43.734Z INFO approving block {"height": 2430, "hash": "167b117ed91cb984a0dd754039a547dca8a2feb4410894f5e41b26c1f25186be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b4bdfc02c2afa5ed779932f06f54198f416ca418dc1a36e3f6b7283b0a6d03c"} -2023-12-15T14:52:43.735Z INFO initializing dbft {"height": 2431, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:43.735Z debug frostfs-node/morph.go:229 new block {"index": 2430} -2023-12-15T14:52:44.415Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2430, "blockHeight": 2430, "took": "3.024188ms"} -2023-12-15T14:52:44.735Z INFO sending PrepareRequest {"height": 2431, "view": 0} -2023-12-15T14:52:44.735Z INFO sending Commit {"height": 2431, "view": 0} -2023-12-15T14:52:44.735Z INFO approving block {"height": 2431, "hash": "2db1cc1aa568f64289b392ca53d7f774b3ba78c7b2021fd953a9227ab74a787a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "167b117ed91cb984a0dd754039a547dca8a2feb4410894f5e41b26c1f25186be"} -2023-12-15T14:52:44.736Z INFO initializing dbft {"height": 2432, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:44.737Z debug frostfs-node/morph.go:229 new block {"index": 2431} -2023-12-15T14:52:45.417Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2431, "blockHeight": 2431, "took": "4.843451ms"} -2023-12-15T14:52:45.737Z INFO sending PrepareRequest {"height": 2432, "view": 0} -2023-12-15T14:52:45.737Z INFO sending Commit {"height": 2432, "view": 0} -2023-12-15T14:52:45.737Z INFO approving block {"height": 2432, "hash": "5006dd76a920f0d33ab32097688f0a3d3af77d3509fc185d69f057bb437410c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2db1cc1aa568f64289b392ca53d7f774b3ba78c7b2021fd953a9227ab74a787a"} -2023-12-15T14:52:45.738Z INFO initializing dbft {"height": 2433, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:45.738Z debug frostfs-node/morph.go:229 new block {"index": 2432} -2023-12-15T14:52:46.418Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2432, "blockHeight": 2432, "took": "4.488184ms"} -2023-12-15T14:52:46.738Z INFO sending PrepareRequest {"height": 2433, "view": 0} -2023-12-15T14:52:46.738Z INFO sending Commit {"height": 2433, "view": 0} -2023-12-15T14:52:46.738Z INFO approving block {"height": 2433, "hash": "466c2c758bbfecaf1adb198c1a9e6cea93a83d777bc90766a528300864670be5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5006dd76a920f0d33ab32097688f0a3d3af77d3509fc185d69f057bb437410c9"} -2023-12-15T14:52:46.739Z INFO initializing dbft {"height": 2434, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:46.740Z debug frostfs-node/morph.go:229 new block {"index": 2433} -2023-12-15T14:52:47.418Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2433, "blockHeight": 2433, "took": "4.219103ms"} -2023-12-15T14:52:47.740Z INFO sending PrepareRequest {"height": 2434, "view": 0} -2023-12-15T14:52:47.740Z INFO sending Commit {"height": 2434, "view": 0} -2023-12-15T14:52:47.740Z INFO approving block {"height": 2434, "hash": "1995ad3e654a1f1965092247820855f8037c38b54ae050db237eabe86bfe47d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "466c2c758bbfecaf1adb198c1a9e6cea93a83d777bc90766a528300864670be5"} -2023-12-15T14:52:47.741Z INFO initializing dbft {"height": 2435, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:47.742Z debug frostfs-node/morph.go:229 new block {"index": 2434} -2023-12-15T14:52:48.419Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2434, "blockHeight": 2434, "took": "4.137918ms"} -2023-12-15T14:52:48.742Z INFO sending PrepareRequest {"height": 2435, "view": 0} -2023-12-15T14:52:48.742Z INFO sending Commit {"height": 2435, "view": 0} -2023-12-15T14:52:48.742Z INFO approving block {"height": 2435, "hash": "52d4cbfa02830f1bbbebc1c55f702c245826cc1bb002c29ca9b6bdeba232be33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1995ad3e654a1f1965092247820855f8037c38b54ae050db237eabe86bfe47d0"} -2023-12-15T14:52:48.744Z INFO initializing dbft {"height": 2436, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:48.744Z debug frostfs-node/morph.go:229 new block {"index": 2435} -2023-12-15T14:52:49.419Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2435, "blockHeight": 2435, "took": "4.256434ms"} -2023-12-15T14:52:49.743Z INFO sending PrepareRequest {"height": 2436, "view": 0} -2023-12-15T14:52:49.743Z INFO sending Commit {"height": 2436, "view": 0} -2023-12-15T14:52:49.744Z INFO approving block {"height": 2436, "hash": "f61f7bc632aad0d2902932a2e56fac2afdfdce904a47468dc51b46fa806d2ea4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52d4cbfa02830f1bbbebc1c55f702c245826cc1bb002c29ca9b6bdeba232be33"} -2023-12-15T14:52:49.745Z INFO initializing dbft {"height": 2437, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:49.746Z debug frostfs-node/morph.go:229 new block {"index": 2436} -2023-12-15T14:52:50.419Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2436, "blockHeight": 2436, "took": "3.711357ms"} -2023-12-15T14:52:50.744Z INFO sending PrepareRequest {"height": 2437, "view": 0} -2023-12-15T14:52:50.745Z INFO sending Commit {"height": 2437, "view": 0} -2023-12-15T14:52:50.745Z INFO approving block {"height": 2437, "hash": "abcf3b38c05e48f33167c4c8af0b47b719d4eb262f38ef818a0809a8d1db64df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f61f7bc632aad0d2902932a2e56fac2afdfdce904a47468dc51b46fa806d2ea4"} -2023-12-15T14:52:50.746Z INFO initializing dbft {"height": 2438, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:50.748Z debug frostfs-node/morph.go:229 new block {"index": 2437} -2023-12-15T14:52:51.419Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2437, "blockHeight": 2437, "took": "3.528053ms"} -2023-12-15T14:52:51.746Z INFO sending PrepareRequest {"height": 2438, "view": 0} -2023-12-15T14:52:51.746Z INFO sending Commit {"height": 2438, "view": 0} -2023-12-15T14:52:51.746Z INFO approving block {"height": 2438, "hash": "95608bcd933e5c8fe7310fefeeb3b73080bbba724c9cec82dc5ba89c4d536892", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abcf3b38c05e48f33167c4c8af0b47b719d4eb262f38ef818a0809a8d1db64df"} -2023-12-15T14:52:51.747Z INFO initializing dbft {"height": 2439, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:51.748Z debug frostfs-node/morph.go:229 new block {"index": 2438} -2023-12-15T14:52:52.421Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2438, "blockHeight": 2438, "took": "4.363535ms"} -2023-12-15T14:52:52.747Z INFO sending PrepareRequest {"height": 2439, "view": 0} -2023-12-15T14:52:52.747Z INFO sending Commit {"height": 2439, "view": 0} -2023-12-15T14:52:52.748Z INFO approving block {"height": 2439, "hash": "1f0ffe997c7b92bf88a46f19c74fe2d9850b8d66513b6f9ba3191dfc77baa312", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95608bcd933e5c8fe7310fefeeb3b73080bbba724c9cec82dc5ba89c4d536892"} -2023-12-15T14:52:52.748Z INFO initializing dbft {"height": 2440, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:52.749Z debug frostfs-node/morph.go:229 new block {"index": 2439} -2023-12-15T14:52:53.420Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2439, "blockHeight": 2439, "took": "3.571444ms"} -2023-12-15T14:52:53.749Z INFO sending PrepareRequest {"height": 2440, "view": 0} -2023-12-15T14:52:53.749Z INFO sending Commit {"height": 2440, "view": 0} -2023-12-15T14:52:53.749Z INFO approving block {"height": 2440, "hash": "803e379683856ff3b644adb5a77148e551733a407af93bca5489946f68f3b3e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f0ffe997c7b92bf88a46f19c74fe2d9850b8d66513b6f9ba3191dfc77baa312"} -2023-12-15T14:52:53.750Z INFO initializing dbft {"height": 2441, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:53.750Z debug frostfs-node/morph.go:229 new block {"index": 2440} -2023-12-15T14:52:54.422Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2440, "blockHeight": 2440, "took": "3.848952ms"} -2023-12-15T14:52:54.750Z INFO sending PrepareRequest {"height": 2441, "view": 0} -2023-12-15T14:52:54.750Z INFO sending Commit {"height": 2441, "view": 0} -2023-12-15T14:52:54.750Z INFO approving block {"height": 2441, "hash": "78335e6b1c0c6879253e40a72831988e9d745e67b6e0032dc07295d669f2a1a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "803e379683856ff3b644adb5a77148e551733a407af93bca5489946f68f3b3e0"} -2023-12-15T14:52:54.752Z INFO initializing dbft {"height": 2442, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:54.752Z debug frostfs-node/morph.go:229 new block {"index": 2441} -2023-12-15T14:52:55.422Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2441, "blockHeight": 2441, "took": "3.632336ms"} -2023-12-15T14:52:55.752Z INFO sending PrepareRequest {"height": 2442, "view": 0} -2023-12-15T14:52:55.752Z INFO sending Commit {"height": 2442, "view": 0} -2023-12-15T14:52:55.752Z INFO approving block {"height": 2442, "hash": "a52e392826a14cf8238ba260d9fae3a077f1010048ba44c982a20e7de8ab3ad5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78335e6b1c0c6879253e40a72831988e9d745e67b6e0032dc07295d669f2a1a1"} -2023-12-15T14:52:55.753Z INFO initializing dbft {"height": 2443, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:55.753Z debug frostfs-node/morph.go:229 new block {"index": 2442} -2023-12-15T14:52:56.424Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2442, "blockHeight": 2442, "took": "4.456357ms"} -2023-12-15T14:52:56.753Z INFO sending PrepareRequest {"height": 2443, "view": 0} -2023-12-15T14:52:56.754Z INFO sending Commit {"height": 2443, "view": 0} -2023-12-15T14:52:56.754Z INFO approving block {"height": 2443, "hash": "4ca6bc01fa42b938840692771f691c7b16a94da6342a5d5994eaef83826541b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a52e392826a14cf8238ba260d9fae3a077f1010048ba44c982a20e7de8ab3ad5"} -2023-12-15T14:52:56.755Z INFO initializing dbft {"height": 2444, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:56.756Z debug frostfs-node/morph.go:229 new block {"index": 2443} -2023-12-15T14:52:57.425Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2443, "blockHeight": 2443, "took": "4.506408ms"} -2023-12-15T14:52:57.755Z INFO sending PrepareRequest {"height": 2444, "view": 0} -2023-12-15T14:52:57.755Z INFO sending Commit {"height": 2444, "view": 0} -2023-12-15T14:52:57.755Z INFO approving block {"height": 2444, "hash": "391a59b272e123129b7a14e756727e5a1a284f35dd6e76642561a70e05ebc838", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ca6bc01fa42b938840692771f691c7b16a94da6342a5d5994eaef83826541b1"} -2023-12-15T14:52:57.757Z INFO initializing dbft {"height": 2445, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:57.757Z debug frostfs-node/morph.go:229 new block {"index": 2444} -2023-12-15T14:52:58.425Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2444, "blockHeight": 2444, "took": "4.072129ms"} -2023-12-15T14:52:58.756Z INFO sending PrepareRequest {"height": 2445, "view": 0} -2023-12-15T14:52:58.756Z INFO sending Commit {"height": 2445, "view": 0} -2023-12-15T14:52:58.756Z INFO approving block {"height": 2445, "hash": "f04869575ab25d9aebd1062912ccd0acb6b18c028a69364315def9a76a0d4223", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "391a59b272e123129b7a14e756727e5a1a284f35dd6e76642561a70e05ebc838"} -2023-12-15T14:52:58.758Z INFO initializing dbft {"height": 2446, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:58.759Z debug frostfs-node/morph.go:229 new block {"index": 2445} -2023-12-15T14:52:59.427Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2445, "blockHeight": 2445, "took": "5.83141ms"} -2023-12-15T14:52:59.757Z INFO sending PrepareRequest {"height": 2446, "view": 0} -2023-12-15T14:52:59.757Z INFO sending Commit {"height": 2446, "view": 0} -2023-12-15T14:52:59.757Z INFO approving block {"height": 2446, "hash": "f9e60d88183adc03ead48a26db9d50305032a48f3745bdb44c7d1a5787697fab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f04869575ab25d9aebd1062912ccd0acb6b18c028a69364315def9a76a0d4223"} -2023-12-15T14:52:59.759Z INFO initializing dbft {"height": 2447, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:52:59.759Z debug frostfs-node/morph.go:229 new block {"index": 2446} -2023-12-15T14:53:00.427Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2446, "blockHeight": 2446, "took": "5.033057ms"} -2023-12-15T14:53:00.759Z INFO sending PrepareRequest {"height": 2447, "view": 0} -2023-12-15T14:53:00.759Z INFO sending Commit {"height": 2447, "view": 0} -2023-12-15T14:53:00.759Z INFO approving block {"height": 2447, "hash": "3ce01ef2d0d51e2744998311139f094bc5a17429be58e6f74774d33e3a9b6f93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9e60d88183adc03ead48a26db9d50305032a48f3745bdb44c7d1a5787697fab"} -2023-12-15T14:53:00.760Z INFO initializing dbft {"height": 2448, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:00.761Z debug frostfs-node/morph.go:229 new block {"index": 2447} -2023-12-15T14:53:01.426Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2447, "blockHeight": 2447, "took": "3.223869ms"} -2023-12-15T14:53:01.760Z INFO sending PrepareRequest {"height": 2448, "view": 0} -2023-12-15T14:53:01.761Z INFO sending Commit {"height": 2448, "view": 0} -2023-12-15T14:53:01.761Z INFO approving block {"height": 2448, "hash": "be1c713d01428bd20331f2d5558083b57d8e6492feff9eb74efb1c6168e59526", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ce01ef2d0d51e2744998311139f094bc5a17429be58e6f74774d33e3a9b6f93"} -2023-12-15T14:53:01.762Z INFO initializing dbft {"height": 2449, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:01.763Z debug frostfs-node/morph.go:229 new block {"index": 2448} -2023-12-15T14:53:02.427Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2448, "blockHeight": 2448, "took": "3.508512ms"} -2023-12-15T14:53:02.762Z INFO sending PrepareRequest {"height": 2449, "view": 0} -2023-12-15T14:53:02.762Z INFO sending Commit {"height": 2449, "view": 0} -2023-12-15T14:53:02.762Z INFO approving block {"height": 2449, "hash": "c35d7768e2ea65b52262b5a9b2fdcedfdee6c85f088c626eca4e5ab3e4d6f4d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be1c713d01428bd20331f2d5558083b57d8e6492feff9eb74efb1c6168e59526"} -2023-12-15T14:53:02.763Z INFO initializing dbft {"height": 2450, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:02.764Z debug frostfs-node/morph.go:229 new block {"index": 2449} -2023-12-15T14:53:03.427Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2449, "blockHeight": 2449, "took": "3.80096ms"} -2023-12-15T14:53:03.763Z INFO sending PrepareRequest {"height": 2450, "view": 0} -2023-12-15T14:53:03.764Z INFO sending Commit {"height": 2450, "view": 0} -2023-12-15T14:53:03.764Z INFO approving block {"height": 2450, "hash": "92d69525f061bce758be23bf841cdef6daad6bd38e0e085580ccc1566a66724a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c35d7768e2ea65b52262b5a9b2fdcedfdee6c85f088c626eca4e5ab3e4d6f4d2"} -2023-12-15T14:53:03.765Z INFO initializing dbft {"height": 2451, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:03.766Z debug frostfs-node/morph.go:229 new block {"index": 2450} -2023-12-15T14:53:04.428Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2450, "blockHeight": 2450, "took": "4.159888ms"} -2023-12-15T14:53:04.765Z INFO sending PrepareRequest {"height": 2451, "view": 0} -2023-12-15T14:53:04.765Z INFO sending Commit {"height": 2451, "view": 0} -2023-12-15T14:53:04.765Z INFO approving block {"height": 2451, "hash": "02b15f9d7f623211493daf87a201e95982bdf27b8fee8fbd412cf6d70a3d596b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92d69525f061bce758be23bf841cdef6daad6bd38e0e085580ccc1566a66724a"} -2023-12-15T14:53:04.767Z INFO initializing dbft {"height": 2452, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:04.767Z debug frostfs-node/morph.go:229 new block {"index": 2451} -2023-12-15T14:53:05.429Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2451, "blockHeight": 2451, "took": "4.883317ms"} -2023-12-15T14:53:05.766Z INFO sending PrepareRequest {"height": 2452, "view": 0} -2023-12-15T14:53:05.766Z INFO sending Commit {"height": 2452, "view": 0} -2023-12-15T14:53:05.766Z INFO approving block {"height": 2452, "hash": "c44cb8bbfa3b612997b98164b28836e1418e2a18a6dff0962151bd1eb3522c23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02b15f9d7f623211493daf87a201e95982bdf27b8fee8fbd412cf6d70a3d596b"} -2023-12-15T14:53:05.767Z INFO initializing dbft {"height": 2453, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:05.768Z debug frostfs-node/morph.go:229 new block {"index": 2452} -2023-12-15T14:53:06.429Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2452, "blockHeight": 2452, "took": "4.178792ms"} -2023-12-15T14:53:06.768Z INFO sending PrepareRequest {"height": 2453, "view": 0} -2023-12-15T14:53:06.768Z INFO sending Commit {"height": 2453, "view": 0} -2023-12-15T14:53:06.768Z INFO approving block {"height": 2453, "hash": "a99baffbf7f5344d311e371fb7a8431a57cc848e829b4d56e04bb5f5d7ced14e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c44cb8bbfa3b612997b98164b28836e1418e2a18a6dff0962151bd1eb3522c23"} -2023-12-15T14:53:06.770Z INFO initializing dbft {"height": 2454, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:06.770Z debug frostfs-node/morph.go:229 new block {"index": 2453} -2023-12-15T14:53:07.430Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2453, "blockHeight": 2453, "took": "4.799841ms"} -2023-12-15T14:53:07.769Z INFO sending PrepareRequest {"height": 2454, "view": 0} -2023-12-15T14:53:07.769Z INFO sending Commit {"height": 2454, "view": 0} -2023-12-15T14:53:07.769Z INFO approving block {"height": 2454, "hash": "5c3a963b3c0888b10976d965adcdfe07e421e21394a0d5f1d888fc66fabce0e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a99baffbf7f5344d311e371fb7a8431a57cc848e829b4d56e04bb5f5d7ced14e"} -2023-12-15T14:53:07.770Z INFO initializing dbft {"height": 2455, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:07.771Z debug frostfs-node/morph.go:229 new block {"index": 2454} -2023-12-15T14:53:08.429Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2454, "blockHeight": 2454, "took": "3.368649ms"} -2023-12-15T14:53:08.771Z INFO sending PrepareRequest {"height": 2455, "view": 0} -2023-12-15T14:53:08.771Z INFO sending Commit {"height": 2455, "view": 0} -2023-12-15T14:53:08.771Z INFO approving block {"height": 2455, "hash": "194d8399f120de344516bb0633192c58afd21f67cf14be6ea1314e3cc662e9f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c3a963b3c0888b10976d965adcdfe07e421e21394a0d5f1d888fc66fabce0e6"} -2023-12-15T14:53:08.772Z INFO initializing dbft {"height": 2456, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:08.772Z debug frostfs-node/morph.go:229 new block {"index": 2455} -2023-12-15T14:53:09.430Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2455, "blockHeight": 2455, "took": "3.603745ms"} -2023-12-15T14:53:09.772Z INFO sending PrepareRequest {"height": 2456, "view": 0} -2023-12-15T14:53:09.772Z INFO sending Commit {"height": 2456, "view": 0} -2023-12-15T14:53:09.773Z INFO approving block {"height": 2456, "hash": "83b3ce2893c9c8d83a28c0e51b595ce6c3e0ada443a36cb564ba8d0bc53afefd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "194d8399f120de344516bb0633192c58afd21f67cf14be6ea1314e3cc662e9f2"} -2023-12-15T14:53:09.773Z INFO initializing dbft {"height": 2457, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:09.774Z debug frostfs-node/morph.go:229 new block {"index": 2456} -2023-12-15T14:53:10.430Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2456, "blockHeight": 2456, "took": "2.930925ms"} -2023-12-15T14:53:10.774Z INFO sending PrepareRequest {"height": 2457, "view": 0} -2023-12-15T14:53:10.774Z INFO sending Commit {"height": 2457, "view": 0} -2023-12-15T14:53:10.774Z INFO approving block {"height": 2457, "hash": "555adf5eeef824fac0dd81b70cddc050108423da3a3feca44470102d668c7e16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83b3ce2893c9c8d83a28c0e51b595ce6c3e0ada443a36cb564ba8d0bc53afefd"} -2023-12-15T14:53:10.775Z INFO initializing dbft {"height": 2458, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:10.775Z debug frostfs-node/morph.go:229 new block {"index": 2457} -2023-12-15T14:53:11.432Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2457, "blockHeight": 2457, "took": "3.948976ms"} -2023-12-15T14:53:11.775Z INFO sending PrepareRequest {"height": 2458, "view": 0} -2023-12-15T14:53:11.775Z INFO sending Commit {"height": 2458, "view": 0} -2023-12-15T14:53:11.776Z INFO approving block {"height": 2458, "hash": "3b16f2e64f36ae8a6cb4bfbe7d722877a2b1a67634e9a267174c418037888549", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "555adf5eeef824fac0dd81b70cddc050108423da3a3feca44470102d668c7e16"} -2023-12-15T14:53:11.778Z INFO initializing dbft {"height": 2459, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:11.779Z debug frostfs-node/morph.go:229 new block {"index": 2458} -2023-12-15T14:53:12.433Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2458, "blockHeight": 2458, "took": "5.159681ms"} -2023-12-15T14:53:12.777Z INFO sending PrepareRequest {"height": 2459, "view": 0} -2023-12-15T14:53:12.778Z INFO sending Commit {"height": 2459, "view": 0} -2023-12-15T14:53:12.778Z INFO approving block {"height": 2459, "hash": "e0f85c3365c1bbafa4a7985bd2e48d97f5412ce895ba37588292b890cf8db720", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b16f2e64f36ae8a6cb4bfbe7d722877a2b1a67634e9a267174c418037888549"} -2023-12-15T14:53:12.780Z INFO initializing dbft {"height": 2460, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:12.780Z debug frostfs-node/morph.go:229 new block {"index": 2459} -2023-12-15T14:53:13.432Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2459, "blockHeight": 2459, "took": "3.04571ms"} -2023-12-15T14:53:13.779Z INFO sending PrepareRequest {"height": 2460, "view": 0} -2023-12-15T14:53:13.779Z INFO sending Commit {"height": 2460, "view": 0} -2023-12-15T14:53:13.779Z INFO approving block {"height": 2460, "hash": "d6d3bd0191d88d9c706aa617dbcdccdddcfdb69e3947c36f7d31c30704da5de6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0f85c3365c1bbafa4a7985bd2e48d97f5412ce895ba37588292b890cf8db720"} -2023-12-15T14:53:13.780Z INFO initializing dbft {"height": 2461, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:13.781Z debug frostfs-node/morph.go:229 new block {"index": 2460} -2023-12-15T14:53:14.433Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2460, "blockHeight": 2460, "took": "3.955896ms"} -2023-12-15T14:53:14.781Z INFO sending PrepareRequest {"height": 2461, "view": 0} -2023-12-15T14:53:14.781Z INFO sending Commit {"height": 2461, "view": 0} -2023-12-15T14:53:14.781Z INFO approving block {"height": 2461, "hash": "4b395fab7674f6b6242da9f61b30c9dd4dda6c8d61a57d0349e26825165c3e98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6d3bd0191d88d9c706aa617dbcdccdddcfdb69e3947c36f7d31c30704da5de6"} -2023-12-15T14:53:14.783Z INFO initializing dbft {"height": 2462, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:14.783Z debug frostfs-node/morph.go:229 new block {"index": 2461} -2023-12-15T14:53:15.435Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2461, "blockHeight": 2461, "took": "4.969966ms"} -2023-12-15T14:53:15.782Z INFO sending PrepareRequest {"height": 2462, "view": 0} -2023-12-15T14:53:15.782Z INFO sending Commit {"height": 2462, "view": 0} -2023-12-15T14:53:15.783Z INFO approving block {"height": 2462, "hash": "0cad82088f80af3de98ec98ade0dd279ecb5c30b5da02fd72a18dba4f6fe8c63", "tx_count": 1, "merkle": "b0fe2bdf656fba0bb0d1c77c0a8a3b42649f5b3e916984c0992f11a727f89872", "prev": "4b395fab7674f6b6242da9f61b30c9dd4dda6c8d61a57d0349e26825165c3e98"} -2023-12-15T14:53:15.784Z INFO initializing dbft {"height": 2463, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:15.785Z debug frostfs-node/morph.go:229 new block {"index": 2462} -2023-12-15T14:53:15.787Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T14:53:16.435Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 2462, "blockHeight": 2462, "took": "3.936222ms"} -2023-12-15T14:53:16.784Z INFO sending PrepareRequest {"height": 2463, "view": 0} -2023-12-15T14:53:16.784Z INFO sending Commit {"height": 2463, "view": 0} -2023-12-15T14:53:16.784Z INFO approving block {"height": 2463, "hash": "9c5caba1811d6751b5e02d4dabdfc5f14ad00f7970ba3f51896047afba3e61d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cad82088f80af3de98ec98ade0dd279ecb5c30b5da02fd72a18dba4f6fe8c63"} -2023-12-15T14:53:16.785Z INFO initializing dbft {"height": 2464, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:16.785Z debug frostfs-node/morph.go:229 new block {"index": 2463} -2023-12-15T14:53:17.435Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2463, "blockHeight": 2463, "took": "3.76325ms"} -2023-12-15T14:53:17.785Z INFO sending PrepareRequest {"height": 2464, "view": 0} -2023-12-15T14:53:17.785Z INFO sending Commit {"height": 2464, "view": 0} -2023-12-15T14:53:17.786Z INFO approving block {"height": 2464, "hash": "be22b26db501c047e2ee91a59f5dae512c23c5901b844eb8be2a8e89e2166889", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c5caba1811d6751b5e02d4dabdfc5f14ad00f7970ba3f51896047afba3e61d5"} -2023-12-15T14:53:17.786Z INFO initializing dbft {"height": 2465, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:17.787Z debug frostfs-node/morph.go:229 new block {"index": 2464} -2023-12-15T14:53:18.436Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2464, "blockHeight": 2464, "took": "4.024054ms"} -2023-12-15T14:53:18.787Z INFO sending PrepareRequest {"height": 2465, "view": 0} -2023-12-15T14:53:18.787Z INFO sending Commit {"height": 2465, "view": 0} -2023-12-15T14:53:18.787Z INFO approving block {"height": 2465, "hash": "2005355b91e2599313e70489ed1ef3f9127cca3120471ede51deaadeda47e572", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be22b26db501c047e2ee91a59f5dae512c23c5901b844eb8be2a8e89e2166889"} -2023-12-15T14:53:18.789Z INFO initializing dbft {"height": 2466, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:18.789Z debug frostfs-node/morph.go:229 new block {"index": 2465} -2023-12-15T14:53:19.437Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2465, "blockHeight": 2465, "took": "4.321705ms"} -2023-12-15T14:53:19.788Z INFO sending PrepareRequest {"height": 2466, "view": 0} -2023-12-15T14:53:19.788Z INFO sending Commit {"height": 2466, "view": 0} -2023-12-15T14:53:19.789Z INFO approving block {"height": 2466, "hash": "1a0d948d3083c6cf1f6e7de8161ded7afcdbf16382af892d20914e497c9c4d1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2005355b91e2599313e70489ed1ef3f9127cca3120471ede51deaadeda47e572"} -2023-12-15T14:53:19.789Z INFO initializing dbft {"height": 2467, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:19.790Z debug frostfs-node/morph.go:229 new block {"index": 2466} -2023-12-15T14:53:20.436Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2466, "blockHeight": 2466, "took": "3.123282ms"} -2023-12-15T14:53:20.790Z INFO sending PrepareRequest {"height": 2467, "view": 0} -2023-12-15T14:53:20.790Z INFO sending Commit {"height": 2467, "view": 0} -2023-12-15T14:53:20.790Z INFO approving block {"height": 2467, "hash": "a0a66d0bb9a22fa08ac80f490d4833c5659cf115ca7257645dd4c1bff1fdd265", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a0d948d3083c6cf1f6e7de8161ded7afcdbf16382af892d20914e497c9c4d1f"} -2023-12-15T14:53:20.791Z INFO initializing dbft {"height": 2468, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:20.792Z debug frostfs-node/morph.go:229 new block {"index": 2467} -2023-12-15T14:53:20.793Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:53:20.796Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:53:20.796Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:53:21.436Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2467, "blockHeight": 2467, "took": "3.39629ms"} -2023-12-15T14:53:21.791Z INFO sending PrepareRequest {"height": 2468, "view": 0} -2023-12-15T14:53:21.791Z INFO sending Commit {"height": 2468, "view": 0} -2023-12-15T14:53:21.791Z INFO approving block {"height": 2468, "hash": "4884fb515a9f063ac73246f2f2fa6817cdc6365828b9d073195508d84e97d031", "tx_count": 2, "merkle": "a73e07647d40a14e13ec3a4cef5fdcb5f50664d64f445ab20a80a1d9095dced4", "prev": "a0a66d0bb9a22fa08ac80f490d4833c5659cf115ca7257645dd4c1bff1fdd265"} -2023-12-15T14:53:21.792Z INFO runtime log {"tx": "ea8712c8cb177dba6a0b069db525442560719e5ed99630ce176c6f44e81fd100", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:53:21.792Z INFO runtime log {"tx": "ea8712c8cb177dba6a0b069db525442560719e5ed99630ce176c6f44e81fd100", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:53:21.793Z INFO initializing dbft {"height": 2469, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:21.793Z debug frostfs-node/morph.go:229 new block {"index": 2468} -2023-12-15T14:53:22.438Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2468, "blockHeight": 2468, "took": "4.499111ms"} -2023-12-15T14:53:22.792Z INFO sending PrepareRequest {"height": 2469, "view": 0} -2023-12-15T14:53:22.792Z INFO sending Commit {"height": 2469, "view": 0} -2023-12-15T14:53:22.793Z INFO approving block {"height": 2469, "hash": "33129627248f36f8b5f08e0d7f2b2ad624cd54e066c12e5ecd91cbb9a0f596e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4884fb515a9f063ac73246f2f2fa6817cdc6365828b9d073195508d84e97d031"} -2023-12-15T14:53:22.794Z INFO initializing dbft {"height": 2470, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:22.794Z debug frostfs-node/morph.go:229 new block {"index": 2469} -2023-12-15T14:53:23.437Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2469, "blockHeight": 2469, "took": "3.221824ms"} -2023-12-15T14:53:23.794Z INFO sending PrepareRequest {"height": 2470, "view": 0} -2023-12-15T14:53:23.794Z INFO sending Commit {"height": 2470, "view": 0} -2023-12-15T14:53:23.794Z INFO approving block {"height": 2470, "hash": "a55f6da9dc0f17ee01137c21a5a1f4b793fef08fd44279b5777ae1454c2fae77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33129627248f36f8b5f08e0d7f2b2ad624cd54e066c12e5ecd91cbb9a0f596e2"} -2023-12-15T14:53:23.795Z INFO initializing dbft {"height": 2471, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:23.795Z debug frostfs-node/morph.go:229 new block {"index": 2470} -2023-12-15T14:53:23.799Z INFO runtime log {"tx": "1fba57e7415622851a3e2527660b3eb2cb29d67fed9cd35e7d6ba699c2582351", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:53:23.799Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 11 epoch for daughters"} -2023-12-15T14:53:24.438Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2470, "blockHeight": 2470, "took": "3.09917ms"} -2023-12-15T14:53:24.795Z INFO sending PrepareRequest {"height": 2471, "view": 0} -2023-12-15T14:53:24.795Z INFO sending Commit {"height": 2471, "view": 0} -2023-12-15T14:53:24.796Z INFO approving block {"height": 2471, "hash": "d827c44fa771e11e65fd914dd5a2a79e81a458d8081dfd7474fdabc489d5e9c2", "tx_count": 1, "merkle": "bc400847d280700120141a0515843d8d12f45038b2b77af2944cbabdded3f2a5", "prev": "a55f6da9dc0f17ee01137c21a5a1f4b793fef08fd44279b5777ae1454c2fae77"} -2023-12-15T14:53:24.796Z INFO runtime log {"tx": "a5f2d3debdba4c94f27ab7b23850f4128d3d8415051a1420017080d2470840bc", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:53:24.797Z INFO initializing dbft {"height": 2472, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:24.798Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 11} -2023-12-15T14:53:24.798Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 11} -2023-12-15T14:53:24.798Z debug frostfs-node/morph.go:229 new block {"index": 2471} -2023-12-15T14:53:25.439Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 2471, "blockHeight": 2471, "took": "4.774609ms"} -2023-12-15T14:53:25.797Z INFO sending PrepareRequest {"height": 2472, "view": 0} -2023-12-15T14:53:25.797Z INFO sending Commit {"height": 2472, "view": 0} -2023-12-15T14:53:25.797Z INFO approving block {"height": 2472, "hash": "279df4fd51bd100cdd16b752b08ff9bcd2d5a392da55c6e83223822009b79b73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d827c44fa771e11e65fd914dd5a2a79e81a458d8081dfd7474fdabc489d5e9c2"} -2023-12-15T14:53:25.798Z INFO initializing dbft {"height": 2473, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:25.798Z debug frostfs-node/morph.go:229 new block {"index": 2472} -2023-12-15T14:53:26.439Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2472, "blockHeight": 2472, "took": "3.486285ms"} -2023-12-15T14:53:26.798Z INFO sending PrepareRequest {"height": 2473, "view": 0} -2023-12-15T14:53:26.798Z INFO sending Commit {"height": 2473, "view": 0} -2023-12-15T14:53:26.798Z INFO approving block {"height": 2473, "hash": "c891d0945f7f115da1e42b4e90e4508898bd8dffc13fd82091acf4a24f4ff258", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "279df4fd51bd100cdd16b752b08ff9bcd2d5a392da55c6e83223822009b79b73"} -2023-12-15T14:53:26.799Z INFO initializing dbft {"height": 2474, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:26.800Z debug frostfs-node/morph.go:229 new block {"index": 2473} -2023-12-15T14:53:27.440Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2473, "blockHeight": 2473, "took": "3.334558ms"} -2023-12-15T14:53:27.799Z INFO sending PrepareRequest {"height": 2474, "view": 0} -2023-12-15T14:53:27.799Z INFO sending Commit {"height": 2474, "view": 0} -2023-12-15T14:53:27.800Z INFO approving block {"height": 2474, "hash": "de43f5a10cce598270a40629ca686affcdefaea5e63239777cae0cf3f611e04d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c891d0945f7f115da1e42b4e90e4508898bd8dffc13fd82091acf4a24f4ff258"} -2023-12-15T14:53:27.800Z INFO initializing dbft {"height": 2475, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:27.801Z debug frostfs-node/morph.go:229 new block {"index": 2474} -2023-12-15T14:53:28.440Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2474, "blockHeight": 2474, "took": "3.147889ms"} -2023-12-15T14:53:28.800Z INFO sending PrepareRequest {"height": 2475, "view": 0} -2023-12-15T14:53:28.801Z INFO sending Commit {"height": 2475, "view": 0} -2023-12-15T14:53:28.801Z INFO approving block {"height": 2475, "hash": "713ca96b2753f3ced0fa06440968cec90e1cf8d29a2dd761ab71106b0986b6ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de43f5a10cce598270a40629ca686affcdefaea5e63239777cae0cf3f611e04d"} -2023-12-15T14:53:28.802Z INFO initializing dbft {"height": 2476, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:28.803Z debug frostfs-node/morph.go:229 new block {"index": 2475} -2023-12-15T14:53:29.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2475, "blockHeight": 2475, "took": "5.015954ms"} -2023-12-15T14:53:29.802Z INFO sending PrepareRequest {"height": 2476, "view": 0} -2023-12-15T14:53:29.802Z INFO sending Commit {"height": 2476, "view": 0} -2023-12-15T14:53:29.802Z INFO approving block {"height": 2476, "hash": "29ccbb2b27de201a02e0402fad32f6b51b52c60cb49a0821a754f3316256d177", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "713ca96b2753f3ced0fa06440968cec90e1cf8d29a2dd761ab71106b0986b6ed"} -2023-12-15T14:53:29.803Z INFO initializing dbft {"height": 2477, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:29.803Z debug frostfs-node/morph.go:229 new block {"index": 2476} -2023-12-15T14:53:30.441Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2476, "blockHeight": 2476, "took": "3.506473ms"} -2023-12-15T14:53:30.803Z INFO sending PrepareRequest {"height": 2477, "view": 0} -2023-12-15T14:53:30.804Z INFO sending Commit {"height": 2477, "view": 0} -2023-12-15T14:53:30.804Z INFO approving block {"height": 2477, "hash": "656c7f089f4072a3f41267a215193a80cbaf02a7779c76107661c218b5ecaa99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29ccbb2b27de201a02e0402fad32f6b51b52c60cb49a0821a754f3316256d177"} -2023-12-15T14:53:30.805Z INFO initializing dbft {"height": 2478, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:30.805Z debug frostfs-node/morph.go:229 new block {"index": 2477} -2023-12-15T14:53:31.441Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2477, "blockHeight": 2477, "took": "3.081821ms"} -2023-12-15T14:53:31.805Z INFO sending PrepareRequest {"height": 2478, "view": 0} -2023-12-15T14:53:31.805Z INFO sending Commit {"height": 2478, "view": 0} -2023-12-15T14:53:31.805Z INFO approving block {"height": 2478, "hash": "60966bb13772214e36a7187706c465a7fec9f7e02fa841fc7510d3d7f767c5e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "656c7f089f4072a3f41267a215193a80cbaf02a7779c76107661c218b5ecaa99"} -2023-12-15T14:53:31.806Z INFO initializing dbft {"height": 2479, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:31.806Z debug frostfs-node/morph.go:229 new block {"index": 2478} -2023-12-15T14:53:32.443Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2478, "blockHeight": 2478, "took": "4.593153ms"} -2023-12-15T14:53:32.806Z INFO sending PrepareRequest {"height": 2479, "view": 0} -2023-12-15T14:53:32.806Z INFO sending Commit {"height": 2479, "view": 0} -2023-12-15T14:53:32.807Z INFO approving block {"height": 2479, "hash": "fa97043b578122f5398112dddf1f660fa197c0491f8803215caa3a549fe39129", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60966bb13772214e36a7187706c465a7fec9f7e02fa841fc7510d3d7f767c5e0"} -2023-12-15T14:53:32.808Z INFO initializing dbft {"height": 2480, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:32.809Z debug frostfs-node/morph.go:229 new block {"index": 2479} -2023-12-15T14:53:33.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2479, "blockHeight": 2479, "took": "3.06016ms"} -2023-12-15T14:53:33.808Z INFO sending PrepareRequest {"height": 2480, "view": 0} -2023-12-15T14:53:33.808Z INFO sending Commit {"height": 2480, "view": 0} -2023-12-15T14:53:33.808Z INFO approving block {"height": 2480, "hash": "ff6a94c4f09e99492822048890125a960dd1780bf7d5c3fac22852ef473b81c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa97043b578122f5398112dddf1f660fa197c0491f8803215caa3a549fe39129"} -2023-12-15T14:53:33.809Z INFO initializing dbft {"height": 2481, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:33.809Z debug frostfs-node/morph.go:229 new block {"index": 2480} -2023-12-15T14:53:34.442Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2480, "blockHeight": 2480, "took": "2.868354ms"} -2023-12-15T14:53:34.809Z INFO sending PrepareRequest {"height": 2481, "view": 0} -2023-12-15T14:53:34.810Z INFO sending Commit {"height": 2481, "view": 0} -2023-12-15T14:53:34.810Z INFO approving block {"height": 2481, "hash": "c22b09115ab70c18b0e758a531c7e3857854a75eea4496ae6771bfc6aaaa146d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff6a94c4f09e99492822048890125a960dd1780bf7d5c3fac22852ef473b81c1"} -2023-12-15T14:53:34.811Z INFO initializing dbft {"height": 2482, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:34.812Z debug frostfs-node/morph.go:229 new block {"index": 2481} -2023-12-15T14:53:35.444Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2481, "blockHeight": 2481, "took": "4.493693ms"} -2023-12-15T14:53:35.811Z INFO sending PrepareRequest {"height": 2482, "view": 0} -2023-12-15T14:53:35.811Z INFO sending Commit {"height": 2482, "view": 0} -2023-12-15T14:53:35.811Z INFO approving block {"height": 2482, "hash": "9e56e78000ce53e04be58a896d9627787ba1e9156821721078d9a252a85d2b3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c22b09115ab70c18b0e758a531c7e3857854a75eea4496ae6771bfc6aaaa146d"} -2023-12-15T14:53:35.812Z INFO initializing dbft {"height": 2483, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:35.813Z debug frostfs-node/morph.go:229 new block {"index": 2482} -2023-12-15T14:53:36.444Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2482, "blockHeight": 2482, "took": "3.246978ms"} -2023-12-15T14:53:36.813Z INFO sending PrepareRequest {"height": 2483, "view": 0} -2023-12-15T14:53:36.813Z INFO sending Commit {"height": 2483, "view": 0} -2023-12-15T14:53:36.813Z INFO approving block {"height": 2483, "hash": "c3245c96aa30d9fe6242e37f2b36c14fd58670959af34d768beac6584873114a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e56e78000ce53e04be58a896d9627787ba1e9156821721078d9a252a85d2b3f"} -2023-12-15T14:53:36.814Z INFO initializing dbft {"height": 2484, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:36.815Z debug frostfs-node/morph.go:229 new block {"index": 2483} -2023-12-15T14:53:37.445Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2483, "blockHeight": 2483, "took": "3.707418ms"} -2023-12-15T14:53:37.814Z INFO sending PrepareRequest {"height": 2484, "view": 0} -2023-12-15T14:53:37.814Z INFO sending Commit {"height": 2484, "view": 0} -2023-12-15T14:53:37.815Z INFO approving block {"height": 2484, "hash": "7cdef4ef22136608a65444b107d2d0d21ea85460e1c1f2fa2bc9bbac564ff053", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3245c96aa30d9fe6242e37f2b36c14fd58670959af34d768beac6584873114a"} -2023-12-15T14:53:37.816Z INFO initializing dbft {"height": 2485, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:37.816Z debug frostfs-node/morph.go:229 new block {"index": 2484} -2023-12-15T14:53:38.446Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2484, "blockHeight": 2484, "took": "3.887114ms"} -2023-12-15T14:53:38.816Z INFO sending PrepareRequest {"height": 2485, "view": 0} -2023-12-15T14:53:38.816Z INFO sending Commit {"height": 2485, "view": 0} -2023-12-15T14:53:38.816Z INFO approving block {"height": 2485, "hash": "bcf78afcace3adb1ce8fb32a432fea90f8fea188ce549e558dd84bfadb07b798", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cdef4ef22136608a65444b107d2d0d21ea85460e1c1f2fa2bc9bbac564ff053"} -2023-12-15T14:53:38.818Z INFO initializing dbft {"height": 2486, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:38.818Z debug frostfs-node/morph.go:229 new block {"index": 2485} -2023-12-15T14:53:39.446Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2485, "blockHeight": 2485, "took": "3.635166ms"} -2023-12-15T14:53:39.817Z INFO sending PrepareRequest {"height": 2486, "view": 0} -2023-12-15T14:53:39.817Z INFO sending Commit {"height": 2486, "view": 0} -2023-12-15T14:53:39.817Z INFO approving block {"height": 2486, "hash": "2b3f27e90a57920e36e9e7db745c4d29bde5174a3dfe8f81aec5e42cd2f40050", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcf78afcace3adb1ce8fb32a432fea90f8fea188ce549e558dd84bfadb07b798"} -2023-12-15T14:53:39.818Z INFO initializing dbft {"height": 2487, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:39.819Z debug frostfs-node/morph.go:229 new block {"index": 2486} -2023-12-15T14:53:40.447Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2486, "blockHeight": 2486, "took": "4.319886ms"} -2023-12-15T14:53:40.819Z INFO sending PrepareRequest {"height": 2487, "view": 0} -2023-12-15T14:53:40.819Z INFO sending Commit {"height": 2487, "view": 0} -2023-12-15T14:53:40.819Z INFO approving block {"height": 2487, "hash": "84b4a6bd86582a8d8cb00132d4c7375d7f1676f952cec3bd3dd7fbf859bc616e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b3f27e90a57920e36e9e7db745c4d29bde5174a3dfe8f81aec5e42cd2f40050"} -2023-12-15T14:53:40.820Z INFO initializing dbft {"height": 2488, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:40.821Z debug frostfs-node/morph.go:229 new block {"index": 2487} -2023-12-15T14:53:41.448Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2487, "blockHeight": 2487, "took": "4.549783ms"} -2023-12-15T14:53:41.820Z INFO sending PrepareRequest {"height": 2488, "view": 0} -2023-12-15T14:53:41.820Z INFO sending Commit {"height": 2488, "view": 0} -2023-12-15T14:53:41.820Z INFO approving block {"height": 2488, "hash": "7122ec68dfa522162cc0e9e16cb4f5eb1162fa965639decb38b6774f4bba5d2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84b4a6bd86582a8d8cb00132d4c7375d7f1676f952cec3bd3dd7fbf859bc616e"} -2023-12-15T14:53:41.821Z INFO initializing dbft {"height": 2489, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:41.821Z debug frostfs-node/morph.go:229 new block {"index": 2488} -2023-12-15T14:53:42.447Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2488, "blockHeight": 2488, "took": "3.09716ms"} -2023-12-15T14:53:42.822Z INFO sending PrepareRequest {"height": 2489, "view": 0} -2023-12-15T14:53:42.822Z INFO sending Commit {"height": 2489, "view": 0} -2023-12-15T14:53:42.822Z INFO approving block {"height": 2489, "hash": "b46a7248292abb69108fa6401fb3e397f82b273efee28ae7ed6a4f183deb402e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7122ec68dfa522162cc0e9e16cb4f5eb1162fa965639decb38b6774f4bba5d2c"} -2023-12-15T14:53:42.824Z INFO initializing dbft {"height": 2490, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:42.824Z debug frostfs-node/morph.go:229 new block {"index": 2489} -2023-12-15T14:53:43.449Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2489, "blockHeight": 2489, "took": "4.590486ms"} -2023-12-15T14:53:43.823Z INFO sending PrepareRequest {"height": 2490, "view": 0} -2023-12-15T14:53:43.823Z INFO sending Commit {"height": 2490, "view": 0} -2023-12-15T14:53:43.823Z INFO approving block {"height": 2490, "hash": "2739cc2114cad30ab80c632d8d0865a1f0bdf380374b6371be3902072c3190e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b46a7248292abb69108fa6401fb3e397f82b273efee28ae7ed6a4f183deb402e"} -2023-12-15T14:53:43.824Z INFO initializing dbft {"height": 2491, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:43.824Z debug frostfs-node/morph.go:229 new block {"index": 2490} -2023-12-15T14:53:44.449Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2490, "blockHeight": 2490, "took": "3.393149ms"} -2023-12-15T14:53:44.824Z INFO sending PrepareRequest {"height": 2491, "view": 0} -2023-12-15T14:53:44.824Z INFO sending Commit {"height": 2491, "view": 0} -2023-12-15T14:53:44.825Z INFO approving block {"height": 2491, "hash": "80ea0c18313ab71642a72d15b9fc7ec1798fe7391e3228e9908c40842eac177c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2739cc2114cad30ab80c632d8d0865a1f0bdf380374b6371be3902072c3190e0"} -2023-12-15T14:53:44.825Z INFO initializing dbft {"height": 2492, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:44.826Z debug frostfs-node/morph.go:229 new block {"index": 2491} -2023-12-15T14:53:45.450Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2491, "blockHeight": 2491, "took": "4.556004ms"} -2023-12-15T14:53:45.826Z INFO sending PrepareRequest {"height": 2492, "view": 0} -2023-12-15T14:53:45.826Z INFO sending Commit {"height": 2492, "view": 0} -2023-12-15T14:53:45.826Z INFO approving block {"height": 2492, "hash": "a63581c26e46ddbde3a757c78eaa33004f880a44a989c9697f62c441d841da8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80ea0c18313ab71642a72d15b9fc7ec1798fe7391e3228e9908c40842eac177c"} -2023-12-15T14:53:45.827Z INFO initializing dbft {"height": 2493, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:45.828Z debug frostfs-node/morph.go:229 new block {"index": 2492} -2023-12-15T14:53:46.449Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2492, "blockHeight": 2492, "took": "3.248595ms"} -2023-12-15T14:53:46.827Z INFO sending PrepareRequest {"height": 2493, "view": 0} -2023-12-15T14:53:46.827Z INFO sending Commit {"height": 2493, "view": 0} -2023-12-15T14:53:46.828Z INFO approving block {"height": 2493, "hash": "4feb78be62c9a6042249e2b5f07f4f4c085d5fe4f1ef6aa78483c7029826aa34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a63581c26e46ddbde3a757c78eaa33004f880a44a989c9697f62c441d841da8d"} -2023-12-15T14:53:46.828Z INFO initializing dbft {"height": 2494, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:46.829Z debug frostfs-node/morph.go:229 new block {"index": 2493} -2023-12-15T14:53:47.450Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2493, "blockHeight": 2493, "took": "3.737118ms"} -2023-12-15T14:53:47.829Z INFO sending PrepareRequest {"height": 2494, "view": 0} -2023-12-15T14:53:47.829Z INFO sending Commit {"height": 2494, "view": 0} -2023-12-15T14:53:47.830Z INFO approving block {"height": 2494, "hash": "aa5c65c9110b0fbf6a3af04a0d7380221e9cce74ac68f05d884d70236a0021bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4feb78be62c9a6042249e2b5f07f4f4c085d5fe4f1ef6aa78483c7029826aa34"} -2023-12-15T14:53:47.832Z INFO initializing dbft {"height": 2495, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:47.832Z debug frostfs-node/morph.go:229 new block {"index": 2494} -2023-12-15T14:53:48.452Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2494, "blockHeight": 2494, "took": "4.77719ms"} -2023-12-15T14:53:48.830Z INFO sending PrepareRequest {"height": 2495, "view": 0} -2023-12-15T14:53:48.830Z INFO sending Commit {"height": 2495, "view": 0} -2023-12-15T14:53:48.831Z INFO approving block {"height": 2495, "hash": "03bcf0949630820b1c47527dbc6a4018a1543b4b57ccc8f1d761d4cc37819785", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa5c65c9110b0fbf6a3af04a0d7380221e9cce74ac68f05d884d70236a0021bc"} -2023-12-15T14:53:48.831Z INFO initializing dbft {"height": 2496, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:48.832Z debug frostfs-node/morph.go:229 new block {"index": 2495} -2023-12-15T14:53:49.451Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2495, "blockHeight": 2495, "took": "3.204135ms"} -2023-12-15T14:53:49.831Z INFO sending PrepareRequest {"height": 2496, "view": 0} -2023-12-15T14:53:49.832Z INFO sending Commit {"height": 2496, "view": 0} -2023-12-15T14:53:49.832Z INFO approving block {"height": 2496, "hash": "8474b7ebb7bfc943059e707d19f44a50c0a53f506fcadb8ef45f56d47becf444", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03bcf0949630820b1c47527dbc6a4018a1543b4b57ccc8f1d761d4cc37819785"} -2023-12-15T14:53:49.833Z INFO initializing dbft {"height": 2497, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:49.833Z debug frostfs-node/morph.go:229 new block {"index": 2496} -2023-12-15T14:53:50.452Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2496, "blockHeight": 2496, "took": "3.05864ms"} -2023-12-15T14:53:50.833Z INFO sending PrepareRequest {"height": 2497, "view": 0} -2023-12-15T14:53:50.833Z INFO sending Commit {"height": 2497, "view": 0} -2023-12-15T14:53:50.833Z INFO approving block {"height": 2497, "hash": "73dcefee59aadd6460cb380e428928251a93479687413872e11dc62de57df9fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8474b7ebb7bfc943059e707d19f44a50c0a53f506fcadb8ef45f56d47becf444"} -2023-12-15T14:53:50.834Z INFO initializing dbft {"height": 2498, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:50.835Z debug frostfs-node/morph.go:229 new block {"index": 2497} -2023-12-15T14:53:51.453Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2497, "blockHeight": 2497, "took": "3.605605ms"} -2023-12-15T14:53:51.834Z INFO sending PrepareRequest {"height": 2498, "view": 0} -2023-12-15T14:53:51.834Z INFO sending Commit {"height": 2498, "view": 0} -2023-12-15T14:53:51.834Z INFO approving block {"height": 2498, "hash": "5dbf02c772a620f957b4445412a79017bf44ae54026b1956318d60ef9b1db9d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73dcefee59aadd6460cb380e428928251a93479687413872e11dc62de57df9fc"} -2023-12-15T14:53:51.836Z INFO initializing dbft {"height": 2499, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:51.836Z debug frostfs-node/morph.go:229 new block {"index": 2498} -2023-12-15T14:53:52.452Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2498, "blockHeight": 2498, "took": "3.112562ms"} -2023-12-15T14:53:52.835Z INFO sending PrepareRequest {"height": 2499, "view": 0} -2023-12-15T14:53:52.835Z INFO sending Commit {"height": 2499, "view": 0} -2023-12-15T14:53:52.836Z INFO approving block {"height": 2499, "hash": "f30bcfde71ca8c1ec3b1fa97780fd4b294d1c7c7c64d283059495fd91fbbed19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5dbf02c772a620f957b4445412a79017bf44ae54026b1956318d60ef9b1db9d9"} -2023-12-15T14:53:52.836Z INFO initializing dbft {"height": 2500, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:52.837Z debug frostfs-node/morph.go:229 new block {"index": 2499} -2023-12-15T14:53:53.453Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2499, "blockHeight": 2499, "took": "3.482733ms"} -2023-12-15T14:53:53.837Z INFO sending PrepareRequest {"height": 2500, "view": 0} -2023-12-15T14:53:53.837Z INFO sending Commit {"height": 2500, "view": 0} -2023-12-15T14:53:53.837Z INFO approving block {"height": 2500, "hash": "2dd7a5e278418103faea4c8c69922541132cd674ec2725b9ea585d205ee86947", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f30bcfde71ca8c1ec3b1fa97780fd4b294d1c7c7c64d283059495fd91fbbed19"} -2023-12-15T14:53:53.838Z INFO initializing dbft {"height": 2501, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:53.839Z debug frostfs-node/morph.go:229 new block {"index": 2500} -2023-12-15T14:53:54.454Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2500, "blockHeight": 2500, "took": "4.168099ms"} -2023-12-15T14:53:54.838Z INFO sending PrepareRequest {"height": 2501, "view": 0} -2023-12-15T14:53:54.838Z INFO sending Commit {"height": 2501, "view": 0} -2023-12-15T14:53:54.838Z INFO approving block {"height": 2501, "hash": "50d77e0f50f84bb3cabdfabc7f261443f37474fec71ec7ddfffdddc4e5227f1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2dd7a5e278418103faea4c8c69922541132cd674ec2725b9ea585d205ee86947"} -2023-12-15T14:53:54.839Z INFO initializing dbft {"height": 2502, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:54.840Z debug frostfs-node/morph.go:229 new block {"index": 2501} -2023-12-15T14:53:55.454Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2501, "blockHeight": 2501, "took": "3.105572ms"} -2023-12-15T14:53:55.840Z INFO sending PrepareRequest {"height": 2502, "view": 0} -2023-12-15T14:53:55.840Z INFO sending Commit {"height": 2502, "view": 0} -2023-12-15T14:53:55.840Z INFO approving block {"height": 2502, "hash": "8b18c0c2036fb6fc1bf52be786abd69dd55983d5f006db3dd1922ebaafd86b33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50d77e0f50f84bb3cabdfabc7f261443f37474fec71ec7ddfffdddc4e5227f1f"} -2023-12-15T14:53:55.842Z INFO initializing dbft {"height": 2503, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:55.842Z debug frostfs-node/morph.go:229 new block {"index": 2502} -2023-12-15T14:53:56.455Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2502, "blockHeight": 2502, "took": "3.766236ms"} -2023-12-15T14:53:56.842Z INFO sending PrepareRequest {"height": 2503, "view": 0} -2023-12-15T14:53:56.842Z INFO sending Commit {"height": 2503, "view": 0} -2023-12-15T14:53:56.842Z INFO approving block {"height": 2503, "hash": "628c1861121ab07667c1cea8325cb11a1a226103a8e74e20789aa804126ac647", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b18c0c2036fb6fc1bf52be786abd69dd55983d5f006db3dd1922ebaafd86b33"} -2023-12-15T14:53:56.843Z INFO initializing dbft {"height": 2504, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:56.844Z debug frostfs-node/morph.go:229 new block {"index": 2503} -2023-12-15T14:53:57.457Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2503, "blockHeight": 2503, "took": "4.570584ms"} -2023-12-15T14:53:57.844Z INFO sending PrepareRequest {"height": 2504, "view": 0} -2023-12-15T14:53:57.844Z INFO sending Commit {"height": 2504, "view": 0} -2023-12-15T14:53:57.844Z INFO approving block {"height": 2504, "hash": "e34cb6efec4cf156bb5292dd41f494762831ee39a358d4bf7a27224863cbb288", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "628c1861121ab07667c1cea8325cb11a1a226103a8e74e20789aa804126ac647"} -2023-12-15T14:53:57.846Z INFO initializing dbft {"height": 2505, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:57.846Z debug frostfs-node/morph.go:229 new block {"index": 2504} -2023-12-15T14:53:58.459Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2504, "blockHeight": 2504, "took": "5.299405ms"} -2023-12-15T14:53:58.845Z INFO sending PrepareRequest {"height": 2505, "view": 0} -2023-12-15T14:53:58.845Z INFO sending Commit {"height": 2505, "view": 0} -2023-12-15T14:53:58.845Z INFO approving block {"height": 2505, "hash": "c0622e0cf2b69fd70467d2b608c7730eb98a9c5b3298b1e000f72cc74b0fe2bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e34cb6efec4cf156bb5292dd41f494762831ee39a358d4bf7a27224863cbb288"} -2023-12-15T14:53:58.846Z INFO initializing dbft {"height": 2506, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:58.847Z debug frostfs-node/morph.go:229 new block {"index": 2505} -2023-12-15T14:53:59.458Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2505, "blockHeight": 2505, "took": "3.966795ms"} -2023-12-15T14:53:59.847Z INFO sending PrepareRequest {"height": 2506, "view": 0} -2023-12-15T14:53:59.847Z INFO sending Commit {"height": 2506, "view": 0} -2023-12-15T14:53:59.847Z INFO approving block {"height": 2506, "hash": "3789ca76b591287b08feb99f82d12312e2ab3d76fd6759cfc726d86c7e34d8ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0622e0cf2b69fd70467d2b608c7730eb98a9c5b3298b1e000f72cc74b0fe2bd"} -2023-12-15T14:53:59.848Z INFO initializing dbft {"height": 2507, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:53:59.849Z debug frostfs-node/morph.go:229 new block {"index": 2506} -2023-12-15T14:54:00.458Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2506, "blockHeight": 2506, "took": "4.182608ms"} -2023-12-15T14:54:00.848Z INFO sending PrepareRequest {"height": 2507, "view": 0} -2023-12-15T14:54:00.848Z INFO sending Commit {"height": 2507, "view": 0} -2023-12-15T14:54:00.849Z INFO approving block {"height": 2507, "hash": "def53d9a514fdf04cf224c676a27a313c2d6b3fafb552ad3773b799fda8ab484", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3789ca76b591287b08feb99f82d12312e2ab3d76fd6759cfc726d86c7e34d8ee"} -2023-12-15T14:54:00.850Z INFO initializing dbft {"height": 2508, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:00.850Z debug frostfs-node/morph.go:229 new block {"index": 2507} -2023-12-15T14:54:01.458Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2507, "blockHeight": 2507, "took": "3.08441ms"} -2023-12-15T14:54:01.850Z INFO sending PrepareRequest {"height": 2508, "view": 0} -2023-12-15T14:54:01.850Z INFO sending Commit {"height": 2508, "view": 0} -2023-12-15T14:54:01.850Z INFO approving block {"height": 2508, "hash": "c815b6a3347da7290cad86bbab7bc636bfb79a954ddd686f9afb6826061bcff5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "def53d9a514fdf04cf224c676a27a313c2d6b3fafb552ad3773b799fda8ab484"} -2023-12-15T14:54:01.851Z INFO initializing dbft {"height": 2509, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:01.851Z debug frostfs-node/morph.go:229 new block {"index": 2508} -2023-12-15T14:54:02.458Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2508, "blockHeight": 2508, "took": "3.128881ms"} -2023-12-15T14:54:02.851Z INFO sending PrepareRequest {"height": 2509, "view": 0} -2023-12-15T14:54:02.852Z INFO sending Commit {"height": 2509, "view": 0} -2023-12-15T14:54:02.852Z INFO approving block {"height": 2509, "hash": "ca8c00eea52362902410a603d8a60b40066b5a385c42491408aa024f36933cb9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c815b6a3347da7290cad86bbab7bc636bfb79a954ddd686f9afb6826061bcff5"} -2023-12-15T14:54:02.853Z INFO initializing dbft {"height": 2510, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:02.854Z debug frostfs-node/morph.go:229 new block {"index": 2509} -2023-12-15T14:54:03.459Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2509, "blockHeight": 2509, "took": "3.603495ms"} -2023-12-15T14:54:03.853Z INFO sending PrepareRequest {"height": 2510, "view": 0} -2023-12-15T14:54:03.853Z INFO sending Commit {"height": 2510, "view": 0} -2023-12-15T14:54:03.853Z INFO approving block {"height": 2510, "hash": "a365bb45921af89031a6953ba5094a87771bd4a6ef3de7572f4ba7226848d490", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca8c00eea52362902410a603d8a60b40066b5a385c42491408aa024f36933cb9"} -2023-12-15T14:54:03.854Z INFO initializing dbft {"height": 2511, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:03.854Z debug frostfs-node/morph.go:229 new block {"index": 2510} -2023-12-15T14:54:04.484Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2510, "blockHeight": 2510, "took": "27.554059ms"} -2023-12-15T14:54:04.854Z INFO sending PrepareRequest {"height": 2511, "view": 0} -2023-12-15T14:54:04.854Z INFO sending Commit {"height": 2511, "view": 0} -2023-12-15T14:54:04.854Z INFO approving block {"height": 2511, "hash": "f8fb3e05dfa06a51fc6d96bebf703f6f45a436eb38c39f2c3a131e3badc63dbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a365bb45921af89031a6953ba5094a87771bd4a6ef3de7572f4ba7226848d490"} -2023-12-15T14:54:04.855Z INFO initializing dbft {"height": 2512, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:04.856Z debug frostfs-node/morph.go:229 new block {"index": 2511} -2023-12-15T14:54:05.460Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2511, "blockHeight": 2511, "took": "3.022599ms"} -2023-12-15T14:54:05.856Z INFO sending PrepareRequest {"height": 2512, "view": 0} -2023-12-15T14:54:05.856Z INFO sending Commit {"height": 2512, "view": 0} -2023-12-15T14:54:05.856Z INFO approving block {"height": 2512, "hash": "352e2704704533f8920d2e4a16057e736c28cd603f4b21b138514de2dd51ff7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8fb3e05dfa06a51fc6d96bebf703f6f45a436eb38c39f2c3a131e3badc63dbe"} -2023-12-15T14:54:05.858Z INFO initializing dbft {"height": 2513, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:05.858Z debug frostfs-node/morph.go:229 new block {"index": 2512} -2023-12-15T14:54:06.460Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2512, "blockHeight": 2512, "took": "3.113591ms"} -2023-12-15T14:54:06.857Z INFO sending PrepareRequest {"height": 2513, "view": 0} -2023-12-15T14:54:06.857Z INFO sending Commit {"height": 2513, "view": 0} -2023-12-15T14:54:06.857Z INFO approving block {"height": 2513, "hash": "2647b47b58fc11b8bf4969a97462bbfd66abb38d73e1ed44820261a13a179876", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "352e2704704533f8920d2e4a16057e736c28cd603f4b21b138514de2dd51ff7d"} -2023-12-15T14:54:06.859Z INFO initializing dbft {"height": 2514, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:06.860Z debug frostfs-node/morph.go:229 new block {"index": 2513} -2023-12-15T14:54:07.464Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2513, "blockHeight": 2513, "took": "6.460421ms"} -2023-12-15T14:54:07.858Z INFO sending PrepareRequest {"height": 2514, "view": 0} -2023-12-15T14:54:07.859Z INFO sending Commit {"height": 2514, "view": 0} -2023-12-15T14:54:07.859Z INFO approving block {"height": 2514, "hash": "55767354f0a0aaf32b741ae53f052abcd318f8f6ee39b8c6f9d4e8912207c424", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2647b47b58fc11b8bf4969a97462bbfd66abb38d73e1ed44820261a13a179876"} -2023-12-15T14:54:07.861Z INFO initializing dbft {"height": 2515, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:07.861Z debug frostfs-node/morph.go:229 new block {"index": 2514} -2023-12-15T14:54:08.462Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2514, "blockHeight": 2514, "took": "4.113024ms"} -2023-12-15T14:54:08.860Z INFO sending PrepareRequest {"height": 2515, "view": 0} -2023-12-15T14:54:08.860Z INFO sending Commit {"height": 2515, "view": 0} -2023-12-15T14:54:08.860Z INFO approving block {"height": 2515, "hash": "0bf3c569bfbe96c79aaaf417920863979ef75abf1895c876e312bfd1bd35ab50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55767354f0a0aaf32b741ae53f052abcd318f8f6ee39b8c6f9d4e8912207c424"} -2023-12-15T14:54:08.861Z INFO initializing dbft {"height": 2516, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:08.861Z debug frostfs-node/morph.go:229 new block {"index": 2515} -2023-12-15T14:54:09.463Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2515, "blockHeight": 2515, "took": "4.739484ms"} -2023-12-15T14:54:09.861Z INFO sending PrepareRequest {"height": 2516, "view": 0} -2023-12-15T14:54:09.862Z INFO sending Commit {"height": 2516, "view": 0} -2023-12-15T14:54:09.862Z INFO approving block {"height": 2516, "hash": "6917e3faa3d1b58c8b21db8f8a250569e26b3eaea203b5e91c19281d91a521b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bf3c569bfbe96c79aaaf417920863979ef75abf1895c876e312bfd1bd35ab50"} -2023-12-15T14:54:09.863Z INFO initializing dbft {"height": 2517, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:09.864Z debug frostfs-node/morph.go:229 new block {"index": 2516} -2023-12-15T14:54:10.462Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2516, "blockHeight": 2516, "took": "3.035518ms"} -2023-12-15T14:54:10.863Z INFO sending PrepareRequest {"height": 2517, "view": 0} -2023-12-15T14:54:10.863Z INFO sending Commit {"height": 2517, "view": 0} -2023-12-15T14:54:10.864Z INFO approving block {"height": 2517, "hash": "5033ef14bc781e1c2abbd680f0a9d2bbb55494b90636d488ac2203022728bb07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6917e3faa3d1b58c8b21db8f8a250569e26b3eaea203b5e91c19281d91a521b7"} -2023-12-15T14:54:10.865Z INFO initializing dbft {"height": 2518, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:10.865Z debug frostfs-node/morph.go:229 new block {"index": 2517} -2023-12-15T14:54:10.868Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:54:10.872Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:54:10.872Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:54:11.464Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2517, "blockHeight": 2517, "took": "5.026464ms"} -2023-12-15T14:54:11.864Z INFO sending PrepareRequest {"height": 2518, "view": 0} -2023-12-15T14:54:11.865Z INFO sending Commit {"height": 2518, "view": 0} -2023-12-15T14:54:11.865Z INFO approving block {"height": 2518, "hash": "8515fb66d176422fe5e91df13ca4adb4ca34798bc29cf314a50edc059d008783", "tx_count": 2, "merkle": "fd73f06303f3dcce477c9debf6e1550e473c00afa5ab81f6b8e9d631221a360e", "prev": "5033ef14bc781e1c2abbd680f0a9d2bbb55494b90636d488ac2203022728bb07"} -2023-12-15T14:54:11.866Z INFO runtime log {"tx": "68e5b1aee09ac2f23393ed8f87591f650a87f83dbb79c4a2623e98477dcc8e67", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:54:11.866Z INFO runtime log {"tx": "68e5b1aee09ac2f23393ed8f87591f650a87f83dbb79c4a2623e98477dcc8e67", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:54:11.867Z INFO initializing dbft {"height": 2519, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:11.868Z debug frostfs-node/morph.go:229 new block {"index": 2518} -2023-12-15T14:54:12.465Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2518, "blockHeight": 2518, "took": "5.556966ms"} -2023-12-15T14:54:12.866Z INFO sending PrepareRequest {"height": 2519, "view": 0} -2023-12-15T14:54:12.866Z INFO sending Commit {"height": 2519, "view": 0} -2023-12-15T14:54:12.866Z INFO approving block {"height": 2519, "hash": "edd7c87f1f46fd793c9f558461f2ebb008d8b6c217421bc3552ff040610231ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8515fb66d176422fe5e91df13ca4adb4ca34798bc29cf314a50edc059d008783"} -2023-12-15T14:54:12.867Z INFO initializing dbft {"height": 2520, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:12.867Z debug frostfs-node/morph.go:229 new block {"index": 2519} -2023-12-15T14:54:13.465Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2519, "blockHeight": 2519, "took": "4.752013ms"} -2023-12-15T14:54:13.867Z INFO sending PrepareRequest {"height": 2520, "view": 0} -2023-12-15T14:54:13.867Z INFO sending Commit {"height": 2520, "view": 0} -2023-12-15T14:54:13.867Z INFO approving block {"height": 2520, "hash": "bd35629524cef59b172626db0a201ddaea2b6e50489098b31cfad0d44c222923", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edd7c87f1f46fd793c9f558461f2ebb008d8b6c217421bc3552ff040610231ed"} -2023-12-15T14:54:13.868Z INFO initializing dbft {"height": 2521, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:13.869Z debug frostfs-node/morph.go:229 new block {"index": 2520} -2023-12-15T14:54:14.465Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2520, "blockHeight": 2520, "took": "4.041654ms"} -2023-12-15T14:54:14.869Z INFO sending PrepareRequest {"height": 2521, "view": 0} -2023-12-15T14:54:14.869Z INFO sending Commit {"height": 2521, "view": 0} -2023-12-15T14:54:14.869Z INFO approving block {"height": 2521, "hash": "2c90522a4e051af302d0c9d2f36b0cfdc7561603348ebafc46eca5555c771faa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd35629524cef59b172626db0a201ddaea2b6e50489098b31cfad0d44c222923"} -2023-12-15T14:54:14.870Z INFO initializing dbft {"height": 2522, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:14.870Z debug frostfs-node/morph.go:229 new block {"index": 2521} -2023-12-15T14:54:15.465Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2521, "blockHeight": 2521, "took": "3.773102ms"} -2023-12-15T14:54:15.870Z INFO sending PrepareRequest {"height": 2522, "view": 0} -2023-12-15T14:54:15.870Z INFO sending Commit {"height": 2522, "view": 0} -2023-12-15T14:54:15.871Z INFO approving block {"height": 2522, "hash": "7894a392b96f27a9c34874986d8d7d8fa075fa0f378f42e1c119195dcf44468d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c90522a4e051af302d0c9d2f36b0cfdc7561603348ebafc46eca5555c771faa"} -2023-12-15T14:54:15.871Z INFO initializing dbft {"height": 2523, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:15.872Z debug frostfs-node/morph.go:229 new block {"index": 2522} -2023-12-15T14:54:16.467Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2522, "blockHeight": 2522, "took": "5.818265ms"} -2023-12-15T14:54:16.872Z INFO sending PrepareRequest {"height": 2523, "view": 0} -2023-12-15T14:54:16.872Z INFO sending Commit {"height": 2523, "view": 0} -2023-12-15T14:54:16.872Z INFO approving block {"height": 2523, "hash": "4894ba6c14993ee054044294d631d3ada2a9347632860b88e654e3d34579e987", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7894a392b96f27a9c34874986d8d7d8fa075fa0f378f42e1c119195dcf44468d"} -2023-12-15T14:54:16.873Z INFO initializing dbft {"height": 2524, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:16.874Z debug frostfs-node/morph.go:229 new block {"index": 2523} -2023-12-15T14:54:17.465Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2523, "blockHeight": 2523, "took": "3.107451ms"} -2023-12-15T14:54:17.873Z INFO sending PrepareRequest {"height": 2524, "view": 0} -2023-12-15T14:54:17.874Z INFO sending Commit {"height": 2524, "view": 0} -2023-12-15T14:54:17.874Z INFO approving block {"height": 2524, "hash": "2d8c53ca24775413a5a64681914a0d53cc75f9a1b053cf63c52a27f100c26e1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4894ba6c14993ee054044294d631d3ada2a9347632860b88e654e3d34579e987"} -2023-12-15T14:54:17.875Z INFO initializing dbft {"height": 2525, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:17.876Z debug frostfs-node/morph.go:229 new block {"index": 2524} -2023-12-15T14:54:18.467Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2524, "blockHeight": 2524, "took": "4.550042ms"} -2023-12-15T14:54:18.875Z INFO sending PrepareRequest {"height": 2525, "view": 0} -2023-12-15T14:54:18.875Z INFO sending Commit {"height": 2525, "view": 0} -2023-12-15T14:54:18.875Z INFO approving block {"height": 2525, "hash": "5e95c5ed1bd6b17d44d2b79a439794b1da10b6067fb426fab0885ff7f35fc436", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d8c53ca24775413a5a64681914a0d53cc75f9a1b053cf63c52a27f100c26e1b"} -2023-12-15T14:54:18.876Z INFO initializing dbft {"height": 2526, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:18.877Z debug frostfs-node/morph.go:229 new block {"index": 2525} -2023-12-15T14:54:19.467Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2525, "blockHeight": 2525, "took": "4.029818ms"} -2023-12-15T14:54:19.877Z INFO sending PrepareRequest {"height": 2526, "view": 0} -2023-12-15T14:54:19.877Z INFO sending Commit {"height": 2526, "view": 0} -2023-12-15T14:54:19.877Z INFO approving block {"height": 2526, "hash": "783c7154dc5ad039d4faf19087ac5c774cdefe8940d0481c9e3e99ad2f3356d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e95c5ed1bd6b17d44d2b79a439794b1da10b6067fb426fab0885ff7f35fc436"} -2023-12-15T14:54:19.879Z INFO initializing dbft {"height": 2527, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:19.879Z debug frostfs-node/morph.go:229 new block {"index": 2526} -2023-12-15T14:54:20.467Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2526, "blockHeight": 2526, "took": "3.421386ms"} -2023-12-15T14:54:20.879Z INFO sending PrepareRequest {"height": 2527, "view": 0} -2023-12-15T14:54:20.879Z INFO sending Commit {"height": 2527, "view": 0} -2023-12-15T14:54:20.880Z INFO approving block {"height": 2527, "hash": "1ca67edad18ca092a71ef57c7bfc67a9afaab43e6ccd8e78c84239854a35d6b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "783c7154dc5ad039d4faf19087ac5c774cdefe8940d0481c9e3e99ad2f3356d2"} -2023-12-15T14:54:20.881Z INFO initializing dbft {"height": 2528, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:20.882Z debug frostfs-node/morph.go:229 new block {"index": 2527} -2023-12-15T14:54:21.470Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2527, "blockHeight": 2527, "took": "5.304654ms"} -2023-12-15T14:54:21.880Z INFO sending PrepareRequest {"height": 2528, "view": 0} -2023-12-15T14:54:21.880Z INFO sending Commit {"height": 2528, "view": 0} -2023-12-15T14:54:21.881Z INFO approving block {"height": 2528, "hash": "df14daf6cf3559d9195e876770c7fb2473db531f5cd1dd0ad28d48aa8d4e249f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ca67edad18ca092a71ef57c7bfc67a9afaab43e6ccd8e78c84239854a35d6b3"} -2023-12-15T14:54:21.882Z INFO initializing dbft {"height": 2529, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:21.882Z debug frostfs-node/morph.go:229 new block {"index": 2528} -2023-12-15T14:54:22.468Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2528, "blockHeight": 2528, "took": "3.13203ms"} -2023-12-15T14:54:22.882Z INFO sending PrepareRequest {"height": 2529, "view": 0} -2023-12-15T14:54:22.882Z INFO sending Commit {"height": 2529, "view": 0} -2023-12-15T14:54:22.882Z INFO approving block {"height": 2529, "hash": "d603d7507cdc81dce008c6bcf7fdf0578b9cefd075a62ff5891b74e109346fe9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df14daf6cf3559d9195e876770c7fb2473db531f5cd1dd0ad28d48aa8d4e249f"} -2023-12-15T14:54:22.883Z INFO initializing dbft {"height": 2530, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:22.884Z debug frostfs-node/morph.go:229 new block {"index": 2529} -2023-12-15T14:54:23.009Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:54:23.009Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:54:23.009Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:54:23.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2529, "blockHeight": 2529, "took": "3.172213ms"} -2023-12-15T14:54:23.884Z INFO sending PrepareRequest {"height": 2530, "view": 0} -2023-12-15T14:54:23.884Z INFO sending Commit {"height": 2530, "view": 0} -2023-12-15T14:54:23.885Z INFO approving block {"height": 2530, "hash": "e1f0d4c88ab36e1ba1568d7984fd465651f49b9903afb4ef99942762992eaf92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d603d7507cdc81dce008c6bcf7fdf0578b9cefd075a62ff5891b74e109346fe9"} -2023-12-15T14:54:23.886Z INFO initializing dbft {"height": 2531, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:23.887Z debug frostfs-node/morph.go:229 new block {"index": 2530} -2023-12-15T14:54:23.889Z info settlement/calls.go:61 start basic income collection {"epoch": 11} -2023-12-15T14:54:23.890Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 11, "iteration": 1, "error": "no data for 0 iteration in 11 epoch for consumers's trusts"} -2023-12-15T14:54:24.469Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2530, "blockHeight": 2530, "took": "3.803251ms"} -2023-12-15T14:54:24.886Z INFO sending PrepareRequest {"height": 2531, "view": 0} -2023-12-15T14:54:24.886Z INFO sending Commit {"height": 2531, "view": 0} -2023-12-15T14:54:24.886Z INFO approving block {"height": 2531, "hash": "67053fb4725384c47f314949baa47f75ae37ee2a92a7ce9ea5fa6b5577e25a65", "tx_count": 1, "merkle": "f8d2d6a9786313d5c3e09367ad677e5748679f63966fb18b73d5005c3865b543", "prev": "e1f0d4c88ab36e1ba1568d7984fd465651f49b9903afb4ef99942762992eaf92"} -2023-12-15T14:54:24.887Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:54:24.887Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:54:24.887Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:54:24.888Z INFO initializing dbft {"height": 2532, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:24.888Z debug frostfs-node/morph.go:229 new block {"index": 2531} -2023-12-15T14:54:25.472Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 2531, "blockHeight": 2531, "took": "6.022992ms"} -2023-12-15T14:54:25.887Z INFO sending PrepareRequest {"height": 2532, "view": 0} -2023-12-15T14:54:25.888Z INFO sending Commit {"height": 2532, "view": 0} -2023-12-15T14:54:25.888Z INFO approving block {"height": 2532, "hash": "9a67fb75655fef0af8f18837583e7f01116e21f8fb2cbf5f8ee9e9c73cc4ef9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67053fb4725384c47f314949baa47f75ae37ee2a92a7ce9ea5fa6b5577e25a65"} -2023-12-15T14:54:25.889Z INFO initializing dbft {"height": 2533, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:25.889Z debug frostfs-node/morph.go:229 new block {"index": 2532} -2023-12-15T14:54:26.470Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2532, "blockHeight": 2532, "took": "3.322352ms"} -2023-12-15T14:54:26.888Z INFO sending PrepareRequest {"height": 2533, "view": 0} -2023-12-15T14:54:26.888Z INFO sending Commit {"height": 2533, "view": 0} -2023-12-15T14:54:26.889Z INFO approving block {"height": 2533, "hash": "56f7609418613bd8490a2a6af2bb4f01b3fe287cb0c337a747d30b13f8ceb6f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a67fb75655fef0af8f18837583e7f01116e21f8fb2cbf5f8ee9e9c73cc4ef9b"} -2023-12-15T14:54:26.890Z INFO initializing dbft {"height": 2534, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:26.890Z debug frostfs-node/morph.go:229 new block {"index": 2533} -2023-12-15T14:54:27.470Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2533, "blockHeight": 2533, "took": "3.058369ms"} -2023-12-15T14:54:27.890Z INFO sending PrepareRequest {"height": 2534, "view": 0} -2023-12-15T14:54:27.890Z INFO sending Commit {"height": 2534, "view": 0} -2023-12-15T14:54:27.891Z INFO approving block {"height": 2534, "hash": "fa2c0b8e7fd6efe5093e725b3c450eb098cfc59339ff2db2c9f8b697f9bb29dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56f7609418613bd8490a2a6af2bb4f01b3fe287cb0c337a747d30b13f8ceb6f8"} -2023-12-15T14:54:27.891Z INFO initializing dbft {"height": 2535, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:27.892Z debug frostfs-node/morph.go:229 new block {"index": 2534} -2023-12-15T14:54:28.470Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2534, "blockHeight": 2534, "took": "3.268916ms"} -2023-12-15T14:54:28.891Z INFO sending PrepareRequest {"height": 2535, "view": 0} -2023-12-15T14:54:28.891Z INFO sending Commit {"height": 2535, "view": 0} -2023-12-15T14:54:28.891Z INFO approving block {"height": 2535, "hash": "0842583ab057811691bc3ad783abcaec685d86224a19577040ee32abbe3a050b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa2c0b8e7fd6efe5093e725b3c450eb098cfc59339ff2db2c9f8b697f9bb29dd"} -2023-12-15T14:54:28.892Z INFO initializing dbft {"height": 2536, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:28.893Z debug frostfs-node/morph.go:229 new block {"index": 2535} -2023-12-15T14:54:29.471Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2535, "blockHeight": 2535, "took": "3.511132ms"} -2023-12-15T14:54:29.892Z INFO sending PrepareRequest {"height": 2536, "view": 0} -2023-12-15T14:54:29.892Z INFO sending Commit {"height": 2536, "view": 0} -2023-12-15T14:54:29.893Z INFO approving block {"height": 2536, "hash": "c7c7f2c1344ce9a62752aaa14092d694256eac27e72b93f6582609d3d2a48daf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0842583ab057811691bc3ad783abcaec685d86224a19577040ee32abbe3a050b"} -2023-12-15T14:54:29.894Z INFO initializing dbft {"height": 2537, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:29.895Z debug frostfs-node/morph.go:229 new block {"index": 2536} -2023-12-15T14:54:30.472Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2536, "blockHeight": 2536, "took": "3.666167ms"} -2023-12-15T14:54:30.894Z INFO sending PrepareRequest {"height": 2537, "view": 0} -2023-12-15T14:54:30.894Z INFO sending Commit {"height": 2537, "view": 0} -2023-12-15T14:54:30.894Z INFO approving block {"height": 2537, "hash": "48ca04975affea4942fafc24e8c10913e5f0cca69ca69501cd8b1f41faeed91c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7c7f2c1344ce9a62752aaa14092d694256eac27e72b93f6582609d3d2a48daf"} -2023-12-15T14:54:30.895Z INFO initializing dbft {"height": 2538, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:30.896Z debug frostfs-node/morph.go:229 new block {"index": 2537} -2023-12-15T14:54:31.473Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2537, "blockHeight": 2537, "took": "3.685988ms"} -2023-12-15T14:54:31.895Z INFO sending PrepareRequest {"height": 2538, "view": 0} -2023-12-15T14:54:31.895Z INFO sending Commit {"height": 2538, "view": 0} -2023-12-15T14:54:31.896Z INFO approving block {"height": 2538, "hash": "93546e7e693fc648ef68d0ad6bc7385640cf5659dbfe584d5ee14deef6c60bad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48ca04975affea4942fafc24e8c10913e5f0cca69ca69501cd8b1f41faeed91c"} -2023-12-15T14:54:31.897Z INFO initializing dbft {"height": 2539, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:31.897Z debug frostfs-node/morph.go:229 new block {"index": 2538} -2023-12-15T14:54:32.473Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2538, "blockHeight": 2538, "took": "3.464601ms"} -2023-12-15T14:54:32.897Z INFO sending PrepareRequest {"height": 2539, "view": 0} -2023-12-15T14:54:32.897Z INFO sending Commit {"height": 2539, "view": 0} -2023-12-15T14:54:32.897Z INFO approving block {"height": 2539, "hash": "9648725834d0a1bbdda56d57f22ef7ef95a7906b722202e422b9d6bbfdef47e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93546e7e693fc648ef68d0ad6bc7385640cf5659dbfe584d5ee14deef6c60bad"} -2023-12-15T14:54:32.898Z INFO initializing dbft {"height": 2540, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:32.899Z debug frostfs-node/morph.go:229 new block {"index": 2539} -2023-12-15T14:54:33.475Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2539, "blockHeight": 2539, "took": "3.932441ms"} -2023-12-15T14:54:33.898Z INFO sending PrepareRequest {"height": 2540, "view": 0} -2023-12-15T14:54:33.898Z INFO sending Commit {"height": 2540, "view": 0} -2023-12-15T14:54:33.899Z INFO approving block {"height": 2540, "hash": "bbbf45b8d8022a6cd608b51c698d1136714e061aee758655c678a8e1d67c4132", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9648725834d0a1bbdda56d57f22ef7ef95a7906b722202e422b9d6bbfdef47e2"} -2023-12-15T14:54:33.900Z INFO initializing dbft {"height": 2541, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:33.901Z debug frostfs-node/morph.go:229 new block {"index": 2540} -2023-12-15T14:54:34.475Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2540, "blockHeight": 2540, "took": "3.452782ms"} -2023-12-15T14:54:34.899Z INFO sending PrepareRequest {"height": 2541, "view": 0} -2023-12-15T14:54:34.899Z INFO sending Commit {"height": 2541, "view": 0} -2023-12-15T14:54:34.900Z INFO approving block {"height": 2541, "hash": "290593be7921721938854de7f6bce2d47099b13a6f39565ad0a3b53d86ef3c5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbbf45b8d8022a6cd608b51c698d1136714e061aee758655c678a8e1d67c4132"} -2023-12-15T14:54:34.901Z INFO initializing dbft {"height": 2542, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:34.901Z debug frostfs-node/morph.go:229 new block {"index": 2541} -2023-12-15T14:54:35.476Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2541, "blockHeight": 2541, "took": "3.894915ms"} -2023-12-15T14:54:35.901Z INFO sending PrepareRequest {"height": 2542, "view": 0} -2023-12-15T14:54:35.902Z INFO sending Commit {"height": 2542, "view": 0} -2023-12-15T14:54:35.902Z INFO approving block {"height": 2542, "hash": "23251ff781a95b04ff4b8eab88a4e58b2546c665652dc2d333706dee8bfa65e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "290593be7921721938854de7f6bce2d47099b13a6f39565ad0a3b53d86ef3c5e"} -2023-12-15T14:54:35.903Z INFO initializing dbft {"height": 2543, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:35.904Z debug frostfs-node/morph.go:229 new block {"index": 2542} -2023-12-15T14:54:36.476Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2542, "blockHeight": 2542, "took": "3.631047ms"} -2023-12-15T14:54:36.903Z INFO sending PrepareRequest {"height": 2543, "view": 0} -2023-12-15T14:54:36.903Z INFO sending Commit {"height": 2543, "view": 0} -2023-12-15T14:54:36.903Z INFO approving block {"height": 2543, "hash": "56c41e99d3fa50dddaba972567b0aa50a1cc8bd38173b495ff68b55609730b7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23251ff781a95b04ff4b8eab88a4e58b2546c665652dc2d333706dee8bfa65e6"} -2023-12-15T14:54:36.904Z INFO initializing dbft {"height": 2544, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:36.905Z debug frostfs-node/morph.go:229 new block {"index": 2543} -2023-12-15T14:54:37.476Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2543, "blockHeight": 2543, "took": "3.274067ms"} -2023-12-15T14:54:37.904Z INFO sending PrepareRequest {"height": 2544, "view": 0} -2023-12-15T14:54:37.904Z INFO sending Commit {"height": 2544, "view": 0} -2023-12-15T14:54:37.905Z INFO approving block {"height": 2544, "hash": "f708b585e27c7d597775efdfcf08bd94f779ab7a6f4e6319e27f23f2192aa25a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56c41e99d3fa50dddaba972567b0aa50a1cc8bd38173b495ff68b55609730b7a"} -2023-12-15T14:54:37.906Z INFO initializing dbft {"height": 2545, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:37.906Z debug frostfs-node/morph.go:229 new block {"index": 2544} -2023-12-15T14:54:38.478Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2544, "blockHeight": 2544, "took": "3.547844ms"} -2023-12-15T14:54:38.906Z INFO sending PrepareRequest {"height": 2545, "view": 0} -2023-12-15T14:54:38.906Z INFO sending Commit {"height": 2545, "view": 0} -2023-12-15T14:54:38.907Z INFO approving block {"height": 2545, "hash": "43b34d135664f2d5f1079c2a4be73cec0cda1691b12c97a8d8526e2d9e2742d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f708b585e27c7d597775efdfcf08bd94f779ab7a6f4e6319e27f23f2192aa25a"} -2023-12-15T14:54:38.908Z INFO initializing dbft {"height": 2546, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:38.909Z debug frostfs-node/morph.go:229 new block {"index": 2545} -2023-12-15T14:54:39.480Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2545, "blockHeight": 2545, "took": "4.285796ms"} -2023-12-15T14:54:39.907Z INFO sending PrepareRequest {"height": 2546, "view": 0} -2023-12-15T14:54:39.908Z INFO sending Commit {"height": 2546, "view": 0} -2023-12-15T14:54:39.908Z INFO approving block {"height": 2546, "hash": "1a072ea548d9495f6ffd2e28dcb11aa3806857f812406f9a539e115aa7300feb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43b34d135664f2d5f1079c2a4be73cec0cda1691b12c97a8d8526e2d9e2742d2"} -2023-12-15T14:54:39.909Z INFO initializing dbft {"height": 2547, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:39.910Z debug frostfs-node/morph.go:229 new block {"index": 2546} -2023-12-15T14:54:40.479Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2546, "blockHeight": 2546, "took": "3.556034ms"} -2023-12-15T14:54:40.910Z INFO sending PrepareRequest {"height": 2547, "view": 0} -2023-12-15T14:54:40.910Z INFO sending Commit {"height": 2547, "view": 0} -2023-12-15T14:54:40.910Z INFO approving block {"height": 2547, "hash": "b380f9d751ccc572f4af35cb64190383b4bb8dbff094ef4ff2fa8dcf45b90d1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a072ea548d9495f6ffd2e28dcb11aa3806857f812406f9a539e115aa7300feb"} -2023-12-15T14:54:40.911Z INFO initializing dbft {"height": 2548, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:40.912Z debug frostfs-node/morph.go:229 new block {"index": 2547} -2023-12-15T14:54:41.480Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2547, "blockHeight": 2547, "took": "3.559705ms"} -2023-12-15T14:54:41.911Z INFO sending PrepareRequest {"height": 2548, "view": 0} -2023-12-15T14:54:41.912Z INFO sending Commit {"height": 2548, "view": 0} -2023-12-15T14:54:41.912Z INFO approving block {"height": 2548, "hash": "df3b380f53e1048fe58ffbbdd5f7828ee71e5a0d7abe302719a93b4014aad387", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b380f9d751ccc572f4af35cb64190383b4bb8dbff094ef4ff2fa8dcf45b90d1d"} -2023-12-15T14:54:41.913Z INFO initializing dbft {"height": 2549, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:41.913Z debug frostfs-node/morph.go:229 new block {"index": 2548} -2023-12-15T14:54:42.480Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2548, "blockHeight": 2548, "took": "3.645387ms"} -2023-12-15T14:54:42.912Z INFO sending PrepareRequest {"height": 2549, "view": 0} -2023-12-15T14:54:42.913Z INFO sending Commit {"height": 2549, "view": 0} -2023-12-15T14:54:42.913Z INFO approving block {"height": 2549, "hash": "45167ca5ddb0ea10bbd926ef530004f70692a41e44db93d6e1c479814e1a412d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df3b380f53e1048fe58ffbbdd5f7828ee71e5a0d7abe302719a93b4014aad387"} -2023-12-15T14:54:42.914Z INFO initializing dbft {"height": 2550, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:42.914Z debug frostfs-node/morph.go:229 new block {"index": 2549} -2023-12-15T14:54:43.480Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2549, "blockHeight": 2549, "took": "3.05118ms"} -2023-12-15T14:54:43.914Z INFO sending PrepareRequest {"height": 2550, "view": 0} -2023-12-15T14:54:43.914Z INFO sending Commit {"height": 2550, "view": 0} -2023-12-15T14:54:43.914Z INFO approving block {"height": 2550, "hash": "76bd400a6c44ee9bb5bc3f0823bc67fe36dca9392a9cdc8ad8293c54989774b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45167ca5ddb0ea10bbd926ef530004f70692a41e44db93d6e1c479814e1a412d"} -2023-12-15T14:54:43.915Z INFO initializing dbft {"height": 2551, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:43.916Z debug frostfs-node/morph.go:229 new block {"index": 2550} -2023-12-15T14:54:44.483Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2550, "blockHeight": 2550, "took": "5.366727ms"} -2023-12-15T14:54:44.916Z INFO sending PrepareRequest {"height": 2551, "view": 0} -2023-12-15T14:54:44.916Z INFO sending Commit {"height": 2551, "view": 0} -2023-12-15T14:54:44.916Z INFO approving block {"height": 2551, "hash": "527f6fc0ff5d99119efc25e68d235186b61ceeb69481c55e2c425d3ae3054f32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76bd400a6c44ee9bb5bc3f0823bc67fe36dca9392a9cdc8ad8293c54989774b8"} -2023-12-15T14:54:44.917Z INFO initializing dbft {"height": 2552, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:44.918Z debug frostfs-node/morph.go:229 new block {"index": 2551} -2023-12-15T14:54:45.483Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2551, "blockHeight": 2551, "took": "4.833955ms"} -2023-12-15T14:54:45.917Z INFO sending PrepareRequest {"height": 2552, "view": 0} -2023-12-15T14:54:45.917Z INFO sending Commit {"height": 2552, "view": 0} -2023-12-15T14:54:45.918Z INFO approving block {"height": 2552, "hash": "94f5c306e46a6e15948a8d612cf88f8cf04de75874214de5bc69c771983cb185", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "527f6fc0ff5d99119efc25e68d235186b61ceeb69481c55e2c425d3ae3054f32"} -2023-12-15T14:54:45.919Z INFO initializing dbft {"height": 2553, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:45.920Z debug frostfs-node/morph.go:229 new block {"index": 2552} -2023-12-15T14:54:46.481Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2552, "blockHeight": 2552, "took": "2.964268ms"} -2023-12-15T14:54:46.918Z INFO sending PrepareRequest {"height": 2553, "view": 0} -2023-12-15T14:54:46.919Z INFO sending Commit {"height": 2553, "view": 0} -2023-12-15T14:54:46.919Z INFO approving block {"height": 2553, "hash": "10be4db948ea0d8f24a40a457a133c37dfb8e093fda793a41126e327c1dc913b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94f5c306e46a6e15948a8d612cf88f8cf04de75874214de5bc69c771983cb185"} -2023-12-15T14:54:46.923Z INFO initializing dbft {"height": 2554, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:46.923Z debug frostfs-node/morph.go:229 new block {"index": 2553} -2023-12-15T14:54:47.485Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2553, "blockHeight": 2553, "took": "6.418014ms"} -2023-12-15T14:54:47.920Z INFO sending PrepareRequest {"height": 2554, "view": 0} -2023-12-15T14:54:47.920Z INFO sending Commit {"height": 2554, "view": 0} -2023-12-15T14:54:47.920Z INFO approving block {"height": 2554, "hash": "7b2da4c4873e9e869063fe7ca8262cdebee11edebfd7e83532aa3a3c7dfd1a0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10be4db948ea0d8f24a40a457a133c37dfb8e093fda793a41126e327c1dc913b"} -2023-12-15T14:54:47.921Z INFO initializing dbft {"height": 2555, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:47.922Z debug frostfs-node/morph.go:229 new block {"index": 2554} -2023-12-15T14:54:48.482Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2554, "blockHeight": 2554, "took": "2.955166ms"} -2023-12-15T14:54:48.921Z INFO sending PrepareRequest {"height": 2555, "view": 0} -2023-12-15T14:54:48.921Z INFO sending Commit {"height": 2555, "view": 0} -2023-12-15T14:54:48.921Z INFO approving block {"height": 2555, "hash": "5a9c76efa981cde60576400412421cce79029ac76571d0cb8addb8151758cc27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b2da4c4873e9e869063fe7ca8262cdebee11edebfd7e83532aa3a3c7dfd1a0a"} -2023-12-15T14:54:48.922Z INFO initializing dbft {"height": 2556, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:48.923Z debug frostfs-node/morph.go:229 new block {"index": 2555} -2023-12-15T14:54:49.483Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2555, "blockHeight": 2555, "took": "3.239555ms"} -2023-12-15T14:54:49.923Z INFO sending PrepareRequest {"height": 2556, "view": 0} -2023-12-15T14:54:49.923Z INFO sending Commit {"height": 2556, "view": 0} -2023-12-15T14:54:49.923Z INFO approving block {"height": 2556, "hash": "f3c45dc9d381f99f2ff29e1c75c5411931f84a5a37bc55b254536d1e3e5377f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a9c76efa981cde60576400412421cce79029ac76571d0cb8addb8151758cc27"} -2023-12-15T14:54:49.924Z INFO initializing dbft {"height": 2557, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:49.924Z debug frostfs-node/morph.go:229 new block {"index": 2556} -2023-12-15T14:54:50.483Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2556, "blockHeight": 2556, "took": "2.790362ms"} -2023-12-15T14:54:50.924Z INFO sending PrepareRequest {"height": 2557, "view": 0} -2023-12-15T14:54:50.924Z INFO sending Commit {"height": 2557, "view": 0} -2023-12-15T14:54:50.924Z INFO approving block {"height": 2557, "hash": "f638f5f49514409d759d5bcc36b90dbe828c8262ae29d5f6ac6bd65e0bc8c486", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3c45dc9d381f99f2ff29e1c75c5411931f84a5a37bc55b254536d1e3e5377f8"} -2023-12-15T14:54:50.925Z INFO initializing dbft {"height": 2558, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:50.926Z debug frostfs-node/morph.go:229 new block {"index": 2557} -2023-12-15T14:54:51.484Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2557, "blockHeight": 2557, "took": "3.200964ms"} -2023-12-15T14:54:51.926Z INFO sending PrepareRequest {"height": 2558, "view": 0} -2023-12-15T14:54:51.926Z INFO sending Commit {"height": 2558, "view": 0} -2023-12-15T14:54:51.926Z INFO approving block {"height": 2558, "hash": "ea682405690033a7a1d78f466214a9250cdd0181fbec349f620b058cc7fdd78b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f638f5f49514409d759d5bcc36b90dbe828c8262ae29d5f6ac6bd65e0bc8c486"} -2023-12-15T14:54:51.927Z INFO initializing dbft {"height": 2559, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:51.927Z debug frostfs-node/morph.go:229 new block {"index": 2558} -2023-12-15T14:54:52.487Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2558, "blockHeight": 2558, "took": "5.550633ms"} -2023-12-15T14:54:52.927Z INFO sending PrepareRequest {"height": 2559, "view": 0} -2023-12-15T14:54:52.927Z INFO sending Commit {"height": 2559, "view": 0} -2023-12-15T14:54:52.927Z INFO approving block {"height": 2559, "hash": "b2c62eefa375da711efc0dd73889e0dc6aa81df8b3f5da7b4ebe99111324c22d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea682405690033a7a1d78f466214a9250cdd0181fbec349f620b058cc7fdd78b"} -2023-12-15T14:54:52.928Z INFO initializing dbft {"height": 2560, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:52.929Z debug frostfs-node/morph.go:229 new block {"index": 2559} -2023-12-15T14:54:53.485Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 2559, "blockHeight": 2559, "took": "3.41169ms"} -2023-12-15T14:54:53.929Z INFO sending PrepareRequest {"height": 2560, "view": 0} -2023-12-15T14:54:53.929Z INFO sending Commit {"height": 2560, "view": 0} -2023-12-15T14:54:53.929Z INFO approving block {"height": 2560, "hash": "c0bd02881ae500a218dc2e546bc770856f32f8c35e5c6ce344c88d5ad5571f6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2c62eefa375da711efc0dd73889e0dc6aa81df8b3f5da7b4ebe99111324c22d"} -2023-12-15T14:54:53.930Z INFO initializing dbft {"height": 2561, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:53.930Z debug frostfs-node/morph.go:229 new block {"index": 2560} -2023-12-15T14:54:54.485Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2560, "blockHeight": 2560, "took": "2.966776ms"} -2023-12-15T14:54:54.930Z INFO sending PrepareRequest {"height": 2561, "view": 0} -2023-12-15T14:54:54.930Z INFO sending Commit {"height": 2561, "view": 0} -2023-12-15T14:54:54.930Z INFO approving block {"height": 2561, "hash": "9e120476a0d018d8ed4aa7c52036439b204d3625bfc0f5114a90292934b6cac6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0bd02881ae500a218dc2e546bc770856f32f8c35e5c6ce344c88d5ad5571f6b"} -2023-12-15T14:54:54.931Z INFO initializing dbft {"height": 2562, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:54.932Z debug frostfs-node/morph.go:229 new block {"index": 2561} -2023-12-15T14:54:55.486Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2561, "blockHeight": 2561, "took": "3.126452ms"} -2023-12-15T14:54:55.931Z INFO sending PrepareRequest {"height": 2562, "view": 0} -2023-12-15T14:54:55.932Z INFO sending Commit {"height": 2562, "view": 0} -2023-12-15T14:54:55.932Z INFO approving block {"height": 2562, "hash": "81c94fc5250687067902a5a0150a3960cac16d11ed9603f5972fbed76f3d7129", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e120476a0d018d8ed4aa7c52036439b204d3625bfc0f5114a90292934b6cac6"} -2023-12-15T14:54:55.933Z INFO initializing dbft {"height": 2563, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:55.933Z debug frostfs-node/morph.go:229 new block {"index": 2562} -2023-12-15T14:54:56.487Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2562, "blockHeight": 2562, "took": "3.163353ms"} -2023-12-15T14:54:56.933Z INFO sending PrepareRequest {"height": 2563, "view": 0} -2023-12-15T14:54:56.933Z INFO sending Commit {"height": 2563, "view": 0} -2023-12-15T14:54:56.934Z INFO approving block {"height": 2563, "hash": "d0b91ada26b5bb2f43b2ab303ae11234b8cb1c72110d1383933cf7ddcfd9a156", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81c94fc5250687067902a5a0150a3960cac16d11ed9603f5972fbed76f3d7129"} -2023-12-15T14:54:56.935Z INFO initializing dbft {"height": 2564, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:56.935Z debug frostfs-node/morph.go:229 new block {"index": 2563} -2023-12-15T14:54:57.488Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2563, "blockHeight": 2563, "took": "3.903444ms"} -2023-12-15T14:54:57.934Z INFO sending PrepareRequest {"height": 2564, "view": 0} -2023-12-15T14:54:57.934Z INFO sending Commit {"height": 2564, "view": 0} -2023-12-15T14:54:57.935Z INFO approving block {"height": 2564, "hash": "36a6e23587645477e646ade70c29f86bc56824808603d7c71d1be81a608703ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0b91ada26b5bb2f43b2ab303ae11234b8cb1c72110d1383933cf7ddcfd9a156"} -2023-12-15T14:54:57.935Z INFO initializing dbft {"height": 2565, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:57.936Z debug frostfs-node/morph.go:229 new block {"index": 2564} -2023-12-15T14:54:58.488Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2564, "blockHeight": 2564, "took": "2.908754ms"} -2023-12-15T14:54:58.935Z INFO sending PrepareRequest {"height": 2565, "view": 0} -2023-12-15T14:54:58.935Z INFO sending Commit {"height": 2565, "view": 0} -2023-12-15T14:54:58.936Z INFO approving block {"height": 2565, "hash": "9e8fb1bb5e2c68a1d5ff69a5295d505ba42c94b3cc51bac1e04ecedc54d9a1a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36a6e23587645477e646ade70c29f86bc56824808603d7c71d1be81a608703ee"} -2023-12-15T14:54:58.936Z INFO initializing dbft {"height": 2566, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:58.937Z debug frostfs-node/morph.go:229 new block {"index": 2565} -2023-12-15T14:54:59.489Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2565, "blockHeight": 2565, "took": "3.42921ms"} -2023-12-15T14:54:59.936Z INFO sending PrepareRequest {"height": 2566, "view": 0} -2023-12-15T14:54:59.936Z INFO sending Commit {"height": 2566, "view": 0} -2023-12-15T14:54:59.936Z INFO approving block {"height": 2566, "hash": "30da7b5dd2c4fdb3939e2e9d6393ba74769c8da9a49c3d7140ffa99ae71f034c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e8fb1bb5e2c68a1d5ff69a5295d505ba42c94b3cc51bac1e04ecedc54d9a1a6"} -2023-12-15T14:54:59.937Z INFO initializing dbft {"height": 2567, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:54:59.938Z debug frostfs-node/morph.go:229 new block {"index": 2566} -2023-12-15T14:55:00.490Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2566, "blockHeight": 2566, "took": "3.057279ms"} -2023-12-15T14:55:00.938Z INFO sending PrepareRequest {"height": 2567, "view": 0} -2023-12-15T14:55:00.938Z INFO sending Commit {"height": 2567, "view": 0} -2023-12-15T14:55:00.938Z INFO approving block {"height": 2567, "hash": "d0318b9467cf57d481acbcbda12358876555a0083edcca81eb29e4a5d0993e82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30da7b5dd2c4fdb3939e2e9d6393ba74769c8da9a49c3d7140ffa99ae71f034c"} -2023-12-15T14:55:00.940Z INFO initializing dbft {"height": 2568, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:00.940Z debug frostfs-node/morph.go:229 new block {"index": 2567} -2023-12-15T14:55:00.942Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:55:00.945Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:55:00.945Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:55:01.490Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2567, "blockHeight": 2567, "took": "3.49985ms"} -2023-12-15T14:55:01.940Z INFO sending PrepareRequest {"height": 2568, "view": 0} -2023-12-15T14:55:01.940Z INFO sending Commit {"height": 2568, "view": 0} -2023-12-15T14:55:01.941Z INFO approving block {"height": 2568, "hash": "09cf039760528e14a5d2cf0c259bbbdb6f3b98e43f37a0f92e51a332c03a4c4d", "tx_count": 2, "merkle": "002ad472e6bb64d857fbb29b1072bc6ed427b6b5fe0cbb1cafd134f4952bcb3f", "prev": "d0318b9467cf57d481acbcbda12358876555a0083edcca81eb29e4a5d0993e82"} -2023-12-15T14:55:01.942Z INFO runtime log {"tx": "1b236db27efbda352e6127a8688ea2a7a946bdb686e8547013c84c12e592aeec", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:55:01.942Z INFO runtime log {"tx": "1b236db27efbda352e6127a8688ea2a7a946bdb686e8547013c84c12e592aeec", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:55:01.943Z INFO initializing dbft {"height": 2569, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:01.943Z debug frostfs-node/morph.go:229 new block {"index": 2568} -2023-12-15T14:55:02.494Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 2568, "blockHeight": 2568, "took": "6.86375ms"} -2023-12-15T14:55:02.943Z INFO sending PrepareRequest {"height": 2569, "view": 0} -2023-12-15T14:55:02.943Z INFO sending Commit {"height": 2569, "view": 0} -2023-12-15T14:55:02.943Z INFO approving block {"height": 2569, "hash": "abafd6e7d26dea836edc3a74a90b58c4f69497c2cbebe6de2708613f1cc2c91b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09cf039760528e14a5d2cf0c259bbbdb6f3b98e43f37a0f92e51a332c03a4c4d"} -2023-12-15T14:55:02.945Z INFO initializing dbft {"height": 2570, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:02.945Z debug frostfs-node/morph.go:229 new block {"index": 2569} -2023-12-15T14:55:03.491Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2569, "blockHeight": 2569, "took": "3.7359ms"} -2023-12-15T14:55:03.944Z INFO sending PrepareRequest {"height": 2570, "view": 0} -2023-12-15T14:55:03.944Z INFO sending Commit {"height": 2570, "view": 0} -2023-12-15T14:55:03.945Z INFO approving block {"height": 2570, "hash": "93576556aecb2077bd201b9497af73b33093ee6e68b6c0651a0ae0b48e920a50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abafd6e7d26dea836edc3a74a90b58c4f69497c2cbebe6de2708613f1cc2c91b"} -2023-12-15T14:55:03.946Z INFO initializing dbft {"height": 2571, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:03.946Z debug frostfs-node/morph.go:229 new block {"index": 2570} -2023-12-15T14:55:04.491Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2570, "blockHeight": 2570, "took": "3.313336ms"} -2023-12-15T14:55:04.946Z INFO sending PrepareRequest {"height": 2571, "view": 0} -2023-12-15T14:55:04.946Z INFO sending Commit {"height": 2571, "view": 0} -2023-12-15T14:55:04.947Z INFO approving block {"height": 2571, "hash": "0350a40f6e17ba39d2957c5bdedd26168dfa190f1346ce470c0043bf93293570", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93576556aecb2077bd201b9497af73b33093ee6e68b6c0651a0ae0b48e920a50"} -2023-12-15T14:55:04.947Z INFO initializing dbft {"height": 2572, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:04.948Z debug frostfs-node/morph.go:229 new block {"index": 2571} -2023-12-15T14:55:05.495Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2571, "blockHeight": 2571, "took": "5.613312ms"} -2023-12-15T14:55:05.947Z INFO sending PrepareRequest {"height": 2572, "view": 0} -2023-12-15T14:55:05.948Z INFO sending Commit {"height": 2572, "view": 0} -2023-12-15T14:55:05.948Z INFO approving block {"height": 2572, "hash": "568ee01398c72e87bed1d38bcd57b22b0982be909d76363f39da261c4c82a4f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0350a40f6e17ba39d2957c5bdedd26168dfa190f1346ce470c0043bf93293570"} -2023-12-15T14:55:05.949Z INFO initializing dbft {"height": 2573, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:05.949Z debug frostfs-node/morph.go:229 new block {"index": 2572} -2023-12-15T14:55:06.493Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2572, "blockHeight": 2572, "took": "3.657258ms"} -2023-12-15T14:55:06.949Z INFO sending PrepareRequest {"height": 2573, "view": 0} -2023-12-15T14:55:06.949Z INFO sending Commit {"height": 2573, "view": 0} -2023-12-15T14:55:06.949Z INFO approving block {"height": 2573, "hash": "0ba8ad283735cff81e8d19875607108f31211b67e85c771e203df004cda1955c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "568ee01398c72e87bed1d38bcd57b22b0982be909d76363f39da261c4c82a4f3"} -2023-12-15T14:55:06.951Z INFO initializing dbft {"height": 2574, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:06.951Z debug frostfs-node/morph.go:229 new block {"index": 2573} -2023-12-15T14:55:07.493Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2573, "blockHeight": 2573, "took": "3.052309ms"} -2023-12-15T14:55:07.950Z INFO sending PrepareRequest {"height": 2574, "view": 0} -2023-12-15T14:55:07.950Z INFO sending Commit {"height": 2574, "view": 0} -2023-12-15T14:55:07.951Z INFO approving block {"height": 2574, "hash": "8b6089def0db7de365eddc4e62634168144377a456c970b57046f196107afec6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ba8ad283735cff81e8d19875607108f31211b67e85c771e203df004cda1955c"} -2023-12-15T14:55:07.951Z INFO initializing dbft {"height": 2575, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:07.952Z debug frostfs-node/morph.go:229 new block {"index": 2574} -2023-12-15T14:55:08.495Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2574, "blockHeight": 2574, "took": "4.874229ms"} -2023-12-15T14:55:08.952Z INFO sending PrepareRequest {"height": 2575, "view": 0} -2023-12-15T14:55:08.952Z INFO sending Commit {"height": 2575, "view": 0} -2023-12-15T14:55:08.952Z INFO approving block {"height": 2575, "hash": "10dd14b1bb17009b7774e1f4134ea8050074c8596023db0a8fdc7531cd8727dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b6089def0db7de365eddc4e62634168144377a456c970b57046f196107afec6"} -2023-12-15T14:55:08.953Z INFO initializing dbft {"height": 2576, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:08.953Z debug frostfs-node/morph.go:229 new block {"index": 2575} -2023-12-15T14:55:09.494Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2575, "blockHeight": 2575, "took": "3.203963ms"} -2023-12-15T14:55:09.953Z INFO sending PrepareRequest {"height": 2576, "view": 0} -2023-12-15T14:55:09.953Z INFO sending Commit {"height": 2576, "view": 0} -2023-12-15T14:55:09.953Z INFO approving block {"height": 2576, "hash": "597a28485db199db1a1ca36917d75223fccb25cc634c5665ef101cb5f1c52f96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10dd14b1bb17009b7774e1f4134ea8050074c8596023db0a8fdc7531cd8727dd"} -2023-12-15T14:55:09.954Z INFO initializing dbft {"height": 2577, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:09.955Z debug frostfs-node/morph.go:229 new block {"index": 2576} -2023-12-15T14:55:10.494Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2576, "blockHeight": 2576, "took": "2.899474ms"} -2023-12-15T14:55:10.954Z INFO sending PrepareRequest {"height": 2577, "view": 0} -2023-12-15T14:55:10.954Z INFO sending Commit {"height": 2577, "view": 0} -2023-12-15T14:55:10.955Z INFO approving block {"height": 2577, "hash": "58893afb192642143995a289e765b763510f5b0e17e0ee344b6ba659c177c5b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "597a28485db199db1a1ca36917d75223fccb25cc634c5665ef101cb5f1c52f96"} -2023-12-15T14:55:10.956Z INFO initializing dbft {"height": 2578, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:10.957Z debug frostfs-node/morph.go:229 new block {"index": 2577} -2023-12-15T14:55:11.497Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2577, "blockHeight": 2577, "took": "4.604788ms"} -2023-12-15T14:55:11.956Z INFO sending PrepareRequest {"height": 2578, "view": 0} -2023-12-15T14:55:11.956Z INFO sending Commit {"height": 2578, "view": 0} -2023-12-15T14:55:11.956Z INFO approving block {"height": 2578, "hash": "a6f10e3e6bcaa027619624c277b1706ad205aef6a80e77512a6c82ab11f8f2d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58893afb192642143995a289e765b763510f5b0e17e0ee344b6ba659c177c5b6"} -2023-12-15T14:55:11.957Z INFO initializing dbft {"height": 2579, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:11.958Z debug frostfs-node/morph.go:229 new block {"index": 2578} -2023-12-15T14:55:12.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2578, "blockHeight": 2578, "took": "4.552332ms"} -2023-12-15T14:55:12.957Z INFO sending PrepareRequest {"height": 2579, "view": 0} -2023-12-15T14:55:12.957Z INFO sending Commit {"height": 2579, "view": 0} -2023-12-15T14:55:12.957Z INFO approving block {"height": 2579, "hash": "aec677457e33820ec9c5484ba3071e2fe1752757afceedf14e68187cfad033eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6f10e3e6bcaa027619624c277b1706ad205aef6a80e77512a6c82ab11f8f2d4"} -2023-12-15T14:55:12.958Z INFO initializing dbft {"height": 2580, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:12.958Z debug frostfs-node/morph.go:229 new block {"index": 2579} -2023-12-15T14:55:13.497Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2579, "blockHeight": 2579, "took": "3.303046ms"} -2023-12-15T14:55:13.958Z INFO sending PrepareRequest {"height": 2580, "view": 0} -2023-12-15T14:55:13.958Z INFO sending Commit {"height": 2580, "view": 0} -2023-12-15T14:55:13.959Z INFO approving block {"height": 2580, "hash": "1bb6d701575f99d7a29c7eb4d67f4567fa4423e5507e8602935a50e6f02860a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aec677457e33820ec9c5484ba3071e2fe1752757afceedf14e68187cfad033eb"} -2023-12-15T14:55:13.960Z INFO initializing dbft {"height": 2581, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:13.960Z debug frostfs-node/morph.go:229 new block {"index": 2580} -2023-12-15T14:55:14.497Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2580, "blockHeight": 2580, "took": "3.509542ms"} -2023-12-15T14:55:14.960Z INFO sending PrepareRequest {"height": 2581, "view": 0} -2023-12-15T14:55:14.960Z INFO sending Commit {"height": 2581, "view": 0} -2023-12-15T14:55:14.960Z INFO approving block {"height": 2581, "hash": "d3e2f12f15dddac80e684d1d0af89549fbe48b383f4588d279f74e567807bd93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bb6d701575f99d7a29c7eb4d67f4567fa4423e5507e8602935a50e6f02860a1"} -2023-12-15T14:55:14.961Z INFO initializing dbft {"height": 2582, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:14.961Z debug frostfs-node/morph.go:229 new block {"index": 2581} -2023-12-15T14:55:15.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2581, "blockHeight": 2581, "took": "6.594149ms"} -2023-12-15T14:55:15.961Z INFO sending PrepareRequest {"height": 2582, "view": 0} -2023-12-15T14:55:15.961Z INFO sending Commit {"height": 2582, "view": 0} -2023-12-15T14:55:15.961Z INFO approving block {"height": 2582, "hash": "ba5770f60a6a910df72b92ac731590d56e054ef3a76182c41c8f60e1c7a30685", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3e2f12f15dddac80e684d1d0af89549fbe48b383f4588d279f74e567807bd93"} -2023-12-15T14:55:15.962Z INFO initializing dbft {"height": 2583, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:15.963Z debug frostfs-node/morph.go:229 new block {"index": 2582} -2023-12-15T14:55:16.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2582, "blockHeight": 2582, "took": "3.262844ms"} -2023-12-15T14:55:16.962Z INFO sending PrepareRequest {"height": 2583, "view": 0} -2023-12-15T14:55:16.962Z INFO sending Commit {"height": 2583, "view": 0} -2023-12-15T14:55:16.963Z INFO approving block {"height": 2583, "hash": "960b79fabffe3dcd5a4c6f31d77f6d3ab6157b0506ffe3391566386b141ad144", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba5770f60a6a910df72b92ac731590d56e054ef3a76182c41c8f60e1c7a30685"} -2023-12-15T14:55:16.963Z INFO initializing dbft {"height": 2584, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:16.964Z debug frostfs-node/morph.go:229 new block {"index": 2583} -2023-12-15T14:55:17.499Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2583, "blockHeight": 2583, "took": "3.013456ms"} -2023-12-15T14:55:17.964Z INFO sending PrepareRequest {"height": 2584, "view": 0} -2023-12-15T14:55:17.964Z INFO sending Commit {"height": 2584, "view": 0} -2023-12-15T14:55:17.964Z INFO approving block {"height": 2584, "hash": "fb5226bc800b6ad4de1df73f44e1c363096ceb1095e404a268f0c587d3c069d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "960b79fabffe3dcd5a4c6f31d77f6d3ab6157b0506ffe3391566386b141ad144"} -2023-12-15T14:55:17.966Z INFO initializing dbft {"height": 2585, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:17.966Z debug frostfs-node/morph.go:229 new block {"index": 2584} -2023-12-15T14:55:18.116Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:18.117Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:18.117Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:18.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2584, "blockHeight": 2584, "took": "4.594815ms"} -2023-12-15T14:55:18.966Z INFO sending PrepareRequest {"height": 2585, "view": 0} -2023-12-15T14:55:18.966Z INFO sending Commit {"height": 2585, "view": 0} -2023-12-15T14:55:18.967Z INFO approving block {"height": 2585, "hash": "d2d95b9e0641b7f86a49866df8977e01292e82f5b8df22d4d02b933ee509393a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb5226bc800b6ad4de1df73f44e1c363096ceb1095e404a268f0c587d3c069d5"} -2023-12-15T14:55:18.968Z INFO initializing dbft {"height": 2586, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:18.968Z debug frostfs-node/morph.go:229 new block {"index": 2585} -2023-12-15T14:55:19.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2585, "blockHeight": 2585, "took": "3.857681ms"} -2023-12-15T14:55:19.968Z INFO sending PrepareRequest {"height": 2586, "view": 0} -2023-12-15T14:55:19.968Z INFO sending Commit {"height": 2586, "view": 0} -2023-12-15T14:55:19.968Z INFO approving block {"height": 2586, "hash": "5e2cf536416686246b6e4323e7e0c030df34eb7f8ac7631a3048d3811732d5b4", "tx_count": 1, "merkle": "34c2f2c657ac577854f8e71b891dd52fb7d4064f412a3fdef18cddc1414fdb21", "prev": "d2d95b9e0641b7f86a49866df8977e01292e82f5b8df22d4d02b933ee509393a"} -2023-12-15T14:55:19.969Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:19.969Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:19.969Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:19.969Z WARN contract invocation failed {"tx": "21db4f41c1dd8cf1de3f2a414f06d4b72fd51d891be7f8547857ac57c6f2c234", "block": 2586, "error": "at instruction 474 (NOT): gas limit is exceeded"} -2023-12-15T14:55:19.969Z INFO initializing dbft {"height": 2587, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:19.970Z debug frostfs-node/morph.go:229 new block {"index": 2586} -2023-12-15T14:55:20.501Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 2586, "blockHeight": 2586, "took": "3.902399ms"} -2023-12-15T14:55:20.969Z INFO sending PrepareRequest {"height": 2587, "view": 0} -2023-12-15T14:55:20.969Z INFO sending Commit {"height": 2587, "view": 0} -2023-12-15T14:55:20.969Z INFO approving block {"height": 2587, "hash": "b1197a3e18f6a086ae646af4450320eef9968e56e476eb266698f4d4105a29d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e2cf536416686246b6e4323e7e0c030df34eb7f8ac7631a3048d3811732d5b4"} -2023-12-15T14:55:20.970Z INFO initializing dbft {"height": 2588, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:20.970Z debug frostfs-node/morph.go:229 new block {"index": 2587} -2023-12-15T14:55:21.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2587, "blockHeight": 2587, "took": "2.907844ms"} -2023-12-15T14:55:21.970Z INFO sending PrepareRequest {"height": 2588, "view": 0} -2023-12-15T14:55:21.970Z INFO sending Commit {"height": 2588, "view": 0} -2023-12-15T14:55:21.970Z INFO approving block {"height": 2588, "hash": "36f77da28337d42d4ed80e99596cef2f5ea5a41df25c46254cb16a77db6a64b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1197a3e18f6a086ae646af4450320eef9968e56e476eb266698f4d4105a29d5"} -2023-12-15T14:55:21.971Z INFO initializing dbft {"height": 2589, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:21.971Z debug frostfs-node/morph.go:229 new block {"index": 2588} -2023-12-15T14:55:22.502Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2588, "blockHeight": 2588, "took": "3.791121ms"} -2023-12-15T14:55:22.972Z INFO sending PrepareRequest {"height": 2589, "view": 0} -2023-12-15T14:55:22.972Z INFO sending Commit {"height": 2589, "view": 0} -2023-12-15T14:55:22.972Z INFO approving block {"height": 2589, "hash": "ebc43665a2befbe8bea0df5b33ea44b2a6d58fb23bed6760a760204a1f713d6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36f77da28337d42d4ed80e99596cef2f5ea5a41df25c46254cb16a77db6a64b8"} -2023-12-15T14:55:22.974Z INFO initializing dbft {"height": 2590, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:22.974Z debug frostfs-node/morph.go:229 new block {"index": 2589} -2023-12-15T14:55:23.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2589, "blockHeight": 2589, "took": "4.258494ms"} -2023-12-15T14:55:23.973Z INFO sending PrepareRequest {"height": 2590, "view": 0} -2023-12-15T14:55:23.974Z INFO sending Commit {"height": 2590, "view": 0} -2023-12-15T14:55:23.974Z INFO approving block {"height": 2590, "hash": "632fc2b02bdbfdbfe6c74e152c5435004f14fb8fa19ee3441900642a130f1f34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebc43665a2befbe8bea0df5b33ea44b2a6d58fb23bed6760a760204a1f713d6b"} -2023-12-15T14:55:23.975Z INFO initializing dbft {"height": 2591, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:23.976Z debug frostfs-node/morph.go:229 new block {"index": 2590} -2023-12-15T14:55:23.980Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 11, "iteration": 2, "error": "no data for 1 iteration in 11 epoch for consumers's trusts"} -2023-12-15T14:55:23.982Z info settlement/calls.go:106 start basic income distribution {"epoch": 11} -2023-12-15T14:55:24.504Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2590, "blockHeight": 2590, "took": "3.300684ms"} -2023-12-15T14:55:24.975Z INFO sending PrepareRequest {"height": 2591, "view": 0} -2023-12-15T14:55:24.975Z INFO sending Commit {"height": 2591, "view": 0} -2023-12-15T14:55:24.975Z INFO approving block {"height": 2591, "hash": "8a8e5fbe3ecb0a2e1cfc8d898ab5afa7e1ffda86029ac9fdef44cd41a9de11e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "632fc2b02bdbfdbfe6c74e152c5435004f14fb8fa19ee3441900642a130f1f34"} -2023-12-15T14:55:24.976Z INFO initializing dbft {"height": 2592, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:24.976Z debug frostfs-node/morph.go:229 new block {"index": 2591} -2023-12-15T14:55:25.504Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2591, "blockHeight": 2591, "took": "2.888315ms"} -2023-12-15T14:55:25.977Z INFO sending PrepareRequest {"height": 2592, "view": 0} -2023-12-15T14:55:25.977Z INFO sending Commit {"height": 2592, "view": 0} -2023-12-15T14:55:25.977Z INFO approving block {"height": 2592, "hash": "a6ea559e9971cb540a3a6301ec828866045e520870a7df5da8e041bd62334735", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a8e5fbe3ecb0a2e1cfc8d898ab5afa7e1ffda86029ac9fdef44cd41a9de11e8"} -2023-12-15T14:55:25.978Z INFO initializing dbft {"height": 2593, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:25.978Z debug frostfs-node/morph.go:229 new block {"index": 2592} -2023-12-15T14:55:26.505Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2592, "blockHeight": 2592, "took": "3.365179ms"} -2023-12-15T14:55:26.978Z INFO sending PrepareRequest {"height": 2593, "view": 0} -2023-12-15T14:55:26.978Z INFO sending Commit {"height": 2593, "view": 0} -2023-12-15T14:55:26.979Z INFO approving block {"height": 2593, "hash": "4b5dad9161a9cbd8cf1b2b0878c5940d1b0e0c9d7bf787345db4e7a3f033a34d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6ea559e9971cb540a3a6301ec828866045e520870a7df5da8e041bd62334735"} -2023-12-15T14:55:26.979Z INFO initializing dbft {"height": 2594, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:26.980Z debug frostfs-node/morph.go:229 new block {"index": 2593} -2023-12-15T14:55:27.506Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2593, "blockHeight": 2593, "took": "2.844684ms"} -2023-12-15T14:55:27.979Z INFO sending PrepareRequest {"height": 2594, "view": 0} -2023-12-15T14:55:27.979Z INFO sending Commit {"height": 2594, "view": 0} -2023-12-15T14:55:27.979Z INFO approving block {"height": 2594, "hash": "0eeaf2e8b975fd34857ee7ae13c0378aef7af48081cee7f4a1d173bc704a7560", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b5dad9161a9cbd8cf1b2b0878c5940d1b0e0c9d7bf787345db4e7a3f033a34d"} -2023-12-15T14:55:27.980Z INFO initializing dbft {"height": 2595, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:27.981Z debug frostfs-node/morph.go:229 new block {"index": 2594} -2023-12-15T14:55:28.508Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2594, "blockHeight": 2594, "took": "4.321836ms"} -2023-12-15T14:55:28.980Z INFO sending PrepareRequest {"height": 2595, "view": 0} -2023-12-15T14:55:28.981Z INFO sending Commit {"height": 2595, "view": 0} -2023-12-15T14:55:28.981Z INFO approving block {"height": 2595, "hash": "28eb562733cb92a10f5fccee13bbb6eeaa03d3f38246659bb03d4ba06a550e3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0eeaf2e8b975fd34857ee7ae13c0378aef7af48081cee7f4a1d173bc704a7560"} -2023-12-15T14:55:28.983Z INFO initializing dbft {"height": 2596, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:28.983Z debug frostfs-node/morph.go:229 new block {"index": 2595} -2023-12-15T14:55:29.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2595, "blockHeight": 2595, "took": "5.742014ms"} -2023-12-15T14:55:29.982Z INFO sending PrepareRequest {"height": 2596, "view": 0} -2023-12-15T14:55:29.982Z INFO sending Commit {"height": 2596, "view": 0} -2023-12-15T14:55:29.982Z INFO approving block {"height": 2596, "hash": "66ed729a4323e1e2828374be0105cc076eb3c4a487f60c8e782133d671b4fc6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28eb562733cb92a10f5fccee13bbb6eeaa03d3f38246659bb03d4ba06a550e3c"} -2023-12-15T14:55:29.983Z INFO initializing dbft {"height": 2597, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:29.984Z debug frostfs-node/morph.go:229 new block {"index": 2596} -2023-12-15T14:55:30.512Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2596, "blockHeight": 2596, "took": "6.211264ms"} -2023-12-15T14:55:30.984Z INFO sending PrepareRequest {"height": 2597, "view": 0} -2023-12-15T14:55:30.984Z INFO sending Commit {"height": 2597, "view": 0} -2023-12-15T14:55:30.984Z INFO approving block {"height": 2597, "hash": "a9ded00c7ef0e29a20cdbf4d9506821c9131f57d196684b1fd47cd5ef1006edc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66ed729a4323e1e2828374be0105cc076eb3c4a487f60c8e782133d671b4fc6f"} -2023-12-15T14:55:30.985Z INFO initializing dbft {"height": 2598, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:30.985Z debug frostfs-node/morph.go:229 new block {"index": 2597} -2023-12-15T14:55:31.509Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2597, "blockHeight": 2597, "took": "2.987594ms"} -2023-12-15T14:55:31.985Z INFO sending PrepareRequest {"height": 2598, "view": 0} -2023-12-15T14:55:31.985Z INFO sending Commit {"height": 2598, "view": 0} -2023-12-15T14:55:31.985Z INFO approving block {"height": 2598, "hash": "fe997979a4b252e15cb6d9947c4c8d62fdf3bfdacb2bc5bb4f074c2347dbb6e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9ded00c7ef0e29a20cdbf4d9506821c9131f57d196684b1fd47cd5ef1006edc"} -2023-12-15T14:55:31.986Z INFO initializing dbft {"height": 2599, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:31.987Z debug frostfs-node/morph.go:229 new block {"index": 2598} -2023-12-15T14:55:32.510Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2598, "blockHeight": 2598, "took": "3.279743ms"} -2023-12-15T14:55:32.987Z INFO sending PrepareRequest {"height": 2599, "view": 0} -2023-12-15T14:55:32.987Z INFO sending Commit {"height": 2599, "view": 0} -2023-12-15T14:55:32.987Z INFO approving block {"height": 2599, "hash": "a23e59c7ce73454d7222c27f1b8a109e5e3244170f40311efe019c20156b825c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe997979a4b252e15cb6d9947c4c8d62fdf3bfdacb2bc5bb4f074c2347dbb6e9"} -2023-12-15T14:55:32.988Z INFO initializing dbft {"height": 2600, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:32.988Z debug frostfs-node/morph.go:229 new block {"index": 2599} -2023-12-15T14:55:33.510Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2599, "blockHeight": 2599, "took": "2.805849ms"} -2023-12-15T14:55:33.988Z INFO sending PrepareRequest {"height": 2600, "view": 0} -2023-12-15T14:55:33.988Z INFO sending Commit {"height": 2600, "view": 0} -2023-12-15T14:55:33.988Z INFO approving block {"height": 2600, "hash": "a89aae947a7146ce76a59f6074d1a4abea995dbeb05b4d16b6ea7b55c9742936", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a23e59c7ce73454d7222c27f1b8a109e5e3244170f40311efe019c20156b825c"} -2023-12-15T14:55:33.989Z INFO initializing dbft {"height": 2601, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:33.990Z debug frostfs-node/morph.go:229 new block {"index": 2600} -2023-12-15T14:55:34.512Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2600, "blockHeight": 2600, "took": "4.100396ms"} -2023-12-15T14:55:34.989Z INFO sending PrepareRequest {"height": 2601, "view": 0} -2023-12-15T14:55:34.989Z INFO sending Commit {"height": 2601, "view": 0} -2023-12-15T14:55:34.989Z INFO approving block {"height": 2601, "hash": "66c1d95e8d8fa125e56f853e945081cd9bc9d6f8bd475dc3cc1cd80811e97c90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a89aae947a7146ce76a59f6074d1a4abea995dbeb05b4d16b6ea7b55c9742936"} -2023-12-15T14:55:34.990Z INFO initializing dbft {"height": 2602, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:34.990Z debug frostfs-node/morph.go:229 new block {"index": 2601} -2023-12-15T14:55:35.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2601, "blockHeight": 2601, "took": "2.982764ms"} -2023-12-15T14:55:35.990Z INFO sending PrepareRequest {"height": 2602, "view": 0} -2023-12-15T14:55:35.991Z INFO sending Commit {"height": 2602, "view": 0} -2023-12-15T14:55:35.991Z INFO approving block {"height": 2602, "hash": "27e2f594f3a82cb99165a2bc4662422a5528c2e04e096d8a46521c89985d3485", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66c1d95e8d8fa125e56f853e945081cd9bc9d6f8bd475dc3cc1cd80811e97c90"} -2023-12-15T14:55:35.992Z INFO initializing dbft {"height": 2603, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:35.993Z debug frostfs-node/morph.go:229 new block {"index": 2602} -2023-12-15T14:55:36.512Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2602, "blockHeight": 2602, "took": "3.603632ms"} -2023-12-15T14:55:36.992Z INFO sending PrepareRequest {"height": 2603, "view": 0} -2023-12-15T14:55:36.992Z INFO sending Commit {"height": 2603, "view": 0} -2023-12-15T14:55:36.992Z INFO approving block {"height": 2603, "hash": "a95052626c6be4215621f72267f8a13816c9c428b9087c2cdbcc0c312a1034a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27e2f594f3a82cb99165a2bc4662422a5528c2e04e096d8a46521c89985d3485"} -2023-12-15T14:55:36.993Z INFO initializing dbft {"height": 2604, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:36.993Z debug frostfs-node/morph.go:229 new block {"index": 2603} -2023-12-15T14:55:37.513Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2603, "blockHeight": 2603, "took": "3.83883ms"} -2023-12-15T14:55:37.993Z INFO sending PrepareRequest {"height": 2604, "view": 0} -2023-12-15T14:55:37.993Z INFO sending Commit {"height": 2604, "view": 0} -2023-12-15T14:55:37.994Z INFO approving block {"height": 2604, "hash": "bb6f9119e8fda347b96347b2c464dafe4e44164c3334da4e7a01a20fc56abf63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a95052626c6be4215621f72267f8a13816c9c428b9087c2cdbcc0c312a1034a6"} -2023-12-15T14:55:37.994Z INFO initializing dbft {"height": 2605, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:37.995Z debug frostfs-node/morph.go:229 new block {"index": 2604} -2023-12-15T14:55:38.513Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2604, "blockHeight": 2604, "took": "3.531383ms"} -2023-12-15T14:55:38.995Z INFO sending PrepareRequest {"height": 2605, "view": 0} -2023-12-15T14:55:38.995Z INFO sending Commit {"height": 2605, "view": 0} -2023-12-15T14:55:38.995Z INFO approving block {"height": 2605, "hash": "2491d4caea9ecbfc23903dcc3cb88f5e4cc455bdcdd61f8b694242d5ef400cfb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb6f9119e8fda347b96347b2c464dafe4e44164c3334da4e7a01a20fc56abf63"} -2023-12-15T14:55:38.997Z INFO initializing dbft {"height": 2606, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:38.997Z debug frostfs-node/morph.go:229 new block {"index": 2605} -2023-12-15T14:55:39.515Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2605, "blockHeight": 2605, "took": "4.920374ms"} -2023-12-15T14:55:39.997Z INFO sending PrepareRequest {"height": 2606, "view": 0} -2023-12-15T14:55:39.997Z INFO sending Commit {"height": 2606, "view": 0} -2023-12-15T14:55:39.997Z INFO approving block {"height": 2606, "hash": "77acdf3f41b57ec96f7a08dd4cc555b130b6d1dc225815337bc7290e6f9d59f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2491d4caea9ecbfc23903dcc3cb88f5e4cc455bdcdd61f8b694242d5ef400cfb"} -2023-12-15T14:55:39.999Z INFO initializing dbft {"height": 2607, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:39.999Z debug frostfs-node/morph.go:229 new block {"index": 2606} -2023-12-15T14:55:40.514Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2606, "blockHeight": 2606, "took": "3.259014ms"} -2023-12-15T14:55:40.998Z INFO sending PrepareRequest {"height": 2607, "view": 0} -2023-12-15T14:55:40.998Z INFO sending Commit {"height": 2607, "view": 0} -2023-12-15T14:55:40.998Z INFO approving block {"height": 2607, "hash": "f5aa19df7fcc2103e82926095751815d1734fea8805dd5299b474afd9ab209a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77acdf3f41b57ec96f7a08dd4cc555b130b6d1dc225815337bc7290e6f9d59f2"} -2023-12-15T14:55:40.999Z INFO initializing dbft {"height": 2608, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:41.000Z debug frostfs-node/morph.go:229 new block {"index": 2607} -2023-12-15T14:55:41.514Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2607, "blockHeight": 2607, "took": "2.900115ms"} -2023-12-15T14:55:42.000Z INFO sending PrepareRequest {"height": 2608, "view": 0} -2023-12-15T14:55:42.000Z INFO sending Commit {"height": 2608, "view": 0} -2023-12-15T14:55:42.000Z INFO approving block {"height": 2608, "hash": "74ccc33c30417dc199ef9c04754be16d1c000e5788679b7ae373fc5b245e7ca6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5aa19df7fcc2103e82926095751815d1734fea8805dd5299b474afd9ab209a9"} -2023-12-15T14:55:42.001Z INFO initializing dbft {"height": 2609, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:42.001Z debug frostfs-node/morph.go:229 new block {"index": 2608} -2023-12-15T14:55:42.515Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2608, "blockHeight": 2608, "took": "3.354948ms"} -2023-12-15T14:55:43.001Z INFO sending PrepareRequest {"height": 2609, "view": 0} -2023-12-15T14:55:43.001Z INFO sending Commit {"height": 2609, "view": 0} -2023-12-15T14:55:43.001Z INFO approving block {"height": 2609, "hash": "d3e998422f5956456e859e4c043d6a672e07913177c9ed4216e06659b0a53827", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74ccc33c30417dc199ef9c04754be16d1c000e5788679b7ae373fc5b245e7ca6"} -2023-12-15T14:55:43.002Z INFO initializing dbft {"height": 2610, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:43.003Z debug frostfs-node/morph.go:229 new block {"index": 2609} -2023-12-15T14:55:43.516Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2609, "blockHeight": 2609, "took": "3.515653ms"} -2023-12-15T14:55:44.002Z INFO sending PrepareRequest {"height": 2610, "view": 0} -2023-12-15T14:55:44.002Z INFO sending Commit {"height": 2610, "view": 0} -2023-12-15T14:55:44.003Z INFO approving block {"height": 2610, "hash": "c6d4680f4501b3a3414914852dbc21f2bb8ab74c0b069d37704611d55398465d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3e998422f5956456e859e4c043d6a672e07913177c9ed4216e06659b0a53827"} -2023-12-15T14:55:44.004Z INFO initializing dbft {"height": 2611, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:44.005Z debug frostfs-node/morph.go:229 new block {"index": 2610} -2023-12-15T14:55:44.516Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2610, "blockHeight": 2610, "took": "2.893234ms"} -2023-12-15T14:55:45.003Z INFO sending PrepareRequest {"height": 2611, "view": 0} -2023-12-15T14:55:45.003Z INFO sending Commit {"height": 2611, "view": 0} -2023-12-15T14:55:45.003Z INFO approving block {"height": 2611, "hash": "7025110d7185fe3b449ba66a865f26a0e8f2b898c1cc2b417b7952fb4cf18c4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6d4680f4501b3a3414914852dbc21f2bb8ab74c0b069d37704611d55398465d"} -2023-12-15T14:55:45.004Z INFO initializing dbft {"height": 2612, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:45.005Z debug frostfs-node/morph.go:229 new block {"index": 2611} -2023-12-15T14:55:45.518Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2611, "blockHeight": 2611, "took": "4.891774ms"} -2023-12-15T14:55:46.005Z INFO sending PrepareRequest {"height": 2612, "view": 0} -2023-12-15T14:55:46.005Z INFO sending Commit {"height": 2612, "view": 0} -2023-12-15T14:55:46.005Z INFO approving block {"height": 2612, "hash": "35e0928ce5053f910bc35d56a2191d5ffa57abfdea3b65c63e78d6342ee259cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7025110d7185fe3b449ba66a865f26a0e8f2b898c1cc2b417b7952fb4cf18c4f"} -2023-12-15T14:55:46.006Z INFO initializing dbft {"height": 2613, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:46.006Z debug frostfs-node/morph.go:229 new block {"index": 2612} -2023-12-15T14:55:46.518Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2612, "blockHeight": 2612, "took": "3.78841ms"} -2023-12-15T14:55:47.006Z INFO sending PrepareRequest {"height": 2613, "view": 0} -2023-12-15T14:55:47.006Z INFO sending Commit {"height": 2613, "view": 0} -2023-12-15T14:55:47.006Z INFO approving block {"height": 2613, "hash": "04aaff976a49e714c80a00019cc3178b7a715f53590ca326a241bef6c5596b9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35e0928ce5053f910bc35d56a2191d5ffa57abfdea3b65c63e78d6342ee259cb"} -2023-12-15T14:55:47.007Z INFO initializing dbft {"height": 2614, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:47.007Z debug frostfs-node/morph.go:229 new block {"index": 2613} -2023-12-15T14:55:47.517Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2613, "blockHeight": 2613, "took": "3.235344ms"} -2023-12-15T14:55:48.007Z INFO sending PrepareRequest {"height": 2614, "view": 0} -2023-12-15T14:55:48.007Z INFO sending Commit {"height": 2614, "view": 0} -2023-12-15T14:55:48.008Z INFO approving block {"height": 2614, "hash": "f3698ce5a20ea20d62960fce590ac31ddb08276e057ffc155268486ba2e496fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04aaff976a49e714c80a00019cc3178b7a715f53590ca326a241bef6c5596b9a"} -2023-12-15T14:55:48.008Z INFO initializing dbft {"height": 2615, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:48.009Z debug frostfs-node/morph.go:229 new block {"index": 2614} -2023-12-15T14:55:48.517Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2614, "blockHeight": 2614, "took": "2.819683ms"} -2023-12-15T14:55:49.009Z INFO sending PrepareRequest {"height": 2615, "view": 0} -2023-12-15T14:55:49.009Z INFO sending Commit {"height": 2615, "view": 0} -2023-12-15T14:55:49.009Z INFO approving block {"height": 2615, "hash": "630c40b15f541dd99f7a9bf847591acfdb5f862f4ed4179bb305a5255d08aadb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3698ce5a20ea20d62960fce590ac31ddb08276e057ffc155268486ba2e496fc"} -2023-12-15T14:55:49.010Z INFO initializing dbft {"height": 2616, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:49.010Z debug frostfs-node/morph.go:229 new block {"index": 2615} -2023-12-15T14:55:49.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2615, "blockHeight": 2615, "took": "3.577387ms"} -2023-12-15T14:55:50.010Z INFO sending PrepareRequest {"height": 2616, "view": 0} -2023-12-15T14:55:50.010Z INFO sending Commit {"height": 2616, "view": 0} -2023-12-15T14:55:50.010Z INFO approving block {"height": 2616, "hash": "31431ecccd030d3250501e6a46405be9039df90c280b8d3013a094876e3c83d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "630c40b15f541dd99f7a9bf847591acfdb5f862f4ed4179bb305a5255d08aadb"} -2023-12-15T14:55:50.011Z INFO initializing dbft {"height": 2617, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:50.012Z debug frostfs-node/morph.go:229 new block {"index": 2616} -2023-12-15T14:55:50.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2616, "blockHeight": 2616, "took": "3.272085ms"} -2023-12-15T14:55:51.012Z INFO sending PrepareRequest {"height": 2617, "view": 0} -2023-12-15T14:55:51.012Z INFO sending Commit {"height": 2617, "view": 0} -2023-12-15T14:55:51.012Z INFO approving block {"height": 2617, "hash": "2cd05fc79b087696392f4d764c7c5f219509637461383b82aaaf4317b5bf3af3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31431ecccd030d3250501e6a46405be9039df90c280b8d3013a094876e3c83d4"} -2023-12-15T14:55:51.013Z INFO initializing dbft {"height": 2618, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:51.013Z debug frostfs-node/morph.go:229 new block {"index": 2617} -2023-12-15T14:55:51.015Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:55:51.018Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:55:51.018Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:55:51.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2617, "blockHeight": 2617, "took": "2.916566ms"} -2023-12-15T14:55:52.013Z INFO sending PrepareRequest {"height": 2618, "view": 0} -2023-12-15T14:55:52.013Z INFO sending Commit {"height": 2618, "view": 0} -2023-12-15T14:55:52.013Z INFO approving block {"height": 2618, "hash": "9e3f7a9c32de8174450587d41896895f40ffc1241d68b185fd0da55b1b31b5bb", "tx_count": 2, "merkle": "054a68acc2e6c321ee93644df9dce59a4fbd0565f7529bf5777e3324aba4236f", "prev": "2cd05fc79b087696392f4d764c7c5f219509637461383b82aaaf4317b5bf3af3"} -2023-12-15T14:55:52.014Z INFO runtime log {"tx": "53339ec426b09bc7b5a3f73ec3007bccc9556aa2dbeceb3966a81ce5f78d2c47", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:55:52.014Z INFO runtime log {"tx": "53339ec426b09bc7b5a3f73ec3007bccc9556aa2dbeceb3966a81ce5f78d2c47", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:55:52.014Z INFO initializing dbft {"height": 2619, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:52.015Z debug frostfs-node/morph.go:229 new block {"index": 2618} -2023-12-15T14:55:52.523Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2618, "blockHeight": 2618, "took": "6.145459ms"} -2023-12-15T14:55:53.014Z INFO sending PrepareRequest {"height": 2619, "view": 0} -2023-12-15T14:55:53.014Z INFO sending Commit {"height": 2619, "view": 0} -2023-12-15T14:55:53.015Z INFO approving block {"height": 2619, "hash": "55467710fca144357c658139b7b98342aaf47d152b4f05b9dade25cb2bbff4ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e3f7a9c32de8174450587d41896895f40ffc1241d68b185fd0da55b1b31b5bb"} -2023-12-15T14:55:53.015Z INFO initializing dbft {"height": 2620, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:53.016Z debug frostfs-node/morph.go:229 new block {"index": 2619} -2023-12-15T14:55:53.521Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2619, "blockHeight": 2619, "took": "3.194203ms"} -2023-12-15T14:55:54.016Z INFO sending PrepareRequest {"height": 2620, "view": 0} -2023-12-15T14:55:54.016Z INFO sending Commit {"height": 2620, "view": 0} -2023-12-15T14:55:54.016Z INFO approving block {"height": 2620, "hash": "294075c7799d33d4c4b43b96aab6f0fccbbbe146c46da67b61e01ffa5f827844", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55467710fca144357c658139b7b98342aaf47d152b4f05b9dade25cb2bbff4ad"} -2023-12-15T14:55:54.017Z INFO initializing dbft {"height": 2621, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:54.018Z debug frostfs-node/morph.go:229 new block {"index": 2620} -2023-12-15T14:55:54.522Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2620, "blockHeight": 2620, "took": "4.141426ms"} -2023-12-15T14:55:55.017Z INFO sending PrepareRequest {"height": 2621, "view": 0} -2023-12-15T14:55:55.017Z INFO sending Commit {"height": 2621, "view": 0} -2023-12-15T14:55:55.018Z INFO approving block {"height": 2621, "hash": "c27479b1b6e8a21aba3d2bc31e8378008b0d44fba766df934205aeceb157ceeb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "294075c7799d33d4c4b43b96aab6f0fccbbbe146c46da67b61e01ffa5f827844"} -2023-12-15T14:55:55.019Z INFO initializing dbft {"height": 2622, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:55.019Z debug frostfs-node/morph.go:229 new block {"index": 2621} -2023-12-15T14:55:55.522Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2621, "blockHeight": 2621, "took": "3.242476ms"} -2023-12-15T14:55:56.018Z INFO sending PrepareRequest {"height": 2622, "view": 0} -2023-12-15T14:55:56.019Z INFO sending Commit {"height": 2622, "view": 0} -2023-12-15T14:55:56.019Z INFO approving block {"height": 2622, "hash": "7bef71e0d822fa1360a1d2a7af5dd9637b42ea0ef7661e1952803a0809c96471", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c27479b1b6e8a21aba3d2bc31e8378008b0d44fba766df934205aeceb157ceeb"} -2023-12-15T14:55:56.020Z INFO initializing dbft {"height": 2623, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:56.020Z debug frostfs-node/morph.go:229 new block {"index": 2622} -2023-12-15T14:55:56.522Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2622, "blockHeight": 2622, "took": "3.214374ms"} -2023-12-15T14:55:57.020Z INFO sending PrepareRequest {"height": 2623, "view": 0} -2023-12-15T14:55:57.020Z INFO sending Commit {"height": 2623, "view": 0} -2023-12-15T14:55:57.020Z INFO approving block {"height": 2623, "hash": "babde8f17c1363c6c4bfc13fbd9de4006bc71f41819ad4ace75a0a3e55ee3b65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bef71e0d822fa1360a1d2a7af5dd9637b42ea0ef7661e1952803a0809c96471"} -2023-12-15T14:55:57.021Z INFO initializing dbft {"height": 2624, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:57.022Z debug frostfs-node/morph.go:229 new block {"index": 2623} -2023-12-15T14:55:57.526Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2623, "blockHeight": 2623, "took": "6.114068ms"} -2023-12-15T14:55:58.022Z INFO sending PrepareRequest {"height": 2624, "view": 0} -2023-12-15T14:55:58.022Z INFO sending Commit {"height": 2624, "view": 0} -2023-12-15T14:55:58.022Z INFO approving block {"height": 2624, "hash": "2c799974b2730d284e9dc98d298d57a319478cdfd6243ebb086ec7104754370d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "babde8f17c1363c6c4bfc13fbd9de4006bc71f41819ad4ace75a0a3e55ee3b65"} -2023-12-15T14:55:58.023Z INFO initializing dbft {"height": 2625, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:58.023Z debug frostfs-node/morph.go:229 new block {"index": 2624} -2023-12-15T14:55:58.524Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2624, "blockHeight": 2624, "took": "4.218603ms"} -2023-12-15T14:55:58.734Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:58.734Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:58.734Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:55:59.024Z INFO sending PrepareRequest {"height": 2625, "view": 0} -2023-12-15T14:55:59.024Z INFO sending Commit {"height": 2625, "view": 0} -2023-12-15T14:55:59.024Z INFO approving block {"height": 2625, "hash": "555ce25e77e60dc9dbf1cb32b4f3185db798588529fef60b2b839e7fe3d65afb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c799974b2730d284e9dc98d298d57a319478cdfd6243ebb086ec7104754370d"} -2023-12-15T14:55:59.025Z INFO initializing dbft {"height": 2626, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:55:59.026Z debug frostfs-node/morph.go:229 new block {"index": 2625} -2023-12-15T14:55:59.524Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2625, "blockHeight": 2625, "took": "3.502072ms"} -2023-12-15T14:56:00.025Z INFO sending PrepareRequest {"height": 2626, "view": 0} -2023-12-15T14:56:00.025Z INFO sending Commit {"height": 2626, "view": 0} -2023-12-15T14:56:00.026Z INFO approving block {"height": 2626, "hash": "e37b55de35c7e52ed863d4b154adfd2419d25b501c67dfdfe173a57597becf3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "555ce25e77e60dc9dbf1cb32b4f3185db798588529fef60b2b839e7fe3d65afb"} -2023-12-15T14:56:00.027Z INFO initializing dbft {"height": 2627, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:00.027Z debug frostfs-node/morph.go:229 new block {"index": 2626} -2023-12-15T14:56:00.525Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2626, "blockHeight": 2626, "took": "3.611892ms"} -2023-12-15T14:56:01.026Z INFO sending PrepareRequest {"height": 2627, "view": 0} -2023-12-15T14:56:01.027Z INFO sending Commit {"height": 2627, "view": 0} -2023-12-15T14:56:01.027Z INFO approving block {"height": 2627, "hash": "8a4a98efc19bf09e828cb2435113550ec96ff1d5a9a05fd2072592fb178ef606", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e37b55de35c7e52ed863d4b154adfd2419d25b501c67dfdfe173a57597becf3e"} -2023-12-15T14:56:01.028Z INFO initializing dbft {"height": 2628, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:01.028Z debug frostfs-node/morph.go:229 new block {"index": 2627} -2023-12-15T14:56:01.527Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2627, "blockHeight": 2627, "took": "4.323849ms"} -2023-12-15T14:56:02.028Z INFO sending PrepareRequest {"height": 2628, "view": 0} -2023-12-15T14:56:02.029Z INFO sending Commit {"height": 2628, "view": 0} -2023-12-15T14:56:02.029Z INFO approving block {"height": 2628, "hash": "36399b60b475a8766b7dc336c0a63b57b23db196639f35288b74c0b5f959b869", "tx_count": 1, "merkle": "af408ac2056fdd3456990fe59870b376c3cb728aa449301034e9e1db44b6f068", "prev": "8a4a98efc19bf09e828cb2435113550ec96ff1d5a9a05fd2072592fb178ef606"} -2023-12-15T14:56:02.029Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:56:02.029Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:56:02.029Z INFO bad notification {"contract": "d3e111d8c9a6c4749e741a8a6205990e6b8b2e5e", "event": "Wheel number: ", "error": "event Wheel number: does not exist"} -2023-12-15T14:56:02.030Z INFO initializing dbft {"height": 2629, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:02.031Z debug frostfs-node/morph.go:229 new block {"index": 2628} -2023-12-15T14:56:02.532Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 2628, "blockHeight": 2628, "took": "8.696738ms"} -2023-12-15T14:56:03.030Z INFO sending PrepareRequest {"height": 2629, "view": 0} -2023-12-15T14:56:03.030Z INFO sending Commit {"height": 2629, "view": 0} -2023-12-15T14:56:03.031Z INFO approving block {"height": 2629, "hash": "98694d126c882ece7b8093ea010573d19b1ac41c41ca9123ad3c73a70b923970", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36399b60b475a8766b7dc336c0a63b57b23db196639f35288b74c0b5f959b869"} -2023-12-15T14:56:03.032Z INFO initializing dbft {"height": 2630, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:03.033Z debug frostfs-node/morph.go:229 new block {"index": 2629} -2023-12-15T14:56:03.527Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2629, "blockHeight": 2629, "took": "3.749095ms"} -2023-12-15T14:56:04.032Z INFO sending PrepareRequest {"height": 2630, "view": 0} -2023-12-15T14:56:04.032Z INFO sending Commit {"height": 2630, "view": 0} -2023-12-15T14:56:04.032Z INFO approving block {"height": 2630, "hash": "b49029670570b28f1bbbe095d6f52a5d7c414584f4d87d5ea51bee3392bfb94b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98694d126c882ece7b8093ea010573d19b1ac41c41ca9123ad3c73a70b923970"} -2023-12-15T14:56:04.033Z INFO initializing dbft {"height": 2631, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:04.033Z debug frostfs-node/morph.go:229 new block {"index": 2630} -2023-12-15T14:56:04.528Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2630, "blockHeight": 2630, "took": "4.281254ms"} -2023-12-15T14:56:05.033Z INFO sending PrepareRequest {"height": 2631, "view": 0} -2023-12-15T14:56:05.033Z INFO sending Commit {"height": 2631, "view": 0} -2023-12-15T14:56:05.033Z INFO approving block {"height": 2631, "hash": "8a7e55a33006041c1c2204447dc8a502fa344eaff5ecd0c6c7a077f04ea4f260", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b49029670570b28f1bbbe095d6f52a5d7c414584f4d87d5ea51bee3392bfb94b"} -2023-12-15T14:56:05.034Z INFO initializing dbft {"height": 2632, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:05.035Z debug frostfs-node/morph.go:229 new block {"index": 2631} -2023-12-15T14:56:05.529Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2631, "blockHeight": 2631, "took": "4.657728ms"} -2023-12-15T14:56:06.035Z INFO sending PrepareRequest {"height": 2632, "view": 0} -2023-12-15T14:56:06.035Z INFO sending Commit {"height": 2632, "view": 0} -2023-12-15T14:56:06.035Z INFO approving block {"height": 2632, "hash": "8cc455cf183a96a1688437cf80e52a76081c684e01be6e502f92a6de186b0627", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a7e55a33006041c1c2204447dc8a502fa344eaff5ecd0c6c7a077f04ea4f260"} -2023-12-15T14:56:06.036Z INFO initializing dbft {"height": 2633, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:06.037Z debug frostfs-node/morph.go:229 new block {"index": 2632} -2023-12-15T14:56:06.529Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2632, "blockHeight": 2632, "took": "3.568414ms"} -2023-12-15T14:56:07.036Z INFO sending PrepareRequest {"height": 2633, "view": 0} -2023-12-15T14:56:07.036Z INFO sending Commit {"height": 2633, "view": 0} -2023-12-15T14:56:07.036Z INFO approving block {"height": 2633, "hash": "555180d161559daa443846dfe8d00801e3ff0787dffec152c13864e99a45d5ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cc455cf183a96a1688437cf80e52a76081c684e01be6e502f92a6de186b0627"} -2023-12-15T14:56:07.037Z INFO initializing dbft {"height": 2634, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:07.037Z debug frostfs-node/morph.go:229 new block {"index": 2633} -2023-12-15T14:56:07.529Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2633, "blockHeight": 2633, "took": "3.319066ms"} -2023-12-15T14:56:08.037Z INFO sending PrepareRequest {"height": 2634, "view": 0} -2023-12-15T14:56:08.038Z INFO sending Commit {"height": 2634, "view": 0} -2023-12-15T14:56:08.038Z INFO approving block {"height": 2634, "hash": "36f06162289ed06b9e4fc6874c5168eac8242f241d6b3757d896bbc71565225c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "555180d161559daa443846dfe8d00801e3ff0787dffec152c13864e99a45d5ef"} -2023-12-15T14:56:08.039Z INFO initializing dbft {"height": 2635, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:08.040Z debug frostfs-node/morph.go:229 new block {"index": 2634} -2023-12-15T14:56:08.530Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2634, "blockHeight": 2634, "took": "3.061989ms"} -2023-12-15T14:56:09.039Z INFO sending PrepareRequest {"height": 2635, "view": 0} -2023-12-15T14:56:09.039Z INFO sending Commit {"height": 2635, "view": 0} -2023-12-15T14:56:09.039Z INFO approving block {"height": 2635, "hash": "7798ab07af6d030be5bc3718128a73e5bb0922e289550b1a7f400c580af8c006", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36f06162289ed06b9e4fc6874c5168eac8242f241d6b3757d896bbc71565225c"} -2023-12-15T14:56:09.040Z INFO initializing dbft {"height": 2636, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:09.040Z debug frostfs-node/morph.go:229 new block {"index": 2635} -2023-12-15T14:56:09.532Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2635, "blockHeight": 2635, "took": "4.840239ms"} -2023-12-15T14:56:10.040Z INFO sending PrepareRequest {"height": 2636, "view": 0} -2023-12-15T14:56:10.040Z INFO sending Commit {"height": 2636, "view": 0} -2023-12-15T14:56:10.040Z INFO approving block {"height": 2636, "hash": "3165ecff1c1a4ea859edeffb1a945a0908cee1acbe61d3e60e6f1b40d626452c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7798ab07af6d030be5bc3718128a73e5bb0922e289550b1a7f400c580af8c006"} -2023-12-15T14:56:10.041Z INFO initializing dbft {"height": 2637, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:10.042Z debug frostfs-node/morph.go:229 new block {"index": 2636} -2023-12-15T14:56:10.530Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2636, "blockHeight": 2636, "took": "3.022481ms"} -2023-12-15T14:56:11.041Z INFO sending PrepareRequest {"height": 2637, "view": 0} -2023-12-15T14:56:11.041Z INFO sending Commit {"height": 2637, "view": 0} -2023-12-15T14:56:11.042Z INFO approving block {"height": 2637, "hash": "d9f73e9ef0fc1518f5d599ba6c25fbbe5ed0ef1dd2325e3936d5650c4be64b88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3165ecff1c1a4ea859edeffb1a945a0908cee1acbe61d3e60e6f1b40d626452c"} -2023-12-15T14:56:11.042Z INFO initializing dbft {"height": 2638, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:11.043Z debug frostfs-node/morph.go:229 new block {"index": 2637} -2023-12-15T14:56:11.532Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2637, "blockHeight": 2637, "took": "3.474294ms"} -2023-12-15T14:56:12.043Z INFO sending PrepareRequest {"height": 2638, "view": 0} -2023-12-15T14:56:12.043Z INFO sending Commit {"height": 2638, "view": 0} -2023-12-15T14:56:12.044Z INFO approving block {"height": 2638, "hash": "f13d50ff1fd0560fd38ab23fb29abccdadaeb8be6f568b3f33be9792bf94cb34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9f73e9ef0fc1518f5d599ba6c25fbbe5ed0ef1dd2325e3936d5650c4be64b88"} -2023-12-15T14:56:12.045Z INFO initializing dbft {"height": 2639, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:12.045Z debug frostfs-node/morph.go:229 new block {"index": 2638} -2023-12-15T14:56:12.534Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2638, "blockHeight": 2638, "took": "4.82356ms"} -2023-12-15T14:56:13.045Z INFO sending PrepareRequest {"height": 2639, "view": 0} -2023-12-15T14:56:13.045Z INFO sending Commit {"height": 2639, "view": 0} -2023-12-15T14:56:13.045Z INFO approving block {"height": 2639, "hash": "18e908bd821ce194fe7e5680605155c31a93240290240e7f026b826bfb48a881", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f13d50ff1fd0560fd38ab23fb29abccdadaeb8be6f568b3f33be9792bf94cb34"} -2023-12-15T14:56:13.047Z INFO initializing dbft {"height": 2640, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:13.047Z debug frostfs-node/morph.go:229 new block {"index": 2639} -2023-12-15T14:56:13.534Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2639, "blockHeight": 2639, "took": "4.391211ms"} -2023-12-15T14:56:14.046Z INFO sending PrepareRequest {"height": 2640, "view": 0} -2023-12-15T14:56:14.046Z INFO sending Commit {"height": 2640, "view": 0} -2023-12-15T14:56:14.046Z INFO approving block {"height": 2640, "hash": "1b55685af990c32fd36c2f451f9cd5eb3208ac93668cc48f3e68eb0a2dc77c31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18e908bd821ce194fe7e5680605155c31a93240290240e7f026b826bfb48a881"} -2023-12-15T14:56:14.047Z INFO initializing dbft {"height": 2641, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:14.048Z debug frostfs-node/morph.go:229 new block {"index": 2640} -2023-12-15T14:56:14.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2640, "blockHeight": 2640, "took": "5.670901ms"} -2023-12-15T14:56:15.047Z INFO sending PrepareRequest {"height": 2641, "view": 0} -2023-12-15T14:56:15.047Z INFO sending Commit {"height": 2641, "view": 0} -2023-12-15T14:56:15.048Z INFO approving block {"height": 2641, "hash": "17b42309e3da37ea61fb671db91b25f1d3de18c6c8271c90fb27fc558ede2f39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b55685af990c32fd36c2f451f9cd5eb3208ac93668cc48f3e68eb0a2dc77c31"} -2023-12-15T14:56:15.048Z INFO initializing dbft {"height": 2642, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:15.049Z debug frostfs-node/morph.go:229 new block {"index": 2641} -2023-12-15T14:56:15.535Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2641, "blockHeight": 2641, "took": "3.799431ms"} -2023-12-15T14:56:16.049Z INFO sending PrepareRequest {"height": 2642, "view": 0} -2023-12-15T14:56:16.049Z INFO sending Commit {"height": 2642, "view": 0} -2023-12-15T14:56:16.049Z INFO approving block {"height": 2642, "hash": "fa21ea04501a3c2d9f21fec01c0f52685fe38fcd79a5685767b8a74d146066d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17b42309e3da37ea61fb671db91b25f1d3de18c6c8271c90fb27fc558ede2f39"} -2023-12-15T14:56:16.050Z INFO initializing dbft {"height": 2643, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:16.051Z debug frostfs-node/morph.go:229 new block {"index": 2642} -2023-12-15T14:56:16.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2642, "blockHeight": 2642, "took": "4.797977ms"} -2023-12-15T14:56:17.050Z INFO sending PrepareRequest {"height": 2643, "view": 0} -2023-12-15T14:56:17.051Z INFO sending Commit {"height": 2643, "view": 0} -2023-12-15T14:56:17.051Z INFO approving block {"height": 2643, "hash": "cea39e6d4221c96403c7a822c73e8b0aa713d7b71be9cdd4d81350ca837e5a8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa21ea04501a3c2d9f21fec01c0f52685fe38fcd79a5685767b8a74d146066d9"} -2023-12-15T14:56:17.052Z INFO initializing dbft {"height": 2644, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:17.052Z debug frostfs-node/morph.go:229 new block {"index": 2643} -2023-12-15T14:56:17.535Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2643, "blockHeight": 2643, "took": "3.0514ms"} -2023-12-15T14:56:18.052Z INFO sending PrepareRequest {"height": 2644, "view": 0} -2023-12-15T14:56:18.052Z INFO sending Commit {"height": 2644, "view": 0} -2023-12-15T14:56:18.052Z INFO approving block {"height": 2644, "hash": "072e2a6df147fe38717d441598c755fdd30416489955189bd4a20b07915cf0d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cea39e6d4221c96403c7a822c73e8b0aa713d7b71be9cdd4d81350ca837e5a8b"} -2023-12-15T14:56:18.053Z INFO initializing dbft {"height": 2645, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:18.053Z debug frostfs-node/morph.go:229 new block {"index": 2644} -2023-12-15T14:56:18.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2644, "blockHeight": 2644, "took": "3.555204ms"} -2023-12-15T14:56:19.053Z INFO sending PrepareRequest {"height": 2645, "view": 0} -2023-12-15T14:56:19.053Z INFO sending Commit {"height": 2645, "view": 0} -2023-12-15T14:56:19.053Z INFO approving block {"height": 2645, "hash": "73bcb33febb44eb896c308557ec7d6c7b27d69219f28f194d582dd6496a824ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "072e2a6df147fe38717d441598c755fdd30416489955189bd4a20b07915cf0d6"} -2023-12-15T14:56:19.054Z INFO initializing dbft {"height": 2646, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:19.055Z debug frostfs-node/morph.go:229 new block {"index": 2645} -2023-12-15T14:56:19.537Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2645, "blockHeight": 2645, "took": "4.111269ms"} -2023-12-15T14:56:20.055Z INFO sending PrepareRequest {"height": 2646, "view": 0} -2023-12-15T14:56:20.055Z INFO sending Commit {"height": 2646, "view": 0} -2023-12-15T14:56:20.055Z INFO approving block {"height": 2646, "hash": "951f02b6dea52d210907136eef56429e55a9516a99c3aac4b8557e153f48cfc3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73bcb33febb44eb896c308557ec7d6c7b27d69219f28f194d582dd6496a824ba"} -2023-12-15T14:56:20.056Z INFO initializing dbft {"height": 2647, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:20.056Z debug frostfs-node/morph.go:229 new block {"index": 2646} -2023-12-15T14:56:20.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2646, "blockHeight": 2646, "took": "2.836382ms"} -2023-12-15T14:56:21.056Z INFO sending PrepareRequest {"height": 2647, "view": 0} -2023-12-15T14:56:21.056Z INFO sending Commit {"height": 2647, "view": 0} -2023-12-15T14:56:21.056Z INFO approving block {"height": 2647, "hash": "3a5433fac66dd3b38664339752018a5c1b690410ef5ea80b25813fbdd3ecff15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "951f02b6dea52d210907136eef56429e55a9516a99c3aac4b8557e153f48cfc3"} -2023-12-15T14:56:21.057Z INFO initializing dbft {"height": 2648, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:21.058Z debug frostfs-node/morph.go:229 new block {"index": 2647} -2023-12-15T14:56:21.537Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2647, "blockHeight": 2647, "took": "3.09291ms"} -2023-12-15T14:56:22.058Z INFO sending PrepareRequest {"height": 2648, "view": 0} -2023-12-15T14:56:22.058Z INFO sending Commit {"height": 2648, "view": 0} -2023-12-15T14:56:22.058Z INFO approving block {"height": 2648, "hash": "5b6f837e6b309781e9be3f426d73370592b129867293dcd0b6c5f73b2bbbf8d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a5433fac66dd3b38664339752018a5c1b690410ef5ea80b25813fbdd3ecff15"} -2023-12-15T14:56:22.059Z INFO initializing dbft {"height": 2649, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:22.059Z debug frostfs-node/morph.go:229 new block {"index": 2648} -2023-12-15T14:56:22.537Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2648, "blockHeight": 2648, "took": "3.357777ms"} -2023-12-15T14:56:23.059Z INFO sending PrepareRequest {"height": 2649, "view": 0} -2023-12-15T14:56:23.060Z INFO sending Commit {"height": 2649, "view": 0} -2023-12-15T14:56:23.060Z INFO approving block {"height": 2649, "hash": "93acd5f1627569877619095d9e380a3ac261ca12187889ef479ae2810c2e53e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b6f837e6b309781e9be3f426d73370592b129867293dcd0b6c5f73b2bbbf8d3"} -2023-12-15T14:56:23.061Z INFO initializing dbft {"height": 2650, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:23.061Z debug frostfs-node/morph.go:229 new block {"index": 2649} -2023-12-15T14:56:23.539Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2649, "blockHeight": 2649, "took": "4.077591ms"} -2023-12-15T14:56:24.061Z INFO sending PrepareRequest {"height": 2650, "view": 0} -2023-12-15T14:56:24.061Z INFO sending Commit {"height": 2650, "view": 0} -2023-12-15T14:56:24.061Z INFO approving block {"height": 2650, "hash": "8b251c086c2a8a6332c860d8af5e2a3b5475b7d7ac897b058cccfee9c1417873", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93acd5f1627569877619095d9e380a3ac261ca12187889ef479ae2810c2e53e8"} -2023-12-15T14:56:24.062Z INFO initializing dbft {"height": 2651, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:24.063Z debug frostfs-node/morph.go:229 new block {"index": 2650} -2023-12-15T14:56:24.065Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T14:56:24.066Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 11, "iteration": 3, "error": "no data for 2 iteration in 11 epoch for consumers's trusts"} -2023-12-15T14:56:24.069Z INFO runtime log {"tx": "a72e2cd6b0b933c1c261035cee84ddb95e0c9e6f5ece5f6b6e8f6ca6dcf0ac95", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:56:24.538Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2650, "blockHeight": 2650, "took": "3.371709ms"} -2023-12-15T14:56:25.062Z INFO sending PrepareRequest {"height": 2651, "view": 0} -2023-12-15T14:56:25.062Z INFO sending Commit {"height": 2651, "view": 0} -2023-12-15T14:56:25.062Z INFO approving block {"height": 2651, "hash": "b61121aa109257b9216751332d80d4067b6fb2c013f153145098685fa12ed7ff", "tx_count": 1, "merkle": "ecd74e9d81e2625cebd163b548a97b0c3896313dc5f96be65c77ed091fae8dab", "prev": "8b251c086c2a8a6332c860d8af5e2a3b5475b7d7ac897b058cccfee9c1417873"} -2023-12-15T14:56:25.063Z INFO runtime log {"tx": "ab8dae1f09ed775ce66bf9c53d3196380c7ba948b563d1eb5c62e2819d4ed7ec", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T14:56:25.064Z INFO initializing dbft {"height": 2652, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:25.065Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 13} -2023-12-15T14:56:25.065Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 13} -2023-12-15T14:56:25.065Z debug tree/sync.go:298 syncing trees... -2023-12-15T14:56:25.065Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 13} -2023-12-15T14:56:25.065Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 13} -2023-12-15T14:56:25.065Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 13} -2023-12-15T14:56:25.065Z debug frostfs-node/morph.go:229 new block {"index": 2651} -2023-12-15T14:56:25.066Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T14:56:25.066Z debug controller/calls.go:95 starting to report local trust values {"epoch": 12} -2023-12-15T14:56:25.066Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 12} -2023-12-15T14:56:25.068Z debug controller/calls.go:146 reporting successfully finished {"epoch": 12} -2023-12-15T14:56:25.068Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 12} -2023-12-15T14:56:25.068Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T14:56:25.070Z INFO runtime log {"tx": "6406f02162b568d5f7efaba4f8f454948736f55d8c9c8a55ddebb3a492e11201", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:56:25.072Z info client/notary.go:214 notary deposit invoke {"amount": 3268037399, "expire_at": 4294967295, "vub": 2654, "tx_hash": "b06551f41967da902e94414d3f3653f0397abb3e49067ded2d202cbcd7bed623"} -2023-12-15T14:56:25.078Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T14:56:25.078Z info audit/handlers.go:13 new round of audit {"epoch": 13} -2023-12-15T14:56:25.078Z info settlement/calls.go:26 new audit settlement event {"epoch": 13} -2023-12-15T14:56:25.078Z info settlement/handlers.go:14 process audit settlements {"epoch": 13} -2023-12-15T14:56:25.078Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 13} -2023-12-15T14:56:25.079Z info settlement/handlers.go:18 audit processing finished {"epoch": 13} -2023-12-15T14:56:25.081Z info audit/process.go:39 select containers for audit {"epoch": 13, "amount": 0} -2023-12-15T14:56:25.085Z info client/notary.go:214 notary deposit invoke {"amount": 216977474445, "expire_at": 4294967295, "vub": 2654, "tx_hash": "d2ad57beafa65cf467c8abb2c70fa98a7d5737675be2cb74ac013b19011b2148"} -2023-12-15T14:56:25.541Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 2651, "blockHeight": 2651, "took": "4.906853ms"} -2023-12-15T14:56:26.063Z INFO sending PrepareRequest {"height": 2652, "view": 0} -2023-12-15T14:56:26.063Z INFO sending Commit {"height": 2652, "view": 0} -2023-12-15T14:56:26.064Z INFO approving block {"height": 2652, "hash": "4ea76b5b89387190319808384edda83ca77de820d77c25848782bee53f6e4035", "tx_count": 3, "merkle": "53aa0e57794900d85ce2b71a5b2c55304cc1d2dac905554b9b6bd2a5fe544ced", "prev": "b61121aa109257b9216751332d80d4067b6fb2c013f153145098685fa12ed7ff"} -2023-12-15T14:56:26.064Z INFO runtime log {"tx": "62cc35addfe0026d8d5d26ed96eebd1191a4ae9b65a7741cce72a404ff121405", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:56:26.065Z INFO initializing dbft {"height": 2653, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:26.066Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 12} -2023-12-15T14:56:26.066Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 12} -2023-12-15T14:56:26.066Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 12} -2023-12-15T14:56:26.066Z debug frostfs-node/morph.go:229 new block {"index": 2652} -2023-12-15T14:56:26.544Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 2652, "blockHeight": 2652, "took": "6.364331ms"} -2023-12-15T14:56:27.064Z INFO sending PrepareRequest {"height": 2653, "view": 0} -2023-12-15T14:56:27.065Z INFO sending Commit {"height": 2653, "view": 0} -2023-12-15T14:56:27.065Z INFO approving block {"height": 2653, "hash": "8258885a50f3c6839f933a9d598c0dc1517f81a76d6b5de68beb91d3e5707cdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ea76b5b89387190319808384edda83ca77de820d77c25848782bee53f6e4035"} -2023-12-15T14:56:27.066Z INFO initializing dbft {"height": 2654, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:27.066Z debug frostfs-node/morph.go:229 new block {"index": 2653} -2023-12-15T14:56:27.541Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2653, "blockHeight": 2653, "took": "3.277995ms"} -2023-12-15T14:56:28.066Z INFO sending PrepareRequest {"height": 2654, "view": 0} -2023-12-15T14:56:28.066Z INFO sending Commit {"height": 2654, "view": 0} -2023-12-15T14:56:28.066Z INFO approving block {"height": 2654, "hash": "5f6175c8467a009397c2c2c06aadfca39fd80447ce406abbdc292ee50b9f3f4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8258885a50f3c6839f933a9d598c0dc1517f81a76d6b5de68beb91d3e5707cdf"} -2023-12-15T14:56:28.067Z INFO initializing dbft {"height": 2655, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:28.067Z debug frostfs-node/morph.go:229 new block {"index": 2654} -2023-12-15T14:56:28.544Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2654, "blockHeight": 2654, "took": "5.975144ms"} -2023-12-15T14:56:29.067Z INFO sending PrepareRequest {"height": 2655, "view": 0} -2023-12-15T14:56:29.067Z INFO sending Commit {"height": 2655, "view": 0} -2023-12-15T14:56:29.067Z INFO approving block {"height": 2655, "hash": "e6a4b10eb3ab2e1363eeeaa1b5265cd9234b133f327663e29fbf42a9ab8c6d29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f6175c8467a009397c2c2c06aadfca39fd80447ce406abbdc292ee50b9f3f4a"} -2023-12-15T14:56:29.068Z INFO initializing dbft {"height": 2656, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:29.069Z debug frostfs-node/morph.go:229 new block {"index": 2655} -2023-12-15T14:56:29.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2655, "blockHeight": 2655, "took": "6.978864ms"} -2023-12-15T14:56:30.068Z INFO sending PrepareRequest {"height": 2656, "view": 0} -2023-12-15T14:56:30.069Z INFO sending Commit {"height": 2656, "view": 0} -2023-12-15T14:56:30.069Z INFO approving block {"height": 2656, "hash": "f8d120bc67f8c78edc71954c23737cc29653a84efb781f862198a6a6fd80f126", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6a4b10eb3ab2e1363eeeaa1b5265cd9234b133f327663e29fbf42a9ab8c6d29"} -2023-12-15T14:56:30.071Z INFO initializing dbft {"height": 2657, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:30.071Z debug frostfs-node/morph.go:229 new block {"index": 2656} -2023-12-15T14:56:30.543Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2656, "blockHeight": 2656, "took": "2.858863ms"} -2023-12-15T14:56:31.071Z INFO sending PrepareRequest {"height": 2657, "view": 0} -2023-12-15T14:56:31.071Z INFO sending Commit {"height": 2657, "view": 0} -2023-12-15T14:56:31.071Z INFO approving block {"height": 2657, "hash": "2ca42282c83a85cff9aab744486674b180e5fe453fdf886dd4b0dcb69f413453", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8d120bc67f8c78edc71954c23737cc29653a84efb781f862198a6a6fd80f126"} -2023-12-15T14:56:31.073Z INFO initializing dbft {"height": 2658, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:31.073Z debug frostfs-node/morph.go:229 new block {"index": 2657} -2023-12-15T14:56:31.545Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2657, "blockHeight": 2657, "took": "4.218525ms"} -2023-12-15T14:56:32.072Z INFO sending PrepareRequest {"height": 2658, "view": 0} -2023-12-15T14:56:32.072Z INFO sending Commit {"height": 2658, "view": 0} -2023-12-15T14:56:32.072Z INFO approving block {"height": 2658, "hash": "df80ec435d46cbb94f5202df91cdb8cee51a1f530fce2cd2870eb9c96b6b1837", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ca42282c83a85cff9aab744486674b180e5fe453fdf886dd4b0dcb69f413453"} -2023-12-15T14:56:32.073Z INFO initializing dbft {"height": 2659, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:32.073Z debug frostfs-node/morph.go:229 new block {"index": 2658} -2023-12-15T14:56:32.544Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2658, "blockHeight": 2658, "took": "3.159039ms"} -2023-12-15T14:56:33.073Z INFO sending PrepareRequest {"height": 2659, "view": 0} -2023-12-15T14:56:33.074Z INFO sending Commit {"height": 2659, "view": 0} -2023-12-15T14:56:33.074Z INFO approving block {"height": 2659, "hash": "524aaa9a822a461cb45de54842ab7df16430d8e7d44d85da91cae12177ea0d28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df80ec435d46cbb94f5202df91cdb8cee51a1f530fce2cd2870eb9c96b6b1837"} -2023-12-15T14:56:33.076Z INFO initializing dbft {"height": 2660, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:33.077Z debug frostfs-node/morph.go:229 new block {"index": 2659} -2023-12-15T14:56:33.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2659, "blockHeight": 2659, "took": "4.284635ms"} -2023-12-15T14:56:34.075Z INFO sending PrepareRequest {"height": 2660, "view": 0} -2023-12-15T14:56:34.075Z INFO sending Commit {"height": 2660, "view": 0} -2023-12-15T14:56:34.075Z INFO approving block {"height": 2660, "hash": "76c1312e41170e06129b48bbd2afdd911435f8d1b4ec001e6a42ef1a7ca9e751", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "524aaa9a822a461cb45de54842ab7df16430d8e7d44d85da91cae12177ea0d28"} -2023-12-15T14:56:34.076Z INFO initializing dbft {"height": 2661, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:34.077Z debug frostfs-node/morph.go:229 new block {"index": 2660} -2023-12-15T14:56:34.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2660, "blockHeight": 2660, "took": "3.389135ms"} -2023-12-15T14:56:35.076Z INFO sending PrepareRequest {"height": 2661, "view": 0} -2023-12-15T14:56:35.077Z INFO sending Commit {"height": 2661, "view": 0} -2023-12-15T14:56:35.077Z INFO approving block {"height": 2661, "hash": "55ede19fd10a703e857ef852081ffc3f02c36c0e52e579ff608e0c0c7493d3f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76c1312e41170e06129b48bbd2afdd911435f8d1b4ec001e6a42ef1a7ca9e751"} -2023-12-15T14:56:35.078Z INFO initializing dbft {"height": 2662, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:35.078Z debug frostfs-node/morph.go:229 new block {"index": 2661} -2023-12-15T14:56:35.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2661, "blockHeight": 2661, "took": "3.07861ms"} -2023-12-15T14:56:36.078Z INFO sending PrepareRequest {"height": 2662, "view": 0} -2023-12-15T14:56:36.078Z INFO sending Commit {"height": 2662, "view": 0} -2023-12-15T14:56:36.078Z INFO approving block {"height": 2662, "hash": "f6e7ddac764a3ff96aee5164caeae2678d8a5307d2163caffc5df7a776cc4569", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55ede19fd10a703e857ef852081ffc3f02c36c0e52e579ff608e0c0c7493d3f1"} -2023-12-15T14:56:36.079Z INFO initializing dbft {"height": 2663, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:36.079Z debug frostfs-node/morph.go:229 new block {"index": 2662} -2023-12-15T14:56:36.547Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2662, "blockHeight": 2662, "took": "3.476035ms"} -2023-12-15T14:56:37.079Z INFO sending PrepareRequest {"height": 2663, "view": 0} -2023-12-15T14:56:37.079Z INFO sending Commit {"height": 2663, "view": 0} -2023-12-15T14:56:37.080Z INFO approving block {"height": 2663, "hash": "f2d35c642988acc735a341e43b62768e2649c65236754c21b5b1ed99b4f0fc0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6e7ddac764a3ff96aee5164caeae2678d8a5307d2163caffc5df7a776cc4569"} -2023-12-15T14:56:37.081Z INFO initializing dbft {"height": 2664, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:37.081Z debug frostfs-node/morph.go:229 new block {"index": 2663} -2023-12-15T14:56:37.547Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2663, "blockHeight": 2663, "took": "3.455011ms"} -2023-12-15T14:56:38.081Z INFO sending PrepareRequest {"height": 2664, "view": 0} -2023-12-15T14:56:38.081Z INFO sending Commit {"height": 2664, "view": 0} -2023-12-15T14:56:38.081Z INFO approving block {"height": 2664, "hash": "29a72fd4b50fa9fd3da254b3d7c85c51c76ca63153ca856cd39417840e558a5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2d35c642988acc735a341e43b62768e2649c65236754c21b5b1ed99b4f0fc0d"} -2023-12-15T14:56:38.082Z INFO initializing dbft {"height": 2665, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:38.082Z debug frostfs-node/morph.go:229 new block {"index": 2664} -2023-12-15T14:56:38.547Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2664, "blockHeight": 2664, "took": "2.97871ms"} -2023-12-15T14:56:39.082Z INFO sending PrepareRequest {"height": 2665, "view": 0} -2023-12-15T14:56:39.082Z INFO sending Commit {"height": 2665, "view": 0} -2023-12-15T14:56:39.083Z INFO approving block {"height": 2665, "hash": "19cef574f717ed4ce46938277d0d40280c9e2da6c30609d3ca204137ea506afe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29a72fd4b50fa9fd3da254b3d7c85c51c76ca63153ca856cd39417840e558a5c"} -2023-12-15T14:56:39.084Z INFO initializing dbft {"height": 2666, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:39.084Z debug frostfs-node/morph.go:229 new block {"index": 2665} -2023-12-15T14:56:39.548Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2665, "blockHeight": 2665, "took": "3.032059ms"} -2023-12-15T14:56:40.084Z INFO sending PrepareRequest {"height": 2666, "view": 0} -2023-12-15T14:56:40.084Z INFO sending Commit {"height": 2666, "view": 0} -2023-12-15T14:56:40.085Z INFO approving block {"height": 2666, "hash": "1e7197c864c154e6e19503a8da776a08a1fda546d9f4517e1cf813f41343c2d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19cef574f717ed4ce46938277d0d40280c9e2da6c30609d3ca204137ea506afe"} -2023-12-15T14:56:40.086Z INFO initializing dbft {"height": 2667, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:40.086Z debug frostfs-node/morph.go:229 new block {"index": 2666} -2023-12-15T14:56:40.548Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2666, "blockHeight": 2666, "took": "2.837553ms"} -2023-12-15T14:56:41.086Z INFO sending PrepareRequest {"height": 2667, "view": 0} -2023-12-15T14:56:41.086Z INFO sending Commit {"height": 2667, "view": 0} -2023-12-15T14:56:41.086Z INFO approving block {"height": 2667, "hash": "65a0c406bb730512f600656ce369f5f38119297307b4b24cb3bc5c318dee14f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e7197c864c154e6e19503a8da776a08a1fda546d9f4517e1cf813f41343c2d4"} -2023-12-15T14:56:41.087Z INFO initializing dbft {"height": 2668, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:41.087Z debug frostfs-node/morph.go:229 new block {"index": 2667} -2023-12-15T14:56:41.089Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:56:41.091Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:56:41.092Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:56:41.549Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2667, "blockHeight": 2667, "took": "3.560335ms"} -2023-12-15T14:56:42.087Z INFO sending PrepareRequest {"height": 2668, "view": 0} -2023-12-15T14:56:42.087Z INFO sending Commit {"height": 2668, "view": 0} -2023-12-15T14:56:42.087Z INFO approving block {"height": 2668, "hash": "9fdc8c7f7e8231af02c8036e4df7cc7c42c520d7f72d9d3cac60535faf6afe25", "tx_count": 2, "merkle": "73b5342b837f8ed1620df0bc3a0c4a9e03153d3fc055465913ec5982079997fe", "prev": "65a0c406bb730512f600656ce369f5f38119297307b4b24cb3bc5c318dee14f7"} -2023-12-15T14:56:42.088Z INFO runtime log {"tx": "c8912debf68962d694f33d8242fdaa8982679e86b4e2ad92f92bad61b12548dc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:56:42.088Z INFO runtime log {"tx": "c8912debf68962d694f33d8242fdaa8982679e86b4e2ad92f92bad61b12548dc", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:56:42.089Z INFO initializing dbft {"height": 2669, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:42.090Z debug frostfs-node/morph.go:229 new block {"index": 2668} -2023-12-15T14:56:42.550Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 2668, "blockHeight": 2668, "took": "4.364807ms"} -2023-12-15T14:56:43.089Z INFO sending PrepareRequest {"height": 2669, "view": 0} -2023-12-15T14:56:43.089Z INFO sending Commit {"height": 2669, "view": 0} -2023-12-15T14:56:43.089Z INFO approving block {"height": 2669, "hash": "4f89462eb113abbfde9664e0215939702c1c7f8d7c515bdc019ffd9448a7ed45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fdc8c7f7e8231af02c8036e4df7cc7c42c520d7f72d9d3cac60535faf6afe25"} -2023-12-15T14:56:43.090Z INFO initializing dbft {"height": 2670, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:43.090Z debug frostfs-node/morph.go:229 new block {"index": 2669} -2023-12-15T14:56:43.551Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2669, "blockHeight": 2669, "took": "4.598342ms"} -2023-12-15T14:56:44.090Z INFO sending PrepareRequest {"height": 2670, "view": 0} -2023-12-15T14:56:44.090Z INFO sending Commit {"height": 2670, "view": 0} -2023-12-15T14:56:44.091Z INFO approving block {"height": 2670, "hash": "730027b0422257417ce226d7a6ebcc9809c2a12b7d0580a484041e7f32ba25eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f89462eb113abbfde9664e0215939702c1c7f8d7c515bdc019ffd9448a7ed45"} -2023-12-15T14:56:44.092Z INFO initializing dbft {"height": 2671, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:44.092Z debug frostfs-node/morph.go:229 new block {"index": 2670} -2023-12-15T14:56:44.549Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2670, "blockHeight": 2670, "took": "2.719118ms"} -2023-12-15T14:56:45.092Z INFO sending PrepareRequest {"height": 2671, "view": 0} -2023-12-15T14:56:45.092Z INFO sending Commit {"height": 2671, "view": 0} -2023-12-15T14:56:45.092Z INFO approving block {"height": 2671, "hash": "3a7113315c8686b8918808581a08f6a4f8dddde19574acc502a28d480e01fef0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "730027b0422257417ce226d7a6ebcc9809c2a12b7d0580a484041e7f32ba25eb"} -2023-12-15T14:56:45.093Z INFO initializing dbft {"height": 2672, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:45.093Z debug frostfs-node/morph.go:229 new block {"index": 2671} -2023-12-15T14:56:45.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2671, "blockHeight": 2671, "took": "5.805307ms"} -2023-12-15T14:56:46.093Z INFO sending PrepareRequest {"height": 2672, "view": 0} -2023-12-15T14:56:46.093Z INFO sending Commit {"height": 2672, "view": 0} -2023-12-15T14:56:46.093Z INFO approving block {"height": 2672, "hash": "6057efa8ed1dadfbb6c6358131c7cb1d3e0f14805d87177bb6e8948a15b4c18a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a7113315c8686b8918808581a08f6a4f8dddde19574acc502a28d480e01fef0"} -2023-12-15T14:56:46.094Z INFO initializing dbft {"height": 2673, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:46.095Z debug frostfs-node/morph.go:229 new block {"index": 2672} -2023-12-15T14:56:46.550Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2672, "blockHeight": 2672, "took": "3.033208ms"} -2023-12-15T14:56:47.094Z INFO sending PrepareRequest {"height": 2673, "view": 0} -2023-12-15T14:56:47.095Z INFO sending Commit {"height": 2673, "view": 0} -2023-12-15T14:56:47.095Z INFO approving block {"height": 2673, "hash": "a9c89cc59ac486d36038c50006d38aae32f5341bb19a5b04c6fd0bba16c4734a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6057efa8ed1dadfbb6c6358131c7cb1d3e0f14805d87177bb6e8948a15b4c18a"} -2023-12-15T14:56:47.096Z INFO initializing dbft {"height": 2674, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:47.096Z debug frostfs-node/morph.go:229 new block {"index": 2673} -2023-12-15T14:56:47.552Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2673, "blockHeight": 2673, "took": "4.008999ms"} -2023-12-15T14:56:48.096Z INFO sending PrepareRequest {"height": 2674, "view": 0} -2023-12-15T14:56:48.096Z INFO sending Commit {"height": 2674, "view": 0} -2023-12-15T14:56:48.096Z INFO approving block {"height": 2674, "hash": "b3504719e082bc01d1af5a1ab219453790f5703c00ffb2ad2fcb9462d8432943", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9c89cc59ac486d36038c50006d38aae32f5341bb19a5b04c6fd0bba16c4734a"} -2023-12-15T14:56:48.097Z INFO initializing dbft {"height": 2675, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:48.098Z debug frostfs-node/morph.go:229 new block {"index": 2674} -2023-12-15T14:56:48.552Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2674, "blockHeight": 2674, "took": "4.144243ms"} -2023-12-15T14:56:49.097Z INFO sending PrepareRequest {"height": 2675, "view": 0} -2023-12-15T14:56:49.098Z INFO sending Commit {"height": 2675, "view": 0} -2023-12-15T14:56:49.098Z INFO approving block {"height": 2675, "hash": "56734e89d4a960d82598d31aa6012f194e9698a768925a2067d59efa4937183c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3504719e082bc01d1af5a1ab219453790f5703c00ffb2ad2fcb9462d8432943"} -2023-12-15T14:56:49.099Z INFO initializing dbft {"height": 2676, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:49.099Z debug frostfs-node/morph.go:229 new block {"index": 2675} -2023-12-15T14:56:49.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2675, "blockHeight": 2675, "took": "4.013785ms"} -2023-12-15T14:56:50.098Z INFO sending PrepareRequest {"height": 2676, "view": 0} -2023-12-15T14:56:50.099Z INFO sending Commit {"height": 2676, "view": 0} -2023-12-15T14:56:50.099Z INFO approving block {"height": 2676, "hash": "8751531ddc2213c509e7738821ffbb5acc7e47041c38bf1af159d259dfa52b50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56734e89d4a960d82598d31aa6012f194e9698a768925a2067d59efa4937183c"} -2023-12-15T14:56:50.100Z INFO initializing dbft {"height": 2677, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:50.100Z debug frostfs-node/morph.go:229 new block {"index": 2676} -2023-12-15T14:56:50.552Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2676, "blockHeight": 2676, "took": "2.872652ms"} -2023-12-15T14:56:51.100Z INFO sending PrepareRequest {"height": 2677, "view": 0} -2023-12-15T14:56:51.101Z INFO sending Commit {"height": 2677, "view": 0} -2023-12-15T14:56:51.101Z INFO approving block {"height": 2677, "hash": "822af047293bfb282f4450eb2bba0176dfef578c766120f89a87d36c7b289832", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8751531ddc2213c509e7738821ffbb5acc7e47041c38bf1af159d259dfa52b50"} -2023-12-15T14:56:51.102Z INFO initializing dbft {"height": 2678, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:51.103Z debug frostfs-node/morph.go:229 new block {"index": 2677} -2023-12-15T14:56:51.552Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2677, "blockHeight": 2677, "took": "2.947476ms"} -2023-12-15T14:56:52.102Z INFO sending PrepareRequest {"height": 2678, "view": 0} -2023-12-15T14:56:52.102Z INFO sending Commit {"height": 2678, "view": 0} -2023-12-15T14:56:52.102Z INFO approving block {"height": 2678, "hash": "ead0911ca3b078749b74d4b45483eb8d4c56cef518a2431392a533b987b149e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "822af047293bfb282f4450eb2bba0176dfef578c766120f89a87d36c7b289832"} -2023-12-15T14:56:52.103Z INFO initializing dbft {"height": 2679, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:52.103Z debug frostfs-node/morph.go:229 new block {"index": 2678} -2023-12-15T14:56:52.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2678, "blockHeight": 2678, "took": "2.942227ms"} -2023-12-15T14:56:53.103Z INFO sending PrepareRequest {"height": 2679, "view": 0} -2023-12-15T14:56:53.103Z INFO sending Commit {"height": 2679, "view": 0} -2023-12-15T14:56:53.103Z INFO approving block {"height": 2679, "hash": "af6368ecf4aa0b3b6d32ea57b60a1e9b8a542cb85327338d08829abf7580be09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ead0911ca3b078749b74d4b45483eb8d4c56cef518a2431392a533b987b149e5"} -2023-12-15T14:56:53.104Z INFO initializing dbft {"height": 2680, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:53.105Z debug frostfs-node/morph.go:229 new block {"index": 2679} -2023-12-15T14:56:53.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2679, "blockHeight": 2679, "took": "2.793302ms"} -2023-12-15T14:56:54.104Z INFO sending PrepareRequest {"height": 2680, "view": 0} -2023-12-15T14:56:54.104Z INFO sending Commit {"height": 2680, "view": 0} -2023-12-15T14:56:54.105Z INFO approving block {"height": 2680, "hash": "ca53db7f10d87ca36a04270de431a7005eac50cea5a57074bf979282e88ba9ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af6368ecf4aa0b3b6d32ea57b60a1e9b8a542cb85327338d08829abf7580be09"} -2023-12-15T14:56:54.106Z INFO initializing dbft {"height": 2681, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:54.106Z debug frostfs-node/morph.go:229 new block {"index": 2680} -2023-12-15T14:56:54.555Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2680, "blockHeight": 2680, "took": "4.492851ms"} -2023-12-15T14:56:55.106Z INFO sending PrepareRequest {"height": 2681, "view": 0} -2023-12-15T14:56:55.106Z INFO sending Commit {"height": 2681, "view": 0} -2023-12-15T14:56:55.106Z INFO approving block {"height": 2681, "hash": "a5c669c53c8b8752086dae06f4c34505a2f4f7351c55f9953699260ac55136a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca53db7f10d87ca36a04270de431a7005eac50cea5a57074bf979282e88ba9ff"} -2023-12-15T14:56:55.107Z INFO initializing dbft {"height": 2682, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:55.107Z debug frostfs-node/morph.go:229 new block {"index": 2681} -2023-12-15T14:56:55.555Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2681, "blockHeight": 2681, "took": "3.574066ms"} -2023-12-15T14:56:56.107Z INFO sending PrepareRequest {"height": 2682, "view": 0} -2023-12-15T14:56:56.107Z INFO sending Commit {"height": 2682, "view": 0} -2023-12-15T14:56:56.107Z INFO approving block {"height": 2682, "hash": "b4c4ffd16f9c8c177c00b1408284163f7571773896a3fc0cae9737bd1eeec6a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5c669c53c8b8752086dae06f4c34505a2f4f7351c55f9953699260ac55136a9"} -2023-12-15T14:56:56.108Z INFO initializing dbft {"height": 2683, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:56.108Z debug frostfs-node/morph.go:229 new block {"index": 2682} -2023-12-15T14:56:56.557Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2682, "blockHeight": 2682, "took": "4.40244ms"} -2023-12-15T14:56:57.108Z INFO sending PrepareRequest {"height": 2683, "view": 0} -2023-12-15T14:56:57.108Z INFO sending Commit {"height": 2683, "view": 0} -2023-12-15T14:56:57.108Z INFO approving block {"height": 2683, "hash": "b485810ed26bb0f5fa70722a55da659e1948bd3e717c414d83c46d1c2ffc6d4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4c4ffd16f9c8c177c00b1408284163f7571773896a3fc0cae9737bd1eeec6a5"} -2023-12-15T14:56:57.109Z INFO initializing dbft {"height": 2684, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:57.109Z debug frostfs-node/morph.go:229 new block {"index": 2683} -2023-12-15T14:56:57.556Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2683, "blockHeight": 2683, "took": "2.993978ms"} -2023-12-15T14:56:58.109Z INFO sending PrepareRequest {"height": 2684, "view": 0} -2023-12-15T14:56:58.109Z INFO sending Commit {"height": 2684, "view": 0} -2023-12-15T14:56:58.110Z INFO approving block {"height": 2684, "hash": "d225321bb657cf79f2b5fa99938fc45b049727c212522a03fbd2e8cab140304c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b485810ed26bb0f5fa70722a55da659e1948bd3e717c414d83c46d1c2ffc6d4f"} -2023-12-15T14:56:58.110Z INFO initializing dbft {"height": 2685, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:58.111Z debug frostfs-node/morph.go:229 new block {"index": 2684} -2023-12-15T14:56:58.559Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2684, "blockHeight": 2684, "took": "4.096661ms"} -2023-12-15T14:56:59.111Z INFO sending PrepareRequest {"height": 2685, "view": 0} -2023-12-15T14:56:59.111Z INFO sending Commit {"height": 2685, "view": 0} -2023-12-15T14:56:59.111Z INFO approving block {"height": 2685, "hash": "050e09a56b1708e84d16c523176194a541a51e83e9d83f054952a6654f41be46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d225321bb657cf79f2b5fa99938fc45b049727c212522a03fbd2e8cab140304c"} -2023-12-15T14:56:59.112Z INFO initializing dbft {"height": 2686, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:56:59.112Z debug frostfs-node/morph.go:229 new block {"index": 2685} -2023-12-15T14:56:59.558Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2685, "blockHeight": 2685, "took": "2.790682ms"} -2023-12-15T14:57:00.112Z INFO sending PrepareRequest {"height": 2686, "view": 0} -2023-12-15T14:57:00.113Z INFO sending Commit {"height": 2686, "view": 0} -2023-12-15T14:57:00.113Z INFO approving block {"height": 2686, "hash": "caa9a3ecab5fa7543502b2fbe623bb0405f7cae33b54bc6365a866e11e175ddf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "050e09a56b1708e84d16c523176194a541a51e83e9d83f054952a6654f41be46"} -2023-12-15T14:57:00.114Z INFO initializing dbft {"height": 2687, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:00.114Z debug frostfs-node/morph.go:229 new block {"index": 2686} -2023-12-15T14:57:00.558Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2686, "blockHeight": 2686, "took": "2.833333ms"} -2023-12-15T14:57:01.114Z INFO sending PrepareRequest {"height": 2687, "view": 0} -2023-12-15T14:57:01.114Z INFO sending Commit {"height": 2687, "view": 0} -2023-12-15T14:57:01.114Z INFO approving block {"height": 2687, "hash": "e500aefdb6c38a16daa5f7653bc71fa356e71162cf43b71098813c37870703b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "caa9a3ecab5fa7543502b2fbe623bb0405f7cae33b54bc6365a866e11e175ddf"} -2023-12-15T14:57:01.115Z INFO initializing dbft {"height": 2688, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:01.115Z debug frostfs-node/morph.go:229 new block {"index": 2687} -2023-12-15T14:57:01.559Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2687, "blockHeight": 2687, "took": "3.516043ms"} -2023-12-15T14:57:02.115Z INFO sending PrepareRequest {"height": 2688, "view": 0} -2023-12-15T14:57:02.115Z INFO sending Commit {"height": 2688, "view": 0} -2023-12-15T14:57:02.115Z INFO approving block {"height": 2688, "hash": "cd6aa823b81975f2982bd9daa1fbf3c7738d5a674f044835e4de6c3493707d21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e500aefdb6c38a16daa5f7653bc71fa356e71162cf43b71098813c37870703b1"} -2023-12-15T14:57:02.116Z INFO initializing dbft {"height": 2689, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:02.117Z debug frostfs-node/morph.go:229 new block {"index": 2688} -2023-12-15T14:57:02.559Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2688, "blockHeight": 2688, "took": "3.059499ms"} -2023-12-15T14:57:03.116Z INFO sending PrepareRequest {"height": 2689, "view": 0} -2023-12-15T14:57:03.116Z INFO sending Commit {"height": 2689, "view": 0} -2023-12-15T14:57:03.117Z INFO approving block {"height": 2689, "hash": "acb5590c1b4a01910db908e729e08a2a7df30837e65f27f17d4720c1078fecda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd6aa823b81975f2982bd9daa1fbf3c7738d5a674f044835e4de6c3493707d21"} -2023-12-15T14:57:03.117Z INFO initializing dbft {"height": 2690, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:03.118Z debug frostfs-node/morph.go:229 new block {"index": 2689} -2023-12-15T14:57:03.561Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2689, "blockHeight": 2689, "took": "4.059739ms"} -2023-12-15T14:57:04.118Z INFO sending PrepareRequest {"height": 2690, "view": 0} -2023-12-15T14:57:04.118Z INFO sending Commit {"height": 2690, "view": 0} -2023-12-15T14:57:04.118Z INFO approving block {"height": 2690, "hash": "1bd37802c9925e75dfbf2229b010ea51595c595f89a72698a7b94074e7db32f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acb5590c1b4a01910db908e729e08a2a7df30837e65f27f17d4720c1078fecda"} -2023-12-15T14:57:04.120Z INFO initializing dbft {"height": 2691, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:04.120Z debug frostfs-node/morph.go:229 new block {"index": 2690} -2023-12-15T14:57:04.561Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2690, "blockHeight": 2690, "took": "3.942836ms"} -2023-12-15T14:57:05.119Z INFO sending PrepareRequest {"height": 2691, "view": 0} -2023-12-15T14:57:05.119Z INFO sending Commit {"height": 2691, "view": 0} -2023-12-15T14:57:05.120Z INFO approving block {"height": 2691, "hash": "95a8f63f22fb9e3ce4dd373a0c748c3b24bab44272cec6712f8ed6f165c48b24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bd37802c9925e75dfbf2229b010ea51595c595f89a72698a7b94074e7db32f6"} -2023-12-15T14:57:05.121Z INFO initializing dbft {"height": 2692, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:05.122Z debug frostfs-node/morph.go:229 new block {"index": 2691} -2023-12-15T14:57:05.564Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2691, "blockHeight": 2691, "took": "6.021879ms"} -2023-12-15T14:57:06.121Z INFO sending PrepareRequest {"height": 2692, "view": 0} -2023-12-15T14:57:06.121Z INFO sending Commit {"height": 2692, "view": 0} -2023-12-15T14:57:06.121Z INFO approving block {"height": 2692, "hash": "24d5e1163b0de1eeaa5210a73ac7a71bb49441bb696d973a096d45df44fc520c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95a8f63f22fb9e3ce4dd373a0c748c3b24bab44272cec6712f8ed6f165c48b24"} -2023-12-15T14:57:06.123Z INFO initializing dbft {"height": 2693, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:06.123Z debug frostfs-node/morph.go:229 new block {"index": 2692} -2023-12-15T14:57:06.561Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2692, "blockHeight": 2692, "took": "2.992878ms"} -2023-12-15T14:57:07.122Z INFO sending PrepareRequest {"height": 2693, "view": 0} -2023-12-15T14:57:07.123Z INFO sending Commit {"height": 2693, "view": 0} -2023-12-15T14:57:07.123Z INFO approving block {"height": 2693, "hash": "c0725ec1732f5f0386e3f12a884ad47094a610c431ca66e707702e5fbaa77890", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24d5e1163b0de1eeaa5210a73ac7a71bb49441bb696d973a096d45df44fc520c"} -2023-12-15T14:57:07.125Z INFO initializing dbft {"height": 2694, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:07.125Z debug frostfs-node/morph.go:229 new block {"index": 2693} -2023-12-15T14:57:07.564Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2693, "blockHeight": 2693, "took": "5.194596ms"} -2023-12-15T14:57:08.123Z INFO sending PrepareRequest {"height": 2694, "view": 0} -2023-12-15T14:57:08.124Z INFO sending Commit {"height": 2694, "view": 0} -2023-12-15T14:57:08.124Z INFO approving block {"height": 2694, "hash": "616f7e73db33abfeb62ef634d9550223450bd46e6aec5ae1fff3ac5602ae0f9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0725ec1732f5f0386e3f12a884ad47094a610c431ca66e707702e5fbaa77890"} -2023-12-15T14:57:08.125Z INFO initializing dbft {"height": 2695, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:08.125Z debug frostfs-node/morph.go:229 new block {"index": 2694} -2023-12-15T14:57:08.563Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2694, "blockHeight": 2694, "took": "4.540933ms"} -2023-12-15T14:57:09.125Z INFO sending PrepareRequest {"height": 2695, "view": 0} -2023-12-15T14:57:09.125Z INFO sending Commit {"height": 2695, "view": 0} -2023-12-15T14:57:09.125Z INFO approving block {"height": 2695, "hash": "855b082d1cec5c533022d55bbe40edcf13824c5deb1ff0ae956d132b9cfd04ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "616f7e73db33abfeb62ef634d9550223450bd46e6aec5ae1fff3ac5602ae0f9c"} -2023-12-15T14:57:09.126Z INFO initializing dbft {"height": 2696, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:09.127Z debug frostfs-node/morph.go:229 new block {"index": 2695} -2023-12-15T14:57:09.564Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2695, "blockHeight": 2695, "took": "4.243053ms"} -2023-12-15T14:57:10.126Z INFO sending PrepareRequest {"height": 2696, "view": 0} -2023-12-15T14:57:10.126Z INFO sending Commit {"height": 2696, "view": 0} -2023-12-15T14:57:10.127Z INFO approving block {"height": 2696, "hash": "3e9b9d8a2c30b4b9155d69de59a71c3324ae326aa02ef8a08b1f4095dfb5c48e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "855b082d1cec5c533022d55bbe40edcf13824c5deb1ff0ae956d132b9cfd04ca"} -2023-12-15T14:57:10.128Z INFO initializing dbft {"height": 2697, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:10.128Z debug frostfs-node/morph.go:229 new block {"index": 2696} -2023-12-15T14:57:10.563Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2696, "blockHeight": 2696, "took": "2.965197ms"} -2023-12-15T14:57:11.128Z INFO sending PrepareRequest {"height": 2697, "view": 0} -2023-12-15T14:57:11.128Z INFO sending Commit {"height": 2697, "view": 0} -2023-12-15T14:57:11.128Z INFO approving block {"height": 2697, "hash": "e2dd39bc8ec00ea9ab0bb6f9d30f0500a679d2da4e1996f691bcf2990ef88738", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e9b9d8a2c30b4b9155d69de59a71c3324ae326aa02ef8a08b1f4095dfb5c48e"} -2023-12-15T14:57:11.129Z INFO initializing dbft {"height": 2698, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:11.130Z debug frostfs-node/morph.go:229 new block {"index": 2697} -2023-12-15T14:57:11.565Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2697, "blockHeight": 2697, "took": "3.840499ms"} -2023-12-15T14:57:12.130Z INFO sending PrepareRequest {"height": 2698, "view": 0} -2023-12-15T14:57:12.130Z INFO sending Commit {"height": 2698, "view": 0} -2023-12-15T14:57:12.130Z INFO approving block {"height": 2698, "hash": "f520aee818c50f761e140208c943cdecdddb8e2dd6347def008aec7d97113da8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2dd39bc8ec00ea9ab0bb6f9d30f0500a679d2da4e1996f691bcf2990ef88738"} -2023-12-15T14:57:12.131Z INFO initializing dbft {"height": 2699, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:12.132Z debug frostfs-node/morph.go:229 new block {"index": 2698} -2023-12-15T14:57:12.566Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2698, "blockHeight": 2698, "took": "3.861924ms"} -2023-12-15T14:57:13.131Z INFO sending PrepareRequest {"height": 2699, "view": 0} -2023-12-15T14:57:13.131Z INFO sending Commit {"height": 2699, "view": 0} -2023-12-15T14:57:13.131Z INFO approving block {"height": 2699, "hash": "9faa551a105d7af41db63e26fad3d4626dd23b2ba503d1f22dc31229d537c136", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f520aee818c50f761e140208c943cdecdddb8e2dd6347def008aec7d97113da8"} -2023-12-15T14:57:13.132Z INFO initializing dbft {"height": 2700, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:13.132Z debug frostfs-node/morph.go:229 new block {"index": 2699} -2023-12-15T14:57:13.567Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2699, "blockHeight": 2699, "took": "4.307283ms"} -2023-12-15T14:57:14.133Z INFO sending PrepareRequest {"height": 2700, "view": 0} -2023-12-15T14:57:14.133Z INFO sending Commit {"height": 2700, "view": 0} -2023-12-15T14:57:14.133Z INFO approving block {"height": 2700, "hash": "b46d9a4e8439418f179d0cd046f875cf9123dc37d00ccdeacedadec3cf6cc4cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9faa551a105d7af41db63e26fad3d4626dd23b2ba503d1f22dc31229d537c136"} -2023-12-15T14:57:14.134Z INFO initializing dbft {"height": 2701, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:14.134Z debug frostfs-node/morph.go:229 new block {"index": 2700} -2023-12-15T14:57:14.566Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2700, "blockHeight": 2700, "took": "3.214865ms"} -2023-12-15T14:57:15.134Z INFO sending PrepareRequest {"height": 2701, "view": 0} -2023-12-15T14:57:15.134Z INFO sending Commit {"height": 2701, "view": 0} -2023-12-15T14:57:15.134Z INFO approving block {"height": 2701, "hash": "8b415eee51b87422298e0a07a92d3c99e00573d0ab43e40ae34628947bedc922", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b46d9a4e8439418f179d0cd046f875cf9123dc37d00ccdeacedadec3cf6cc4cb"} -2023-12-15T14:57:15.135Z INFO initializing dbft {"height": 2702, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:15.135Z debug frostfs-node/morph.go:229 new block {"index": 2701} -2023-12-15T14:57:15.566Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2701, "blockHeight": 2701, "took": "2.819045ms"} -2023-12-15T14:57:16.135Z INFO sending PrepareRequest {"height": 2702, "view": 0} -2023-12-15T14:57:16.135Z INFO sending Commit {"height": 2702, "view": 0} -2023-12-15T14:57:16.136Z INFO approving block {"height": 2702, "hash": "fb0dfa1c7ae262a37494c77d0f5276208c9bb6a473950d7a683e0eb82058bd40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b415eee51b87422298e0a07a92d3c99e00573d0ab43e40ae34628947bedc922"} -2023-12-15T14:57:16.136Z INFO initializing dbft {"height": 2703, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:16.137Z debug frostfs-node/morph.go:229 new block {"index": 2702} -2023-12-15T14:57:16.567Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2702, "blockHeight": 2702, "took": "3.136448ms"} -2023-12-15T14:57:17.137Z INFO sending PrepareRequest {"height": 2703, "view": 0} -2023-12-15T14:57:17.137Z INFO sending Commit {"height": 2703, "view": 0} -2023-12-15T14:57:17.137Z INFO approving block {"height": 2703, "hash": "f236a287ae5967d1ac9cc12a2faf5090c0ca01054ff2ae7475098b6c60e0a902", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb0dfa1c7ae262a37494c77d0f5276208c9bb6a473950d7a683e0eb82058bd40"} -2023-12-15T14:57:17.138Z INFO initializing dbft {"height": 2704, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:17.138Z debug frostfs-node/morph.go:229 new block {"index": 2703} -2023-12-15T14:57:17.567Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2703, "blockHeight": 2703, "took": "2.958817ms"} -2023-12-15T14:57:18.138Z INFO sending PrepareRequest {"height": 2704, "view": 0} -2023-12-15T14:57:18.138Z INFO sending Commit {"height": 2704, "view": 0} -2023-12-15T14:57:18.138Z INFO approving block {"height": 2704, "hash": "3f0164af0545fe1e154738fc6ab5826fd8ddc8c47ca9f818ee16b180908f2919", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f236a287ae5967d1ac9cc12a2faf5090c0ca01054ff2ae7475098b6c60e0a902"} -2023-12-15T14:57:18.139Z INFO initializing dbft {"height": 2705, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:18.139Z debug frostfs-node/morph.go:229 new block {"index": 2704} -2023-12-15T14:57:18.568Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2704, "blockHeight": 2704, "took": "3.791731ms"} -2023-12-15T14:57:19.139Z INFO sending PrepareRequest {"height": 2705, "view": 0} -2023-12-15T14:57:19.139Z INFO sending Commit {"height": 2705, "view": 0} -2023-12-15T14:57:19.140Z INFO approving block {"height": 2705, "hash": "dcafba430f88d749da62c332984a1b568fdd41eff8a6f82ff9571876226ce69b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f0164af0545fe1e154738fc6ab5826fd8ddc8c47ca9f818ee16b180908f2919"} -2023-12-15T14:57:19.141Z INFO initializing dbft {"height": 2706, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:19.141Z debug frostfs-node/morph.go:229 new block {"index": 2705} -2023-12-15T14:57:19.570Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2705, "blockHeight": 2705, "took": "4.308352ms"} -2023-12-15T14:57:20.140Z INFO sending PrepareRequest {"height": 2706, "view": 0} -2023-12-15T14:57:20.141Z INFO sending Commit {"height": 2706, "view": 0} -2023-12-15T14:57:20.141Z INFO approving block {"height": 2706, "hash": "93b8c0143693279b9c46222a8843a65e63ea8739aa5171d2f79df24815ac3d84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcafba430f88d749da62c332984a1b568fdd41eff8a6f82ff9571876226ce69b"} -2023-12-15T14:57:20.142Z INFO initializing dbft {"height": 2707, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:20.142Z debug frostfs-node/morph.go:229 new block {"index": 2706} -2023-12-15T14:57:20.572Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2706, "blockHeight": 2706, "took": "6.4758ms"} -2023-12-15T14:57:21.142Z INFO sending PrepareRequest {"height": 2707, "view": 0} -2023-12-15T14:57:21.142Z INFO sending Commit {"height": 2707, "view": 0} -2023-12-15T14:57:21.142Z INFO approving block {"height": 2707, "hash": "31bcf347caf6b83133805fa78f10afd7fdca148637a83fb4952cb109db4dfa62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93b8c0143693279b9c46222a8843a65e63ea8739aa5171d2f79df24815ac3d84"} -2023-12-15T14:57:21.143Z INFO initializing dbft {"height": 2708, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:21.143Z debug frostfs-node/morph.go:229 new block {"index": 2707} -2023-12-15T14:57:21.569Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2707, "blockHeight": 2707, "took": "2.863203ms"} -2023-12-15T14:57:22.143Z INFO sending PrepareRequest {"height": 2708, "view": 0} -2023-12-15T14:57:22.143Z INFO sending Commit {"height": 2708, "view": 0} -2023-12-15T14:57:22.143Z INFO approving block {"height": 2708, "hash": "d7a597c26bcfe5b8a8e2d59245e92609987d5f85d415bfe5fb834e67d786f7ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31bcf347caf6b83133805fa78f10afd7fdca148637a83fb4952cb109db4dfa62"} -2023-12-15T14:57:22.144Z INFO initializing dbft {"height": 2709, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:22.145Z debug frostfs-node/morph.go:229 new block {"index": 2708} -2023-12-15T14:57:22.571Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2708, "blockHeight": 2708, "took": "4.236112ms"} -2023-12-15T14:57:23.145Z INFO sending PrepareRequest {"height": 2709, "view": 0} -2023-12-15T14:57:23.145Z INFO sending Commit {"height": 2709, "view": 0} -2023-12-15T14:57:23.146Z INFO approving block {"height": 2709, "hash": "aa6a1a1a2fd3ff3022a90bcbd1c52f176d72e33b6e8bb1b320931ed83ecd46e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7a597c26bcfe5b8a8e2d59245e92609987d5f85d415bfe5fb834e67d786f7ea"} -2023-12-15T14:57:23.147Z INFO initializing dbft {"height": 2710, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:23.148Z debug frostfs-node/morph.go:229 new block {"index": 2709} -2023-12-15T14:57:23.571Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2709, "blockHeight": 2709, "took": "3.949665ms"} -2023-12-15T14:57:24.147Z INFO sending PrepareRequest {"height": 2710, "view": 0} -2023-12-15T14:57:24.148Z INFO sending Commit {"height": 2710, "view": 0} -2023-12-15T14:57:24.148Z INFO approving block {"height": 2710, "hash": "6b1f2840c2e6952bfb9678aae5a24da54feac4436ebfc9bd94b27249f095285e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa6a1a1a2fd3ff3022a90bcbd1c52f176d72e33b6e8bb1b320931ed83ecd46e0"} -2023-12-15T14:57:24.151Z INFO initializing dbft {"height": 2711, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:24.152Z debug frostfs-node/morph.go:229 new block {"index": 2710} -2023-12-15T14:57:24.572Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2710, "blockHeight": 2710, "took": "4.296386ms"} -2023-12-15T14:57:25.149Z INFO sending PrepareRequest {"height": 2711, "view": 0} -2023-12-15T14:57:25.149Z INFO sending Commit {"height": 2711, "view": 0} -2023-12-15T14:57:25.149Z INFO approving block {"height": 2711, "hash": "7bd518268d72469f7be7743995e78777a4a8125a2d36b4f5e1fc20abaa1e8360", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b1f2840c2e6952bfb9678aae5a24da54feac4436ebfc9bd94b27249f095285e"} -2023-12-15T14:57:25.150Z INFO initializing dbft {"height": 2712, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:25.151Z debug frostfs-node/morph.go:229 new block {"index": 2711} -2023-12-15T14:57:25.154Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 12 epoch for daughters"} -2023-12-15T14:57:25.156Z INFO runtime log {"tx": "15a9df853149e5bc5524b29c25e216cc86ec18b749d06b677f7f5faabfec071f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:57:25.572Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2711, "blockHeight": 2711, "took": "2.791281ms"} -2023-12-15T14:57:26.150Z INFO sending PrepareRequest {"height": 2712, "view": 0} -2023-12-15T14:57:26.151Z INFO sending Commit {"height": 2712, "view": 0} -2023-12-15T14:57:26.151Z INFO approving block {"height": 2712, "hash": "85871d07ddd319e39636bb18b5b6ea8ab933bc7f472212c03ba81f5765113114", "tx_count": 1, "merkle": "2da68ed74316b1304ac54db6cc3cb947e7f9dee6fad2cd42c54338a69e385bfc", "prev": "7bd518268d72469f7be7743995e78777a4a8125a2d36b4f5e1fc20abaa1e8360"} -2023-12-15T14:57:26.152Z INFO runtime log {"tx": "fc5b389ea63843c542cdd2fae6def9e747b93cccb64dc54a30b11643d78ea62d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T14:57:26.153Z INFO initializing dbft {"height": 2713, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:26.154Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 12} -2023-12-15T14:57:26.154Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 12} -2023-12-15T14:57:26.154Z debug frostfs-node/morph.go:229 new block {"index": 2712} -2023-12-15T14:57:26.575Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 2712, "blockHeight": 2712, "took": "5.780658ms"} -2023-12-15T14:57:27.152Z INFO sending PrepareRequest {"height": 2713, "view": 0} -2023-12-15T14:57:27.153Z INFO sending Commit {"height": 2713, "view": 0} -2023-12-15T14:57:27.153Z INFO approving block {"height": 2713, "hash": "6317d5d7e8d0ad609cdde38cc45a144b77918efd87fba091ce05aea342acbb15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85871d07ddd319e39636bb18b5b6ea8ab933bc7f472212c03ba81f5765113114"} -2023-12-15T14:57:27.154Z INFO initializing dbft {"height": 2714, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:27.154Z debug frostfs-node/morph.go:229 new block {"index": 2713} -2023-12-15T14:57:27.575Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2713, "blockHeight": 2713, "took": "4.606687ms"} -2023-12-15T14:57:28.154Z INFO sending PrepareRequest {"height": 2714, "view": 0} -2023-12-15T14:57:28.154Z INFO sending Commit {"height": 2714, "view": 0} -2023-12-15T14:57:28.154Z INFO approving block {"height": 2714, "hash": "80d317828e9de1a2ad4cd692265f3bbe05b1cbcc63b21bbc28f47ca2d54efcfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6317d5d7e8d0ad609cdde38cc45a144b77918efd87fba091ce05aea342acbb15"} -2023-12-15T14:57:28.156Z INFO initializing dbft {"height": 2715, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:28.156Z debug frostfs-node/morph.go:229 new block {"index": 2714} -2023-12-15T14:57:28.574Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2714, "blockHeight": 2714, "took": "2.972996ms"} -2023-12-15T14:57:29.155Z INFO sending PrepareRequest {"height": 2715, "view": 0} -2023-12-15T14:57:29.155Z INFO sending Commit {"height": 2715, "view": 0} -2023-12-15T14:57:29.156Z INFO approving block {"height": 2715, "hash": "f149d4f990bf7672c9a4c41ea07e4be4fef36cf7ff3578c7fdbe3f969aebe084", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80d317828e9de1a2ad4cd692265f3bbe05b1cbcc63b21bbc28f47ca2d54efcfa"} -2023-12-15T14:57:29.157Z INFO initializing dbft {"height": 2716, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:29.157Z debug frostfs-node/morph.go:229 new block {"index": 2715} -2023-12-15T14:57:29.575Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2715, "blockHeight": 2715, "took": "2.869624ms"} -2023-12-15T14:57:30.157Z INFO sending PrepareRequest {"height": 2716, "view": 0} -2023-12-15T14:57:30.157Z INFO sending Commit {"height": 2716, "view": 0} -2023-12-15T14:57:30.157Z INFO approving block {"height": 2716, "hash": "4c832f69030ea2f3ba4968ba6450fcb47f1edb04dae9a177ccb766079127d970", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f149d4f990bf7672c9a4c41ea07e4be4fef36cf7ff3578c7fdbe3f969aebe084"} -2023-12-15T14:57:30.158Z INFO initializing dbft {"height": 2717, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:30.158Z debug frostfs-node/morph.go:229 new block {"index": 2716} -2023-12-15T14:57:30.576Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2716, "blockHeight": 2716, "took": "2.902456ms"} -2023-12-15T14:57:31.158Z INFO sending PrepareRequest {"height": 2717, "view": 0} -2023-12-15T14:57:31.158Z INFO sending Commit {"height": 2717, "view": 0} -2023-12-15T14:57:31.159Z INFO approving block {"height": 2717, "hash": "0d3854d2a5efb520de2ab6d0790e086fecd8f2d3793383f9d92802d1015a4982", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c832f69030ea2f3ba4968ba6450fcb47f1edb04dae9a177ccb766079127d970"} -2023-12-15T14:57:31.160Z INFO initializing dbft {"height": 2718, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:31.160Z debug frostfs-node/morph.go:229 new block {"index": 2717} -2023-12-15T14:57:31.162Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:57:31.163Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:57:31.163Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:57:31.579Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2717, "blockHeight": 2717, "took": "4.956578ms"} -2023-12-15T14:57:32.160Z INFO sending PrepareRequest {"height": 2718, "view": 0} -2023-12-15T14:57:32.160Z INFO sending Commit {"height": 2718, "view": 0} -2023-12-15T14:57:32.161Z INFO approving block {"height": 2718, "hash": "74f8ec00d16e3b5a81cbbfe520bcfb7603434e4cb270c2515620f32ae9f1a4f7", "tx_count": 2, "merkle": "d82f99a378e85098b8645ce0522d7edf786e8ff20efa1e5279aae0303587552b", "prev": "0d3854d2a5efb520de2ab6d0790e086fecd8f2d3793383f9d92802d1015a4982"} -2023-12-15T14:57:32.161Z INFO runtime log {"tx": "ea44da8af15f2c51e2403a91c49e557762851a5b8ec606f287b93967eee4432e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:57:32.161Z INFO runtime log {"tx": "ea44da8af15f2c51e2403a91c49e557762851a5b8ec606f287b93967eee4432e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:57:32.162Z INFO initializing dbft {"height": 2719, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:32.163Z debug frostfs-node/morph.go:229 new block {"index": 2718} -2023-12-15T14:57:32.579Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2718, "blockHeight": 2718, "took": "4.796227ms"} -2023-12-15T14:57:33.161Z INFO sending PrepareRequest {"height": 2719, "view": 0} -2023-12-15T14:57:33.162Z INFO sending Commit {"height": 2719, "view": 0} -2023-12-15T14:57:33.162Z INFO approving block {"height": 2719, "hash": "1a15136a0046d7d0df33e8bb5ec4fab04f8af25ed52d2e40c729f5a45ccffef0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74f8ec00d16e3b5a81cbbfe520bcfb7603434e4cb270c2515620f32ae9f1a4f7"} -2023-12-15T14:57:33.163Z INFO initializing dbft {"height": 2720, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:33.163Z debug frostfs-node/morph.go:229 new block {"index": 2719} -2023-12-15T14:57:33.578Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2719, "blockHeight": 2719, "took": "3.023978ms"} -2023-12-15T14:57:34.163Z INFO sending PrepareRequest {"height": 2720, "view": 0} -2023-12-15T14:57:34.163Z INFO sending Commit {"height": 2720, "view": 0} -2023-12-15T14:57:34.163Z INFO approving block {"height": 2720, "hash": "0a3d6898b4e47dd5af8bd4586e60799e10b2cab0a829c5033fa562424176e036", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a15136a0046d7d0df33e8bb5ec4fab04f8af25ed52d2e40c729f5a45ccffef0"} -2023-12-15T14:57:34.164Z INFO initializing dbft {"height": 2721, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:34.164Z debug frostfs-node/morph.go:229 new block {"index": 2720} -2023-12-15T14:57:34.578Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2720, "blockHeight": 2720, "took": "3.292169ms"} -2023-12-15T14:57:35.164Z INFO sending PrepareRequest {"height": 2721, "view": 0} -2023-12-15T14:57:35.165Z INFO sending Commit {"height": 2721, "view": 0} -2023-12-15T14:57:35.165Z INFO approving block {"height": 2721, "hash": "4525debf359609c422c363611511fe80593864b21758d0af89a904dafec2f15d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a3d6898b4e47dd5af8bd4586e60799e10b2cab0a829c5033fa562424176e036"} -2023-12-15T14:57:35.166Z INFO initializing dbft {"height": 2722, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:35.166Z debug frostfs-node/morph.go:229 new block {"index": 2721} -2023-12-15T14:57:35.581Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2721, "blockHeight": 2721, "took": "5.120029ms"} -2023-12-15T14:57:36.166Z INFO sending PrepareRequest {"height": 2722, "view": 0} -2023-12-15T14:57:36.166Z INFO sending Commit {"height": 2722, "view": 0} -2023-12-15T14:57:36.166Z INFO approving block {"height": 2722, "hash": "9b111a7902dc08eff2428609fb431a932a7895f43e358db58a9dff1d8f1689a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4525debf359609c422c363611511fe80593864b21758d0af89a904dafec2f15d"} -2023-12-15T14:57:36.167Z INFO initializing dbft {"height": 2723, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:36.167Z debug frostfs-node/morph.go:229 new block {"index": 2722} -2023-12-15T14:57:36.579Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2722, "blockHeight": 2722, "took": "3.050409ms"} -2023-12-15T14:57:37.167Z INFO sending PrepareRequest {"height": 2723, "view": 0} -2023-12-15T14:57:37.167Z INFO sending Commit {"height": 2723, "view": 0} -2023-12-15T14:57:37.167Z INFO approving block {"height": 2723, "hash": "fed1e0927c28da8808776a9440c262bab0ea7ddf5571db0b79bb50b29e4fe379", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b111a7902dc08eff2428609fb431a932a7895f43e358db58a9dff1d8f1689a9"} -2023-12-15T14:57:37.168Z INFO initializing dbft {"height": 2724, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:37.168Z debug frostfs-node/morph.go:229 new block {"index": 2723} -2023-12-15T14:57:37.582Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2723, "blockHeight": 2723, "took": "4.490481ms"} -2023-12-15T14:57:38.168Z INFO sending PrepareRequest {"height": 2724, "view": 0} -2023-12-15T14:57:38.169Z INFO sending Commit {"height": 2724, "view": 0} -2023-12-15T14:57:38.169Z INFO approving block {"height": 2724, "hash": "9997d25a9eb2c5badaa39ba09d7aa490d0d262bf26915fad8fb9ebf113abe7fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fed1e0927c28da8808776a9440c262bab0ea7ddf5571db0b79bb50b29e4fe379"} -2023-12-15T14:57:38.170Z INFO initializing dbft {"height": 2725, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:38.171Z debug frostfs-node/morph.go:229 new block {"index": 2724} -2023-12-15T14:57:38.581Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2724, "blockHeight": 2724, "took": "3.075649ms"} -2023-12-15T14:57:39.170Z INFO sending PrepareRequest {"height": 2725, "view": 0} -2023-12-15T14:57:39.170Z INFO sending Commit {"height": 2725, "view": 0} -2023-12-15T14:57:39.170Z INFO approving block {"height": 2725, "hash": "56bda4a7c26cee982b51a1f5ca08c40f6ebc7fa8298c7836c13db9e4939d911d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9997d25a9eb2c5badaa39ba09d7aa490d0d262bf26915fad8fb9ebf113abe7fd"} -2023-12-15T14:57:39.172Z INFO initializing dbft {"height": 2726, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:39.172Z debug frostfs-node/morph.go:229 new block {"index": 2725} -2023-12-15T14:57:39.582Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2725, "blockHeight": 2725, "took": "3.455561ms"} -2023-12-15T14:57:40.171Z INFO sending PrepareRequest {"height": 2726, "view": 0} -2023-12-15T14:57:40.172Z INFO sending Commit {"height": 2726, "view": 0} -2023-12-15T14:57:40.172Z INFO approving block {"height": 2726, "hash": "419e363cda696416f9ab812a89eb59454d778a372b680fb8d2c7dd5e223a18dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56bda4a7c26cee982b51a1f5ca08c40f6ebc7fa8298c7836c13db9e4939d911d"} -2023-12-15T14:57:40.174Z INFO initializing dbft {"height": 2727, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:40.174Z debug frostfs-node/morph.go:229 new block {"index": 2726} -2023-12-15T14:57:40.582Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2726, "blockHeight": 2726, "took": "3.461251ms"} -2023-12-15T14:57:41.173Z INFO sending PrepareRequest {"height": 2727, "view": 0} -2023-12-15T14:57:41.173Z INFO sending Commit {"height": 2727, "view": 0} -2023-12-15T14:57:41.173Z INFO approving block {"height": 2727, "hash": "f8c0714e3221de45cf408c896ced36c83afcbe48d32537ab44f6ca676f0e65bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "419e363cda696416f9ab812a89eb59454d778a372b680fb8d2c7dd5e223a18dc"} -2023-12-15T14:57:41.174Z INFO initializing dbft {"height": 2728, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:41.174Z debug frostfs-node/morph.go:229 new block {"index": 2727} -2023-12-15T14:57:41.583Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2727, "blockHeight": 2727, "took": "4.273158ms"} -2023-12-15T14:57:42.174Z INFO sending PrepareRequest {"height": 2728, "view": 0} -2023-12-15T14:57:42.174Z INFO sending Commit {"height": 2728, "view": 0} -2023-12-15T14:57:42.174Z INFO approving block {"height": 2728, "hash": "e358843a61b4f615c8489703a326ef7df831519523822b8a1f3a2a510d3e4b00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8c0714e3221de45cf408c896ced36c83afcbe48d32537ab44f6ca676f0e65bf"} -2023-12-15T14:57:42.175Z INFO initializing dbft {"height": 2729, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:42.175Z debug frostfs-node/morph.go:229 new block {"index": 2728} -2023-12-15T14:57:42.584Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2728, "blockHeight": 2728, "took": "4.187612ms"} -2023-12-15T14:57:43.175Z INFO sending PrepareRequest {"height": 2729, "view": 0} -2023-12-15T14:57:43.175Z INFO sending Commit {"height": 2729, "view": 0} -2023-12-15T14:57:43.175Z INFO approving block {"height": 2729, "hash": "fc7700d38405f5fcccb5ac09ecfd77ab97a1e57870857d6e67ceb87538e8f343", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e358843a61b4f615c8489703a326ef7df831519523822b8a1f3a2a510d3e4b00"} -2023-12-15T14:57:43.176Z INFO initializing dbft {"height": 2730, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:43.177Z debug frostfs-node/morph.go:229 new block {"index": 2729} -2023-12-15T14:57:43.584Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2729, "blockHeight": 2729, "took": "2.991158ms"} -2023-12-15T14:57:44.176Z INFO sending PrepareRequest {"height": 2730, "view": 0} -2023-12-15T14:57:44.176Z INFO sending Commit {"height": 2730, "view": 0} -2023-12-15T14:57:44.177Z INFO approving block {"height": 2730, "hash": "08b7dd7e0e2ebad7f375fc82516d80437654c25412d8d9a7c251c8a0e8bdb719", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc7700d38405f5fcccb5ac09ecfd77ab97a1e57870857d6e67ceb87538e8f343"} -2023-12-15T14:57:44.177Z INFO initializing dbft {"height": 2731, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:44.178Z debug frostfs-node/morph.go:229 new block {"index": 2730} -2023-12-15T14:57:44.587Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2730, "blockHeight": 2730, "took": "5.266425ms"} -2023-12-15T14:57:45.177Z INFO sending PrepareRequest {"height": 2731, "view": 0} -2023-12-15T14:57:45.177Z INFO sending Commit {"height": 2731, "view": 0} -2023-12-15T14:57:45.178Z INFO approving block {"height": 2731, "hash": "cabd00b1581edc25cf1ac9df63e25cfc300467aa664bc6f220a9259f50d8e261", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08b7dd7e0e2ebad7f375fc82516d80437654c25412d8d9a7c251c8a0e8bdb719"} -2023-12-15T14:57:45.179Z INFO initializing dbft {"height": 2732, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:45.179Z debug frostfs-node/morph.go:229 new block {"index": 2731} -2023-12-15T14:57:45.586Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2731, "blockHeight": 2731, "took": "4.23042ms"} -2023-12-15T14:57:46.179Z INFO sending PrepareRequest {"height": 2732, "view": 0} -2023-12-15T14:57:46.179Z INFO sending Commit {"height": 2732, "view": 0} -2023-12-15T14:57:46.180Z INFO approving block {"height": 2732, "hash": "a68fc009cbd04016ca30c502c0bbe5b2afe387633b6d9f23d5cdb8bea6e67b32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cabd00b1581edc25cf1ac9df63e25cfc300467aa664bc6f220a9259f50d8e261"} -2023-12-15T14:57:46.181Z INFO initializing dbft {"height": 2733, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:46.182Z debug frostfs-node/morph.go:229 new block {"index": 2732} -2023-12-15T14:57:46.586Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2732, "blockHeight": 2732, "took": "3.07944ms"} -2023-12-15T14:57:47.181Z INFO sending PrepareRequest {"height": 2733, "view": 0} -2023-12-15T14:57:47.181Z INFO sending Commit {"height": 2733, "view": 0} -2023-12-15T14:57:47.181Z INFO approving block {"height": 2733, "hash": "df7bccf88fba17cd9e116b672370a46b247a0b2c41ff4725c624cdc23685fc09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a68fc009cbd04016ca30c502c0bbe5b2afe387633b6d9f23d5cdb8bea6e67b32"} -2023-12-15T14:57:47.182Z INFO initializing dbft {"height": 2734, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:47.182Z debug frostfs-node/morph.go:229 new block {"index": 2733} -2023-12-15T14:57:47.586Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2733, "blockHeight": 2733, "took": "3.514349ms"} -2023-12-15T14:57:48.182Z INFO sending PrepareRequest {"height": 2734, "view": 0} -2023-12-15T14:57:48.182Z INFO sending Commit {"height": 2734, "view": 0} -2023-12-15T14:57:48.182Z INFO approving block {"height": 2734, "hash": "dc22ff31e1e9b6b3d2c67249d1c1264f808ff62047c0f2c644805fe1334d984f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df7bccf88fba17cd9e116b672370a46b247a0b2c41ff4725c624cdc23685fc09"} -2023-12-15T14:57:48.184Z INFO initializing dbft {"height": 2735, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:48.184Z debug frostfs-node/morph.go:229 new block {"index": 2734} -2023-12-15T14:57:48.586Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2734, "blockHeight": 2734, "took": "2.970336ms"} -2023-12-15T14:57:49.183Z INFO sending PrepareRequest {"height": 2735, "view": 0} -2023-12-15T14:57:49.183Z INFO sending Commit {"height": 2735, "view": 0} -2023-12-15T14:57:49.184Z INFO approving block {"height": 2735, "hash": "965168498ca9367381fc7f72041261807343408f2007fd8ead04892f0be83778", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc22ff31e1e9b6b3d2c67249d1c1264f808ff62047c0f2c644805fe1334d984f"} -2023-12-15T14:57:49.185Z INFO initializing dbft {"height": 2736, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:49.185Z debug frostfs-node/morph.go:229 new block {"index": 2735} -2023-12-15T14:57:49.588Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2735, "blockHeight": 2735, "took": "4.246277ms"} -2023-12-15T14:57:50.185Z INFO sending PrepareRequest {"height": 2736, "view": 0} -2023-12-15T14:57:50.185Z INFO sending Commit {"height": 2736, "view": 0} -2023-12-15T14:57:50.185Z INFO approving block {"height": 2736, "hash": "630ebc2ba003357de831687b76193f910e17b9c51ee2805b222e69907767bc99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "965168498ca9367381fc7f72041261807343408f2007fd8ead04892f0be83778"} -2023-12-15T14:57:50.186Z INFO initializing dbft {"height": 2737, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:50.186Z debug frostfs-node/morph.go:229 new block {"index": 2736} -2023-12-15T14:57:50.587Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2736, "blockHeight": 2736, "took": "3.306293ms"} -2023-12-15T14:57:51.186Z INFO sending PrepareRequest {"height": 2737, "view": 0} -2023-12-15T14:57:51.186Z INFO sending Commit {"height": 2737, "view": 0} -2023-12-15T14:57:51.187Z INFO approving block {"height": 2737, "hash": "c53b55d74f532813af0bf1f85557fc60834ccfecb6f4a4b75fd0bb715fe25d12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "630ebc2ba003357de831687b76193f910e17b9c51ee2805b222e69907767bc99"} -2023-12-15T14:57:51.187Z INFO initializing dbft {"height": 2738, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:51.188Z debug frostfs-node/morph.go:229 new block {"index": 2737} -2023-12-15T14:57:51.587Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2737, "blockHeight": 2737, "took": "2.876914ms"} -2023-12-15T14:57:52.188Z INFO sending PrepareRequest {"height": 2738, "view": 0} -2023-12-15T14:57:52.188Z INFO sending Commit {"height": 2738, "view": 0} -2023-12-15T14:57:52.188Z INFO approving block {"height": 2738, "hash": "60514a0696316316df1a495bfb4d68eeaf74acd115afc1d1d1f759403a964483", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c53b55d74f532813af0bf1f85557fc60834ccfecb6f4a4b75fd0bb715fe25d12"} -2023-12-15T14:57:52.189Z INFO initializing dbft {"height": 2739, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:52.189Z debug frostfs-node/morph.go:229 new block {"index": 2738} -2023-12-15T14:57:52.588Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2738, "blockHeight": 2738, "took": "2.96058ms"} -2023-12-15T14:57:53.189Z INFO sending PrepareRequest {"height": 2739, "view": 0} -2023-12-15T14:57:53.189Z INFO sending Commit {"height": 2739, "view": 0} -2023-12-15T14:57:53.189Z INFO approving block {"height": 2739, "hash": "d876dacbb1fb96133ef3453cccb6c58d0d67263f65f80e1332592b66b739cb7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60514a0696316316df1a495bfb4d68eeaf74acd115afc1d1d1f759403a964483"} -2023-12-15T14:57:53.191Z INFO initializing dbft {"height": 2740, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:53.191Z debug frostfs-node/morph.go:229 new block {"index": 2739} -2023-12-15T14:57:53.589Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2739, "blockHeight": 2739, "took": "3.184703ms"} -2023-12-15T14:57:54.191Z INFO sending PrepareRequest {"height": 2740, "view": 0} -2023-12-15T14:57:54.191Z INFO sending Commit {"height": 2740, "view": 0} -2023-12-15T14:57:54.192Z INFO approving block {"height": 2740, "hash": "6548eea86e9178375a25fa7ffae768e1f8489d9c5e37220f1d78c5093a8ce713", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d876dacbb1fb96133ef3453cccb6c58d0d67263f65f80e1332592b66b739cb7c"} -2023-12-15T14:57:54.194Z INFO initializing dbft {"height": 2741, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:54.194Z debug frostfs-node/morph.go:229 new block {"index": 2740} -2023-12-15T14:57:54.592Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2740, "blockHeight": 2740, "took": "6.343905ms"} -2023-12-15T14:57:55.193Z INFO sending PrepareRequest {"height": 2741, "view": 0} -2023-12-15T14:57:55.193Z INFO sending Commit {"height": 2741, "view": 0} -2023-12-15T14:57:55.194Z INFO approving block {"height": 2741, "hash": "1a741aa485e96193fbb0defc2b25b4d04cd448dd77a0d20dba55dcb61cf24c34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6548eea86e9178375a25fa7ffae768e1f8489d9c5e37220f1d78c5093a8ce713"} -2023-12-15T14:57:55.195Z INFO initializing dbft {"height": 2742, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:55.195Z debug frostfs-node/morph.go:229 new block {"index": 2741} -2023-12-15T14:57:55.590Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2741, "blockHeight": 2741, "took": "3.348574ms"} -2023-12-15T14:57:56.194Z INFO sending PrepareRequest {"height": 2742, "view": 0} -2023-12-15T14:57:56.195Z INFO sending Commit {"height": 2742, "view": 0} -2023-12-15T14:57:56.195Z INFO approving block {"height": 2742, "hash": "0ed6ebcce60278bba8a5acc3a0c7c8ad7f23aaa18db1a2b1a0794f8db6b0d14c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a741aa485e96193fbb0defc2b25b4d04cd448dd77a0d20dba55dcb61cf24c34"} -2023-12-15T14:57:56.196Z INFO initializing dbft {"height": 2743, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:56.196Z debug frostfs-node/morph.go:229 new block {"index": 2742} -2023-12-15T14:57:56.590Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2742, "blockHeight": 2742, "took": "2.723319ms"} -2023-12-15T14:57:57.196Z INFO sending PrepareRequest {"height": 2743, "view": 0} -2023-12-15T14:57:57.196Z INFO sending Commit {"height": 2743, "view": 0} -2023-12-15T14:57:57.196Z INFO approving block {"height": 2743, "hash": "02e87a484748095150e4d06371bb528cb88348b8d8ee403c112a596ee12bf2ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ed6ebcce60278bba8a5acc3a0c7c8ad7f23aaa18db1a2b1a0794f8db6b0d14c"} -2023-12-15T14:57:57.197Z INFO initializing dbft {"height": 2744, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:57.198Z debug frostfs-node/morph.go:229 new block {"index": 2743} -2023-12-15T14:57:57.591Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2743, "blockHeight": 2743, "took": "2.943476ms"} -2023-12-15T14:57:58.197Z INFO sending PrepareRequest {"height": 2744, "view": 0} -2023-12-15T14:57:58.198Z INFO sending Commit {"height": 2744, "view": 0} -2023-12-15T14:57:58.198Z INFO approving block {"height": 2744, "hash": "c6a30b6cbb36a9f89d48825d83edb958f7146c2c9a07ef67c4ae0b266b740a3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02e87a484748095150e4d06371bb528cb88348b8d8ee403c112a596ee12bf2ac"} -2023-12-15T14:57:58.200Z INFO initializing dbft {"height": 2745, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:58.200Z debug frostfs-node/morph.go:229 new block {"index": 2744} -2023-12-15T14:57:58.592Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2744, "blockHeight": 2744, "took": "2.97468ms"} -2023-12-15T14:57:59.199Z INFO sending PrepareRequest {"height": 2745, "view": 0} -2023-12-15T14:57:59.199Z INFO sending Commit {"height": 2745, "view": 0} -2023-12-15T14:57:59.199Z INFO approving block {"height": 2745, "hash": "df89331a6fb80b5e518b56c72a18991bcc11974eb5671b620253866ed47da749", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6a30b6cbb36a9f89d48825d83edb958f7146c2c9a07ef67c4ae0b266b740a3e"} -2023-12-15T14:57:59.200Z INFO initializing dbft {"height": 2746, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:57:59.200Z debug frostfs-node/morph.go:229 new block {"index": 2745} -2023-12-15T14:57:59.592Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2745, "blockHeight": 2745, "took": "3.188683ms"} -2023-12-15T14:58:00.200Z INFO sending PrepareRequest {"height": 2746, "view": 0} -2023-12-15T14:58:00.200Z INFO sending Commit {"height": 2746, "view": 0} -2023-12-15T14:58:00.201Z INFO approving block {"height": 2746, "hash": "7c4258318a12cb21eee9de612ba9a99218af2029a99d77cc5ef63045d50e650c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df89331a6fb80b5e518b56c72a18991bcc11974eb5671b620253866ed47da749"} -2023-12-15T14:58:00.201Z INFO initializing dbft {"height": 2747, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:00.202Z debug frostfs-node/morph.go:229 new block {"index": 2746} -2023-12-15T14:58:00.593Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2746, "blockHeight": 2746, "took": "3.847111ms"} -2023-12-15T14:58:01.202Z INFO sending PrepareRequest {"height": 2747, "view": 0} -2023-12-15T14:58:01.202Z INFO sending Commit {"height": 2747, "view": 0} -2023-12-15T14:58:01.202Z INFO approving block {"height": 2747, "hash": "db4141934aedc25e67f74a4699f2b008d4dcdf29da32540896d781e01b06cd83", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c4258318a12cb21eee9de612ba9a99218af2029a99d77cc5ef63045d50e650c"} -2023-12-15T14:58:01.203Z INFO initializing dbft {"height": 2748, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:01.203Z debug frostfs-node/morph.go:229 new block {"index": 2747} -2023-12-15T14:58:01.594Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2747, "blockHeight": 2747, "took": "4.09762ms"} -2023-12-15T14:58:02.202Z INFO sending PrepareRequest {"height": 2748, "view": 0} -2023-12-15T14:58:02.203Z INFO sending Commit {"height": 2748, "view": 0} -2023-12-15T14:58:02.203Z INFO approving block {"height": 2748, "hash": "e60a22b1ef654f5c1c074e9dee94c36011a6e827c95826f916e829a540426537", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db4141934aedc25e67f74a4699f2b008d4dcdf29da32540896d781e01b06cd83"} -2023-12-15T14:58:02.204Z INFO initializing dbft {"height": 2749, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:02.204Z debug frostfs-node/morph.go:229 new block {"index": 2748} -2023-12-15T14:58:02.594Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2748, "blockHeight": 2748, "took": "2.934385ms"} -2023-12-15T14:58:03.204Z INFO sending PrepareRequest {"height": 2749, "view": 0} -2023-12-15T14:58:03.205Z INFO sending Commit {"height": 2749, "view": 0} -2023-12-15T14:58:03.205Z INFO approving block {"height": 2749, "hash": "018846397bb6f3592ca8e0cfd7dc35ce0c8f0d68b72e9e2b9138fb66737640e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e60a22b1ef654f5c1c074e9dee94c36011a6e827c95826f916e829a540426537"} -2023-12-15T14:58:03.206Z INFO initializing dbft {"height": 2750, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:03.207Z debug frostfs-node/morph.go:229 new block {"index": 2749} -2023-12-15T14:58:03.594Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2749, "blockHeight": 2749, "took": "2.970357ms"} -2023-12-15T14:58:04.206Z INFO sending PrepareRequest {"height": 2750, "view": 0} -2023-12-15T14:58:04.206Z INFO sending Commit {"height": 2750, "view": 0} -2023-12-15T14:58:04.206Z INFO approving block {"height": 2750, "hash": "a9f13ea3c75cad8879e540d7295e4195ac6f87ddf5fe7cfde57de778ad11f9ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "018846397bb6f3592ca8e0cfd7dc35ce0c8f0d68b72e9e2b9138fb66737640e5"} -2023-12-15T14:58:04.207Z INFO initializing dbft {"height": 2751, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:04.207Z debug frostfs-node/morph.go:229 new block {"index": 2750} -2023-12-15T14:58:04.596Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2750, "blockHeight": 2750, "took": "4.079599ms"} -2023-12-15T14:58:05.207Z INFO sending PrepareRequest {"height": 2751, "view": 0} -2023-12-15T14:58:05.207Z INFO sending Commit {"height": 2751, "view": 0} -2023-12-15T14:58:05.207Z INFO approving block {"height": 2751, "hash": "eb42132b8b7bd8a1374cdb793740662b893a5f58ab9ad3af5b6341470fa4d9c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9f13ea3c75cad8879e540d7295e4195ac6f87ddf5fe7cfde57de778ad11f9ae"} -2023-12-15T14:58:05.208Z INFO initializing dbft {"height": 2752, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:05.209Z debug frostfs-node/morph.go:229 new block {"index": 2751} -2023-12-15T14:58:05.595Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2751, "blockHeight": 2751, "took": "2.888894ms"} -2023-12-15T14:58:06.208Z INFO sending PrepareRequest {"height": 2752, "view": 0} -2023-12-15T14:58:06.208Z INFO sending Commit {"height": 2752, "view": 0} -2023-12-15T14:58:06.208Z INFO approving block {"height": 2752, "hash": "410e3b17bcd5c19818c1f280a7192eee4b8ec738a6ab02a1970123747ef9ef9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb42132b8b7bd8a1374cdb793740662b893a5f58ab9ad3af5b6341470fa4d9c6"} -2023-12-15T14:58:06.209Z INFO initializing dbft {"height": 2753, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:06.210Z debug frostfs-node/morph.go:229 new block {"index": 2752} -2023-12-15T14:58:06.597Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2752, "blockHeight": 2752, "took": "3.279276ms"} -2023-12-15T14:58:07.210Z INFO sending PrepareRequest {"height": 2753, "view": 0} -2023-12-15T14:58:07.210Z INFO sending Commit {"height": 2753, "view": 0} -2023-12-15T14:58:07.210Z INFO approving block {"height": 2753, "hash": "49d44f49c209edfd95fa93eaee1294951f10b0ec08214d31d8ec2f74db402197", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "410e3b17bcd5c19818c1f280a7192eee4b8ec738a6ab02a1970123747ef9ef9a"} -2023-12-15T14:58:07.212Z INFO initializing dbft {"height": 2754, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:07.212Z debug frostfs-node/morph.go:229 new block {"index": 2753} -2023-12-15T14:58:07.597Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2753, "blockHeight": 2753, "took": "3.607358ms"} -2023-12-15T14:58:08.211Z INFO sending PrepareRequest {"height": 2754, "view": 0} -2023-12-15T14:58:08.211Z INFO sending Commit {"height": 2754, "view": 0} -2023-12-15T14:58:08.211Z INFO approving block {"height": 2754, "hash": "816c70f2fb87955b1f0839db9d8aac6994032a887a7633ac70924c162ad805f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49d44f49c209edfd95fa93eaee1294951f10b0ec08214d31d8ec2f74db402197"} -2023-12-15T14:58:08.213Z INFO initializing dbft {"height": 2755, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:08.213Z debug frostfs-node/morph.go:229 new block {"index": 2754} -2023-12-15T14:58:08.600Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2754, "blockHeight": 2754, "took": "5.51606ms"} -2023-12-15T14:58:09.212Z INFO sending PrepareRequest {"height": 2755, "view": 0} -2023-12-15T14:58:09.213Z INFO sending Commit {"height": 2755, "view": 0} -2023-12-15T14:58:09.213Z INFO approving block {"height": 2755, "hash": "7c9dd1495f6fcc6e8fd4310dd4055f454dd2ef8f725865ccb5859b2b870e8163", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "816c70f2fb87955b1f0839db9d8aac6994032a887a7633ac70924c162ad805f0"} -2023-12-15T14:58:09.214Z INFO initializing dbft {"height": 2756, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:09.214Z debug frostfs-node/morph.go:229 new block {"index": 2755} -2023-12-15T14:58:09.599Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2755, "blockHeight": 2755, "took": "4.188822ms"} -2023-12-15T14:58:10.214Z INFO sending PrepareRequest {"height": 2756, "view": 0} -2023-12-15T14:58:10.214Z INFO sending Commit {"height": 2756, "view": 0} -2023-12-15T14:58:10.214Z INFO approving block {"height": 2756, "hash": "0bb23870fafc1024807d1244d2c2a7ca1dcccadd7a0416a0bd75c8101476e76a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c9dd1495f6fcc6e8fd4310dd4055f454dd2ef8f725865ccb5859b2b870e8163"} -2023-12-15T14:58:10.215Z INFO initializing dbft {"height": 2757, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:10.216Z debug frostfs-node/morph.go:229 new block {"index": 2756} -2023-12-15T14:58:10.598Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2756, "blockHeight": 2756, "took": "3.032458ms"} -2023-12-15T14:58:11.215Z INFO sending PrepareRequest {"height": 2757, "view": 0} -2023-12-15T14:58:11.215Z INFO sending Commit {"height": 2757, "view": 0} -2023-12-15T14:58:11.215Z INFO approving block {"height": 2757, "hash": "0203bfc9756d568c2bbefa99b3a5f1173cf1a055d19b748ebeef77a6a6089118", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bb23870fafc1024807d1244d2c2a7ca1dcccadd7a0416a0bd75c8101476e76a"} -2023-12-15T14:58:11.216Z INFO initializing dbft {"height": 2758, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:11.216Z debug frostfs-node/morph.go:229 new block {"index": 2757} -2023-12-15T14:58:11.600Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2757, "blockHeight": 2757, "took": "3.627595ms"} -2023-12-15T14:58:12.217Z INFO sending PrepareRequest {"height": 2758, "view": 0} -2023-12-15T14:58:12.217Z INFO sending Commit {"height": 2758, "view": 0} -2023-12-15T14:58:12.217Z INFO approving block {"height": 2758, "hash": "76c07f2c3fe286964797f41adad9b97bec719d7da97a14e81a56c2cc6506436b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0203bfc9756d568c2bbefa99b3a5f1173cf1a055d19b748ebeef77a6a6089118"} -2023-12-15T14:58:12.219Z INFO initializing dbft {"height": 2759, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:12.219Z debug frostfs-node/morph.go:229 new block {"index": 2758} -2023-12-15T14:58:12.600Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2758, "blockHeight": 2758, "took": "3.429428ms"} -2023-12-15T14:58:13.218Z INFO sending PrepareRequest {"height": 2759, "view": 0} -2023-12-15T14:58:13.218Z INFO sending Commit {"height": 2759, "view": 0} -2023-12-15T14:58:13.218Z INFO approving block {"height": 2759, "hash": "93fad6685f0f694db69e4eb63614277f012dab647fffaa5947bfe58b089bba7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76c07f2c3fe286964797f41adad9b97bec719d7da97a14e81a56c2cc6506436b"} -2023-12-15T14:58:13.219Z INFO initializing dbft {"height": 2760, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:13.220Z debug frostfs-node/morph.go:229 new block {"index": 2759} -2023-12-15T14:58:13.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2759, "blockHeight": 2759, "took": "3.363371ms"} -2023-12-15T14:58:14.219Z INFO sending PrepareRequest {"height": 2760, "view": 0} -2023-12-15T14:58:14.219Z INFO sending Commit {"height": 2760, "view": 0} -2023-12-15T14:58:14.220Z INFO approving block {"height": 2760, "hash": "6f52bab734a74354c4515cc8832596b08286851e4a5e79f7a0aee5532a8eaa13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93fad6685f0f694db69e4eb63614277f012dab647fffaa5947bfe58b089bba7b"} -2023-12-15T14:58:14.220Z INFO initializing dbft {"height": 2761, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:14.221Z debug frostfs-node/morph.go:229 new block {"index": 2760} -2023-12-15T14:58:14.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2760, "blockHeight": 2760, "took": "3.913854ms"} -2023-12-15T14:58:15.221Z INFO sending PrepareRequest {"height": 2761, "view": 0} -2023-12-15T14:58:15.221Z INFO sending Commit {"height": 2761, "view": 0} -2023-12-15T14:58:15.221Z INFO approving block {"height": 2761, "hash": "d903761e7ec450f2ab7772affddb5bfb75f5001691c6f8ed76efd56b18e9c463", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f52bab734a74354c4515cc8832596b08286851e4a5e79f7a0aee5532a8eaa13"} -2023-12-15T14:58:15.222Z INFO initializing dbft {"height": 2762, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:15.222Z debug frostfs-node/morph.go:229 new block {"index": 2761} -2023-12-15T14:58:15.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2761, "blockHeight": 2761, "took": "3.246905ms"} -2023-12-15T14:58:16.222Z INFO sending PrepareRequest {"height": 2762, "view": 0} -2023-12-15T14:58:16.222Z INFO sending Commit {"height": 2762, "view": 0} -2023-12-15T14:58:16.222Z INFO approving block {"height": 2762, "hash": "35a987f2ac0e3e25be0cbd0ee8bb5cf76f16409f125f761ac74c993aa6636fe9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d903761e7ec450f2ab7772affddb5bfb75f5001691c6f8ed76efd56b18e9c463"} -2023-12-15T14:58:16.223Z INFO initializing dbft {"height": 2763, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:16.223Z debug frostfs-node/morph.go:229 new block {"index": 2762} -2023-12-15T14:58:16.602Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2762, "blockHeight": 2762, "took": "3.08972ms"} -2023-12-15T14:58:17.223Z INFO sending PrepareRequest {"height": 2763, "view": 0} -2023-12-15T14:58:17.223Z INFO sending Commit {"height": 2763, "view": 0} -2023-12-15T14:58:17.224Z INFO approving block {"height": 2763, "hash": "175bc867a7e8a88686eda54eca6237427fe15acbfd2732e1646b89e89a49e1a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35a987f2ac0e3e25be0cbd0ee8bb5cf76f16409f125f761ac74c993aa6636fe9"} -2023-12-15T14:58:17.224Z INFO initializing dbft {"height": 2764, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:17.225Z debug frostfs-node/morph.go:229 new block {"index": 2763} -2023-12-15T14:58:17.602Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2763, "blockHeight": 2763, "took": "3.08778ms"} -2023-12-15T14:58:18.224Z INFO sending PrepareRequest {"height": 2764, "view": 0} -2023-12-15T14:58:18.224Z INFO sending Commit {"height": 2764, "view": 0} -2023-12-15T14:58:18.225Z INFO approving block {"height": 2764, "hash": "388e4a69f96c9e667a32933e385b5a8f7e9511b85c39f727bee1ccc6871dbea3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "175bc867a7e8a88686eda54eca6237427fe15acbfd2732e1646b89e89a49e1a5"} -2023-12-15T14:58:18.225Z INFO initializing dbft {"height": 2765, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:18.226Z debug frostfs-node/morph.go:229 new block {"index": 2764} -2023-12-15T14:58:18.603Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2764, "blockHeight": 2764, "took": "3.87781ms"} -2023-12-15T14:58:19.226Z INFO sending PrepareRequest {"height": 2765, "view": 0} -2023-12-15T14:58:19.226Z INFO sending Commit {"height": 2765, "view": 0} -2023-12-15T14:58:19.226Z INFO approving block {"height": 2765, "hash": "244bdc44933c94a90ebaf6d0b2ed5ceeb7b7d949f2ed3b4889dfd517b1bdfa55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "388e4a69f96c9e667a32933e385b5a8f7e9511b85c39f727bee1ccc6871dbea3"} -2023-12-15T14:58:19.227Z INFO initializing dbft {"height": 2766, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:19.227Z debug frostfs-node/morph.go:229 new block {"index": 2765} -2023-12-15T14:58:19.603Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2765, "blockHeight": 2765, "took": "2.85227ms"} -2023-12-15T14:58:20.227Z INFO sending PrepareRequest {"height": 2766, "view": 0} -2023-12-15T14:58:20.227Z INFO sending Commit {"height": 2766, "view": 0} -2023-12-15T14:58:20.228Z INFO approving block {"height": 2766, "hash": "a85710d763633aac2e9eb1259e52854e86958dfa0abd6df6d09b751c025384ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "244bdc44933c94a90ebaf6d0b2ed5ceeb7b7d949f2ed3b4889dfd517b1bdfa55"} -2023-12-15T14:58:20.229Z INFO initializing dbft {"height": 2767, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:20.229Z debug frostfs-node/morph.go:229 new block {"index": 2766} -2023-12-15T14:58:20.605Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2766, "blockHeight": 2766, "took": "4.622292ms"} -2023-12-15T14:58:21.229Z INFO sending PrepareRequest {"height": 2767, "view": 0} -2023-12-15T14:58:21.229Z INFO sending Commit {"height": 2767, "view": 0} -2023-12-15T14:58:21.229Z INFO approving block {"height": 2767, "hash": "1c6e2d6d865ba1aa60e8226274ff78b41ddecfd9e1750165883aed0ef0cb02d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a85710d763633aac2e9eb1259e52854e86958dfa0abd6df6d09b751c025384ec"} -2023-12-15T14:58:21.230Z INFO initializing dbft {"height": 2768, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:21.230Z debug frostfs-node/morph.go:229 new block {"index": 2767} -2023-12-15T14:58:21.232Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:58:21.236Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:58:21.236Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:58:21.604Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2767, "blockHeight": 2767, "took": "2.793111ms"} -2023-12-15T14:58:22.230Z INFO sending PrepareRequest {"height": 2768, "view": 0} -2023-12-15T14:58:22.230Z INFO sending Commit {"height": 2768, "view": 0} -2023-12-15T14:58:22.231Z INFO approving block {"height": 2768, "hash": "f6d8a01916198db973d604c348c0731dad74f53400b43a370bffb6f239be7ded", "tx_count": 2, "merkle": "fa6e2763a12a36311f563055eaac83f76fc75702fb9bc01664484cc0528a504e", "prev": "1c6e2d6d865ba1aa60e8226274ff78b41ddecfd9e1750165883aed0ef0cb02d6"} -2023-12-15T14:58:22.232Z INFO runtime log {"tx": "11019e3feeaf94404bb9e0a51d7f26fa8449c266cd94556c842dbe24ef53e530", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:58:22.232Z INFO runtime log {"tx": "11019e3feeaf94404bb9e0a51d7f26fa8449c266cd94556c842dbe24ef53e530", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:58:22.233Z INFO initializing dbft {"height": 2769, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:22.233Z debug frostfs-node/morph.go:229 new block {"index": 2768} -2023-12-15T14:58:22.610Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2768, "blockHeight": 2768, "took": "8.077324ms"} -2023-12-15T14:58:23.231Z INFO sending PrepareRequest {"height": 2769, "view": 0} -2023-12-15T14:58:23.232Z INFO sending Commit {"height": 2769, "view": 0} -2023-12-15T14:58:23.232Z INFO approving block {"height": 2769, "hash": "ceeb77b51326e8dcb3439d5a72ae4fa793b828eb1d497a6ad09b7c26c543e01a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6d8a01916198db973d604c348c0731dad74f53400b43a370bffb6f239be7ded"} -2023-12-15T14:58:23.233Z INFO initializing dbft {"height": 2770, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:23.233Z debug frostfs-node/morph.go:229 new block {"index": 2769} -2023-12-15T14:58:23.606Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2769, "blockHeight": 2769, "took": "3.09105ms"} -2023-12-15T14:58:24.232Z INFO sending PrepareRequest {"height": 2770, "view": 0} -2023-12-15T14:58:24.233Z INFO sending Commit {"height": 2770, "view": 0} -2023-12-15T14:58:24.233Z INFO approving block {"height": 2770, "hash": "b51b58387dc99391e1f2bff06a9f525ed1af31a77688f3be45241030c2530c46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ceeb77b51326e8dcb3439d5a72ae4fa793b828eb1d497a6ad09b7c26c543e01a"} -2023-12-15T14:58:24.234Z INFO initializing dbft {"height": 2771, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:24.234Z debug frostfs-node/morph.go:229 new block {"index": 2770} -2023-12-15T14:58:24.608Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2770, "blockHeight": 2770, "took": "4.367357ms"} -2023-12-15T14:58:25.234Z INFO sending PrepareRequest {"height": 2771, "view": 0} -2023-12-15T14:58:25.234Z INFO sending Commit {"height": 2771, "view": 0} -2023-12-15T14:58:25.234Z INFO approving block {"height": 2771, "hash": "aeacddd082433dea32cb8b7c66211e3de6abdf9669615a30ef3da2e9609a850b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b51b58387dc99391e1f2bff06a9f525ed1af31a77688f3be45241030c2530c46"} -2023-12-15T14:58:25.236Z INFO initializing dbft {"height": 2772, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:25.236Z debug frostfs-node/morph.go:229 new block {"index": 2771} -2023-12-15T14:58:25.238Z info settlement/calls.go:61 start basic income collection {"epoch": 12} -2023-12-15T14:58:25.239Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 12, "iteration": 1, "error": "no data for 0 iteration in 12 epoch for consumers's trusts"} -2023-12-15T14:58:25.610Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2771, "blockHeight": 2771, "took": "5.08017ms"} -2023-12-15T14:58:26.235Z INFO sending PrepareRequest {"height": 2772, "view": 0} -2023-12-15T14:58:26.236Z INFO sending Commit {"height": 2772, "view": 0} -2023-12-15T14:58:26.236Z INFO approving block {"height": 2772, "hash": "87ed7f2bce0933d07ea9c4a5478c7d4d5f97f0696ffb241bf447caa5d60f3130", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aeacddd082433dea32cb8b7c66211e3de6abdf9669615a30ef3da2e9609a850b"} -2023-12-15T14:58:26.237Z INFO initializing dbft {"height": 2773, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:26.238Z debug frostfs-node/morph.go:229 new block {"index": 2772} -2023-12-15T14:58:26.609Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2772, "blockHeight": 2772, "took": "3.588529ms"} -2023-12-15T14:58:27.237Z INFO sending PrepareRequest {"height": 2773, "view": 0} -2023-12-15T14:58:27.237Z INFO sending Commit {"height": 2773, "view": 0} -2023-12-15T14:58:27.238Z INFO approving block {"height": 2773, "hash": "383e233abd672ed01cc37bc89844ea6770182154a2db7ce846fcd7041530cb24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87ed7f2bce0933d07ea9c4a5478c7d4d5f97f0696ffb241bf447caa5d60f3130"} -2023-12-15T14:58:27.239Z INFO initializing dbft {"height": 2774, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:27.239Z debug frostfs-node/morph.go:229 new block {"index": 2773} -2023-12-15T14:58:27.610Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2773, "blockHeight": 2773, "took": "3.549373ms"} -2023-12-15T14:58:28.239Z INFO sending PrepareRequest {"height": 2774, "view": 0} -2023-12-15T14:58:28.239Z INFO sending Commit {"height": 2774, "view": 0} -2023-12-15T14:58:28.239Z INFO approving block {"height": 2774, "hash": "a89801c4f88d817a83682ddbc2c0880e68f06fae0862bb1b4b0eda61ac92d6a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "383e233abd672ed01cc37bc89844ea6770182154a2db7ce846fcd7041530cb24"} -2023-12-15T14:58:28.240Z INFO initializing dbft {"height": 2775, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:28.241Z debug frostfs-node/morph.go:229 new block {"index": 2774} -2023-12-15T14:58:28.612Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2774, "blockHeight": 2774, "took": "4.307195ms"} -2023-12-15T14:58:29.241Z INFO sending PrepareRequest {"height": 2775, "view": 0} -2023-12-15T14:58:29.241Z INFO sending Commit {"height": 2775, "view": 0} -2023-12-15T14:58:29.241Z INFO approving block {"height": 2775, "hash": "40e2a0ad5689aed45adb8b767253a798cc5d80ee2809d00abce13405a1d6f856", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a89801c4f88d817a83682ddbc2c0880e68f06fae0862bb1b4b0eda61ac92d6a2"} -2023-12-15T14:58:29.242Z INFO initializing dbft {"height": 2776, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:29.242Z debug frostfs-node/morph.go:229 new block {"index": 2775} -2023-12-15T14:58:29.612Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2775, "blockHeight": 2775, "took": "3.697468ms"} -2023-12-15T14:58:30.242Z INFO sending PrepareRequest {"height": 2776, "view": 0} -2023-12-15T14:58:30.242Z INFO sending Commit {"height": 2776, "view": 0} -2023-12-15T14:58:30.243Z INFO approving block {"height": 2776, "hash": "b4408a16c38cba69a44110505374787993ad1ccb6d7f9cff669645848d27a355", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40e2a0ad5689aed45adb8b767253a798cc5d80ee2809d00abce13405a1d6f856"} -2023-12-15T14:58:30.243Z INFO initializing dbft {"height": 2777, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:30.244Z debug frostfs-node/morph.go:229 new block {"index": 2776} -2023-12-15T14:58:30.612Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2776, "blockHeight": 2776, "took": "3.107041ms"} -2023-12-15T14:58:31.244Z INFO sending PrepareRequest {"height": 2777, "view": 0} -2023-12-15T14:58:31.244Z INFO sending Commit {"height": 2777, "view": 0} -2023-12-15T14:58:31.244Z INFO approving block {"height": 2777, "hash": "98e0f196410b033e9aed8c6214dfcfcbf0299bce09d2da7504dc03a3255e4c77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4408a16c38cba69a44110505374787993ad1ccb6d7f9cff669645848d27a355"} -2023-12-15T14:58:31.245Z INFO initializing dbft {"height": 2778, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:31.245Z debug frostfs-node/morph.go:229 new block {"index": 2777} -2023-12-15T14:58:31.612Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2777, "blockHeight": 2777, "took": "3.634552ms"} -2023-12-15T14:58:32.245Z INFO sending PrepareRequest {"height": 2778, "view": 0} -2023-12-15T14:58:32.245Z INFO sending Commit {"height": 2778, "view": 0} -2023-12-15T14:58:32.246Z INFO approving block {"height": 2778, "hash": "76b153dc9e1542d91a603c5d3d1c2ef82399fef2dbb222a97eaa171239cd667a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98e0f196410b033e9aed8c6214dfcfcbf0299bce09d2da7504dc03a3255e4c77"} -2023-12-15T14:58:32.247Z INFO initializing dbft {"height": 2779, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:32.247Z debug frostfs-node/morph.go:229 new block {"index": 2778} -2023-12-15T14:58:32.613Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2778, "blockHeight": 2778, "took": "3.851886ms"} -2023-12-15T14:58:33.246Z INFO sending PrepareRequest {"height": 2779, "view": 0} -2023-12-15T14:58:33.247Z INFO sending Commit {"height": 2779, "view": 0} -2023-12-15T14:58:33.247Z INFO approving block {"height": 2779, "hash": "622019a544dd97c31b8dce391a3c21eea10e68a92c823709c43d56098309f958", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76b153dc9e1542d91a603c5d3d1c2ef82399fef2dbb222a97eaa171239cd667a"} -2023-12-15T14:58:33.248Z INFO initializing dbft {"height": 2780, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:33.248Z debug frostfs-node/morph.go:229 new block {"index": 2779} -2023-12-15T14:58:33.613Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2779, "blockHeight": 2779, "took": "2.975276ms"} -2023-12-15T14:58:34.248Z INFO sending PrepareRequest {"height": 2780, "view": 0} -2023-12-15T14:58:34.248Z INFO sending Commit {"height": 2780, "view": 0} -2023-12-15T14:58:34.248Z INFO approving block {"height": 2780, "hash": "f4d36234bcb2a2c6879e1bf1f0ba7d8df2bf72b79eb9128f56cbfa8b4c3c6b02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "622019a544dd97c31b8dce391a3c21eea10e68a92c823709c43d56098309f958"} -2023-12-15T14:58:34.249Z INFO initializing dbft {"height": 2781, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:34.249Z debug frostfs-node/morph.go:229 new block {"index": 2780} -2023-12-15T14:58:34.614Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2780, "blockHeight": 2780, "took": "4.173842ms"} -2023-12-15T14:58:35.249Z INFO sending PrepareRequest {"height": 2781, "view": 0} -2023-12-15T14:58:35.250Z INFO sending Commit {"height": 2781, "view": 0} -2023-12-15T14:58:35.250Z INFO approving block {"height": 2781, "hash": "991543df18ef0e28cc6f1c530e967bbac1a47084049b91c0535a5c030ab257d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4d36234bcb2a2c6879e1bf1f0ba7d8df2bf72b79eb9128f56cbfa8b4c3c6b02"} -2023-12-15T14:58:35.251Z INFO initializing dbft {"height": 2782, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:35.252Z debug frostfs-node/morph.go:229 new block {"index": 2781} -2023-12-15T14:58:35.614Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2781, "blockHeight": 2781, "took": "3.07172ms"} -2023-12-15T14:58:36.251Z INFO sending PrepareRequest {"height": 2782, "view": 0} -2023-12-15T14:58:36.251Z INFO sending Commit {"height": 2782, "view": 0} -2023-12-15T14:58:36.251Z INFO approving block {"height": 2782, "hash": "50fc98d6c798c840c656af2c5d8d9f011c562584ff744c26b747ac57d30da524", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "991543df18ef0e28cc6f1c530e967bbac1a47084049b91c0535a5c030ab257d3"} -2023-12-15T14:58:36.253Z INFO initializing dbft {"height": 2783, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:36.254Z debug frostfs-node/morph.go:229 new block {"index": 2782} -2023-12-15T14:58:36.614Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2782, "blockHeight": 2782, "took": "3.468591ms"} -2023-12-15T14:58:37.252Z INFO sending PrepareRequest {"height": 2783, "view": 0} -2023-12-15T14:58:37.252Z INFO sending Commit {"height": 2783, "view": 0} -2023-12-15T14:58:37.252Z INFO approving block {"height": 2783, "hash": "a7e030877143316541d1c4dda79d94406873953cecab20bc23b924fbfdbf5689", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50fc98d6c798c840c656af2c5d8d9f011c562584ff744c26b747ac57d30da524"} -2023-12-15T14:58:37.254Z INFO initializing dbft {"height": 2784, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:37.255Z debug frostfs-node/morph.go:229 new block {"index": 2783} -2023-12-15T14:58:37.614Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2783, "blockHeight": 2783, "took": "2.987338ms"} -2023-12-15T14:58:38.253Z INFO sending PrepareRequest {"height": 2784, "view": 0} -2023-12-15T14:58:38.253Z INFO sending Commit {"height": 2784, "view": 0} -2023-12-15T14:58:38.254Z INFO approving block {"height": 2784, "hash": "108a6193c360f3b2a5162f8b4213b696d2cdf63d646b8c430a7cbd949182fe7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7e030877143316541d1c4dda79d94406873953cecab20bc23b924fbfdbf5689"} -2023-12-15T14:58:38.255Z INFO initializing dbft {"height": 2785, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:38.255Z debug frostfs-node/morph.go:229 new block {"index": 2784} -2023-12-15T14:58:38.615Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2784, "blockHeight": 2784, "took": "3.145732ms"} -2023-12-15T14:58:39.255Z INFO sending PrepareRequest {"height": 2785, "view": 0} -2023-12-15T14:58:39.255Z INFO sending Commit {"height": 2785, "view": 0} -2023-12-15T14:58:39.255Z INFO approving block {"height": 2785, "hash": "841cdd8f217db901d88b4e20fa4471d13ecaf7a97f6d9f81d8d251246b59466e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "108a6193c360f3b2a5162f8b4213b696d2cdf63d646b8c430a7cbd949182fe7f"} -2023-12-15T14:58:39.256Z INFO initializing dbft {"height": 2786, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:39.256Z debug frostfs-node/morph.go:229 new block {"index": 2785} -2023-12-15T14:58:39.615Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2785, "blockHeight": 2785, "took": "2.775371ms"} -2023-12-15T14:58:40.256Z INFO sending PrepareRequest {"height": 2786, "view": 0} -2023-12-15T14:58:40.256Z INFO sending Commit {"height": 2786, "view": 0} -2023-12-15T14:58:40.256Z INFO approving block {"height": 2786, "hash": "53eb7859cf8f1312c267a948dd674d6a2cd0da5f9e9fc7b5d41a01c1271fd039", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "841cdd8f217db901d88b4e20fa4471d13ecaf7a97f6d9f81d8d251246b59466e"} -2023-12-15T14:58:40.257Z INFO initializing dbft {"height": 2787, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:40.258Z debug frostfs-node/morph.go:229 new block {"index": 2786} -2023-12-15T14:58:40.616Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2786, "blockHeight": 2786, "took": "3.329007ms"} -2023-12-15T14:58:41.257Z INFO sending PrepareRequest {"height": 2787, "view": 0} -2023-12-15T14:58:41.257Z INFO sending Commit {"height": 2787, "view": 0} -2023-12-15T14:58:41.257Z INFO approving block {"height": 2787, "hash": "59bca269c9073aababd2dd69eef03d3e364ce4f59465ad1fd017065db39374e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53eb7859cf8f1312c267a948dd674d6a2cd0da5f9e9fc7b5d41a01c1271fd039"} -2023-12-15T14:58:41.258Z INFO initializing dbft {"height": 2788, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:41.258Z debug frostfs-node/morph.go:229 new block {"index": 2787} -2023-12-15T14:58:41.617Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2787, "blockHeight": 2787, "took": "3.792841ms"} -2023-12-15T14:58:42.259Z INFO sending PrepareRequest {"height": 2788, "view": 0} -2023-12-15T14:58:42.259Z INFO sending Commit {"height": 2788, "view": 0} -2023-12-15T14:58:42.260Z INFO approving block {"height": 2788, "hash": "d123dbce70f5d877430a0d5662d16df5505d9985fdef842b74a6f49e669252f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59bca269c9073aababd2dd69eef03d3e364ce4f59465ad1fd017065db39374e4"} -2023-12-15T14:58:42.260Z INFO initializing dbft {"height": 2789, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:42.261Z debug frostfs-node/morph.go:229 new block {"index": 2788} -2023-12-15T14:58:42.617Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2788, "blockHeight": 2788, "took": "3.023948ms"} -2023-12-15T14:58:43.260Z INFO sending PrepareRequest {"height": 2789, "view": 0} -2023-12-15T14:58:43.260Z INFO sending Commit {"height": 2789, "view": 0} -2023-12-15T14:58:43.260Z INFO approving block {"height": 2789, "hash": "cdd21d97367f25437bbdce30948ef5a577a58772e239a3005c9e8f99b37a1aea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d123dbce70f5d877430a0d5662d16df5505d9985fdef842b74a6f49e669252f8"} -2023-12-15T14:58:43.261Z INFO initializing dbft {"height": 2790, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:43.262Z debug frostfs-node/morph.go:229 new block {"index": 2789} -2023-12-15T14:58:43.617Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2789, "blockHeight": 2789, "took": "3.023754ms"} -2023-12-15T14:58:44.261Z INFO sending PrepareRequest {"height": 2790, "view": 0} -2023-12-15T14:58:44.262Z INFO sending Commit {"height": 2790, "view": 0} -2023-12-15T14:58:44.262Z INFO approving block {"height": 2790, "hash": "fce78fa7ea4904939c2541b56e9d51f5364443128768b031141ef78c417d2b81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdd21d97367f25437bbdce30948ef5a577a58772e239a3005c9e8f99b37a1aea"} -2023-12-15T14:58:44.263Z INFO initializing dbft {"height": 2791, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:44.264Z debug frostfs-node/morph.go:229 new block {"index": 2790} -2023-12-15T14:58:44.620Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2790, "blockHeight": 2790, "took": "4.7287ms"} -2023-12-15T14:58:45.263Z INFO sending PrepareRequest {"height": 2791, "view": 0} -2023-12-15T14:58:45.263Z INFO sending Commit {"height": 2791, "view": 0} -2023-12-15T14:58:45.264Z INFO approving block {"height": 2791, "hash": "03fa7073cacca75a6907882f87ae4f0f2aabbb2c92b1455457a8fc48cf21f761", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fce78fa7ea4904939c2541b56e9d51f5364443128768b031141ef78c417d2b81"} -2023-12-15T14:58:45.265Z INFO initializing dbft {"height": 2792, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:45.266Z debug frostfs-node/morph.go:229 new block {"index": 2791} -2023-12-15T14:58:45.622Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2791, "blockHeight": 2791, "took": "6.452228ms"} -2023-12-15T14:58:46.265Z INFO sending PrepareRequest {"height": 2792, "view": 0} -2023-12-15T14:58:46.265Z INFO sending Commit {"height": 2792, "view": 0} -2023-12-15T14:58:46.265Z INFO approving block {"height": 2792, "hash": "f301dbd8a8a2192bfcc13d81dc112dd68d41cacd0cefc059810d77c0c4ecd48a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03fa7073cacca75a6907882f87ae4f0f2aabbb2c92b1455457a8fc48cf21f761"} -2023-12-15T14:58:46.267Z INFO initializing dbft {"height": 2793, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:46.268Z debug frostfs-node/morph.go:229 new block {"index": 2792} -2023-12-15T14:58:46.621Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2792, "blockHeight": 2792, "took": "4.898345ms"} -2023-12-15T14:58:47.267Z INFO sending PrepareRequest {"height": 2793, "view": 0} -2023-12-15T14:58:47.268Z INFO sending Commit {"height": 2793, "view": 0} -2023-12-15T14:58:47.268Z INFO approving block {"height": 2793, "hash": "365e766990cb9176c3df46e4542cbb53f41521d28186f840f9fbc18cbacbc674", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f301dbd8a8a2192bfcc13d81dc112dd68d41cacd0cefc059810d77c0c4ecd48a"} -2023-12-15T14:58:47.270Z INFO initializing dbft {"height": 2794, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:47.270Z debug frostfs-node/morph.go:229 new block {"index": 2793} -2023-12-15T14:58:47.622Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2793, "blockHeight": 2793, "took": "4.759136ms"} -2023-12-15T14:58:48.269Z INFO sending PrepareRequest {"height": 2794, "view": 0} -2023-12-15T14:58:48.270Z INFO sending Commit {"height": 2794, "view": 0} -2023-12-15T14:58:48.270Z INFO approving block {"height": 2794, "hash": "aad77b9b7a43e34735e360b00eb59af1b3cb950bb9ee434c341dced325bc8aad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "365e766990cb9176c3df46e4542cbb53f41521d28186f840f9fbc18cbacbc674"} -2023-12-15T14:58:48.270Z INFO initializing dbft {"height": 2795, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:48.271Z debug frostfs-node/morph.go:229 new block {"index": 2794} -2023-12-15T14:58:48.622Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2794, "blockHeight": 2794, "took": "4.396229ms"} -2023-12-15T14:58:49.271Z INFO sending PrepareRequest {"height": 2795, "view": 0} -2023-12-15T14:58:49.271Z INFO sending Commit {"height": 2795, "view": 0} -2023-12-15T14:58:49.271Z INFO approving block {"height": 2795, "hash": "63499b556626700a1fcd3880111cdbf4386e080e4308652ff0999f68768b665d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad77b9b7a43e34735e360b00eb59af1b3cb950bb9ee434c341dced325bc8aad"} -2023-12-15T14:58:49.272Z INFO initializing dbft {"height": 2796, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:49.272Z debug frostfs-node/morph.go:229 new block {"index": 2795} -2023-12-15T14:58:49.623Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2795, "blockHeight": 2795, "took": "4.779379ms"} -2023-12-15T14:58:50.272Z INFO sending PrepareRequest {"height": 2796, "view": 0} -2023-12-15T14:58:50.272Z INFO sending Commit {"height": 2796, "view": 0} -2023-12-15T14:58:50.272Z INFO approving block {"height": 2796, "hash": "8c33040534a3eb908db81146f08643ab43c06eed89600dddcd386d3441bb4445", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63499b556626700a1fcd3880111cdbf4386e080e4308652ff0999f68768b665d"} -2023-12-15T14:58:50.273Z INFO initializing dbft {"height": 2797, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:50.274Z debug frostfs-node/morph.go:229 new block {"index": 2796} -2023-12-15T14:58:50.638Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2796, "blockHeight": 2796, "took": "19.320169ms"} -2023-12-15T14:58:51.274Z INFO sending PrepareRequest {"height": 2797, "view": 0} -2023-12-15T14:58:51.274Z INFO sending Commit {"height": 2797, "view": 0} -2023-12-15T14:58:51.275Z INFO approving block {"height": 2797, "hash": "904b8bab8c712cc73b859ff9178a81a9558dec6f4185246f42670158ae57f35d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c33040534a3eb908db81146f08643ab43c06eed89600dddcd386d3441bb4445"} -2023-12-15T14:58:51.276Z INFO initializing dbft {"height": 2798, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:51.276Z debug frostfs-node/morph.go:229 new block {"index": 2797} -2023-12-15T14:58:51.624Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2797, "blockHeight": 2797, "took": "4.357957ms"} -2023-12-15T14:58:52.276Z INFO sending PrepareRequest {"height": 2798, "view": 0} -2023-12-15T14:58:52.276Z INFO sending Commit {"height": 2798, "view": 0} -2023-12-15T14:58:52.276Z INFO approving block {"height": 2798, "hash": "d5ac95ad7c9346ea4bc3a318f2731a6c5d974d35b9cac4175b865f27a71f6d96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "904b8bab8c712cc73b859ff9178a81a9558dec6f4185246f42670158ae57f35d"} -2023-12-15T14:58:52.278Z INFO initializing dbft {"height": 2799, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:52.278Z debug frostfs-node/morph.go:229 new block {"index": 2798} -2023-12-15T14:58:52.344Z INFO bad notification {"contract": "bb0ce5f00f00c2d7eef4f8d0696cc0ad7d7f30b2", "event": "Roulette number: ", "error": "event Roulette number: does not exist"} -2023-12-15T14:58:52.623Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2798, "blockHeight": 2798, "took": "2.862594ms"} -2023-12-15T14:58:53.277Z INFO sending PrepareRequest {"height": 2799, "view": 0} -2023-12-15T14:58:53.277Z INFO sending Commit {"height": 2799, "view": 0} -2023-12-15T14:58:53.277Z INFO approving block {"height": 2799, "hash": "4875c672ffc8ddf14d59b39ad15ffd426eda6f01c1990918038a92dce2b88947", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5ac95ad7c9346ea4bc3a318f2731a6c5d974d35b9cac4175b865f27a71f6d96"} -2023-12-15T14:58:53.278Z INFO initializing dbft {"height": 2800, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:53.278Z debug frostfs-node/morph.go:229 new block {"index": 2799} -2023-12-15T14:58:53.623Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2799, "blockHeight": 2799, "took": "2.7341ms"} -2023-12-15T14:58:54.278Z INFO sending PrepareRequest {"height": 2800, "view": 0} -2023-12-15T14:58:54.278Z INFO sending Commit {"height": 2800, "view": 0} -2023-12-15T14:58:54.278Z INFO approving block {"height": 2800, "hash": "204c1894115b7033053b24e88359040d81d105162a57662b3eef3c5a63ff1f8f", "tx_count": 1, "merkle": "c0cc24db47cedcfa4ce00dfed4222a9647c4ec23d887561c4fb1c0fd3518d83e", "prev": "4875c672ffc8ddf14d59b39ad15ffd426eda6f01c1990918038a92dce2b88947"} -2023-12-15T14:58:54.279Z INFO bad notification {"contract": "bb0ce5f00f00c2d7eef4f8d0696cc0ad7d7f30b2", "event": "Roulette number: ", "error": "event Roulette number: does not exist"} -2023-12-15T14:58:54.280Z INFO initializing dbft {"height": 2801, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:54.280Z debug frostfs-node/morph.go:229 new block {"index": 2800} -2023-12-15T14:58:54.627Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 2800, "blockHeight": 2800, "took": "5.239504ms"} -2023-12-15T14:58:55.279Z INFO sending PrepareRequest {"height": 2801, "view": 0} -2023-12-15T14:58:55.280Z INFO sending Commit {"height": 2801, "view": 0} -2023-12-15T14:58:55.280Z INFO approving block {"height": 2801, "hash": "dc8b73e42f1aa912921031586e0a38decf60a78bfd0e8f3de632bc52dc997311", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "204c1894115b7033053b24e88359040d81d105162a57662b3eef3c5a63ff1f8f"} -2023-12-15T14:58:55.281Z INFO initializing dbft {"height": 2802, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:55.281Z debug frostfs-node/morph.go:229 new block {"index": 2801} -2023-12-15T14:58:55.625Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2801, "blockHeight": 2801, "took": "3.09997ms"} -2023-12-15T14:58:56.281Z INFO sending PrepareRequest {"height": 2802, "view": 0} -2023-12-15T14:58:56.281Z INFO sending Commit {"height": 2802, "view": 0} -2023-12-15T14:58:56.281Z INFO approving block {"height": 2802, "hash": "74c9e14c34bb3c010c8c5ef73735dd586c31880403c51a58cc67172f414ae953", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc8b73e42f1aa912921031586e0a38decf60a78bfd0e8f3de632bc52dc997311"} -2023-12-15T14:58:56.282Z INFO initializing dbft {"height": 2803, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:56.283Z debug frostfs-node/morph.go:229 new block {"index": 2802} -2023-12-15T14:58:56.626Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2802, "blockHeight": 2802, "took": "2.843233ms"} -2023-12-15T14:58:57.282Z INFO sending PrepareRequest {"height": 2803, "view": 0} -2023-12-15T14:58:57.282Z INFO sending Commit {"height": 2803, "view": 0} -2023-12-15T14:58:57.282Z INFO approving block {"height": 2803, "hash": "0acf40117ebad8bd82655a9d19f433b8b8245b85dd4353cbed9b9f60e4de8d67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74c9e14c34bb3c010c8c5ef73735dd586c31880403c51a58cc67172f414ae953"} -2023-12-15T14:58:57.283Z INFO initializing dbft {"height": 2804, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:57.284Z debug frostfs-node/morph.go:229 new block {"index": 2803} -2023-12-15T14:58:57.628Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2803, "blockHeight": 2803, "took": "4.392772ms"} -2023-12-15T14:58:58.284Z INFO sending PrepareRequest {"height": 2804, "view": 0} -2023-12-15T14:58:58.284Z INFO sending Commit {"height": 2804, "view": 0} -2023-12-15T14:58:58.284Z INFO approving block {"height": 2804, "hash": "73b49d85a0cb683c696be95207ee895c9dba9fcc61b3a602b3b9a3f22ddbed1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0acf40117ebad8bd82655a9d19f433b8b8245b85dd4353cbed9b9f60e4de8d67"} -2023-12-15T14:58:58.285Z INFO initializing dbft {"height": 2805, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:58.285Z debug frostfs-node/morph.go:229 new block {"index": 2804} -2023-12-15T14:58:58.628Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2804, "blockHeight": 2804, "took": "3.593905ms"} -2023-12-15T14:58:59.285Z INFO sending PrepareRequest {"height": 2805, "view": 0} -2023-12-15T14:58:59.286Z INFO sending Commit {"height": 2805, "view": 0} -2023-12-15T14:58:59.286Z INFO approving block {"height": 2805, "hash": "a04c0dbbf80f5680af1624ee4376994ffa3d9aae7ef4a88985a557ce02b73aed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73b49d85a0cb683c696be95207ee895c9dba9fcc61b3a602b3b9a3f22ddbed1c"} -2023-12-15T14:58:59.286Z INFO initializing dbft {"height": 2806, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:58:59.287Z debug frostfs-node/morph.go:229 new block {"index": 2805} -2023-12-15T14:58:59.630Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2805, "blockHeight": 2805, "took": "4.8036ms"} -2023-12-15T14:59:00.286Z INFO sending PrepareRequest {"height": 2806, "view": 0} -2023-12-15T14:59:00.286Z INFO sending Commit {"height": 2806, "view": 0} -2023-12-15T14:59:00.287Z INFO approving block {"height": 2806, "hash": "5e0426b4f507f9abfb02da270d2935b839fa96ae7933b694dc834f56e40c01ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a04c0dbbf80f5680af1624ee4376994ffa3d9aae7ef4a88985a557ce02b73aed"} -2023-12-15T14:59:00.288Z INFO initializing dbft {"height": 2807, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:00.288Z debug frostfs-node/morph.go:229 new block {"index": 2806} -2023-12-15T14:59:00.630Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2806, "blockHeight": 2806, "took": "4.610478ms"} -2023-12-15T14:59:01.288Z INFO sending PrepareRequest {"height": 2807, "view": 0} -2023-12-15T14:59:01.288Z INFO sending Commit {"height": 2807, "view": 0} -2023-12-15T14:59:01.288Z INFO approving block {"height": 2807, "hash": "1e9fb7b97aaf75dd92bd7fa392c4f75f53396fb1eb2bfb3fbff2f5031cd5b926", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e0426b4f507f9abfb02da270d2935b839fa96ae7933b694dc834f56e40c01ca"} -2023-12-15T14:59:01.289Z INFO initializing dbft {"height": 2808, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:01.289Z debug frostfs-node/morph.go:229 new block {"index": 2807} -2023-12-15T14:59:01.631Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2807, "blockHeight": 2807, "took": "5.013366ms"} -2023-12-15T14:59:02.289Z INFO sending PrepareRequest {"height": 2808, "view": 0} -2023-12-15T14:59:02.289Z INFO sending Commit {"height": 2808, "view": 0} -2023-12-15T14:59:02.290Z INFO approving block {"height": 2808, "hash": "e620667f33ad37d30239bf558fe51830f6b5747b416dd8d373920724b611b80b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e9fb7b97aaf75dd92bd7fa392c4f75f53396fb1eb2bfb3fbff2f5031cd5b926"} -2023-12-15T14:59:02.291Z INFO initializing dbft {"height": 2809, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:02.291Z debug frostfs-node/morph.go:229 new block {"index": 2808} -2023-12-15T14:59:02.630Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2808, "blockHeight": 2808, "took": "3.024968ms"} -2023-12-15T14:59:03.291Z INFO sending PrepareRequest {"height": 2809, "view": 0} -2023-12-15T14:59:03.291Z INFO sending Commit {"height": 2809, "view": 0} -2023-12-15T14:59:03.291Z INFO approving block {"height": 2809, "hash": "18bbc94f7d104246d16cd9a587d8765f23cf1da10191ccd426e3342ffd261365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e620667f33ad37d30239bf558fe51830f6b5747b416dd8d373920724b611b80b"} -2023-12-15T14:59:03.292Z INFO initializing dbft {"height": 2810, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:03.293Z debug frostfs-node/morph.go:229 new block {"index": 2809} -2023-12-15T14:59:03.631Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2809, "blockHeight": 2809, "took": "4.12141ms"} -2023-12-15T14:59:04.292Z INFO sending PrepareRequest {"height": 2810, "view": 0} -2023-12-15T14:59:04.292Z INFO sending Commit {"height": 2810, "view": 0} -2023-12-15T14:59:04.293Z INFO approving block {"height": 2810, "hash": "5ac84b094c47c4a86b92e6543cba6f29e8d7d9bb7f5676b0abedc666f5962730", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18bbc94f7d104246d16cd9a587d8765f23cf1da10191ccd426e3342ffd261365"} -2023-12-15T14:59:04.293Z INFO initializing dbft {"height": 2811, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:04.294Z debug frostfs-node/morph.go:229 new block {"index": 2810} -2023-12-15T14:59:04.632Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2810, "blockHeight": 2810, "took": "4.242504ms"} -2023-12-15T14:59:05.294Z INFO sending PrepareRequest {"height": 2811, "view": 0} -2023-12-15T14:59:05.294Z INFO sending Commit {"height": 2811, "view": 0} -2023-12-15T14:59:05.294Z INFO approving block {"height": 2811, "hash": "2a314dca2ec02b4bc28a7aa63361bf38154429ac18f54a92f938748e72808f1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ac84b094c47c4a86b92e6543cba6f29e8d7d9bb7f5676b0abedc666f5962730"} -2023-12-15T14:59:05.295Z INFO initializing dbft {"height": 2812, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:05.296Z debug frostfs-node/morph.go:229 new block {"index": 2811} -2023-12-15T14:59:05.631Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2811, "blockHeight": 2811, "took": "3.262889ms"} -2023-12-15T14:59:06.296Z INFO sending PrepareRequest {"height": 2812, "view": 0} -2023-12-15T14:59:06.296Z INFO sending Commit {"height": 2812, "view": 0} -2023-12-15T14:59:06.296Z INFO approving block {"height": 2812, "hash": "b077ccf5800bbff46550519eeac12390c0056738e596135bfd3a75da52df3ed4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a314dca2ec02b4bc28a7aa63361bf38154429ac18f54a92f938748e72808f1e"} -2023-12-15T14:59:06.297Z INFO initializing dbft {"height": 2813, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:06.297Z debug frostfs-node/morph.go:229 new block {"index": 2812} -2023-12-15T14:59:06.632Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2812, "blockHeight": 2812, "took": "3.270096ms"} -2023-12-15T14:59:07.297Z INFO sending PrepareRequest {"height": 2813, "view": 0} -2023-12-15T14:59:07.297Z INFO sending Commit {"height": 2813, "view": 0} -2023-12-15T14:59:07.297Z INFO approving block {"height": 2813, "hash": "98447e7f0f2de63c63f35b2a7c20f9f2eec03e479ac24085b8a266f7e5a7f18d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b077ccf5800bbff46550519eeac12390c0056738e596135bfd3a75da52df3ed4"} -2023-12-15T14:59:07.297Z INFO initializing dbft {"height": 2814, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:07.298Z debug frostfs-node/morph.go:229 new block {"index": 2813} -2023-12-15T14:59:07.632Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2813, "blockHeight": 2813, "took": "3.178823ms"} -2023-12-15T14:59:08.298Z INFO sending PrepareRequest {"height": 2814, "view": 0} -2023-12-15T14:59:08.298Z INFO sending Commit {"height": 2814, "view": 0} -2023-12-15T14:59:08.299Z INFO approving block {"height": 2814, "hash": "542cd65642ec564a03f186797ba53cd6dc2fb53ddfa9d797f409977fc989f7a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98447e7f0f2de63c63f35b2a7c20f9f2eec03e479ac24085b8a266f7e5a7f18d"} -2023-12-15T14:59:08.300Z INFO initializing dbft {"height": 2815, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:08.300Z debug frostfs-node/morph.go:229 new block {"index": 2814} -2023-12-15T14:59:08.633Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2814, "blockHeight": 2814, "took": "3.586595ms"} -2023-12-15T14:59:09.299Z INFO sending PrepareRequest {"height": 2815, "view": 0} -2023-12-15T14:59:09.299Z INFO sending Commit {"height": 2815, "view": 0} -2023-12-15T14:59:09.300Z INFO approving block {"height": 2815, "hash": "21b00520eed403ee9187383ebe617ea389896aef54f31fd9dda9bac010256566", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "542cd65642ec564a03f186797ba53cd6dc2fb53ddfa9d797f409977fc989f7a7"} -2023-12-15T14:59:09.300Z INFO initializing dbft {"height": 2816, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:09.301Z debug frostfs-node/morph.go:229 new block {"index": 2815} -2023-12-15T14:59:09.632Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 2815, "blockHeight": 2815, "took": "2.927915ms"} -2023-12-15T14:59:10.301Z INFO sending PrepareRequest {"height": 2816, "view": 0} -2023-12-15T14:59:10.301Z INFO sending Commit {"height": 2816, "view": 0} -2023-12-15T14:59:10.301Z INFO approving block {"height": 2816, "hash": "4a3e98af4f995250501a340e4d55a5f15724260b2e4ad67527aa5068cb49efa1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21b00520eed403ee9187383ebe617ea389896aef54f31fd9dda9bac010256566"} -2023-12-15T14:59:10.302Z INFO initializing dbft {"height": 2817, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:10.302Z debug frostfs-node/morph.go:229 new block {"index": 2816} -2023-12-15T14:59:10.635Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2816, "blockHeight": 2816, "took": "5.391187ms"} -2023-12-15T14:59:11.301Z INFO sending PrepareRequest {"height": 2817, "view": 0} -2023-12-15T14:59:11.302Z INFO sending Commit {"height": 2817, "view": 0} -2023-12-15T14:59:11.302Z INFO approving block {"height": 2817, "hash": "7011f32607face3172611b7b18be3f2d72c613e679fc29ae6aa0b9c7f3247ee4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a3e98af4f995250501a340e4d55a5f15724260b2e4ad67527aa5068cb49efa1"} -2023-12-15T14:59:11.303Z INFO initializing dbft {"height": 2818, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:11.303Z debug frostfs-node/morph.go:229 new block {"index": 2817} -2023-12-15T14:59:11.305Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T14:59:11.307Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:59:11.308Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:59:11.633Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2817, "blockHeight": 2817, "took": "3.307056ms"} -2023-12-15T14:59:12.302Z INFO sending PrepareRequest {"height": 2818, "view": 0} -2023-12-15T14:59:12.302Z INFO sending Commit {"height": 2818, "view": 0} -2023-12-15T14:59:12.303Z INFO approving block {"height": 2818, "hash": "c80b6d0d8618796543e05ddd30e2ae185cf12fe401ef3561e980241e3417172e", "tx_count": 2, "merkle": "cbbe9d9e32c6df823a781838db1865553c35cef11fee1070fd127496cbb3baff", "prev": "7011f32607face3172611b7b18be3f2d72c613e679fc29ae6aa0b9c7f3247ee4"} -2023-12-15T14:59:12.303Z INFO runtime log {"tx": "21ba9501e8ffa3dbf06537e466af8fcb4db38793c79db9eb6ed601f17256f471", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T14:59:12.303Z INFO runtime log {"tx": "21ba9501e8ffa3dbf06537e466af8fcb4db38793c79db9eb6ed601f17256f471", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T14:59:12.304Z INFO initializing dbft {"height": 2819, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:12.305Z debug frostfs-node/morph.go:229 new block {"index": 2818} -2023-12-15T14:59:12.635Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2818, "blockHeight": 2818, "took": "4.46197ms"} -2023-12-15T14:59:13.303Z INFO sending PrepareRequest {"height": 2819, "view": 0} -2023-12-15T14:59:13.304Z INFO sending Commit {"height": 2819, "view": 0} -2023-12-15T14:59:13.304Z INFO approving block {"height": 2819, "hash": "cbeda4390ca50508b9870faf3d6d0133431db80d2281cae98fc09d4c11b223f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c80b6d0d8618796543e05ddd30e2ae185cf12fe401ef3561e980241e3417172e"} -2023-12-15T14:59:13.305Z INFO initializing dbft {"height": 2820, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:13.305Z debug frostfs-node/morph.go:229 new block {"index": 2819} -2023-12-15T14:59:13.637Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2819, "blockHeight": 2819, "took": "5.999442ms"} -2023-12-15T14:59:14.305Z INFO sending PrepareRequest {"height": 2820, "view": 0} -2023-12-15T14:59:14.305Z INFO sending Commit {"height": 2820, "view": 0} -2023-12-15T14:59:14.305Z INFO approving block {"height": 2820, "hash": "75c3172050ccbef74491b932ad475d4998f4d4569094224ee6f49773ea279233", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbeda4390ca50508b9870faf3d6d0133431db80d2281cae98fc09d4c11b223f7"} -2023-12-15T14:59:14.306Z INFO initializing dbft {"height": 2821, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:14.307Z debug frostfs-node/morph.go:229 new block {"index": 2820} -2023-12-15T14:59:14.636Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2820, "blockHeight": 2820, "took": "4.707019ms"} -2023-12-15T14:59:15.306Z INFO sending PrepareRequest {"height": 2821, "view": 0} -2023-12-15T14:59:15.306Z INFO sending Commit {"height": 2821, "view": 0} -2023-12-15T14:59:15.307Z INFO approving block {"height": 2821, "hash": "58df9d36742c35ef2f5f6c1650868d2b212da99a56c953ca4bf020b12fdb6e59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75c3172050ccbef74491b932ad475d4998f4d4569094224ee6f49773ea279233"} -2023-12-15T14:59:15.308Z INFO initializing dbft {"height": 2822, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:15.308Z debug frostfs-node/morph.go:229 new block {"index": 2821} -2023-12-15T14:59:15.637Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2821, "blockHeight": 2821, "took": "5.294486ms"} -2023-12-15T14:59:16.308Z INFO sending PrepareRequest {"height": 2822, "view": 0} -2023-12-15T14:59:16.308Z INFO sending Commit {"height": 2822, "view": 0} -2023-12-15T14:59:16.309Z INFO approving block {"height": 2822, "hash": "504f21685cc10a18ba3bc1536ec52614950dfad24299d861e7cf4bbf74e334a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58df9d36742c35ef2f5f6c1650868d2b212da99a56c953ca4bf020b12fdb6e59"} -2023-12-15T14:59:16.310Z INFO initializing dbft {"height": 2823, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:16.311Z debug frostfs-node/morph.go:229 new block {"index": 2822} -2023-12-15T14:59:16.635Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2822, "blockHeight": 2822, "took": "2.949466ms"} -2023-12-15T14:59:17.309Z INFO sending PrepareRequest {"height": 2823, "view": 0} -2023-12-15T14:59:17.310Z INFO sending Commit {"height": 2823, "view": 0} -2023-12-15T14:59:17.310Z INFO approving block {"height": 2823, "hash": "75f7c21081cf04605a60b97d146e2dafd4c4fd847ac12942ac571a38cab28bd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "504f21685cc10a18ba3bc1536ec52614950dfad24299d861e7cf4bbf74e334a8"} -2023-12-15T14:59:17.310Z INFO initializing dbft {"height": 2824, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:17.311Z debug frostfs-node/morph.go:229 new block {"index": 2823} -2023-12-15T14:59:17.637Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2823, "blockHeight": 2823, "took": "4.312648ms"} -2023-12-15T14:59:18.311Z INFO sending PrepareRequest {"height": 2824, "view": 0} -2023-12-15T14:59:18.311Z INFO sending Commit {"height": 2824, "view": 0} -2023-12-15T14:59:18.311Z INFO approving block {"height": 2824, "hash": "b05101c4c44b9d5d77e5e77fdbfdd6074fcae428a3634e4f41edcfbc226e0712", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75f7c21081cf04605a60b97d146e2dafd4c4fd847ac12942ac571a38cab28bd7"} -2023-12-15T14:59:18.312Z INFO initializing dbft {"height": 2825, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:18.313Z debug frostfs-node/morph.go:229 new block {"index": 2824} -2023-12-15T14:59:18.636Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2824, "blockHeight": 2824, "took": "3.090468ms"} -2023-12-15T14:59:19.312Z INFO sending PrepareRequest {"height": 2825, "view": 0} -2023-12-15T14:59:19.312Z INFO sending Commit {"height": 2825, "view": 0} -2023-12-15T14:59:19.312Z INFO approving block {"height": 2825, "hash": "61add696879f4b0a87e19367eb4878994f6cc7dbbc21f91611e3c655575190c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b05101c4c44b9d5d77e5e77fdbfdd6074fcae428a3634e4f41edcfbc226e0712"} -2023-12-15T14:59:19.313Z INFO initializing dbft {"height": 2826, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:19.313Z debug frostfs-node/morph.go:229 new block {"index": 2825} -2023-12-15T14:59:19.637Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2825, "blockHeight": 2825, "took": "3.050619ms"} -2023-12-15T14:59:20.313Z INFO sending PrepareRequest {"height": 2826, "view": 0} -2023-12-15T14:59:20.313Z INFO sending Commit {"height": 2826, "view": 0} -2023-12-15T14:59:20.314Z INFO approving block {"height": 2826, "hash": "9a5617692128fc154ea7ac64803416237ce454172518ac5fcc5d8ad3a7f18f33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61add696879f4b0a87e19367eb4878994f6cc7dbbc21f91611e3c655575190c1"} -2023-12-15T14:59:20.315Z INFO initializing dbft {"height": 2827, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:20.315Z debug frostfs-node/morph.go:229 new block {"index": 2826} -2023-12-15T14:59:20.641Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2826, "blockHeight": 2826, "took": "6.585629ms"} -2023-12-15T14:59:21.315Z INFO sending PrepareRequest {"height": 2827, "view": 0} -2023-12-15T14:59:21.315Z INFO sending Commit {"height": 2827, "view": 0} -2023-12-15T14:59:21.315Z INFO approving block {"height": 2827, "hash": "3c9d7d892fb8fe819fc2903cd9acc13204f08cfc5eeaf62e5f121824bad3ad51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a5617692128fc154ea7ac64803416237ce454172518ac5fcc5d8ad3a7f18f33"} -2023-12-15T14:59:21.316Z INFO initializing dbft {"height": 2828, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:21.316Z debug frostfs-node/morph.go:229 new block {"index": 2827} -2023-12-15T14:59:21.639Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2827, "blockHeight": 2827, "took": "3.354509ms"} -2023-12-15T14:59:22.317Z INFO sending PrepareRequest {"height": 2828, "view": 0} -2023-12-15T14:59:22.317Z INFO sending Commit {"height": 2828, "view": 0} -2023-12-15T14:59:22.317Z INFO approving block {"height": 2828, "hash": "a78b10e117c4904aa0d179679cfc45f2163b6bc2cc5faff72f1ed37a20616e80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c9d7d892fb8fe819fc2903cd9acc13204f08cfc5eeaf62e5f121824bad3ad51"} -2023-12-15T14:59:22.318Z INFO initializing dbft {"height": 2829, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:22.318Z debug frostfs-node/morph.go:229 new block {"index": 2828} -2023-12-15T14:59:22.640Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2828, "blockHeight": 2828, "took": "3.987063ms"} -2023-12-15T14:59:23.318Z INFO sending PrepareRequest {"height": 2829, "view": 0} -2023-12-15T14:59:23.318Z INFO sending Commit {"height": 2829, "view": 0} -2023-12-15T14:59:23.319Z INFO approving block {"height": 2829, "hash": "c5cd6179389d03d117b63c6ab662b44683cd6f56a7d0050b8974f910d3056775", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a78b10e117c4904aa0d179679cfc45f2163b6bc2cc5faff72f1ed37a20616e80"} -2023-12-15T14:59:23.320Z INFO initializing dbft {"height": 2830, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:23.320Z debug frostfs-node/morph.go:229 new block {"index": 2829} -2023-12-15T14:59:23.640Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2829, "blockHeight": 2829, "took": "3.4046ms"} -2023-12-15T14:59:24.319Z INFO sending PrepareRequest {"height": 2830, "view": 0} -2023-12-15T14:59:24.320Z INFO sending Commit {"height": 2830, "view": 0} -2023-12-15T14:59:24.320Z INFO approving block {"height": 2830, "hash": "b708fa1e2b83c194354576c2b450dcacdb2eec0172478a92201d855ea2a4bfcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5cd6179389d03d117b63c6ab662b44683cd6f56a7d0050b8974f910d3056775"} -2023-12-15T14:59:24.321Z INFO initializing dbft {"height": 2831, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:24.321Z debug frostfs-node/morph.go:229 new block {"index": 2830} -2023-12-15T14:59:24.641Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2830, "blockHeight": 2830, "took": "4.151806ms"} -2023-12-15T14:59:25.321Z INFO sending PrepareRequest {"height": 2831, "view": 0} -2023-12-15T14:59:25.322Z INFO sending Commit {"height": 2831, "view": 0} -2023-12-15T14:59:25.322Z INFO approving block {"height": 2831, "hash": "ef3e3e08092bbaddbd9e27753763c0016f2d90223b54891a234e129d8b0d30c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b708fa1e2b83c194354576c2b450dcacdb2eec0172478a92201d855ea2a4bfcd"} -2023-12-15T14:59:25.323Z INFO initializing dbft {"height": 2832, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:25.324Z debug frostfs-node/morph.go:229 new block {"index": 2831} -2023-12-15T14:59:25.326Z info settlement/calls.go:106 start basic income distribution {"epoch": 12} -2023-12-15T14:59:25.328Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 12, "iteration": 2, "error": "no data for 1 iteration in 12 epoch for consumers's trusts"} -2023-12-15T14:59:25.642Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2831, "blockHeight": 2831, "took": "4.417418ms"} -2023-12-15T14:59:26.324Z INFO sending PrepareRequest {"height": 2832, "view": 0} -2023-12-15T14:59:26.324Z INFO sending Commit {"height": 2832, "view": 0} -2023-12-15T14:59:26.324Z INFO approving block {"height": 2832, "hash": "bfa365602a46f6783f143a6440b2c224e99c3ad96a1500d044ee4dbdd6fb5141", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef3e3e08092bbaddbd9e27753763c0016f2d90223b54891a234e129d8b0d30c5"} -2023-12-15T14:59:26.326Z INFO initializing dbft {"height": 2833, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:26.326Z debug frostfs-node/morph.go:229 new block {"index": 2832} -2023-12-15T14:59:26.641Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2832, "blockHeight": 2832, "took": "2.73486ms"} -2023-12-15T14:59:27.325Z INFO sending PrepareRequest {"height": 2833, "view": 0} -2023-12-15T14:59:27.325Z INFO sending Commit {"height": 2833, "view": 0} -2023-12-15T14:59:27.325Z INFO approving block {"height": 2833, "hash": "86c5a001b9a8392646536e8aba3e62db4c6b09ab32771a991269caaa8bcdafa7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfa365602a46f6783f143a6440b2c224e99c3ad96a1500d044ee4dbdd6fb5141"} -2023-12-15T14:59:27.326Z INFO initializing dbft {"height": 2834, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:27.326Z debug frostfs-node/morph.go:229 new block {"index": 2833} -2023-12-15T14:59:27.642Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2833, "blockHeight": 2833, "took": "2.868404ms"} -2023-12-15T14:59:28.326Z INFO sending PrepareRequest {"height": 2834, "view": 0} -2023-12-15T14:59:28.326Z INFO sending Commit {"height": 2834, "view": 0} -2023-12-15T14:59:28.326Z INFO approving block {"height": 2834, "hash": "88dfea6224af635127da3795cc54af9dc07633dba7a7aaa56c9862b95898a14f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86c5a001b9a8392646536e8aba3e62db4c6b09ab32771a991269caaa8bcdafa7"} -2023-12-15T14:59:28.327Z INFO initializing dbft {"height": 2835, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:28.327Z debug frostfs-node/morph.go:229 new block {"index": 2834} -2023-12-15T14:59:28.643Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2834, "blockHeight": 2834, "took": "2.907942ms"} -2023-12-15T14:59:29.327Z INFO sending PrepareRequest {"height": 2835, "view": 0} -2023-12-15T14:59:29.327Z INFO sending Commit {"height": 2835, "view": 0} -2023-12-15T14:59:29.327Z INFO approving block {"height": 2835, "hash": "0da0720bef98d3a42b31ae8b225a0ee22d2945b51a7a6039af7e658d3e1e44e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88dfea6224af635127da3795cc54af9dc07633dba7a7aaa56c9862b95898a14f"} -2023-12-15T14:59:29.329Z INFO initializing dbft {"height": 2836, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:29.329Z debug frostfs-node/morph.go:229 new block {"index": 2835} -2023-12-15T14:59:29.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2835, "blockHeight": 2835, "took": "3.621773ms"} -2023-12-15T14:59:30.329Z INFO sending PrepareRequest {"height": 2836, "view": 0} -2023-12-15T14:59:30.329Z INFO sending Commit {"height": 2836, "view": 0} -2023-12-15T14:59:30.330Z INFO approving block {"height": 2836, "hash": "b273f4521ba759e5986007d7d55a57eb67c683b880ce80033343835e9d427255", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0da0720bef98d3a42b31ae8b225a0ee22d2945b51a7a6039af7e658d3e1e44e7"} -2023-12-15T14:59:30.331Z INFO initializing dbft {"height": 2837, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:30.332Z debug frostfs-node/morph.go:229 new block {"index": 2836} -2023-12-15T14:59:30.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2836, "blockHeight": 2836, "took": "3.064944ms"} -2023-12-15T14:59:31.330Z INFO sending PrepareRequest {"height": 2837, "view": 0} -2023-12-15T14:59:31.331Z INFO sending Commit {"height": 2837, "view": 0} -2023-12-15T14:59:31.331Z INFO approving block {"height": 2837, "hash": "4b00e01851ee8607e7cb505c335f14031bf42ffc709adcbb9b424078c4496543", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b273f4521ba759e5986007d7d55a57eb67c683b880ce80033343835e9d427255"} -2023-12-15T14:59:31.332Z INFO initializing dbft {"height": 2838, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:31.333Z debug frostfs-node/morph.go:229 new block {"index": 2837} -2023-12-15T14:59:31.647Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2837, "blockHeight": 2837, "took": "5.617075ms"} -2023-12-15T14:59:32.332Z INFO sending PrepareRequest {"height": 2838, "view": 0} -2023-12-15T14:59:32.332Z INFO sending Commit {"height": 2838, "view": 0} -2023-12-15T14:59:32.332Z INFO approving block {"height": 2838, "hash": "2c49640376dfc2ba1627d33319cd6fbb1b072d7d50ad45cb611d67f6cb04b75d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b00e01851ee8607e7cb505c335f14031bf42ffc709adcbb9b424078c4496543"} -2023-12-15T14:59:32.333Z INFO initializing dbft {"height": 2839, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:32.334Z debug frostfs-node/morph.go:229 new block {"index": 2838} -2023-12-15T14:59:32.646Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2838, "blockHeight": 2838, "took": "4.065288ms"} -2023-12-15T14:59:33.333Z INFO sending PrepareRequest {"height": 2839, "view": 0} -2023-12-15T14:59:33.334Z INFO sending Commit {"height": 2839, "view": 0} -2023-12-15T14:59:33.334Z INFO approving block {"height": 2839, "hash": "4f5b5a35b2c9c51da5c958433c821607b774c8fe158bdf00784a339331f56b08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c49640376dfc2ba1627d33319cd6fbb1b072d7d50ad45cb611d67f6cb04b75d"} -2023-12-15T14:59:33.335Z INFO initializing dbft {"height": 2840, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:33.336Z debug frostfs-node/morph.go:229 new block {"index": 2839} -2023-12-15T14:59:33.645Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2839, "blockHeight": 2839, "took": "2.990805ms"} -2023-12-15T14:59:34.335Z INFO sending PrepareRequest {"height": 2840, "view": 0} -2023-12-15T14:59:34.335Z INFO sending Commit {"height": 2840, "view": 0} -2023-12-15T14:59:34.335Z INFO approving block {"height": 2840, "hash": "fc47ff61d6534913724ad148da6b6fd4e3627c6175286ff3b0e8cb42a5b8ac99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f5b5a35b2c9c51da5c958433c821607b774c8fe158bdf00784a339331f56b08"} -2023-12-15T14:59:34.336Z INFO initializing dbft {"height": 2841, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:34.337Z debug frostfs-node/morph.go:229 new block {"index": 2840} -2023-12-15T14:59:34.646Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2840, "blockHeight": 2840, "took": "3.480725ms"} -2023-12-15T14:59:35.336Z INFO sending PrepareRequest {"height": 2841, "view": 0} -2023-12-15T14:59:35.336Z INFO sending Commit {"height": 2841, "view": 0} -2023-12-15T14:59:35.336Z INFO approving block {"height": 2841, "hash": "2d91cffc305a1075ad44452c1911eac0ed2055eb8d331322614767bcdd014301", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc47ff61d6534913724ad148da6b6fd4e3627c6175286ff3b0e8cb42a5b8ac99"} -2023-12-15T14:59:35.337Z INFO initializing dbft {"height": 2842, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:35.338Z debug frostfs-node/morph.go:229 new block {"index": 2841} -2023-12-15T14:59:35.646Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2841, "blockHeight": 2841, "took": "3.119604ms"} -2023-12-15T14:59:36.338Z INFO sending PrepareRequest {"height": 2842, "view": 0} -2023-12-15T14:59:36.338Z INFO sending Commit {"height": 2842, "view": 0} -2023-12-15T14:59:36.338Z INFO approving block {"height": 2842, "hash": "96a9249715937f0088277f1275b8de2d9f58fc1d3d600233cc1a6bb76bfa808b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d91cffc305a1075ad44452c1911eac0ed2055eb8d331322614767bcdd014301"} -2023-12-15T14:59:36.339Z INFO initializing dbft {"height": 2843, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:36.340Z debug frostfs-node/morph.go:229 new block {"index": 2842} -2023-12-15T14:59:36.647Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2842, "blockHeight": 2842, "took": "2.992018ms"} -2023-12-15T14:59:37.339Z INFO sending PrepareRequest {"height": 2843, "view": 0} -2023-12-15T14:59:37.339Z INFO sending Commit {"height": 2843, "view": 0} -2023-12-15T14:59:37.339Z INFO approving block {"height": 2843, "hash": "e7f456f210449cdb9a1e35ec6aa1731cc87e387c58d07565930574087c46b0bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96a9249715937f0088277f1275b8de2d9f58fc1d3d600233cc1a6bb76bfa808b"} -2023-12-15T14:59:37.340Z INFO initializing dbft {"height": 2844, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:37.340Z debug frostfs-node/morph.go:229 new block {"index": 2843} -2023-12-15T14:59:37.648Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2843, "blockHeight": 2843, "took": "3.579728ms"} -2023-12-15T14:59:38.340Z INFO sending PrepareRequest {"height": 2844, "view": 0} -2023-12-15T14:59:38.340Z INFO sending Commit {"height": 2844, "view": 0} -2023-12-15T14:59:38.340Z INFO approving block {"height": 2844, "hash": "cd441c7a6a6ec691e5b680477dc8ec5fdcaef1bf5ba7eb294d96c104444a95b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7f456f210449cdb9a1e35ec6aa1731cc87e387c58d07565930574087c46b0bc"} -2023-12-15T14:59:38.341Z INFO initializing dbft {"height": 2845, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:38.342Z debug frostfs-node/morph.go:229 new block {"index": 2844} -2023-12-15T14:59:38.649Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2844, "blockHeight": 2844, "took": "4.241128ms"} -2023-12-15T14:59:39.341Z INFO sending PrepareRequest {"height": 2845, "view": 0} -2023-12-15T14:59:39.341Z INFO sending Commit {"height": 2845, "view": 0} -2023-12-15T14:59:39.342Z INFO approving block {"height": 2845, "hash": "43a27209eb53e4ea7f9ed7b53b53d95321359b62adf44a171d9fd8e47d54c761", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd441c7a6a6ec691e5b680477dc8ec5fdcaef1bf5ba7eb294d96c104444a95b9"} -2023-12-15T14:59:39.343Z INFO initializing dbft {"height": 2846, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:39.343Z debug frostfs-node/morph.go:229 new block {"index": 2845} -2023-12-15T14:59:39.652Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2845, "blockHeight": 2845, "took": "6.317344ms"} -2023-12-15T14:59:40.343Z INFO sending PrepareRequest {"height": 2846, "view": 0} -2023-12-15T14:59:40.343Z INFO sending Commit {"height": 2846, "view": 0} -2023-12-15T14:59:40.344Z INFO approving block {"height": 2846, "hash": "5c07715e13b4a4c53e84cb140c80cfaf005bf1ebb80a7ead1c08b70c6658e55e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43a27209eb53e4ea7f9ed7b53b53d95321359b62adf44a171d9fd8e47d54c761"} -2023-12-15T14:59:40.345Z INFO initializing dbft {"height": 2847, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:40.345Z debug frostfs-node/morph.go:229 new block {"index": 2846} -2023-12-15T14:59:40.649Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2846, "blockHeight": 2846, "took": "3.029326ms"} -2023-12-15T14:59:41.345Z INFO sending PrepareRequest {"height": 2847, "view": 0} -2023-12-15T14:59:41.345Z INFO sending Commit {"height": 2847, "view": 0} -2023-12-15T14:59:41.345Z INFO approving block {"height": 2847, "hash": "155a4e6d0dd0925c07634215a1a336af61afa31ad2bf80790bbfa43b8d33f731", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c07715e13b4a4c53e84cb140c80cfaf005bf1ebb80a7ead1c08b70c6658e55e"} -2023-12-15T14:59:41.346Z INFO initializing dbft {"height": 2848, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:41.346Z debug frostfs-node/morph.go:229 new block {"index": 2847} -2023-12-15T14:59:41.651Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2847, "blockHeight": 2847, "took": "4.139946ms"} -2023-12-15T14:59:42.346Z INFO sending PrepareRequest {"height": 2848, "view": 0} -2023-12-15T14:59:42.347Z INFO sending Commit {"height": 2848, "view": 0} -2023-12-15T14:59:42.347Z INFO approving block {"height": 2848, "hash": "f1d4b9e6d1d1776547e966a2212b542b93c5e8d2ee6f8133a13b1a88c885bc31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "155a4e6d0dd0925c07634215a1a336af61afa31ad2bf80790bbfa43b8d33f731"} -2023-12-15T14:59:42.348Z INFO initializing dbft {"height": 2849, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:42.348Z debug frostfs-node/morph.go:229 new block {"index": 2848} -2023-12-15T14:59:42.651Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2848, "blockHeight": 2848, "took": "3.305673ms"} -2023-12-15T14:59:43.348Z INFO sending PrepareRequest {"height": 2849, "view": 0} -2023-12-15T14:59:43.348Z INFO sending Commit {"height": 2849, "view": 0} -2023-12-15T14:59:43.348Z INFO approving block {"height": 2849, "hash": "d3058fef1cc8ab8c25deb001321d182b1509b49fe75aa10aa11d7dbd506be3db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1d4b9e6d1d1776547e966a2212b542b93c5e8d2ee6f8133a13b1a88c885bc31"} -2023-12-15T14:59:43.349Z INFO initializing dbft {"height": 2850, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:43.350Z debug frostfs-node/morph.go:229 new block {"index": 2849} -2023-12-15T14:59:43.655Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2849, "blockHeight": 2849, "took": "6.720503ms"} -2023-12-15T14:59:44.349Z INFO sending PrepareRequest {"height": 2850, "view": 0} -2023-12-15T14:59:44.349Z INFO sending Commit {"height": 2850, "view": 0} -2023-12-15T14:59:44.349Z INFO approving block {"height": 2850, "hash": "71409a96c3e0990d167fd278cb5a11bbe2e8449427d695210e9975b1541f3362", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3058fef1cc8ab8c25deb001321d182b1509b49fe75aa10aa11d7dbd506be3db"} -2023-12-15T14:59:44.350Z INFO initializing dbft {"height": 2851, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:44.351Z debug frostfs-node/morph.go:229 new block {"index": 2850} -2023-12-15T14:59:44.652Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2850, "blockHeight": 2850, "took": "4.068859ms"} -2023-12-15T14:59:45.350Z INFO sending PrepareRequest {"height": 2851, "view": 0} -2023-12-15T14:59:45.350Z INFO sending Commit {"height": 2851, "view": 0} -2023-12-15T14:59:45.351Z INFO approving block {"height": 2851, "hash": "c2eff5e3e2f4d33aa20559efb17eaa5989639825617cfebb90cb26c5fd4b0d61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71409a96c3e0990d167fd278cb5a11bbe2e8449427d695210e9975b1541f3362"} -2023-12-15T14:59:45.351Z INFO initializing dbft {"height": 2852, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:45.352Z debug frostfs-node/morph.go:229 new block {"index": 2851} -2023-12-15T14:59:45.652Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2851, "blockHeight": 2851, "took": "3.823465ms"} -2023-12-15T14:59:46.351Z INFO sending PrepareRequest {"height": 2852, "view": 0} -2023-12-15T14:59:46.352Z INFO sending Commit {"height": 2852, "view": 0} -2023-12-15T14:59:46.352Z INFO approving block {"height": 2852, "hash": "8efec3fdaf00e6d060fe3e7508a47afce0a6272a3af70f4cf518c6ed6175a42e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2eff5e3e2f4d33aa20559efb17eaa5989639825617cfebb90cb26c5fd4b0d61"} -2023-12-15T14:59:46.353Z INFO initializing dbft {"height": 2853, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:46.354Z debug frostfs-node/morph.go:229 new block {"index": 2852} -2023-12-15T14:59:46.653Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2852, "blockHeight": 2852, "took": "2.898105ms"} -2023-12-15T14:59:47.353Z INFO sending PrepareRequest {"height": 2853, "view": 0} -2023-12-15T14:59:47.353Z INFO sending Commit {"height": 2853, "view": 0} -2023-12-15T14:59:47.353Z INFO approving block {"height": 2853, "hash": "a3de55a6bcead1984cacde2568df12bbc4ec8a952ea634e0339f73ecf4ae6744", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8efec3fdaf00e6d060fe3e7508a47afce0a6272a3af70f4cf518c6ed6175a42e"} -2023-12-15T14:59:47.354Z INFO initializing dbft {"height": 2854, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:47.355Z debug frostfs-node/morph.go:229 new block {"index": 2853} -2023-12-15T14:59:47.654Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2853, "blockHeight": 2853, "took": "4.151902ms"} -2023-12-15T14:59:48.354Z INFO sending PrepareRequest {"height": 2854, "view": 0} -2023-12-15T14:59:48.355Z INFO sending Commit {"height": 2854, "view": 0} -2023-12-15T14:59:48.355Z INFO approving block {"height": 2854, "hash": "84e3d6c57ad46273e72f9e0f3d76ddbd5093be3d6a4740008ca2382e476b590e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3de55a6bcead1984cacde2568df12bbc4ec8a952ea634e0339f73ecf4ae6744"} -2023-12-15T14:59:48.356Z INFO initializing dbft {"height": 2855, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:48.357Z debug frostfs-node/morph.go:229 new block {"index": 2854} -2023-12-15T14:59:48.654Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2854, "blockHeight": 2854, "took": "3.552463ms"} -2023-12-15T14:59:49.356Z INFO sending PrepareRequest {"height": 2855, "view": 0} -2023-12-15T14:59:49.356Z INFO sending Commit {"height": 2855, "view": 0} -2023-12-15T14:59:49.356Z INFO approving block {"height": 2855, "hash": "f593aa4fbcb8248d27734c589245216e85b4c5a1b3363abd39327e4be7ff466e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84e3d6c57ad46273e72f9e0f3d76ddbd5093be3d6a4740008ca2382e476b590e"} -2023-12-15T14:59:49.357Z INFO initializing dbft {"height": 2856, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:49.357Z debug frostfs-node/morph.go:229 new block {"index": 2855} -2023-12-15T14:59:49.654Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2855, "blockHeight": 2855, "took": "3.019248ms"} -2023-12-15T14:59:50.357Z INFO sending PrepareRequest {"height": 2856, "view": 0} -2023-12-15T14:59:50.357Z INFO sending Commit {"height": 2856, "view": 0} -2023-12-15T14:59:50.357Z INFO approving block {"height": 2856, "hash": "961b02eaae0e36a2c9a63a1dcfecc22c64317d1930cd592e64968b91724457dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f593aa4fbcb8248d27734c589245216e85b4c5a1b3363abd39327e4be7ff466e"} -2023-12-15T14:59:50.358Z INFO initializing dbft {"height": 2857, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:50.359Z debug frostfs-node/morph.go:229 new block {"index": 2856} -2023-12-15T14:59:50.655Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2856, "blockHeight": 2856, "took": "3.877996ms"} -2023-12-15T14:59:51.359Z INFO sending PrepareRequest {"height": 2857, "view": 0} -2023-12-15T14:59:51.359Z INFO sending Commit {"height": 2857, "view": 0} -2023-12-15T14:59:51.359Z INFO approving block {"height": 2857, "hash": "1eda321c6aa2d7d8e3dd48cd5e05f650dc263f4419500f450b0f8defac8d7675", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "961b02eaae0e36a2c9a63a1dcfecc22c64317d1930cd592e64968b91724457dc"} -2023-12-15T14:59:51.360Z INFO initializing dbft {"height": 2858, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:51.361Z debug frostfs-node/morph.go:229 new block {"index": 2857} -2023-12-15T14:59:51.656Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2857, "blockHeight": 2857, "took": "4.727138ms"} -2023-12-15T14:59:52.360Z INFO sending PrepareRequest {"height": 2858, "view": 0} -2023-12-15T14:59:52.360Z INFO sending Commit {"height": 2858, "view": 0} -2023-12-15T14:59:52.360Z INFO approving block {"height": 2858, "hash": "898810ac4ed31bc8b2ea6eb468c146e0002a6af9132e4379c42355c4345d9b24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1eda321c6aa2d7d8e3dd48cd5e05f650dc263f4419500f450b0f8defac8d7675"} -2023-12-15T14:59:52.361Z INFO initializing dbft {"height": 2859, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:52.362Z debug frostfs-node/morph.go:229 new block {"index": 2858} -2023-12-15T14:59:52.655Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2858, "blockHeight": 2858, "took": "3.240278ms"} -2023-12-15T14:59:53.362Z INFO sending PrepareRequest {"height": 2859, "view": 0} -2023-12-15T14:59:53.362Z INFO sending Commit {"height": 2859, "view": 0} -2023-12-15T14:59:53.362Z INFO approving block {"height": 2859, "hash": "55c6f7dd68b677b0896f65144be5a45b8a9e6e60540ae5a4d090177ceaa42e5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "898810ac4ed31bc8b2ea6eb468c146e0002a6af9132e4379c42355c4345d9b24"} -2023-12-15T14:59:53.363Z INFO initializing dbft {"height": 2860, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:53.364Z debug frostfs-node/morph.go:229 new block {"index": 2859} -2023-12-15T14:59:53.656Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2859, "blockHeight": 2859, "took": "3.120951ms"} -2023-12-15T14:59:54.363Z INFO sending PrepareRequest {"height": 2860, "view": 0} -2023-12-15T14:59:54.363Z INFO sending Commit {"height": 2860, "view": 0} -2023-12-15T14:59:54.363Z INFO approving block {"height": 2860, "hash": "298b8c87eba0ab698fe47f044750ccab635548f75d176f6b1a0e7ecaef86260e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55c6f7dd68b677b0896f65144be5a45b8a9e6e60540ae5a4d090177ceaa42e5c"} -2023-12-15T14:59:54.365Z INFO initializing dbft {"height": 2861, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:54.365Z debug frostfs-node/morph.go:229 new block {"index": 2860} -2023-12-15T14:59:54.657Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2860, "blockHeight": 2860, "took": "4.073383ms"} -2023-12-15T14:59:55.364Z INFO sending PrepareRequest {"height": 2861, "view": 0} -2023-12-15T14:59:55.364Z INFO sending Commit {"height": 2861, "view": 0} -2023-12-15T14:59:55.365Z INFO approving block {"height": 2861, "hash": "37c40619b463ac8ec658705b7b63c47735481c7f6e6a12aa55e27a8925fc0afe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "298b8c87eba0ab698fe47f044750ccab635548f75d176f6b1a0e7ecaef86260e"} -2023-12-15T14:59:55.365Z INFO initializing dbft {"height": 2862, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:55.366Z debug frostfs-node/morph.go:229 new block {"index": 2861} -2023-12-15T14:59:55.656Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2861, "blockHeight": 2861, "took": "2.806643ms"} -2023-12-15T14:59:56.366Z INFO sending PrepareRequest {"height": 2862, "view": 0} -2023-12-15T14:59:56.366Z INFO sending Commit {"height": 2862, "view": 0} -2023-12-15T14:59:56.366Z INFO approving block {"height": 2862, "hash": "0d28a4b4595f4f978449d6a150d852591117571aa6cfdaec2ddde1589479b575", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37c40619b463ac8ec658705b7b63c47735481c7f6e6a12aa55e27a8925fc0afe"} -2023-12-15T14:59:56.367Z INFO initializing dbft {"height": 2863, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:56.367Z debug frostfs-node/morph.go:229 new block {"index": 2862} -2023-12-15T14:59:56.659Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2862, "blockHeight": 2862, "took": "4.388847ms"} -2023-12-15T14:59:57.367Z INFO sending PrepareRequest {"height": 2863, "view": 0} -2023-12-15T14:59:57.367Z INFO sending Commit {"height": 2863, "view": 0} -2023-12-15T14:59:57.367Z INFO approving block {"height": 2863, "hash": "cbe27a7a16efd242cfde18a763acfd579faa67d744bf1a23dd5ae22e8addd557", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d28a4b4595f4f978449d6a150d852591117571aa6cfdaec2ddde1589479b575"} -2023-12-15T14:59:57.368Z INFO initializing dbft {"height": 2864, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:57.369Z debug frostfs-node/morph.go:229 new block {"index": 2863} -2023-12-15T14:59:57.659Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2863, "blockHeight": 2863, "took": "3.736366ms"} -2023-12-15T14:59:58.368Z INFO sending PrepareRequest {"height": 2864, "view": 0} -2023-12-15T14:59:58.368Z INFO sending Commit {"height": 2864, "view": 0} -2023-12-15T14:59:58.368Z INFO approving block {"height": 2864, "hash": "d4150e1adcbe3771b2291ce9ca3dbd2c09680e65d4585bbef92147c86273da57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbe27a7a16efd242cfde18a763acfd579faa67d744bf1a23dd5ae22e8addd557"} -2023-12-15T14:59:58.369Z INFO initializing dbft {"height": 2865, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:58.369Z debug frostfs-node/morph.go:229 new block {"index": 2864} -2023-12-15T14:59:58.660Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2864, "blockHeight": 2864, "took": "3.047388ms"} -2023-12-15T14:59:59.369Z INFO sending PrepareRequest {"height": 2865, "view": 0} -2023-12-15T14:59:59.369Z INFO sending Commit {"height": 2865, "view": 0} -2023-12-15T14:59:59.369Z INFO approving block {"height": 2865, "hash": "69a887c490c50fdb58ea45eebd7de94757a598c7ba06d45431a659714b9aa54d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4150e1adcbe3771b2291ce9ca3dbd2c09680e65d4585bbef92147c86273da57"} -2023-12-15T14:59:59.370Z INFO initializing dbft {"height": 2866, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T14:59:59.371Z debug frostfs-node/morph.go:229 new block {"index": 2865} -2023-12-15T14:59:59.661Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2865, "blockHeight": 2865, "took": "3.380878ms"} -2023-12-15T15:00:00.371Z INFO sending PrepareRequest {"height": 2866, "view": 0} -2023-12-15T15:00:00.371Z INFO sending Commit {"height": 2866, "view": 0} -2023-12-15T15:00:00.371Z INFO approving block {"height": 2866, "hash": "78f7c9f3cb16bb929f241f520ee44b20287ae39de746307a4e9a23054cace347", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69a887c490c50fdb58ea45eebd7de94757a598c7ba06d45431a659714b9aa54d"} -2023-12-15T15:00:00.372Z INFO initializing dbft {"height": 2867, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:00.373Z debug frostfs-node/morph.go:229 new block {"index": 2866} -2023-12-15T15:00:00.663Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2866, "blockHeight": 2866, "took": "5.123138ms"} -2023-12-15T15:00:01.372Z INFO sending PrepareRequest {"height": 2867, "view": 0} -2023-12-15T15:00:01.372Z INFO sending Commit {"height": 2867, "view": 0} -2023-12-15T15:00:01.372Z INFO approving block {"height": 2867, "hash": "5ed93890805499ae4c56c6607f650be6f364fb1b1116eb1c42ccfb5c7f6511e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78f7c9f3cb16bb929f241f520ee44b20287ae39de746307a4e9a23054cace347"} -2023-12-15T15:00:01.373Z INFO initializing dbft {"height": 2868, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:01.374Z debug frostfs-node/morph.go:229 new block {"index": 2867} -2023-12-15T15:00:01.376Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:00:01.378Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:00:01.378Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:00:01.662Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2867, "blockHeight": 2867, "took": "3.177289ms"} -2023-12-15T15:00:02.374Z INFO sending PrepareRequest {"height": 2868, "view": 0} -2023-12-15T15:00:02.374Z INFO sending Commit {"height": 2868, "view": 0} -2023-12-15T15:00:02.375Z INFO approving block {"height": 2868, "hash": "c64f29d638a1c7ebc11c8d30f97d5e5257b145cae9e6e80f95a31cb8fc1a949e", "tx_count": 2, "merkle": "01632896a9b82343647b93a6aa127732590c32d11fe061d7e862c5dd7719c907", "prev": "5ed93890805499ae4c56c6607f650be6f364fb1b1116eb1c42ccfb5c7f6511e7"} -2023-12-15T15:00:02.375Z INFO runtime log {"tx": "d5b98643590a5377332be3e112219aa8c0f985ff7cd430827296730e22cca2e0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:00:02.376Z INFO runtime log {"tx": "d5b98643590a5377332be3e112219aa8c0f985ff7cd430827296730e22cca2e0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:00:02.376Z INFO initializing dbft {"height": 2869, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:02.377Z debug frostfs-node/morph.go:229 new block {"index": 2868} -2023-12-15T15:00:02.684Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2868, "blockHeight": 2868, "took": "24.46937ms"} -2023-12-15T15:00:03.376Z INFO sending PrepareRequest {"height": 2869, "view": 0} -2023-12-15T15:00:03.376Z INFO sending Commit {"height": 2869, "view": 0} -2023-12-15T15:00:03.377Z INFO approving block {"height": 2869, "hash": "9f4cd26f97f8e6c0e1e44e6f5eca7234455e066e4efa78a5cb1288e22d9373dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c64f29d638a1c7ebc11c8d30f97d5e5257b145cae9e6e80f95a31cb8fc1a949e"} -2023-12-15T15:00:03.377Z INFO initializing dbft {"height": 2870, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:03.378Z debug frostfs-node/morph.go:229 new block {"index": 2869} -2023-12-15T15:00:03.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2869, "blockHeight": 2869, "took": "4.260957ms"} -2023-12-15T15:00:04.377Z INFO sending PrepareRequest {"height": 2870, "view": 0} -2023-12-15T15:00:04.377Z INFO sending Commit {"height": 2870, "view": 0} -2023-12-15T15:00:04.377Z INFO approving block {"height": 2870, "hash": "b13134f46b9296101219e30bdc0c0b2b8b84c6c85dd60642611ab7ce48a3e6f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f4cd26f97f8e6c0e1e44e6f5eca7234455e066e4efa78a5cb1288e22d9373dc"} -2023-12-15T15:00:04.378Z INFO initializing dbft {"height": 2871, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:04.379Z debug frostfs-node/morph.go:229 new block {"index": 2870} -2023-12-15T15:00:04.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2870, "blockHeight": 2870, "took": "3.849799ms"} -2023-12-15T15:00:05.378Z INFO sending PrepareRequest {"height": 2871, "view": 0} -2023-12-15T15:00:05.379Z INFO sending Commit {"height": 2871, "view": 0} -2023-12-15T15:00:05.379Z INFO approving block {"height": 2871, "hash": "60421d61553b90c44cb5ca96bf329ad8d5d607ed6f2156d9d609876a1691fd66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b13134f46b9296101219e30bdc0c0b2b8b84c6c85dd60642611ab7ce48a3e6f5"} -2023-12-15T15:00:05.380Z INFO initializing dbft {"height": 2872, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:05.380Z debug frostfs-node/morph.go:229 new block {"index": 2871} -2023-12-15T15:00:05.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2871, "blockHeight": 2871, "took": "3.112708ms"} -2023-12-15T15:00:06.380Z INFO sending PrepareRequest {"height": 2872, "view": 0} -2023-12-15T15:00:06.380Z INFO sending Commit {"height": 2872, "view": 0} -2023-12-15T15:00:06.380Z INFO approving block {"height": 2872, "hash": "717053f12a639a9ccffff39bc168fd629e09561cb35a1884273921722f024653", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60421d61553b90c44cb5ca96bf329ad8d5d607ed6f2156d9d609876a1691fd66"} -2023-12-15T15:00:06.381Z INFO initializing dbft {"height": 2873, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:06.381Z debug frostfs-node/morph.go:229 new block {"index": 2872} -2023-12-15T15:00:06.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2872, "blockHeight": 2872, "took": "3.423227ms"} -2023-12-15T15:00:07.381Z INFO sending PrepareRequest {"height": 2873, "view": 0} -2023-12-15T15:00:07.381Z INFO sending Commit {"height": 2873, "view": 0} -2023-12-15T15:00:07.381Z INFO approving block {"height": 2873, "hash": "8d5dd8789a058f9d2a07e45357f614881bf4f11057a9a23593df1f357edc743c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "717053f12a639a9ccffff39bc168fd629e09561cb35a1884273921722f024653"} -2023-12-15T15:00:07.382Z INFO initializing dbft {"height": 2874, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:07.383Z debug frostfs-node/morph.go:229 new block {"index": 2873} -2023-12-15T15:00:07.665Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2873, "blockHeight": 2873, "took": "3.418833ms"} -2023-12-15T15:00:08.382Z INFO sending PrepareRequest {"height": 2874, "view": 0} -2023-12-15T15:00:08.383Z INFO sending Commit {"height": 2874, "view": 0} -2023-12-15T15:00:08.383Z INFO approving block {"height": 2874, "hash": "d2bc41954633f6ab3a80d6f49778d38652ea706414334b379aec8dc823e46869", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d5dd8789a058f9d2a07e45357f614881bf4f11057a9a23593df1f357edc743c"} -2023-12-15T15:00:08.384Z INFO initializing dbft {"height": 2875, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:08.384Z debug frostfs-node/morph.go:229 new block {"index": 2874} -2023-12-15T15:00:08.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2874, "blockHeight": 2874, "took": "2.86828ms"} -2023-12-15T15:00:09.384Z INFO sending PrepareRequest {"height": 2875, "view": 0} -2023-12-15T15:00:09.384Z INFO sending Commit {"height": 2875, "view": 0} -2023-12-15T15:00:09.384Z INFO approving block {"height": 2875, "hash": "ebea73c209e95fe4533e70228397e821b47f9da4e4414be46f2a5a7dbf5a22f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2bc41954633f6ab3a80d6f49778d38652ea706414334b379aec8dc823e46869"} -2023-12-15T15:00:09.385Z INFO initializing dbft {"height": 2876, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:09.386Z debug frostfs-node/morph.go:229 new block {"index": 2875} -2023-12-15T15:00:09.666Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2875, "blockHeight": 2875, "took": "4.343746ms"} -2023-12-15T15:00:10.385Z INFO sending PrepareRequest {"height": 2876, "view": 0} -2023-12-15T15:00:10.385Z INFO sending Commit {"height": 2876, "view": 0} -2023-12-15T15:00:10.385Z INFO approving block {"height": 2876, "hash": "66b51776f4c9b6a302a4b2ca6064622095872f46d6e71e8e462776a5591b75de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebea73c209e95fe4533e70228397e821b47f9da4e4414be46f2a5a7dbf5a22f5"} -2023-12-15T15:00:10.387Z debug frostfs-node/morph.go:229 new block {"index": 2876} -2023-12-15T15:00:10.387Z INFO initializing dbft {"height": 2877, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:10.666Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2876, "blockHeight": 2876, "took": "3.845836ms"} -2023-12-15T15:00:11.387Z INFO sending PrepareRequest {"height": 2877, "view": 0} -2023-12-15T15:00:11.387Z INFO sending Commit {"height": 2877, "view": 0} -2023-12-15T15:00:11.387Z INFO approving block {"height": 2877, "hash": "25d0e2cd10445da70330a90b546aacfa9098b734e4842688c623c69d9000b046", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66b51776f4c9b6a302a4b2ca6064622095872f46d6e71e8e462776a5591b75de"} -2023-12-15T15:00:11.388Z INFO initializing dbft {"height": 2878, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:11.388Z debug frostfs-node/morph.go:229 new block {"index": 2877} -2023-12-15T15:00:11.667Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2877, "blockHeight": 2877, "took": "3.979353ms"} -2023-12-15T15:00:12.388Z INFO sending PrepareRequest {"height": 2878, "view": 0} -2023-12-15T15:00:12.388Z INFO sending Commit {"height": 2878, "view": 0} -2023-12-15T15:00:12.389Z INFO approving block {"height": 2878, "hash": "4f6b77f94941602b77e906814b02cec2462477c160b8ebb9cc4af720c9589985", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25d0e2cd10445da70330a90b546aacfa9098b734e4842688c623c69d9000b046"} -2023-12-15T15:00:12.390Z INFO initializing dbft {"height": 2879, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:12.390Z debug frostfs-node/morph.go:229 new block {"index": 2878} -2023-12-15T15:00:12.666Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2878, "blockHeight": 2878, "took": "2.932682ms"} -2023-12-15T15:00:13.390Z INFO sending PrepareRequest {"height": 2879, "view": 0} -2023-12-15T15:00:13.390Z INFO sending Commit {"height": 2879, "view": 0} -2023-12-15T15:00:13.390Z INFO approving block {"height": 2879, "hash": "f64c67f360068bd086f5e8b1052882e468550a5aec342a81b091b7a47ed4e99a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f6b77f94941602b77e906814b02cec2462477c160b8ebb9cc4af720c9589985"} -2023-12-15T15:00:13.391Z INFO initializing dbft {"height": 2880, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:13.392Z debug frostfs-node/morph.go:229 new block {"index": 2879} -2023-12-15T15:00:13.667Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2879, "blockHeight": 2879, "took": "2.940643ms"} -2023-12-15T15:00:14.391Z INFO sending PrepareRequest {"height": 2880, "view": 0} -2023-12-15T15:00:14.391Z INFO sending Commit {"height": 2880, "view": 0} -2023-12-15T15:00:14.392Z INFO approving block {"height": 2880, "hash": "006beeab412397152a353e463d869761bf39e7751473cce503b98548c63c59dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f64c67f360068bd086f5e8b1052882e468550a5aec342a81b091b7a47ed4e99a"} -2023-12-15T15:00:14.393Z INFO initializing dbft {"height": 2881, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:14.394Z debug frostfs-node/morph.go:229 new block {"index": 2880} -2023-12-15T15:00:14.668Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2880, "blockHeight": 2880, "took": "3.361384ms"} -2023-12-15T15:00:15.392Z INFO sending PrepareRequest {"height": 2881, "view": 0} -2023-12-15T15:00:15.392Z INFO sending Commit {"height": 2881, "view": 0} -2023-12-15T15:00:15.393Z INFO approving block {"height": 2881, "hash": "fc0856851280cdd002a356d4e0358eadc528a9804152e003f22e099745f35a97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "006beeab412397152a353e463d869761bf39e7751473cce503b98548c63c59dd"} -2023-12-15T15:00:15.394Z INFO initializing dbft {"height": 2882, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:15.394Z debug frostfs-node/morph.go:229 new block {"index": 2881} -2023-12-15T15:00:15.669Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2881, "blockHeight": 2881, "took": "2.997147ms"} -2023-12-15T15:00:16.394Z INFO sending PrepareRequest {"height": 2882, "view": 0} -2023-12-15T15:00:16.394Z INFO sending Commit {"height": 2882, "view": 0} -2023-12-15T15:00:16.394Z INFO approving block {"height": 2882, "hash": "e8023f9e64c9a903909728635b5782d4ba37d5a1db2907e45334ee139aa0eac4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc0856851280cdd002a356d4e0358eadc528a9804152e003f22e099745f35a97"} -2023-12-15T15:00:16.395Z INFO initializing dbft {"height": 2883, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:16.395Z debug frostfs-node/morph.go:229 new block {"index": 2882} -2023-12-15T15:00:16.669Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2882, "blockHeight": 2882, "took": "3.168668ms"} -2023-12-15T15:00:17.395Z INFO sending PrepareRequest {"height": 2883, "view": 0} -2023-12-15T15:00:17.396Z INFO sending Commit {"height": 2883, "view": 0} -2023-12-15T15:00:17.396Z INFO approving block {"height": 2883, "hash": "497bfc6866645bd328c9a5ef1db8f15195f941744d859f05b1b675b3e823703c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8023f9e64c9a903909728635b5782d4ba37d5a1db2907e45334ee139aa0eac4"} -2023-12-15T15:00:17.397Z INFO initializing dbft {"height": 2884, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:17.398Z debug frostfs-node/morph.go:229 new block {"index": 2883} -2023-12-15T15:00:17.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2883, "blockHeight": 2883, "took": "4.579424ms"} -2023-12-15T15:00:18.397Z INFO sending PrepareRequest {"height": 2884, "view": 0} -2023-12-15T15:00:18.397Z INFO sending Commit {"height": 2884, "view": 0} -2023-12-15T15:00:18.397Z INFO approving block {"height": 2884, "hash": "a48188df50ea2985d39a36ddd34a53f3e7221caf9412b74af956c5a90ee60d99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "497bfc6866645bd328c9a5ef1db8f15195f941744d859f05b1b675b3e823703c"} -2023-12-15T15:00:18.398Z INFO initializing dbft {"height": 2885, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:18.398Z debug frostfs-node/morph.go:229 new block {"index": 2884} -2023-12-15T15:00:18.670Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2884, "blockHeight": 2884, "took": "2.871773ms"} -2023-12-15T15:00:19.398Z INFO sending PrepareRequest {"height": 2885, "view": 0} -2023-12-15T15:00:19.398Z INFO sending Commit {"height": 2885, "view": 0} -2023-12-15T15:00:19.398Z INFO approving block {"height": 2885, "hash": "4a68c94191ca88afae6dba2b8264b78732f8d300e54488454fdf6468a5a22f56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a48188df50ea2985d39a36ddd34a53f3e7221caf9412b74af956c5a90ee60d99"} -2023-12-15T15:00:19.399Z INFO initializing dbft {"height": 2886, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:19.400Z debug frostfs-node/morph.go:229 new block {"index": 2885} -2023-12-15T15:00:19.670Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2885, "blockHeight": 2885, "took": "3.274866ms"} -2023-12-15T15:00:20.399Z INFO sending PrepareRequest {"height": 2886, "view": 0} -2023-12-15T15:00:20.400Z INFO sending Commit {"height": 2886, "view": 0} -2023-12-15T15:00:20.400Z INFO approving block {"height": 2886, "hash": "7cb37f96cd7f951b939139c305c3fe401ae52fb9c10aa1941aa28e1da23ad158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a68c94191ca88afae6dba2b8264b78732f8d300e54488454fdf6468a5a22f56"} -2023-12-15T15:00:20.401Z INFO initializing dbft {"height": 2887, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:20.401Z debug frostfs-node/morph.go:229 new block {"index": 2886} -2023-12-15T15:00:20.670Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2886, "blockHeight": 2886, "took": "2.844903ms"} -2023-12-15T15:00:21.401Z INFO sending PrepareRequest {"height": 2887, "view": 0} -2023-12-15T15:00:21.401Z INFO sending Commit {"height": 2887, "view": 0} -2023-12-15T15:00:21.402Z INFO approving block {"height": 2887, "hash": "4568fe38b475872c22a329aaaf474cef78e9425e0b725156ac1f4ab1cfff8391", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cb37f96cd7f951b939139c305c3fe401ae52fb9c10aa1941aa28e1da23ad158"} -2023-12-15T15:00:21.403Z INFO initializing dbft {"height": 2888, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:21.404Z debug frostfs-node/morph.go:229 new block {"index": 2887} -2023-12-15T15:00:21.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2887, "blockHeight": 2887, "took": "2.956496ms"} -2023-12-15T15:00:22.402Z INFO sending PrepareRequest {"height": 2888, "view": 0} -2023-12-15T15:00:22.402Z INFO sending Commit {"height": 2888, "view": 0} -2023-12-15T15:00:22.403Z INFO approving block {"height": 2888, "hash": "54cd31f5f419f4da8ad28db63ee6b6596336561e9b81f6e6754464758a7fa4de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4568fe38b475872c22a329aaaf474cef78e9425e0b725156ac1f4ab1cfff8391"} -2023-12-15T15:00:22.403Z INFO initializing dbft {"height": 2889, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:22.404Z debug frostfs-node/morph.go:229 new block {"index": 2888} -2023-12-15T15:00:22.671Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2888, "blockHeight": 2888, "took": "2.926626ms"} -2023-12-15T15:00:23.404Z INFO sending PrepareRequest {"height": 2889, "view": 0} -2023-12-15T15:00:23.404Z INFO sending Commit {"height": 2889, "view": 0} -2023-12-15T15:00:23.404Z INFO approving block {"height": 2889, "hash": "c4c559ef2d961c70a915002a7dacc2fa1c69af7ab74c7b5804d2500bf477fb8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54cd31f5f419f4da8ad28db63ee6b6596336561e9b81f6e6754464758a7fa4de"} -2023-12-15T15:00:23.406Z INFO initializing dbft {"height": 2890, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:23.406Z debug frostfs-node/morph.go:229 new block {"index": 2889} -2023-12-15T15:00:23.672Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2889, "blockHeight": 2889, "took": "3.177953ms"} -2023-12-15T15:00:24.405Z INFO sending PrepareRequest {"height": 2890, "view": 0} -2023-12-15T15:00:24.405Z INFO sending Commit {"height": 2890, "view": 0} -2023-12-15T15:00:24.406Z INFO approving block {"height": 2890, "hash": "fa9fb20bbdf2b452d5c1d21d6732b554a7dcd8b084eff0964d075bee51ca94fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4c559ef2d961c70a915002a7dacc2fa1c69af7ab74c7b5804d2500bf477fb8f"} -2023-12-15T15:00:24.407Z INFO initializing dbft {"height": 2891, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:24.408Z debug frostfs-node/morph.go:229 new block {"index": 2890} -2023-12-15T15:00:24.674Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2890, "blockHeight": 2890, "took": "4.962169ms"} -2023-12-15T15:00:25.406Z INFO sending PrepareRequest {"height": 2891, "view": 0} -2023-12-15T15:00:25.406Z INFO sending Commit {"height": 2891, "view": 0} -2023-12-15T15:00:25.407Z INFO approving block {"height": 2891, "hash": "27ac02f1dfaa1bc04e65144d554b0f16d932945282c55692ab75513c32341056", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa9fb20bbdf2b452d5c1d21d6732b554a7dcd8b084eff0964d075bee51ca94fe"} -2023-12-15T15:00:25.407Z INFO initializing dbft {"height": 2892, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:25.408Z debug frostfs-node/morph.go:229 new block {"index": 2891} -2023-12-15T15:00:25.410Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T15:00:25.411Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 12, "iteration": 3, "error": "no data for 2 iteration in 12 epoch for consumers's trusts"} -2023-12-15T15:00:25.413Z INFO runtime log {"tx": "1868af09e199a6c9ac6db551354083c3790a2693361835387c33d218be0e70f4", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:00:25.674Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2891, "blockHeight": 2891, "took": "3.535666ms"} -2023-12-15T15:00:26.408Z INFO sending PrepareRequest {"height": 2892, "view": 0} -2023-12-15T15:00:26.408Z INFO sending Commit {"height": 2892, "view": 0} -2023-12-15T15:00:26.408Z INFO approving block {"height": 2892, "hash": "04d301834d03fd14a644b24bdecd3cdf6feceb0a6d2324a2ae476181197dca06", "tx_count": 1, "merkle": "4e6a8096c8d1828409aa6403ba160c84be17265a52187b67695266e12173536c", "prev": "27ac02f1dfaa1bc04e65144d554b0f16d932945282c55692ab75513c32341056"} -2023-12-15T15:00:26.409Z INFO runtime log {"tx": "6c537321e1665269677b18525a2617be840c16ba0364aa098482d1c896806a4e", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:00:26.410Z INFO initializing dbft {"height": 2893, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:26.410Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 14} -2023-12-15T15:00:26.410Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 14} -2023-12-15T15:00:26.410Z debug tree/sync.go:298 syncing trees... -2023-12-15T15:00:26.410Z debug frostfs-node/morph.go:229 new block {"index": 2892} -2023-12-15T15:00:26.410Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 14} -2023-12-15T15:00:26.411Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 14} -2023-12-15T15:00:26.411Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 14} -2023-12-15T15:00:26.411Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T15:00:26.411Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T15:00:26.411Z debug controller/calls.go:95 starting to report local trust values {"epoch": 13} -2023-12-15T15:00:26.411Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 13} -2023-12-15T15:00:26.414Z debug controller/calls.go:146 reporting successfully finished {"epoch": 13} -2023-12-15T15:00:26.414Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 13} -2023-12-15T15:00:26.414Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T15:00:26.416Z INFO runtime log {"tx": "ba7d0d1f1e640d2ec209cb050071b5ce0854d59196d17ff42a830ef4d5eed99e", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:00:26.420Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 2895, "tx_hash": "dd5bb764413311a4c23cff85d1a98acab82ab7f0e7b1dbe64b29fd5aae11cfcf"} -2023-12-15T15:00:26.425Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T15:00:26.426Z info audit/handlers.go:13 new round of audit {"epoch": 14} -2023-12-15T15:00:26.426Z info settlement/calls.go:26 new audit settlement event {"epoch": 14} -2023-12-15T15:00:26.426Z info settlement/handlers.go:14 process audit settlements {"epoch": 14} -2023-12-15T15:00:26.426Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 14} -2023-12-15T15:00:26.426Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 3000, "fallback_valid_for": 40, "tx_hash": "b7bf7c2a7eaa3a81626df837dc0c2ab85d9867f09a08fb1c40f3321851a83b2f"} -2023-12-15T15:00:26.428Z info settlement/handlers.go:18 audit processing finished {"epoch": 14} -2023-12-15T15:00:26.428Z info audit/process.go:39 select containers for audit {"epoch": 14, "amount": 0} -2023-12-15T15:00:26.430Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T15:00:26.431Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 2895, "tx_hash": "67c4fd63c9a9b57bb24fef526e08050cfe18f6b7dad7558f89314d51f62a2e80"} -2023-12-15T15:00:26.678Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 2892, "blockHeight": 2892, "took": "7.21071ms"} -2023-12-15T15:00:27.409Z INFO sending PrepareRequest {"height": 2893, "view": 0} -2023-12-15T15:00:27.409Z INFO sending Commit {"height": 2893, "view": 0} -2023-12-15T15:00:27.409Z INFO approving block {"height": 2893, "hash": "b289705eb4b5849f217a1e49ff1602abc6f15918615d6f96465986ec4fa0dd24", "tx_count": 3, "merkle": "08f2050c0bf8f03be8b25535e17456f0486f5bd94c3f168f227d7942b46b7e0d", "prev": "04d301834d03fd14a644b24bdecd3cdf6feceb0a6d2324a2ae476181197dca06"} -2023-12-15T15:00:27.410Z INFO runtime log {"tx": "0463551dbcbcba7cb59289a5d0c8ea917819a7fb2bf3f486c7aa0d82e60d5816", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:00:27.411Z INFO initializing dbft {"height": 2894, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:27.412Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 13} -2023-12-15T15:00:27.412Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 13} -2023-12-15T15:00:27.412Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 13} -2023-12-15T15:00:27.412Z debug frostfs-node/morph.go:229 new block {"index": 2893} -2023-12-15T15:00:27.677Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 2893, "blockHeight": 2893, "took": "5.622194ms"} -2023-12-15T15:00:28.410Z INFO sending PrepareRequest {"height": 2894, "view": 0} -2023-12-15T15:00:28.410Z INFO sending Commit {"height": 2894, "view": 0} -2023-12-15T15:00:28.410Z INFO approving block {"height": 2894, "hash": "8b8c0cb0f041694c3cf991d056cb6ad7ffe37a201f133f4a8eb5d5201315ef10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b289705eb4b5849f217a1e49ff1602abc6f15918615d6f96465986ec4fa0dd24"} -2023-12-15T15:00:28.411Z INFO initializing dbft {"height": 2895, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:28.411Z debug frostfs-node/morph.go:229 new block {"index": 2894} -2023-12-15T15:00:28.675Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2894, "blockHeight": 2894, "took": "3.14973ms"} -2023-12-15T15:00:29.412Z INFO sending PrepareRequest {"height": 2895, "view": 0} -2023-12-15T15:00:29.412Z INFO sending Commit {"height": 2895, "view": 0} -2023-12-15T15:00:29.412Z INFO approving block {"height": 2895, "hash": "206c7cf3e4cc2d30b64d45175eee0927deac1fa1662b4d7a24e859884655db38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b8c0cb0f041694c3cf991d056cb6ad7ffe37a201f133f4a8eb5d5201315ef10"} -2023-12-15T15:00:29.414Z INFO initializing dbft {"height": 2896, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:29.414Z debug frostfs-node/morph.go:229 new block {"index": 2895} -2023-12-15T15:00:29.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2895, "blockHeight": 2895, "took": "4.550197ms"} -2023-12-15T15:00:30.413Z INFO sending PrepareRequest {"height": 2896, "view": 0} -2023-12-15T15:00:30.413Z INFO sending Commit {"height": 2896, "view": 0} -2023-12-15T15:00:30.413Z INFO approving block {"height": 2896, "hash": "dfe45cda647cd3ecc169e5d75a2dcf6ca30e2613b5a55799bf37fcfd222310af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "206c7cf3e4cc2d30b64d45175eee0927deac1fa1662b4d7a24e859884655db38"} -2023-12-15T15:00:30.414Z INFO initializing dbft {"height": 2897, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:30.415Z debug frostfs-node/morph.go:229 new block {"index": 2896} -2023-12-15T15:00:30.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2896, "blockHeight": 2896, "took": "4.364872ms"} -2023-12-15T15:00:31.415Z INFO sending PrepareRequest {"height": 2897, "view": 0} -2023-12-15T15:00:31.415Z INFO sending Commit {"height": 2897, "view": 0} -2023-12-15T15:00:31.415Z INFO approving block {"height": 2897, "hash": "2d1666f5b1c9e6fda0f63eb019b963067046555475d278a74b7db4407d5bccc2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfe45cda647cd3ecc169e5d75a2dcf6ca30e2613b5a55799bf37fcfd222310af"} -2023-12-15T15:00:31.417Z INFO initializing dbft {"height": 2898, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:31.417Z debug frostfs-node/morph.go:229 new block {"index": 2897} -2023-12-15T15:00:31.677Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2897, "blockHeight": 2897, "took": "3.651555ms"} -2023-12-15T15:00:32.416Z INFO sending PrepareRequest {"height": 2898, "view": 0} -2023-12-15T15:00:32.416Z INFO sending Commit {"height": 2898, "view": 0} -2023-12-15T15:00:32.416Z INFO approving block {"height": 2898, "hash": "9c3caaf475003df8ef82316e6fed11a3e83f837031fb05544e065ef9e9923bdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d1666f5b1c9e6fda0f63eb019b963067046555475d278a74b7db4407d5bccc2"} -2023-12-15T15:00:32.418Z INFO initializing dbft {"height": 2899, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:32.418Z debug frostfs-node/morph.go:229 new block {"index": 2898} -2023-12-15T15:00:32.677Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2898, "blockHeight": 2898, "took": "2.997135ms"} -2023-12-15T15:00:33.417Z INFO sending PrepareRequest {"height": 2899, "view": 0} -2023-12-15T15:00:33.417Z INFO sending Commit {"height": 2899, "view": 0} -2023-12-15T15:00:33.418Z INFO approving block {"height": 2899, "hash": "e316f4ee8c841531420450bc380490366b66f3fc0ce23e26257dbed38f29c966", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c3caaf475003df8ef82316e6fed11a3e83f837031fb05544e065ef9e9923bdb"} -2023-12-15T15:00:33.418Z INFO initializing dbft {"height": 2900, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:33.419Z debug frostfs-node/morph.go:229 new block {"index": 2899} -2023-12-15T15:00:33.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2899, "blockHeight": 2899, "took": "3.205851ms"} -2023-12-15T15:00:34.419Z INFO sending PrepareRequest {"height": 2900, "view": 0} -2023-12-15T15:00:34.419Z INFO sending Commit {"height": 2900, "view": 0} -2023-12-15T15:00:34.419Z INFO approving block {"height": 2900, "hash": "d0eaa6952622c7b8a59b157d6706828e7b9be911ea5f80590e2a6135d4f8b51f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e316f4ee8c841531420450bc380490366b66f3fc0ce23e26257dbed38f29c966"} -2023-12-15T15:00:34.420Z INFO initializing dbft {"height": 2901, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:34.421Z debug frostfs-node/morph.go:229 new block {"index": 2900} -2023-12-15T15:00:34.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2900, "blockHeight": 2900, "took": "3.011815ms"} -2023-12-15T15:00:35.420Z INFO sending PrepareRequest {"height": 2901, "view": 0} -2023-12-15T15:00:35.420Z INFO sending Commit {"height": 2901, "view": 0} -2023-12-15T15:00:35.420Z INFO approving block {"height": 2901, "hash": "01335ff67eb626f5480e665e1223f55c6e3d7a78419ab0a4f507142a95d0cab3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0eaa6952622c7b8a59b157d6706828e7b9be911ea5f80590e2a6135d4f8b51f"} -2023-12-15T15:00:35.421Z INFO initializing dbft {"height": 2902, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:35.422Z debug frostfs-node/morph.go:229 new block {"index": 2901} -2023-12-15T15:00:35.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2901, "blockHeight": 2901, "took": "2.937364ms"} -2023-12-15T15:00:36.421Z INFO sending PrepareRequest {"height": 2902, "view": 0} -2023-12-15T15:00:36.422Z INFO sending Commit {"height": 2902, "view": 0} -2023-12-15T15:00:36.422Z INFO approving block {"height": 2902, "hash": "1280db298f4f02039a058c3072312685fdd662c5897eb57cc7735d2f0330954a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01335ff67eb626f5480e665e1223f55c6e3d7a78419ab0a4f507142a95d0cab3"} -2023-12-15T15:00:36.423Z INFO initializing dbft {"height": 2903, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:36.423Z debug frostfs-node/morph.go:229 new block {"index": 2902} -2023-12-15T15:00:36.679Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2902, "blockHeight": 2902, "took": "3.081187ms"} -2023-12-15T15:00:37.423Z INFO sending PrepareRequest {"height": 2903, "view": 0} -2023-12-15T15:00:37.423Z INFO sending Commit {"height": 2903, "view": 0} -2023-12-15T15:00:37.423Z INFO approving block {"height": 2903, "hash": "61f857eba36ec37348c32ba7071fd61374125a34f42ed17390de0de7245de9a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1280db298f4f02039a058c3072312685fdd662c5897eb57cc7735d2f0330954a"} -2023-12-15T15:00:37.424Z INFO initializing dbft {"height": 2904, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:37.425Z debug frostfs-node/morph.go:229 new block {"index": 2903} -2023-12-15T15:00:37.680Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2903, "blockHeight": 2903, "took": "4.127787ms"} -2023-12-15T15:00:38.424Z INFO sending PrepareRequest {"height": 2904, "view": 0} -2023-12-15T15:00:38.424Z INFO sending Commit {"height": 2904, "view": 0} -2023-12-15T15:00:38.424Z INFO approving block {"height": 2904, "hash": "b30f024a5ec18d35f91381c22e42c270e418b07df3d14b2ed131f46d774d1ade", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61f857eba36ec37348c32ba7071fd61374125a34f42ed17390de0de7245de9a7"} -2023-12-15T15:00:38.425Z INFO initializing dbft {"height": 2905, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:38.426Z debug frostfs-node/morph.go:229 new block {"index": 2904} -2023-12-15T15:00:38.680Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2904, "blockHeight": 2904, "took": "3.836983ms"} -2023-12-15T15:00:39.425Z INFO sending PrepareRequest {"height": 2905, "view": 0} -2023-12-15T15:00:39.426Z INFO sending Commit {"height": 2905, "view": 0} -2023-12-15T15:00:39.426Z INFO approving block {"height": 2905, "hash": "0b756dc1ca04c01fdf71b7b122aef897053e1462b614aba4149d69e0fb2aebf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b30f024a5ec18d35f91381c22e42c270e418b07df3d14b2ed131f46d774d1ade"} -2023-12-15T15:00:39.427Z INFO initializing dbft {"height": 2906, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:39.427Z debug frostfs-node/morph.go:229 new block {"index": 2905} -2023-12-15T15:00:39.680Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2905, "blockHeight": 2905, "took": "3.092227ms"} -2023-12-15T15:00:40.427Z INFO sending PrepareRequest {"height": 2906, "view": 0} -2023-12-15T15:00:40.427Z INFO sending Commit {"height": 2906, "view": 0} -2023-12-15T15:00:40.427Z INFO approving block {"height": 2906, "hash": "872b9f183a438a6727adb1ee39139fd5c45a98f2b9b87c1f557876ab63725df4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b756dc1ca04c01fdf71b7b122aef897053e1462b614aba4149d69e0fb2aebf3"} -2023-12-15T15:00:40.428Z INFO initializing dbft {"height": 2907, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:40.428Z debug frostfs-node/morph.go:229 new block {"index": 2906} -2023-12-15T15:00:40.680Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2906, "blockHeight": 2906, "took": "3.129399ms"} -2023-12-15T15:00:41.428Z INFO sending PrepareRequest {"height": 2907, "view": 0} -2023-12-15T15:00:41.428Z INFO sending Commit {"height": 2907, "view": 0} -2023-12-15T15:00:41.428Z INFO approving block {"height": 2907, "hash": "1eb2fbffe6eb0e6efa2fb2330bf50c32abd9016852615c8413d823e604f74cc7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "872b9f183a438a6727adb1ee39139fd5c45a98f2b9b87c1f557876ab63725df4"} -2023-12-15T15:00:41.429Z INFO initializing dbft {"height": 2908, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:41.430Z debug frostfs-node/morph.go:229 new block {"index": 2907} -2023-12-15T15:00:41.681Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2907, "blockHeight": 2907, "took": "2.867861ms"} -2023-12-15T15:00:42.429Z INFO sending PrepareRequest {"height": 2908, "view": 0} -2023-12-15T15:00:42.429Z INFO sending Commit {"height": 2908, "view": 0} -2023-12-15T15:00:42.429Z INFO approving block {"height": 2908, "hash": "cbcb7ff498d82e2b7c6eb76fbcaa0ecd75ff423bb2c8bcf28e0dbfa900a8b24e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1eb2fbffe6eb0e6efa2fb2330bf50c32abd9016852615c8413d823e604f74cc7"} -2023-12-15T15:00:42.430Z INFO initializing dbft {"height": 2909, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:42.431Z debug frostfs-node/morph.go:229 new block {"index": 2908} -2023-12-15T15:00:42.681Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2908, "blockHeight": 2908, "took": "3.199431ms"} -2023-12-15T15:00:43.430Z INFO sending PrepareRequest {"height": 2909, "view": 0} -2023-12-15T15:00:43.431Z INFO sending Commit {"height": 2909, "view": 0} -2023-12-15T15:00:43.431Z INFO approving block {"height": 2909, "hash": "7186e28d1054a39670916c635157bb1d229bfbce3d523be00f6a6e05aa211ba3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbcb7ff498d82e2b7c6eb76fbcaa0ecd75ff423bb2c8bcf28e0dbfa900a8b24e"} -2023-12-15T15:00:43.432Z INFO initializing dbft {"height": 2910, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:43.432Z debug frostfs-node/morph.go:229 new block {"index": 2909} -2023-12-15T15:00:43.682Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2909, "blockHeight": 2909, "took": "3.166554ms"} -2023-12-15T15:00:44.432Z INFO sending PrepareRequest {"height": 2910, "view": 0} -2023-12-15T15:00:44.432Z INFO sending Commit {"height": 2910, "view": 0} -2023-12-15T15:00:44.433Z INFO approving block {"height": 2910, "hash": "3e9db01f8eec053af2693702bd2e3febc35afc82afc2eb3db9fe0bc0510e4b9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7186e28d1054a39670916c635157bb1d229bfbce3d523be00f6a6e05aa211ba3"} -2023-12-15T15:00:44.434Z INFO initializing dbft {"height": 2911, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:44.434Z debug frostfs-node/morph.go:229 new block {"index": 2910} -2023-12-15T15:00:44.684Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2910, "blockHeight": 2910, "took": "4.513249ms"} -2023-12-15T15:00:45.433Z INFO sending PrepareRequest {"height": 2911, "view": 0} -2023-12-15T15:00:45.433Z INFO sending Commit {"height": 2911, "view": 0} -2023-12-15T15:00:45.434Z INFO approving block {"height": 2911, "hash": "79a39981c6a2767d1c4c50a805688697320b883199d9a0954421b30ba4139bed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e9db01f8eec053af2693702bd2e3febc35afc82afc2eb3db9fe0bc0510e4b9a"} -2023-12-15T15:00:45.435Z INFO initializing dbft {"height": 2912, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:45.435Z debug frostfs-node/morph.go:229 new block {"index": 2911} -2023-12-15T15:00:45.684Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2911, "blockHeight": 2911, "took": "4.811935ms"} -2023-12-15T15:00:46.434Z INFO sending PrepareRequest {"height": 2912, "view": 0} -2023-12-15T15:00:46.435Z INFO sending Commit {"height": 2912, "view": 0} -2023-12-15T15:00:46.435Z INFO approving block {"height": 2912, "hash": "fc98fc496fec1d18491b43bfc7005bae1eb45a6bfb11f4789c362af2e5de02e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79a39981c6a2767d1c4c50a805688697320b883199d9a0954421b30ba4139bed"} -2023-12-15T15:00:46.436Z INFO initializing dbft {"height": 2913, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:46.437Z debug frostfs-node/morph.go:229 new block {"index": 2912} -2023-12-15T15:00:46.684Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2912, "blockHeight": 2912, "took": "3.986386ms"} -2023-12-15T15:00:47.436Z INFO sending PrepareRequest {"height": 2913, "view": 0} -2023-12-15T15:00:47.436Z INFO sending Commit {"height": 2913, "view": 0} -2023-12-15T15:00:47.437Z INFO approving block {"height": 2913, "hash": "ffd27dabc8dff3ef1eaba8d58e7d92c47fbbfae7a0ad1df2eed96d507ce1e256", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc98fc496fec1d18491b43bfc7005bae1eb45a6bfb11f4789c362af2e5de02e2"} -2023-12-15T15:00:47.438Z INFO initializing dbft {"height": 2914, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:47.438Z debug frostfs-node/morph.go:229 new block {"index": 2913} -2023-12-15T15:00:47.685Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2913, "blockHeight": 2913, "took": "4.490282ms"} -2023-12-15T15:00:48.437Z INFO sending PrepareRequest {"height": 2914, "view": 0} -2023-12-15T15:00:48.438Z INFO sending Commit {"height": 2914, "view": 0} -2023-12-15T15:00:48.438Z INFO approving block {"height": 2914, "hash": "16d02e6882e78d3ee1ecea5044e29db65b007fe65fcd5620a9c48de056eefa9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffd27dabc8dff3ef1eaba8d58e7d92c47fbbfae7a0ad1df2eed96d507ce1e256"} -2023-12-15T15:00:48.439Z INFO initializing dbft {"height": 2915, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:48.440Z debug frostfs-node/morph.go:229 new block {"index": 2914} -2023-12-15T15:00:48.684Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2914, "blockHeight": 2914, "took": "3.608843ms"} -2023-12-15T15:00:49.439Z INFO sending PrepareRequest {"height": 2915, "view": 0} -2023-12-15T15:00:49.439Z INFO sending Commit {"height": 2915, "view": 0} -2023-12-15T15:00:49.440Z INFO approving block {"height": 2915, "hash": "347634144cd10ea14402e6ce07dd63d1dbceb28d6267e72c90530bb63bb2cdfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16d02e6882e78d3ee1ecea5044e29db65b007fe65fcd5620a9c48de056eefa9f"} -2023-12-15T15:00:49.441Z INFO initializing dbft {"height": 2916, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:49.442Z debug frostfs-node/morph.go:229 new block {"index": 2915} -2023-12-15T15:00:49.685Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2915, "blockHeight": 2915, "took": "3.954477ms"} -2023-12-15T15:00:50.440Z INFO sending PrepareRequest {"height": 2916, "view": 0} -2023-12-15T15:00:50.440Z INFO sending Commit {"height": 2916, "view": 0} -2023-12-15T15:00:50.440Z INFO approving block {"height": 2916, "hash": "ba44d298439d15702324ef6b9c4b72e7f00717b68afe4fa19bd245e42c81cef7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "347634144cd10ea14402e6ce07dd63d1dbceb28d6267e72c90530bb63bb2cdfd"} -2023-12-15T15:00:50.441Z INFO initializing dbft {"height": 2917, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:50.442Z debug frostfs-node/morph.go:229 new block {"index": 2916} -2023-12-15T15:00:50.686Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2916, "blockHeight": 2916, "took": "4.885983ms"} -2023-12-15T15:00:51.442Z INFO sending PrepareRequest {"height": 2917, "view": 0} -2023-12-15T15:00:51.442Z INFO sending Commit {"height": 2917, "view": 0} -2023-12-15T15:00:51.442Z INFO approving block {"height": 2917, "hash": "fa1a3ec5a71af65ac51428555fd4846955d1b38582888de83a050fd9c76af45b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba44d298439d15702324ef6b9c4b72e7f00717b68afe4fa19bd245e42c81cef7"} -2023-12-15T15:00:51.443Z INFO initializing dbft {"height": 2918, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:51.443Z debug frostfs-node/morph.go:229 new block {"index": 2917} -2023-12-15T15:00:51.445Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:00:51.448Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:00:51.448Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:00:51.687Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2917, "blockHeight": 2917, "took": "4.517085ms"} -2023-12-15T15:00:52.442Z INFO sending PrepareRequest {"height": 2918, "view": 0} -2023-12-15T15:00:52.443Z INFO sending Commit {"height": 2918, "view": 0} -2023-12-15T15:00:52.443Z INFO approving block {"height": 2918, "hash": "05649817c1ad88e181eb3c9bab2757bc008a8ac252ce684fac4b62ac8c8a2eed", "tx_count": 2, "merkle": "6895db8b4f05023601f748bfa12b9581644f291c772d3d6290d154913a988fc0", "prev": "fa1a3ec5a71af65ac51428555fd4846955d1b38582888de83a050fd9c76af45b"} -2023-12-15T15:00:52.444Z INFO runtime log {"tx": "4a0c78fb5579db4e61b2ae6e46b9c3e17107cbb7be526cb293d428acea37896c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:00:52.444Z INFO runtime log {"tx": "4a0c78fb5579db4e61b2ae6e46b9c3e17107cbb7be526cb293d428acea37896c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:00:52.445Z INFO initializing dbft {"height": 2919, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:52.445Z debug frostfs-node/morph.go:229 new block {"index": 2918} -2023-12-15T15:00:52.689Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2918, "blockHeight": 2918, "took": "5.370154ms"} -2023-12-15T15:00:53.444Z INFO sending PrepareRequest {"height": 2919, "view": 0} -2023-12-15T15:00:53.445Z INFO sending Commit {"height": 2919, "view": 0} -2023-12-15T15:00:53.445Z INFO approving block {"height": 2919, "hash": "8c6362197b3ba3b31ba9c383c46a9028b0b8d09e4da45b5b93b0e0ef473707f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05649817c1ad88e181eb3c9bab2757bc008a8ac252ce684fac4b62ac8c8a2eed"} -2023-12-15T15:00:53.447Z INFO initializing dbft {"height": 2920, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:53.447Z debug frostfs-node/morph.go:229 new block {"index": 2919} -2023-12-15T15:00:53.687Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2919, "blockHeight": 2919, "took": "2.771441ms"} -2023-12-15T15:00:54.446Z INFO sending PrepareRequest {"height": 2920, "view": 0} -2023-12-15T15:00:54.447Z INFO sending Commit {"height": 2920, "view": 0} -2023-12-15T15:00:54.447Z INFO approving block {"height": 2920, "hash": "1b068dfe329927b1b7ddab72a522b04ed948b1c1fa78bbece54ea8253c571356", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c6362197b3ba3b31ba9c383c46a9028b0b8d09e4da45b5b93b0e0ef473707f4"} -2023-12-15T15:00:54.448Z INFO initializing dbft {"height": 2921, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:54.449Z debug frostfs-node/morph.go:229 new block {"index": 2920} -2023-12-15T15:00:54.688Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2920, "blockHeight": 2920, "took": "2.933996ms"} -2023-12-15T15:00:55.449Z INFO sending PrepareRequest {"height": 2921, "view": 0} -2023-12-15T15:00:55.449Z INFO sending Commit {"height": 2921, "view": 0} -2023-12-15T15:00:55.449Z INFO approving block {"height": 2921, "hash": "c4895af1498c78407e05515925904ebdc1baa9413457e99ee50d89932d8b7303", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b068dfe329927b1b7ddab72a522b04ed948b1c1fa78bbece54ea8253c571356"} -2023-12-15T15:00:55.450Z INFO initializing dbft {"height": 2922, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:55.450Z debug frostfs-node/morph.go:229 new block {"index": 2921} -2023-12-15T15:00:55.689Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2921, "blockHeight": 2921, "took": "2.918246ms"} -2023-12-15T15:00:56.450Z INFO sending PrepareRequest {"height": 2922, "view": 0} -2023-12-15T15:00:56.450Z INFO sending Commit {"height": 2922, "view": 0} -2023-12-15T15:00:56.450Z INFO approving block {"height": 2922, "hash": "d8819fa7bc210b3e4cf041c4f6953c72ab39624401724a096d3ce45376060f85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4895af1498c78407e05515925904ebdc1baa9413457e99ee50d89932d8b7303"} -2023-12-15T15:00:56.451Z INFO initializing dbft {"height": 2923, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:56.452Z debug frostfs-node/morph.go:229 new block {"index": 2922} -2023-12-15T15:00:56.691Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2922, "blockHeight": 2922, "took": "3.782138ms"} -2023-12-15T15:00:57.451Z INFO sending PrepareRequest {"height": 2923, "view": 0} -2023-12-15T15:00:57.451Z INFO sending Commit {"height": 2923, "view": 0} -2023-12-15T15:00:57.452Z INFO approving block {"height": 2923, "hash": "1ae4e025d86ba558ccec8ae749b7472ba5958b9b012bde635657fa1a01315cfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8819fa7bc210b3e4cf041c4f6953c72ab39624401724a096d3ce45376060f85"} -2023-12-15T15:00:57.453Z INFO initializing dbft {"height": 2924, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:57.453Z debug frostfs-node/morph.go:229 new block {"index": 2923} -2023-12-15T15:00:57.694Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2923, "blockHeight": 2923, "took": "6.113055ms"} -2023-12-15T15:00:58.452Z INFO sending PrepareRequest {"height": 2924, "view": 0} -2023-12-15T15:00:58.452Z INFO sending Commit {"height": 2924, "view": 0} -2023-12-15T15:00:58.452Z INFO approving block {"height": 2924, "hash": "c5fe73b830f27769f7b28b68e4ab90e0cee12523e8073a45846f1c84d6df8d75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ae4e025d86ba558ccec8ae749b7472ba5958b9b012bde635657fa1a01315cfe"} -2023-12-15T15:00:58.453Z INFO initializing dbft {"height": 2925, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:58.454Z debug frostfs-node/morph.go:229 new block {"index": 2924} -2023-12-15T15:00:58.691Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2924, "blockHeight": 2924, "took": "3.189967ms"} -2023-12-15T15:00:59.453Z INFO sending PrepareRequest {"height": 2925, "view": 0} -2023-12-15T15:00:59.453Z INFO sending Commit {"height": 2925, "view": 0} -2023-12-15T15:00:59.453Z INFO approving block {"height": 2925, "hash": "7d3c3885e48f6c9e1915eed91a6796c54e6914f1f651471be3409be7266a8aca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5fe73b830f27769f7b28b68e4ab90e0cee12523e8073a45846f1c84d6df8d75"} -2023-12-15T15:00:59.454Z INFO initializing dbft {"height": 2926, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:00:59.455Z debug frostfs-node/morph.go:229 new block {"index": 2925} -2023-12-15T15:00:59.694Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2925, "blockHeight": 2925, "took": "4.798373ms"} -2023-12-15T15:01:00.454Z INFO sending PrepareRequest {"height": 2926, "view": 0} -2023-12-15T15:01:00.455Z INFO sending Commit {"height": 2926, "view": 0} -2023-12-15T15:01:00.455Z INFO approving block {"height": 2926, "hash": "9cd7dde47cba0d351beda9cece16d22b7409d62fb0d7efb14ac1605709d70a89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d3c3885e48f6c9e1915eed91a6796c54e6914f1f651471be3409be7266a8aca"} -2023-12-15T15:01:00.456Z INFO initializing dbft {"height": 2927, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:00.456Z debug frostfs-node/morph.go:229 new block {"index": 2926} -2023-12-15T15:01:00.692Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2926, "blockHeight": 2926, "took": "2.927356ms"} -2023-12-15T15:01:01.456Z INFO sending PrepareRequest {"height": 2927, "view": 0} -2023-12-15T15:01:01.456Z INFO sending Commit {"height": 2927, "view": 0} -2023-12-15T15:01:01.456Z INFO approving block {"height": 2927, "hash": "c86d1a3ac48edf8415f92cad36115e0d977d2e4adfbf301b0b66acdb0a7ceacd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cd7dde47cba0d351beda9cece16d22b7409d62fb0d7efb14ac1605709d70a89"} -2023-12-15T15:01:01.457Z INFO initializing dbft {"height": 2928, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:01.457Z debug frostfs-node/morph.go:229 new block {"index": 2927} -2023-12-15T15:01:01.693Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2927, "blockHeight": 2927, "took": "3.058689ms"} -2023-12-15T15:01:02.457Z INFO sending PrepareRequest {"height": 2928, "view": 0} -2023-12-15T15:01:02.457Z INFO sending Commit {"height": 2928, "view": 0} -2023-12-15T15:01:02.457Z INFO approving block {"height": 2928, "hash": "b684efe09673daf9e714b91afddf9ec6a8d6de156f87b60f1bb6c5381e636692", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c86d1a3ac48edf8415f92cad36115e0d977d2e4adfbf301b0b66acdb0a7ceacd"} -2023-12-15T15:01:02.458Z INFO initializing dbft {"height": 2929, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:02.459Z debug frostfs-node/morph.go:229 new block {"index": 2928} -2023-12-15T15:01:02.693Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2928, "blockHeight": 2928, "took": "3.334518ms"} -2023-12-15T15:01:03.458Z INFO sending PrepareRequest {"height": 2929, "view": 0} -2023-12-15T15:01:03.459Z INFO sending Commit {"height": 2929, "view": 0} -2023-12-15T15:01:03.459Z INFO approving block {"height": 2929, "hash": "8d510df5a555e38698671496daea1b40da09eaa84a41345b0b4a9752f21a9641", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b684efe09673daf9e714b91afddf9ec6a8d6de156f87b60f1bb6c5381e636692"} -2023-12-15T15:01:03.460Z INFO initializing dbft {"height": 2930, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:03.461Z debug frostfs-node/morph.go:229 new block {"index": 2929} -2023-12-15T15:01:03.694Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2929, "blockHeight": 2929, "took": "3.70203ms"} -2023-12-15T15:01:04.460Z INFO sending PrepareRequest {"height": 2930, "view": 0} -2023-12-15T15:01:04.460Z INFO sending Commit {"height": 2930, "view": 0} -2023-12-15T15:01:04.461Z INFO approving block {"height": 2930, "hash": "f849028b83c6764c375a149272d0b26759d882e66eb2cb31de68af0e503692c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d510df5a555e38698671496daea1b40da09eaa84a41345b0b4a9752f21a9641"} -2023-12-15T15:01:04.462Z INFO initializing dbft {"height": 2931, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:04.463Z debug frostfs-node/morph.go:229 new block {"index": 2930} -2023-12-15T15:01:04.695Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2930, "blockHeight": 2930, "took": "4.129201ms"} -2023-12-15T15:01:05.461Z INFO sending PrepareRequest {"height": 2931, "view": 0} -2023-12-15T15:01:05.461Z INFO sending Commit {"height": 2931, "view": 0} -2023-12-15T15:01:05.462Z INFO approving block {"height": 2931, "hash": "ab946c6bc7343c39f8cc318f16df70e5959d0f9537c43e3dbe71c52540a60f57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f849028b83c6764c375a149272d0b26759d882e66eb2cb31de68af0e503692c7"} -2023-12-15T15:01:05.463Z INFO initializing dbft {"height": 2932, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:05.463Z debug frostfs-node/morph.go:229 new block {"index": 2931} -2023-12-15T15:01:05.695Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2931, "blockHeight": 2931, "took": "3.272452ms"} -2023-12-15T15:01:06.463Z INFO sending PrepareRequest {"height": 2932, "view": 0} -2023-12-15T15:01:06.463Z INFO sending Commit {"height": 2932, "view": 0} -2023-12-15T15:01:06.463Z INFO approving block {"height": 2932, "hash": "11726d0a06d264bd31e246ed7db2448ebd4506b7be8d1ef239026155b1dffd5f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab946c6bc7343c39f8cc318f16df70e5959d0f9537c43e3dbe71c52540a60f57"} -2023-12-15T15:01:06.464Z INFO initializing dbft {"height": 2933, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:06.465Z debug frostfs-node/morph.go:229 new block {"index": 2932} -2023-12-15T15:01:06.695Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2932, "blockHeight": 2932, "took": "2.878434ms"} -2023-12-15T15:01:07.464Z INFO sending PrepareRequest {"height": 2933, "view": 0} -2023-12-15T15:01:07.464Z INFO sending Commit {"height": 2933, "view": 0} -2023-12-15T15:01:07.464Z INFO approving block {"height": 2933, "hash": "463960728fad6d160cc8a818baf35c1f6766fd652c8f762abe283651a2f6a108", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11726d0a06d264bd31e246ed7db2448ebd4506b7be8d1ef239026155b1dffd5f"} -2023-12-15T15:01:07.465Z INFO initializing dbft {"height": 2934, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:07.466Z debug frostfs-node/morph.go:229 new block {"index": 2933} -2023-12-15T15:01:07.695Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2933, "blockHeight": 2933, "took": "3.06237ms"} -2023-12-15T15:01:08.465Z INFO sending PrepareRequest {"height": 2934, "view": 0} -2023-12-15T15:01:08.466Z INFO sending Commit {"height": 2934, "view": 0} -2023-12-15T15:01:08.466Z INFO approving block {"height": 2934, "hash": "85edda69c84ed9938550cb69530c606f8986d09791c6d284d1ffe720b2c1e53e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "463960728fad6d160cc8a818baf35c1f6766fd652c8f762abe283651a2f6a108"} -2023-12-15T15:01:08.468Z INFO initializing dbft {"height": 2935, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:08.468Z debug frostfs-node/morph.go:229 new block {"index": 2934} -2023-12-15T15:01:08.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2934, "blockHeight": 2934, "took": "3.100404ms"} -2023-12-15T15:01:09.467Z INFO sending PrepareRequest {"height": 2935, "view": 0} -2023-12-15T15:01:09.467Z INFO sending Commit {"height": 2935, "view": 0} -2023-12-15T15:01:09.467Z INFO approving block {"height": 2935, "hash": "18576affa703e12778047209a0580492375c55491dd6f88f37c13094aecd5e73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85edda69c84ed9938550cb69530c606f8986d09791c6d284d1ffe720b2c1e53e"} -2023-12-15T15:01:09.468Z INFO initializing dbft {"height": 2936, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:09.468Z debug frostfs-node/morph.go:229 new block {"index": 2935} -2023-12-15T15:01:09.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2935, "blockHeight": 2935, "took": "3.222654ms"} -2023-12-15T15:01:10.468Z INFO sending PrepareRequest {"height": 2936, "view": 0} -2023-12-15T15:01:10.468Z INFO sending Commit {"height": 2936, "view": 0} -2023-12-15T15:01:10.468Z INFO approving block {"height": 2936, "hash": "39192601c06fafc6c7e72f4441a474e1d197b3c1707bdb48c37ceea7cf4162c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18576affa703e12778047209a0580492375c55491dd6f88f37c13094aecd5e73"} -2023-12-15T15:01:10.469Z INFO initializing dbft {"height": 2937, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:10.470Z debug frostfs-node/morph.go:229 new block {"index": 2936} -2023-12-15T15:01:10.697Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2936, "blockHeight": 2936, "took": "3.345315ms"} -2023-12-15T15:01:11.470Z INFO sending PrepareRequest {"height": 2937, "view": 0} -2023-12-15T15:01:11.470Z INFO sending Commit {"height": 2937, "view": 0} -2023-12-15T15:01:11.471Z INFO approving block {"height": 2937, "hash": "b975cc7d2dd72671b7509f786ed38ab17c26ecb747730cf1afcf9768e0abc41b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39192601c06fafc6c7e72f4441a474e1d197b3c1707bdb48c37ceea7cf4162c0"} -2023-12-15T15:01:11.472Z INFO initializing dbft {"height": 2938, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:11.473Z debug frostfs-node/morph.go:229 new block {"index": 2937} -2023-12-15T15:01:11.699Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2937, "blockHeight": 2937, "took": "4.657103ms"} -2023-12-15T15:01:12.471Z INFO sending PrepareRequest {"height": 2938, "view": 0} -2023-12-15T15:01:12.471Z INFO sending Commit {"height": 2938, "view": 0} -2023-12-15T15:01:12.472Z INFO approving block {"height": 2938, "hash": "9fc2f89bed344033a1463ef4f8bcc7e27fe54e134c446121ecaed0572ca39098", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b975cc7d2dd72671b7509f786ed38ab17c26ecb747730cf1afcf9768e0abc41b"} -2023-12-15T15:01:12.473Z INFO initializing dbft {"height": 2939, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:12.473Z debug frostfs-node/morph.go:229 new block {"index": 2938} -2023-12-15T15:01:12.700Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2938, "blockHeight": 2938, "took": "6.000944ms"} -2023-12-15T15:01:13.472Z INFO sending PrepareRequest {"height": 2939, "view": 0} -2023-12-15T15:01:13.472Z INFO sending Commit {"height": 2939, "view": 0} -2023-12-15T15:01:13.473Z INFO approving block {"height": 2939, "hash": "0f75001635bb3f0c4cfa9fb0f15ff77cb1180cb2e9894a260ac0a40c2f6c07ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fc2f89bed344033a1463ef4f8bcc7e27fe54e134c446121ecaed0572ca39098"} -2023-12-15T15:01:13.474Z INFO initializing dbft {"height": 2940, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:13.474Z debug frostfs-node/morph.go:229 new block {"index": 2939} -2023-12-15T15:01:13.699Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2939, "blockHeight": 2939, "took": "3.477705ms"} -2023-12-15T15:01:14.473Z INFO sending PrepareRequest {"height": 2940, "view": 0} -2023-12-15T15:01:14.473Z INFO sending Commit {"height": 2940, "view": 0} -2023-12-15T15:01:14.474Z INFO approving block {"height": 2940, "hash": "0b787b9f907b937ad5ef08a08ddc0a5568cdd6716d22a0ebefde0b60c8b8be78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f75001635bb3f0c4cfa9fb0f15ff77cb1180cb2e9894a260ac0a40c2f6c07ed"} -2023-12-15T15:01:14.475Z INFO initializing dbft {"height": 2941, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:14.475Z debug frostfs-node/morph.go:229 new block {"index": 2940} -2023-12-15T15:01:14.698Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2940, "blockHeight": 2940, "took": "2.816162ms"} -2023-12-15T15:01:15.475Z INFO sending PrepareRequest {"height": 2941, "view": 0} -2023-12-15T15:01:15.475Z INFO sending Commit {"height": 2941, "view": 0} -2023-12-15T15:01:15.475Z INFO approving block {"height": 2941, "hash": "0840a76c4d7b9d12c8e64d96242399d3dffc1fb375d9153d2337500d7272852d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b787b9f907b937ad5ef08a08ddc0a5568cdd6716d22a0ebefde0b60c8b8be78"} -2023-12-15T15:01:15.476Z INFO initializing dbft {"height": 2942, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:15.476Z debug frostfs-node/morph.go:229 new block {"index": 2941} -2023-12-15T15:01:15.699Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2941, "blockHeight": 2941, "took": "2.845074ms"} -2023-12-15T15:01:16.476Z INFO sending PrepareRequest {"height": 2942, "view": 0} -2023-12-15T15:01:16.476Z INFO sending Commit {"height": 2942, "view": 0} -2023-12-15T15:01:16.476Z INFO approving block {"height": 2942, "hash": "c6450282980d5e585ae007297e97de6436889afcca586f8195a8ef93b9c1be10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0840a76c4d7b9d12c8e64d96242399d3dffc1fb375d9153d2337500d7272852d"} -2023-12-15T15:01:16.477Z INFO initializing dbft {"height": 2943, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:16.478Z debug frostfs-node/morph.go:229 new block {"index": 2942} -2023-12-15T15:01:16.700Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2942, "blockHeight": 2942, "took": "4.022727ms"} -2023-12-15T15:01:17.478Z INFO sending PrepareRequest {"height": 2943, "view": 0} -2023-12-15T15:01:17.478Z INFO sending Commit {"height": 2943, "view": 0} -2023-12-15T15:01:17.478Z INFO approving block {"height": 2943, "hash": "7259ea53a08fd53cb4510c542dd1b5c4c3f3f910311b16448d9ded6a9f7893dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6450282980d5e585ae007297e97de6436889afcca586f8195a8ef93b9c1be10"} -2023-12-15T15:01:17.479Z INFO initializing dbft {"height": 2944, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:17.479Z debug frostfs-node/morph.go:229 new block {"index": 2943} -2023-12-15T15:01:17.700Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2943, "blockHeight": 2943, "took": "3.05653ms"} -2023-12-15T15:01:18.479Z INFO sending PrepareRequest {"height": 2944, "view": 0} -2023-12-15T15:01:18.479Z INFO sending Commit {"height": 2944, "view": 0} -2023-12-15T15:01:18.479Z INFO approving block {"height": 2944, "hash": "af408825569467b66548d965ed2c2f1daf7ca8c9b833708d62d40886eee65e49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7259ea53a08fd53cb4510c542dd1b5c4c3f3f910311b16448d9ded6a9f7893dd"} -2023-12-15T15:01:18.481Z INFO initializing dbft {"height": 2945, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:18.482Z debug frostfs-node/morph.go:229 new block {"index": 2944} -2023-12-15T15:01:18.702Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2944, "blockHeight": 2944, "took": "4.841892ms"} -2023-12-15T15:01:19.481Z INFO sending PrepareRequest {"height": 2945, "view": 0} -2023-12-15T15:01:19.481Z INFO sending Commit {"height": 2945, "view": 0} -2023-12-15T15:01:19.481Z INFO approving block {"height": 2945, "hash": "ae19bb913aab8963a4197b1c4406a78f457cef65d33472af9897c04fd355ff3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af408825569467b66548d965ed2c2f1daf7ca8c9b833708d62d40886eee65e49"} -2023-12-15T15:01:19.483Z INFO initializing dbft {"height": 2946, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:19.483Z debug frostfs-node/morph.go:229 new block {"index": 2945} -2023-12-15T15:01:19.701Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2945, "blockHeight": 2945, "took": "3.635719ms"} -2023-12-15T15:01:20.482Z INFO sending PrepareRequest {"height": 2946, "view": 0} -2023-12-15T15:01:20.482Z INFO sending Commit {"height": 2946, "view": 0} -2023-12-15T15:01:20.483Z INFO approving block {"height": 2946, "hash": "2b96ffafc9e364dd32995664d99eeade5cf5acf6b971cc0d3bed0080fbbd68e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae19bb913aab8963a4197b1c4406a78f457cef65d33472af9897c04fd355ff3f"} -2023-12-15T15:01:20.483Z INFO initializing dbft {"height": 2947, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:20.484Z debug frostfs-node/morph.go:229 new block {"index": 2946} -2023-12-15T15:01:20.702Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2946, "blockHeight": 2946, "took": "3.77415ms"} -2023-12-15T15:01:21.484Z INFO sending PrepareRequest {"height": 2947, "view": 0} -2023-12-15T15:01:21.484Z INFO sending Commit {"height": 2947, "view": 0} -2023-12-15T15:01:21.484Z INFO approving block {"height": 2947, "hash": "45db3cf9f1fb5264a7f66b641edcf0e69cfa5a7f03262736ac6b09324a7fc08c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b96ffafc9e364dd32995664d99eeade5cf5acf6b971cc0d3bed0080fbbd68e8"} -2023-12-15T15:01:21.485Z INFO initializing dbft {"height": 2948, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:21.485Z debug frostfs-node/morph.go:229 new block {"index": 2947} -2023-12-15T15:01:21.702Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2947, "blockHeight": 2947, "took": "3.134581ms"} -2023-12-15T15:01:22.485Z INFO sending PrepareRequest {"height": 2948, "view": 0} -2023-12-15T15:01:22.485Z INFO sending Commit {"height": 2948, "view": 0} -2023-12-15T15:01:22.485Z INFO approving block {"height": 2948, "hash": "1dee3f76c14d9d963b8dd83a447cef9878dd096b39cd68a692f4c42e4987e548", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45db3cf9f1fb5264a7f66b641edcf0e69cfa5a7f03262736ac6b09324a7fc08c"} -2023-12-15T15:01:22.486Z INFO initializing dbft {"height": 2949, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:22.487Z debug frostfs-node/morph.go:229 new block {"index": 2948} -2023-12-15T15:01:22.703Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2948, "blockHeight": 2948, "took": "4.183395ms"} -2023-12-15T15:01:23.486Z INFO sending PrepareRequest {"height": 2949, "view": 0} -2023-12-15T15:01:23.486Z INFO sending Commit {"height": 2949, "view": 0} -2023-12-15T15:01:23.486Z INFO approving block {"height": 2949, "hash": "04fe63b08c2f6a1774920957af07a5b3067cb5550ce0c812565a3d6316693ca3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1dee3f76c14d9d963b8dd83a447cef9878dd096b39cd68a692f4c42e4987e548"} -2023-12-15T15:01:23.487Z INFO initializing dbft {"height": 2950, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:23.488Z debug frostfs-node/morph.go:229 new block {"index": 2949} -2023-12-15T15:01:23.703Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2949, "blockHeight": 2949, "took": "3.315521ms"} -2023-12-15T15:01:24.487Z INFO sending PrepareRequest {"height": 2950, "view": 0} -2023-12-15T15:01:24.487Z INFO sending Commit {"height": 2950, "view": 0} -2023-12-15T15:01:24.488Z INFO approving block {"height": 2950, "hash": "24704f93e040dfcbda90f30cb5b05a5040b2d92e863b8ba4ad0b9ed931f99ec0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04fe63b08c2f6a1774920957af07a5b3067cb5550ce0c812565a3d6316693ca3"} -2023-12-15T15:01:24.489Z INFO initializing dbft {"height": 2951, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:24.489Z debug frostfs-node/morph.go:229 new block {"index": 2950} -2023-12-15T15:01:24.703Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2950, "blockHeight": 2950, "took": "3.07319ms"} -2023-12-15T15:01:25.488Z INFO sending PrepareRequest {"height": 2951, "view": 0} -2023-12-15T15:01:25.489Z INFO sending Commit {"height": 2951, "view": 0} -2023-12-15T15:01:25.489Z INFO approving block {"height": 2951, "hash": "9cbac6778cb169db918ef3bedd9bbbeb753a57358c7c7cf183094d00f9b8ec46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24704f93e040dfcbda90f30cb5b05a5040b2d92e863b8ba4ad0b9ed931f99ec0"} -2023-12-15T15:01:25.490Z INFO initializing dbft {"height": 2952, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:25.490Z debug frostfs-node/morph.go:229 new block {"index": 2951} -2023-12-15T15:01:25.704Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2951, "blockHeight": 2951, "took": "3.564663ms"} -2023-12-15T15:01:26.490Z INFO sending PrepareRequest {"height": 2952, "view": 0} -2023-12-15T15:01:26.490Z INFO sending Commit {"height": 2952, "view": 0} -2023-12-15T15:01:26.490Z INFO approving block {"height": 2952, "hash": "2fe284030f68a3c1eed24bbccbb215f3da9ee0a3fe621c5738a88971af0b7d61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cbac6778cb169db918ef3bedd9bbbeb753a57358c7c7cf183094d00f9b8ec46"} -2023-12-15T15:01:26.491Z INFO initializing dbft {"height": 2953, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:26.492Z debug frostfs-node/morph.go:229 new block {"index": 2952} -2023-12-15T15:01:26.495Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 13 epoch for daughters"} -2023-12-15T15:01:26.496Z INFO runtime log {"tx": "07caa1340b626b0823e52bded7d9e897896940533078a62b623f6e925b1dec11", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:01:26.704Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2952, "blockHeight": 2952, "took": "3.068689ms"} -2023-12-15T15:01:27.492Z INFO sending PrepareRequest {"height": 2953, "view": 0} -2023-12-15T15:01:27.492Z INFO sending Commit {"height": 2953, "view": 0} -2023-12-15T15:01:27.492Z INFO approving block {"height": 2953, "hash": "ba92399abc6f5ac7aeb4afb47e9d598c9401c8ab6595a75b4aa3a929bdfac7a6", "tx_count": 1, "merkle": "f097d593e99d370122a0d3ed486664a9eafa74850d325641bd7acc06ebb78df1", "prev": "2fe284030f68a3c1eed24bbccbb215f3da9ee0a3fe621c5738a88971af0b7d61"} -2023-12-15T15:01:27.493Z INFO runtime log {"tx": "f18db7eb06cc7abd4156320d8574faeaa9646648edd3a02201379de993d597f0", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:01:27.493Z INFO initializing dbft {"height": 2954, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:27.494Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 13} -2023-12-15T15:01:27.494Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 13} -2023-12-15T15:01:27.494Z debug frostfs-node/morph.go:229 new block {"index": 2953} -2023-12-15T15:01:27.707Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 2953, "blockHeight": 2953, "took": "4.701288ms"} -2023-12-15T15:01:28.494Z INFO sending PrepareRequest {"height": 2954, "view": 0} -2023-12-15T15:01:28.494Z INFO sending Commit {"height": 2954, "view": 0} -2023-12-15T15:01:28.494Z INFO approving block {"height": 2954, "hash": "f9badaf6e7e185ad799001bd0fa9e2cfc571ed1ccf07afe148a63ea9c2acc004", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba92399abc6f5ac7aeb4afb47e9d598c9401c8ab6595a75b4aa3a929bdfac7a6"} -2023-12-15T15:01:28.495Z INFO initializing dbft {"height": 2955, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:28.496Z debug frostfs-node/morph.go:229 new block {"index": 2954} -2023-12-15T15:01:28.706Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2954, "blockHeight": 2954, "took": "2.918975ms"} -2023-12-15T15:01:29.495Z INFO sending PrepareRequest {"height": 2955, "view": 0} -2023-12-15T15:01:29.495Z INFO sending Commit {"height": 2955, "view": 0} -2023-12-15T15:01:29.496Z INFO approving block {"height": 2955, "hash": "2e397818b5f334ac2000183f4016d72f809613e3be2567c63376a22dcc26f28f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9badaf6e7e185ad799001bd0fa9e2cfc571ed1ccf07afe148a63ea9c2acc004"} -2023-12-15T15:01:29.497Z INFO initializing dbft {"height": 2956, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:29.497Z debug frostfs-node/morph.go:229 new block {"index": 2955} -2023-12-15T15:01:29.708Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2955, "blockHeight": 2955, "took": "4.568639ms"} -2023-12-15T15:01:30.497Z INFO sending PrepareRequest {"height": 2956, "view": 0} -2023-12-15T15:01:30.497Z INFO sending Commit {"height": 2956, "view": 0} -2023-12-15T15:01:30.497Z INFO approving block {"height": 2956, "hash": "babdf6eedc8d55aab418d0464c28ceb0eb38842ceafb2da481db87e99fd6c9a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e397818b5f334ac2000183f4016d72f809613e3be2567c63376a22dcc26f28f"} -2023-12-15T15:01:30.498Z INFO initializing dbft {"height": 2957, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:30.498Z debug frostfs-node/morph.go:229 new block {"index": 2956} -2023-12-15T15:01:30.707Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2956, "blockHeight": 2956, "took": "3.171015ms"} -2023-12-15T15:01:31.498Z INFO sending PrepareRequest {"height": 2957, "view": 0} -2023-12-15T15:01:31.499Z INFO sending Commit {"height": 2957, "view": 0} -2023-12-15T15:01:31.499Z INFO approving block {"height": 2957, "hash": "d3b5d51914b6d87e045109b13a77780e691029b96373d5c65612c88a335c4669", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "babdf6eedc8d55aab418d0464c28ceb0eb38842ceafb2da481db87e99fd6c9a5"} -2023-12-15T15:01:31.500Z INFO initializing dbft {"height": 2958, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:31.501Z debug frostfs-node/morph.go:229 new block {"index": 2957} -2023-12-15T15:01:31.707Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2957, "blockHeight": 2957, "took": "2.848373ms"} -2023-12-15T15:01:32.500Z INFO sending PrepareRequest {"height": 2958, "view": 0} -2023-12-15T15:01:32.500Z INFO sending Commit {"height": 2958, "view": 0} -2023-12-15T15:01:32.501Z INFO approving block {"height": 2958, "hash": "d6a84a0c372f21ede4bbad9d9e7b55c40c61e3bcf9661cb5a60677b1ae883d9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3b5d51914b6d87e045109b13a77780e691029b96373d5c65612c88a335c4669"} -2023-12-15T15:01:32.502Z INFO initializing dbft {"height": 2959, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:32.502Z debug frostfs-node/morph.go:229 new block {"index": 2958} -2023-12-15T15:01:32.713Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2958, "blockHeight": 2958, "took": "8.519108ms"} -2023-12-15T15:01:33.501Z INFO sending PrepareRequest {"height": 2959, "view": 0} -2023-12-15T15:01:33.501Z INFO sending Commit {"height": 2959, "view": 0} -2023-12-15T15:01:33.502Z INFO approving block {"height": 2959, "hash": "d61c2685154400bb5219260a6e13b591bd01e57948dd14dc6a7f28049a8fca60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6a84a0c372f21ede4bbad9d9e7b55c40c61e3bcf9661cb5a60677b1ae883d9a"} -2023-12-15T15:01:33.503Z INFO initializing dbft {"height": 2960, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:33.503Z debug frostfs-node/morph.go:229 new block {"index": 2959} -2023-12-15T15:01:33.708Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2959, "blockHeight": 2959, "took": "2.784872ms"} -2023-12-15T15:01:34.502Z INFO sending PrepareRequest {"height": 2960, "view": 0} -2023-12-15T15:01:34.502Z INFO sending Commit {"height": 2960, "view": 0} -2023-12-15T15:01:34.502Z INFO approving block {"height": 2960, "hash": "11823ab38814dd0104e8114afd5e52b2164ebf664c074647bf7dd2b137176d89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d61c2685154400bb5219260a6e13b591bd01e57948dd14dc6a7f28049a8fca60"} -2023-12-15T15:01:34.503Z INFO initializing dbft {"height": 2961, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:34.504Z debug frostfs-node/morph.go:229 new block {"index": 2960} -2023-12-15T15:01:34.709Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2960, "blockHeight": 2960, "took": "4.09088ms"} -2023-12-15T15:01:35.504Z INFO sending PrepareRequest {"height": 2961, "view": 0} -2023-12-15T15:01:35.504Z INFO sending Commit {"height": 2961, "view": 0} -2023-12-15T15:01:35.504Z INFO approving block {"height": 2961, "hash": "6d26330d42f63a40762ecb998b91b8596a8546aea11a4bbbd55851c1a13b9602", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11823ab38814dd0104e8114afd5e52b2164ebf664c074647bf7dd2b137176d89"} -2023-12-15T15:01:35.505Z INFO initializing dbft {"height": 2962, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:35.506Z debug frostfs-node/morph.go:229 new block {"index": 2961} -2023-12-15T15:01:35.709Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2961, "blockHeight": 2961, "took": "3.382789ms"} -2023-12-15T15:01:36.505Z INFO sending PrepareRequest {"height": 2962, "view": 0} -2023-12-15T15:01:36.505Z INFO sending Commit {"height": 2962, "view": 0} -2023-12-15T15:01:36.505Z INFO approving block {"height": 2962, "hash": "c130f14a7e9af2631b62d746fabc658b134e0e8be44f352d800c1960141a13b9", "tx_count": 1, "merkle": "7fee4f40186cb859fa67c90891a9212f0aa0e4e152a58b1a086c253e109fa47c", "prev": "6d26330d42f63a40762ecb998b91b8596a8546aea11a4bbbd55851c1a13b9602"} -2023-12-15T15:01:36.506Z INFO initializing dbft {"height": 2963, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:36.507Z debug frostfs-node/morph.go:229 new block {"index": 2962} -2023-12-15T15:01:36.509Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T15:01:36.713Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 2962, "blockHeight": 2962, "took": "6.18687ms"} -2023-12-15T15:01:37.506Z INFO sending PrepareRequest {"height": 2963, "view": 0} -2023-12-15T15:01:37.506Z INFO sending Commit {"height": 2963, "view": 0} -2023-12-15T15:01:37.506Z INFO approving block {"height": 2963, "hash": "846e42d9646f85f1c12e27975dc0b1dbb3d15bd9e917d7f8fa9f8bde3c940b4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c130f14a7e9af2631b62d746fabc658b134e0e8be44f352d800c1960141a13b9"} -2023-12-15T15:01:37.507Z INFO initializing dbft {"height": 2964, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:37.507Z debug frostfs-node/morph.go:229 new block {"index": 2963} -2023-12-15T15:01:37.711Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2963, "blockHeight": 2963, "took": "3.015734ms"} -2023-12-15T15:01:38.507Z INFO sending PrepareRequest {"height": 2964, "view": 0} -2023-12-15T15:01:38.508Z INFO sending Commit {"height": 2964, "view": 0} -2023-12-15T15:01:38.508Z INFO approving block {"height": 2964, "hash": "5ed051063ffcadc6cf66b5294cef93a47c0a7432a07af814826aefce412b2790", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "846e42d9646f85f1c12e27975dc0b1dbb3d15bd9e917d7f8fa9f8bde3c940b4e"} -2023-12-15T15:01:38.509Z INFO initializing dbft {"height": 2965, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:38.509Z debug frostfs-node/morph.go:229 new block {"index": 2964} -2023-12-15T15:01:38.713Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2964, "blockHeight": 2964, "took": "4.00862ms"} -2023-12-15T15:01:39.509Z INFO sending PrepareRequest {"height": 2965, "view": 0} -2023-12-15T15:01:39.510Z INFO sending Commit {"height": 2965, "view": 0} -2023-12-15T15:01:39.510Z INFO approving block {"height": 2965, "hash": "e46b8fdbcef117c8cc4b57834158517a639e2e4e059cd6a3b0592088295a6572", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ed051063ffcadc6cf66b5294cef93a47c0a7432a07af814826aefce412b2790"} -2023-12-15T15:01:39.511Z INFO initializing dbft {"height": 2966, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:39.512Z debug frostfs-node/morph.go:229 new block {"index": 2965} -2023-12-15T15:01:39.713Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2965, "blockHeight": 2965, "took": "3.529773ms"} -2023-12-15T15:01:40.511Z INFO sending PrepareRequest {"height": 2966, "view": 0} -2023-12-15T15:01:40.511Z INFO sending Commit {"height": 2966, "view": 0} -2023-12-15T15:01:40.511Z INFO approving block {"height": 2966, "hash": "f7f8fda88a87b5b7bd1e7c881e5df815e33b9d6bef0d950c290b69d1af4afc0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e46b8fdbcef117c8cc4b57834158517a639e2e4e059cd6a3b0592088295a6572"} -2023-12-15T15:01:40.512Z INFO initializing dbft {"height": 2967, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:40.512Z debug frostfs-node/morph.go:229 new block {"index": 2966} -2023-12-15T15:01:40.714Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2966, "blockHeight": 2966, "took": "4.01872ms"} -2023-12-15T15:01:41.512Z INFO sending PrepareRequest {"height": 2967, "view": 0} -2023-12-15T15:01:41.512Z INFO sending Commit {"height": 2967, "view": 0} -2023-12-15T15:01:41.512Z INFO approving block {"height": 2967, "hash": "2de78f886448c86a3bac466e262364e619789fede032a23fbf9ce6419bcfa89d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7f8fda88a87b5b7bd1e7c881e5df815e33b9d6bef0d950c290b69d1af4afc0a"} -2023-12-15T15:01:41.513Z INFO initializing dbft {"height": 2968, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:41.513Z debug frostfs-node/morph.go:229 new block {"index": 2967} -2023-12-15T15:01:41.515Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:01:41.517Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:01:41.517Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:01:41.717Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2967, "blockHeight": 2967, "took": "6.227579ms"} -2023-12-15T15:01:42.512Z INFO sending PrepareRequest {"height": 2968, "view": 0} -2023-12-15T15:01:42.513Z INFO sending Commit {"height": 2968, "view": 0} -2023-12-15T15:01:42.513Z INFO approving block {"height": 2968, "hash": "d54151821361d1b42231287d2f5a1c36b70b0566536b56ab6c155f1445836393", "tx_count": 2, "merkle": "fc20d4f2f35b15969f509a9ee07f242a5c22646b369a6a7be0ca44b658e02be6", "prev": "2de78f886448c86a3bac466e262364e619789fede032a23fbf9ce6419bcfa89d"} -2023-12-15T15:01:42.513Z INFO runtime log {"tx": "c1fe0ddaa40f1aa5aae1b0192fd1a7d7c648b1aa75e000f8c21472f4ced2610b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:01:42.513Z INFO runtime log {"tx": "c1fe0ddaa40f1aa5aae1b0192fd1a7d7c648b1aa75e000f8c21472f4ced2610b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:01:42.514Z INFO initializing dbft {"height": 2969, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:42.515Z debug frostfs-node/morph.go:229 new block {"index": 2968} -2023-12-15T15:01:42.715Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 2968, "blockHeight": 2968, "took": "3.334327ms"} -2023-12-15T15:01:43.514Z INFO sending PrepareRequest {"height": 2969, "view": 0} -2023-12-15T15:01:43.514Z INFO sending Commit {"height": 2969, "view": 0} -2023-12-15T15:01:43.514Z INFO approving block {"height": 2969, "hash": "392d63b06d9e0906a746be63ce16a5fdeff52ba0eae6e0e6705eac921b702945", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d54151821361d1b42231287d2f5a1c36b70b0566536b56ab6c155f1445836393"} -2023-12-15T15:01:43.515Z INFO initializing dbft {"height": 2970, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:43.516Z debug frostfs-node/morph.go:229 new block {"index": 2969} -2023-12-15T15:01:43.715Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2969, "blockHeight": 2969, "took": "2.885204ms"} -2023-12-15T15:01:44.515Z INFO sending PrepareRequest {"height": 2970, "view": 0} -2023-12-15T15:01:44.515Z INFO sending Commit {"height": 2970, "view": 0} -2023-12-15T15:01:44.516Z INFO approving block {"height": 2970, "hash": "5aa55c0f1c74478010d22d278150da501aa75bdd703de36a5ad91be08c5032f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "392d63b06d9e0906a746be63ce16a5fdeff52ba0eae6e0e6705eac921b702945"} -2023-12-15T15:01:44.516Z INFO initializing dbft {"height": 2971, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:44.517Z debug frostfs-node/morph.go:229 new block {"index": 2970} -2023-12-15T15:01:44.715Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2970, "blockHeight": 2970, "took": "3.018918ms"} -2023-12-15T15:01:45.516Z INFO sending PrepareRequest {"height": 2971, "view": 0} -2023-12-15T15:01:45.517Z INFO sending Commit {"height": 2971, "view": 0} -2023-12-15T15:01:45.517Z INFO approving block {"height": 2971, "hash": "c0f67339412351e267e48c88b8cc1cbd78d7f29229ceaed695caea44cb0237b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aa55c0f1c74478010d22d278150da501aa75bdd703de36a5ad91be08c5032f9"} -2023-12-15T15:01:45.518Z INFO initializing dbft {"height": 2972, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:45.519Z debug frostfs-node/morph.go:229 new block {"index": 2971} -2023-12-15T15:01:45.716Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2971, "blockHeight": 2971, "took": "3.09967ms"} -2023-12-15T15:01:46.518Z INFO sending PrepareRequest {"height": 2972, "view": 0} -2023-12-15T15:01:46.518Z INFO sending Commit {"height": 2972, "view": 0} -2023-12-15T15:01:46.518Z INFO approving block {"height": 2972, "hash": "cfdfcdff33a2b8e30862bac2ada0d333466a6b71d5e3404ede75675dc355e434", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0f67339412351e267e48c88b8cc1cbd78d7f29229ceaed695caea44cb0237b9"} -2023-12-15T15:01:46.519Z INFO initializing dbft {"height": 2973, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:46.520Z debug frostfs-node/morph.go:229 new block {"index": 2972} -2023-12-15T15:01:46.716Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2972, "blockHeight": 2972, "took": "3.285403ms"} -2023-12-15T15:01:47.519Z INFO sending PrepareRequest {"height": 2973, "view": 0} -2023-12-15T15:01:47.519Z INFO sending Commit {"height": 2973, "view": 0} -2023-12-15T15:01:47.520Z INFO approving block {"height": 2973, "hash": "1e1454293882a8d7b0d339f600d1b715879feb1669f45264c3b41a80994477d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfdfcdff33a2b8e30862bac2ada0d333466a6b71d5e3404ede75675dc355e434"} -2023-12-15T15:01:47.520Z INFO initializing dbft {"height": 2974, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:47.521Z debug frostfs-node/morph.go:229 new block {"index": 2973} -2023-12-15T15:01:47.717Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2973, "blockHeight": 2973, "took": "3.634386ms"} -2023-12-15T15:01:48.520Z INFO sending PrepareRequest {"height": 2974, "view": 0} -2023-12-15T15:01:48.521Z INFO sending Commit {"height": 2974, "view": 0} -2023-12-15T15:01:48.521Z INFO approving block {"height": 2974, "hash": "e98005d5d85c27e8cbeae9370e54776d475df510d576176181c83a1e2a054daa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e1454293882a8d7b0d339f600d1b715879feb1669f45264c3b41a80994477d4"} -2023-12-15T15:01:48.523Z INFO initializing dbft {"height": 2975, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:48.523Z debug frostfs-node/morph.go:229 new block {"index": 2974} -2023-12-15T15:01:48.718Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2974, "blockHeight": 2974, "took": "3.979009ms"} -2023-12-15T15:01:49.522Z INFO sending PrepareRequest {"height": 2975, "view": 0} -2023-12-15T15:01:49.522Z INFO sending Commit {"height": 2975, "view": 0} -2023-12-15T15:01:49.523Z INFO approving block {"height": 2975, "hash": "48aa6692b8adc0a83798f810b43929cdb2cde17484f152cd449ec4fdd37096f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e98005d5d85c27e8cbeae9370e54776d475df510d576176181c83a1e2a054daa"} -2023-12-15T15:01:49.524Z INFO initializing dbft {"height": 2976, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:49.524Z debug frostfs-node/morph.go:229 new block {"index": 2975} -2023-12-15T15:01:49.718Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2975, "blockHeight": 2975, "took": "2.977266ms"} -2023-12-15T15:01:50.524Z INFO sending PrepareRequest {"height": 2976, "view": 0} -2023-12-15T15:01:50.524Z INFO sending Commit {"height": 2976, "view": 0} -2023-12-15T15:01:50.524Z INFO approving block {"height": 2976, "hash": "c91723dccbe924e305c1da68088bca6a63d0fdcc69deea9f68021afa1ca545fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48aa6692b8adc0a83798f810b43929cdb2cde17484f152cd449ec4fdd37096f0"} -2023-12-15T15:01:50.526Z INFO initializing dbft {"height": 2977, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:50.526Z debug frostfs-node/morph.go:229 new block {"index": 2976} -2023-12-15T15:01:50.719Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2976, "blockHeight": 2976, "took": "3.490401ms"} -2023-12-15T15:01:51.525Z INFO sending PrepareRequest {"height": 2977, "view": 0} -2023-12-15T15:01:51.525Z INFO sending Commit {"height": 2977, "view": 0} -2023-12-15T15:01:51.526Z INFO approving block {"height": 2977, "hash": "eef0653cf4d5518757a09b12ab43f2eaeb3a109a6eccd169e07e7d413abc463c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c91723dccbe924e305c1da68088bca6a63d0fdcc69deea9f68021afa1ca545fd"} -2023-12-15T15:01:51.527Z INFO initializing dbft {"height": 2978, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:51.528Z debug frostfs-node/morph.go:229 new block {"index": 2977} -2023-12-15T15:01:51.720Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2977, "blockHeight": 2977, "took": "3.668155ms"} -2023-12-15T15:01:52.527Z INFO sending PrepareRequest {"height": 2978, "view": 0} -2023-12-15T15:01:52.527Z INFO sending Commit {"height": 2978, "view": 0} -2023-12-15T15:01:52.527Z INFO approving block {"height": 2978, "hash": "eeb07821a101cb4988085a6e74c2d9c6b009849cc9ca1eac7a95af1c672f3bdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eef0653cf4d5518757a09b12ab43f2eaeb3a109a6eccd169e07e7d413abc463c"} -2023-12-15T15:01:52.528Z INFO initializing dbft {"height": 2979, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:52.528Z debug frostfs-node/morph.go:229 new block {"index": 2978} -2023-12-15T15:01:52.720Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2978, "blockHeight": 2978, "took": "3.013867ms"} -2023-12-15T15:01:53.528Z INFO sending PrepareRequest {"height": 2979, "view": 0} -2023-12-15T15:01:53.528Z INFO sending Commit {"height": 2979, "view": 0} -2023-12-15T15:01:53.529Z INFO approving block {"height": 2979, "hash": "3a77455503b2d9dd4e74ebb62d38855765b29386f46fee4dcef8bb99ff97df71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eeb07821a101cb4988085a6e74c2d9c6b009849cc9ca1eac7a95af1c672f3bdf"} -2023-12-15T15:01:53.530Z INFO initializing dbft {"height": 2980, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:53.530Z debug frostfs-node/morph.go:229 new block {"index": 2979} -2023-12-15T15:01:53.722Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2979, "blockHeight": 2979, "took": "4.633928ms"} -2023-12-15T15:01:54.529Z INFO sending PrepareRequest {"height": 2980, "view": 0} -2023-12-15T15:01:54.530Z INFO sending Commit {"height": 2980, "view": 0} -2023-12-15T15:01:54.530Z INFO approving block {"height": 2980, "hash": "090f0b18f8be6cca0b0f746531d0ed7ff6ad8738c74b5477848e193d0a0c38a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a77455503b2d9dd4e74ebb62d38855765b29386f46fee4dcef8bb99ff97df71"} -2023-12-15T15:01:54.531Z INFO initializing dbft {"height": 2981, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:54.531Z debug frostfs-node/morph.go:229 new block {"index": 2980} -2023-12-15T15:01:54.723Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2980, "blockHeight": 2980, "took": "4.554553ms"} -2023-12-15T15:01:55.531Z INFO sending PrepareRequest {"height": 2981, "view": 0} -2023-12-15T15:01:55.532Z INFO sending Commit {"height": 2981, "view": 0} -2023-12-15T15:01:55.532Z INFO approving block {"height": 2981, "hash": "1c23e1adb0c4fadf2f9f721407c25e57a7d30c62623b3290738c94f7932b05db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "090f0b18f8be6cca0b0f746531d0ed7ff6ad8738c74b5477848e193d0a0c38a5"} -2023-12-15T15:01:55.534Z INFO initializing dbft {"height": 2982, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:55.534Z debug frostfs-node/morph.go:229 new block {"index": 2981} -2023-12-15T15:01:55.723Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2981, "blockHeight": 2981, "took": "3.819907ms"} -2023-12-15T15:01:56.533Z INFO sending PrepareRequest {"height": 2982, "view": 0} -2023-12-15T15:01:56.534Z INFO sending Commit {"height": 2982, "view": 0} -2023-12-15T15:01:56.534Z INFO approving block {"height": 2982, "hash": "28924b603d785d9ce1bb4065fe461383ef829cc68212a9b6a4fd5859554bce95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c23e1adb0c4fadf2f9f721407c25e57a7d30c62623b3290738c94f7932b05db"} -2023-12-15T15:01:56.535Z INFO initializing dbft {"height": 2983, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:56.536Z debug frostfs-node/morph.go:229 new block {"index": 2982} -2023-12-15T15:01:56.723Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2982, "blockHeight": 2982, "took": "4.025681ms"} -2023-12-15T15:01:57.535Z INFO sending PrepareRequest {"height": 2983, "view": 0} -2023-12-15T15:01:57.535Z INFO sending Commit {"height": 2983, "view": 0} -2023-12-15T15:01:57.536Z INFO approving block {"height": 2983, "hash": "39255172205c7c9f5d997f1ce6c63b7a7b334912b46c8cba22353279caeba182", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28924b603d785d9ce1bb4065fe461383ef829cc68212a9b6a4fd5859554bce95"} -2023-12-15T15:01:57.537Z INFO initializing dbft {"height": 2984, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:57.537Z debug frostfs-node/morph.go:229 new block {"index": 2983} -2023-12-15T15:01:57.723Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2983, "blockHeight": 2983, "took": "3.430456ms"} -2023-12-15T15:01:58.537Z INFO sending PrepareRequest {"height": 2984, "view": 0} -2023-12-15T15:01:58.537Z INFO sending Commit {"height": 2984, "view": 0} -2023-12-15T15:01:58.537Z INFO approving block {"height": 2984, "hash": "ee15e57c2f200be00a61cc28d4885e771502a33248d8daeb356a93fdd345c213", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39255172205c7c9f5d997f1ce6c63b7a7b334912b46c8cba22353279caeba182"} -2023-12-15T15:01:58.538Z INFO initializing dbft {"height": 2985, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:58.539Z debug frostfs-node/morph.go:229 new block {"index": 2984} -2023-12-15T15:01:58.726Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2984, "blockHeight": 2984, "took": "5.444987ms"} -2023-12-15T15:01:59.539Z INFO sending PrepareRequest {"height": 2985, "view": 0} -2023-12-15T15:01:59.539Z INFO sending Commit {"height": 2985, "view": 0} -2023-12-15T15:01:59.540Z INFO approving block {"height": 2985, "hash": "c66b5ea85d3ef9740329550122f423d9e2878f69623d6e5cda515ed7024742b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee15e57c2f200be00a61cc28d4885e771502a33248d8daeb356a93fdd345c213"} -2023-12-15T15:01:59.541Z INFO initializing dbft {"height": 2986, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:01:59.543Z debug frostfs-node/morph.go:229 new block {"index": 2985} -2023-12-15T15:01:59.727Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2985, "blockHeight": 2985, "took": "5.927059ms"} -2023-12-15T15:02:00.541Z INFO sending PrepareRequest {"height": 2986, "view": 0} -2023-12-15T15:02:00.541Z INFO sending Commit {"height": 2986, "view": 0} -2023-12-15T15:02:00.541Z INFO approving block {"height": 2986, "hash": "cd16c6852f8b2458683a2484657904797c06c361652cfd8a5cbc3e5d9a6b92f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c66b5ea85d3ef9740329550122f423d9e2878f69623d6e5cda515ed7024742b4"} -2023-12-15T15:02:00.543Z INFO initializing dbft {"height": 2987, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:00.543Z debug frostfs-node/morph.go:229 new block {"index": 2986} -2023-12-15T15:02:00.728Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2986, "blockHeight": 2986, "took": "6.197142ms"} -2023-12-15T15:02:01.542Z INFO sending PrepareRequest {"height": 2987, "view": 0} -2023-12-15T15:02:01.542Z INFO sending Commit {"height": 2987, "view": 0} -2023-12-15T15:02:01.543Z INFO approving block {"height": 2987, "hash": "6cc72d267002ebc18ec69fb65db49e56b2a3c4b3d5e7e1dde46ba73a0b4ad69e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd16c6852f8b2458683a2484657904797c06c361652cfd8a5cbc3e5d9a6b92f1"} -2023-12-15T15:02:01.544Z INFO initializing dbft {"height": 2988, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:01.545Z debug frostfs-node/morph.go:229 new block {"index": 2987} -2023-12-15T15:02:01.727Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2987, "blockHeight": 2987, "took": "4.087057ms"} -2023-12-15T15:02:02.543Z INFO sending PrepareRequest {"height": 2988, "view": 0} -2023-12-15T15:02:02.544Z INFO sending Commit {"height": 2988, "view": 0} -2023-12-15T15:02:02.544Z INFO approving block {"height": 2988, "hash": "e768da6f7e65d9767c5e8e4ae8bf3a5932e0f781b7b0ea0fc92800a295c07978", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cc72d267002ebc18ec69fb65db49e56b2a3c4b3d5e7e1dde46ba73a0b4ad69e"} -2023-12-15T15:02:02.545Z INFO initializing dbft {"height": 2989, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:02.545Z debug frostfs-node/morph.go:229 new block {"index": 2988} -2023-12-15T15:02:02.728Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2988, "blockHeight": 2988, "took": "3.978016ms"} -2023-12-15T15:02:03.545Z INFO sending PrepareRequest {"height": 2989, "view": 0} -2023-12-15T15:02:03.545Z INFO sending Commit {"height": 2989, "view": 0} -2023-12-15T15:02:03.545Z INFO approving block {"height": 2989, "hash": "7357879cde48fcc0821c996d15babb6c8b192c195ceedaeee2a6989d6607cd2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e768da6f7e65d9767c5e8e4ae8bf3a5932e0f781b7b0ea0fc92800a295c07978"} -2023-12-15T15:02:03.546Z INFO initializing dbft {"height": 2990, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:03.547Z debug frostfs-node/morph.go:229 new block {"index": 2989} -2023-12-15T15:02:03.732Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2989, "blockHeight": 2989, "took": "8.064028ms"} -2023-12-15T15:02:04.546Z INFO sending PrepareRequest {"height": 2990, "view": 0} -2023-12-15T15:02:04.546Z INFO sending Commit {"height": 2990, "view": 0} -2023-12-15T15:02:04.547Z INFO approving block {"height": 2990, "hash": "2f6f178981d607559b1154cbc5ae58052df1a9fc86deb35f4afa194789d1e440", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7357879cde48fcc0821c996d15babb6c8b192c195ceedaeee2a6989d6607cd2d"} -2023-12-15T15:02:04.547Z INFO initializing dbft {"height": 2991, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:04.548Z debug frostfs-node/morph.go:229 new block {"index": 2990} -2023-12-15T15:02:04.728Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2990, "blockHeight": 2990, "took": "3.691601ms"} -2023-12-15T15:02:05.548Z INFO sending PrepareRequest {"height": 2991, "view": 0} -2023-12-15T15:02:05.548Z INFO sending Commit {"height": 2991, "view": 0} -2023-12-15T15:02:05.548Z INFO approving block {"height": 2991, "hash": "7d51e02c58bd2a93d02750b15b1e2a59c307ae5517b4420c9992d178d1a716ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f6f178981d607559b1154cbc5ae58052df1a9fc86deb35f4afa194789d1e440"} -2023-12-15T15:02:05.549Z INFO initializing dbft {"height": 2992, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:05.549Z debug frostfs-node/morph.go:229 new block {"index": 2991} -2023-12-15T15:02:05.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2991, "blockHeight": 2991, "took": "5.93965ms"} -2023-12-15T15:02:06.549Z INFO sending PrepareRequest {"height": 2992, "view": 0} -2023-12-15T15:02:06.550Z INFO sending Commit {"height": 2992, "view": 0} -2023-12-15T15:02:06.550Z INFO approving block {"height": 2992, "hash": "155f726d4273b69c74c080a78d330888f1a09594efded1737b74e7f518af813b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d51e02c58bd2a93d02750b15b1e2a59c307ae5517b4420c9992d178d1a716ce"} -2023-12-15T15:02:06.552Z INFO initializing dbft {"height": 2993, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:06.552Z debug frostfs-node/morph.go:229 new block {"index": 2992} -2023-12-15T15:02:06.729Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2992, "blockHeight": 2992, "took": "3.848343ms"} -2023-12-15T15:02:07.551Z INFO sending PrepareRequest {"height": 2993, "view": 0} -2023-12-15T15:02:07.551Z INFO sending Commit {"height": 2993, "view": 0} -2023-12-15T15:02:07.552Z INFO approving block {"height": 2993, "hash": "eee7b04a063bd90503a362132bec5e6966d84fbd6c8567d64418a1967f87a82c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "155f726d4273b69c74c080a78d330888f1a09594efded1737b74e7f518af813b"} -2023-12-15T15:02:07.553Z INFO initializing dbft {"height": 2994, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:07.553Z debug frostfs-node/morph.go:229 new block {"index": 2993} -2023-12-15T15:02:07.736Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2993, "blockHeight": 2993, "took": "9.670307ms"} -2023-12-15T15:02:08.552Z INFO sending PrepareRequest {"height": 2994, "view": 0} -2023-12-15T15:02:08.553Z INFO sending Commit {"height": 2994, "view": 0} -2023-12-15T15:02:08.553Z INFO approving block {"height": 2994, "hash": "2212b12d9722b2913a3f21ba8b709b482b7e50e163e0747593aa180d4bf2cf67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eee7b04a063bd90503a362132bec5e6966d84fbd6c8567d64418a1967f87a82c"} -2023-12-15T15:02:08.555Z INFO initializing dbft {"height": 2995, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:08.555Z debug frostfs-node/morph.go:229 new block {"index": 2994} -2023-12-15T15:02:08.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2994, "blockHeight": 2994, "took": "4.393018ms"} -2023-12-15T15:02:09.554Z INFO sending PrepareRequest {"height": 2995, "view": 0} -2023-12-15T15:02:09.554Z INFO sending Commit {"height": 2995, "view": 0} -2023-12-15T15:02:09.554Z INFO approving block {"height": 2995, "hash": "de021cedea814f375e44c9d5d642884c7176b7507208ff0e2b6f02eb404ae80d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2212b12d9722b2913a3f21ba8b709b482b7e50e163e0747593aa180d4bf2cf67"} -2023-12-15T15:02:09.555Z INFO initializing dbft {"height": 2996, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:09.555Z debug frostfs-node/morph.go:229 new block {"index": 2995} -2023-12-15T15:02:09.732Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2995, "blockHeight": 2995, "took": "4.834954ms"} -2023-12-15T15:02:10.555Z INFO sending PrepareRequest {"height": 2996, "view": 0} -2023-12-15T15:02:10.555Z INFO sending Commit {"height": 2996, "view": 0} -2023-12-15T15:02:10.556Z INFO approving block {"height": 2996, "hash": "3a826a1ba8dbdaea61804e32cacd9d27dcd361452441558f3f96f1d26bc721e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de021cedea814f375e44c9d5d642884c7176b7507208ff0e2b6f02eb404ae80d"} -2023-12-15T15:02:10.556Z INFO initializing dbft {"height": 2997, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:10.557Z debug frostfs-node/morph.go:229 new block {"index": 2996} -2023-12-15T15:02:10.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2996, "blockHeight": 2996, "took": "4.047488ms"} -2023-12-15T15:02:11.557Z INFO sending PrepareRequest {"height": 2997, "view": 0} -2023-12-15T15:02:11.557Z INFO sending Commit {"height": 2997, "view": 0} -2023-12-15T15:02:11.557Z INFO approving block {"height": 2997, "hash": "2303568a2379769280e14c922a60605b06522f069fed6b10bf8dd6cafd036c87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a826a1ba8dbdaea61804e32cacd9d27dcd361452441558f3f96f1d26bc721e1"} -2023-12-15T15:02:11.558Z INFO initializing dbft {"height": 2998, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:11.559Z debug frostfs-node/morph.go:229 new block {"index": 2997} -2023-12-15T15:02:11.730Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2997, "blockHeight": 2997, "took": "2.649267ms"} -2023-12-15T15:02:12.558Z INFO sending PrepareRequest {"height": 2998, "view": 0} -2023-12-15T15:02:12.558Z INFO sending Commit {"height": 2998, "view": 0} -2023-12-15T15:02:12.559Z INFO approving block {"height": 2998, "hash": "a0fce27331bc51285cb0fccfc9a264e9fa25470135d798cde5ba86e62901fd60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2303568a2379769280e14c922a60605b06522f069fed6b10bf8dd6cafd036c87"} -2023-12-15T15:02:12.560Z INFO initializing dbft {"height": 2999, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:12.561Z debug frostfs-node/morph.go:229 new block {"index": 2998} -2023-12-15T15:02:12.732Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2998, "blockHeight": 2998, "took": "3.836299ms"} -2023-12-15T15:02:13.560Z INFO sending PrepareRequest {"height": 2999, "view": 0} -2023-12-15T15:02:13.560Z INFO sending Commit {"height": 2999, "view": 0} -2023-12-15T15:02:13.560Z INFO approving block {"height": 2999, "hash": "6ddc270837eb22d717f80f90a7917bf2dc05b40fd34f418061b064be4f80d352", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0fce27331bc51285cb0fccfc9a264e9fa25470135d798cde5ba86e62901fd60"} -2023-12-15T15:02:13.561Z INFO initializing dbft {"height": 3000, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:13.561Z debug frostfs-node/morph.go:229 new block {"index": 2999} -2023-12-15T15:02:13.736Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 2999, "blockHeight": 2999, "took": "6.446305ms"} -2023-12-15T15:02:14.562Z INFO sending PrepareRequest {"height": 3000, "view": 0} -2023-12-15T15:02:14.562Z INFO sending Commit {"height": 3000, "view": 0} -2023-12-15T15:02:14.563Z INFO approving block {"height": 3000, "hash": "af170f673ebf6e8458bbf969e0b0314da4963c0dbfee8d2a37121b2d92a623ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ddc270837eb22d717f80f90a7917bf2dc05b40fd34f418061b064be4f80d352"} -2023-12-15T15:02:14.564Z INFO initializing dbft {"height": 3001, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:14.564Z debug frostfs-node/morph.go:229 new block {"index": 3000} -2023-12-15T15:02:14.733Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3000, "blockHeight": 3000, "took": "2.987907ms"} -2023-12-15T15:02:15.563Z INFO sending PrepareRequest {"height": 3001, "view": 0} -2023-12-15T15:02:15.564Z INFO sending Commit {"height": 3001, "view": 0} -2023-12-15T15:02:15.564Z INFO approving block {"height": 3001, "hash": "01f52b64822b971ce875ebab9af9e8e8ba35473906d5e3d0e9cf73c3db24ccdd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af170f673ebf6e8458bbf969e0b0314da4963c0dbfee8d2a37121b2d92a623ed"} -2023-12-15T15:02:15.565Z INFO initializing dbft {"height": 3002, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:15.566Z debug frostfs-node/morph.go:229 new block {"index": 3001} -2023-12-15T15:02:15.734Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3001, "blockHeight": 3001, "took": "4.072439ms"} -2023-12-15T15:02:16.565Z INFO sending PrepareRequest {"height": 3002, "view": 0} -2023-12-15T15:02:16.565Z INFO sending Commit {"height": 3002, "view": 0} -2023-12-15T15:02:16.565Z INFO approving block {"height": 3002, "hash": "8bfb8d6fe21a5c64bf58c2d5288a2804e86f6cc4daf9920ea11989980e1c9f88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01f52b64822b971ce875ebab9af9e8e8ba35473906d5e3d0e9cf73c3db24ccdd"} -2023-12-15T15:02:16.566Z INFO initializing dbft {"height": 3003, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:16.567Z debug frostfs-node/morph.go:229 new block {"index": 3002} -2023-12-15T15:02:16.736Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3002, "blockHeight": 3002, "took": "4.793604ms"} -2023-12-15T15:02:17.566Z INFO sending PrepareRequest {"height": 3003, "view": 0} -2023-12-15T15:02:17.567Z INFO sending Commit {"height": 3003, "view": 0} -2023-12-15T15:02:17.567Z INFO approving block {"height": 3003, "hash": "d3477ae38d8479b3aaab6d01c6ef1a19672845a03a5cc9b86a8390ae7d1fa5a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bfb8d6fe21a5c64bf58c2d5288a2804e86f6cc4daf9920ea11989980e1c9f88"} -2023-12-15T15:02:17.568Z INFO initializing dbft {"height": 3004, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:17.569Z debug frostfs-node/morph.go:229 new block {"index": 3003} -2023-12-15T15:02:17.735Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3003, "blockHeight": 3003, "took": "3.065383ms"} -2023-12-15T15:02:18.568Z INFO sending PrepareRequest {"height": 3004, "view": 0} -2023-12-15T15:02:18.568Z INFO sending Commit {"height": 3004, "view": 0} -2023-12-15T15:02:18.568Z INFO approving block {"height": 3004, "hash": "149897157f5cfaefa80f4985a6dbab8c124bd3572fa81f660e124a38e1ebce2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3477ae38d8479b3aaab6d01c6ef1a19672845a03a5cc9b86a8390ae7d1fa5a4"} -2023-12-15T15:02:18.569Z INFO initializing dbft {"height": 3005, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:18.569Z debug frostfs-node/morph.go:229 new block {"index": 3004} -2023-12-15T15:02:18.736Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3004, "blockHeight": 3004, "took": "4.418162ms"} -2023-12-15T15:02:19.569Z INFO sending PrepareRequest {"height": 3005, "view": 0} -2023-12-15T15:02:19.569Z INFO sending Commit {"height": 3005, "view": 0} -2023-12-15T15:02:19.570Z INFO approving block {"height": 3005, "hash": "bc5d08fc7c7c6da240557e2dd15bef5af5a1b98f1dd5e1a07e42cf581cd5e3b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "149897157f5cfaefa80f4985a6dbab8c124bd3572fa81f660e124a38e1ebce2f"} -2023-12-15T15:02:19.570Z INFO initializing dbft {"height": 3006, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:19.571Z debug frostfs-node/morph.go:229 new block {"index": 3005} -2023-12-15T15:02:19.735Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3005, "blockHeight": 3005, "took": "3.129251ms"} -2023-12-15T15:02:20.571Z INFO sending PrepareRequest {"height": 3006, "view": 0} -2023-12-15T15:02:20.571Z INFO sending Commit {"height": 3006, "view": 0} -2023-12-15T15:02:20.571Z INFO approving block {"height": 3006, "hash": "e6b59987ba1d5f94e33359471cb54f45b49073eef0e2241408914e4debedf962", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc5d08fc7c7c6da240557e2dd15bef5af5a1b98f1dd5e1a07e42cf581cd5e3b9"} -2023-12-15T15:02:20.573Z INFO initializing dbft {"height": 3007, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:20.574Z debug frostfs-node/morph.go:229 new block {"index": 3006} -2023-12-15T15:02:20.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3006, "blockHeight": 3006, "took": "4.766612ms"} -2023-12-15T15:02:21.572Z INFO sending PrepareRequest {"height": 3007, "view": 0} -2023-12-15T15:02:21.572Z INFO sending Commit {"height": 3007, "view": 0} -2023-12-15T15:02:21.573Z INFO approving block {"height": 3007, "hash": "b3a94d2851ffaee6b34b5b90033c543de81fc362c6a97887e5a204ba4c0e7dcb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6b59987ba1d5f94e33359471cb54f45b49073eef0e2241408914e4debedf962"} -2023-12-15T15:02:21.573Z INFO initializing dbft {"height": 3008, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:21.575Z debug frostfs-node/morph.go:229 new block {"index": 3007} -2023-12-15T15:02:21.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3007, "blockHeight": 3007, "took": "5.136756ms"} -2023-12-15T15:02:22.574Z INFO sending PrepareRequest {"height": 3008, "view": 0} -2023-12-15T15:02:22.574Z INFO sending Commit {"height": 3008, "view": 0} -2023-12-15T15:02:22.574Z INFO approving block {"height": 3008, "hash": "81ab7274450b839626fb2c303ad5887afc5e0a6099ed381ca5c9a15cc0512225", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3a94d2851ffaee6b34b5b90033c543de81fc362c6a97887e5a204ba4c0e7dcb"} -2023-12-15T15:02:22.576Z INFO initializing dbft {"height": 3009, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:22.576Z debug frostfs-node/morph.go:229 new block {"index": 3008} -2023-12-15T15:02:22.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3008, "blockHeight": 3008, "took": "4.540253ms"} -2023-12-15T15:02:23.575Z INFO sending PrepareRequest {"height": 3009, "view": 0} -2023-12-15T15:02:23.576Z INFO sending Commit {"height": 3009, "view": 0} -2023-12-15T15:02:23.576Z INFO approving block {"height": 3009, "hash": "1572182b5ba22a7dc0748618fffcbf0dad45739ee6488bbfba73b6881a7ee664", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81ab7274450b839626fb2c303ad5887afc5e0a6099ed381ca5c9a15cc0512225"} -2023-12-15T15:02:23.578Z INFO initializing dbft {"height": 3010, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:23.578Z debug frostfs-node/morph.go:229 new block {"index": 3009} -2023-12-15T15:02:23.739Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3009, "blockHeight": 3009, "took": "5.040096ms"} -2023-12-15T15:02:24.577Z INFO sending PrepareRequest {"height": 3010, "view": 0} -2023-12-15T15:02:24.577Z INFO sending Commit {"height": 3010, "view": 0} -2023-12-15T15:02:24.578Z INFO approving block {"height": 3010, "hash": "3f37d3f7c8042be0fdc9b0f0b5fe4169934b94701041ab70fc2c7ac9d85f56aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1572182b5ba22a7dc0748618fffcbf0dad45739ee6488bbfba73b6881a7ee664"} -2023-12-15T15:02:24.580Z INFO initializing dbft {"height": 3011, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:24.580Z debug frostfs-node/morph.go:229 new block {"index": 3010} -2023-12-15T15:02:24.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3010, "blockHeight": 3010, "took": "2.932576ms"} -2023-12-15T15:02:25.579Z INFO sending PrepareRequest {"height": 3011, "view": 0} -2023-12-15T15:02:25.580Z INFO sending Commit {"height": 3011, "view": 0} -2023-12-15T15:02:25.580Z INFO approving block {"height": 3011, "hash": "012933b157d2f4afe6e0c0f7b7678bdcf6fc87515075307224d0de4979a89f94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f37d3f7c8042be0fdc9b0f0b5fe4169934b94701041ab70fc2c7ac9d85f56aa"} -2023-12-15T15:02:25.582Z INFO initializing dbft {"height": 3012, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:25.582Z debug frostfs-node/morph.go:229 new block {"index": 3011} -2023-12-15T15:02:25.740Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3011, "blockHeight": 3011, "took": "4.275316ms"} -2023-12-15T15:02:26.582Z INFO sending PrepareRequest {"height": 3012, "view": 0} -2023-12-15T15:02:26.582Z INFO sending Commit {"height": 3012, "view": 0} -2023-12-15T15:02:26.582Z INFO approving block {"height": 3012, "hash": "4e6d683148083d6ed41a0a7ebca1140d9ccaf09e541f82bdc84da385be0e3e45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "012933b157d2f4afe6e0c0f7b7678bdcf6fc87515075307224d0de4979a89f94"} -2023-12-15T15:02:26.583Z INFO initializing dbft {"height": 3013, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:26.583Z debug frostfs-node/morph.go:229 new block {"index": 3012} -2023-12-15T15:02:26.586Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 13, "iteration": 1, "error": "no data for 0 iteration in 13 epoch for consumers's trusts"} -2023-12-15T15:02:26.587Z info settlement/calls.go:61 start basic income collection {"epoch": 13} -2023-12-15T15:02:26.740Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3012, "blockHeight": 3012, "took": "4.080746ms"} -2023-12-15T15:02:27.583Z INFO sending PrepareRequest {"height": 3013, "view": 0} -2023-12-15T15:02:27.583Z INFO sending Commit {"height": 3013, "view": 0} -2023-12-15T15:02:27.583Z INFO approving block {"height": 3013, "hash": "8e3d981b245498fd6fed0d86916dc0c25df6374afcf4897a5d2d0e993e3bbc0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e6d683148083d6ed41a0a7ebca1140d9ccaf09e541f82bdc84da385be0e3e45"} -2023-12-15T15:02:27.584Z INFO initializing dbft {"height": 3014, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:27.584Z debug frostfs-node/morph.go:229 new block {"index": 3013} -2023-12-15T15:02:27.740Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3013, "blockHeight": 3013, "took": "3.715031ms"} -2023-12-15T15:02:28.584Z INFO sending PrepareRequest {"height": 3014, "view": 0} -2023-12-15T15:02:28.584Z INFO sending Commit {"height": 3014, "view": 0} -2023-12-15T15:02:28.584Z INFO approving block {"height": 3014, "hash": "68fbbf801541df58a3cbafc07850e513c0fa56ddd048d3c2c5f7c43d65aeaaee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e3d981b245498fd6fed0d86916dc0c25df6374afcf4897a5d2d0e993e3bbc0b"} -2023-12-15T15:02:28.585Z INFO initializing dbft {"height": 3015, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:28.585Z debug frostfs-node/morph.go:229 new block {"index": 3014} -2023-12-15T15:02:28.743Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3014, "blockHeight": 3014, "took": "5.493626ms"} -2023-12-15T15:02:29.585Z INFO sending PrepareRequest {"height": 3015, "view": 0} -2023-12-15T15:02:29.585Z INFO sending Commit {"height": 3015, "view": 0} -2023-12-15T15:02:29.585Z INFO approving block {"height": 3015, "hash": "4db7a493b40465a66c0613c128045ef61392273e9e5a4e2ae53bdbb02decc237", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68fbbf801541df58a3cbafc07850e513c0fa56ddd048d3c2c5f7c43d65aeaaee"} -2023-12-15T15:02:29.586Z INFO initializing dbft {"height": 3016, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:29.587Z debug frostfs-node/morph.go:229 new block {"index": 3015} -2023-12-15T15:02:29.743Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3015, "blockHeight": 3015, "took": "5.038191ms"} -2023-12-15T15:02:30.587Z INFO sending PrepareRequest {"height": 3016, "view": 0} -2023-12-15T15:02:30.587Z INFO sending Commit {"height": 3016, "view": 0} -2023-12-15T15:02:30.587Z INFO approving block {"height": 3016, "hash": "8c7e45372b03f77c5eb3a55533da9eca7d669d2f216719acdb039fa1a02d785f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4db7a493b40465a66c0613c128045ef61392273e9e5a4e2ae53bdbb02decc237"} -2023-12-15T15:02:30.588Z INFO initializing dbft {"height": 3017, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:30.589Z debug frostfs-node/morph.go:229 new block {"index": 3016} -2023-12-15T15:02:30.744Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3016, "blockHeight": 3016, "took": "5.528088ms"} -2023-12-15T15:02:31.588Z INFO sending PrepareRequest {"height": 3017, "view": 0} -2023-12-15T15:02:31.588Z INFO sending Commit {"height": 3017, "view": 0} -2023-12-15T15:02:31.589Z INFO approving block {"height": 3017, "hash": "45a105da6e2e86b3f38de4b03a1600d5e7fdef797b369ff09bfed4c7280daf2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c7e45372b03f77c5eb3a55533da9eca7d669d2f216719acdb039fa1a02d785f"} -2023-12-15T15:02:31.590Z INFO initializing dbft {"height": 3018, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:31.590Z debug frostfs-node/morph.go:229 new block {"index": 3017} -2023-12-15T15:02:31.592Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:02:31.593Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:02:31.593Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:02:31.744Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3017, "blockHeight": 3017, "took": "4.924607ms"} -2023-12-15T15:02:32.590Z INFO sending PrepareRequest {"height": 3018, "view": 0} -2023-12-15T15:02:32.590Z INFO sending Commit {"height": 3018, "view": 0} -2023-12-15T15:02:32.590Z INFO approving block {"height": 3018, "hash": "657fa3d4f42de6056b144e2c4a79f1656e2d073927c9444720cbc4b8eb4adc20", "tx_count": 2, "merkle": "ce131d06b9dc87c6f0976a42d59971c77a87343ecdc555988274d4a5761f138f", "prev": "45a105da6e2e86b3f38de4b03a1600d5e7fdef797b369ff09bfed4c7280daf2c"} -2023-12-15T15:02:32.591Z INFO runtime log {"tx": "257affa6b0517f0f118a364e13084bc57a804b5d0aba9c34cc95eb4f8e39dfa9", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:02:32.591Z INFO runtime log {"tx": "257affa6b0517f0f118a364e13084bc57a804b5d0aba9c34cc95eb4f8e39dfa9", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:02:32.592Z INFO initializing dbft {"height": 3019, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:32.593Z debug frostfs-node/morph.go:229 new block {"index": 3018} -2023-12-15T15:02:32.749Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3018, "blockHeight": 3018, "took": "9.073413ms"} -2023-12-15T15:02:33.591Z INFO sending PrepareRequest {"height": 3019, "view": 0} -2023-12-15T15:02:33.591Z INFO sending Commit {"height": 3019, "view": 0} -2023-12-15T15:02:33.592Z INFO approving block {"height": 3019, "hash": "6c9dca2d91d522cad7f6187540a5dd3d95f741f3aabda9c9ef393b7876bde5db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "657fa3d4f42de6056b144e2c4a79f1656e2d073927c9444720cbc4b8eb4adc20"} -2023-12-15T15:02:33.593Z INFO initializing dbft {"height": 3020, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:33.593Z debug frostfs-node/morph.go:229 new block {"index": 3019} -2023-12-15T15:02:33.743Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3019, "blockHeight": 3019, "took": "2.881458ms"} -2023-12-15T15:02:34.593Z INFO sending PrepareRequest {"height": 3020, "view": 0} -2023-12-15T15:02:34.593Z INFO sending Commit {"height": 3020, "view": 0} -2023-12-15T15:02:34.593Z INFO approving block {"height": 3020, "hash": "b4f3c9898d282f76f46ca54ecc5fe44a8adb93b89cf973c381da8a8d1937f601", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c9dca2d91d522cad7f6187540a5dd3d95f741f3aabda9c9ef393b7876bde5db"} -2023-12-15T15:02:34.594Z INFO initializing dbft {"height": 3021, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:34.594Z debug frostfs-node/morph.go:229 new block {"index": 3020} -2023-12-15T15:02:34.744Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3020, "blockHeight": 3020, "took": "3.683934ms"} -2023-12-15T15:02:35.595Z INFO sending PrepareRequest {"height": 3021, "view": 0} -2023-12-15T15:02:35.595Z INFO sending Commit {"height": 3021, "view": 0} -2023-12-15T15:02:35.596Z INFO approving block {"height": 3021, "hash": "09ea99122028bb1b3c2288dfb601174964db67470dd0299acd1ef0a062a4e1d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4f3c9898d282f76f46ca54ecc5fe44a8adb93b89cf973c381da8a8d1937f601"} -2023-12-15T15:02:35.598Z INFO initializing dbft {"height": 3022, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:35.599Z debug frostfs-node/morph.go:229 new block {"index": 3021} -2023-12-15T15:02:35.765Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3021, "blockHeight": 3021, "took": "23.34226ms"} -2023-12-15T15:02:36.597Z INFO sending PrepareRequest {"height": 3022, "view": 0} -2023-12-15T15:02:36.597Z INFO sending Commit {"height": 3022, "view": 0} -2023-12-15T15:02:36.597Z INFO approving block {"height": 3022, "hash": "e0dfa8ea4de026ab8319af7cd7db117e2c78084d014161b189fac786dfba35f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09ea99122028bb1b3c2288dfb601174964db67470dd0299acd1ef0a062a4e1d8"} -2023-12-15T15:02:36.598Z INFO initializing dbft {"height": 3023, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:36.599Z debug frostfs-node/morph.go:229 new block {"index": 3022} -2023-12-15T15:02:36.746Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3022, "blockHeight": 3022, "took": "4.519462ms"} -2023-12-15T15:02:37.598Z INFO sending PrepareRequest {"height": 3023, "view": 0} -2023-12-15T15:02:37.599Z INFO sending Commit {"height": 3023, "view": 0} -2023-12-15T15:02:37.599Z INFO approving block {"height": 3023, "hash": "19dcb8367d41116338d857f203ac896f3ac808487223b5f94ee59222679cf678", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0dfa8ea4de026ab8319af7cd7db117e2c78084d014161b189fac786dfba35f6"} -2023-12-15T15:02:37.600Z INFO initializing dbft {"height": 3024, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:37.601Z debug frostfs-node/morph.go:229 new block {"index": 3023} -2023-12-15T15:02:37.747Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3023, "blockHeight": 3023, "took": "4.536859ms"} -2023-12-15T15:02:38.600Z INFO sending PrepareRequest {"height": 3024, "view": 0} -2023-12-15T15:02:38.600Z INFO sending Commit {"height": 3024, "view": 0} -2023-12-15T15:02:38.601Z INFO approving block {"height": 3024, "hash": "cbecee62ce239d2ae0bd9a7098d1e1aabb38f6ba7a3b4b5914672546c9d83feb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19dcb8367d41116338d857f203ac896f3ac808487223b5f94ee59222679cf678"} -2023-12-15T15:02:38.601Z INFO initializing dbft {"height": 3025, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:38.602Z debug frostfs-node/morph.go:229 new block {"index": 3024} -2023-12-15T15:02:38.747Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3024, "blockHeight": 3024, "took": "4.163022ms"} -2023-12-15T15:02:39.602Z INFO sending PrepareRequest {"height": 3025, "view": 0} -2023-12-15T15:02:39.602Z INFO sending Commit {"height": 3025, "view": 0} -2023-12-15T15:02:39.602Z INFO approving block {"height": 3025, "hash": "5392ee29ba7ee6d87be63b3836bbb68ab0a6e7aaf9717267019e3d1c9e370124", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbecee62ce239d2ae0bd9a7098d1e1aabb38f6ba7a3b4b5914672546c9d83feb"} -2023-12-15T15:02:39.603Z INFO initializing dbft {"height": 3026, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:39.604Z debug frostfs-node/morph.go:229 new block {"index": 3025} -2023-12-15T15:02:39.748Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3025, "blockHeight": 3025, "took": "4.415039ms"} -2023-12-15T15:02:40.603Z INFO sending PrepareRequest {"height": 3026, "view": 0} -2023-12-15T15:02:40.603Z INFO sending Commit {"height": 3026, "view": 0} -2023-12-15T15:02:40.604Z INFO approving block {"height": 3026, "hash": "612b464b98cf9daffae65103032b0326ab5beb03c928383d40b94ec77a87f933", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5392ee29ba7ee6d87be63b3836bbb68ab0a6e7aaf9717267019e3d1c9e370124"} -2023-12-15T15:02:40.605Z INFO initializing dbft {"height": 3027, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:40.605Z debug frostfs-node/morph.go:229 new block {"index": 3026} -2023-12-15T15:02:40.748Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3026, "blockHeight": 3026, "took": "3.375788ms"} -2023-12-15T15:02:41.604Z INFO sending PrepareRequest {"height": 3027, "view": 0} -2023-12-15T15:02:41.604Z INFO sending Commit {"height": 3027, "view": 0} -2023-12-15T15:02:41.605Z INFO approving block {"height": 3027, "hash": "9a50832285a7e6e3f029d8b8f9da5eabbf78d8cdff2e634535cd7d018f138995", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "612b464b98cf9daffae65103032b0326ab5beb03c928383d40b94ec77a87f933"} -2023-12-15T15:02:41.606Z INFO initializing dbft {"height": 3028, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:41.606Z debug frostfs-node/morph.go:229 new block {"index": 3027} -2023-12-15T15:02:41.749Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3027, "blockHeight": 3027, "took": "3.469051ms"} -2023-12-15T15:02:42.606Z INFO sending PrepareRequest {"height": 3028, "view": 0} -2023-12-15T15:02:42.606Z INFO sending Commit {"height": 3028, "view": 0} -2023-12-15T15:02:42.606Z INFO approving block {"height": 3028, "hash": "570f5925b027cb61582d2ab6120dce57e2dbf35085cd636282572c8b14dc0588", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a50832285a7e6e3f029d8b8f9da5eabbf78d8cdff2e634535cd7d018f138995"} -2023-12-15T15:02:42.607Z INFO initializing dbft {"height": 3029, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:42.607Z debug frostfs-node/morph.go:229 new block {"index": 3028} -2023-12-15T15:02:42.752Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3028, "blockHeight": 3028, "took": "6.456999ms"} -2023-12-15T15:02:43.607Z INFO sending PrepareRequest {"height": 3029, "view": 0} -2023-12-15T15:02:43.607Z INFO sending Commit {"height": 3029, "view": 0} -2023-12-15T15:02:43.607Z INFO approving block {"height": 3029, "hash": "04087cf59d68c547040a3d1ac5bdb2a6f234478c91be7d0ab1189a7f522e43b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "570f5925b027cb61582d2ab6120dce57e2dbf35085cd636282572c8b14dc0588"} -2023-12-15T15:02:43.608Z INFO initializing dbft {"height": 3030, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:43.609Z debug frostfs-node/morph.go:229 new block {"index": 3029} -2023-12-15T15:02:43.750Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3029, "blockHeight": 3029, "took": "3.786184ms"} -2023-12-15T15:02:44.609Z INFO sending PrepareRequest {"height": 3030, "view": 0} -2023-12-15T15:02:44.609Z INFO sending Commit {"height": 3030, "view": 0} -2023-12-15T15:02:44.609Z INFO approving block {"height": 3030, "hash": "97241fe575555cdc23169bdcf56d1685c15f9d9508642f9e272f1a45b6a448fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04087cf59d68c547040a3d1ac5bdb2a6f234478c91be7d0ab1189a7f522e43b5"} -2023-12-15T15:02:44.610Z INFO initializing dbft {"height": 3031, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:44.611Z debug frostfs-node/morph.go:229 new block {"index": 3030} -2023-12-15T15:02:44.751Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3030, "blockHeight": 3030, "took": "4.20783ms"} -2023-12-15T15:02:45.611Z INFO sending PrepareRequest {"height": 3031, "view": 0} -2023-12-15T15:02:45.611Z INFO sending Commit {"height": 3031, "view": 0} -2023-12-15T15:02:45.611Z INFO approving block {"height": 3031, "hash": "0400aea4160f6761ea483cbc975f2106c9cba5d7444008273a3b89a02d00b21f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97241fe575555cdc23169bdcf56d1685c15f9d9508642f9e272f1a45b6a448fa"} -2023-12-15T15:02:45.613Z INFO initializing dbft {"height": 3032, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:45.614Z debug frostfs-node/morph.go:229 new block {"index": 3031} -2023-12-15T15:02:45.754Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3031, "blockHeight": 3031, "took": "6.603999ms"} -2023-12-15T15:02:46.612Z INFO sending PrepareRequest {"height": 3032, "view": 0} -2023-12-15T15:02:46.612Z INFO sending Commit {"height": 3032, "view": 0} -2023-12-15T15:02:46.612Z INFO approving block {"height": 3032, "hash": "cd51f164d0e7f4992c7b40049e206b77889abe84530cafc950c28cdd31b44f4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0400aea4160f6761ea483cbc975f2106c9cba5d7444008273a3b89a02d00b21f"} -2023-12-15T15:02:46.613Z INFO initializing dbft {"height": 3033, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:46.614Z debug frostfs-node/morph.go:229 new block {"index": 3032} -2023-12-15T15:02:46.752Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3032, "blockHeight": 3032, "took": "3.782237ms"} -2023-12-15T15:02:47.614Z INFO sending PrepareRequest {"height": 3033, "view": 0} -2023-12-15T15:02:47.614Z INFO sending Commit {"height": 3033, "view": 0} -2023-12-15T15:02:47.614Z INFO approving block {"height": 3033, "hash": "7349f2cd5b95eb768d8796f8b78d9c6f9e6be0ae91e71b94af7344605a1cc87a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd51f164d0e7f4992c7b40049e206b77889abe84530cafc950c28cdd31b44f4d"} -2023-12-15T15:02:47.615Z INFO initializing dbft {"height": 3034, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:47.615Z debug frostfs-node/morph.go:229 new block {"index": 3033} -2023-12-15T15:02:47.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3033, "blockHeight": 3033, "took": "6.860717ms"} -2023-12-15T15:02:48.615Z INFO sending PrepareRequest {"height": 3034, "view": 0} -2023-12-15T15:02:48.615Z INFO sending Commit {"height": 3034, "view": 0} -2023-12-15T15:02:48.615Z INFO approving block {"height": 3034, "hash": "0e233c550b69a164552022c687c940bd03bf8afbdda9fbebb78e5fcd8ba465be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7349f2cd5b95eb768d8796f8b78d9c6f9e6be0ae91e71b94af7344605a1cc87a"} -2023-12-15T15:02:48.616Z INFO initializing dbft {"height": 3035, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:48.617Z debug frostfs-node/morph.go:229 new block {"index": 3034} -2023-12-15T15:02:48.754Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3034, "blockHeight": 3034, "took": "5.148221ms"} -2023-12-15T15:02:49.616Z INFO sending PrepareRequest {"height": 3035, "view": 0} -2023-12-15T15:02:49.616Z INFO sending Commit {"height": 3035, "view": 0} -2023-12-15T15:02:49.616Z INFO approving block {"height": 3035, "hash": "6ddd8334cc0f1ac059028fd3c7bb80a8460eb6d2fd44de3f3658112106471ec0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e233c550b69a164552022c687c940bd03bf8afbdda9fbebb78e5fcd8ba465be"} -2023-12-15T15:02:49.617Z INFO initializing dbft {"height": 3036, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:49.618Z debug frostfs-node/morph.go:229 new block {"index": 3035} -2023-12-15T15:02:49.755Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3035, "blockHeight": 3035, "took": "4.893026ms"} -2023-12-15T15:02:50.617Z INFO sending PrepareRequest {"height": 3036, "view": 0} -2023-12-15T15:02:50.617Z INFO sending Commit {"height": 3036, "view": 0} -2023-12-15T15:02:50.617Z INFO approving block {"height": 3036, "hash": "16fd310ae1e99c06241dbb040a5244d070f2826c8f205054b5ed2017a78dbb25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ddd8334cc0f1ac059028fd3c7bb80a8460eb6d2fd44de3f3658112106471ec0"} -2023-12-15T15:02:50.618Z INFO initializing dbft {"height": 3037, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:50.619Z debug frostfs-node/morph.go:229 new block {"index": 3036} -2023-12-15T15:02:50.754Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3036, "blockHeight": 3036, "took": "3.042485ms"} -2023-12-15T15:02:51.618Z INFO sending PrepareRequest {"height": 3037, "view": 0} -2023-12-15T15:02:51.618Z INFO sending Commit {"height": 3037, "view": 0} -2023-12-15T15:02:51.619Z INFO approving block {"height": 3037, "hash": "b030885e26aff8e175c7c4bc94757997ca5fb824e401894b8c71519a1f9b478f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16fd310ae1e99c06241dbb040a5244d070f2826c8f205054b5ed2017a78dbb25"} -2023-12-15T15:02:51.619Z INFO initializing dbft {"height": 3038, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:51.620Z debug frostfs-node/morph.go:229 new block {"index": 3037} -2023-12-15T15:02:51.755Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3037, "blockHeight": 3037, "took": "3.454461ms"} -2023-12-15T15:02:52.620Z INFO sending PrepareRequest {"height": 3038, "view": 0} -2023-12-15T15:02:52.620Z INFO sending Commit {"height": 3038, "view": 0} -2023-12-15T15:02:52.620Z INFO approving block {"height": 3038, "hash": "814148f921adf2eb5f5d02affe178e95758d0df6b60f0b0b1d80ea75dc302c29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b030885e26aff8e175c7c4bc94757997ca5fb824e401894b8c71519a1f9b478f"} -2023-12-15T15:02:52.622Z INFO initializing dbft {"height": 3039, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:52.622Z debug frostfs-node/morph.go:229 new block {"index": 3038} -2023-12-15T15:02:52.756Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3038, "blockHeight": 3038, "took": "3.790947ms"} -2023-12-15T15:02:53.621Z INFO sending PrepareRequest {"height": 3039, "view": 0} -2023-12-15T15:02:53.621Z INFO sending Commit {"height": 3039, "view": 0} -2023-12-15T15:02:53.622Z INFO approving block {"height": 3039, "hash": "5d3a08a39efdea1cbc70f2d4c3813f6037d3c69aa57fc4b0b01146d447dfa803", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "814148f921adf2eb5f5d02affe178e95758d0df6b60f0b0b1d80ea75dc302c29"} -2023-12-15T15:02:53.623Z INFO initializing dbft {"height": 3040, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:53.623Z debug frostfs-node/morph.go:229 new block {"index": 3039} -2023-12-15T15:02:53.755Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3039, "blockHeight": 3039, "took": "2.991007ms"} -2023-12-15T15:02:54.623Z INFO sending PrepareRequest {"height": 3040, "view": 0} -2023-12-15T15:02:54.623Z INFO sending Commit {"height": 3040, "view": 0} -2023-12-15T15:02:54.624Z INFO approving block {"height": 3040, "hash": "a89f72d75acd68a5a8249d0d3734200dcc224c561bb15ee555474d7982f84f7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d3a08a39efdea1cbc70f2d4c3813f6037d3c69aa57fc4b0b01146d447dfa803"} -2023-12-15T15:02:54.625Z INFO initializing dbft {"height": 3041, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:54.626Z debug frostfs-node/morph.go:229 new block {"index": 3040} -2023-12-15T15:02:54.757Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3040, "blockHeight": 3040, "took": "4.295785ms"} -2023-12-15T15:02:55.624Z INFO sending PrepareRequest {"height": 3041, "view": 0} -2023-12-15T15:02:55.625Z INFO sending Commit {"height": 3041, "view": 0} -2023-12-15T15:02:55.625Z INFO approving block {"height": 3041, "hash": "1ad46a635086491c42da93deb403e6435732ee0f9b6dadec6431f1f4f386d397", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a89f72d75acd68a5a8249d0d3734200dcc224c561bb15ee555474d7982f84f7b"} -2023-12-15T15:02:55.626Z INFO initializing dbft {"height": 3042, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:55.626Z debug frostfs-node/morph.go:229 new block {"index": 3041} -2023-12-15T15:02:55.758Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3041, "blockHeight": 3041, "took": "4.923564ms"} -2023-12-15T15:02:56.625Z INFO sending PrepareRequest {"height": 3042, "view": 0} -2023-12-15T15:02:56.626Z INFO sending Commit {"height": 3042, "view": 0} -2023-12-15T15:02:56.626Z INFO approving block {"height": 3042, "hash": "d4f96e3a8df96c86e902fdf3ec48b219ba1aafc2e32c0a08789d038b05b23168", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ad46a635086491c42da93deb403e6435732ee0f9b6dadec6431f1f4f386d397"} -2023-12-15T15:02:56.627Z INFO initializing dbft {"height": 3043, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:56.627Z debug frostfs-node/morph.go:229 new block {"index": 3042} -2023-12-15T15:02:56.758Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3042, "blockHeight": 3042, "took": "3.713336ms"} -2023-12-15T15:02:57.627Z INFO sending PrepareRequest {"height": 3043, "view": 0} -2023-12-15T15:02:57.628Z INFO sending Commit {"height": 3043, "view": 0} -2023-12-15T15:02:57.628Z INFO approving block {"height": 3043, "hash": "11960ac7a7e912fef27bfada494a2acb799a8adc1eb17ccda113382ed0d525e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4f96e3a8df96c86e902fdf3ec48b219ba1aafc2e32c0a08789d038b05b23168"} -2023-12-15T15:02:57.629Z INFO initializing dbft {"height": 3044, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:57.629Z debug frostfs-node/morph.go:229 new block {"index": 3043} -2023-12-15T15:02:57.760Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3043, "blockHeight": 3043, "took": "4.896462ms"} -2023-12-15T15:02:58.628Z INFO sending PrepareRequest {"height": 3044, "view": 0} -2023-12-15T15:02:58.629Z INFO sending Commit {"height": 3044, "view": 0} -2023-12-15T15:02:58.629Z INFO approving block {"height": 3044, "hash": "97c2b5099bbc16580b93511d53ba454650470b4e9d013b2db8169ca9fb4beeda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11960ac7a7e912fef27bfada494a2acb799a8adc1eb17ccda113382ed0d525e4"} -2023-12-15T15:02:58.630Z INFO initializing dbft {"height": 3045, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:58.630Z debug frostfs-node/morph.go:229 new block {"index": 3044} -2023-12-15T15:02:58.767Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3044, "blockHeight": 3044, "took": "9.851234ms"} -2023-12-15T15:02:59.629Z INFO sending PrepareRequest {"height": 3045, "view": 0} -2023-12-15T15:02:59.630Z INFO sending Commit {"height": 3045, "view": 0} -2023-12-15T15:02:59.630Z INFO approving block {"height": 3045, "hash": "9e7b7c3128e6d16fbe7484f9b813978ed07d8b7ee03d4c6d515f97c90edfc147", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97c2b5099bbc16580b93511d53ba454650470b4e9d013b2db8169ca9fb4beeda"} -2023-12-15T15:02:59.631Z INFO initializing dbft {"height": 3046, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:02:59.631Z debug frostfs-node/morph.go:229 new block {"index": 3045} -2023-12-15T15:02:59.761Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3045, "blockHeight": 3045, "took": "3.510749ms"} -2023-12-15T15:03:00.631Z INFO sending PrepareRequest {"height": 3046, "view": 0} -2023-12-15T15:03:00.631Z INFO sending Commit {"height": 3046, "view": 0} -2023-12-15T15:03:00.632Z INFO approving block {"height": 3046, "hash": "a52c7cc9f93e516e53c1f526ceff74c924accf5ba47b34085cf2d3d1536f67a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e7b7c3128e6d16fbe7484f9b813978ed07d8b7ee03d4c6d515f97c90edfc147"} -2023-12-15T15:03:00.633Z INFO initializing dbft {"height": 3047, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:00.633Z debug frostfs-node/morph.go:229 new block {"index": 3046} -2023-12-15T15:03:00.763Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3046, "blockHeight": 3046, "took": "4.900073ms"} -2023-12-15T15:03:01.632Z INFO sending PrepareRequest {"height": 3047, "view": 0} -2023-12-15T15:03:01.633Z INFO sending Commit {"height": 3047, "view": 0} -2023-12-15T15:03:01.633Z INFO approving block {"height": 3047, "hash": "ef8b116e3d2170f4dc53496da006579608b15d633b9bd760ea4ca1ee58260f79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a52c7cc9f93e516e53c1f526ceff74c924accf5ba47b34085cf2d3d1536f67a0"} -2023-12-15T15:03:01.634Z INFO initializing dbft {"height": 3048, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:01.635Z debug frostfs-node/morph.go:229 new block {"index": 3047} -2023-12-15T15:03:01.763Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3047, "blockHeight": 3047, "took": "4.186742ms"} -2023-12-15T15:03:02.634Z INFO sending PrepareRequest {"height": 3048, "view": 0} -2023-12-15T15:03:02.634Z INFO sending Commit {"height": 3048, "view": 0} -2023-12-15T15:03:02.634Z INFO approving block {"height": 3048, "hash": "a612489683ebd5d8c2a21f1e107f70e0e30d4eca7ae25afc51a2e11ad8326d3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef8b116e3d2170f4dc53496da006579608b15d633b9bd760ea4ca1ee58260f79"} -2023-12-15T15:03:02.635Z INFO initializing dbft {"height": 3049, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:02.636Z debug frostfs-node/morph.go:229 new block {"index": 3048} -2023-12-15T15:03:02.766Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3048, "blockHeight": 3048, "took": "7.117599ms"} -2023-12-15T15:03:03.635Z INFO sending PrepareRequest {"height": 3049, "view": 0} -2023-12-15T15:03:03.635Z INFO sending Commit {"height": 3049, "view": 0} -2023-12-15T15:03:03.635Z INFO approving block {"height": 3049, "hash": "cae68e796aedd63e0532158e19fa7570efafd57c9227521cb6493b6816260a69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a612489683ebd5d8c2a21f1e107f70e0e30d4eca7ae25afc51a2e11ad8326d3d"} -2023-12-15T15:03:03.636Z INFO initializing dbft {"height": 3050, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:03.637Z debug frostfs-node/morph.go:229 new block {"index": 3049} -2023-12-15T15:03:03.763Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3049, "blockHeight": 3049, "took": "3.703357ms"} -2023-12-15T15:03:04.636Z INFO sending PrepareRequest {"height": 3050, "view": 0} -2023-12-15T15:03:04.636Z INFO sending Commit {"height": 3050, "view": 0} -2023-12-15T15:03:04.636Z INFO approving block {"height": 3050, "hash": "8d1f8233cfe240098726bce9d59039be8056a9fbd2f4e0fbbd84f7aa0518ee3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cae68e796aedd63e0532158e19fa7570efafd57c9227521cb6493b6816260a69"} -2023-12-15T15:03:04.638Z INFO initializing dbft {"height": 3051, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:04.638Z debug frostfs-node/morph.go:229 new block {"index": 3050} -2023-12-15T15:03:04.764Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3050, "blockHeight": 3050, "took": "3.940216ms"} -2023-12-15T15:03:05.637Z INFO sending PrepareRequest {"height": 3051, "view": 0} -2023-12-15T15:03:05.638Z INFO sending Commit {"height": 3051, "view": 0} -2023-12-15T15:03:05.638Z INFO approving block {"height": 3051, "hash": "746c89c7db811eac8c773503d817887d851b61c13eada0d71a166dc4f182516f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d1f8233cfe240098726bce9d59039be8056a9fbd2f4e0fbbd84f7aa0518ee3e"} -2023-12-15T15:03:05.639Z INFO initializing dbft {"height": 3052, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:05.640Z debug frostfs-node/morph.go:229 new block {"index": 3051} -2023-12-15T15:03:05.765Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3051, "blockHeight": 3051, "took": "4.568971ms"} -2023-12-15T15:03:06.639Z INFO sending PrepareRequest {"height": 3052, "view": 0} -2023-12-15T15:03:06.639Z INFO sending Commit {"height": 3052, "view": 0} -2023-12-15T15:03:06.640Z INFO approving block {"height": 3052, "hash": "16b0addd8aac05b6dd08afe0f74b008c127c89840b84bee7c1f8735981f29d27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "746c89c7db811eac8c773503d817887d851b61c13eada0d71a166dc4f182516f"} -2023-12-15T15:03:06.641Z INFO initializing dbft {"height": 3053, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:06.641Z debug frostfs-node/morph.go:229 new block {"index": 3052} -2023-12-15T15:03:06.764Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3052, "blockHeight": 3052, "took": "3.275339ms"} -2023-12-15T15:03:07.640Z INFO sending PrepareRequest {"height": 3053, "view": 0} -2023-12-15T15:03:07.641Z INFO sending Commit {"height": 3053, "view": 0} -2023-12-15T15:03:07.641Z INFO approving block {"height": 3053, "hash": "4215b7766f0a5bb3cec4be653bcfad507ebf7c82b937dcc3e723fca0d13ba158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16b0addd8aac05b6dd08afe0f74b008c127c89840b84bee7c1f8735981f29d27"} -2023-12-15T15:03:07.642Z INFO initializing dbft {"height": 3054, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:07.643Z debug frostfs-node/morph.go:229 new block {"index": 3053} -2023-12-15T15:03:07.766Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3053, "blockHeight": 3053, "took": "4.518747ms"} -2023-12-15T15:03:08.642Z INFO sending PrepareRequest {"height": 3054, "view": 0} -2023-12-15T15:03:08.642Z INFO sending Commit {"height": 3054, "view": 0} -2023-12-15T15:03:08.642Z INFO approving block {"height": 3054, "hash": "8026c10f7b1bdb2b1c97d425ab46f628ea3c4c460903c16ea8593f0a1ff5f6a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4215b7766f0a5bb3cec4be653bcfad507ebf7c82b937dcc3e723fca0d13ba158"} -2023-12-15T15:03:08.644Z INFO initializing dbft {"height": 3055, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:08.645Z debug frostfs-node/morph.go:229 new block {"index": 3054} -2023-12-15T15:03:08.766Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3054, "blockHeight": 3054, "took": "3.978884ms"} -2023-12-15T15:03:09.643Z INFO sending PrepareRequest {"height": 3055, "view": 0} -2023-12-15T15:03:09.644Z INFO sending Commit {"height": 3055, "view": 0} -2023-12-15T15:03:09.644Z INFO approving block {"height": 3055, "hash": "313e02b98e2bc65ca3effeb800a6cdd96c84cdbb1f2825f5dfe650153b1eea9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8026c10f7b1bdb2b1c97d425ab46f628ea3c4c460903c16ea8593f0a1ff5f6a6"} -2023-12-15T15:03:09.645Z INFO initializing dbft {"height": 3056, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:09.646Z debug frostfs-node/morph.go:229 new block {"index": 3055} -2023-12-15T15:03:09.767Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3055, "blockHeight": 3055, "took": "4.422093ms"} -2023-12-15T15:03:10.645Z INFO sending PrepareRequest {"height": 3056, "view": 0} -2023-12-15T15:03:10.645Z INFO sending Commit {"height": 3056, "view": 0} -2023-12-15T15:03:10.645Z INFO approving block {"height": 3056, "hash": "27a40d3c769ccd02dac938900753b2407c73b895fcefc3c2b06b8d3c63e272fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "313e02b98e2bc65ca3effeb800a6cdd96c84cdbb1f2825f5dfe650153b1eea9c"} -2023-12-15T15:03:10.646Z INFO initializing dbft {"height": 3057, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:10.647Z debug frostfs-node/morph.go:229 new block {"index": 3056} -2023-12-15T15:03:10.766Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3056, "blockHeight": 3056, "took": "3.08028ms"} -2023-12-15T15:03:11.646Z INFO sending PrepareRequest {"height": 3057, "view": 0} -2023-12-15T15:03:11.647Z INFO sending Commit {"height": 3057, "view": 0} -2023-12-15T15:03:11.647Z INFO approving block {"height": 3057, "hash": "eccd6f223e380e5287227c111286a68f2d594e7680186192a1a3f294e24bf153", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27a40d3c769ccd02dac938900753b2407c73b895fcefc3c2b06b8d3c63e272fb"} -2023-12-15T15:03:11.649Z INFO initializing dbft {"height": 3058, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:11.649Z debug frostfs-node/morph.go:229 new block {"index": 3057} -2023-12-15T15:03:11.770Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3057, "blockHeight": 3057, "took": "5.510295ms"} -2023-12-15T15:03:12.648Z INFO sending PrepareRequest {"height": 3058, "view": 0} -2023-12-15T15:03:12.648Z INFO sending Commit {"height": 3058, "view": 0} -2023-12-15T15:03:12.649Z INFO approving block {"height": 3058, "hash": "34f54f0e6ef50375f7685829223564c2e2486f429fc29b6195f24243405bc0b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eccd6f223e380e5287227c111286a68f2d594e7680186192a1a3f294e24bf153"} -2023-12-15T15:03:12.649Z INFO initializing dbft {"height": 3059, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:12.650Z debug frostfs-node/morph.go:229 new block {"index": 3058} -2023-12-15T15:03:12.768Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3058, "blockHeight": 3058, "took": "2.997667ms"} -2023-12-15T15:03:13.649Z INFO sending PrepareRequest {"height": 3059, "view": 0} -2023-12-15T15:03:13.650Z INFO sending Commit {"height": 3059, "view": 0} -2023-12-15T15:03:13.650Z INFO approving block {"height": 3059, "hash": "fbb87ba5898bb94e28e2c99265e8403579f0f753d91b8c357eaa1b4ef0037f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34f54f0e6ef50375f7685829223564c2e2486f429fc29b6195f24243405bc0b8"} -2023-12-15T15:03:13.651Z INFO initializing dbft {"height": 3060, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:13.651Z debug frostfs-node/morph.go:229 new block {"index": 3059} -2023-12-15T15:03:13.770Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3059, "blockHeight": 3059, "took": "4.035492ms"} -2023-12-15T15:03:14.651Z INFO sending PrepareRequest {"height": 3060, "view": 0} -2023-12-15T15:03:14.651Z INFO sending Commit {"height": 3060, "view": 0} -2023-12-15T15:03:14.651Z INFO approving block {"height": 3060, "hash": "71ddb0a34dea646b2b6d00efaf1c369f16184798cc59e2992e0cc9d68c42bf55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbb87ba5898bb94e28e2c99265e8403579f0f753d91b8c357eaa1b4ef0037f8b"} -2023-12-15T15:03:14.652Z INFO initializing dbft {"height": 3061, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:14.652Z debug frostfs-node/morph.go:229 new block {"index": 3060} -2023-12-15T15:03:14.771Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3060, "blockHeight": 3060, "took": "4.760076ms"} -2023-12-15T15:03:15.652Z INFO sending PrepareRequest {"height": 3061, "view": 0} -2023-12-15T15:03:15.652Z INFO sending Commit {"height": 3061, "view": 0} -2023-12-15T15:03:15.652Z INFO approving block {"height": 3061, "hash": "debf94c7559b6a357ee703e9f7b8e9669e95930948fc2d10b4faeb71ca66dd60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71ddb0a34dea646b2b6d00efaf1c369f16184798cc59e2992e0cc9d68c42bf55"} -2023-12-15T15:03:15.653Z INFO initializing dbft {"height": 3062, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:15.654Z debug frostfs-node/morph.go:229 new block {"index": 3061} -2023-12-15T15:03:15.771Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3061, "blockHeight": 3061, "took": "4.197409ms"} -2023-12-15T15:03:16.654Z INFO sending PrepareRequest {"height": 3062, "view": 0} -2023-12-15T15:03:16.654Z INFO sending Commit {"height": 3062, "view": 0} -2023-12-15T15:03:16.654Z INFO approving block {"height": 3062, "hash": "42e70ecabff2578e540c5b9d18e69212433440c5089d4c1c25799baf2b0bb52d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "debf94c7559b6a357ee703e9f7b8e9669e95930948fc2d10b4faeb71ca66dd60"} -2023-12-15T15:03:16.656Z INFO initializing dbft {"height": 3063, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:16.656Z debug frostfs-node/morph.go:229 new block {"index": 3062} -2023-12-15T15:03:16.772Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3062, "blockHeight": 3062, "took": "4.724485ms"} -2023-12-15T15:03:17.655Z INFO sending PrepareRequest {"height": 3063, "view": 0} -2023-12-15T15:03:17.656Z INFO sending Commit {"height": 3063, "view": 0} -2023-12-15T15:03:17.656Z INFO approving block {"height": 3063, "hash": "6079579389973c60dfbdbfc01dee31f9df43a5cca9fbaec35cbf60688a24525a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42e70ecabff2578e540c5b9d18e69212433440c5089d4c1c25799baf2b0bb52d"} -2023-12-15T15:03:17.658Z INFO initializing dbft {"height": 3064, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:17.658Z debug frostfs-node/morph.go:229 new block {"index": 3063} -2023-12-15T15:03:17.771Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3063, "blockHeight": 3063, "took": "2.954697ms"} -2023-12-15T15:03:18.657Z INFO sending PrepareRequest {"height": 3064, "view": 0} -2023-12-15T15:03:18.657Z INFO sending Commit {"height": 3064, "view": 0} -2023-12-15T15:03:18.657Z INFO approving block {"height": 3064, "hash": "3f06ba1bf741a0050e73c6552a959947e4ea22743a63452aa02188c9491915df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6079579389973c60dfbdbfc01dee31f9df43a5cca9fbaec35cbf60688a24525a"} -2023-12-15T15:03:18.658Z INFO initializing dbft {"height": 3065, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:18.659Z debug frostfs-node/morph.go:229 new block {"index": 3064} -2023-12-15T15:03:18.775Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3064, "blockHeight": 3064, "took": "5.965554ms"} -2023-12-15T15:03:19.659Z INFO sending PrepareRequest {"height": 3065, "view": 0} -2023-12-15T15:03:19.659Z INFO sending Commit {"height": 3065, "view": 0} -2023-12-15T15:03:19.660Z INFO approving block {"height": 3065, "hash": "907919250d7976d005b96c8f5e4a60780678bf2b837a227d49cab781525ca707", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f06ba1bf741a0050e73c6552a959947e4ea22743a63452aa02188c9491915df"} -2023-12-15T15:03:19.661Z INFO initializing dbft {"height": 3066, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:19.661Z debug frostfs-node/morph.go:229 new block {"index": 3065} -2023-12-15T15:03:19.776Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3065, "blockHeight": 3065, "took": "6.351526ms"} -2023-12-15T15:03:20.660Z INFO sending PrepareRequest {"height": 3066, "view": 0} -2023-12-15T15:03:20.660Z INFO sending Commit {"height": 3066, "view": 0} -2023-12-15T15:03:20.661Z INFO approving block {"height": 3066, "hash": "5995376bfc844838681615c7494277a34c2a6b17bd53db202405c428262c1a87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "907919250d7976d005b96c8f5e4a60780678bf2b837a227d49cab781525ca707"} -2023-12-15T15:03:20.662Z INFO initializing dbft {"height": 3067, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:20.662Z debug frostfs-node/morph.go:229 new block {"index": 3066} -2023-12-15T15:03:20.774Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3066, "blockHeight": 3066, "took": "4.209363ms"} -2023-12-15T15:03:21.662Z INFO sending PrepareRequest {"height": 3067, "view": 0} -2023-12-15T15:03:21.662Z INFO sending Commit {"height": 3067, "view": 0} -2023-12-15T15:03:21.662Z INFO approving block {"height": 3067, "hash": "eb527ff15443ab1369ab10c474984da61eb8bbce90ea92bceb5a8dc3bd05f3e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5995376bfc844838681615c7494277a34c2a6b17bd53db202405c428262c1a87"} -2023-12-15T15:03:21.663Z INFO initializing dbft {"height": 3068, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:21.663Z debug frostfs-node/morph.go:229 new block {"index": 3067} -2023-12-15T15:03:21.665Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:03:21.668Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:03:21.668Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:03:21.775Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3067, "blockHeight": 3067, "took": "4.347099ms"} -2023-12-15T15:03:22.662Z INFO sending PrepareRequest {"height": 3068, "view": 0} -2023-12-15T15:03:22.663Z INFO sending Commit {"height": 3068, "view": 0} -2023-12-15T15:03:22.663Z INFO approving block {"height": 3068, "hash": "4d053a35879a06d21b393f55b0b29ee2d657bc171e235495fa2e910728c90719", "tx_count": 2, "merkle": "f9cc08b6ee6341838a67f3f269b3a04cdacd9fa778885ef1d2e95bdc70dd37e8", "prev": "eb527ff15443ab1369ab10c474984da61eb8bbce90ea92bceb5a8dc3bd05f3e8"} -2023-12-15T15:03:22.663Z INFO runtime log {"tx": "cee446a1ed7cace087ac408ff2bcb6724659ef8475e46f729543dd8a377760ef", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:03:22.663Z INFO runtime log {"tx": "cee446a1ed7cace087ac408ff2bcb6724659ef8475e46f729543dd8a377760ef", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:03:22.664Z INFO initializing dbft {"height": 3069, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:22.665Z debug frostfs-node/morph.go:229 new block {"index": 3068} -2023-12-15T15:03:22.777Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3068, "blockHeight": 3068, "took": "6.060913ms"} -2023-12-15T15:03:23.664Z INFO sending PrepareRequest {"height": 3069, "view": 0} -2023-12-15T15:03:23.664Z INFO sending Commit {"height": 3069, "view": 0} -2023-12-15T15:03:23.664Z INFO approving block {"height": 3069, "hash": "0ee2bf65ecf2b5d1498ac2ee9aad2f2f6de2f187244d317f1595c6ae89763969", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d053a35879a06d21b393f55b0b29ee2d657bc171e235495fa2e910728c90719"} -2023-12-15T15:03:23.665Z INFO initializing dbft {"height": 3070, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:23.666Z debug frostfs-node/morph.go:229 new block {"index": 3069} -2023-12-15T15:03:23.775Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3069, "blockHeight": 3069, "took": "3.560077ms"} -2023-12-15T15:03:24.666Z INFO sending PrepareRequest {"height": 3070, "view": 0} -2023-12-15T15:03:24.666Z INFO sending Commit {"height": 3070, "view": 0} -2023-12-15T15:03:24.667Z INFO approving block {"height": 3070, "hash": "21db6a86c8f81de4b85532b70d2184424b7688dde317b9f76742d2d72449e4fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ee2bf65ecf2b5d1498ac2ee9aad2f2f6de2f187244d317f1595c6ae89763969"} -2023-12-15T15:03:24.668Z INFO initializing dbft {"height": 3071, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:24.668Z debug frostfs-node/morph.go:229 new block {"index": 3070} -2023-12-15T15:03:24.776Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3070, "blockHeight": 3070, "took": "3.944312ms"} -2023-12-15T15:03:25.668Z INFO sending PrepareRequest {"height": 3071, "view": 0} -2023-12-15T15:03:25.668Z INFO sending Commit {"height": 3071, "view": 0} -2023-12-15T15:03:25.668Z INFO approving block {"height": 3071, "hash": "6d7bbab896d71c1a0ca215413704976667009f39e5e9338a8c7896b2e895a993", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21db6a86c8f81de4b85532b70d2184424b7688dde317b9f76742d2d72449e4fc"} -2023-12-15T15:03:25.669Z INFO initializing dbft {"height": 3072, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:25.670Z debug frostfs-node/morph.go:229 new block {"index": 3071} -2023-12-15T15:03:25.776Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 3071, "blockHeight": 3071, "took": "3.051167ms"} -2023-12-15T15:03:26.670Z INFO sending PrepareRequest {"height": 3072, "view": 0} -2023-12-15T15:03:26.670Z INFO sending Commit {"height": 3072, "view": 0} -2023-12-15T15:03:26.670Z INFO approving block {"height": 3072, "hash": "7ae383399276570ed47ea5a0cbe9495121b56aeea4bd571f3cae8081570dd5bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d7bbab896d71c1a0ca215413704976667009f39e5e9338a8c7896b2e895a993"} -2023-12-15T15:03:26.671Z INFO initializing dbft {"height": 3073, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:26.672Z debug frostfs-node/morph.go:229 new block {"index": 3072} -2023-12-15T15:03:26.674Z info settlement/calls.go:106 start basic income distribution {"epoch": 13} -2023-12-15T15:03:26.676Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 13, "iteration": 2, "error": "no data for 1 iteration in 13 epoch for consumers's trusts"} -2023-12-15T15:03:26.777Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3072, "blockHeight": 3072, "took": "3.908001ms"} -2023-12-15T15:03:27.671Z INFO sending PrepareRequest {"height": 3073, "view": 0} -2023-12-15T15:03:27.671Z INFO sending Commit {"height": 3073, "view": 0} -2023-12-15T15:03:27.671Z INFO approving block {"height": 3073, "hash": "c67ce26624bd34289e010ae2b4818f3e8fd8ca11637ef33fe0c2b3f492c4588d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ae383399276570ed47ea5a0cbe9495121b56aeea4bd571f3cae8081570dd5bd"} -2023-12-15T15:03:27.673Z INFO initializing dbft {"height": 3074, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:27.673Z debug frostfs-node/morph.go:229 new block {"index": 3073} -2023-12-15T15:03:27.779Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3073, "blockHeight": 3073, "took": "4.75696ms"} -2023-12-15T15:03:28.672Z INFO sending PrepareRequest {"height": 3074, "view": 0} -2023-12-15T15:03:28.673Z INFO sending Commit {"height": 3074, "view": 0} -2023-12-15T15:03:28.673Z INFO approving block {"height": 3074, "hash": "9a1cda317a2157b27f515b989daa468a01f5e95e21dbab0c2a3b1c7e00e74499", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c67ce26624bd34289e010ae2b4818f3e8fd8ca11637ef33fe0c2b3f492c4588d"} -2023-12-15T15:03:28.676Z INFO initializing dbft {"height": 3075, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:28.677Z debug frostfs-node/morph.go:229 new block {"index": 3074} -2023-12-15T15:03:28.780Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3074, "blockHeight": 3074, "took": "5.868181ms"} -2023-12-15T15:03:29.674Z INFO sending PrepareRequest {"height": 3075, "view": 0} -2023-12-15T15:03:29.674Z INFO sending Commit {"height": 3075, "view": 0} -2023-12-15T15:03:29.675Z INFO approving block {"height": 3075, "hash": "1275d39ee9c307bb1e5cc851d1b23bfba5541e95d6d7460b4a58e3b6513899ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a1cda317a2157b27f515b989daa468a01f5e95e21dbab0c2a3b1c7e00e74499"} -2023-12-15T15:03:29.676Z INFO initializing dbft {"height": 3076, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:29.676Z debug frostfs-node/morph.go:229 new block {"index": 3075} -2023-12-15T15:03:29.780Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3075, "blockHeight": 3075, "took": "4.550084ms"} -2023-12-15T15:03:30.676Z INFO sending PrepareRequest {"height": 3076, "view": 0} -2023-12-15T15:03:30.676Z INFO sending Commit {"height": 3076, "view": 0} -2023-12-15T15:03:30.676Z INFO approving block {"height": 3076, "hash": "a966c71326c7b543bd09469fd2873f840aae7196c0216241bb12e3add7f505ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1275d39ee9c307bb1e5cc851d1b23bfba5541e95d6d7460b4a58e3b6513899ec"} -2023-12-15T15:03:30.677Z INFO initializing dbft {"height": 3077, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:30.678Z debug frostfs-node/morph.go:229 new block {"index": 3076} -2023-12-15T15:03:30.780Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3076, "blockHeight": 3076, "took": "3.956793ms"} -2023-12-15T15:03:31.677Z INFO sending PrepareRequest {"height": 3077, "view": 0} -2023-12-15T15:03:31.678Z INFO sending Commit {"height": 3077, "view": 0} -2023-12-15T15:03:31.678Z INFO approving block {"height": 3077, "hash": "ed38c91d33c0b17ad2f03843fcf311309abea0183d2b2981789c97e7f1c1017f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a966c71326c7b543bd09469fd2873f840aae7196c0216241bb12e3add7f505ba"} -2023-12-15T15:03:31.679Z INFO initializing dbft {"height": 3078, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:31.679Z debug frostfs-node/morph.go:229 new block {"index": 3077} -2023-12-15T15:03:31.780Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3077, "blockHeight": 3077, "took": "3.896993ms"} -2023-12-15T15:03:32.679Z INFO sending PrepareRequest {"height": 3078, "view": 0} -2023-12-15T15:03:32.679Z INFO sending Commit {"height": 3078, "view": 0} -2023-12-15T15:03:32.679Z INFO approving block {"height": 3078, "hash": "e14d92b07737f53a144a26fb407d687db3624b67edd3eae6fdfd823784e047a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed38c91d33c0b17ad2f03843fcf311309abea0183d2b2981789c97e7f1c1017f"} -2023-12-15T15:03:32.681Z INFO initializing dbft {"height": 3079, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:32.682Z debug frostfs-node/morph.go:229 new block {"index": 3078} -2023-12-15T15:03:32.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3078, "blockHeight": 3078, "took": "4.817249ms"} -2023-12-15T15:03:33.681Z INFO sending PrepareRequest {"height": 3079, "view": 0} -2023-12-15T15:03:33.681Z INFO sending Commit {"height": 3079, "view": 0} -2023-12-15T15:03:33.681Z INFO approving block {"height": 3079, "hash": "6edb4bec9cbd2bbbbeb533eb8e1acfe0b85311e9bdb42a6b9baeb56676695234", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e14d92b07737f53a144a26fb407d687db3624b67edd3eae6fdfd823784e047a6"} -2023-12-15T15:03:33.682Z INFO initializing dbft {"height": 3080, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:33.683Z debug frostfs-node/morph.go:229 new block {"index": 3079} -2023-12-15T15:03:33.781Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3079, "blockHeight": 3079, "took": "3.209944ms"} -2023-12-15T15:03:34.682Z INFO sending PrepareRequest {"height": 3080, "view": 0} -2023-12-15T15:03:34.682Z INFO sending Commit {"height": 3080, "view": 0} -2023-12-15T15:03:34.682Z INFO approving block {"height": 3080, "hash": "a10e966cc969b5b27d7dbc106ae82808938c36b4e0dafd4154ad52fda52d97cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6edb4bec9cbd2bbbbeb533eb8e1acfe0b85311e9bdb42a6b9baeb56676695234"} -2023-12-15T15:03:34.684Z INFO initializing dbft {"height": 3081, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:34.684Z debug frostfs-node/morph.go:229 new block {"index": 3080} -2023-12-15T15:03:34.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3080, "blockHeight": 3080, "took": "3.819808ms"} -2023-12-15T15:03:35.684Z INFO sending PrepareRequest {"height": 3081, "view": 0} -2023-12-15T15:03:35.684Z INFO sending Commit {"height": 3081, "view": 0} -2023-12-15T15:03:35.684Z INFO approving block {"height": 3081, "hash": "9f801ddf498666f6c41c4dab8425127e6ed28dbe130a167b0669f9e4d9931823", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a10e966cc969b5b27d7dbc106ae82808938c36b4e0dafd4154ad52fda52d97cb"} -2023-12-15T15:03:35.686Z INFO initializing dbft {"height": 3082, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:35.686Z debug frostfs-node/morph.go:229 new block {"index": 3081} -2023-12-15T15:03:35.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3081, "blockHeight": 3081, "took": "2.891152ms"} -2023-12-15T15:03:36.685Z INFO sending PrepareRequest {"height": 3082, "view": 0} -2023-12-15T15:03:36.685Z INFO sending Commit {"height": 3082, "view": 0} -2023-12-15T15:03:36.685Z INFO approving block {"height": 3082, "hash": "1dc2aaa45fbaeb2335aeafedbe5bf5c65e5492d7c6e4ba85f72c3dc0d2e68598", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f801ddf498666f6c41c4dab8425127e6ed28dbe130a167b0669f9e4d9931823"} -2023-12-15T15:03:36.687Z INFO initializing dbft {"height": 3083, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:36.687Z debug frostfs-node/morph.go:229 new block {"index": 3082} -2023-12-15T15:03:36.784Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3082, "blockHeight": 3082, "took": "4.352064ms"} -2023-12-15T15:03:37.687Z INFO sending PrepareRequest {"height": 3083, "view": 0} -2023-12-15T15:03:37.687Z INFO sending Commit {"height": 3083, "view": 0} -2023-12-15T15:03:37.687Z INFO approving block {"height": 3083, "hash": "fb8c2f2a818a0ef3f1ab9aa6edc001f5ce64460982b6c50376450d9358bb3d45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1dc2aaa45fbaeb2335aeafedbe5bf5c65e5492d7c6e4ba85f72c3dc0d2e68598"} -2023-12-15T15:03:37.688Z INFO initializing dbft {"height": 3084, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:37.689Z debug frostfs-node/morph.go:229 new block {"index": 3083} -2023-12-15T15:03:37.783Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3083, "blockHeight": 3083, "took": "2.974504ms"} -2023-12-15T15:03:38.688Z INFO sending PrepareRequest {"height": 3084, "view": 0} -2023-12-15T15:03:38.688Z INFO sending Commit {"height": 3084, "view": 0} -2023-12-15T15:03:38.689Z INFO approving block {"height": 3084, "hash": "fecb2b9ef8f627318ac73faed3897924eecb33a362e63e9c12243eda9477a18f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb8c2f2a818a0ef3f1ab9aa6edc001f5ce64460982b6c50376450d9358bb3d45"} -2023-12-15T15:03:38.690Z INFO initializing dbft {"height": 3085, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:38.691Z debug frostfs-node/morph.go:229 new block {"index": 3084} -2023-12-15T15:03:38.785Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3084, "blockHeight": 3084, "took": "4.830915ms"} -2023-12-15T15:03:39.690Z INFO sending PrepareRequest {"height": 3085, "view": 0} -2023-12-15T15:03:39.690Z INFO sending Commit {"height": 3085, "view": 0} -2023-12-15T15:03:39.690Z INFO approving block {"height": 3085, "hash": "26d0cb99abd5c7be701bc03f488c92ad681944c27b6151f18da2a51036ce4fd3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fecb2b9ef8f627318ac73faed3897924eecb33a362e63e9c12243eda9477a18f"} -2023-12-15T15:03:39.691Z INFO initializing dbft {"height": 3086, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:39.691Z debug frostfs-node/morph.go:229 new block {"index": 3085} -2023-12-15T15:03:39.784Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3085, "blockHeight": 3085, "took": "3.4359ms"} -2023-12-15T15:03:40.691Z INFO sending PrepareRequest {"height": 3086, "view": 0} -2023-12-15T15:03:40.691Z INFO sending Commit {"height": 3086, "view": 0} -2023-12-15T15:03:40.691Z INFO approving block {"height": 3086, "hash": "81cf72d3793a7f3acf12e4d99ed858823c7de16207281b6270d4d4057035fc6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26d0cb99abd5c7be701bc03f488c92ad681944c27b6151f18da2a51036ce4fd3"} -2023-12-15T15:03:40.692Z INFO initializing dbft {"height": 3087, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:40.693Z debug frostfs-node/morph.go:229 new block {"index": 3086} -2023-12-15T15:03:40.787Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3086, "blockHeight": 3086, "took": "5.522135ms"} -2023-12-15T15:03:41.692Z INFO sending PrepareRequest {"height": 3087, "view": 0} -2023-12-15T15:03:41.693Z INFO sending Commit {"height": 3087, "view": 0} -2023-12-15T15:03:41.693Z INFO approving block {"height": 3087, "hash": "cb6507a26af78ad0ab886d4ab8bec9a2f9f1a70f98489cf2d147cce6911aef9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81cf72d3793a7f3acf12e4d99ed858823c7de16207281b6270d4d4057035fc6b"} -2023-12-15T15:03:41.695Z INFO initializing dbft {"height": 3088, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:41.695Z debug frostfs-node/morph.go:229 new block {"index": 3087} -2023-12-15T15:03:41.786Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3087, "blockHeight": 3087, "took": "3.815216ms"} -2023-12-15T15:03:42.694Z INFO sending PrepareRequest {"height": 3088, "view": 0} -2023-12-15T15:03:42.694Z INFO sending Commit {"height": 3088, "view": 0} -2023-12-15T15:03:42.694Z INFO approving block {"height": 3088, "hash": "59c485e694ff007b964d55f7cef3b4ed84c6311297d2a6726172d02dcefb4b5f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb6507a26af78ad0ab886d4ab8bec9a2f9f1a70f98489cf2d147cce6911aef9f"} -2023-12-15T15:03:42.696Z INFO initializing dbft {"height": 3089, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:42.697Z debug frostfs-node/morph.go:229 new block {"index": 3088} -2023-12-15T15:03:42.787Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3088, "blockHeight": 3088, "took": "3.62917ms"} -2023-12-15T15:03:43.695Z INFO sending PrepareRequest {"height": 3089, "view": 0} -2023-12-15T15:03:43.695Z INFO sending Commit {"height": 3089, "view": 0} -2023-12-15T15:03:43.696Z INFO approving block {"height": 3089, "hash": "a107c53918ab088bde96240ed1d853c712b8d52ecad8006facef6ea47e44e2b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59c485e694ff007b964d55f7cef3b4ed84c6311297d2a6726172d02dcefb4b5f"} -2023-12-15T15:03:43.696Z INFO initializing dbft {"height": 3090, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:43.697Z debug frostfs-node/morph.go:229 new block {"index": 3089} -2023-12-15T15:03:43.788Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3089, "blockHeight": 3089, "took": "4.326246ms"} -2023-12-15T15:03:44.697Z INFO sending PrepareRequest {"height": 3090, "view": 0} -2023-12-15T15:03:44.697Z INFO sending Commit {"height": 3090, "view": 0} -2023-12-15T15:03:44.698Z INFO approving block {"height": 3090, "hash": "d8f622a4e4822e3b21eabd687f8101d576a25f9e64c78392f7c797d7de75bb00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a107c53918ab088bde96240ed1d853c712b8d52ecad8006facef6ea47e44e2b9"} -2023-12-15T15:03:44.699Z INFO initializing dbft {"height": 3091, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:44.699Z debug frostfs-node/morph.go:229 new block {"index": 3090} -2023-12-15T15:03:44.789Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3090, "blockHeight": 3090, "took": "4.517269ms"} -2023-12-15T15:03:45.698Z INFO sending PrepareRequest {"height": 3091, "view": 0} -2023-12-15T15:03:45.699Z INFO sending Commit {"height": 3091, "view": 0} -2023-12-15T15:03:45.699Z INFO approving block {"height": 3091, "hash": "14837dd82c3fd1d36adac628b877db495c5e2477d46c0d980362997092262a39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8f622a4e4822e3b21eabd687f8101d576a25f9e64c78392f7c797d7de75bb00"} -2023-12-15T15:03:45.700Z INFO initializing dbft {"height": 3092, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:45.701Z debug frostfs-node/morph.go:229 new block {"index": 3091} -2023-12-15T15:03:45.790Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3091, "blockHeight": 3091, "took": "4.201278ms"} -2023-12-15T15:03:46.700Z INFO sending PrepareRequest {"height": 3092, "view": 0} -2023-12-15T15:03:46.700Z INFO sending Commit {"height": 3092, "view": 0} -2023-12-15T15:03:46.700Z INFO approving block {"height": 3092, "hash": "0eb7b168c3b48cfe7635754413f8042f91f5546b3ad31e9b0b8dbdb3ba6ddf20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14837dd82c3fd1d36adac628b877db495c5e2477d46c0d980362997092262a39"} -2023-12-15T15:03:46.702Z INFO initializing dbft {"height": 3093, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:46.702Z debug frostfs-node/morph.go:229 new block {"index": 3092} -2023-12-15T15:03:46.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3092, "blockHeight": 3092, "took": "5.536739ms"} -2023-12-15T15:03:47.702Z INFO sending PrepareRequest {"height": 3093, "view": 0} -2023-12-15T15:03:47.702Z INFO sending Commit {"height": 3093, "view": 0} -2023-12-15T15:03:47.702Z INFO approving block {"height": 3093, "hash": "239a8c3409f67b6ddb6e93dba3ff0c78ff0e1dfed0477ead967a2c28ba03d4aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0eb7b168c3b48cfe7635754413f8042f91f5546b3ad31e9b0b8dbdb3ba6ddf20"} -2023-12-15T15:03:47.703Z INFO initializing dbft {"height": 3094, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:47.703Z debug frostfs-node/morph.go:229 new block {"index": 3093} -2023-12-15T15:03:47.790Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3093, "blockHeight": 3093, "took": "3.017568ms"} -2023-12-15T15:03:48.703Z INFO sending PrepareRequest {"height": 3094, "view": 0} -2023-12-15T15:03:48.703Z INFO sending Commit {"height": 3094, "view": 0} -2023-12-15T15:03:48.703Z INFO approving block {"height": 3094, "hash": "267ee56872ee780b71c3cfa520297662505e79275356a10d77a41929aede573f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "239a8c3409f67b6ddb6e93dba3ff0c78ff0e1dfed0477ead967a2c28ba03d4aa"} -2023-12-15T15:03:48.705Z INFO initializing dbft {"height": 3095, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:48.705Z debug frostfs-node/morph.go:229 new block {"index": 3094} -2023-12-15T15:03:48.791Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3094, "blockHeight": 3094, "took": "4.08673ms"} -2023-12-15T15:03:49.705Z INFO sending PrepareRequest {"height": 3095, "view": 0} -2023-12-15T15:03:49.705Z INFO sending Commit {"height": 3095, "view": 0} -2023-12-15T15:03:49.705Z INFO approving block {"height": 3095, "hash": "1e06345353fb32b33b6cdb0b54b6eb300f891131cd788a6b3a55e4dc6b4275d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "267ee56872ee780b71c3cfa520297662505e79275356a10d77a41929aede573f"} -2023-12-15T15:03:49.707Z INFO initializing dbft {"height": 3096, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:49.708Z debug frostfs-node/morph.go:229 new block {"index": 3095} -2023-12-15T15:03:49.793Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3095, "blockHeight": 3095, "took": "4.610498ms"} -2023-12-15T15:03:50.706Z INFO sending PrepareRequest {"height": 3096, "view": 0} -2023-12-15T15:03:50.707Z INFO sending Commit {"height": 3096, "view": 0} -2023-12-15T15:03:50.707Z INFO approving block {"height": 3096, "hash": "0095a2f14ffb61cca58a1f6c3c5235bdf05e4a67ebdd9bb1b62096494d90a15d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e06345353fb32b33b6cdb0b54b6eb300f891131cd788a6b3a55e4dc6b4275d6"} -2023-12-15T15:03:50.708Z INFO initializing dbft {"height": 3097, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:50.709Z debug frostfs-node/morph.go:229 new block {"index": 3096} -2023-12-15T15:03:50.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3096, "blockHeight": 3096, "took": "3.963385ms"} -2023-12-15T15:03:51.708Z INFO sending PrepareRequest {"height": 3097, "view": 0} -2023-12-15T15:03:51.708Z INFO sending Commit {"height": 3097, "view": 0} -2023-12-15T15:03:51.708Z INFO approving block {"height": 3097, "hash": "50b911406bf6132ab0f45c11a291ea00c732889480a50bc11ba1cd18a1ff398d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0095a2f14ffb61cca58a1f6c3c5235bdf05e4a67ebdd9bb1b62096494d90a15d"} -2023-12-15T15:03:51.709Z INFO initializing dbft {"height": 3098, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:51.710Z debug frostfs-node/morph.go:229 new block {"index": 3097} -2023-12-15T15:03:51.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3097, "blockHeight": 3097, "took": "3.119162ms"} -2023-12-15T15:03:52.709Z INFO sending PrepareRequest {"height": 3098, "view": 0} -2023-12-15T15:03:52.710Z INFO sending Commit {"height": 3098, "view": 0} -2023-12-15T15:03:52.710Z INFO approving block {"height": 3098, "hash": "166f7f5e5ccf2c2e015f3b65b44cf04370d4cef20125db3f41b7982c97a0bf08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50b911406bf6132ab0f45c11a291ea00c732889480a50bc11ba1cd18a1ff398d"} -2023-12-15T15:03:52.711Z INFO initializing dbft {"height": 3099, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:52.711Z debug frostfs-node/morph.go:229 new block {"index": 3098} -2023-12-15T15:03:52.793Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3098, "blockHeight": 3098, "took": "3.72104ms"} -2023-12-15T15:03:53.711Z INFO sending PrepareRequest {"height": 3099, "view": 0} -2023-12-15T15:03:53.711Z INFO sending Commit {"height": 3099, "view": 0} -2023-12-15T15:03:53.711Z INFO approving block {"height": 3099, "hash": "12fa542afa4efaef9dff13f8cc8920d51917288fac730ed2981494b46c7eb9fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "166f7f5e5ccf2c2e015f3b65b44cf04370d4cef20125db3f41b7982c97a0bf08"} -2023-12-15T15:03:53.713Z INFO initializing dbft {"height": 3100, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:53.713Z debug frostfs-node/morph.go:229 new block {"index": 3099} -2023-12-15T15:03:53.794Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3099, "blockHeight": 3099, "took": "4.044389ms"} -2023-12-15T15:03:54.713Z INFO sending PrepareRequest {"height": 3100, "view": 0} -2023-12-15T15:03:54.713Z INFO sending Commit {"height": 3100, "view": 0} -2023-12-15T15:03:54.713Z INFO approving block {"height": 3100, "hash": "05a39a976944c5ac62dbefe432eb27174290d607f568876a43707219150949ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12fa542afa4efaef9dff13f8cc8920d51917288fac730ed2981494b46c7eb9fb"} -2023-12-15T15:03:54.714Z INFO initializing dbft {"height": 3101, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:54.715Z debug frostfs-node/morph.go:229 new block {"index": 3100} -2023-12-15T15:03:54.795Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3100, "blockHeight": 3100, "took": "3.962349ms"} -2023-12-15T15:03:55.714Z INFO sending PrepareRequest {"height": 3101, "view": 0} -2023-12-15T15:03:55.714Z INFO sending Commit {"height": 3101, "view": 0} -2023-12-15T15:03:55.715Z INFO approving block {"height": 3101, "hash": "441a6ca5c96429108c17cce3b16dfdfe63eb8eb56e5c707077cb68b6bcd854be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05a39a976944c5ac62dbefe432eb27174290d607f568876a43707219150949ee"} -2023-12-15T15:03:55.716Z INFO initializing dbft {"height": 3102, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:55.716Z debug frostfs-node/morph.go:229 new block {"index": 3101} -2023-12-15T15:03:55.796Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3101, "blockHeight": 3101, "took": "4.63752ms"} -2023-12-15T15:03:56.716Z INFO sending PrepareRequest {"height": 3102, "view": 0} -2023-12-15T15:03:56.716Z INFO sending Commit {"height": 3102, "view": 0} -2023-12-15T15:03:56.716Z INFO approving block {"height": 3102, "hash": "2be36b97541ae6d52542f9caf54f07bb41ec470ad7d13e79115a2e7fc048a8eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "441a6ca5c96429108c17cce3b16dfdfe63eb8eb56e5c707077cb68b6bcd854be"} -2023-12-15T15:03:56.718Z INFO initializing dbft {"height": 3103, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:56.718Z debug frostfs-node/morph.go:229 new block {"index": 3102} -2023-12-15T15:03:56.797Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3102, "blockHeight": 3102, "took": "4.244373ms"} -2023-12-15T15:03:57.717Z INFO sending PrepareRequest {"height": 3103, "view": 0} -2023-12-15T15:03:57.717Z INFO sending Commit {"height": 3103, "view": 0} -2023-12-15T15:03:57.717Z INFO approving block {"height": 3103, "hash": "b3295bc9fac58550319efba7f34c8d6ce179da3ba24d892aef2a02882f050937", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2be36b97541ae6d52542f9caf54f07bb41ec470ad7d13e79115a2e7fc048a8eb"} -2023-12-15T15:03:57.718Z INFO initializing dbft {"height": 3104, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:57.719Z debug frostfs-node/morph.go:229 new block {"index": 3103} -2023-12-15T15:03:57.798Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3103, "blockHeight": 3103, "took": "4.646284ms"} -2023-12-15T15:03:58.718Z INFO sending PrepareRequest {"height": 3104, "view": 0} -2023-12-15T15:03:58.719Z INFO sending Commit {"height": 3104, "view": 0} -2023-12-15T15:03:58.719Z INFO approving block {"height": 3104, "hash": "07c8d0e9c40c49ce207f6f2c38688c7a116f44a6020ce8acee33572c473da59f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3295bc9fac58550319efba7f34c8d6ce179da3ba24d892aef2a02882f050937"} -2023-12-15T15:03:58.720Z INFO initializing dbft {"height": 3105, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:58.720Z debug frostfs-node/morph.go:229 new block {"index": 3104} -2023-12-15T15:03:58.801Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3104, "blockHeight": 3104, "took": "6.110757ms"} -2023-12-15T15:03:59.719Z INFO sending PrepareRequest {"height": 3105, "view": 0} -2023-12-15T15:03:59.720Z INFO sending Commit {"height": 3105, "view": 0} -2023-12-15T15:03:59.720Z INFO approving block {"height": 3105, "hash": "518b7739549daad0a1f877e59e574763b96b1b33130e14bc3f039f745d5bfd3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07c8d0e9c40c49ce207f6f2c38688c7a116f44a6020ce8acee33572c473da59f"} -2023-12-15T15:03:59.721Z INFO initializing dbft {"height": 3106, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:03:59.723Z debug frostfs-node/morph.go:229 new block {"index": 3105} -2023-12-15T15:03:59.799Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3105, "blockHeight": 3105, "took": "3.820728ms"} -2023-12-15T15:04:00.721Z INFO sending PrepareRequest {"height": 3106, "view": 0} -2023-12-15T15:04:00.721Z INFO sending Commit {"height": 3106, "view": 0} -2023-12-15T15:04:00.721Z INFO approving block {"height": 3106, "hash": "bc1041819714aef19e9eaa9c9c5ac25d28aedff744c5dc44d68df5c13c987a42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "518b7739549daad0a1f877e59e574763b96b1b33130e14bc3f039f745d5bfd3f"} -2023-12-15T15:04:00.722Z INFO initializing dbft {"height": 3107, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:00.723Z debug frostfs-node/morph.go:229 new block {"index": 3106} -2023-12-15T15:04:00.800Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3106, "blockHeight": 3106, "took": "4.220779ms"} -2023-12-15T15:04:01.723Z INFO sending PrepareRequest {"height": 3107, "view": 0} -2023-12-15T15:04:01.723Z INFO sending Commit {"height": 3107, "view": 0} -2023-12-15T15:04:01.724Z INFO approving block {"height": 3107, "hash": "09f5275c9aa1646474d422b588e8b3b46bd400e2e4d407cbf1def3af16845f65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc1041819714aef19e9eaa9c9c5ac25d28aedff744c5dc44d68df5c13c987a42"} -2023-12-15T15:04:01.725Z INFO initializing dbft {"height": 3108, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:01.726Z debug frostfs-node/morph.go:229 new block {"index": 3107} -2023-12-15T15:04:01.800Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3107, "blockHeight": 3107, "took": "3.235852ms"} -2023-12-15T15:04:02.724Z INFO sending PrepareRequest {"height": 3108, "view": 0} -2023-12-15T15:04:02.724Z INFO sending Commit {"height": 3108, "view": 0} -2023-12-15T15:04:02.725Z INFO approving block {"height": 3108, "hash": "4ea2aa98e090ba4699cba717d4a172cd21687f7a0660f68e1bee664519ee8f4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09f5275c9aa1646474d422b588e8b3b46bd400e2e4d407cbf1def3af16845f65"} -2023-12-15T15:04:02.726Z INFO initializing dbft {"height": 3109, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:02.726Z debug frostfs-node/morph.go:229 new block {"index": 3108} -2023-12-15T15:04:02.801Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3108, "blockHeight": 3108, "took": "4.183904ms"} -2023-12-15T15:04:03.726Z INFO sending PrepareRequest {"height": 3109, "view": 0} -2023-12-15T15:04:03.726Z INFO sending Commit {"height": 3109, "view": 0} -2023-12-15T15:04:03.727Z INFO approving block {"height": 3109, "hash": "8776564f85b988f196ddc3a87de4aea8befc96d8f9162b0bd26a724a4829ca4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ea2aa98e090ba4699cba717d4a172cd21687f7a0660f68e1bee664519ee8f4e"} -2023-12-15T15:04:03.728Z INFO initializing dbft {"height": 3110, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:03.728Z debug frostfs-node/morph.go:229 new block {"index": 3109} -2023-12-15T15:04:03.802Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3109, "blockHeight": 3109, "took": "4.075902ms"} -2023-12-15T15:04:04.727Z INFO sending PrepareRequest {"height": 3110, "view": 0} -2023-12-15T15:04:04.728Z INFO sending Commit {"height": 3110, "view": 0} -2023-12-15T15:04:04.728Z INFO approving block {"height": 3110, "hash": "aee8cacfbe8fa77dac2be5ac2a2535ba9773f44d0efdcc7c48e699b23740acbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8776564f85b988f196ddc3a87de4aea8befc96d8f9162b0bd26a724a4829ca4a"} -2023-12-15T15:04:04.729Z INFO initializing dbft {"height": 3111, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:04.729Z debug frostfs-node/morph.go:229 new block {"index": 3110} -2023-12-15T15:04:04.803Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3110, "blockHeight": 3110, "took": "4.540628ms"} -2023-12-15T15:04:05.729Z INFO sending PrepareRequest {"height": 3111, "view": 0} -2023-12-15T15:04:05.729Z INFO sending Commit {"height": 3111, "view": 0} -2023-12-15T15:04:05.729Z INFO approving block {"height": 3111, "hash": "e3f8ae7575f72b621aa8c5addff7af8e82b4d0b306b7a2ad0d1e1c52b8b0aa6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aee8cacfbe8fa77dac2be5ac2a2535ba9773f44d0efdcc7c48e699b23740acbb"} -2023-12-15T15:04:05.730Z INFO initializing dbft {"height": 3112, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:05.731Z debug frostfs-node/morph.go:229 new block {"index": 3111} -2023-12-15T15:04:05.802Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3111, "blockHeight": 3111, "took": "3.481975ms"} -2023-12-15T15:04:06.731Z INFO sending PrepareRequest {"height": 3112, "view": 0} -2023-12-15T15:04:06.731Z INFO sending Commit {"height": 3112, "view": 0} -2023-12-15T15:04:06.731Z INFO approving block {"height": 3112, "hash": "de2a1ec71ed09d40a9429ee308a60a41171344aff0365788fabe295856e6b407", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3f8ae7575f72b621aa8c5addff7af8e82b4d0b306b7a2ad0d1e1c52b8b0aa6a"} -2023-12-15T15:04:06.733Z INFO initializing dbft {"height": 3113, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:06.733Z debug frostfs-node/morph.go:229 new block {"index": 3112} -2023-12-15T15:04:06.803Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3112, "blockHeight": 3112, "took": "3.027731ms"} -2023-12-15T15:04:07.732Z INFO sending PrepareRequest {"height": 3113, "view": 0} -2023-12-15T15:04:07.732Z INFO sending Commit {"height": 3113, "view": 0} -2023-12-15T15:04:07.732Z INFO approving block {"height": 3113, "hash": "78f0478a9ba405378f78434176f3d9d74e316f13d25666b0bb9d8e4b10b02937", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de2a1ec71ed09d40a9429ee308a60a41171344aff0365788fabe295856e6b407"} -2023-12-15T15:04:07.733Z INFO initializing dbft {"height": 3114, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:07.734Z debug frostfs-node/morph.go:229 new block {"index": 3113} -2023-12-15T15:04:07.805Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3113, "blockHeight": 3113, "took": "4.698457ms"} -2023-12-15T15:04:08.733Z INFO sending PrepareRequest {"height": 3114, "view": 0} -2023-12-15T15:04:08.733Z INFO sending Commit {"height": 3114, "view": 0} -2023-12-15T15:04:08.734Z INFO approving block {"height": 3114, "hash": "24f9f73e0f664bfbd828b6d8a93b3123c098ddd36b0aaebe88fa908c82bf8cd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78f0478a9ba405378f78434176f3d9d74e316f13d25666b0bb9d8e4b10b02937"} -2023-12-15T15:04:08.734Z INFO initializing dbft {"height": 3115, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:08.735Z debug frostfs-node/morph.go:229 new block {"index": 3114} -2023-12-15T15:04:08.804Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3114, "blockHeight": 3114, "took": "3.177902ms"} -2023-12-15T15:04:09.735Z INFO sending PrepareRequest {"height": 3115, "view": 0} -2023-12-15T15:04:09.735Z INFO sending Commit {"height": 3115, "view": 0} -2023-12-15T15:04:09.735Z INFO approving block {"height": 3115, "hash": "cf4519190bebee255620bb626f079e4577e290a874e0f78929ec7b84799a8b1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24f9f73e0f664bfbd828b6d8a93b3123c098ddd36b0aaebe88fa908c82bf8cd8"} -2023-12-15T15:04:09.736Z INFO initializing dbft {"height": 3116, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:09.737Z debug frostfs-node/morph.go:229 new block {"index": 3115} -2023-12-15T15:04:09.805Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3115, "blockHeight": 3115, "took": "4.060137ms"} -2023-12-15T15:04:10.737Z INFO sending PrepareRequest {"height": 3116, "view": 0} -2023-12-15T15:04:10.737Z INFO sending Commit {"height": 3116, "view": 0} -2023-12-15T15:04:10.738Z INFO approving block {"height": 3116, "hash": "1c195ea420abbcfc52467301ffa1fa775b04dc3daebd090b2b86caa4f0fc67f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf4519190bebee255620bb626f079e4577e290a874e0f78929ec7b84799a8b1e"} -2023-12-15T15:04:10.739Z INFO initializing dbft {"height": 3117, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:10.740Z debug frostfs-node/morph.go:229 new block {"index": 3116} -2023-12-15T15:04:10.806Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3116, "blockHeight": 3116, "took": "4.414518ms"} -2023-12-15T15:04:11.739Z INFO sending PrepareRequest {"height": 3117, "view": 0} -2023-12-15T15:04:11.739Z INFO sending Commit {"height": 3117, "view": 0} -2023-12-15T15:04:11.739Z INFO approving block {"height": 3117, "hash": "251dd583ec84d36fa61739c0c9c878e1232176f3c06a15bc3488baa63d0cfaff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c195ea420abbcfc52467301ffa1fa775b04dc3daebd090b2b86caa4f0fc67f2"} -2023-12-15T15:04:11.740Z INFO initializing dbft {"height": 3118, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:11.741Z debug frostfs-node/morph.go:229 new block {"index": 3117} -2023-12-15T15:04:11.743Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:04:11.746Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:04:11.746Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:04:11.806Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3117, "blockHeight": 3117, "took": "3.970434ms"} -2023-12-15T15:04:12.741Z INFO sending PrepareRequest {"height": 3118, "view": 0} -2023-12-15T15:04:12.741Z INFO sending Commit {"height": 3118, "view": 0} -2023-12-15T15:04:12.741Z INFO approving block {"height": 3118, "hash": "67fbb8530709d0cb69149151b32ff6c9530fd8651b601a54e3d195bd2dadf76a", "tx_count": 2, "merkle": "04f044c3c163effd2a116f677c253d96a62c6d2bf34a1718f169163d720baac5", "prev": "251dd583ec84d36fa61739c0c9c878e1232176f3c06a15bc3488baa63d0cfaff"} -2023-12-15T15:04:12.742Z INFO runtime log {"tx": "f2910afba150793f0098fa68e6f1c940beb8d71162f20e92fc094273e07d06a8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:04:12.742Z INFO runtime log {"tx": "f2910afba150793f0098fa68e6f1c940beb8d71162f20e92fc094273e07d06a8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:04:12.743Z INFO initializing dbft {"height": 3119, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:12.744Z debug frostfs-node/morph.go:229 new block {"index": 3118} -2023-12-15T15:04:12.810Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3118, "blockHeight": 3118, "took": "7.006244ms"} -2023-12-15T15:04:13.742Z INFO sending PrepareRequest {"height": 3119, "view": 0} -2023-12-15T15:04:13.742Z INFO sending Commit {"height": 3119, "view": 0} -2023-12-15T15:04:13.742Z INFO approving block {"height": 3119, "hash": "a57b6a21b843d1c0dc002fa0f946fad0b2e23fa980cabb34c56f90d0a7a60151", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67fbb8530709d0cb69149151b32ff6c9530fd8651b601a54e3d195bd2dadf76a"} -2023-12-15T15:04:13.743Z INFO initializing dbft {"height": 3120, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:13.744Z debug frostfs-node/morph.go:229 new block {"index": 3119} -2023-12-15T15:04:13.808Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3119, "blockHeight": 3119, "took": "4.583443ms"} -2023-12-15T15:04:14.744Z INFO sending PrepareRequest {"height": 3120, "view": 0} -2023-12-15T15:04:14.744Z INFO sending Commit {"height": 3120, "view": 0} -2023-12-15T15:04:14.744Z INFO approving block {"height": 3120, "hash": "5cdfd247239c2f9d49f8010af7f33dbd16d4499ddd71dcc9642064e0734fc0f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a57b6a21b843d1c0dc002fa0f946fad0b2e23fa980cabb34c56f90d0a7a60151"} -2023-12-15T15:04:14.746Z INFO initializing dbft {"height": 3121, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:14.747Z debug frostfs-node/morph.go:229 new block {"index": 3120} -2023-12-15T15:04:14.808Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3120, "blockHeight": 3120, "took": "4.478731ms"} -2023-12-15T15:04:15.745Z INFO sending PrepareRequest {"height": 3121, "view": 0} -2023-12-15T15:04:15.746Z INFO sending Commit {"height": 3121, "view": 0} -2023-12-15T15:04:15.746Z INFO approving block {"height": 3121, "hash": "24cbcc186f5b7cb5650b0ca1726ee7d9015273d2de88c7ac9e3634d171d60f86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cdfd247239c2f9d49f8010af7f33dbd16d4499ddd71dcc9642064e0734fc0f6"} -2023-12-15T15:04:15.748Z INFO initializing dbft {"height": 3122, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:15.748Z debug frostfs-node/morph.go:229 new block {"index": 3121} -2023-12-15T15:04:15.810Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3121, "blockHeight": 3121, "took": "5.065907ms"} -2023-12-15T15:04:16.747Z INFO sending PrepareRequest {"height": 3122, "view": 0} -2023-12-15T15:04:16.747Z INFO sending Commit {"height": 3122, "view": 0} -2023-12-15T15:04:16.747Z INFO approving block {"height": 3122, "hash": "d97d861f8e1e51f74544f860f220a33112eb4513a6a6a34a37abb086d4ef6419", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24cbcc186f5b7cb5650b0ca1726ee7d9015273d2de88c7ac9e3634d171d60f86"} -2023-12-15T15:04:16.748Z INFO initializing dbft {"height": 3123, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:16.749Z debug frostfs-node/morph.go:229 new block {"index": 3122} -2023-12-15T15:04:16.810Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3122, "blockHeight": 3122, "took": "5.102736ms"} -2023-12-15T15:04:17.748Z INFO sending PrepareRequest {"height": 3123, "view": 0} -2023-12-15T15:04:17.749Z INFO sending Commit {"height": 3123, "view": 0} -2023-12-15T15:04:17.749Z INFO approving block {"height": 3123, "hash": "3c13e9396299b4a939e41365cf89927f93b04c03d05028e763425d7b29a5781d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d97d861f8e1e51f74544f860f220a33112eb4513a6a6a34a37abb086d4ef6419"} -2023-12-15T15:04:17.750Z INFO initializing dbft {"height": 3124, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:17.750Z debug frostfs-node/morph.go:229 new block {"index": 3123} -2023-12-15T15:04:17.809Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3123, "blockHeight": 3123, "took": "3.398693ms"} -2023-12-15T15:04:18.749Z INFO sending PrepareRequest {"height": 3124, "view": 0} -2023-12-15T15:04:18.750Z INFO sending Commit {"height": 3124, "view": 0} -2023-12-15T15:04:18.750Z INFO approving block {"height": 3124, "hash": "4fdcef1bb5a546df7ce1b1b278c8695ac48de9b4530849ce4393ccd20abbdc7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c13e9396299b4a939e41365cf89927f93b04c03d05028e763425d7b29a5781d"} -2023-12-15T15:04:18.752Z INFO initializing dbft {"height": 3125, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:18.752Z debug frostfs-node/morph.go:229 new block {"index": 3124} -2023-12-15T15:04:18.811Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3124, "blockHeight": 3124, "took": "4.340077ms"} -2023-12-15T15:04:19.751Z INFO sending PrepareRequest {"height": 3125, "view": 0} -2023-12-15T15:04:19.751Z INFO sending Commit {"height": 3125, "view": 0} -2023-12-15T15:04:19.751Z INFO approving block {"height": 3125, "hash": "3eee2ac3413c57fe94e6b9420bc20d80e867849113379d74b5ccb67977972c71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fdcef1bb5a546df7ce1b1b278c8695ac48de9b4530849ce4393ccd20abbdc7b"} -2023-12-15T15:04:19.752Z INFO initializing dbft {"height": 3126, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:19.753Z debug frostfs-node/morph.go:229 new block {"index": 3125} -2023-12-15T15:04:19.814Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3125, "blockHeight": 3125, "took": "7.059209ms"} -2023-12-15T15:04:20.752Z INFO sending PrepareRequest {"height": 3126, "view": 0} -2023-12-15T15:04:20.753Z INFO sending Commit {"height": 3126, "view": 0} -2023-12-15T15:04:20.753Z INFO approving block {"height": 3126, "hash": "4d8beccd1a57613a1d949902615606bfd56c124244c361d1962fd332b61e395f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3eee2ac3413c57fe94e6b9420bc20d80e867849113379d74b5ccb67977972c71"} -2023-12-15T15:04:20.755Z INFO initializing dbft {"height": 3127, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:20.755Z debug frostfs-node/morph.go:229 new block {"index": 3126} -2023-12-15T15:04:20.812Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3126, "blockHeight": 3126, "took": "4.643257ms"} -2023-12-15T15:04:21.754Z INFO sending PrepareRequest {"height": 3127, "view": 0} -2023-12-15T15:04:21.754Z INFO sending Commit {"height": 3127, "view": 0} -2023-12-15T15:04:21.754Z INFO approving block {"height": 3127, "hash": "0fc19137d99c54b7993b980ae8effeea8a15dbe84e5612d673d9d49f325ac24b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d8beccd1a57613a1d949902615606bfd56c124244c361d1962fd332b61e395f"} -2023-12-15T15:04:21.755Z INFO initializing dbft {"height": 3128, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:21.756Z debug frostfs-node/morph.go:229 new block {"index": 3127} -2023-12-15T15:04:21.811Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3127, "blockHeight": 3127, "took": "3.004038ms"} -2023-12-15T15:04:22.756Z INFO sending PrepareRequest {"height": 3128, "view": 0} -2023-12-15T15:04:22.756Z INFO sending Commit {"height": 3128, "view": 0} -2023-12-15T15:04:22.756Z INFO approving block {"height": 3128, "hash": "a99f384eac94f495cbfa292fc403689a18105990c465a2635f3865de9a4b64de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fc19137d99c54b7993b980ae8effeea8a15dbe84e5612d673d9d49f325ac24b"} -2023-12-15T15:04:22.757Z INFO initializing dbft {"height": 3129, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:22.758Z debug frostfs-node/morph.go:229 new block {"index": 3128} -2023-12-15T15:04:22.813Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3128, "blockHeight": 3128, "took": "4.030562ms"} -2023-12-15T15:04:23.757Z INFO sending PrepareRequest {"height": 3129, "view": 0} -2023-12-15T15:04:23.757Z INFO sending Commit {"height": 3129, "view": 0} -2023-12-15T15:04:23.757Z INFO approving block {"height": 3129, "hash": "c1f16bda2d8033ad05d712ed005cca718bf6cf210d7ee40704eba47996c5e393", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a99f384eac94f495cbfa292fc403689a18105990c465a2635f3865de9a4b64de"} -2023-12-15T15:04:23.758Z INFO initializing dbft {"height": 3130, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:23.759Z debug frostfs-node/morph.go:229 new block {"index": 3129} -2023-12-15T15:04:23.813Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3129, "blockHeight": 3129, "took": "3.684181ms"} -2023-12-15T15:04:24.759Z INFO sending PrepareRequest {"height": 3130, "view": 0} -2023-12-15T15:04:24.759Z INFO sending Commit {"height": 3130, "view": 0} -2023-12-15T15:04:24.760Z INFO approving block {"height": 3130, "hash": "6fb006c7079999dd645e24708abd7436f242ae4d02c2fb77285c17d39916f5e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1f16bda2d8033ad05d712ed005cca718bf6cf210d7ee40704eba47996c5e393"} -2023-12-15T15:04:24.761Z INFO initializing dbft {"height": 3131, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:24.762Z debug frostfs-node/morph.go:229 new block {"index": 3130} -2023-12-15T15:04:24.813Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3130, "blockHeight": 3130, "took": "3.469752ms"} -2023-12-15T15:04:25.760Z INFO sending PrepareRequest {"height": 3131, "view": 0} -2023-12-15T15:04:25.760Z INFO sending Commit {"height": 3131, "view": 0} -2023-12-15T15:04:25.761Z INFO approving block {"height": 3131, "hash": "4a431bc412eeef7c409d1ac8fa861b41522f5ed501e6829063b569e761601063", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fb006c7079999dd645e24708abd7436f242ae4d02c2fb77285c17d39916f5e4"} -2023-12-15T15:04:25.762Z INFO initializing dbft {"height": 3132, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:25.763Z debug frostfs-node/morph.go:229 new block {"index": 3131} -2023-12-15T15:04:25.815Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3131, "blockHeight": 3131, "took": "4.296568ms"} -2023-12-15T15:04:26.761Z INFO sending PrepareRequest {"height": 3132, "view": 0} -2023-12-15T15:04:26.762Z INFO sending Commit {"height": 3132, "view": 0} -2023-12-15T15:04:26.762Z INFO approving block {"height": 3132, "hash": "55c85310b910606c71407a4bdf519bf3668f88f398be8ebffa13f9a0d5a33bb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a431bc412eeef7c409d1ac8fa861b41522f5ed501e6829063b569e761601063"} -2023-12-15T15:04:26.763Z INFO initializing dbft {"height": 3133, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:26.763Z debug frostfs-node/morph.go:229 new block {"index": 3132} -2023-12-15T15:04:26.765Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T15:04:26.765Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 13, "iteration": 3, "error": "no data for 2 iteration in 13 epoch for consumers's trusts"} -2023-12-15T15:04:26.769Z INFO runtime log {"tx": "05202313cbe66ba2aaa34008b01c862ac3b84cf106533292d50fac3ed47a2a24", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:04:26.816Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3132, "blockHeight": 3132, "took": "4.853104ms"} -2023-12-15T15:04:27.763Z INFO sending PrepareRequest {"height": 3133, "view": 0} -2023-12-15T15:04:27.763Z INFO sending Commit {"height": 3133, "view": 0} -2023-12-15T15:04:27.763Z INFO approving block {"height": 3133, "hash": "12dd6450c4ed3d3e5b3eb6f5e40bc25cb241f8be177e8a0c1e696cc1e51cac70", "tx_count": 1, "merkle": "b522d5c55dca4a3ed7c019969529ff4391af01360f78997ce4946e02d94088e4", "prev": "55c85310b910606c71407a4bdf519bf3668f88f398be8ebffa13f9a0d5a33bb2"} -2023-12-15T15:04:27.764Z INFO runtime log {"tx": "e48840d9026e94e47c99780f3601af9143ff29959619c0d73e4aca5dc5d522b5", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:04:27.765Z INFO initializing dbft {"height": 3134, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:27.766Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 15} -2023-12-15T15:04:27.766Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 15} -2023-12-15T15:04:27.766Z debug tree/sync.go:298 syncing trees... -2023-12-15T15:04:27.766Z debug frostfs-node/morph.go:229 new block {"index": 3133} -2023-12-15T15:04:27.766Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T15:04:27.766Z debug controller/calls.go:95 starting to report local trust values {"epoch": 14} -2023-12-15T15:04:27.766Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 15} -2023-12-15T15:04:27.766Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 14} -2023-12-15T15:04:27.766Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 15} -2023-12-15T15:04:27.766Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 15} -2023-12-15T15:04:27.769Z debug controller/calls.go:146 reporting successfully finished {"epoch": 14} -2023-12-15T15:04:27.769Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 14} -2023-12-15T15:04:27.769Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T15:04:27.771Z INFO runtime log {"tx": "a5921a849b1fdfe0969a3873157b1a52c30e02e5a99f712842ca748b43d8e2de", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:04:27.773Z info client/notary.go:214 notary deposit invoke {"amount": 3621731619, "expire_at": 4294967295, "vub": 3136, "tx_hash": "0b5c592e5429491cf26b7cb19b6aec0b4b3b507acc0c6f27d4e7706585cf3a36"} -2023-12-15T15:04:27.778Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T15:04:27.778Z info audit/handlers.go:13 new round of audit {"epoch": 15} -2023-12-15T15:04:27.778Z info settlement/calls.go:26 new audit settlement event {"epoch": 15} -2023-12-15T15:04:27.778Z info settlement/handlers.go:14 process audit settlements {"epoch": 15} -2023-12-15T15:04:27.778Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 15} -2023-12-15T15:04:27.780Z info settlement/handlers.go:18 audit processing finished {"epoch": 15} -2023-12-15T15:04:27.782Z info audit/process.go:39 select containers for audit {"epoch": 15, "amount": 0} -2023-12-15T15:04:27.783Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 3136, "tx_hash": "cb248bd2a139196a05784d4f58e9a5019be5694712eba9eb108944429498680f"} -2023-12-15T15:04:27.818Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 3133, "blockHeight": 3133, "took": "5.492419ms"} -2023-12-15T15:04:28.764Z INFO sending PrepareRequest {"height": 3134, "view": 0} -2023-12-15T15:04:28.764Z INFO sending Commit {"height": 3134, "view": 0} -2023-12-15T15:04:28.764Z INFO approving block {"height": 3134, "hash": "7b63e3b46cdb355e99453ae79d6bc1e6ab5cc212f6f392012485cf100b36723d", "tx_count": 3, "merkle": "1641cbe7acb1faa83059f1308ead206fa0faede292c14fb4418adf4411ed757b", "prev": "12dd6450c4ed3d3e5b3eb6f5e40bc25cb241f8be177e8a0c1e696cc1e51cac70"} -2023-12-15T15:04:28.765Z INFO runtime log {"tx": "cef64b0eed9847a3840470277808c5e8a8baf3fa55098b8f2a74a5a2bf8e7b5c", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:04:28.766Z INFO initializing dbft {"height": 3135, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:28.767Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 14} -2023-12-15T15:04:28.768Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 14} -2023-12-15T15:04:28.768Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 14} -2023-12-15T15:04:28.768Z debug frostfs-node/morph.go:229 new block {"index": 3134} -2023-12-15T15:04:28.822Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 3134, "blockHeight": 3134, "took": "8.375066ms"} -2023-12-15T15:04:29.765Z INFO sending PrepareRequest {"height": 3135, "view": 0} -2023-12-15T15:04:29.765Z INFO sending Commit {"height": 3135, "view": 0} -2023-12-15T15:04:29.765Z INFO approving block {"height": 3135, "hash": "a56d7b3655a6c99e38c124aa3aa3b4ae3029258c6e95703b7f96f07a02917783", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b63e3b46cdb355e99453ae79d6bc1e6ab5cc212f6f392012485cf100b36723d"} -2023-12-15T15:04:29.766Z INFO initializing dbft {"height": 3136, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:29.767Z debug frostfs-node/morph.go:229 new block {"index": 3135} -2023-12-15T15:04:29.817Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3135, "blockHeight": 3135, "took": "3.204621ms"} -2023-12-15T15:04:30.766Z INFO sending PrepareRequest {"height": 3136, "view": 0} -2023-12-15T15:04:30.767Z INFO sending Commit {"height": 3136, "view": 0} -2023-12-15T15:04:30.767Z INFO approving block {"height": 3136, "hash": "322b0cc0e92e8812ad6aecc4b5ba0672c3638c9075a6e9e4c9cd9759586a48ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a56d7b3655a6c99e38c124aa3aa3b4ae3029258c6e95703b7f96f07a02917783"} -2023-12-15T15:04:30.768Z INFO initializing dbft {"height": 3137, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:30.769Z debug frostfs-node/morph.go:229 new block {"index": 3136} -2023-12-15T15:04:30.818Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3136, "blockHeight": 3136, "took": "3.605763ms"} -2023-12-15T15:04:31.768Z INFO sending PrepareRequest {"height": 3137, "view": 0} -2023-12-15T15:04:31.768Z INFO sending Commit {"height": 3137, "view": 0} -2023-12-15T15:04:31.768Z INFO approving block {"height": 3137, "hash": "71b0f7dd1af2188d193eaec6107fe959672615178eca968415989f5fef3ee273", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "322b0cc0e92e8812ad6aecc4b5ba0672c3638c9075a6e9e4c9cd9759586a48ba"} -2023-12-15T15:04:31.769Z INFO initializing dbft {"height": 3138, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:31.770Z debug frostfs-node/morph.go:229 new block {"index": 3137} -2023-12-15T15:04:31.818Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3137, "blockHeight": 3137, "took": "3.277177ms"} -2023-12-15T15:04:32.770Z INFO sending PrepareRequest {"height": 3138, "view": 0} -2023-12-15T15:04:32.771Z INFO sending Commit {"height": 3138, "view": 0} -2023-12-15T15:04:32.771Z INFO approving block {"height": 3138, "hash": "eb2f18bda30796a7d340b13aaf141365309a49e4ef0078e4f59e4685e4f8a79e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71b0f7dd1af2188d193eaec6107fe959672615178eca968415989f5fef3ee273"} -2023-12-15T15:04:32.772Z INFO initializing dbft {"height": 3139, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:32.772Z debug frostfs-node/morph.go:229 new block {"index": 3138} -2023-12-15T15:04:32.819Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3138, "blockHeight": 3138, "took": "3.915692ms"} -2023-12-15T15:04:33.772Z INFO sending PrepareRequest {"height": 3139, "view": 0} -2023-12-15T15:04:33.772Z INFO sending Commit {"height": 3139, "view": 0} -2023-12-15T15:04:33.773Z INFO approving block {"height": 3139, "hash": "55e0139609741f8fd0912339bd590ebd8a4d55faddc6e599b20773a6f58ae180", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb2f18bda30796a7d340b13aaf141365309a49e4ef0078e4f59e4685e4f8a79e"} -2023-12-15T15:04:33.774Z INFO initializing dbft {"height": 3140, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:33.774Z debug frostfs-node/morph.go:229 new block {"index": 3139} -2023-12-15T15:04:33.821Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3139, "blockHeight": 3139, "took": "4.482512ms"} -2023-12-15T15:04:34.773Z INFO sending PrepareRequest {"height": 3140, "view": 0} -2023-12-15T15:04:34.774Z INFO sending Commit {"height": 3140, "view": 0} -2023-12-15T15:04:34.774Z INFO approving block {"height": 3140, "hash": "71f3fbfcd91aa54ab3e09be304bb8d1e25cd8ef53d275d9b3c7fef197c7ba66a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55e0139609741f8fd0912339bd590ebd8a4d55faddc6e599b20773a6f58ae180"} -2023-12-15T15:04:34.774Z INFO initializing dbft {"height": 3141, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:34.775Z debug frostfs-node/morph.go:229 new block {"index": 3140} -2023-12-15T15:04:34.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3140, "blockHeight": 3140, "took": "3.069571ms"} -2023-12-15T15:04:35.775Z INFO sending PrepareRequest {"height": 3141, "view": 0} -2023-12-15T15:04:35.775Z INFO sending Commit {"height": 3141, "view": 0} -2023-12-15T15:04:35.775Z INFO approving block {"height": 3141, "hash": "1e222c8346c9f9c234b20712176d7085495497804186bc72d4518cbffa083f1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71f3fbfcd91aa54ab3e09be304bb8d1e25cd8ef53d275d9b3c7fef197c7ba66a"} -2023-12-15T15:04:35.776Z INFO initializing dbft {"height": 3142, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:35.777Z debug frostfs-node/morph.go:229 new block {"index": 3141} -2023-12-15T15:04:35.821Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3141, "blockHeight": 3141, "took": "3.572246ms"} -2023-12-15T15:04:36.776Z INFO sending PrepareRequest {"height": 3142, "view": 0} -2023-12-15T15:04:36.776Z INFO sending Commit {"height": 3142, "view": 0} -2023-12-15T15:04:36.777Z INFO approving block {"height": 3142, "hash": "c76fdfb6455f7495676a6ad047e33c90c59a883f126314e19a149316b91dfb04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e222c8346c9f9c234b20712176d7085495497804186bc72d4518cbffa083f1e"} -2023-12-15T15:04:36.778Z INFO initializing dbft {"height": 3143, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:36.778Z debug frostfs-node/morph.go:229 new block {"index": 3142} -2023-12-15T15:04:36.822Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3142, "blockHeight": 3142, "took": "3.604269ms"} -2023-12-15T15:04:37.778Z INFO sending PrepareRequest {"height": 3143, "view": 0} -2023-12-15T15:04:37.778Z INFO sending Commit {"height": 3143, "view": 0} -2023-12-15T15:04:37.779Z INFO approving block {"height": 3143, "hash": "54321a7461d15ce076740be8a54feea2a093443f27175a1038aa26519d65e16a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c76fdfb6455f7495676a6ad047e33c90c59a883f126314e19a149316b91dfb04"} -2023-12-15T15:04:37.780Z INFO initializing dbft {"height": 3144, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:37.781Z debug frostfs-node/morph.go:229 new block {"index": 3143} -2023-12-15T15:04:37.824Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3143, "blockHeight": 3143, "took": "4.697419ms"} -2023-12-15T15:04:38.780Z INFO sending PrepareRequest {"height": 3144, "view": 0} -2023-12-15T15:04:38.780Z INFO sending Commit {"height": 3144, "view": 0} -2023-12-15T15:04:38.780Z INFO approving block {"height": 3144, "hash": "bff26ae5a65b3d23728177f3991cc97ca41fe47f8a180c888d6c0b548970d06a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54321a7461d15ce076740be8a54feea2a093443f27175a1038aa26519d65e16a"} -2023-12-15T15:04:38.781Z INFO initializing dbft {"height": 3145, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:38.781Z debug frostfs-node/morph.go:229 new block {"index": 3144} -2023-12-15T15:04:38.824Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3144, "blockHeight": 3144, "took": "4.191894ms"} -2023-12-15T15:04:39.781Z INFO sending PrepareRequest {"height": 3145, "view": 0} -2023-12-15T15:04:39.781Z INFO sending Commit {"height": 3145, "view": 0} -2023-12-15T15:04:39.781Z INFO approving block {"height": 3145, "hash": "6ff70ad608fb90581bbefc8a2b42add05b844e3479ab4d437c7ba22deba7129c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bff26ae5a65b3d23728177f3991cc97ca41fe47f8a180c888d6c0b548970d06a"} -2023-12-15T15:04:39.782Z INFO initializing dbft {"height": 3146, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:39.782Z debug frostfs-node/morph.go:229 new block {"index": 3145} -2023-12-15T15:04:39.823Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3145, "blockHeight": 3145, "took": "3.170604ms"} -2023-12-15T15:04:40.783Z INFO sending PrepareRequest {"height": 3146, "view": 0} -2023-12-15T15:04:40.783Z INFO sending Commit {"height": 3146, "view": 0} -2023-12-15T15:04:40.783Z INFO approving block {"height": 3146, "hash": "ef96995430e8efab2f932d845111c180da64126e2a776333f1d14b3e1360dc84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ff70ad608fb90581bbefc8a2b42add05b844e3479ab4d437c7ba22deba7129c"} -2023-12-15T15:04:40.784Z INFO initializing dbft {"height": 3147, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:40.785Z debug frostfs-node/morph.go:229 new block {"index": 3146} -2023-12-15T15:04:40.825Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3146, "blockHeight": 3146, "took": "4.594805ms"} -2023-12-15T15:04:41.785Z INFO sending PrepareRequest {"height": 3147, "view": 0} -2023-12-15T15:04:41.785Z INFO sending Commit {"height": 3147, "view": 0} -2023-12-15T15:04:41.785Z INFO approving block {"height": 3147, "hash": "d5fa81a8fd72d10d668cd4b3ddec4934f748b9d1feb895495a0fb1c80c819a11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef96995430e8efab2f932d845111c180da64126e2a776333f1d14b3e1360dc84"} -2023-12-15T15:04:41.786Z INFO initializing dbft {"height": 3148, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:41.787Z debug frostfs-node/morph.go:229 new block {"index": 3147} -2023-12-15T15:04:41.827Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3147, "blockHeight": 3147, "took": "5.203669ms"} -2023-12-15T15:04:42.786Z INFO sending PrepareRequest {"height": 3148, "view": 0} -2023-12-15T15:04:42.786Z INFO sending Commit {"height": 3148, "view": 0} -2023-12-15T15:04:42.787Z INFO approving block {"height": 3148, "hash": "9631365f30adf6e199213dcd41c13ba87f8330a556852fb6b2f1217560c3394a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5fa81a8fd72d10d668cd4b3ddec4934f748b9d1feb895495a0fb1c80c819a11"} -2023-12-15T15:04:42.787Z INFO initializing dbft {"height": 3149, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:42.788Z debug frostfs-node/morph.go:229 new block {"index": 3148} -2023-12-15T15:04:42.827Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3148, "blockHeight": 3148, "took": "4.706359ms"} -2023-12-15T15:04:43.787Z INFO sending PrepareRequest {"height": 3149, "view": 0} -2023-12-15T15:04:43.787Z INFO sending Commit {"height": 3149, "view": 0} -2023-12-15T15:04:43.788Z INFO approving block {"height": 3149, "hash": "e3abdbd38bd5889d0d89dcd1d1cd6dfe12443f8fe253e6374ee071b69998fe72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9631365f30adf6e199213dcd41c13ba87f8330a556852fb6b2f1217560c3394a"} -2023-12-15T15:04:43.788Z INFO initializing dbft {"height": 3150, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:43.789Z debug frostfs-node/morph.go:229 new block {"index": 3149} -2023-12-15T15:04:43.826Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3149, "blockHeight": 3149, "took": "3.086036ms"} -2023-12-15T15:04:44.788Z INFO sending PrepareRequest {"height": 3150, "view": 0} -2023-12-15T15:04:44.788Z INFO sending Commit {"height": 3150, "view": 0} -2023-12-15T15:04:44.788Z INFO approving block {"height": 3150, "hash": "508ace1710bded3ecc6d506733da708170a4594f1f36c5ea1f11a0a927ddcc45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3abdbd38bd5889d0d89dcd1d1cd6dfe12443f8fe253e6374ee071b69998fe72"} -2023-12-15T15:04:44.789Z INFO initializing dbft {"height": 3151, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:44.790Z debug frostfs-node/morph.go:229 new block {"index": 3150} -2023-12-15T15:04:44.827Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3150, "blockHeight": 3150, "took": "3.112201ms"} -2023-12-15T15:04:45.790Z INFO sending PrepareRequest {"height": 3151, "view": 0} -2023-12-15T15:04:45.790Z INFO sending Commit {"height": 3151, "view": 0} -2023-12-15T15:04:45.790Z INFO approving block {"height": 3151, "hash": "2db58bb6ae00fa58b7805674d1b930f5360e2d8bd9293ddeaedeeea8575ad3dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "508ace1710bded3ecc6d506733da708170a4594f1f36c5ea1f11a0a927ddcc45"} -2023-12-15T15:04:45.791Z INFO initializing dbft {"height": 3152, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:45.791Z debug frostfs-node/morph.go:229 new block {"index": 3151} -2023-12-15T15:04:45.828Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3151, "blockHeight": 3151, "took": "3.166543ms"} -2023-12-15T15:04:46.791Z INFO sending PrepareRequest {"height": 3152, "view": 0} -2023-12-15T15:04:46.792Z INFO sending Commit {"height": 3152, "view": 0} -2023-12-15T15:04:46.792Z INFO approving block {"height": 3152, "hash": "3a8b4f7d2950c2fa8dc0465d08b2a0bdcad0671fdbe94b1686f4e7bf9ef477a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2db58bb6ae00fa58b7805674d1b930f5360e2d8bd9293ddeaedeeea8575ad3dd"} -2023-12-15T15:04:46.793Z INFO initializing dbft {"height": 3153, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:46.794Z debug frostfs-node/morph.go:229 new block {"index": 3152} -2023-12-15T15:04:46.830Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3152, "blockHeight": 3152, "took": "4.37505ms"} -2023-12-15T15:04:47.793Z INFO sending PrepareRequest {"height": 3153, "view": 0} -2023-12-15T15:04:47.793Z INFO sending Commit {"height": 3153, "view": 0} -2023-12-15T15:04:47.793Z INFO approving block {"height": 3153, "hash": "ed6835daf15192f9d2531d71dc6fbf4f6db0c0e32e7dbf671c67123348d95cf5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a8b4f7d2950c2fa8dc0465d08b2a0bdcad0671fdbe94b1686f4e7bf9ef477a7"} -2023-12-15T15:04:47.794Z INFO initializing dbft {"height": 3154, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:47.794Z debug frostfs-node/morph.go:229 new block {"index": 3153} -2023-12-15T15:04:47.829Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3153, "blockHeight": 3153, "took": "3.545893ms"} -2023-12-15T15:04:48.794Z INFO sending PrepareRequest {"height": 3154, "view": 0} -2023-12-15T15:04:48.794Z INFO sending Commit {"height": 3154, "view": 0} -2023-12-15T15:04:48.795Z INFO approving block {"height": 3154, "hash": "4d4c5d6cd6832c2431980071909849988e7d27351cf4b17ea5b6d8ac2886c7cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed6835daf15192f9d2531d71dc6fbf4f6db0c0e32e7dbf671c67123348d95cf5"} -2023-12-15T15:04:48.796Z INFO initializing dbft {"height": 3155, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:48.796Z debug frostfs-node/morph.go:229 new block {"index": 3154} -2023-12-15T15:04:48.831Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3154, "blockHeight": 3154, "took": "4.529183ms"} -2023-12-15T15:04:49.796Z INFO sending PrepareRequest {"height": 3155, "view": 0} -2023-12-15T15:04:49.796Z INFO sending Commit {"height": 3155, "view": 0} -2023-12-15T15:04:49.797Z INFO approving block {"height": 3155, "hash": "fc5b70b19b82155e958116acb425603d307941f1c313f64cacd7fd6648fc77b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d4c5d6cd6832c2431980071909849988e7d27351cf4b17ea5b6d8ac2886c7cd"} -2023-12-15T15:04:49.798Z INFO initializing dbft {"height": 3156, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:49.798Z debug frostfs-node/morph.go:229 new block {"index": 3155} -2023-12-15T15:04:49.833Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3155, "blockHeight": 3155, "took": "6.382786ms"} -2023-12-15T15:04:50.797Z INFO sending PrepareRequest {"height": 3156, "view": 0} -2023-12-15T15:04:50.797Z INFO sending Commit {"height": 3156, "view": 0} -2023-12-15T15:04:50.797Z INFO approving block {"height": 3156, "hash": "9e6ba3f21b9407afc41e4d0d161950d88cfcccae8c5a6f2210b6919d83cd61c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc5b70b19b82155e958116acb425603d307941f1c313f64cacd7fd6648fc77b7"} -2023-12-15T15:04:50.798Z INFO initializing dbft {"height": 3157, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:50.799Z debug frostfs-node/morph.go:229 new block {"index": 3156} -2023-12-15T15:04:50.830Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3156, "blockHeight": 3156, "took": "2.973754ms"} -2023-12-15T15:04:51.799Z INFO sending PrepareRequest {"height": 3157, "view": 0} -2023-12-15T15:04:51.799Z INFO sending Commit {"height": 3157, "view": 0} -2023-12-15T15:04:51.799Z INFO approving block {"height": 3157, "hash": "eb79b0d90192a1530b964a55c3617565dea01cc583afe51d0fe5c802a014dc19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e6ba3f21b9407afc41e4d0d161950d88cfcccae8c5a6f2210b6919d83cd61c1"} -2023-12-15T15:04:51.801Z INFO initializing dbft {"height": 3158, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:51.801Z debug frostfs-node/morph.go:229 new block {"index": 3157} -2023-12-15T15:04:51.833Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3157, "blockHeight": 3157, "took": "5.049292ms"} -2023-12-15T15:04:52.800Z INFO sending PrepareRequest {"height": 3158, "view": 0} -2023-12-15T15:04:52.800Z INFO sending Commit {"height": 3158, "view": 0} -2023-12-15T15:04:52.800Z INFO approving block {"height": 3158, "hash": "460cab5009b8ab2f4429ece0a78a5fd23710b9204ffea6f43eadd8258fa0e217", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb79b0d90192a1530b964a55c3617565dea01cc583afe51d0fe5c802a014dc19"} -2023-12-15T15:04:52.801Z INFO initializing dbft {"height": 3159, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:52.802Z debug frostfs-node/morph.go:229 new block {"index": 3158} -2023-12-15T15:04:52.832Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3158, "blockHeight": 3158, "took": "3.214091ms"} -2023-12-15T15:04:53.802Z INFO sending PrepareRequest {"height": 3159, "view": 0} -2023-12-15T15:04:53.802Z INFO sending Commit {"height": 3159, "view": 0} -2023-12-15T15:04:53.802Z INFO approving block {"height": 3159, "hash": "46a5511bb3f63f3932c54ddd819c86ad2447f06776d71c57ae4c4bd6afbe9ffd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "460cab5009b8ab2f4429ece0a78a5fd23710b9204ffea6f43eadd8258fa0e217"} -2023-12-15T15:04:53.803Z INFO initializing dbft {"height": 3160, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:53.804Z debug frostfs-node/morph.go:229 new block {"index": 3159} -2023-12-15T15:04:53.833Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3159, "blockHeight": 3159, "took": "2.925962ms"} -2023-12-15T15:04:54.803Z INFO sending PrepareRequest {"height": 3160, "view": 0} -2023-12-15T15:04:54.803Z INFO sending Commit {"height": 3160, "view": 0} -2023-12-15T15:04:54.803Z INFO approving block {"height": 3160, "hash": "f28d04c71f84d760ed1ff6a1ee34b62cded0dc1990b486b3a00a1ad8f7482f5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46a5511bb3f63f3932c54ddd819c86ad2447f06776d71c57ae4c4bd6afbe9ffd"} -2023-12-15T15:04:54.804Z INFO initializing dbft {"height": 3161, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:54.804Z debug frostfs-node/morph.go:229 new block {"index": 3160} -2023-12-15T15:04:54.834Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3160, "blockHeight": 3160, "took": "3.152849ms"} -2023-12-15T15:04:55.804Z INFO sending PrepareRequest {"height": 3161, "view": 0} -2023-12-15T15:04:55.804Z INFO sending Commit {"height": 3161, "view": 0} -2023-12-15T15:04:55.804Z INFO approving block {"height": 3161, "hash": "9febc5583058a0eb38147dd81f3c79f862f89783aac98dab6739f193a20d7c37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f28d04c71f84d760ed1ff6a1ee34b62cded0dc1990b486b3a00a1ad8f7482f5e"} -2023-12-15T15:04:55.805Z INFO initializing dbft {"height": 3162, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:55.806Z debug frostfs-node/morph.go:229 new block {"index": 3161} -2023-12-15T15:04:55.835Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3161, "blockHeight": 3161, "took": "3.226191ms"} -2023-12-15T15:04:56.805Z INFO sending PrepareRequest {"height": 3162, "view": 0} -2023-12-15T15:04:56.805Z INFO sending Commit {"height": 3162, "view": 0} -2023-12-15T15:04:56.805Z INFO approving block {"height": 3162, "hash": "18014e4a3ec33fa600026e4af87bd6a373075ca9ef6978bc89c32e31805c7794", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9febc5583058a0eb38147dd81f3c79f862f89783aac98dab6739f193a20d7c37"} -2023-12-15T15:04:56.806Z INFO initializing dbft {"height": 3163, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:56.806Z debug frostfs-node/morph.go:229 new block {"index": 3162} -2023-12-15T15:04:56.836Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3162, "blockHeight": 3162, "took": "3.546074ms"} -2023-12-15T15:04:57.806Z INFO sending PrepareRequest {"height": 3163, "view": 0} -2023-12-15T15:04:57.806Z INFO sending Commit {"height": 3163, "view": 0} -2023-12-15T15:04:57.806Z INFO approving block {"height": 3163, "hash": "0072bb75a7ffb57b4a578ffd84f1082c5fa334e66a9fd76c270dcb56279a54a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18014e4a3ec33fa600026e4af87bd6a373075ca9ef6978bc89c32e31805c7794"} -2023-12-15T15:04:57.807Z INFO initializing dbft {"height": 3164, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:57.808Z debug frostfs-node/morph.go:229 new block {"index": 3163} -2023-12-15T15:04:57.837Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3163, "blockHeight": 3163, "took": "4.296154ms"} -2023-12-15T15:04:58.807Z INFO sending PrepareRequest {"height": 3164, "view": 0} -2023-12-15T15:04:58.807Z INFO sending Commit {"height": 3164, "view": 0} -2023-12-15T15:04:58.808Z INFO approving block {"height": 3164, "hash": "9171085e40791f3516043838a1307eccc5a99378651e3e6dfc0015c70991b3c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0072bb75a7ffb57b4a578ffd84f1082c5fa334e66a9fd76c270dcb56279a54a2"} -2023-12-15T15:04:58.809Z INFO initializing dbft {"height": 3165, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:58.810Z debug frostfs-node/morph.go:229 new block {"index": 3164} -2023-12-15T15:04:58.838Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3164, "blockHeight": 3164, "took": "3.41563ms"} -2023-12-15T15:04:59.809Z INFO sending PrepareRequest {"height": 3165, "view": 0} -2023-12-15T15:04:59.809Z INFO sending Commit {"height": 3165, "view": 0} -2023-12-15T15:04:59.809Z INFO approving block {"height": 3165, "hash": "d0329150af93a5e7936592493b8f116d03f43d62d2f72b3feeac6187a378cabd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9171085e40791f3516043838a1307eccc5a99378651e3e6dfc0015c70991b3c4"} -2023-12-15T15:04:59.810Z INFO initializing dbft {"height": 3166, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:04:59.810Z debug frostfs-node/morph.go:229 new block {"index": 3165} -2023-12-15T15:04:59.838Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3165, "blockHeight": 3165, "took": "2.867804ms"} -2023-12-15T15:05:00.810Z INFO sending PrepareRequest {"height": 3166, "view": 0} -2023-12-15T15:05:00.811Z INFO sending Commit {"height": 3166, "view": 0} -2023-12-15T15:05:00.811Z INFO approving block {"height": 3166, "hash": "683abc2f472a41731d7522900d4d3db7f156f7013ae24c6adcdc8b812af287bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0329150af93a5e7936592493b8f116d03f43d62d2f72b3feeac6187a378cabd"} -2023-12-15T15:05:00.812Z INFO initializing dbft {"height": 3167, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:00.812Z debug frostfs-node/morph.go:229 new block {"index": 3166} -2023-12-15T15:05:00.840Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3166, "blockHeight": 3166, "took": "4.60102ms"} -2023-12-15T15:05:01.811Z INFO sending PrepareRequest {"height": 3167, "view": 0} -2023-12-15T15:05:01.812Z INFO sending Commit {"height": 3167, "view": 0} -2023-12-15T15:05:01.812Z INFO approving block {"height": 3167, "hash": "c4539a20ad6ce525172fe7518fa82745c1b0b5c94e75ce8c11538ee30036aa2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "683abc2f472a41731d7522900d4d3db7f156f7013ae24c6adcdc8b812af287bd"} -2023-12-15T15:05:01.812Z INFO initializing dbft {"height": 3168, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:01.813Z debug frostfs-node/morph.go:229 new block {"index": 3167} -2023-12-15T15:05:01.815Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:05:01.818Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:05:01.818Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:05:01.841Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3167, "blockHeight": 3167, "took": "4.942401ms"} -2023-12-15T15:05:02.813Z INFO sending PrepareRequest {"height": 3168, "view": 0} -2023-12-15T15:05:02.813Z INFO sending Commit {"height": 3168, "view": 0} -2023-12-15T15:05:02.813Z INFO approving block {"height": 3168, "hash": "8e57158fdec7a23578f565b39b778fb45a5137ce47a785421209774e3fdd7eb1", "tx_count": 2, "merkle": "7cd9e634e7beebbb92e2d38b2ed4265a0a080297681712f556b2a41ef6ae8bd6", "prev": "c4539a20ad6ce525172fe7518fa82745c1b0b5c94e75ce8c11538ee30036aa2f"} -2023-12-15T15:05:02.814Z INFO runtime log {"tx": "5311991e30f3d07274fd6ab5c3e6ecd479d169789aa19b99f586854e32902603", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:05:02.815Z INFO runtime log {"tx": "5311991e30f3d07274fd6ab5c3e6ecd479d169789aa19b99f586854e32902603", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:05:02.816Z INFO initializing dbft {"height": 3169, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:02.817Z debug frostfs-node/morph.go:229 new block {"index": 3168} -2023-12-15T15:05:02.844Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3168, "blockHeight": 3168, "took": "6.997232ms"} -2023-12-15T15:05:03.814Z INFO sending PrepareRequest {"height": 3169, "view": 0} -2023-12-15T15:05:03.814Z INFO sending Commit {"height": 3169, "view": 0} -2023-12-15T15:05:03.815Z INFO approving block {"height": 3169, "hash": "b292a02b78ada81da162f3e49a1df8f32a4e7861b9e4fcff9bd350d2355e7ce0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e57158fdec7a23578f565b39b778fb45a5137ce47a785421209774e3fdd7eb1"} -2023-12-15T15:05:03.816Z INFO initializing dbft {"height": 3170, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:03.817Z debug frostfs-node/morph.go:229 new block {"index": 3169} -2023-12-15T15:05:03.840Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3169, "blockHeight": 3169, "took": "3.04896ms"} -2023-12-15T15:05:04.816Z INFO sending PrepareRequest {"height": 3170, "view": 0} -2023-12-15T15:05:04.816Z INFO sending Commit {"height": 3170, "view": 0} -2023-12-15T15:05:04.816Z INFO approving block {"height": 3170, "hash": "e099e8265e81076c3fd25fdcddc6a2b7954ae54eaa1f0b48692614c2f5a6343d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b292a02b78ada81da162f3e49a1df8f32a4e7861b9e4fcff9bd350d2355e7ce0"} -2023-12-15T15:05:04.818Z INFO initializing dbft {"height": 3171, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:04.818Z debug frostfs-node/morph.go:229 new block {"index": 3170} -2023-12-15T15:05:04.843Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3170, "blockHeight": 3170, "took": "4.844956ms"} -2023-12-15T15:05:05.817Z INFO sending PrepareRequest {"height": 3171, "view": 0} -2023-12-15T15:05:05.817Z INFO sending Commit {"height": 3171, "view": 0} -2023-12-15T15:05:05.817Z INFO approving block {"height": 3171, "hash": "1388dec5914f30aa035c5973f3c4728ec4e102f5b6568c5830609d98253d24fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e099e8265e81076c3fd25fdcddc6a2b7954ae54eaa1f0b48692614c2f5a6343d"} -2023-12-15T15:05:05.818Z INFO initializing dbft {"height": 3172, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:05.818Z debug frostfs-node/morph.go:229 new block {"index": 3171} -2023-12-15T15:05:05.844Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3171, "blockHeight": 3171, "took": "4.869983ms"} -2023-12-15T15:05:06.818Z INFO sending PrepareRequest {"height": 3172, "view": 0} -2023-12-15T15:05:06.819Z INFO sending Commit {"height": 3172, "view": 0} -2023-12-15T15:05:06.819Z INFO approving block {"height": 3172, "hash": "db52faf22083e4b24af274ce9a05de44017d395379146b85d9bebf7ee5391b9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1388dec5914f30aa035c5973f3c4728ec4e102f5b6568c5830609d98253d24fe"} -2023-12-15T15:05:06.820Z INFO initializing dbft {"height": 3173, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:06.820Z debug frostfs-node/morph.go:229 new block {"index": 3172} -2023-12-15T15:05:06.843Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3172, "blockHeight": 3172, "took": "3.788906ms"} -2023-12-15T15:05:07.820Z INFO sending PrepareRequest {"height": 3173, "view": 0} -2023-12-15T15:05:07.820Z INFO sending Commit {"height": 3173, "view": 0} -2023-12-15T15:05:07.820Z INFO approving block {"height": 3173, "hash": "903f6e930c3ab811cf1e666da343e168a3b51c8f5e63928ddb331c937f186cf7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db52faf22083e4b24af274ce9a05de44017d395379146b85d9bebf7ee5391b9b"} -2023-12-15T15:05:07.822Z INFO initializing dbft {"height": 3174, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:07.822Z debug frostfs-node/morph.go:229 new block {"index": 3173} -2023-12-15T15:05:07.843Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3173, "blockHeight": 3173, "took": "3.319808ms"} -2023-12-15T15:05:08.822Z INFO sending PrepareRequest {"height": 3174, "view": 0} -2023-12-15T15:05:08.822Z INFO sending Commit {"height": 3174, "view": 0} -2023-12-15T15:05:08.822Z INFO approving block {"height": 3174, "hash": "3a653c7d5a765a2975df397d31d57b09afe312320861afe6799eb3a95cafea32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "903f6e930c3ab811cf1e666da343e168a3b51c8f5e63928ddb331c937f186cf7"} -2023-12-15T15:05:08.823Z INFO initializing dbft {"height": 3175, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:08.824Z debug frostfs-node/morph.go:229 new block {"index": 3174} -2023-12-15T15:05:08.845Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3174, "blockHeight": 3174, "took": "4.821239ms"} -2023-12-15T15:05:09.823Z INFO sending PrepareRequest {"height": 3175, "view": 0} -2023-12-15T15:05:09.823Z INFO sending Commit {"height": 3175, "view": 0} -2023-12-15T15:05:09.824Z INFO approving block {"height": 3175, "hash": "d40715d2c81ce0f3c2394dc39d4d77dd56b0b3e8f0f52721679178ec41c9abed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a653c7d5a765a2975df397d31d57b09afe312320861afe6799eb3a95cafea32"} -2023-12-15T15:05:09.825Z INFO initializing dbft {"height": 3176, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:09.826Z debug frostfs-node/morph.go:229 new block {"index": 3175} -2023-12-15T15:05:09.844Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3175, "blockHeight": 3175, "took": "3.04643ms"} -2023-12-15T15:05:10.825Z INFO sending PrepareRequest {"height": 3176, "view": 0} -2023-12-15T15:05:10.825Z INFO sending Commit {"height": 3176, "view": 0} -2023-12-15T15:05:10.825Z INFO approving block {"height": 3176, "hash": "3985d006f15769575ec927693a1b9a12fa7cbe89b7bfb01845c3a6a9b47bcdba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d40715d2c81ce0f3c2394dc39d4d77dd56b0b3e8f0f52721679178ec41c9abed"} -2023-12-15T15:05:10.827Z INFO initializing dbft {"height": 3177, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:10.828Z debug frostfs-node/morph.go:229 new block {"index": 3176} -2023-12-15T15:05:10.846Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3176, "blockHeight": 3176, "took": "4.200674ms"} -2023-12-15T15:05:11.826Z INFO sending PrepareRequest {"height": 3177, "view": 0} -2023-12-15T15:05:11.826Z INFO sending Commit {"height": 3177, "view": 0} -2023-12-15T15:05:11.827Z INFO approving block {"height": 3177, "hash": "ddcc472a4d091389d73e566454538c448a40ddf2040b6dcab41c0a0cc6e34396", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3985d006f15769575ec927693a1b9a12fa7cbe89b7bfb01845c3a6a9b47bcdba"} -2023-12-15T15:05:11.828Z INFO initializing dbft {"height": 3178, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:11.828Z debug frostfs-node/morph.go:229 new block {"index": 3177} -2023-12-15T15:05:11.847Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3177, "blockHeight": 3177, "took": "4.464608ms"} -2023-12-15T15:05:12.828Z INFO sending PrepareRequest {"height": 3178, "view": 0} -2023-12-15T15:05:12.828Z INFO sending Commit {"height": 3178, "view": 0} -2023-12-15T15:05:12.829Z INFO approving block {"height": 3178, "hash": "111ba48fd520a913a40f308d3b411c90c55e60e4e39891272fe2e0148bddbe6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddcc472a4d091389d73e566454538c448a40ddf2040b6dcab41c0a0cc6e34396"} -2023-12-15T15:05:12.830Z INFO initializing dbft {"height": 3179, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:12.831Z debug frostfs-node/morph.go:229 new block {"index": 3178} -2023-12-15T15:05:12.847Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3178, "blockHeight": 3178, "took": "4.307101ms"} -2023-12-15T15:05:13.831Z INFO sending PrepareRequest {"height": 3179, "view": 0} -2023-12-15T15:05:13.831Z INFO sending Commit {"height": 3179, "view": 0} -2023-12-15T15:05:13.831Z INFO approving block {"height": 3179, "hash": "15e055cc97d730177905b84581cd567092c42beab4118cd02f28cef56b7c2dcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "111ba48fd520a913a40f308d3b411c90c55e60e4e39891272fe2e0148bddbe6b"} -2023-12-15T15:05:13.833Z INFO initializing dbft {"height": 3180, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:13.833Z debug frostfs-node/morph.go:229 new block {"index": 3179} -2023-12-15T15:05:13.848Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3179, "blockHeight": 3179, "took": "4.900648ms"} -2023-12-15T15:05:14.832Z INFO sending PrepareRequest {"height": 3180, "view": 0} -2023-12-15T15:05:14.833Z INFO sending Commit {"height": 3180, "view": 0} -2023-12-15T15:05:14.833Z INFO approving block {"height": 3180, "hash": "db79114e5e8c89c3f52ffe004a8644ae56adcbce71f2a6db2563d8e190ff5f81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15e055cc97d730177905b84581cd567092c42beab4118cd02f28cef56b7c2dcf"} -2023-12-15T15:05:14.835Z INFO initializing dbft {"height": 3181, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:14.835Z debug frostfs-node/morph.go:229 new block {"index": 3180} -2023-12-15T15:05:14.849Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3180, "blockHeight": 3180, "took": "4.541763ms"} -2023-12-15T15:05:15.834Z INFO sending PrepareRequest {"height": 3181, "view": 0} -2023-12-15T15:05:15.834Z INFO sending Commit {"height": 3181, "view": 0} -2023-12-15T15:05:15.835Z INFO approving block {"height": 3181, "hash": "37040feca7e580267996391d87b6ffdb8adcf6bde37c70fa818a2ed1adee0b1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db79114e5e8c89c3f52ffe004a8644ae56adcbce71f2a6db2563d8e190ff5f81"} -2023-12-15T15:05:15.836Z INFO initializing dbft {"height": 3182, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:15.836Z debug frostfs-node/morph.go:229 new block {"index": 3181} -2023-12-15T15:05:15.849Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3181, "blockHeight": 3181, "took": "4.47121ms"} -2023-12-15T15:05:16.835Z INFO sending PrepareRequest {"height": 3182, "view": 0} -2023-12-15T15:05:16.836Z INFO sending Commit {"height": 3182, "view": 0} -2023-12-15T15:05:16.836Z INFO approving block {"height": 3182, "hash": "4af8b54b0d26a30b0842eec88f6bc1931df3fc2fba4af484607c256743625401", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37040feca7e580267996391d87b6ffdb8adcf6bde37c70fa818a2ed1adee0b1d"} -2023-12-15T15:05:16.837Z INFO initializing dbft {"height": 3183, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:16.837Z debug frostfs-node/morph.go:229 new block {"index": 3182} -2023-12-15T15:05:16.850Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3182, "blockHeight": 3182, "took": "4.146865ms"} -2023-12-15T15:05:17.837Z INFO sending PrepareRequest {"height": 3183, "view": 0} -2023-12-15T15:05:17.837Z INFO sending Commit {"height": 3183, "view": 0} -2023-12-15T15:05:17.837Z INFO approving block {"height": 3183, "hash": "b2dacc06410dad0e2d0457c18c231df0ffb3feec425d15eca56ac0e9f27ff6ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4af8b54b0d26a30b0842eec88f6bc1931df3fc2fba4af484607c256743625401"} -2023-12-15T15:05:17.838Z INFO initializing dbft {"height": 3184, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:17.839Z debug frostfs-node/morph.go:229 new block {"index": 3183} -2023-12-15T15:05:17.850Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3183, "blockHeight": 3183, "took": "3.804986ms"} -2023-12-15T15:05:18.838Z INFO sending PrepareRequest {"height": 3184, "view": 0} -2023-12-15T15:05:18.839Z INFO sending Commit {"height": 3184, "view": 0} -2023-12-15T15:05:18.839Z INFO approving block {"height": 3184, "hash": "59ee9588f90dbc6371f1eb5924a09e07395e78cdb21e1bb87ace1a907619b3e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2dacc06410dad0e2d0457c18c231df0ffb3feec425d15eca56ac0e9f27ff6ca"} -2023-12-15T15:05:18.840Z INFO initializing dbft {"height": 3185, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:18.840Z debug frostfs-node/morph.go:229 new block {"index": 3184} -2023-12-15T15:05:18.850Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3184, "blockHeight": 3184, "took": "3.032559ms"} -2023-12-15T15:05:19.840Z INFO sending PrepareRequest {"height": 3185, "view": 0} -2023-12-15T15:05:19.840Z INFO sending Commit {"height": 3185, "view": 0} -2023-12-15T15:05:19.840Z INFO approving block {"height": 3185, "hash": "2bb15335edc57b472e89c648d1b5fe7953675989c4ed345d3cb397e9ab69668f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59ee9588f90dbc6371f1eb5924a09e07395e78cdb21e1bb87ace1a907619b3e4"} -2023-12-15T15:05:19.841Z INFO initializing dbft {"height": 3186, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:19.842Z debug frostfs-node/morph.go:229 new block {"index": 3185} -2023-12-15T15:05:19.850Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3185, "blockHeight": 3185, "took": "3.172944ms"} -2023-12-15T15:05:20.842Z INFO sending PrepareRequest {"height": 3186, "view": 0} -2023-12-15T15:05:20.842Z INFO sending Commit {"height": 3186, "view": 0} -2023-12-15T15:05:20.842Z INFO approving block {"height": 3186, "hash": "5b7e6c0be33356023e5c68f45c424be03d99779b9f176c44a0b03c23bd7948b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2bb15335edc57b472e89c648d1b5fe7953675989c4ed345d3cb397e9ab69668f"} -2023-12-15T15:05:20.843Z INFO initializing dbft {"height": 3187, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:20.844Z debug frostfs-node/morph.go:229 new block {"index": 3186} -2023-12-15T15:05:20.852Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3186, "blockHeight": 3186, "took": "3.967652ms"} -2023-12-15T15:05:21.843Z INFO sending PrepareRequest {"height": 3187, "view": 0} -2023-12-15T15:05:21.844Z INFO sending Commit {"height": 3187, "view": 0} -2023-12-15T15:05:21.844Z INFO approving block {"height": 3187, "hash": "80ba1d7d55e5341a9f99d3810b6b21dfa137728ec24eb04627c795bbb4bcd813", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b7e6c0be33356023e5c68f45c424be03d99779b9f176c44a0b03c23bd7948b4"} -2023-12-15T15:05:21.845Z INFO initializing dbft {"height": 3188, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:21.846Z debug frostfs-node/morph.go:229 new block {"index": 3187} -2023-12-15T15:05:21.854Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3187, "blockHeight": 3187, "took": "5.329866ms"} -2023-12-15T15:05:22.845Z INFO sending PrepareRequest {"height": 3188, "view": 0} -2023-12-15T15:05:22.845Z INFO sending Commit {"height": 3188, "view": 0} -2023-12-15T15:05:22.845Z INFO approving block {"height": 3188, "hash": "264a61d51e8388fb54c368f7cab0f21ef81e1c2cc5c255e51fad6b69b6a36a22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80ba1d7d55e5341a9f99d3810b6b21dfa137728ec24eb04627c795bbb4bcd813"} -2023-12-15T15:05:22.846Z INFO initializing dbft {"height": 3189, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:22.846Z debug frostfs-node/morph.go:229 new block {"index": 3188} -2023-12-15T15:05:22.852Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3188, "blockHeight": 3188, "took": "3.105991ms"} -2023-12-15T15:05:23.846Z INFO sending PrepareRequest {"height": 3189, "view": 0} -2023-12-15T15:05:23.847Z INFO sending Commit {"height": 3189, "view": 0} -2023-12-15T15:05:23.847Z INFO approving block {"height": 3189, "hash": "3f7110732864f0f170748965abc3b17d1203968bc3defe2a44de44d0f4f014cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "264a61d51e8388fb54c368f7cab0f21ef81e1c2cc5c255e51fad6b69b6a36a22"} -2023-12-15T15:05:23.849Z INFO initializing dbft {"height": 3190, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:23.849Z debug frostfs-node/morph.go:229 new block {"index": 3189} -2023-12-15T15:05:23.855Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3189, "blockHeight": 3189, "took": "5.899234ms"} -2023-12-15T15:05:24.848Z INFO sending PrepareRequest {"height": 3190, "view": 0} -2023-12-15T15:05:24.848Z INFO sending Commit {"height": 3190, "view": 0} -2023-12-15T15:05:24.848Z INFO approving block {"height": 3190, "hash": "af6252cd9c78368514987ad63f0fd07e7e2d055fc8f3a034576318770ae7bc54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f7110732864f0f170748965abc3b17d1203968bc3defe2a44de44d0f4f014cd"} -2023-12-15T15:05:24.849Z INFO initializing dbft {"height": 3191, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:24.850Z debug frostfs-node/morph.go:229 new block {"index": 3190} -2023-12-15T15:05:24.853Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3190, "blockHeight": 3190, "took": "3.608075ms"} -2023-12-15T15:05:25.849Z INFO sending PrepareRequest {"height": 3191, "view": 0} -2023-12-15T15:05:25.849Z INFO sending Commit {"height": 3191, "view": 0} -2023-12-15T15:05:25.850Z INFO approving block {"height": 3191, "hash": "582bcfef7d6b2ec37bd3dccb76384479eb0d06119080e77231f54eaf4090d4b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af6252cd9c78368514987ad63f0fd07e7e2d055fc8f3a034576318770ae7bc54"} -2023-12-15T15:05:25.850Z INFO initializing dbft {"height": 3192, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:25.851Z debug frostfs-node/morph.go:229 new block {"index": 3191} -2023-12-15T15:05:26.851Z INFO sending PrepareRequest {"height": 3192, "view": 0} -2023-12-15T15:05:26.851Z INFO sending Commit {"height": 3192, "view": 0} -2023-12-15T15:05:26.852Z INFO approving block {"height": 3192, "hash": "2bdb26a636d8d3f3d8917f65875318d1b357f318657a83932ececf0701b397c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "582bcfef7d6b2ec37bd3dccb76384479eb0d06119080e77231f54eaf4090d4b3"} -2023-12-15T15:05:26.854Z INFO initializing dbft {"height": 3193, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:26.854Z debug frostfs-node/morph.go:229 new block {"index": 3192} -2023-12-15T15:05:26.856Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3191, "blockHeight": 3191, "took": "5.959552ms"} -2023-12-15T15:05:27.853Z INFO sending PrepareRequest {"height": 3193, "view": 0} -2023-12-15T15:05:27.853Z INFO sending Commit {"height": 3193, "view": 0} -2023-12-15T15:05:27.854Z INFO approving block {"height": 3193, "hash": "42f8cb137bfc307ed89240601b9281f11650e4f38f404f3aec2be2eff3dbbcb8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2bdb26a636d8d3f3d8917f65875318d1b357f318657a83932ececf0701b397c7"} -2023-12-15T15:05:27.854Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3192, "blockHeight": 3192, "took": "3.606399ms"} -2023-12-15T15:05:27.855Z INFO initializing dbft {"height": 3194, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:27.855Z debug frostfs-node/morph.go:229 new block {"index": 3193} -2023-12-15T15:05:27.859Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 14 epoch for daughters"} -2023-12-15T15:05:27.860Z INFO runtime log {"tx": "004091b9216f895090880e28626410fea5cdb161edc9cf1110c6fdd2999ad2d5", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:05:28.854Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3193, "blockHeight": 3193, "took": "3.633851ms"} -2023-12-15T15:05:28.854Z INFO sending PrepareRequest {"height": 3194, "view": 0} -2023-12-15T15:05:28.855Z INFO sending Commit {"height": 3194, "view": 0} -2023-12-15T15:05:28.855Z INFO approving block {"height": 3194, "hash": "2c7dae7631f5b2c9bb4dc189168f64a0126ac956059e81ff84531a79de13f71c", "tx_count": 1, "merkle": "9a8ec3b55dd3b6002667015491c8519b5f2f224adc20b0a1fe252b645346eac5", "prev": "42f8cb137bfc307ed89240601b9281f11650e4f38f404f3aec2be2eff3dbbcb8"} -2023-12-15T15:05:28.855Z INFO runtime log {"tx": "c5ea4653642b25fea1b020dc4a222f5f9b51c8915401672600b6d35db5c38e9a", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:05:28.856Z INFO initializing dbft {"height": 3195, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:28.857Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 14} -2023-12-15T15:05:28.857Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 14} -2023-12-15T15:05:28.857Z debug frostfs-node/morph.go:229 new block {"index": 3194} -2023-12-15T15:05:29.856Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 3194, "blockHeight": 3194, "took": "4.12435ms"} -2023-12-15T15:05:29.856Z INFO sending PrepareRequest {"height": 3195, "view": 0} -2023-12-15T15:05:29.856Z INFO sending Commit {"height": 3195, "view": 0} -2023-12-15T15:05:29.856Z INFO approving block {"height": 3195, "hash": "840ea2168dad8ba1ed65dbfcc792a4eb0e5a9d99b584c7a8df29714bb4e00667", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c7dae7631f5b2c9bb4dc189168f64a0126ac956059e81ff84531a79de13f71c"} -2023-12-15T15:05:29.857Z INFO initializing dbft {"height": 3196, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:29.858Z debug frostfs-node/morph.go:229 new block {"index": 3195} -2023-12-15T15:05:30.856Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3195, "blockHeight": 3195, "took": "3.924392ms"} -2023-12-15T15:05:30.858Z INFO sending PrepareRequest {"height": 3196, "view": 0} -2023-12-15T15:05:30.858Z INFO sending Commit {"height": 3196, "view": 0} -2023-12-15T15:05:30.858Z INFO approving block {"height": 3196, "hash": "5aa4a5e2170868ef9539dda42c1ca066448d9f28d7bd6bafc7d23119bd06341b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "840ea2168dad8ba1ed65dbfcc792a4eb0e5a9d99b584c7a8df29714bb4e00667"} -2023-12-15T15:05:30.859Z INFO initializing dbft {"height": 3197, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:30.859Z debug frostfs-node/morph.go:229 new block {"index": 3196} -2023-12-15T15:05:31.857Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3196, "blockHeight": 3196, "took": "4.755046ms"} -2023-12-15T15:05:31.859Z INFO sending PrepareRequest {"height": 3197, "view": 0} -2023-12-15T15:05:31.859Z INFO sending Commit {"height": 3197, "view": 0} -2023-12-15T15:05:31.859Z INFO approving block {"height": 3197, "hash": "dc6868bb7954e9da625e0423abc9e8a279f26028bdabb1d5c917602a68203199", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aa4a5e2170868ef9539dda42c1ca066448d9f28d7bd6bafc7d23119bd06341b"} -2023-12-15T15:05:31.860Z INFO initializing dbft {"height": 3198, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:31.861Z debug frostfs-node/morph.go:229 new block {"index": 3197} -2023-12-15T15:05:32.858Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3197, "blockHeight": 3197, "took": "4.727678ms"} -2023-12-15T15:05:32.861Z INFO sending PrepareRequest {"height": 3198, "view": 0} -2023-12-15T15:05:32.861Z INFO sending Commit {"height": 3198, "view": 0} -2023-12-15T15:05:32.861Z INFO approving block {"height": 3198, "hash": "035bda39f91ab14ef2ea1771d88acdb05702b81a77c61c5895911db93350d6c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc6868bb7954e9da625e0423abc9e8a279f26028bdabb1d5c917602a68203199"} -2023-12-15T15:05:32.862Z INFO initializing dbft {"height": 3199, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:32.863Z debug frostfs-node/morph.go:229 new block {"index": 3198} -2023-12-15T15:05:33.858Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3198, "blockHeight": 3198, "took": "4.009291ms"} -2023-12-15T15:05:33.862Z INFO sending PrepareRequest {"height": 3199, "view": 0} -2023-12-15T15:05:33.862Z INFO sending Commit {"height": 3199, "view": 0} -2023-12-15T15:05:33.863Z INFO approving block {"height": 3199, "hash": "bf64ca2b1bbdb69726bdadea435e83db077ad4f1942a4baf88fd2d5a7400b2e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "035bda39f91ab14ef2ea1771d88acdb05702b81a77c61c5895911db93350d6c2"} -2023-12-15T15:05:33.864Z INFO initializing dbft {"height": 3200, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:33.865Z debug frostfs-node/morph.go:229 new block {"index": 3199} -2023-12-15T15:05:34.858Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3199, "blockHeight": 3199, "took": "4.431649ms"} -2023-12-15T15:05:34.864Z INFO sending PrepareRequest {"height": 3200, "view": 0} -2023-12-15T15:05:34.864Z INFO sending Commit {"height": 3200, "view": 0} -2023-12-15T15:05:34.864Z INFO approving block {"height": 3200, "hash": "06afc23c603a4f6c7865f703e96fb79b89589c36cf726ab947ae00741d206648", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf64ca2b1bbdb69726bdadea435e83db077ad4f1942a4baf88fd2d5a7400b2e9"} -2023-12-15T15:05:34.865Z INFO initializing dbft {"height": 3201, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:34.865Z debug frostfs-node/morph.go:229 new block {"index": 3200} -2023-12-15T15:05:35.858Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3200, "blockHeight": 3200, "took": "3.240624ms"} -2023-12-15T15:05:35.865Z INFO sending PrepareRequest {"height": 3201, "view": 0} -2023-12-15T15:05:35.865Z INFO sending Commit {"height": 3201, "view": 0} -2023-12-15T15:05:35.865Z INFO approving block {"height": 3201, "hash": "7adafbeb367ceb3f9323081f29aeda6f901993c0ba5e4567df0364414c7a8186", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06afc23c603a4f6c7865f703e96fb79b89589c36cf726ab947ae00741d206648"} -2023-12-15T15:05:35.866Z INFO initializing dbft {"height": 3202, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:35.866Z debug frostfs-node/morph.go:229 new block {"index": 3201} -2023-12-15T15:05:36.860Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3201, "blockHeight": 3201, "took": "4.649596ms"} -2023-12-15T15:05:36.867Z INFO sending PrepareRequest {"height": 3202, "view": 0} -2023-12-15T15:05:36.867Z INFO sending Commit {"height": 3202, "view": 0} -2023-12-15T15:05:36.867Z INFO approving block {"height": 3202, "hash": "b9fa3971e538490bf93c89631f2568b61689739f346c94289844e0658bada9db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7adafbeb367ceb3f9323081f29aeda6f901993c0ba5e4567df0364414c7a8186"} -2023-12-15T15:05:36.868Z INFO initializing dbft {"height": 3203, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:36.868Z debug frostfs-node/morph.go:229 new block {"index": 3202} -2023-12-15T15:05:37.859Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3202, "blockHeight": 3202, "took": "3.145222ms"} -2023-12-15T15:05:37.868Z INFO sending PrepareRequest {"height": 3203, "view": 0} -2023-12-15T15:05:37.869Z INFO sending Commit {"height": 3203, "view": 0} -2023-12-15T15:05:37.869Z INFO approving block {"height": 3203, "hash": "f336763a513e86d82141f6ca19866f9f0355aedf1fe5e562eae83a7ad5131566", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9fa3971e538490bf93c89631f2568b61689739f346c94289844e0658bada9db"} -2023-12-15T15:05:37.870Z INFO initializing dbft {"height": 3204, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:37.870Z debug frostfs-node/morph.go:229 new block {"index": 3203} -2023-12-15T15:05:38.861Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3203, "blockHeight": 3203, "took": "4.704707ms"} -2023-12-15T15:05:38.870Z INFO sending PrepareRequest {"height": 3204, "view": 0} -2023-12-15T15:05:38.870Z INFO sending Commit {"height": 3204, "view": 0} -2023-12-15T15:05:38.870Z INFO approving block {"height": 3204, "hash": "fc51a547f0bbc8545314e509090a83f587af36cf3dea9811b892c86083709cd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f336763a513e86d82141f6ca19866f9f0355aedf1fe5e562eae83a7ad5131566"} -2023-12-15T15:05:38.871Z INFO initializing dbft {"height": 3205, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:38.871Z debug frostfs-node/morph.go:229 new block {"index": 3204} -2023-12-15T15:05:39.861Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3204, "blockHeight": 3204, "took": "4.372107ms"} -2023-12-15T15:05:39.871Z INFO sending PrepareRequest {"height": 3205, "view": 0} -2023-12-15T15:05:39.872Z INFO sending Commit {"height": 3205, "view": 0} -2023-12-15T15:05:39.872Z INFO approving block {"height": 3205, "hash": "302260a3dd3695a3e1a5b10058f1115e2fa39c72fed06ba20127c25405cd27e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc51a547f0bbc8545314e509090a83f587af36cf3dea9811b892c86083709cd4"} -2023-12-15T15:05:39.873Z INFO initializing dbft {"height": 3206, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:39.874Z debug frostfs-node/morph.go:229 new block {"index": 3205} -2023-12-15T15:05:40.861Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3205, "blockHeight": 3205, "took": "3.892984ms"} -2023-12-15T15:05:40.873Z INFO sending PrepareRequest {"height": 3206, "view": 0} -2023-12-15T15:05:40.873Z INFO sending Commit {"height": 3206, "view": 0} -2023-12-15T15:05:40.873Z INFO approving block {"height": 3206, "hash": "09fe9631298cc1a33375e09dcdafe640924bc3bb52eeb0991046ce20527a466d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "302260a3dd3695a3e1a5b10058f1115e2fa39c72fed06ba20127c25405cd27e7"} -2023-12-15T15:05:40.874Z INFO initializing dbft {"height": 3207, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:40.874Z debug frostfs-node/morph.go:229 new block {"index": 3206} -2023-12-15T15:05:41.863Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3206, "blockHeight": 3206, "took": "4.488272ms"} -2023-12-15T15:05:41.874Z INFO sending PrepareRequest {"height": 3207, "view": 0} -2023-12-15T15:05:41.874Z INFO sending Commit {"height": 3207, "view": 0} -2023-12-15T15:05:41.875Z INFO approving block {"height": 3207, "hash": "c3d66f9e02e209d79ddef9f778e56094abc8f2a8d7e91d34aa3b7458d2998805", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09fe9631298cc1a33375e09dcdafe640924bc3bb52eeb0991046ce20527a466d"} -2023-12-15T15:05:41.876Z INFO initializing dbft {"height": 3208, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:41.877Z debug frostfs-node/morph.go:229 new block {"index": 3207} -2023-12-15T15:05:42.863Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3207, "blockHeight": 3207, "took": "4.755526ms"} -2023-12-15T15:05:42.876Z INFO sending PrepareRequest {"height": 3208, "view": 0} -2023-12-15T15:05:42.876Z INFO sending Commit {"height": 3208, "view": 0} -2023-12-15T15:05:42.876Z INFO approving block {"height": 3208, "hash": "d4bf0f00bd7555144ad396db5fcbeb801777144f8e9f85029b09e394c7443d0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3d66f9e02e209d79ddef9f778e56094abc8f2a8d7e91d34aa3b7458d2998805"} -2023-12-15T15:05:42.877Z INFO initializing dbft {"height": 3209, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:42.878Z debug frostfs-node/morph.go:229 new block {"index": 3208} -2023-12-15T15:05:43.864Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3208, "blockHeight": 3208, "took": "4.740427ms"} -2023-12-15T15:05:43.877Z INFO sending PrepareRequest {"height": 3209, "view": 0} -2023-12-15T15:05:43.877Z INFO sending Commit {"height": 3209, "view": 0} -2023-12-15T15:05:43.878Z INFO approving block {"height": 3209, "hash": "23f0edb6eb6a53b170e88271182cae6b1fe9b40185f497cbb0dcfd58a3d06ee2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4bf0f00bd7555144ad396db5fcbeb801777144f8e9f85029b09e394c7443d0d"} -2023-12-15T15:05:43.878Z INFO initializing dbft {"height": 3210, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:43.879Z debug frostfs-node/morph.go:229 new block {"index": 3209} -2023-12-15T15:05:44.865Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3209, "blockHeight": 3209, "took": "4.876313ms"} -2023-12-15T15:05:44.878Z INFO sending PrepareRequest {"height": 3210, "view": 0} -2023-12-15T15:05:44.879Z INFO sending Commit {"height": 3210, "view": 0} -2023-12-15T15:05:44.879Z INFO approving block {"height": 3210, "hash": "877ca5635ba70c17fbf6621071bdaafa8a27000877a45dd3ff088ed3ab78dc79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23f0edb6eb6a53b170e88271182cae6b1fe9b40185f497cbb0dcfd58a3d06ee2"} -2023-12-15T15:05:44.880Z INFO initializing dbft {"height": 3211, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:44.881Z debug frostfs-node/morph.go:229 new block {"index": 3210} -2023-12-15T15:05:45.865Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3210, "blockHeight": 3210, "took": "4.272014ms"} -2023-12-15T15:05:45.880Z INFO sending PrepareRequest {"height": 3211, "view": 0} -2023-12-15T15:05:45.880Z INFO sending Commit {"height": 3211, "view": 0} -2023-12-15T15:05:45.881Z INFO approving block {"height": 3211, "hash": "512bddef80eb2d0eddda09766c807ffff66e2bae73cc7a2cd950f92b0220524d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "877ca5635ba70c17fbf6621071bdaafa8a27000877a45dd3ff088ed3ab78dc79"} -2023-12-15T15:05:45.882Z INFO initializing dbft {"height": 3212, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:45.882Z debug frostfs-node/morph.go:229 new block {"index": 3211} -2023-12-15T15:05:46.868Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3211, "blockHeight": 3211, "took": "7.142552ms"} -2023-12-15T15:05:46.882Z INFO sending PrepareRequest {"height": 3212, "view": 0} -2023-12-15T15:05:46.882Z INFO sending Commit {"height": 3212, "view": 0} -2023-12-15T15:05:46.882Z INFO approving block {"height": 3212, "hash": "4ddc2919c72d76ee3c4308538acee827f9e593f5def57119fce67e587c01a6cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "512bddef80eb2d0eddda09766c807ffff66e2bae73cc7a2cd950f92b0220524d"} -2023-12-15T15:05:46.883Z INFO initializing dbft {"height": 3213, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:46.884Z debug frostfs-node/morph.go:229 new block {"index": 3212} -2023-12-15T15:05:47.865Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3212, "blockHeight": 3212, "took": "3.077188ms"} -2023-12-15T15:05:47.884Z INFO sending PrepareRequest {"height": 3213, "view": 0} -2023-12-15T15:05:47.884Z INFO sending Commit {"height": 3213, "view": 0} -2023-12-15T15:05:47.884Z INFO approving block {"height": 3213, "hash": "8892312e7fa706eec514ce61151e2a6844fd4b30247e4d5549013d01ee03e9eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ddc2919c72d76ee3c4308538acee827f9e593f5def57119fce67e587c01a6cb"} -2023-12-15T15:05:47.886Z INFO initializing dbft {"height": 3214, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:47.886Z debug frostfs-node/morph.go:229 new block {"index": 3213} -2023-12-15T15:05:48.867Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3213, "blockHeight": 3213, "took": "5.129359ms"} -2023-12-15T15:05:48.885Z INFO sending PrepareRequest {"height": 3214, "view": 0} -2023-12-15T15:05:48.886Z INFO sending Commit {"height": 3214, "view": 0} -2023-12-15T15:05:48.886Z INFO approving block {"height": 3214, "hash": "13fdf7e506217c1fc6d13d1c52a7256f2989ab1f2f6e18bbed31229d7a8bbab6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8892312e7fa706eec514ce61151e2a6844fd4b30247e4d5549013d01ee03e9eb"} -2023-12-15T15:05:48.887Z INFO initializing dbft {"height": 3215, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:48.888Z debug frostfs-node/morph.go:229 new block {"index": 3214} -2023-12-15T15:05:49.867Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3214, "blockHeight": 3214, "took": "4.202906ms"} -2023-12-15T15:05:49.887Z INFO sending PrepareRequest {"height": 3215, "view": 0} -2023-12-15T15:05:49.887Z INFO sending Commit {"height": 3215, "view": 0} -2023-12-15T15:05:49.888Z INFO approving block {"height": 3215, "hash": "a166f35b37a27f6c2c3ca0209cc8784a869f69fe6ee2e5ff3cf84c71cf0f9ba1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13fdf7e506217c1fc6d13d1c52a7256f2989ab1f2f6e18bbed31229d7a8bbab6"} -2023-12-15T15:05:49.889Z INFO initializing dbft {"height": 3216, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:49.890Z debug frostfs-node/morph.go:229 new block {"index": 3215} -2023-12-15T15:05:50.868Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3215, "blockHeight": 3215, "took": "4.66485ms"} -2023-12-15T15:05:50.889Z INFO sending PrepareRequest {"height": 3216, "view": 0} -2023-12-15T15:05:50.889Z INFO sending Commit {"height": 3216, "view": 0} -2023-12-15T15:05:50.889Z INFO approving block {"height": 3216, "hash": "483116275edbbba3d7229a5844d7f4504cea09817547f493c8199b537c76268e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a166f35b37a27f6c2c3ca0209cc8784a869f69fe6ee2e5ff3cf84c71cf0f9ba1"} -2023-12-15T15:05:50.891Z INFO initializing dbft {"height": 3217, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:50.892Z debug frostfs-node/morph.go:229 new block {"index": 3216} -2023-12-15T15:05:51.867Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3216, "blockHeight": 3216, "took": "2.931363ms"} -2023-12-15T15:05:51.891Z INFO sending PrepareRequest {"height": 3217, "view": 0} -2023-12-15T15:05:51.891Z INFO sending Commit {"height": 3217, "view": 0} -2023-12-15T15:05:51.892Z INFO approving block {"height": 3217, "hash": "f4cdaaed11ffb3491147512d5cf3f07b5fc922fefca3465c90a71b369da4516e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "483116275edbbba3d7229a5844d7f4504cea09817547f493c8199b537c76268e"} -2023-12-15T15:05:51.893Z INFO initializing dbft {"height": 3218, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:51.893Z debug frostfs-node/morph.go:229 new block {"index": 3217} -2023-12-15T15:05:51.896Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:05:51.899Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:05:51.899Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:05:52.869Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3217, "blockHeight": 3217, "took": "4.593195ms"} -2023-12-15T15:05:52.892Z INFO sending PrepareRequest {"height": 3218, "view": 0} -2023-12-15T15:05:52.893Z INFO sending Commit {"height": 3218, "view": 0} -2023-12-15T15:05:52.893Z INFO approving block {"height": 3218, "hash": "920ec4d1cda6eab759811deb61eb32b63f071e378127c5f9a5f4ddfcc60928c6", "tx_count": 2, "merkle": "99f5b1a434f92335287458c979217d9c0bcfddd3fe693555a19f939e79c563cc", "prev": "f4cdaaed11ffb3491147512d5cf3f07b5fc922fefca3465c90a71b369da4516e"} -2023-12-15T15:05:52.894Z INFO runtime log {"tx": "bf4133e76af6f3be0bd763b5f2071b918ee1399671c1de8fb1d05b3d2bd3bb37", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:05:52.894Z INFO runtime log {"tx": "bf4133e76af6f3be0bd763b5f2071b918ee1399671c1de8fb1d05b3d2bd3bb37", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:05:52.895Z INFO initializing dbft {"height": 3219, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:52.896Z debug frostfs-node/morph.go:229 new block {"index": 3218} -2023-12-15T15:05:53.872Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3218, "blockHeight": 3218, "took": "7.064473ms"} -2023-12-15T15:05:53.894Z INFO sending PrepareRequest {"height": 3219, "view": 0} -2023-12-15T15:05:53.894Z INFO sending Commit {"height": 3219, "view": 0} -2023-12-15T15:05:53.895Z INFO approving block {"height": 3219, "hash": "b0f531a51d258004b3c99c6f9c6c160967a604dc46244ed66d06a4427b43e9c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "920ec4d1cda6eab759811deb61eb32b63f071e378127c5f9a5f4ddfcc60928c6"} -2023-12-15T15:05:53.896Z INFO initializing dbft {"height": 3220, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:53.896Z debug frostfs-node/morph.go:229 new block {"index": 3219} -2023-12-15T15:05:54.869Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3219, "blockHeight": 3219, "took": "3.254184ms"} -2023-12-15T15:05:54.895Z INFO sending PrepareRequest {"height": 3220, "view": 0} -2023-12-15T15:05:54.896Z INFO sending Commit {"height": 3220, "view": 0} -2023-12-15T15:05:54.896Z INFO approving block {"height": 3220, "hash": "9098b6513c5c14628364b3aaeffd9cda68a6ac032d1707b215f558c889f7d049", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0f531a51d258004b3c99c6f9c6c160967a604dc46244ed66d06a4427b43e9c6"} -2023-12-15T15:05:54.897Z INFO initializing dbft {"height": 3221, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:54.898Z debug frostfs-node/morph.go:229 new block {"index": 3220} -2023-12-15T15:05:55.871Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3220, "blockHeight": 3220, "took": "4.79637ms"} -2023-12-15T15:05:55.896Z INFO sending PrepareRequest {"height": 3221, "view": 0} -2023-12-15T15:05:55.897Z INFO sending Commit {"height": 3221, "view": 0} -2023-12-15T15:05:55.897Z INFO approving block {"height": 3221, "hash": "16f11737f34c681f9525019b3e045fe0878026f966eceb9672c35229ee971a75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9098b6513c5c14628364b3aaeffd9cda68a6ac032d1707b215f558c889f7d049"} -2023-12-15T15:05:55.897Z INFO initializing dbft {"height": 3222, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:55.898Z debug frostfs-node/morph.go:229 new block {"index": 3221} -2023-12-15T15:05:56.872Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3221, "blockHeight": 3221, "took": "5.318875ms"} -2023-12-15T15:05:56.898Z INFO sending PrepareRequest {"height": 3222, "view": 0} -2023-12-15T15:05:56.898Z INFO sending Commit {"height": 3222, "view": 0} -2023-12-15T15:05:56.898Z INFO approving block {"height": 3222, "hash": "64141dd79fb4e2083a3edc428680a0a59485c860c51d408a582b8d0533240f28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16f11737f34c681f9525019b3e045fe0878026f966eceb9672c35229ee971a75"} -2023-12-15T15:05:56.899Z INFO initializing dbft {"height": 3223, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:56.900Z debug frostfs-node/morph.go:229 new block {"index": 3222} -2023-12-15T15:05:57.871Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3222, "blockHeight": 3222, "took": "3.081917ms"} -2023-12-15T15:05:57.899Z INFO sending PrepareRequest {"height": 3223, "view": 0} -2023-12-15T15:05:57.899Z INFO sending Commit {"height": 3223, "view": 0} -2023-12-15T15:05:57.900Z INFO approving block {"height": 3223, "hash": "a4d12601c1a363c8c41db4aafbcd9e623742c0ea7841994490e17a3ce24071ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64141dd79fb4e2083a3edc428680a0a59485c860c51d408a582b8d0533240f28"} -2023-12-15T15:05:57.900Z INFO initializing dbft {"height": 3224, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:57.901Z debug frostfs-node/morph.go:229 new block {"index": 3223} -2023-12-15T15:05:58.874Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3223, "blockHeight": 3223, "took": "5.049837ms"} -2023-12-15T15:05:58.900Z INFO sending PrepareRequest {"height": 3224, "view": 0} -2023-12-15T15:05:58.900Z INFO sending Commit {"height": 3224, "view": 0} -2023-12-15T15:05:58.901Z INFO approving block {"height": 3224, "hash": "696e03c2c599e9fb28b3124e893885776f6b98274127d283522dee0b2c2f8479", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4d12601c1a363c8c41db4aafbcd9e623742c0ea7841994490e17a3ce24071ec"} -2023-12-15T15:05:58.902Z INFO initializing dbft {"height": 3225, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:58.902Z debug frostfs-node/morph.go:229 new block {"index": 3224} -2023-12-15T15:05:59.874Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3224, "blockHeight": 3224, "took": "4.98991ms"} -2023-12-15T15:05:59.902Z INFO sending PrepareRequest {"height": 3225, "view": 0} -2023-12-15T15:05:59.902Z INFO sending Commit {"height": 3225, "view": 0} -2023-12-15T15:05:59.903Z INFO approving block {"height": 3225, "hash": "84af27fe248b729028b332905a540e0f8ebb51696ef584f6e623ea8c1dd2977d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "696e03c2c599e9fb28b3124e893885776f6b98274127d283522dee0b2c2f8479"} -2023-12-15T15:05:59.904Z INFO initializing dbft {"height": 3226, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:05:59.905Z debug frostfs-node/morph.go:229 new block {"index": 3225} -2023-12-15T15:06:00.873Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3225, "blockHeight": 3225, "took": "3.013498ms"} -2023-12-15T15:06:00.903Z INFO sending PrepareRequest {"height": 3226, "view": 0} -2023-12-15T15:06:00.904Z INFO sending Commit {"height": 3226, "view": 0} -2023-12-15T15:06:00.904Z INFO approving block {"height": 3226, "hash": "0de6e531efe07c7b7cbf821b6bc0fb4d70077c2348be1eaab0fd83a2f5d32500", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84af27fe248b729028b332905a540e0f8ebb51696ef584f6e623ea8c1dd2977d"} -2023-12-15T15:06:00.904Z INFO initializing dbft {"height": 3227, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:00.905Z debug frostfs-node/morph.go:229 new block {"index": 3226} -2023-12-15T15:06:01.873Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3226, "blockHeight": 3226, "took": "3.0756ms"} -2023-12-15T15:06:01.905Z INFO sending PrepareRequest {"height": 3227, "view": 0} -2023-12-15T15:06:01.905Z INFO sending Commit {"height": 3227, "view": 0} -2023-12-15T15:06:01.905Z INFO approving block {"height": 3227, "hash": "0537ca100732b6e366c0206dccc2cf69c102f222a707afe97c2f07897917f995", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0de6e531efe07c7b7cbf821b6bc0fb4d70077c2348be1eaab0fd83a2f5d32500"} -2023-12-15T15:06:01.906Z INFO initializing dbft {"height": 3228, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:01.906Z debug frostfs-node/morph.go:229 new block {"index": 3227} -2023-12-15T15:06:02.874Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3227, "blockHeight": 3227, "took": "2.986057ms"} -2023-12-15T15:06:02.906Z INFO sending PrepareRequest {"height": 3228, "view": 0} -2023-12-15T15:06:02.906Z INFO sending Commit {"height": 3228, "view": 0} -2023-12-15T15:06:02.907Z INFO approving block {"height": 3228, "hash": "ba1086a2c3947329f8e7aa6263905baf0f0d88e28bd6fbeb4d2ad618a42c4d11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0537ca100732b6e366c0206dccc2cf69c102f222a707afe97c2f07897917f995"} -2023-12-15T15:06:02.908Z INFO initializing dbft {"height": 3229, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:02.908Z debug frostfs-node/morph.go:229 new block {"index": 3228} -2023-12-15T15:06:03.875Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3228, "blockHeight": 3228, "took": "4.108926ms"} -2023-12-15T15:06:03.908Z INFO sending PrepareRequest {"height": 3229, "view": 0} -2023-12-15T15:06:03.908Z INFO sending Commit {"height": 3229, "view": 0} -2023-12-15T15:06:03.909Z INFO approving block {"height": 3229, "hash": "73037f7f5238de7f9b823b5d8fcf664e84b646f2487b2f169361fb7f30897be2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba1086a2c3947329f8e7aa6263905baf0f0d88e28bd6fbeb4d2ad618a42c4d11"} -2023-12-15T15:06:03.910Z INFO initializing dbft {"height": 3230, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:03.910Z debug frostfs-node/morph.go:229 new block {"index": 3229} -2023-12-15T15:06:04.876Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3229, "blockHeight": 3229, "took": "4.334706ms"} -2023-12-15T15:06:04.909Z INFO sending PrepareRequest {"height": 3230, "view": 0} -2023-12-15T15:06:04.910Z INFO sending Commit {"height": 3230, "view": 0} -2023-12-15T15:06:04.910Z INFO approving block {"height": 3230, "hash": "57e62fe7734305f6972ace2c02bcf42bada83301d8734c8843cb4d48b60649c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73037f7f5238de7f9b823b5d8fcf664e84b646f2487b2f169361fb7f30897be2"} -2023-12-15T15:06:04.911Z INFO initializing dbft {"height": 3231, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:04.912Z debug frostfs-node/morph.go:229 new block {"index": 3230} -2023-12-15T15:06:05.877Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3230, "blockHeight": 3230, "took": "4.82222ms"} -2023-12-15T15:06:05.911Z INFO sending PrepareRequest {"height": 3231, "view": 0} -2023-12-15T15:06:05.911Z INFO sending Commit {"height": 3231, "view": 0} -2023-12-15T15:06:05.911Z INFO approving block {"height": 3231, "hash": "8475716c2c365a0b466ba30d36bdf2b37ac04d81d0fd14f397aebe7db81e1e55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57e62fe7734305f6972ace2c02bcf42bada83301d8734c8843cb4d48b60649c0"} -2023-12-15T15:06:05.912Z INFO initializing dbft {"height": 3232, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:05.913Z debug frostfs-node/morph.go:229 new block {"index": 3231} -2023-12-15T15:06:06.877Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3231, "blockHeight": 3231, "took": "4.265395ms"} -2023-12-15T15:06:06.913Z INFO sending PrepareRequest {"height": 3232, "view": 0} -2023-12-15T15:06:06.913Z INFO sending Commit {"height": 3232, "view": 0} -2023-12-15T15:06:06.913Z INFO approving block {"height": 3232, "hash": "35437bff5cf61f4b601942e75bd770a2af0267f1bbb83bec6a73e24bc241d678", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8475716c2c365a0b466ba30d36bdf2b37ac04d81d0fd14f397aebe7db81e1e55"} -2023-12-15T15:06:06.915Z INFO initializing dbft {"height": 3233, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:06.916Z debug frostfs-node/morph.go:229 new block {"index": 3232} -2023-12-15T15:06:07.877Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3232, "blockHeight": 3232, "took": "3.895803ms"} -2023-12-15T15:06:07.914Z INFO sending PrepareRequest {"height": 3233, "view": 0} -2023-12-15T15:06:07.914Z INFO sending Commit {"height": 3233, "view": 0} -2023-12-15T15:06:07.914Z INFO approving block {"height": 3233, "hash": "0329834011d825aec896164c5444c1aef911334c563f4b0184a00d5e28203f1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35437bff5cf61f4b601942e75bd770a2af0267f1bbb83bec6a73e24bc241d678"} -2023-12-15T15:06:07.915Z INFO initializing dbft {"height": 3234, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:07.916Z debug frostfs-node/morph.go:229 new block {"index": 3233} -2023-12-15T15:06:08.877Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3233, "blockHeight": 3233, "took": "3.009397ms"} -2023-12-15T15:06:08.916Z INFO sending PrepareRequest {"height": 3234, "view": 0} -2023-12-15T15:06:08.916Z INFO sending Commit {"height": 3234, "view": 0} -2023-12-15T15:06:08.916Z INFO approving block {"height": 3234, "hash": "4fe215079869b9ecd857e03e1362486b68e5be110ed0b8cd6d9427d353ee7ae7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0329834011d825aec896164c5444c1aef911334c563f4b0184a00d5e28203f1d"} -2023-12-15T15:06:08.917Z INFO initializing dbft {"height": 3235, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:08.918Z debug frostfs-node/morph.go:229 new block {"index": 3234} -2023-12-15T15:06:09.878Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3234, "blockHeight": 3234, "took": "3.051929ms"} -2023-12-15T15:06:09.917Z INFO sending PrepareRequest {"height": 3235, "view": 0} -2023-12-15T15:06:09.918Z INFO sending Commit {"height": 3235, "view": 0} -2023-12-15T15:06:09.919Z INFO approving block {"height": 3235, "hash": "296eb2819520ad869b77deb14e17d5019bbfd814185aca747ec763200fe1f3d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fe215079869b9ecd857e03e1362486b68e5be110ed0b8cd6d9427d353ee7ae7"} -2023-12-15T15:06:09.921Z INFO initializing dbft {"height": 3236, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:09.922Z debug frostfs-node/morph.go:229 new block {"index": 3235} -2023-12-15T15:06:10.880Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3235, "blockHeight": 3235, "took": "5.035916ms"} -2023-12-15T15:06:10.919Z INFO sending PrepareRequest {"height": 3236, "view": 0} -2023-12-15T15:06:10.919Z INFO sending Commit {"height": 3236, "view": 0} -2023-12-15T15:06:10.920Z INFO approving block {"height": 3236, "hash": "c647ed8b79e12ea57e0c31e4cd8c3db4929acc4001273d65438b56418b64c7db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "296eb2819520ad869b77deb14e17d5019bbfd814185aca747ec763200fe1f3d0"} -2023-12-15T15:06:10.921Z INFO initializing dbft {"height": 3237, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:10.922Z debug frostfs-node/morph.go:229 new block {"index": 3236} -2023-12-15T15:06:11.881Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3236, "blockHeight": 3236, "took": "4.5823ms"} -2023-12-15T15:06:11.921Z INFO sending PrepareRequest {"height": 3237, "view": 0} -2023-12-15T15:06:11.921Z INFO sending Commit {"height": 3237, "view": 0} -2023-12-15T15:06:11.921Z INFO approving block {"height": 3237, "hash": "10fd8f46bd6ea7387df33b2d9d08d19890c3bdf7266dbd6997ee157dec706624", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c647ed8b79e12ea57e0c31e4cd8c3db4929acc4001273d65438b56418b64c7db"} -2023-12-15T15:06:11.922Z INFO initializing dbft {"height": 3238, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:11.922Z debug frostfs-node/morph.go:229 new block {"index": 3237} -2023-12-15T15:06:12.879Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3237, "blockHeight": 3237, "took": "2.945406ms"} -2023-12-15T15:06:12.922Z INFO sending PrepareRequest {"height": 3238, "view": 0} -2023-12-15T15:06:12.923Z INFO sending Commit {"height": 3238, "view": 0} -2023-12-15T15:06:12.923Z INFO approving block {"height": 3238, "hash": "c5814b89680faaa291ceed9091ab1165628e1fe0e7e2c18abeba040f95bc1da6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10fd8f46bd6ea7387df33b2d9d08d19890c3bdf7266dbd6997ee157dec706624"} -2023-12-15T15:06:12.924Z INFO initializing dbft {"height": 3239, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:12.925Z debug frostfs-node/morph.go:229 new block {"index": 3238} -2023-12-15T15:06:13.882Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3238, "blockHeight": 3238, "took": "4.633665ms"} -2023-12-15T15:06:13.924Z INFO sending PrepareRequest {"height": 3239, "view": 0} -2023-12-15T15:06:13.924Z INFO sending Commit {"height": 3239, "view": 0} -2023-12-15T15:06:13.924Z INFO approving block {"height": 3239, "hash": "c9e1df6b201698605a6fcb5860eba19773c9fd5e34ccfa07d2b494bbeaa6b334", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5814b89680faaa291ceed9091ab1165628e1fe0e7e2c18abeba040f95bc1da6"} -2023-12-15T15:06:13.925Z INFO initializing dbft {"height": 3240, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:13.926Z debug frostfs-node/morph.go:229 new block {"index": 3239} -2023-12-15T15:06:14.882Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3239, "blockHeight": 3239, "took": "4.182549ms"} -2023-12-15T15:06:14.925Z INFO sending PrepareRequest {"height": 3240, "view": 0} -2023-12-15T15:06:14.925Z INFO sending Commit {"height": 3240, "view": 0} -2023-12-15T15:06:14.926Z INFO approving block {"height": 3240, "hash": "f2f25c6e09399afbf505b1c791a47bded6593af6024e27ecb90178962c8e3247", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9e1df6b201698605a6fcb5860eba19773c9fd5e34ccfa07d2b494bbeaa6b334"} -2023-12-15T15:06:14.926Z INFO initializing dbft {"height": 3241, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:14.927Z debug frostfs-node/morph.go:229 new block {"index": 3240} -2023-12-15T15:06:15.884Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3240, "blockHeight": 3240, "took": "5.717931ms"} -2023-12-15T15:06:15.927Z INFO sending PrepareRequest {"height": 3241, "view": 0} -2023-12-15T15:06:15.927Z INFO sending Commit {"height": 3241, "view": 0} -2023-12-15T15:06:15.927Z INFO approving block {"height": 3241, "hash": "334e7c93545cc20d878d2d5d9562411965e66e172170e3ee6f7d657dff015638", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2f25c6e09399afbf505b1c791a47bded6593af6024e27ecb90178962c8e3247"} -2023-12-15T15:06:15.928Z INFO initializing dbft {"height": 3242, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:15.928Z debug frostfs-node/morph.go:229 new block {"index": 3241} -2023-12-15T15:06:16.882Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3241, "blockHeight": 3241, "took": "3.754739ms"} -2023-12-15T15:06:16.928Z INFO sending PrepareRequest {"height": 3242, "view": 0} -2023-12-15T15:06:16.929Z INFO sending Commit {"height": 3242, "view": 0} -2023-12-15T15:06:16.929Z INFO approving block {"height": 3242, "hash": "87fd7d7945072086249008b3b37d4f0e7f2b8f80d3b598f9aa720ed27665a0a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "334e7c93545cc20d878d2d5d9562411965e66e172170e3ee6f7d657dff015638"} -2023-12-15T15:06:16.930Z INFO initializing dbft {"height": 3243, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:16.931Z debug frostfs-node/morph.go:229 new block {"index": 3242} -2023-12-15T15:06:17.883Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3242, "blockHeight": 3242, "took": "3.819701ms"} -2023-12-15T15:06:17.930Z INFO sending PrepareRequest {"height": 3243, "view": 0} -2023-12-15T15:06:17.930Z INFO sending Commit {"height": 3243, "view": 0} -2023-12-15T15:06:17.930Z INFO approving block {"height": 3243, "hash": "4d49498a3c1d91722755a2da955d96ef5418c1b6839dcd9364b46af12c3c5b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87fd7d7945072086249008b3b37d4f0e7f2b8f80d3b598f9aa720ed27665a0a3"} -2023-12-15T15:06:17.931Z INFO initializing dbft {"height": 3244, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:17.931Z debug frostfs-node/morph.go:229 new block {"index": 3243} -2023-12-15T15:06:18.887Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3243, "blockHeight": 3243, "took": "6.769258ms"} -2023-12-15T15:06:18.931Z INFO sending PrepareRequest {"height": 3244, "view": 0} -2023-12-15T15:06:18.932Z INFO sending Commit {"height": 3244, "view": 0} -2023-12-15T15:06:18.932Z INFO approving block {"height": 3244, "hash": "5e5e2012a15056cb1cb931dbd5686c66b0b97b6814e1fb4475d8e37662f067dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d49498a3c1d91722755a2da955d96ef5418c1b6839dcd9364b46af12c3c5b39"} -2023-12-15T15:06:18.933Z INFO initializing dbft {"height": 3245, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:18.934Z debug frostfs-node/morph.go:229 new block {"index": 3244} -2023-12-15T15:06:19.883Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3244, "blockHeight": 3244, "took": "3.241065ms"} -2023-12-15T15:06:19.933Z INFO sending PrepareRequest {"height": 3245, "view": 0} -2023-12-15T15:06:19.933Z INFO sending Commit {"height": 3245, "view": 0} -2023-12-15T15:06:19.934Z INFO approving block {"height": 3245, "hash": "452c397319005e34579883cb6d3c49d351227e713ee5f5acb7526539b90b228a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e5e2012a15056cb1cb931dbd5686c66b0b97b6814e1fb4475d8e37662f067dc"} -2023-12-15T15:06:19.935Z INFO initializing dbft {"height": 3246, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:19.936Z debug frostfs-node/morph.go:229 new block {"index": 3245} -2023-12-15T15:06:20.884Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3245, "blockHeight": 3245, "took": "2.952306ms"} -2023-12-15T15:06:20.935Z INFO sending PrepareRequest {"height": 3246, "view": 0} -2023-12-15T15:06:20.935Z INFO sending Commit {"height": 3246, "view": 0} -2023-12-15T15:06:20.935Z INFO approving block {"height": 3246, "hash": "043d0fdd9e0c20cf437a21feea9b13f9f204f54772e04b8af99400915aa004c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "452c397319005e34579883cb6d3c49d351227e713ee5f5acb7526539b90b228a"} -2023-12-15T15:06:20.937Z INFO initializing dbft {"height": 3247, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:20.937Z debug frostfs-node/morph.go:229 new block {"index": 3246} -2023-12-15T15:06:21.886Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3246, "blockHeight": 3246, "took": "5.118627ms"} -2023-12-15T15:06:21.936Z INFO sending PrepareRequest {"height": 3247, "view": 0} -2023-12-15T15:06:21.936Z INFO sending Commit {"height": 3247, "view": 0} -2023-12-15T15:06:21.937Z INFO approving block {"height": 3247, "hash": "3734d62a326d313efa19835d9369c08f60b5f7afe33f11e0e6da8d74bb52ba23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "043d0fdd9e0c20cf437a21feea9b13f9f204f54772e04b8af99400915aa004c5"} -2023-12-15T15:06:21.938Z INFO initializing dbft {"height": 3248, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:21.938Z debug frostfs-node/morph.go:229 new block {"index": 3247} -2023-12-15T15:06:22.891Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3247, "blockHeight": 3247, "took": "8.506252ms"} -2023-12-15T15:06:22.938Z INFO sending PrepareRequest {"height": 3248, "view": 0} -2023-12-15T15:06:22.938Z INFO sending Commit {"height": 3248, "view": 0} -2023-12-15T15:06:22.938Z INFO approving block {"height": 3248, "hash": "01226a5854e57d44cab5c141b11191bb415ddbe693d4ed7b0ca72e08cf1c710e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3734d62a326d313efa19835d9369c08f60b5f7afe33f11e0e6da8d74bb52ba23"} -2023-12-15T15:06:22.939Z INFO initializing dbft {"height": 3249, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:22.940Z debug frostfs-node/morph.go:229 new block {"index": 3248} -2023-12-15T15:06:23.889Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3248, "blockHeight": 3248, "took": "6.050443ms"} -2023-12-15T15:06:23.940Z INFO sending PrepareRequest {"height": 3249, "view": 0} -2023-12-15T15:06:23.941Z INFO sending Commit {"height": 3249, "view": 0} -2023-12-15T15:06:23.942Z INFO approving block {"height": 3249, "hash": "ce1064081167bc0e462d60168473ef70c5fadc3aaf6309d4f82a6d04d06fe266", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01226a5854e57d44cab5c141b11191bb415ddbe693d4ed7b0ca72e08cf1c710e"} -2023-12-15T15:06:23.945Z INFO initializing dbft {"height": 3250, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:23.946Z debug frostfs-node/morph.go:229 new block {"index": 3249} -2023-12-15T15:06:24.889Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3249, "blockHeight": 3249, "took": "5.715787ms"} -2023-12-15T15:06:24.943Z INFO sending PrepareRequest {"height": 3250, "view": 0} -2023-12-15T15:06:24.943Z INFO sending Commit {"height": 3250, "view": 0} -2023-12-15T15:06:24.943Z INFO approving block {"height": 3250, "hash": "68c7e8b918d788f348785e4344179c19522423ea410fedaf0d8f4c161a50c64d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce1064081167bc0e462d60168473ef70c5fadc3aaf6309d4f82a6d04d06fe266"} -2023-12-15T15:06:24.944Z INFO initializing dbft {"height": 3251, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:24.944Z debug frostfs-node/morph.go:229 new block {"index": 3250} -2023-12-15T15:06:25.891Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3250, "blockHeight": 3250, "took": "6.764851ms"} -2023-12-15T15:06:25.944Z INFO sending PrepareRequest {"height": 3251, "view": 0} -2023-12-15T15:06:25.945Z INFO sending Commit {"height": 3251, "view": 0} -2023-12-15T15:06:25.945Z INFO approving block {"height": 3251, "hash": "ed3591bfb0a0a5d7368e1b0f471e8525106d53bef76bab5ad272e2fa5683666e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68c7e8b918d788f348785e4344179c19522423ea410fedaf0d8f4c161a50c64d"} -2023-12-15T15:06:25.946Z INFO initializing dbft {"height": 3252, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:25.946Z debug frostfs-node/morph.go:229 new block {"index": 3251} -2023-12-15T15:06:26.889Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3251, "blockHeight": 3251, "took": "3.24223ms"} -2023-12-15T15:06:26.946Z INFO sending PrepareRequest {"height": 3252, "view": 0} -2023-12-15T15:06:26.946Z INFO sending Commit {"height": 3252, "view": 0} -2023-12-15T15:06:26.947Z INFO approving block {"height": 3252, "hash": "3213baf8b8afcaea14f016896bfa9a58177db252a88c79f84ccc33de20afc82c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed3591bfb0a0a5d7368e1b0f471e8525106d53bef76bab5ad272e2fa5683666e"} -2023-12-15T15:06:26.948Z INFO initializing dbft {"height": 3253, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:26.949Z debug frostfs-node/morph.go:229 new block {"index": 3252} -2023-12-15T15:06:27.891Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3252, "blockHeight": 3252, "took": "4.525811ms"} -2023-12-15T15:06:27.948Z INFO sending PrepareRequest {"height": 3253, "view": 0} -2023-12-15T15:06:27.948Z INFO sending Commit {"height": 3253, "view": 0} -2023-12-15T15:06:27.949Z INFO approving block {"height": 3253, "hash": "e9b49fda33919198d8dcbff2efe9594f2a6dd136d1526b8384a500142cf2fb78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3213baf8b8afcaea14f016896bfa9a58177db252a88c79f84ccc33de20afc82c"} -2023-12-15T15:06:27.950Z INFO initializing dbft {"height": 3254, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:27.951Z debug frostfs-node/morph.go:229 new block {"index": 3253} -2023-12-15T15:06:27.954Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 14, "iteration": 1, "error": "no data for 0 iteration in 14 epoch for consumers's trusts"} -2023-12-15T15:06:27.955Z info settlement/calls.go:61 start basic income collection {"epoch": 14} -2023-12-15T15:06:28.891Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3253, "blockHeight": 3253, "took": "4.601458ms"} -2023-12-15T15:06:28.949Z INFO sending PrepareRequest {"height": 3254, "view": 0} -2023-12-15T15:06:28.950Z INFO sending Commit {"height": 3254, "view": 0} -2023-12-15T15:06:28.950Z INFO approving block {"height": 3254, "hash": "c373a6f6e066295b89d26e837c501a78459a9084b81bef1a494a70afc33db471", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9b49fda33919198d8dcbff2efe9594f2a6dd136d1526b8384a500142cf2fb78"} -2023-12-15T15:06:28.951Z INFO initializing dbft {"height": 3255, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:28.952Z debug frostfs-node/morph.go:229 new block {"index": 3254} -2023-12-15T15:06:29.891Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3254, "blockHeight": 3254, "took": "3.202524ms"} -2023-12-15T15:06:29.951Z INFO sending PrepareRequest {"height": 3255, "view": 0} -2023-12-15T15:06:29.951Z INFO sending Commit {"height": 3255, "view": 0} -2023-12-15T15:06:29.951Z INFO approving block {"height": 3255, "hash": "dddd143e1ce5761b2fc905a93f6e72a11147c2a4bcd3ec03792d53abd5e794fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c373a6f6e066295b89d26e837c501a78459a9084b81bef1a494a70afc33db471"} -2023-12-15T15:06:29.952Z INFO initializing dbft {"height": 3256, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:29.953Z debug frostfs-node/morph.go:229 new block {"index": 3255} -2023-12-15T15:06:30.891Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3255, "blockHeight": 3255, "took": "2.838183ms"} -2023-12-15T15:06:30.952Z INFO sending PrepareRequest {"height": 3256, "view": 0} -2023-12-15T15:06:30.953Z INFO sending Commit {"height": 3256, "view": 0} -2023-12-15T15:06:30.953Z INFO approving block {"height": 3256, "hash": "6dc98590d0e67f1e5b32966d8ff18c3e0551e733bd41994567cc4c7a1d8827f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dddd143e1ce5761b2fc905a93f6e72a11147c2a4bcd3ec03792d53abd5e794fd"} -2023-12-15T15:06:30.954Z INFO initializing dbft {"height": 3257, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:30.954Z debug frostfs-node/morph.go:229 new block {"index": 3256} -2023-12-15T15:06:31.892Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3256, "blockHeight": 3256, "took": "4.1227ms"} -2023-12-15T15:06:31.954Z INFO sending PrepareRequest {"height": 3257, "view": 0} -2023-12-15T15:06:31.954Z INFO sending Commit {"height": 3257, "view": 0} -2023-12-15T15:06:31.955Z INFO approving block {"height": 3257, "hash": "e571666bfcf063fdcae7433921fbd3f61d3679cf3cb70a6dacc69b1d57aa13a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dc98590d0e67f1e5b32966d8ff18c3e0551e733bd41994567cc4c7a1d8827f3"} -2023-12-15T15:06:31.956Z INFO initializing dbft {"height": 3258, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:31.957Z debug frostfs-node/morph.go:229 new block {"index": 3257} -2023-12-15T15:06:32.893Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3257, "blockHeight": 3257, "took": "3.872097ms"} -2023-12-15T15:06:32.956Z INFO sending PrepareRequest {"height": 3258, "view": 0} -2023-12-15T15:06:32.956Z INFO sending Commit {"height": 3258, "view": 0} -2023-12-15T15:06:32.956Z INFO approving block {"height": 3258, "hash": "58686904dc2b311c0a0f2ec2c2343a101fc6b5cabb2ea05fea9c8e15be5acba4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e571666bfcf063fdcae7433921fbd3f61d3679cf3cb70a6dacc69b1d57aa13a5"} -2023-12-15T15:06:32.957Z INFO initializing dbft {"height": 3259, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:32.957Z debug frostfs-node/morph.go:229 new block {"index": 3258} -2023-12-15T15:06:33.894Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3258, "blockHeight": 3258, "took": "4.290382ms"} -2023-12-15T15:06:33.957Z INFO sending PrepareRequest {"height": 3259, "view": 0} -2023-12-15T15:06:33.957Z INFO sending Commit {"height": 3259, "view": 0} -2023-12-15T15:06:33.958Z INFO approving block {"height": 3259, "hash": "c5a9b5ce6b49619d6dbda677838c43a25b61c3faf00e8e63b3bb5b421dcb0797", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58686904dc2b311c0a0f2ec2c2343a101fc6b5cabb2ea05fea9c8e15be5acba4"} -2023-12-15T15:06:33.958Z INFO initializing dbft {"height": 3260, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:33.959Z debug frostfs-node/morph.go:229 new block {"index": 3259} -2023-12-15T15:06:34.895Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3259, "blockHeight": 3259, "took": "5.050307ms"} -2023-12-15T15:06:34.959Z INFO sending PrepareRequest {"height": 3260, "view": 0} -2023-12-15T15:06:34.959Z INFO sending Commit {"height": 3260, "view": 0} -2023-12-15T15:06:34.959Z INFO approving block {"height": 3260, "hash": "f4e4043504e0f062bc3f98622c56a685e979f205561dd67be23ed2e3fbbc9f2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5a9b5ce6b49619d6dbda677838c43a25b61c3faf00e8e63b3bb5b421dcb0797"} -2023-12-15T15:06:34.960Z INFO initializing dbft {"height": 3261, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:34.961Z debug frostfs-node/morph.go:229 new block {"index": 3260} -2023-12-15T15:06:35.895Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3260, "blockHeight": 3260, "took": "4.643755ms"} -2023-12-15T15:06:35.960Z INFO sending PrepareRequest {"height": 3261, "view": 0} -2023-12-15T15:06:35.961Z INFO sending Commit {"height": 3261, "view": 0} -2023-12-15T15:06:35.961Z INFO approving block {"height": 3261, "hash": "190571e1ef1751f19e432311193e061899babf12a598e351c11c9a275918df3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4e4043504e0f062bc3f98622c56a685e979f205561dd67be23ed2e3fbbc9f2f"} -2023-12-15T15:06:35.962Z INFO initializing dbft {"height": 3262, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:35.963Z debug frostfs-node/morph.go:229 new block {"index": 3261} -2023-12-15T15:06:36.895Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3261, "blockHeight": 3261, "took": "3.510143ms"} -2023-12-15T15:06:36.962Z INFO sending PrepareRequest {"height": 3262, "view": 0} -2023-12-15T15:06:36.962Z INFO sending Commit {"height": 3262, "view": 0} -2023-12-15T15:06:36.962Z INFO approving block {"height": 3262, "hash": "c3b0e10f08a077abd09c84b5e239ab9c0a0ff58a7fdd19d4f85f8d09378ebe23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "190571e1ef1751f19e432311193e061899babf12a598e351c11c9a275918df3e"} -2023-12-15T15:06:36.964Z INFO initializing dbft {"height": 3263, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:36.964Z debug frostfs-node/morph.go:229 new block {"index": 3262} -2023-12-15T15:06:37.895Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3262, "blockHeight": 3262, "took": "3.09947ms"} -2023-12-15T15:06:37.963Z INFO sending PrepareRequest {"height": 3263, "view": 0} -2023-12-15T15:06:37.963Z INFO sending Commit {"height": 3263, "view": 0} -2023-12-15T15:06:37.964Z INFO approving block {"height": 3263, "hash": "5951b80110a10ca49a0969f68716acf7a2abe7a3a2aeec2af2dae00dd433457d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3b0e10f08a077abd09c84b5e239ab9c0a0ff58a7fdd19d4f85f8d09378ebe23"} -2023-12-15T15:06:37.964Z INFO initializing dbft {"height": 3264, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:37.965Z debug frostfs-node/morph.go:229 new block {"index": 3263} -2023-12-15T15:06:38.897Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3263, "blockHeight": 3263, "took": "5.143183ms"} -2023-12-15T15:06:38.964Z INFO sending PrepareRequest {"height": 3264, "view": 0} -2023-12-15T15:06:38.964Z INFO sending Commit {"height": 3264, "view": 0} -2023-12-15T15:06:38.965Z INFO approving block {"height": 3264, "hash": "842db17ced4a859727b46e67ebc6b131872434aa7d7b085d64600728097caf65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5951b80110a10ca49a0969f68716acf7a2abe7a3a2aeec2af2dae00dd433457d"} -2023-12-15T15:06:38.966Z INFO initializing dbft {"height": 3265, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:38.966Z debug frostfs-node/morph.go:229 new block {"index": 3264} -2023-12-15T15:06:39.896Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3264, "blockHeight": 3264, "took": "3.398106ms"} -2023-12-15T15:06:39.965Z INFO sending PrepareRequest {"height": 3265, "view": 0} -2023-12-15T15:06:39.965Z INFO sending Commit {"height": 3265, "view": 0} -2023-12-15T15:06:39.966Z INFO approving block {"height": 3265, "hash": "e4ec701295b0fa935062c3ded46764149044a0552443d522a35d38fe33af5b4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "842db17ced4a859727b46e67ebc6b131872434aa7d7b085d64600728097caf65"} -2023-12-15T15:06:39.967Z INFO initializing dbft {"height": 3266, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:39.967Z debug frostfs-node/morph.go:229 new block {"index": 3265} -2023-12-15T15:06:40.897Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3265, "blockHeight": 3265, "took": "4.250044ms"} -2023-12-15T15:06:40.967Z INFO sending PrepareRequest {"height": 3266, "view": 0} -2023-12-15T15:06:40.968Z INFO sending Commit {"height": 3266, "view": 0} -2023-12-15T15:06:40.968Z INFO approving block {"height": 3266, "hash": "479b132c264d40432d1283d937306930d245cf93b186d004e1ab803040199f69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4ec701295b0fa935062c3ded46764149044a0552443d522a35d38fe33af5b4c"} -2023-12-15T15:06:40.969Z INFO initializing dbft {"height": 3267, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:40.970Z debug frostfs-node/morph.go:229 new block {"index": 3266} -2023-12-15T15:06:41.898Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3266, "blockHeight": 3266, "took": "4.248091ms"} -2023-12-15T15:06:41.969Z INFO sending PrepareRequest {"height": 3267, "view": 0} -2023-12-15T15:06:41.969Z INFO sending Commit {"height": 3267, "view": 0} -2023-12-15T15:06:41.969Z INFO approving block {"height": 3267, "hash": "f6d7a4b18282c10664184842922d26376798d3306fa9f1754772a75f706b4623", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "479b132c264d40432d1283d937306930d245cf93b186d004e1ab803040199f69"} -2023-12-15T15:06:41.970Z INFO initializing dbft {"height": 3268, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:41.971Z debug frostfs-node/morph.go:229 new block {"index": 3267} -2023-12-15T15:06:41.973Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:06:41.974Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:06:41.974Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:06:42.900Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3267, "blockHeight": 3267, "took": "5.636972ms"} -2023-12-15T15:06:42.970Z INFO sending PrepareRequest {"height": 3268, "view": 0} -2023-12-15T15:06:42.970Z INFO sending Commit {"height": 3268, "view": 0} -2023-12-15T15:06:42.971Z INFO approving block {"height": 3268, "hash": "ee0237b415b6baef40c5c60bc050b0cc15df85b6efc11e99a8db9189651e33c5", "tx_count": 2, "merkle": "7c30dbfb4b8dff8d9b70c6bea98d05dfb0adbae430d73d0b85813cd16b637182", "prev": "f6d7a4b18282c10664184842922d26376798d3306fa9f1754772a75f706b4623"} -2023-12-15T15:06:42.972Z INFO runtime log {"tx": "78694be657db0bb12097129c907f9565bc5b42062ec8527e205feb695e0a69f1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:06:42.972Z INFO runtime log {"tx": "78694be657db0bb12097129c907f9565bc5b42062ec8527e205feb695e0a69f1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:06:42.973Z INFO initializing dbft {"height": 3269, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:42.974Z debug frostfs-node/morph.go:229 new block {"index": 3268} -2023-12-15T15:06:43.900Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3268, "blockHeight": 3268, "took": "5.020306ms"} -2023-12-15T15:06:43.972Z INFO sending PrepareRequest {"height": 3269, "view": 0} -2023-12-15T15:06:43.972Z INFO sending Commit {"height": 3269, "view": 0} -2023-12-15T15:06:43.972Z INFO approving block {"height": 3269, "hash": "d947fe202e3f2ba151479b2098e2ad701d381e28125f1c848da25152a9e5ba82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee0237b415b6baef40c5c60bc050b0cc15df85b6efc11e99a8db9189651e33c5"} -2023-12-15T15:06:43.973Z INFO initializing dbft {"height": 3270, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:43.974Z debug frostfs-node/morph.go:229 new block {"index": 3269} -2023-12-15T15:06:44.901Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3269, "blockHeight": 3269, "took": "5.389589ms"} -2023-12-15T15:06:44.973Z INFO sending PrepareRequest {"height": 3270, "view": 0} -2023-12-15T15:06:44.973Z INFO sending Commit {"height": 3270, "view": 0} -2023-12-15T15:06:44.973Z INFO approving block {"height": 3270, "hash": "bc7e6358e959b3a9a3086ebca2bf1abf14405bc6d73640ffb469ec6bc7df5e11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d947fe202e3f2ba151479b2098e2ad701d381e28125f1c848da25152a9e5ba82"} -2023-12-15T15:06:44.974Z INFO initializing dbft {"height": 3271, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:44.975Z debug frostfs-node/morph.go:229 new block {"index": 3270} -2023-12-15T15:06:45.904Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3270, "blockHeight": 3270, "took": "7.800269ms"} -2023-12-15T15:06:45.975Z INFO sending PrepareRequest {"height": 3271, "view": 0} -2023-12-15T15:06:45.975Z INFO sending Commit {"height": 3271, "view": 0} -2023-12-15T15:06:45.976Z INFO approving block {"height": 3271, "hash": "c07f26c30a837f00af73d5dc62706c6a0a1655fa22f51ee4d0d582ce35328275", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc7e6358e959b3a9a3086ebca2bf1abf14405bc6d73640ffb469ec6bc7df5e11"} -2023-12-15T15:06:45.977Z INFO initializing dbft {"height": 3272, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:45.977Z debug frostfs-node/morph.go:229 new block {"index": 3271} -2023-12-15T15:06:46.901Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3271, "blockHeight": 3271, "took": "4.254226ms"} -2023-12-15T15:06:46.976Z INFO sending PrepareRequest {"height": 3272, "view": 0} -2023-12-15T15:06:46.977Z INFO sending Commit {"height": 3272, "view": 0} -2023-12-15T15:06:46.977Z INFO approving block {"height": 3272, "hash": "358f4aa27c8beaccf87906dccb42d65de057e91fa1defaa3a2cf2a105f1478a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c07f26c30a837f00af73d5dc62706c6a0a1655fa22f51ee4d0d582ce35328275"} -2023-12-15T15:06:46.979Z INFO initializing dbft {"height": 3273, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:46.979Z debug frostfs-node/morph.go:229 new block {"index": 3272} -2023-12-15T15:06:47.901Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3272, "blockHeight": 3272, "took": "3.76402ms"} -2023-12-15T15:06:47.979Z INFO sending PrepareRequest {"height": 3273, "view": 0} -2023-12-15T15:06:47.979Z INFO sending Commit {"height": 3273, "view": 0} -2023-12-15T15:06:47.980Z INFO approving block {"height": 3273, "hash": "997742334b870762965d23d3da5ce2d10c418eef6478a23a96c9fbabb4101aa0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "358f4aa27c8beaccf87906dccb42d65de057e91fa1defaa3a2cf2a105f1478a6"} -2023-12-15T15:06:47.981Z INFO initializing dbft {"height": 3274, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:47.981Z debug frostfs-node/morph.go:229 new block {"index": 3273} -2023-12-15T15:06:48.901Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3273, "blockHeight": 3273, "took": "3.655046ms"} -2023-12-15T15:06:48.981Z INFO sending PrepareRequest {"height": 3274, "view": 0} -2023-12-15T15:06:48.981Z INFO sending Commit {"height": 3274, "view": 0} -2023-12-15T15:06:48.981Z INFO approving block {"height": 3274, "hash": "31f904daba7e4dcc0ce8826ad581614be5bed738019bf098e7d2d9abe954ffd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "997742334b870762965d23d3da5ce2d10c418eef6478a23a96c9fbabb4101aa0"} -2023-12-15T15:06:48.983Z INFO initializing dbft {"height": 3275, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:48.983Z debug frostfs-node/morph.go:229 new block {"index": 3274} -2023-12-15T15:06:49.903Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3274, "blockHeight": 3274, "took": "4.747332ms"} -2023-12-15T15:06:49.982Z INFO sending PrepareRequest {"height": 3275, "view": 0} -2023-12-15T15:06:49.982Z INFO sending Commit {"height": 3275, "view": 0} -2023-12-15T15:06:49.983Z INFO approving block {"height": 3275, "hash": "af6707591b06059770b91c8c7c7b9c5b8258449b6dae55343aaf7908ed998497", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31f904daba7e4dcc0ce8826ad581614be5bed738019bf098e7d2d9abe954ffd1"} -2023-12-15T15:06:49.984Z INFO initializing dbft {"height": 3276, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:49.984Z debug frostfs-node/morph.go:229 new block {"index": 3275} -2023-12-15T15:06:50.904Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3275, "blockHeight": 3275, "took": "4.937425ms"} -2023-12-15T15:06:50.984Z INFO sending PrepareRequest {"height": 3276, "view": 0} -2023-12-15T15:06:50.984Z INFO sending Commit {"height": 3276, "view": 0} -2023-12-15T15:06:50.984Z INFO approving block {"height": 3276, "hash": "d117ee34b601b50eb9258af1d49c493a3782a6307b8c4944eb27f20c169cca67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af6707591b06059770b91c8c7c7b9c5b8258449b6dae55343aaf7908ed998497"} -2023-12-15T15:06:50.985Z INFO initializing dbft {"height": 3277, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:50.986Z debug frostfs-node/morph.go:229 new block {"index": 3276} -2023-12-15T15:06:51.906Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3276, "blockHeight": 3276, "took": "6.184648ms"} -2023-12-15T15:06:51.985Z INFO sending PrepareRequest {"height": 3277, "view": 0} -2023-12-15T15:06:51.985Z INFO sending Commit {"height": 3277, "view": 0} -2023-12-15T15:06:51.986Z INFO approving block {"height": 3277, "hash": "b9a5e9b73d10543658c3e93efe8155d0ab16a373cad7b546b9cd9ed995a741de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d117ee34b601b50eb9258af1d49c493a3782a6307b8c4944eb27f20c169cca67"} -2023-12-15T15:06:51.987Z INFO initializing dbft {"height": 3278, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:51.988Z debug frostfs-node/morph.go:229 new block {"index": 3277} -2023-12-15T15:06:52.904Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3277, "blockHeight": 3277, "took": "3.927164ms"} -2023-12-15T15:06:52.987Z INFO sending PrepareRequest {"height": 3278, "view": 0} -2023-12-15T15:06:52.987Z INFO sending Commit {"height": 3278, "view": 0} -2023-12-15T15:06:52.987Z INFO approving block {"height": 3278, "hash": "30e4b2e02bfd8bffe1f060f388493aa43b96361f98891638a77e8916b0d390ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9a5e9b73d10543658c3e93efe8155d0ab16a373cad7b546b9cd9ed995a741de"} -2023-12-15T15:06:52.988Z INFO initializing dbft {"height": 3279, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:52.989Z debug frostfs-node/morph.go:229 new block {"index": 3278} -2023-12-15T15:06:53.906Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3278, "blockHeight": 3278, "took": "5.744719ms"} -2023-12-15T15:06:53.988Z INFO sending PrepareRequest {"height": 3279, "view": 0} -2023-12-15T15:06:53.988Z INFO sending Commit {"height": 3279, "view": 0} -2023-12-15T15:06:53.989Z INFO approving block {"height": 3279, "hash": "2a2a1529392e79a5ab54c44d8c2226eb179bcb3903c699ed0ab151a32dc0f712", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30e4b2e02bfd8bffe1f060f388493aa43b96361f98891638a77e8916b0d390ed"} -2023-12-15T15:06:53.991Z INFO initializing dbft {"height": 3280, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:53.991Z debug frostfs-node/morph.go:229 new block {"index": 3279} -2023-12-15T15:06:54.904Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3279, "blockHeight": 3279, "took": "3.101521ms"} -2023-12-15T15:06:54.990Z INFO sending PrepareRequest {"height": 3280, "view": 0} -2023-12-15T15:06:54.990Z INFO sending Commit {"height": 3280, "view": 0} -2023-12-15T15:06:54.990Z INFO approving block {"height": 3280, "hash": "099bcb1269429967e19ef0cd24c14d9ebfac3040635cccf579457468ece7424d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a2a1529392e79a5ab54c44d8c2226eb179bcb3903c699ed0ab151a32dc0f712"} -2023-12-15T15:06:54.991Z INFO initializing dbft {"height": 3281, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:54.992Z debug frostfs-node/morph.go:229 new block {"index": 3280} -2023-12-15T15:06:55.904Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3280, "blockHeight": 3280, "took": "2.880614ms"} -2023-12-15T15:06:55.991Z INFO sending PrepareRequest {"height": 3281, "view": 0} -2023-12-15T15:06:55.992Z INFO sending Commit {"height": 3281, "view": 0} -2023-12-15T15:06:55.992Z INFO approving block {"height": 3281, "hash": "4da1e0e4a34f7d27f15a077caeffc3db6e6d7682e7affd195452e470a5b168d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "099bcb1269429967e19ef0cd24c14d9ebfac3040635cccf579457468ece7424d"} -2023-12-15T15:06:55.993Z INFO initializing dbft {"height": 3282, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:55.994Z debug frostfs-node/morph.go:229 new block {"index": 3281} -2023-12-15T15:06:56.907Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3281, "blockHeight": 3281, "took": "5.032144ms"} -2023-12-15T15:06:56.992Z INFO sending PrepareRequest {"height": 3282, "view": 0} -2023-12-15T15:06:56.992Z INFO sending Commit {"height": 3282, "view": 0} -2023-12-15T15:06:56.993Z INFO approving block {"height": 3282, "hash": "c0796b66a1af8464e0a625dc5d1df231d6e3e4b5b9a2bf17bbefb1b8edd0968a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4da1e0e4a34f7d27f15a077caeffc3db6e6d7682e7affd195452e470a5b168d7"} -2023-12-15T15:06:56.994Z INFO initializing dbft {"height": 3283, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:56.994Z debug frostfs-node/morph.go:229 new block {"index": 3282} -2023-12-15T15:06:57.907Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3282, "blockHeight": 3282, "took": "4.569666ms"} -2023-12-15T15:06:57.994Z INFO sending PrepareRequest {"height": 3283, "view": 0} -2023-12-15T15:06:57.994Z INFO sending Commit {"height": 3283, "view": 0} -2023-12-15T15:06:57.995Z INFO approving block {"height": 3283, "hash": "23120abf1b5804bacb4dcc86a359cddef002f12b7aeeb425ac217786bb5af9dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0796b66a1af8464e0a625dc5d1df231d6e3e4b5b9a2bf17bbefb1b8edd0968a"} -2023-12-15T15:06:57.996Z INFO initializing dbft {"height": 3284, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:57.996Z debug frostfs-node/morph.go:229 new block {"index": 3283} -2023-12-15T15:06:58.906Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3283, "blockHeight": 3283, "took": "2.809742ms"} -2023-12-15T15:06:58.996Z INFO sending PrepareRequest {"height": 3284, "view": 0} -2023-12-15T15:06:58.996Z INFO sending Commit {"height": 3284, "view": 0} -2023-12-15T15:06:58.997Z INFO approving block {"height": 3284, "hash": "521d48d62e455e57f0edf4ca19044406781a1e93be1e5b24d3915b0f89ac7cc7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23120abf1b5804bacb4dcc86a359cddef002f12b7aeeb425ac217786bb5af9dc"} -2023-12-15T15:06:58.998Z INFO initializing dbft {"height": 3285, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:06:58.999Z debug frostfs-node/morph.go:229 new block {"index": 3284} -2023-12-15T15:06:59.908Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3284, "blockHeight": 3284, "took": "4.075119ms"} -2023-12-15T15:06:59.997Z INFO sending PrepareRequest {"height": 3285, "view": 0} -2023-12-15T15:06:59.998Z INFO sending Commit {"height": 3285, "view": 0} -2023-12-15T15:06:59.998Z INFO approving block {"height": 3285, "hash": "3ecd8028226e7195fbb32659b6dd250d381acb47768ea38ad45ca7f11cba4feb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "521d48d62e455e57f0edf4ca19044406781a1e93be1e5b24d3915b0f89ac7cc7"} -2023-12-15T15:06:59.999Z INFO initializing dbft {"height": 3286, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:00.000Z debug frostfs-node/morph.go:229 new block {"index": 3285} -2023-12-15T15:07:00.908Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3285, "blockHeight": 3285, "took": "3.794275ms"} -2023-12-15T15:07:00.999Z INFO sending PrepareRequest {"height": 3286, "view": 0} -2023-12-15T15:07:00.999Z INFO sending Commit {"height": 3286, "view": 0} -2023-12-15T15:07:00.999Z INFO approving block {"height": 3286, "hash": "1e109d317c8675b9e665090cfe95e140e2b387e405cb8b0f4f121080cef8ab3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ecd8028226e7195fbb32659b6dd250d381acb47768ea38ad45ca7f11cba4feb"} -2023-12-15T15:07:01.000Z INFO initializing dbft {"height": 3287, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:01.001Z debug frostfs-node/morph.go:229 new block {"index": 3286} -2023-12-15T15:07:01.909Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3286, "blockHeight": 3286, "took": "4.744608ms"} -2023-12-15T15:07:02.001Z INFO sending PrepareRequest {"height": 3287, "view": 0} -2023-12-15T15:07:02.001Z INFO sending Commit {"height": 3287, "view": 0} -2023-12-15T15:07:02.001Z INFO approving block {"height": 3287, "hash": "1a75efa4bac3eb29bfb7cb035a951eae31eb716f2f49d57e5aba325960d1a021", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e109d317c8675b9e665090cfe95e140e2b387e405cb8b0f4f121080cef8ab3c"} -2023-12-15T15:07:02.003Z INFO initializing dbft {"height": 3288, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:02.003Z debug frostfs-node/morph.go:229 new block {"index": 3287} -2023-12-15T15:07:02.910Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3287, "blockHeight": 3287, "took": "4.558993ms"} -2023-12-15T15:07:03.002Z INFO sending PrepareRequest {"height": 3288, "view": 0} -2023-12-15T15:07:03.002Z INFO sending Commit {"height": 3288, "view": 0} -2023-12-15T15:07:03.003Z INFO approving block {"height": 3288, "hash": "5cb30f710d92fa5362d83cdf22940c1c8bb0290eb3e7e25f792095e16a1131bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a75efa4bac3eb29bfb7cb035a951eae31eb716f2f49d57e5aba325960d1a021"} -2023-12-15T15:07:03.005Z INFO initializing dbft {"height": 3289, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:03.005Z debug frostfs-node/morph.go:229 new block {"index": 3288} -2023-12-15T15:07:03.909Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3288, "blockHeight": 3288, "took": "3.09999ms"} -2023-12-15T15:07:04.004Z INFO sending PrepareRequest {"height": 3289, "view": 0} -2023-12-15T15:07:04.004Z INFO sending Commit {"height": 3289, "view": 0} -2023-12-15T15:07:04.004Z INFO approving block {"height": 3289, "hash": "567ca9307621438d2889374f76a621561cb1f5eea335b4013ee70b35d148c9a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cb30f710d92fa5362d83cdf22940c1c8bb0290eb3e7e25f792095e16a1131bc"} -2023-12-15T15:07:04.005Z INFO initializing dbft {"height": 3290, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:04.005Z debug frostfs-node/morph.go:229 new block {"index": 3289} -2023-12-15T15:07:04.909Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3289, "blockHeight": 3289, "took": "3.027328ms"} -2023-12-15T15:07:05.005Z INFO sending PrepareRequest {"height": 3290, "view": 0} -2023-12-15T15:07:05.005Z INFO sending Commit {"height": 3290, "view": 0} -2023-12-15T15:07:05.005Z INFO approving block {"height": 3290, "hash": "25ad3e3649698a1e688571de96d04cfe8e8976cf95b3ce7d0c5076317d83836f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "567ca9307621438d2889374f76a621561cb1f5eea335b4013ee70b35d148c9a2"} -2023-12-15T15:07:05.006Z INFO initializing dbft {"height": 3291, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:05.007Z debug frostfs-node/morph.go:229 new block {"index": 3290} -2023-12-15T15:07:05.912Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3290, "blockHeight": 3290, "took": "5.469749ms"} -2023-12-15T15:07:06.006Z INFO sending PrepareRequest {"height": 3291, "view": 0} -2023-12-15T15:07:06.006Z INFO sending Commit {"height": 3291, "view": 0} -2023-12-15T15:07:06.007Z INFO approving block {"height": 3291, "hash": "cf97381c4c71e1ab51fe3262da75cfeb7d8723b149a9ab4235bc2d1e0417bd72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25ad3e3649698a1e688571de96d04cfe8e8976cf95b3ce7d0c5076317d83836f"} -2023-12-15T15:07:06.008Z INFO initializing dbft {"height": 3292, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:06.009Z debug frostfs-node/morph.go:229 new block {"index": 3291} -2023-12-15T15:07:06.912Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3291, "blockHeight": 3291, "took": "4.086186ms"} -2023-12-15T15:07:07.008Z INFO sending PrepareRequest {"height": 3292, "view": 0} -2023-12-15T15:07:07.008Z INFO sending Commit {"height": 3292, "view": 0} -2023-12-15T15:07:07.008Z INFO approving block {"height": 3292, "hash": "15413b72640fdde1f5784272ad79ccddcfd83752e0b934005785e4e04018f4a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf97381c4c71e1ab51fe3262da75cfeb7d8723b149a9ab4235bc2d1e0417bd72"} -2023-12-15T15:07:07.009Z INFO initializing dbft {"height": 3293, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:07.010Z debug frostfs-node/morph.go:229 new block {"index": 3292} -2023-12-15T15:07:07.913Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3292, "blockHeight": 3292, "took": "4.339766ms"} -2023-12-15T15:07:08.009Z INFO sending PrepareRequest {"height": 3293, "view": 0} -2023-12-15T15:07:08.009Z INFO sending Commit {"height": 3293, "view": 0} -2023-12-15T15:07:08.010Z INFO approving block {"height": 3293, "hash": "c91b16d337d37df950b7085a52e7de25ee5e642010750244384c89dc137e0054", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15413b72640fdde1f5784272ad79ccddcfd83752e0b934005785e4e04018f4a0"} -2023-12-15T15:07:08.011Z INFO initializing dbft {"height": 3294, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:08.011Z debug frostfs-node/morph.go:229 new block {"index": 3293} -2023-12-15T15:07:08.913Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3293, "blockHeight": 3293, "took": "4.426013ms"} -2023-12-15T15:07:09.011Z INFO sending PrepareRequest {"height": 3294, "view": 0} -2023-12-15T15:07:09.011Z INFO sending Commit {"height": 3294, "view": 0} -2023-12-15T15:07:09.011Z INFO approving block {"height": 3294, "hash": "dcb8fd528771827f9ab805d74411c5b2b7090058d734c6236c3f10b6f364ac57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c91b16d337d37df950b7085a52e7de25ee5e642010750244384c89dc137e0054"} -2023-12-15T15:07:09.013Z INFO initializing dbft {"height": 3295, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:09.013Z debug frostfs-node/morph.go:229 new block {"index": 3294} -2023-12-15T15:07:09.912Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3294, "blockHeight": 3294, "took": "2.884331ms"} -2023-12-15T15:07:10.012Z INFO sending PrepareRequest {"height": 3295, "view": 0} -2023-12-15T15:07:10.012Z INFO sending Commit {"height": 3295, "view": 0} -2023-12-15T15:07:10.012Z INFO approving block {"height": 3295, "hash": "c9fd691d962671abdda30f7d03ac9f9eef61ac12a1df0527f9e3aa0fa0341770", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcb8fd528771827f9ab805d74411c5b2b7090058d734c6236c3f10b6f364ac57"} -2023-12-15T15:07:10.013Z INFO initializing dbft {"height": 3296, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:10.014Z debug frostfs-node/morph.go:229 new block {"index": 3295} -2023-12-15T15:07:10.913Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3295, "blockHeight": 3295, "took": "2.965894ms"} -2023-12-15T15:07:11.014Z INFO sending PrepareRequest {"height": 3296, "view": 0} -2023-12-15T15:07:11.014Z INFO sending Commit {"height": 3296, "view": 0} -2023-12-15T15:07:11.014Z INFO approving block {"height": 3296, "hash": "6cc952a55d37a056d6a0779fc84e772cf7f01cd6c0c73e3328e7ec27c6e53a4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9fd691d962671abdda30f7d03ac9f9eef61ac12a1df0527f9e3aa0fa0341770"} -2023-12-15T15:07:11.015Z INFO initializing dbft {"height": 3297, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:11.015Z debug frostfs-node/morph.go:229 new block {"index": 3296} -2023-12-15T15:07:11.916Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3296, "blockHeight": 3296, "took": "5.187088ms"} -2023-12-15T15:07:12.015Z INFO sending PrepareRequest {"height": 3297, "view": 0} -2023-12-15T15:07:12.016Z INFO sending Commit {"height": 3297, "view": 0} -2023-12-15T15:07:12.016Z INFO approving block {"height": 3297, "hash": "266f75fa598ca6edb34f7308bcf5a73863a6cd6578788980e6fef857a87bb2f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cc952a55d37a056d6a0779fc84e772cf7f01cd6c0c73e3328e7ec27c6e53a4e"} -2023-12-15T15:07:12.017Z INFO initializing dbft {"height": 3298, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:12.018Z debug frostfs-node/morph.go:229 new block {"index": 3297} -2023-12-15T15:07:12.914Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3297, "blockHeight": 3297, "took": "3.078636ms"} -2023-12-15T15:07:13.017Z INFO sending PrepareRequest {"height": 3298, "view": 0} -2023-12-15T15:07:13.017Z INFO sending Commit {"height": 3298, "view": 0} -2023-12-15T15:07:13.017Z INFO approving block {"height": 3298, "hash": "fdca722e452683a0cd93f6d6db2cc1c65ecea2c86a81017c3aecfba473795120", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "266f75fa598ca6edb34f7308bcf5a73863a6cd6578788980e6fef857a87bb2f6"} -2023-12-15T15:07:13.018Z INFO initializing dbft {"height": 3299, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:13.019Z debug frostfs-node/morph.go:229 new block {"index": 3298} -2023-12-15T15:07:13.916Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3298, "blockHeight": 3298, "took": "4.178302ms"} -2023-12-15T15:07:14.019Z INFO sending PrepareRequest {"height": 3299, "view": 0} -2023-12-15T15:07:14.019Z INFO sending Commit {"height": 3299, "view": 0} -2023-12-15T15:07:14.019Z INFO approving block {"height": 3299, "hash": "d7e81300ccc990b1c31b20e2f9eef28d59abfd4ba4bb13d87a92342b639755c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdca722e452683a0cd93f6d6db2cc1c65ecea2c86a81017c3aecfba473795120"} -2023-12-15T15:07:14.020Z INFO initializing dbft {"height": 3300, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:14.021Z debug frostfs-node/morph.go:229 new block {"index": 3299} -2023-12-15T15:07:14.916Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3299, "blockHeight": 3299, "took": "4.097337ms"} -2023-12-15T15:07:15.020Z INFO sending PrepareRequest {"height": 3300, "view": 0} -2023-12-15T15:07:15.020Z INFO sending Commit {"height": 3300, "view": 0} -2023-12-15T15:07:15.021Z INFO approving block {"height": 3300, "hash": "22a3cba31bf814e1a70db46cb119c31a1982fcf1fc48c6aa2b76c760e4a1d8a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7e81300ccc990b1c31b20e2f9eef28d59abfd4ba4bb13d87a92342b639755c9"} -2023-12-15T15:07:15.022Z INFO initializing dbft {"height": 3301, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:15.023Z debug frostfs-node/morph.go:229 new block {"index": 3300} -2023-12-15T15:07:15.917Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3300, "blockHeight": 3300, "took": "3.903344ms"} -2023-12-15T15:07:16.022Z INFO sending PrepareRequest {"height": 3301, "view": 0} -2023-12-15T15:07:16.022Z INFO sending Commit {"height": 3301, "view": 0} -2023-12-15T15:07:16.023Z INFO approving block {"height": 3301, "hash": "1af88ae12ebf1c543f1d6f33541a813648c7be6172e920fd8d37f0aaeac59fa8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22a3cba31bf814e1a70db46cb119c31a1982fcf1fc48c6aa2b76c760e4a1d8a3"} -2023-12-15T15:07:16.025Z INFO initializing dbft {"height": 3302, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:16.025Z debug frostfs-node/morph.go:229 new block {"index": 3301} -2023-12-15T15:07:16.918Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3301, "blockHeight": 3301, "took": "4.26226ms"} -2023-12-15T15:07:17.023Z INFO sending PrepareRequest {"height": 3302, "view": 0} -2023-12-15T15:07:17.024Z INFO sending Commit {"height": 3302, "view": 0} -2023-12-15T15:07:17.024Z INFO approving block {"height": 3302, "hash": "ae8cdebbdf660e88bee93edaa85755acf53302020f965a338afa31b3e63f3000", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1af88ae12ebf1c543f1d6f33541a813648c7be6172e920fd8d37f0aaeac59fa8"} -2023-12-15T15:07:17.025Z INFO initializing dbft {"height": 3303, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:17.025Z debug frostfs-node/morph.go:229 new block {"index": 3302} -2023-12-15T15:07:17.921Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3302, "blockHeight": 3302, "took": "6.978301ms"} -2023-12-15T15:07:18.025Z INFO sending PrepareRequest {"height": 3303, "view": 0} -2023-12-15T15:07:18.025Z INFO sending Commit {"height": 3303, "view": 0} -2023-12-15T15:07:18.025Z INFO approving block {"height": 3303, "hash": "80c1afe8b75dbffa4d51b5d68e5aa3b1b262fcae3143175ea00e5674a4550d19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae8cdebbdf660e88bee93edaa85755acf53302020f965a338afa31b3e63f3000"} -2023-12-15T15:07:18.026Z INFO initializing dbft {"height": 3304, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:18.027Z debug frostfs-node/morph.go:229 new block {"index": 3303} -2023-12-15T15:07:18.918Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3303, "blockHeight": 3303, "took": "2.986015ms"} -2023-12-15T15:07:19.026Z INFO sending PrepareRequest {"height": 3304, "view": 0} -2023-12-15T15:07:19.027Z INFO sending Commit {"height": 3304, "view": 0} -2023-12-15T15:07:19.027Z INFO approving block {"height": 3304, "hash": "2b4c06f6935ea83e18c6a435c3d49f3b6ac4d108152269a57086ba8c08153283", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80c1afe8b75dbffa4d51b5d68e5aa3b1b262fcae3143175ea00e5674a4550d19"} -2023-12-15T15:07:19.028Z INFO initializing dbft {"height": 3305, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:19.028Z debug frostfs-node/morph.go:229 new block {"index": 3304} -2023-12-15T15:07:19.922Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3304, "blockHeight": 3304, "took": "6.522437ms"} -2023-12-15T15:07:20.028Z INFO sending PrepareRequest {"height": 3305, "view": 0} -2023-12-15T15:07:20.028Z INFO sending Commit {"height": 3305, "view": 0} -2023-12-15T15:07:20.028Z INFO approving block {"height": 3305, "hash": "1b1cb4249fa29a83921d01b532bdcb1f990aff554873929100baeef9e0d4cd6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b4c06f6935ea83e18c6a435c3d49f3b6ac4d108152269a57086ba8c08153283"} -2023-12-15T15:07:20.029Z INFO initializing dbft {"height": 3306, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:20.030Z debug frostfs-node/morph.go:229 new block {"index": 3305} -2023-12-15T15:07:20.918Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3305, "blockHeight": 3305, "took": "2.724997ms"} -2023-12-15T15:07:21.029Z INFO sending PrepareRequest {"height": 3306, "view": 0} -2023-12-15T15:07:21.030Z INFO sending Commit {"height": 3306, "view": 0} -2023-12-15T15:07:21.030Z INFO approving block {"height": 3306, "hash": "128566de301a720e6423506c791074001d4c56ce6724166061fcc45266ceec08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b1cb4249fa29a83921d01b532bdcb1f990aff554873929100baeef9e0d4cd6d"} -2023-12-15T15:07:21.031Z INFO initializing dbft {"height": 3307, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:21.031Z debug frostfs-node/morph.go:229 new block {"index": 3306} -2023-12-15T15:07:21.920Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3306, "blockHeight": 3306, "took": "3.318524ms"} -2023-12-15T15:07:22.031Z INFO sending PrepareRequest {"height": 3307, "view": 0} -2023-12-15T15:07:22.031Z INFO sending Commit {"height": 3307, "view": 0} -2023-12-15T15:07:22.031Z INFO approving block {"height": 3307, "hash": "668d8efc37e8cce7504d0e9198387d9bc33f5aedbc155d740cfbebd5f9d345ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "128566de301a720e6423506c791074001d4c56ce6724166061fcc45266ceec08"} -2023-12-15T15:07:22.032Z INFO initializing dbft {"height": 3308, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:22.033Z debug frostfs-node/morph.go:229 new block {"index": 3307} -2023-12-15T15:07:22.920Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3307, "blockHeight": 3307, "took": "3.201491ms"} -2023-12-15T15:07:23.032Z INFO sending PrepareRequest {"height": 3308, "view": 0} -2023-12-15T15:07:23.032Z INFO sending Commit {"height": 3308, "view": 0} -2023-12-15T15:07:23.033Z INFO approving block {"height": 3308, "hash": "7aa7b5ef44aeb7080af98d4f19202e3fa14f4b8c4c3d3d508c7d7fdebe62dec2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "668d8efc37e8cce7504d0e9198387d9bc33f5aedbc155d740cfbebd5f9d345ee"} -2023-12-15T15:07:23.033Z INFO initializing dbft {"height": 3309, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:23.034Z debug frostfs-node/morph.go:229 new block {"index": 3308} -2023-12-15T15:07:23.921Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3308, "blockHeight": 3308, "took": "4.194516ms"} -2023-12-15T15:07:24.034Z INFO sending PrepareRequest {"height": 3309, "view": 0} -2023-12-15T15:07:24.034Z INFO sending Commit {"height": 3309, "view": 0} -2023-12-15T15:07:24.035Z INFO approving block {"height": 3309, "hash": "71d68180a2abb44742e5d8d568983ff5214b41cc4e0e9c7f09deae9cdb0b2d5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7aa7b5ef44aeb7080af98d4f19202e3fa14f4b8c4c3d3d508c7d7fdebe62dec2"} -2023-12-15T15:07:24.036Z INFO initializing dbft {"height": 3310, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:24.036Z debug frostfs-node/morph.go:229 new block {"index": 3309} -2023-12-15T15:07:24.923Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3309, "blockHeight": 3309, "took": "4.496377ms"} -2023-12-15T15:07:25.036Z INFO sending PrepareRequest {"height": 3310, "view": 0} -2023-12-15T15:07:25.036Z INFO sending Commit {"height": 3310, "view": 0} -2023-12-15T15:07:25.036Z INFO approving block {"height": 3310, "hash": "6bd81b2dc10014e2b8372b88ad3c9bc1ef4c6685c5ad1d70e9ea98fe60a6110c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71d68180a2abb44742e5d8d568983ff5214b41cc4e0e9c7f09deae9cdb0b2d5b"} -2023-12-15T15:07:25.037Z INFO initializing dbft {"height": 3311, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:25.038Z debug frostfs-node/morph.go:229 new block {"index": 3310} -2023-12-15T15:07:25.923Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3310, "blockHeight": 3310, "took": "4.151716ms"} -2023-12-15T15:07:26.037Z INFO sending PrepareRequest {"height": 3311, "view": 0} -2023-12-15T15:07:26.038Z INFO sending Commit {"height": 3311, "view": 0} -2023-12-15T15:07:26.038Z INFO approving block {"height": 3311, "hash": "50303c51cff9d2623a4602e01f3df612a96ced730ab476e6cd265221c9a0a590", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bd81b2dc10014e2b8372b88ad3c9bc1ef4c6685c5ad1d70e9ea98fe60a6110c"} -2023-12-15T15:07:26.039Z INFO initializing dbft {"height": 3312, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:26.040Z debug frostfs-node/morph.go:229 new block {"index": 3311} -2023-12-15T15:07:26.925Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3311, "blockHeight": 3311, "took": "5.527932ms"} -2023-12-15T15:07:27.039Z INFO sending PrepareRequest {"height": 3312, "view": 0} -2023-12-15T15:07:27.039Z INFO sending Commit {"height": 3312, "view": 0} -2023-12-15T15:07:27.039Z INFO approving block {"height": 3312, "hash": "f9d7a380fce4d3cc96272779ff014dc7e0693216ae5d8bb12eccb1b160e49a7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50303c51cff9d2623a4602e01f3df612a96ced730ab476e6cd265221c9a0a590"} -2023-12-15T15:07:27.040Z INFO initializing dbft {"height": 3313, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:27.041Z debug frostfs-node/morph.go:229 new block {"index": 3312} -2023-12-15T15:07:27.924Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3312, "blockHeight": 3312, "took": "3.516513ms"} -2023-12-15T15:07:28.040Z INFO sending PrepareRequest {"height": 3313, "view": 0} -2023-12-15T15:07:28.041Z INFO sending Commit {"height": 3313, "view": 0} -2023-12-15T15:07:28.041Z INFO approving block {"height": 3313, "hash": "03ad54eaac364af222014a1d7602cfba7ba7a103560ad15c66b53c37b0ccefbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9d7a380fce4d3cc96272779ff014dc7e0693216ae5d8bb12eccb1b160e49a7f"} -2023-12-15T15:07:28.042Z INFO initializing dbft {"height": 3314, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:28.043Z debug frostfs-node/morph.go:229 new block {"index": 3313} -2023-12-15T15:07:28.047Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 14, "iteration": 2, "error": "no data for 1 iteration in 14 epoch for consumers's trusts"} -2023-12-15T15:07:28.049Z info settlement/calls.go:106 start basic income distribution {"epoch": 14} -2023-12-15T15:07:28.928Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3313, "blockHeight": 3313, "took": "6.603522ms"} -2023-12-15T15:07:29.042Z INFO sending PrepareRequest {"height": 3314, "view": 0} -2023-12-15T15:07:29.042Z INFO sending Commit {"height": 3314, "view": 0} -2023-12-15T15:07:29.043Z INFO approving block {"height": 3314, "hash": "5c672f45eafc5c98676c48fb231a5979cf49d9c82e24a79d7723da68a946eddf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03ad54eaac364af222014a1d7602cfba7ba7a103560ad15c66b53c37b0ccefbb"} -2023-12-15T15:07:29.044Z INFO initializing dbft {"height": 3315, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:29.044Z debug frostfs-node/morph.go:229 new block {"index": 3314} -2023-12-15T15:07:29.926Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3314, "blockHeight": 3314, "took": "4.163782ms"} -2023-12-15T15:07:30.043Z INFO sending PrepareRequest {"height": 3315, "view": 0} -2023-12-15T15:07:30.044Z INFO sending Commit {"height": 3315, "view": 0} -2023-12-15T15:07:30.044Z INFO approving block {"height": 3315, "hash": "edbe21142172d120109ab929bd63a7b0fead6d0147ca2af4fc11359ae2f751d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c672f45eafc5c98676c48fb231a5979cf49d9c82e24a79d7723da68a946eddf"} -2023-12-15T15:07:30.045Z INFO initializing dbft {"height": 3316, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:30.046Z debug frostfs-node/morph.go:229 new block {"index": 3315} -2023-12-15T15:07:30.927Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3315, "blockHeight": 3315, "took": "4.537593ms"} -2023-12-15T15:07:31.045Z INFO sending PrepareRequest {"height": 3316, "view": 0} -2023-12-15T15:07:31.045Z INFO sending Commit {"height": 3316, "view": 0} -2023-12-15T15:07:31.045Z INFO approving block {"height": 3316, "hash": "45529443886e4b30b018286373d068fc968e99ee8b521148bbb99afeac110644", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edbe21142172d120109ab929bd63a7b0fead6d0147ca2af4fc11359ae2f751d0"} -2023-12-15T15:07:31.046Z INFO initializing dbft {"height": 3317, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:31.047Z debug frostfs-node/morph.go:229 new block {"index": 3316} -2023-12-15T15:07:31.926Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3316, "blockHeight": 3316, "took": "3.102231ms"} -2023-12-15T15:07:32.047Z INFO sending PrepareRequest {"height": 3317, "view": 0} -2023-12-15T15:07:32.047Z INFO sending Commit {"height": 3317, "view": 0} -2023-12-15T15:07:32.048Z INFO approving block {"height": 3317, "hash": "2bfe14393abb2202d094f000d6cdceb39a56078d0c79965741e1b0fa637d307c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45529443886e4b30b018286373d068fc968e99ee8b521148bbb99afeac110644"} -2023-12-15T15:07:32.049Z INFO initializing dbft {"height": 3318, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:32.049Z debug frostfs-node/morph.go:229 new block {"index": 3317} -2023-12-15T15:07:32.051Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:07:32.052Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:07:32.052Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:07:32.930Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3317, "blockHeight": 3317, "took": "6.022685ms"} -2023-12-15T15:07:33.048Z INFO sending PrepareRequest {"height": 3318, "view": 0} -2023-12-15T15:07:33.048Z INFO sending Commit {"height": 3318, "view": 0} -2023-12-15T15:07:33.049Z INFO approving block {"height": 3318, "hash": "6c40ab2913d28d4486946fd7156a7a1b96b3ef0fcdc41feb7541d206e0ce4608", "tx_count": 2, "merkle": "caf9535e485ff7d2d35766d6bdbb3b5ac5ebe635f7c044d03c0504906637e7fe", "prev": "2bfe14393abb2202d094f000d6cdceb39a56078d0c79965741e1b0fa637d307c"} -2023-12-15T15:07:33.049Z INFO runtime log {"tx": "1bc73736a706c44729f94b67b7186ace221af24eb66637e4f71d1d98cf0a9506", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:07:33.049Z INFO runtime log {"tx": "1bc73736a706c44729f94b67b7186ace221af24eb66637e4f71d1d98cf0a9506", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:07:33.050Z INFO initializing dbft {"height": 3319, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:33.051Z debug frostfs-node/morph.go:229 new block {"index": 3318} -2023-12-15T15:07:33.929Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3318, "blockHeight": 3318, "took": "4.945805ms"} -2023-12-15T15:07:34.050Z INFO sending PrepareRequest {"height": 3319, "view": 0} -2023-12-15T15:07:34.050Z INFO sending Commit {"height": 3319, "view": 0} -2023-12-15T15:07:34.050Z INFO approving block {"height": 3319, "hash": "303427b79835acb7c218642d582b3ad9464461fefd0dc17d556a6067990a6dba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c40ab2913d28d4486946fd7156a7a1b96b3ef0fcdc41feb7541d206e0ce4608"} -2023-12-15T15:07:34.051Z INFO initializing dbft {"height": 3320, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:34.051Z debug frostfs-node/morph.go:229 new block {"index": 3319} -2023-12-15T15:07:34.929Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3319, "blockHeight": 3319, "took": "4.161254ms"} -2023-12-15T15:07:35.051Z INFO sending PrepareRequest {"height": 3320, "view": 0} -2023-12-15T15:07:35.051Z INFO sending Commit {"height": 3320, "view": 0} -2023-12-15T15:07:35.052Z INFO approving block {"height": 3320, "hash": "c43c4f08122fdb42f6086cd5753b7e23d94f36adc24d93b1a60259f9d66c7e00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "303427b79835acb7c218642d582b3ad9464461fefd0dc17d556a6067990a6dba"} -2023-12-15T15:07:35.052Z INFO initializing dbft {"height": 3321, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:35.053Z debug frostfs-node/morph.go:229 new block {"index": 3320} -2023-12-15T15:07:35.929Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3320, "blockHeight": 3320, "took": "3.74182ms"} -2023-12-15T15:07:36.053Z INFO sending PrepareRequest {"height": 3321, "view": 0} -2023-12-15T15:07:36.053Z INFO sending Commit {"height": 3321, "view": 0} -2023-12-15T15:07:36.054Z INFO approving block {"height": 3321, "hash": "f4a2dc372128ddd8791e637678d867c960857f7b0938327c1f27deb71b5b60bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c43c4f08122fdb42f6086cd5753b7e23d94f36adc24d93b1a60259f9d66c7e00"} -2023-12-15T15:07:36.055Z INFO initializing dbft {"height": 3322, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:36.056Z debug frostfs-node/morph.go:229 new block {"index": 3321} -2023-12-15T15:07:36.930Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3321, "blockHeight": 3321, "took": "4.250511ms"} -2023-12-15T15:07:37.054Z INFO sending PrepareRequest {"height": 3322, "view": 0} -2023-12-15T15:07:37.054Z INFO sending Commit {"height": 3322, "view": 0} -2023-12-15T15:07:37.055Z INFO approving block {"height": 3322, "hash": "c392276be91c142723bc8886ba70339158b3cd9ef8d74d77481daf15e8fd1a0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4a2dc372128ddd8791e637678d867c960857f7b0938327c1f27deb71b5b60bb"} -2023-12-15T15:07:37.056Z INFO initializing dbft {"height": 3323, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:37.057Z debug frostfs-node/morph.go:229 new block {"index": 3322} -2023-12-15T15:07:37.930Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3322, "blockHeight": 3322, "took": "3.694228ms"} -2023-12-15T15:07:38.056Z INFO sending PrepareRequest {"height": 3323, "view": 0} -2023-12-15T15:07:38.056Z INFO sending Commit {"height": 3323, "view": 0} -2023-12-15T15:07:38.057Z INFO approving block {"height": 3323, "hash": "e3bfef3bac1ea3462d24a2c10cefcee3751c2ec86ed2f954cf6acd0e38121e75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c392276be91c142723bc8886ba70339158b3cd9ef8d74d77481daf15e8fd1a0e"} -2023-12-15T15:07:38.058Z INFO initializing dbft {"height": 3324, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:38.059Z debug frostfs-node/morph.go:229 new block {"index": 3323} -2023-12-15T15:07:38.932Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3323, "blockHeight": 3323, "took": "5.617473ms"} -2023-12-15T15:07:39.057Z INFO sending PrepareRequest {"height": 3324, "view": 0} -2023-12-15T15:07:39.057Z INFO sending Commit {"height": 3324, "view": 0} -2023-12-15T15:07:39.058Z INFO approving block {"height": 3324, "hash": "4ca4a1c575b2e07705a7bda5ef1a7776081bd90eb60464d496ca4dcc1cc413be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3bfef3bac1ea3462d24a2c10cefcee3751c2ec86ed2f954cf6acd0e38121e75"} -2023-12-15T15:07:39.059Z INFO initializing dbft {"height": 3325, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:39.059Z debug frostfs-node/morph.go:229 new block {"index": 3324} -2023-12-15T15:07:39.930Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3324, "blockHeight": 3324, "took": "3.452061ms"} -2023-12-15T15:07:40.059Z INFO sending PrepareRequest {"height": 3325, "view": 0} -2023-12-15T15:07:40.059Z INFO sending Commit {"height": 3325, "view": 0} -2023-12-15T15:07:40.060Z INFO approving block {"height": 3325, "hash": "ca2be94074c0b27fa1f1ed7bac6570d0ffa4fde25bd4e14712da624fe0d386b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ca4a1c575b2e07705a7bda5ef1a7776081bd90eb60464d496ca4dcc1cc413be"} -2023-12-15T15:07:40.061Z INFO initializing dbft {"height": 3326, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:40.061Z debug frostfs-node/morph.go:229 new block {"index": 3325} -2023-12-15T15:07:40.930Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3325, "blockHeight": 3325, "took": "3.204554ms"} -2023-12-15T15:07:41.061Z INFO sending PrepareRequest {"height": 3326, "view": 0} -2023-12-15T15:07:41.061Z INFO sending Commit {"height": 3326, "view": 0} -2023-12-15T15:07:41.061Z INFO approving block {"height": 3326, "hash": "75b54e387fe0021ee9a1249128c6b6d2cfb868be2934af14b7d70c5df3794684", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca2be94074c0b27fa1f1ed7bac6570d0ffa4fde25bd4e14712da624fe0d386b0"} -2023-12-15T15:07:41.062Z INFO initializing dbft {"height": 3327, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:41.063Z debug frostfs-node/morph.go:229 new block {"index": 3326} -2023-12-15T15:07:41.933Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3326, "blockHeight": 3326, "took": "5.522575ms"} -2023-12-15T15:07:42.063Z INFO sending PrepareRequest {"height": 3327, "view": 0} -2023-12-15T15:07:42.063Z INFO sending Commit {"height": 3327, "view": 0} -2023-12-15T15:07:42.064Z INFO approving block {"height": 3327, "hash": "8a4996b7bfd82e994a1e2718c607a7dd5bbcacb637a37975c6d3bc79c524497a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75b54e387fe0021ee9a1249128c6b6d2cfb868be2934af14b7d70c5df3794684"} -2023-12-15T15:07:42.065Z INFO initializing dbft {"height": 3328, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:42.066Z debug frostfs-node/morph.go:229 new block {"index": 3327} -2023-12-15T15:07:42.934Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 3327, "blockHeight": 3327, "took": "5.775661ms"} -2023-12-15T15:07:43.064Z INFO sending PrepareRequest {"height": 3328, "view": 0} -2023-12-15T15:07:43.065Z INFO sending Commit {"height": 3328, "view": 0} -2023-12-15T15:07:43.065Z INFO approving block {"height": 3328, "hash": "76c3cbf9a3225c730db5ea06687ef79aa8ea8371af969eb2b460ff89ce0927c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a4996b7bfd82e994a1e2718c607a7dd5bbcacb637a37975c6d3bc79c524497a"} -2023-12-15T15:07:43.066Z INFO initializing dbft {"height": 3329, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:43.067Z debug frostfs-node/morph.go:229 new block {"index": 3328} -2023-12-15T15:07:43.932Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3328, "blockHeight": 3328, "took": "3.117101ms"} -2023-12-15T15:07:44.066Z INFO sending PrepareRequest {"height": 3329, "view": 0} -2023-12-15T15:07:44.066Z INFO sending Commit {"height": 3329, "view": 0} -2023-12-15T15:07:44.066Z INFO approving block {"height": 3329, "hash": "a27b49a97173d1776e94cbcf7e786779f5ff2768d1514a170b42ae30ad793e36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76c3cbf9a3225c730db5ea06687ef79aa8ea8371af969eb2b460ff89ce0927c5"} -2023-12-15T15:07:44.068Z INFO initializing dbft {"height": 3330, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:44.068Z debug frostfs-node/morph.go:229 new block {"index": 3329} -2023-12-15T15:07:44.934Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3329, "blockHeight": 3329, "took": "4.249825ms"} -2023-12-15T15:07:45.067Z INFO sending PrepareRequest {"height": 3330, "view": 0} -2023-12-15T15:07:45.068Z INFO sending Commit {"height": 3330, "view": 0} -2023-12-15T15:07:45.068Z INFO approving block {"height": 3330, "hash": "c610c41631ace94c518fdd135f3b116a19c0b4e713b3635976ccc4bcb921fc8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a27b49a97173d1776e94cbcf7e786779f5ff2768d1514a170b42ae30ad793e36"} -2023-12-15T15:07:45.069Z INFO initializing dbft {"height": 3331, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:45.070Z debug frostfs-node/morph.go:229 new block {"index": 3330} -2023-12-15T15:07:45.935Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3330, "blockHeight": 3330, "took": "4.702107ms"} -2023-12-15T15:07:46.069Z INFO sending PrepareRequest {"height": 3331, "view": 0} -2023-12-15T15:07:46.069Z INFO sending Commit {"height": 3331, "view": 0} -2023-12-15T15:07:46.069Z INFO approving block {"height": 3331, "hash": "29d914f98eee76c63eaff226f6e449e7e9aa94e8dd11ee36bd12922536c62084", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c610c41631ace94c518fdd135f3b116a19c0b4e713b3635976ccc4bcb921fc8c"} -2023-12-15T15:07:46.070Z INFO initializing dbft {"height": 3332, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:46.070Z debug frostfs-node/morph.go:229 new block {"index": 3331} -2023-12-15T15:07:46.934Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3331, "blockHeight": 3331, "took": "3.531983ms"} -2023-12-15T15:07:47.070Z INFO sending PrepareRequest {"height": 3332, "view": 0} -2023-12-15T15:07:47.071Z INFO sending Commit {"height": 3332, "view": 0} -2023-12-15T15:07:47.071Z INFO approving block {"height": 3332, "hash": "11b9ab0f2ce7a9721099eaa3447ccbfacf3d7c1928eb94fcae6c9932f10f0dd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29d914f98eee76c63eaff226f6e449e7e9aa94e8dd11ee36bd12922536c62084"} -2023-12-15T15:07:47.072Z INFO initializing dbft {"height": 3333, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:47.073Z debug frostfs-node/morph.go:229 new block {"index": 3332} -2023-12-15T15:07:47.936Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3332, "blockHeight": 3332, "took": "5.083204ms"} -2023-12-15T15:07:48.072Z INFO sending PrepareRequest {"height": 3333, "view": 0} -2023-12-15T15:07:48.072Z INFO sending Commit {"height": 3333, "view": 0} -2023-12-15T15:07:48.073Z INFO approving block {"height": 3333, "hash": "f17d63d0d5f74f34c99b99bfd2ef3a8e4b296a48eae5ce8a0c4bad3f81ef1b25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11b9ab0f2ce7a9721099eaa3447ccbfacf3d7c1928eb94fcae6c9932f10f0dd0"} -2023-12-15T15:07:48.074Z INFO initializing dbft {"height": 3334, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:48.075Z debug frostfs-node/morph.go:229 new block {"index": 3333} -2023-12-15T15:07:48.935Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3333, "blockHeight": 3333, "took": "3.623955ms"} -2023-12-15T15:07:49.074Z INFO sending PrepareRequest {"height": 3334, "view": 0} -2023-12-15T15:07:49.074Z INFO sending Commit {"height": 3334, "view": 0} -2023-12-15T15:07:49.074Z INFO approving block {"height": 3334, "hash": "78408e970948de7ce144f9c673a2d81f05ca6cd39e67edc1f9704bdb18a803b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f17d63d0d5f74f34c99b99bfd2ef3a8e4b296a48eae5ce8a0c4bad3f81ef1b25"} -2023-12-15T15:07:49.075Z INFO initializing dbft {"height": 3335, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:49.076Z debug frostfs-node/morph.go:229 new block {"index": 3334} -2023-12-15T15:07:49.935Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3334, "blockHeight": 3334, "took": "3.080006ms"} -2023-12-15T15:07:50.075Z INFO sending PrepareRequest {"height": 3335, "view": 0} -2023-12-15T15:07:50.075Z INFO sending Commit {"height": 3335, "view": 0} -2023-12-15T15:07:50.076Z INFO approving block {"height": 3335, "hash": "6e510afb8256a0d9876bcde2cac3bbb5349b32e61c49f312297f0af2305c12f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78408e970948de7ce144f9c673a2d81f05ca6cd39e67edc1f9704bdb18a803b3"} -2023-12-15T15:07:50.077Z INFO initializing dbft {"height": 3336, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:50.078Z debug frostfs-node/morph.go:229 new block {"index": 3335} -2023-12-15T15:07:50.938Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3335, "blockHeight": 3335, "took": "4.860299ms"} -2023-12-15T15:07:51.076Z INFO sending PrepareRequest {"height": 3336, "view": 0} -2023-12-15T15:07:51.077Z INFO sending Commit {"height": 3336, "view": 0} -2023-12-15T15:07:51.077Z INFO approving block {"height": 3336, "hash": "a533b1ec673f2191d22fcd07d5414bccba6c49b98bae4e3892661535682e4976", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e510afb8256a0d9876bcde2cac3bbb5349b32e61c49f312297f0af2305c12f1"} -2023-12-15T15:07:51.078Z INFO initializing dbft {"height": 3337, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:51.078Z debug frostfs-node/morph.go:229 new block {"index": 3336} -2023-12-15T15:07:51.936Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3336, "blockHeight": 3336, "took": "2.899154ms"} -2023-12-15T15:07:52.078Z INFO sending PrepareRequest {"height": 3337, "view": 0} -2023-12-15T15:07:52.078Z INFO sending Commit {"height": 3337, "view": 0} -2023-12-15T15:07:52.078Z INFO approving block {"height": 3337, "hash": "fd1353424230cd1c385180b9083f4b38e5c9b9d5764949c12487230830a59b92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a533b1ec673f2191d22fcd07d5414bccba6c49b98bae4e3892661535682e4976"} -2023-12-15T15:07:52.079Z INFO initializing dbft {"height": 3338, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:52.080Z debug frostfs-node/morph.go:229 new block {"index": 3337} -2023-12-15T15:07:52.937Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3337, "blockHeight": 3337, "took": "3.020468ms"} -2023-12-15T15:07:53.079Z INFO sending PrepareRequest {"height": 3338, "view": 0} -2023-12-15T15:07:53.080Z INFO sending Commit {"height": 3338, "view": 0} -2023-12-15T15:07:53.080Z INFO approving block {"height": 3338, "hash": "6e39667bd4322911d7ccc0882d8aaef2a7680f11207844abedcb9b31c1372a9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd1353424230cd1c385180b9083f4b38e5c9b9d5764949c12487230830a59b92"} -2023-12-15T15:07:53.081Z INFO initializing dbft {"height": 3339, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:53.082Z debug frostfs-node/morph.go:229 new block {"index": 3338} -2023-12-15T15:07:53.937Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3338, "blockHeight": 3338, "took": "3.08655ms"} -2023-12-15T15:07:54.081Z INFO sending PrepareRequest {"height": 3339, "view": 0} -2023-12-15T15:07:54.081Z INFO sending Commit {"height": 3339, "view": 0} -2023-12-15T15:07:54.082Z INFO approving block {"height": 3339, "hash": "8e6889b8357e487a400c2b626e4713a59e608e8c10b632e5cd7caa2c1e3e02be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e39667bd4322911d7ccc0882d8aaef2a7680f11207844abedcb9b31c1372a9e"} -2023-12-15T15:07:54.083Z INFO initializing dbft {"height": 3340, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:54.084Z debug frostfs-node/morph.go:229 new block {"index": 3339} -2023-12-15T15:07:54.939Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3339, "blockHeight": 3339, "took": "4.001966ms"} -2023-12-15T15:07:55.082Z INFO sending PrepareRequest {"height": 3340, "view": 0} -2023-12-15T15:07:55.083Z INFO sending Commit {"height": 3340, "view": 0} -2023-12-15T15:07:55.083Z INFO approving block {"height": 3340, "hash": "152eb90489512e08dfedfc73f79159026759737ea5688ffe7462d3a25ae5fd44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e6889b8357e487a400c2b626e4713a59e608e8c10b632e5cd7caa2c1e3e02be"} -2023-12-15T15:07:55.084Z INFO initializing dbft {"height": 3341, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:55.084Z debug frostfs-node/morph.go:229 new block {"index": 3340} -2023-12-15T15:07:55.939Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3340, "blockHeight": 3340, "took": "3.610192ms"} -2023-12-15T15:07:56.084Z INFO sending PrepareRequest {"height": 3341, "view": 0} -2023-12-15T15:07:56.084Z INFO sending Commit {"height": 3341, "view": 0} -2023-12-15T15:07:56.085Z INFO approving block {"height": 3341, "hash": "f302850f54fd32a95817a236ade301bc3464ec7e0b9c1ed47793aecf1e584031", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "152eb90489512e08dfedfc73f79159026759737ea5688ffe7462d3a25ae5fd44"} -2023-12-15T15:07:56.086Z INFO initializing dbft {"height": 3342, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:56.086Z debug frostfs-node/morph.go:229 new block {"index": 3341} -2023-12-15T15:07:56.940Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3341, "blockHeight": 3341, "took": "4.547047ms"} -2023-12-15T15:07:57.086Z INFO sending PrepareRequest {"height": 3342, "view": 0} -2023-12-15T15:07:57.086Z INFO sending Commit {"height": 3342, "view": 0} -2023-12-15T15:07:57.087Z INFO approving block {"height": 3342, "hash": "84601a121442127dc3ff3d25ff0beb5aafac28f719ccbdd0700cef694e0bb295", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f302850f54fd32a95817a236ade301bc3464ec7e0b9c1ed47793aecf1e584031"} -2023-12-15T15:07:57.088Z INFO initializing dbft {"height": 3343, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:57.089Z debug frostfs-node/morph.go:229 new block {"index": 3342} -2023-12-15T15:07:57.942Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3342, "blockHeight": 3342, "took": "5.161465ms"} -2023-12-15T15:07:58.088Z INFO sending PrepareRequest {"height": 3343, "view": 0} -2023-12-15T15:07:58.088Z INFO sending Commit {"height": 3343, "view": 0} -2023-12-15T15:07:58.089Z INFO approving block {"height": 3343, "hash": "d369c320aa1276d8bc7d9bbd669fabcefb886c0ab0b73ea5fb3484473b6a8686", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84601a121442127dc3ff3d25ff0beb5aafac28f719ccbdd0700cef694e0bb295"} -2023-12-15T15:07:58.091Z INFO initializing dbft {"height": 3344, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:58.091Z debug frostfs-node/morph.go:229 new block {"index": 3343} -2023-12-15T15:07:58.942Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3343, "blockHeight": 3343, "took": "4.571924ms"} -2023-12-15T15:07:59.090Z INFO sending PrepareRequest {"height": 3344, "view": 0} -2023-12-15T15:07:59.090Z INFO sending Commit {"height": 3344, "view": 0} -2023-12-15T15:07:59.090Z INFO approving block {"height": 3344, "hash": "c35ae46ff5b7774800d17f7ec1cc28ccb15e4be546e1c34dc234c7cd40225259", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d369c320aa1276d8bc7d9bbd669fabcefb886c0ab0b73ea5fb3484473b6a8686"} -2023-12-15T15:07:59.092Z INFO initializing dbft {"height": 3345, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:07:59.092Z debug frostfs-node/morph.go:229 new block {"index": 3344} -2023-12-15T15:07:59.943Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3344, "blockHeight": 3344, "took": "4.544576ms"} -2023-12-15T15:08:00.091Z INFO sending PrepareRequest {"height": 3345, "view": 0} -2023-12-15T15:08:00.091Z INFO sending Commit {"height": 3345, "view": 0} -2023-12-15T15:08:00.092Z INFO approving block {"height": 3345, "hash": "e17a5233f930d29525abd8a77763a240ae7db249e7bee2170080c7ab07ddc58c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c35ae46ff5b7774800d17f7ec1cc28ccb15e4be546e1c34dc234c7cd40225259"} -2023-12-15T15:08:00.093Z INFO initializing dbft {"height": 3346, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:00.093Z debug frostfs-node/morph.go:229 new block {"index": 3345} -2023-12-15T15:08:00.943Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3345, "blockHeight": 3345, "took": "4.712617ms"} -2023-12-15T15:08:01.092Z INFO sending PrepareRequest {"height": 3346, "view": 0} -2023-12-15T15:08:01.093Z INFO sending Commit {"height": 3346, "view": 0} -2023-12-15T15:08:01.093Z INFO approving block {"height": 3346, "hash": "1677e011b8ab1106fc5fffe0cfe8e90fddcf834f7a12c8471cf03759ad7f5428", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e17a5233f930d29525abd8a77763a240ae7db249e7bee2170080c7ab07ddc58c"} -2023-12-15T15:08:01.094Z INFO initializing dbft {"height": 3347, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:01.095Z debug frostfs-node/morph.go:229 new block {"index": 3346} -2023-12-15T15:08:01.944Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3346, "blockHeight": 3346, "took": "4.649696ms"} -2023-12-15T15:08:02.094Z INFO sending PrepareRequest {"height": 3347, "view": 0} -2023-12-15T15:08:02.094Z INFO sending Commit {"height": 3347, "view": 0} -2023-12-15T15:08:02.095Z INFO approving block {"height": 3347, "hash": "cfa151996ac9a6c907519ff2493a191f5a75212a74111feda2efdd9a49a568e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1677e011b8ab1106fc5fffe0cfe8e90fddcf834f7a12c8471cf03759ad7f5428"} -2023-12-15T15:08:02.096Z INFO initializing dbft {"height": 3348, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:02.096Z debug frostfs-node/morph.go:229 new block {"index": 3347} -2023-12-15T15:08:02.945Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3347, "blockHeight": 3347, "took": "5.052338ms"} -2023-12-15T15:08:03.095Z INFO sending PrepareRequest {"height": 3348, "view": 0} -2023-12-15T15:08:03.096Z INFO sending Commit {"height": 3348, "view": 0} -2023-12-15T15:08:03.096Z INFO approving block {"height": 3348, "hash": "5e78b05a7681af4d50ece10952451d82f1ddf1c22a080f11b4f7415e0ff4e414", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfa151996ac9a6c907519ff2493a191f5a75212a74111feda2efdd9a49a568e3"} -2023-12-15T15:08:03.097Z INFO initializing dbft {"height": 3349, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:03.098Z debug frostfs-node/morph.go:229 new block {"index": 3348} -2023-12-15T15:08:03.945Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3348, "blockHeight": 3348, "took": "4.597558ms"} -2023-12-15T15:08:04.097Z INFO sending PrepareRequest {"height": 3349, "view": 0} -2023-12-15T15:08:04.097Z INFO sending Commit {"height": 3349, "view": 0} -2023-12-15T15:08:04.098Z INFO approving block {"height": 3349, "hash": "67bf9451d7bfc1f7f123ee462d676a6ca4d4651c64b240289538a7de509e6c64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e78b05a7681af4d50ece10952451d82f1ddf1c22a080f11b4f7415e0ff4e414"} -2023-12-15T15:08:04.099Z INFO initializing dbft {"height": 3350, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:04.099Z debug frostfs-node/morph.go:229 new block {"index": 3349} -2023-12-15T15:08:04.945Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3349, "blockHeight": 3349, "took": "4.454049ms"} -2023-12-15T15:08:05.099Z INFO sending PrepareRequest {"height": 3350, "view": 0} -2023-12-15T15:08:05.099Z INFO sending Commit {"height": 3350, "view": 0} -2023-12-15T15:08:05.099Z INFO approving block {"height": 3350, "hash": "5ff17f94d0acf51c6238793f5f3503e8da97f48a28467c76e7d97680ff3b68ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67bf9451d7bfc1f7f123ee462d676a6ca4d4651c64b240289538a7de509e6c64"} -2023-12-15T15:08:05.100Z INFO initializing dbft {"height": 3351, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:05.101Z debug frostfs-node/morph.go:229 new block {"index": 3350} -2023-12-15T15:08:05.944Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3350, "blockHeight": 3350, "took": "2.916485ms"} -2023-12-15T15:08:06.100Z INFO sending PrepareRequest {"height": 3351, "view": 0} -2023-12-15T15:08:06.100Z INFO sending Commit {"height": 3351, "view": 0} -2023-12-15T15:08:06.100Z INFO approving block {"height": 3351, "hash": "f503af922458c131431e0ad1fbd21f84172412720038ff950f17ec07d582935e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ff17f94d0acf51c6238793f5f3503e8da97f48a28467c76e7d97680ff3b68ed"} -2023-12-15T15:08:06.101Z INFO initializing dbft {"height": 3352, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:06.102Z debug frostfs-node/morph.go:229 new block {"index": 3351} -2023-12-15T15:08:06.945Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3351, "blockHeight": 3351, "took": "3.141872ms"} -2023-12-15T15:08:07.102Z INFO sending PrepareRequest {"height": 3352, "view": 0} -2023-12-15T15:08:07.102Z INFO sending Commit {"height": 3352, "view": 0} -2023-12-15T15:08:07.102Z INFO approving block {"height": 3352, "hash": "f9bcf2a727741c6f3ef9130a87f96a5ff886da08bd33bfa952cbb3fbfe333e51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f503af922458c131431e0ad1fbd21f84172412720038ff950f17ec07d582935e"} -2023-12-15T15:08:07.103Z INFO initializing dbft {"height": 3353, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:07.104Z debug frostfs-node/morph.go:229 new block {"index": 3352} -2023-12-15T15:08:07.946Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3352, "blockHeight": 3352, "took": "3.20444ms"} -2023-12-15T15:08:08.103Z INFO sending PrepareRequest {"height": 3353, "view": 0} -2023-12-15T15:08:08.103Z INFO sending Commit {"height": 3353, "view": 0} -2023-12-15T15:08:08.103Z INFO approving block {"height": 3353, "hash": "7fa738dd2367690c34f882251aee8eebd8eba4707f88b95bd5be4e05762687c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9bcf2a727741c6f3ef9130a87f96a5ff886da08bd33bfa952cbb3fbfe333e51"} -2023-12-15T15:08:08.104Z INFO initializing dbft {"height": 3354, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:08.105Z debug frostfs-node/morph.go:229 new block {"index": 3353} -2023-12-15T15:08:08.947Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3353, "blockHeight": 3353, "took": "4.559653ms"} -2023-12-15T15:08:09.105Z INFO sending PrepareRequest {"height": 3354, "view": 0} -2023-12-15T15:08:09.105Z INFO sending Commit {"height": 3354, "view": 0} -2023-12-15T15:08:09.105Z INFO approving block {"height": 3354, "hash": "8ecaf04f7462fff9b8edaba796d25ec83c0b78027dd43a0824097698fc006f70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fa738dd2367690c34f882251aee8eebd8eba4707f88b95bd5be4e05762687c2"} -2023-12-15T15:08:09.106Z INFO initializing dbft {"height": 3355, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:09.107Z debug frostfs-node/morph.go:229 new block {"index": 3354} -2023-12-15T15:08:09.947Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3354, "blockHeight": 3354, "took": "3.483368ms"} -2023-12-15T15:08:10.106Z INFO sending PrepareRequest {"height": 3355, "view": 0} -2023-12-15T15:08:10.106Z INFO sending Commit {"height": 3355, "view": 0} -2023-12-15T15:08:10.107Z INFO approving block {"height": 3355, "hash": "f8001bd8c7583bed33b67cf1f88dbc94b58a9123ac46bae2130d6ffc40ed96dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ecaf04f7462fff9b8edaba796d25ec83c0b78027dd43a0824097698fc006f70"} -2023-12-15T15:08:10.108Z INFO initializing dbft {"height": 3356, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:10.109Z debug frostfs-node/morph.go:229 new block {"index": 3355} -2023-12-15T15:08:10.948Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3355, "blockHeight": 3355, "took": "3.4174ms"} -2023-12-15T15:08:11.108Z INFO sending PrepareRequest {"height": 3356, "view": 0} -2023-12-15T15:08:11.108Z INFO sending Commit {"height": 3356, "view": 0} -2023-12-15T15:08:11.109Z INFO approving block {"height": 3356, "hash": "a600251dcd83dbec42bcb71f6dc62eacbee15b30683cec97f495370ae1a5b791", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8001bd8c7583bed33b67cf1f88dbc94b58a9123ac46bae2130d6ffc40ed96dc"} -2023-12-15T15:08:11.110Z INFO initializing dbft {"height": 3357, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:11.110Z debug frostfs-node/morph.go:229 new block {"index": 3356} -2023-12-15T15:08:11.950Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3356, "blockHeight": 3356, "took": "5.355494ms"} -2023-12-15T15:08:12.110Z INFO sending PrepareRequest {"height": 3357, "view": 0} -2023-12-15T15:08:12.110Z INFO sending Commit {"height": 3357, "view": 0} -2023-12-15T15:08:12.110Z INFO approving block {"height": 3357, "hash": "41c68c0d69f1ef0ac635448ca944bc9fb7487756a590f15207bbfbfa3e68e159", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a600251dcd83dbec42bcb71f6dc62eacbee15b30683cec97f495370ae1a5b791"} -2023-12-15T15:08:12.112Z INFO initializing dbft {"height": 3358, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:12.112Z debug frostfs-node/morph.go:229 new block {"index": 3357} -2023-12-15T15:08:12.955Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3357, "blockHeight": 3357, "took": "9.501741ms"} -2023-12-15T15:08:13.111Z INFO sending PrepareRequest {"height": 3358, "view": 0} -2023-12-15T15:08:13.112Z INFO sending Commit {"height": 3358, "view": 0} -2023-12-15T15:08:13.112Z INFO approving block {"height": 3358, "hash": "0a64655c7f20147801c3dbe1a683ad026f0888db04f27406041e8168d00ad7a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41c68c0d69f1ef0ac635448ca944bc9fb7487756a590f15207bbfbfa3e68e159"} -2023-12-15T15:08:13.113Z INFO initializing dbft {"height": 3359, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:13.113Z debug frostfs-node/morph.go:229 new block {"index": 3358} -2023-12-15T15:08:13.950Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3358, "blockHeight": 3358, "took": "3.522884ms"} -2023-12-15T15:08:14.113Z INFO sending PrepareRequest {"height": 3359, "view": 0} -2023-12-15T15:08:14.113Z INFO sending Commit {"height": 3359, "view": 0} -2023-12-15T15:08:14.114Z INFO approving block {"height": 3359, "hash": "2383cd1089d22302699eae55db9a4773657a4b0848e916df2615988af3495950", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a64655c7f20147801c3dbe1a683ad026f0888db04f27406041e8168d00ad7a6"} -2023-12-15T15:08:14.115Z INFO initializing dbft {"height": 3360, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:14.116Z debug frostfs-node/morph.go:229 new block {"index": 3359} -2023-12-15T15:08:14.950Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3359, "blockHeight": 3359, "took": "2.964818ms"} -2023-12-15T15:08:15.114Z INFO sending PrepareRequest {"height": 3360, "view": 0} -2023-12-15T15:08:15.115Z INFO sending Commit {"height": 3360, "view": 0} -2023-12-15T15:08:15.115Z INFO approving block {"height": 3360, "hash": "3873e9f183bfe407b3eb200df873ecb7c8864c5050f2c6bd7a6bd1f0e2542c54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2383cd1089d22302699eae55db9a4773657a4b0848e916df2615988af3495950"} -2023-12-15T15:08:15.116Z INFO initializing dbft {"height": 3361, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:15.116Z debug frostfs-node/morph.go:229 new block {"index": 3360} -2023-12-15T15:08:15.951Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3360, "blockHeight": 3360, "took": "4.280596ms"} -2023-12-15T15:08:16.116Z INFO sending PrepareRequest {"height": 3361, "view": 0} -2023-12-15T15:08:16.117Z INFO sending Commit {"height": 3361, "view": 0} -2023-12-15T15:08:16.117Z INFO approving block {"height": 3361, "hash": "f3993cc3bf311d16f3b57b249eeff3e8ddaa2abe60b3871f2be50b014af02122", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3873e9f183bfe407b3eb200df873ecb7c8864c5050f2c6bd7a6bd1f0e2542c54"} -2023-12-15T15:08:16.119Z INFO initializing dbft {"height": 3362, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:16.119Z debug frostfs-node/morph.go:229 new block {"index": 3361} -2023-12-15T15:08:16.951Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3361, "blockHeight": 3361, "took": "2.855035ms"} -2023-12-15T15:08:17.118Z INFO sending PrepareRequest {"height": 3362, "view": 0} -2023-12-15T15:08:17.118Z INFO sending Commit {"height": 3362, "view": 0} -2023-12-15T15:08:17.118Z INFO approving block {"height": 3362, "hash": "55fe8319ab6b8685082c71457c7a8a104fd7d668aa79618c7378e01769d26418", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3993cc3bf311d16f3b57b249eeff3e8ddaa2abe60b3871f2be50b014af02122"} -2023-12-15T15:08:17.120Z INFO initializing dbft {"height": 3363, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:17.120Z debug frostfs-node/morph.go:229 new block {"index": 3362} -2023-12-15T15:08:17.954Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3362, "blockHeight": 3362, "took": "5.490377ms"} -2023-12-15T15:08:18.119Z INFO sending PrepareRequest {"height": 3363, "view": 0} -2023-12-15T15:08:18.120Z INFO sending Commit {"height": 3363, "view": 0} -2023-12-15T15:08:18.120Z INFO approving block {"height": 3363, "hash": "4a2c51f126e205c4e584c0a98ed5bbcdad10c1b0ff80aeed82f1275f098a038e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55fe8319ab6b8685082c71457c7a8a104fd7d668aa79618c7378e01769d26418"} -2023-12-15T15:08:18.122Z INFO initializing dbft {"height": 3364, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:18.122Z debug frostfs-node/morph.go:229 new block {"index": 3363} -2023-12-15T15:08:18.954Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3363, "blockHeight": 3363, "took": "4.571743ms"} -2023-12-15T15:08:19.121Z INFO sending PrepareRequest {"height": 3364, "view": 0} -2023-12-15T15:08:19.121Z INFO sending Commit {"height": 3364, "view": 0} -2023-12-15T15:08:19.121Z INFO approving block {"height": 3364, "hash": "9d19d45c45ace1fe8ea61afd783c01784e653d14421560310ab7c2fbca9d3cb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a2c51f126e205c4e584c0a98ed5bbcdad10c1b0ff80aeed82f1275f098a038e"} -2023-12-15T15:08:19.122Z INFO initializing dbft {"height": 3365, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:19.122Z debug frostfs-node/morph.go:229 new block {"index": 3364} -2023-12-15T15:08:19.953Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3364, "blockHeight": 3364, "took": "3.783171ms"} -2023-12-15T15:08:20.122Z INFO sending PrepareRequest {"height": 3365, "view": 0} -2023-12-15T15:08:20.123Z INFO sending Commit {"height": 3365, "view": 0} -2023-12-15T15:08:20.123Z INFO approving block {"height": 3365, "hash": "219991a0a437577f4a50b831186c2b16b211da34be75d4bd1b1ae07c504d717a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d19d45c45ace1fe8ea61afd783c01784e653d14421560310ab7c2fbca9d3cb6"} -2023-12-15T15:08:20.124Z INFO initializing dbft {"height": 3366, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:20.125Z debug frostfs-node/morph.go:229 new block {"index": 3365} -2023-12-15T15:08:20.956Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3365, "blockHeight": 3365, "took": "5.761335ms"} -2023-12-15T15:08:21.124Z INFO sending PrepareRequest {"height": 3366, "view": 0} -2023-12-15T15:08:21.124Z INFO sending Commit {"height": 3366, "view": 0} -2023-12-15T15:08:21.124Z INFO approving block {"height": 3366, "hash": "f396afed83481cb1e93894ddf367cc1d4fcf5afd66dbd742e0586d3f3368d8d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "219991a0a437577f4a50b831186c2b16b211da34be75d4bd1b1ae07c504d717a"} -2023-12-15T15:08:21.125Z INFO initializing dbft {"height": 3367, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:21.125Z debug frostfs-node/morph.go:229 new block {"index": 3366} -2023-12-15T15:08:21.958Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3366, "blockHeight": 3366, "took": "7.414829ms"} -2023-12-15T15:08:22.126Z INFO sending PrepareRequest {"height": 3367, "view": 0} -2023-12-15T15:08:22.126Z INFO sending Commit {"height": 3367, "view": 0} -2023-12-15T15:08:22.127Z INFO approving block {"height": 3367, "hash": "2d6ac5dd6e83b4b180a0ea3823ef3bb0f90cf2aeb0e88e480b81804be0ddbb1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f396afed83481cb1e93894ddf367cc1d4fcf5afd66dbd742e0586d3f3368d8d5"} -2023-12-15T15:08:22.128Z INFO initializing dbft {"height": 3368, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:22.129Z debug frostfs-node/morph.go:229 new block {"index": 3367} -2023-12-15T15:08:22.133Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:08:22.137Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:08:22.137Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:08:22.956Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3367, "blockHeight": 3367, "took": "3.672119ms"} -2023-12-15T15:08:23.128Z INFO sending PrepareRequest {"height": 3368, "view": 0} -2023-12-15T15:08:23.128Z INFO sending Commit {"height": 3368, "view": 0} -2023-12-15T15:08:23.128Z INFO approving block {"height": 3368, "hash": "42d19a20c3c5c5d8579b4d31f3f00fe3595353a6c8dc66e92d2a7a5533a3af0c", "tx_count": 2, "merkle": "146b62d64cef4508218ad76bcf4aabf8d00c0899886c6058e56e8494d67dd048", "prev": "2d6ac5dd6e83b4b180a0ea3823ef3bb0f90cf2aeb0e88e480b81804be0ddbb1f"} -2023-12-15T15:08:23.129Z INFO runtime log {"tx": "84f00cd396c1cd10988a6da03a5a88bf64515e34db3608bc65575b9cc34a9146", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:08:23.129Z INFO runtime log {"tx": "84f00cd396c1cd10988a6da03a5a88bf64515e34db3608bc65575b9cc34a9146", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:08:23.131Z INFO initializing dbft {"height": 3369, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:23.131Z debug frostfs-node/morph.go:229 new block {"index": 3368} -2023-12-15T15:08:23.959Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3368, "blockHeight": 3368, "took": "6.061284ms"} -2023-12-15T15:08:24.130Z INFO sending PrepareRequest {"height": 3369, "view": 0} -2023-12-15T15:08:24.130Z INFO sending Commit {"height": 3369, "view": 0} -2023-12-15T15:08:24.131Z INFO approving block {"height": 3369, "hash": "50c1234757174c9a1e075babbe90492801ab7a70edfcb60ba964e1b692fe5c55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42d19a20c3c5c5d8579b4d31f3f00fe3595353a6c8dc66e92d2a7a5533a3af0c"} -2023-12-15T15:08:24.133Z INFO initializing dbft {"height": 3370, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:24.133Z debug frostfs-node/morph.go:229 new block {"index": 3369} -2023-12-15T15:08:24.957Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3369, "blockHeight": 3369, "took": "4.177247ms"} -2023-12-15T15:08:25.132Z INFO sending PrepareRequest {"height": 3370, "view": 0} -2023-12-15T15:08:25.132Z INFO sending Commit {"height": 3370, "view": 0} -2023-12-15T15:08:25.132Z INFO approving block {"height": 3370, "hash": "a48de3a952867ce97e4b9577fc62b6f16a4e9f4cad370372d959c4bfb7b58969", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50c1234757174c9a1e075babbe90492801ab7a70edfcb60ba964e1b692fe5c55"} -2023-12-15T15:08:25.133Z INFO initializing dbft {"height": 3371, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:25.134Z debug frostfs-node/morph.go:229 new block {"index": 3370} -2023-12-15T15:08:25.957Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3370, "blockHeight": 3370, "took": "4.034265ms"} -2023-12-15T15:08:26.133Z INFO sending PrepareRequest {"height": 3371, "view": 0} -2023-12-15T15:08:26.133Z INFO sending Commit {"height": 3371, "view": 0} -2023-12-15T15:08:26.134Z INFO approving block {"height": 3371, "hash": "2cc3baf8b0554632f5d16b91d7417aeea4902e8a830b14f2c8c34aeed4657f80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a48de3a952867ce97e4b9577fc62b6f16a4e9f4cad370372d959c4bfb7b58969"} -2023-12-15T15:08:26.135Z INFO initializing dbft {"height": 3372, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:26.135Z debug frostfs-node/morph.go:229 new block {"index": 3371} -2023-12-15T15:08:26.958Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3371, "blockHeight": 3371, "took": "4.335641ms"} -2023-12-15T15:08:27.135Z INFO sending PrepareRequest {"height": 3372, "view": 0} -2023-12-15T15:08:27.135Z INFO sending Commit {"height": 3372, "view": 0} -2023-12-15T15:08:27.135Z INFO approving block {"height": 3372, "hash": "1a73bc499ddd53151b89dd354bb068395db5180404ac58dd7e3ac50f6e7dc0e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2cc3baf8b0554632f5d16b91d7417aeea4902e8a830b14f2c8c34aeed4657f80"} -2023-12-15T15:08:27.137Z INFO initializing dbft {"height": 3373, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:27.137Z debug frostfs-node/morph.go:229 new block {"index": 3372} -2023-12-15T15:08:27.960Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3372, "blockHeight": 3372, "took": "5.091824ms"} -2023-12-15T15:08:28.136Z INFO sending PrepareRequest {"height": 3373, "view": 0} -2023-12-15T15:08:28.136Z INFO sending Commit {"height": 3373, "view": 0} -2023-12-15T15:08:28.137Z INFO approving block {"height": 3373, "hash": "294a24b89c93e5d03856ea7aac4daabbe2e90bd8a30148e660d4c9f4a52a5d04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a73bc499ddd53151b89dd354bb068395db5180404ac58dd7e3ac50f6e7dc0e3"} -2023-12-15T15:08:28.138Z INFO initializing dbft {"height": 3374, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:28.138Z debug frostfs-node/morph.go:229 new block {"index": 3373} -2023-12-15T15:08:28.143Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T15:08:28.146Z INFO runtime log {"tx": "c1f752711dbde398ce713249342b8de40156443050ac2ce5c474c1de25dd7c18", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:08:28.148Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 14, "iteration": 3, "error": "no data for 2 iteration in 14 epoch for consumers's trusts"} -2023-12-15T15:08:28.959Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3373, "blockHeight": 3373, "took": "4.281091ms"} -2023-12-15T15:08:29.138Z INFO sending PrepareRequest {"height": 3374, "view": 0} -2023-12-15T15:08:29.138Z INFO sending Commit {"height": 3374, "view": 0} -2023-12-15T15:08:29.139Z INFO approving block {"height": 3374, "hash": "b455976ff3a9b6cd2b477ea3cc8696dca240897c29ca9cb541aab3f650ee37df", "tx_count": 1, "merkle": "f350de3792e3038ab8c3d0d89dacc97de26cb17c65aec3586bbb866ec6111de2", "prev": "294a24b89c93e5d03856ea7aac4daabbe2e90bd8a30148e660d4c9f4a52a5d04"} -2023-12-15T15:08:29.140Z INFO runtime log {"tx": "e21d11c66e86bb6b58c3ae657cb16ce27dc9ac9dd8d0c3b88a03e39237de50f3", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:08:29.142Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 16} -2023-12-15T15:08:29.142Z INFO initializing dbft {"height": 3375, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:29.142Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 16} -2023-12-15T15:08:29.142Z debug tree/sync.go:298 syncing trees... -2023-12-15T15:08:29.142Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T15:08:29.142Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 16} -2023-12-15T15:08:29.142Z debug controller/calls.go:95 starting to report local trust values {"epoch": 15} -2023-12-15T15:08:29.142Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 16} -2023-12-15T15:08:29.142Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 15} -2023-12-15T15:08:29.142Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 16} -2023-12-15T15:08:29.142Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T15:08:29.144Z debug frostfs-node/morph.go:229 new block {"index": 3374} -2023-12-15T15:08:29.145Z debug controller/calls.go:146 reporting successfully finished {"epoch": 15} -2023-12-15T15:08:29.145Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 15} -2023-12-15T15:08:29.145Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T15:08:29.149Z INFO runtime log {"tx": "8155682e98c3ae0cecfead732b55704f283bbbf1bb65db4eab2bd2458060fead", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:08:29.151Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 3377, "tx_hash": "320c83d158d67a12bf8b964ab8cbfa92cc4d2ccdf65b0ea88d82700e14f5c3bc"} -2023-12-15T15:08:29.160Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 3500, "fallback_valid_for": 40, "tx_hash": "2e45a9a5fd5964d2338711e10327c2a2edcef34ab3e20d31371c338a3e6229eb"} -2023-12-15T15:08:29.161Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T15:08:29.161Z info audit/handlers.go:13 new round of audit {"epoch": 16} -2023-12-15T15:08:29.161Z info settlement/calls.go:26 new audit settlement event {"epoch": 16} -2023-12-15T15:08:29.161Z info settlement/handlers.go:14 process audit settlements {"epoch": 16} -2023-12-15T15:08:29.161Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 16} -2023-12-15T15:08:29.162Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T15:08:29.163Z info settlement/handlers.go:18 audit processing finished {"epoch": 16} -2023-12-15T15:08:29.165Z info audit/process.go:39 select containers for audit {"epoch": 16, "amount": 0} -2023-12-15T15:08:29.167Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 3377, "tx_hash": "9830904a324292bacc3757afc4c42d91d65369af2bf9f01c24bcb0f2a4c7c17d"} -2023-12-15T15:08:29.962Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 3374, "blockHeight": 3374, "took": "6.476329ms"} -2023-12-15T15:08:30.140Z INFO sending PrepareRequest {"height": 3375, "view": 0} -2023-12-15T15:08:30.140Z INFO sending Commit {"height": 3375, "view": 0} -2023-12-15T15:08:30.140Z INFO approving block {"height": 3375, "hash": "3222a61d4c6e48e9524780feb868f39f8792b95578e0c76eb3d4f6ab2a3ed3e9", "tx_count": 3, "merkle": "08de5165b6d47a35ec77f047fb618754362ac145b7a8fc0924e0bf53d026698a", "prev": "b455976ff3a9b6cd2b477ea3cc8696dca240897c29ca9cb541aab3f650ee37df"} -2023-12-15T15:08:30.141Z INFO runtime log {"tx": "0e6420a9ef98d66b181951f5244ca989f869870d93b907ac117d70ebab9afbc5", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:08:30.145Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 15} -2023-12-15T15:08:30.145Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 15} -2023-12-15T15:08:30.145Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 15} -2023-12-15T15:08:30.145Z INFO initializing dbft {"height": 3376, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:30.146Z debug frostfs-node/morph.go:229 new block {"index": 3375} -2023-12-15T15:08:30.964Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 3375, "blockHeight": 3375, "took": "8.316809ms"} -2023-12-15T15:08:31.141Z INFO sending PrepareRequest {"height": 3376, "view": 0} -2023-12-15T15:08:31.142Z INFO sending Commit {"height": 3376, "view": 0} -2023-12-15T15:08:31.142Z INFO approving block {"height": 3376, "hash": "26c4d1c7f9ccb9b3dc1401a92f700b2304e9a5a4922a6b6ca4f7cc59b553b36d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3222a61d4c6e48e9524780feb868f39f8792b95578e0c76eb3d4f6ab2a3ed3e9"} -2023-12-15T15:08:31.144Z INFO initializing dbft {"height": 3377, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:31.144Z debug frostfs-node/morph.go:229 new block {"index": 3376} -2023-12-15T15:08:31.961Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3376, "blockHeight": 3376, "took": "4.43348ms"} -2023-12-15T15:08:32.143Z INFO sending PrepareRequest {"height": 3377, "view": 0} -2023-12-15T15:08:32.143Z INFO sending Commit {"height": 3377, "view": 0} -2023-12-15T15:08:32.144Z INFO approving block {"height": 3377, "hash": "9f40d5f56c7e3511095f5705ec5037307606138763ba3296e506e879f49137a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26c4d1c7f9ccb9b3dc1401a92f700b2304e9a5a4922a6b6ca4f7cc59b553b36d"} -2023-12-15T15:08:32.145Z INFO initializing dbft {"height": 3378, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:32.145Z debug frostfs-node/morph.go:229 new block {"index": 3377} -2023-12-15T15:08:32.963Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3377, "blockHeight": 3377, "took": "4.740848ms"} -2023-12-15T15:08:33.145Z INFO sending PrepareRequest {"height": 3378, "view": 0} -2023-12-15T15:08:33.145Z INFO sending Commit {"height": 3378, "view": 0} -2023-12-15T15:08:33.146Z INFO approving block {"height": 3378, "hash": "73f0e38011a365e8761851f9fad7e60fcd815d28a0af107c9d64f878a8f699ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f40d5f56c7e3511095f5705ec5037307606138763ba3296e506e879f49137a6"} -2023-12-15T15:08:33.147Z INFO initializing dbft {"height": 3379, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:33.148Z debug frostfs-node/morph.go:229 new block {"index": 3378} -2023-12-15T15:08:33.963Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3378, "blockHeight": 3378, "took": "4.509783ms"} -2023-12-15T15:08:34.146Z INFO sending PrepareRequest {"height": 3379, "view": 0} -2023-12-15T15:08:34.146Z INFO sending Commit {"height": 3379, "view": 0} -2023-12-15T15:08:34.147Z INFO approving block {"height": 3379, "hash": "c621080d19fc3bbd47a65ceabb2e70da2c2bdaf8fadbb232d13b7f2b5d2f5bec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73f0e38011a365e8761851f9fad7e60fcd815d28a0af107c9d64f878a8f699ce"} -2023-12-15T15:08:34.148Z INFO initializing dbft {"height": 3380, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:34.148Z debug frostfs-node/morph.go:229 new block {"index": 3379} -2023-12-15T15:08:34.963Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3379, "blockHeight": 3379, "took": "4.657297ms"} -2023-12-15T15:08:35.148Z INFO sending PrepareRequest {"height": 3380, "view": 0} -2023-12-15T15:08:35.148Z INFO sending Commit {"height": 3380, "view": 0} -2023-12-15T15:08:35.149Z INFO approving block {"height": 3380, "hash": "1487c0b0e50dcdd18fce9fe36b87aaccb0544f72829420a91727ff6d393a9dd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c621080d19fc3bbd47a65ceabb2e70da2c2bdaf8fadbb232d13b7f2b5d2f5bec"} -2023-12-15T15:08:35.150Z INFO initializing dbft {"height": 3381, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:35.151Z debug frostfs-node/morph.go:229 new block {"index": 3380} -2023-12-15T15:08:35.964Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3380, "blockHeight": 3380, "took": "4.656603ms"} -2023-12-15T15:08:36.149Z INFO sending PrepareRequest {"height": 3381, "view": 0} -2023-12-15T15:08:36.150Z INFO sending Commit {"height": 3381, "view": 0} -2023-12-15T15:08:36.150Z INFO approving block {"height": 3381, "hash": "3e95c7c80d3ae46ca490a848a3d1d3ee581c4b4ea46e7b37295ec9ca50631343", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1487c0b0e50dcdd18fce9fe36b87aaccb0544f72829420a91727ff6d393a9dd8"} -2023-12-15T15:08:36.152Z INFO initializing dbft {"height": 3382, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:36.153Z debug frostfs-node/morph.go:229 new block {"index": 3381} -2023-12-15T15:08:36.963Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3381, "blockHeight": 3381, "took": "3.474473ms"} -2023-12-15T15:08:37.151Z INFO sending PrepareRequest {"height": 3382, "view": 0} -2023-12-15T15:08:37.151Z INFO sending Commit {"height": 3382, "view": 0} -2023-12-15T15:08:37.152Z INFO approving block {"height": 3382, "hash": "756d4cac9ec74d9de5362aa3902698a5d840daf0043a96cf7db41a8b850aae59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e95c7c80d3ae46ca490a848a3d1d3ee581c4b4ea46e7b37295ec9ca50631343"} -2023-12-15T15:08:37.153Z INFO initializing dbft {"height": 3383, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:37.154Z debug frostfs-node/morph.go:229 new block {"index": 3382} -2023-12-15T15:08:37.964Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3382, "blockHeight": 3382, "took": "3.421201ms"} -2023-12-15T15:08:38.152Z INFO sending PrepareRequest {"height": 3383, "view": 0} -2023-12-15T15:08:38.152Z INFO sending Commit {"height": 3383, "view": 0} -2023-12-15T15:08:38.152Z INFO approving block {"height": 3383, "hash": "c097432f900520131b61d595ca2b904cfc303480109b58556e13a2387cd5acf7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "756d4cac9ec74d9de5362aa3902698a5d840daf0043a96cf7db41a8b850aae59"} -2023-12-15T15:08:38.154Z INFO initializing dbft {"height": 3384, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:38.154Z debug frostfs-node/morph.go:229 new block {"index": 3383} -2023-12-15T15:08:38.965Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3383, "blockHeight": 3383, "took": "4.269679ms"} -2023-12-15T15:08:39.154Z INFO sending PrepareRequest {"height": 3384, "view": 0} -2023-12-15T15:08:39.154Z INFO sending Commit {"height": 3384, "view": 0} -2023-12-15T15:08:39.154Z INFO approving block {"height": 3384, "hash": "10a6cbf2b2c48b0b256dabdcebdf00d7bab27af7cd528d45a30fb70ece44edfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c097432f900520131b61d595ca2b904cfc303480109b58556e13a2387cd5acf7"} -2023-12-15T15:08:39.155Z INFO initializing dbft {"height": 3385, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:39.156Z debug frostfs-node/morph.go:229 new block {"index": 3384} -2023-12-15T15:08:39.965Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3384, "blockHeight": 3384, "took": "3.237625ms"} -2023-12-15T15:08:40.155Z INFO sending PrepareRequest {"height": 3385, "view": 0} -2023-12-15T15:08:40.156Z INFO sending Commit {"height": 3385, "view": 0} -2023-12-15T15:08:40.156Z INFO approving block {"height": 3385, "hash": "ead8ce97e599cc753db1c8e2e742d78a6d35acce22cfc4310c71beeabe3a997d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10a6cbf2b2c48b0b256dabdcebdf00d7bab27af7cd528d45a30fb70ece44edfa"} -2023-12-15T15:08:40.157Z INFO initializing dbft {"height": 3386, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:40.158Z debug frostfs-node/morph.go:229 new block {"index": 3385} -2023-12-15T15:08:40.965Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3385, "blockHeight": 3385, "took": "3.328369ms"} -2023-12-15T15:08:41.157Z INFO sending PrepareRequest {"height": 3386, "view": 0} -2023-12-15T15:08:41.157Z INFO sending Commit {"height": 3386, "view": 0} -2023-12-15T15:08:41.158Z INFO approving block {"height": 3386, "hash": "f993ab2691ee93a0af9d7ae483e7c80022091f6b28b483dd472d042723ea3c4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ead8ce97e599cc753db1c8e2e742d78a6d35acce22cfc4310c71beeabe3a997d"} -2023-12-15T15:08:41.159Z INFO initializing dbft {"height": 3387, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:41.159Z debug frostfs-node/morph.go:229 new block {"index": 3386} -2023-12-15T15:08:41.967Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3386, "blockHeight": 3386, "took": "5.290502ms"} -2023-12-15T15:08:42.159Z INFO sending PrepareRequest {"height": 3387, "view": 0} -2023-12-15T15:08:42.159Z INFO sending Commit {"height": 3387, "view": 0} -2023-12-15T15:08:42.160Z INFO approving block {"height": 3387, "hash": "da6a6300c0b0b0374af21b5c1617c669583b4f0b2276b86299d16c26a4ea5d55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f993ab2691ee93a0af9d7ae483e7c80022091f6b28b483dd472d042723ea3c4a"} -2023-12-15T15:08:42.162Z INFO initializing dbft {"height": 3388, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:42.163Z debug frostfs-node/morph.go:229 new block {"index": 3387} -2023-12-15T15:08:42.966Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3387, "blockHeight": 3387, "took": "3.603039ms"} -2023-12-15T15:08:43.161Z INFO sending PrepareRequest {"height": 3388, "view": 0} -2023-12-15T15:08:43.162Z INFO sending Commit {"height": 3388, "view": 0} -2023-12-15T15:08:43.162Z INFO approving block {"height": 3388, "hash": "b771cafad7df2fcbeae74fa73c1fee2222bb3f9aad6b7760a2bc7c0095981968", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da6a6300c0b0b0374af21b5c1617c669583b4f0b2276b86299d16c26a4ea5d55"} -2023-12-15T15:08:43.163Z INFO initializing dbft {"height": 3389, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:43.164Z debug frostfs-node/morph.go:229 new block {"index": 3388} -2023-12-15T15:08:43.967Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3388, "blockHeight": 3388, "took": "4.514575ms"} -2023-12-15T15:08:44.167Z INFO sending PrepareRequest {"height": 3389, "view": 0} -2023-12-15T15:08:44.168Z INFO sending Commit {"height": 3389, "view": 0} -2023-12-15T15:08:44.169Z INFO approving block {"height": 3389, "hash": "9c7dd8ed3fff16b37e79938e5b931b1aa638fbb181e2412ea91006e02192ee2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b771cafad7df2fcbeae74fa73c1fee2222bb3f9aad6b7760a2bc7c0095981968"} -2023-12-15T15:08:44.175Z INFO initializing dbft {"height": 3390, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:44.177Z debug frostfs-node/morph.go:229 new block {"index": 3389} -2023-12-15T15:08:44.968Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3389, "blockHeight": 3389, "took": "4.879408ms"} -2023-12-15T15:08:45.170Z INFO sending PrepareRequest {"height": 3390, "view": 0} -2023-12-15T15:08:45.171Z INFO sending Commit {"height": 3390, "view": 0} -2023-12-15T15:08:45.171Z INFO approving block {"height": 3390, "hash": "3ac09de6db8251c69f50e2e117baf6e2e9972941c2132dc90b2cac61b8985bd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c7dd8ed3fff16b37e79938e5b931b1aa638fbb181e2412ea91006e02192ee2d"} -2023-12-15T15:08:45.173Z INFO initializing dbft {"height": 3391, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:45.174Z debug frostfs-node/morph.go:229 new block {"index": 3390} -2023-12-15T15:08:45.969Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3390, "blockHeight": 3390, "took": "5.13838ms"} -2023-12-15T15:08:46.172Z INFO sending PrepareRequest {"height": 3391, "view": 0} -2023-12-15T15:08:46.172Z INFO sending Commit {"height": 3391, "view": 0} -2023-12-15T15:08:46.173Z INFO approving block {"height": 3391, "hash": "3915fecad6f005278f11daf18fb27cb11b9a8934e5bf6b914235fb626bdbe95b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ac09de6db8251c69f50e2e117baf6e2e9972941c2132dc90b2cac61b8985bd0"} -2023-12-15T15:08:46.174Z INFO initializing dbft {"height": 3392, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:46.175Z debug frostfs-node/morph.go:229 new block {"index": 3391} -2023-12-15T15:08:46.970Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3391, "blockHeight": 3391, "took": "4.95737ms"} -2023-12-15T15:08:47.174Z INFO sending PrepareRequest {"height": 3392, "view": 0} -2023-12-15T15:08:47.174Z INFO sending Commit {"height": 3392, "view": 0} -2023-12-15T15:08:47.175Z INFO approving block {"height": 3392, "hash": "191410351110fc1855475a8d63981f1263c820134457b6b874d2625cc0149bf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3915fecad6f005278f11daf18fb27cb11b9a8934e5bf6b914235fb626bdbe95b"} -2023-12-15T15:08:47.176Z INFO initializing dbft {"height": 3393, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:47.177Z debug frostfs-node/morph.go:229 new block {"index": 3392} -2023-12-15T15:08:47.969Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3392, "blockHeight": 3392, "took": "4.164291ms"} -2023-12-15T15:08:48.176Z INFO sending PrepareRequest {"height": 3393, "view": 0} -2023-12-15T15:08:48.176Z INFO sending Commit {"height": 3393, "view": 0} -2023-12-15T15:08:48.177Z INFO approving block {"height": 3393, "hash": "658f3e5f29c9438023467ecae01c08b71ba651b6555b2c9e2ddebf11b7b005a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "191410351110fc1855475a8d63981f1263c820134457b6b874d2625cc0149bf3"} -2023-12-15T15:08:48.178Z INFO initializing dbft {"height": 3394, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:48.179Z debug frostfs-node/morph.go:229 new block {"index": 3393} -2023-12-15T15:08:48.971Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3393, "blockHeight": 3393, "took": "5.003299ms"} -2023-12-15T15:08:49.178Z INFO sending PrepareRequest {"height": 3394, "view": 0} -2023-12-15T15:08:49.179Z INFO sending Commit {"height": 3394, "view": 0} -2023-12-15T15:08:49.179Z INFO approving block {"height": 3394, "hash": "205650af981ca387e93f05c31562d62addf2579d986213e5c3095a47f2bdd214", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "658f3e5f29c9438023467ecae01c08b71ba651b6555b2c9e2ddebf11b7b005a2"} -2023-12-15T15:08:49.181Z INFO initializing dbft {"height": 3395, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:49.182Z debug frostfs-node/morph.go:229 new block {"index": 3394} -2023-12-15T15:08:49.971Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3394, "blockHeight": 3394, "took": "4.36531ms"} -2023-12-15T15:08:50.181Z INFO sending PrepareRequest {"height": 3395, "view": 0} -2023-12-15T15:08:50.181Z INFO sending Commit {"height": 3395, "view": 0} -2023-12-15T15:08:50.182Z INFO approving block {"height": 3395, "hash": "3abbcf0e9dff68821c978480ef87a874a891a7a55748d5918b196e16ba42d556", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "205650af981ca387e93f05c31562d62addf2579d986213e5c3095a47f2bdd214"} -2023-12-15T15:08:50.184Z INFO initializing dbft {"height": 3396, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:50.184Z debug frostfs-node/morph.go:229 new block {"index": 3395} -2023-12-15T15:08:50.972Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3395, "blockHeight": 3395, "took": "4.476871ms"} -2023-12-15T15:08:51.182Z INFO sending PrepareRequest {"height": 3396, "view": 0} -2023-12-15T15:08:51.183Z INFO sending Commit {"height": 3396, "view": 0} -2023-12-15T15:08:51.183Z INFO approving block {"height": 3396, "hash": "dac5aa7e750b5b6ad7d34563232c0ef32e7deb583b0f4499e91387237b23c1ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3abbcf0e9dff68821c978480ef87a874a891a7a55748d5918b196e16ba42d556"} -2023-12-15T15:08:51.185Z INFO initializing dbft {"height": 3397, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:51.185Z debug frostfs-node/morph.go:229 new block {"index": 3396} -2023-12-15T15:08:51.972Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3396, "blockHeight": 3396, "took": "4.068316ms"} -2023-12-15T15:08:52.184Z INFO sending PrepareRequest {"height": 3397, "view": 0} -2023-12-15T15:08:52.184Z INFO sending Commit {"height": 3397, "view": 0} -2023-12-15T15:08:52.184Z INFO approving block {"height": 3397, "hash": "440a58a2aac6eaa56c2a2f4ed2da5588ff7e89dda8e9f6c5cc354dcb46eddd63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dac5aa7e750b5b6ad7d34563232c0ef32e7deb583b0f4499e91387237b23c1ea"} -2023-12-15T15:08:52.185Z INFO initializing dbft {"height": 3398, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:52.186Z debug frostfs-node/morph.go:229 new block {"index": 3397} -2023-12-15T15:08:52.973Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3397, "blockHeight": 3397, "took": "4.184199ms"} -2023-12-15T15:08:53.186Z INFO sending PrepareRequest {"height": 3398, "view": 0} -2023-12-15T15:08:53.186Z INFO sending Commit {"height": 3398, "view": 0} -2023-12-15T15:08:53.186Z INFO approving block {"height": 3398, "hash": "d6913086dd58b824b99fc78176306a9098cb8a827d65201cd996180fb55b4803", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "440a58a2aac6eaa56c2a2f4ed2da5588ff7e89dda8e9f6c5cc354dcb46eddd63"} -2023-12-15T15:08:53.187Z INFO initializing dbft {"height": 3399, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:53.187Z debug frostfs-node/morph.go:229 new block {"index": 3398} -2023-12-15T15:08:53.973Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3398, "blockHeight": 3398, "took": "3.730685ms"} -2023-12-15T15:08:54.187Z INFO sending PrepareRequest {"height": 3399, "view": 0} -2023-12-15T15:08:54.187Z INFO sending Commit {"height": 3399, "view": 0} -2023-12-15T15:08:54.188Z INFO approving block {"height": 3399, "hash": "a737003a366a151ee21e4cd3864145aae499acfae5e699186fe7d64cb3a8c995", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6913086dd58b824b99fc78176306a9098cb8a827d65201cd996180fb55b4803"} -2023-12-15T15:08:54.189Z INFO initializing dbft {"height": 3400, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:54.190Z debug frostfs-node/morph.go:229 new block {"index": 3399} -2023-12-15T15:08:54.973Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3399, "blockHeight": 3399, "took": "3.838949ms"} -2023-12-15T15:08:55.189Z INFO sending PrepareRequest {"height": 3400, "view": 0} -2023-12-15T15:08:55.189Z INFO sending Commit {"height": 3400, "view": 0} -2023-12-15T15:08:55.190Z INFO approving block {"height": 3400, "hash": "7787f3c6ac7f7cb894ac083dc3cdf97293d7fb698fe82c7b8e47a3d52347090c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a737003a366a151ee21e4cd3864145aae499acfae5e699186fe7d64cb3a8c995"} -2023-12-15T15:08:55.192Z INFO initializing dbft {"height": 3401, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:55.192Z debug frostfs-node/morph.go:229 new block {"index": 3400} -2023-12-15T15:08:55.975Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3400, "blockHeight": 3400, "took": "4.906665ms"} -2023-12-15T15:08:56.190Z INFO sending PrepareRequest {"height": 3401, "view": 0} -2023-12-15T15:08:56.190Z INFO sending Commit {"height": 3401, "view": 0} -2023-12-15T15:08:56.191Z INFO approving block {"height": 3401, "hash": "98409ca98de336b07667d45e111dd9788adfa98db7d7b3bf5cdcc50c514c097a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7787f3c6ac7f7cb894ac083dc3cdf97293d7fb698fe82c7b8e47a3d52347090c"} -2023-12-15T15:08:56.192Z INFO initializing dbft {"height": 3402, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:56.193Z debug frostfs-node/morph.go:229 new block {"index": 3401} -2023-12-15T15:08:56.974Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3401, "blockHeight": 3401, "took": "3.953019ms"} -2023-12-15T15:08:57.193Z INFO sending PrepareRequest {"height": 3402, "view": 0} -2023-12-15T15:08:57.193Z INFO sending Commit {"height": 3402, "view": 0} -2023-12-15T15:08:57.193Z INFO approving block {"height": 3402, "hash": "bb3c1132af59d01f4e172beb2fabb77636bdad4b29c98cd492276bafe81a4efb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98409ca98de336b07667d45e111dd9788adfa98db7d7b3bf5cdcc50c514c097a"} -2023-12-15T15:08:57.195Z INFO initializing dbft {"height": 3403, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:57.195Z debug frostfs-node/morph.go:229 new block {"index": 3402} -2023-12-15T15:08:57.976Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3402, "blockHeight": 3402, "took": "4.371759ms"} -2023-12-15T15:08:58.195Z INFO sending PrepareRequest {"height": 3403, "view": 0} -2023-12-15T15:08:58.195Z INFO sending Commit {"height": 3403, "view": 0} -2023-12-15T15:08:58.195Z INFO approving block {"height": 3403, "hash": "da8bb9edad38bdb88ff76cd903eeaffe54d60a5ef160f1b1a9e2076da6de99e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb3c1132af59d01f4e172beb2fabb77636bdad4b29c98cd492276bafe81a4efb"} -2023-12-15T15:08:58.196Z INFO initializing dbft {"height": 3404, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:58.197Z debug frostfs-node/morph.go:229 new block {"index": 3403} -2023-12-15T15:08:58.976Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3403, "blockHeight": 3403, "took": "4.064353ms"} -2023-12-15T15:08:59.196Z INFO sending PrepareRequest {"height": 3404, "view": 0} -2023-12-15T15:08:59.196Z INFO sending Commit {"height": 3404, "view": 0} -2023-12-15T15:08:59.196Z INFO approving block {"height": 3404, "hash": "9613b7f327b3221063fee0c504420412454a9b599270e910f7b301cc2a38cc59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da8bb9edad38bdb88ff76cd903eeaffe54d60a5ef160f1b1a9e2076da6de99e7"} -2023-12-15T15:08:59.197Z INFO initializing dbft {"height": 3405, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:08:59.198Z debug frostfs-node/morph.go:229 new block {"index": 3404} -2023-12-15T15:08:59.978Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3404, "blockHeight": 3404, "took": "5.33193ms"} -2023-12-15T15:09:00.197Z INFO sending PrepareRequest {"height": 3405, "view": 0} -2023-12-15T15:09:00.197Z INFO sending Commit {"height": 3405, "view": 0} -2023-12-15T15:09:00.198Z INFO approving block {"height": 3405, "hash": "deab6491bb21dc982ea441a0d8501cdc1ebc964da7bc210a1bad034d8484ea9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9613b7f327b3221063fee0c504420412454a9b599270e910f7b301cc2a38cc59"} -2023-12-15T15:09:00.199Z INFO initializing dbft {"height": 3406, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:00.200Z debug frostfs-node/morph.go:229 new block {"index": 3405} -2023-12-15T15:09:00.978Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3405, "blockHeight": 3405, "took": "4.540987ms"} -2023-12-15T15:09:01.198Z INFO sending PrepareRequest {"height": 3406, "view": 0} -2023-12-15T15:09:01.199Z INFO sending Commit {"height": 3406, "view": 0} -2023-12-15T15:09:01.199Z INFO approving block {"height": 3406, "hash": "11dfa4e22e7ecd8bfc20238f2433531d38800870e8cc440d6d343a3085c5e6dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "deab6491bb21dc982ea441a0d8501cdc1ebc964da7bc210a1bad034d8484ea9f"} -2023-12-15T15:09:01.200Z INFO initializing dbft {"height": 3407, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:01.200Z debug frostfs-node/morph.go:229 new block {"index": 3406} -2023-12-15T15:09:01.978Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3406, "blockHeight": 3406, "took": "3.704718ms"} -2023-12-15T15:09:02.200Z INFO sending PrepareRequest {"height": 3407, "view": 0} -2023-12-15T15:09:02.200Z INFO sending Commit {"height": 3407, "view": 0} -2023-12-15T15:09:02.200Z INFO approving block {"height": 3407, "hash": "f778b39d9049070e8af2113005e1af9c4011bf9dac37a4cba4ba7bc04d7c8857", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11dfa4e22e7ecd8bfc20238f2433531d38800870e8cc440d6d343a3085c5e6dd"} -2023-12-15T15:09:02.201Z INFO initializing dbft {"height": 3408, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:02.202Z debug frostfs-node/morph.go:229 new block {"index": 3407} -2023-12-15T15:09:02.978Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3407, "blockHeight": 3407, "took": "3.441721ms"} -2023-12-15T15:09:03.202Z INFO sending PrepareRequest {"height": 3408, "view": 0} -2023-12-15T15:09:03.202Z INFO sending Commit {"height": 3408, "view": 0} -2023-12-15T15:09:03.203Z INFO approving block {"height": 3408, "hash": "fe2a20cd2d02d193198c33aa58e7c58468cbfceab4d00a260f8b71aa0f873916", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f778b39d9049070e8af2113005e1af9c4011bf9dac37a4cba4ba7bc04d7c8857"} -2023-12-15T15:09:03.204Z INFO initializing dbft {"height": 3409, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:03.205Z debug frostfs-node/morph.go:229 new block {"index": 3408} -2023-12-15T15:09:03.980Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3408, "blockHeight": 3408, "took": "4.610564ms"} -2023-12-15T15:09:04.203Z INFO sending PrepareRequest {"height": 3409, "view": 0} -2023-12-15T15:09:04.204Z INFO sending Commit {"height": 3409, "view": 0} -2023-12-15T15:09:04.204Z INFO approving block {"height": 3409, "hash": "89022dab4e54ad08a02fed9d52012d0f1f76eb7e8c469316ac5d69a9deb5a298", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe2a20cd2d02d193198c33aa58e7c58468cbfceab4d00a260f8b71aa0f873916"} -2023-12-15T15:09:04.205Z INFO initializing dbft {"height": 3410, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:04.206Z debug frostfs-node/morph.go:229 new block {"index": 3409} -2023-12-15T15:09:04.983Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3409, "blockHeight": 3409, "took": "6.538747ms"} -2023-12-15T15:09:05.205Z INFO sending PrepareRequest {"height": 3410, "view": 0} -2023-12-15T15:09:05.205Z INFO sending Commit {"height": 3410, "view": 0} -2023-12-15T15:09:05.206Z INFO approving block {"height": 3410, "hash": "bc253a7d77665c0a32ad3ed1626d46549791d72842ab50c508e3bb017265590d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89022dab4e54ad08a02fed9d52012d0f1f76eb7e8c469316ac5d69a9deb5a298"} -2023-12-15T15:09:05.207Z INFO initializing dbft {"height": 3411, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:05.208Z debug frostfs-node/morph.go:229 new block {"index": 3410} -2023-12-15T15:09:05.980Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3410, "blockHeight": 3410, "took": "3.618199ms"} -2023-12-15T15:09:06.206Z INFO sending PrepareRequest {"height": 3411, "view": 0} -2023-12-15T15:09:06.207Z INFO sending Commit {"height": 3411, "view": 0} -2023-12-15T15:09:06.207Z INFO approving block {"height": 3411, "hash": "b7a34b9133de795d4322969d5e9a7f65f48a2129b41365fcf09250a4376f88f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc253a7d77665c0a32ad3ed1626d46549791d72842ab50c508e3bb017265590d"} -2023-12-15T15:09:06.209Z INFO initializing dbft {"height": 3412, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:06.209Z debug frostfs-node/morph.go:229 new block {"index": 3411} -2023-12-15T15:09:06.980Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3411, "blockHeight": 3411, "took": "3.040269ms"} -2023-12-15T15:09:07.208Z INFO sending PrepareRequest {"height": 3412, "view": 0} -2023-12-15T15:09:07.208Z INFO sending Commit {"height": 3412, "view": 0} -2023-12-15T15:09:07.208Z INFO approving block {"height": 3412, "hash": "eadcc9aa93d13331ea3cd9a2db019fa4cae752d4dbb02980b5df86c558f2ad3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7a34b9133de795d4322969d5e9a7f65f48a2129b41365fcf09250a4376f88f3"} -2023-12-15T15:09:07.209Z INFO initializing dbft {"height": 3413, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:07.210Z debug frostfs-node/morph.go:229 new block {"index": 3412} -2023-12-15T15:09:07.981Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3412, "blockHeight": 3412, "took": "3.63763ms"} -2023-12-15T15:09:08.209Z INFO sending PrepareRequest {"height": 3413, "view": 0} -2023-12-15T15:09:08.209Z INFO sending Commit {"height": 3413, "view": 0} -2023-12-15T15:09:08.209Z INFO approving block {"height": 3413, "hash": "7e983219a034246e7ce80e7ae37a09d9a6f0a96118bba85a322a9227df48817c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eadcc9aa93d13331ea3cd9a2db019fa4cae752d4dbb02980b5df86c558f2ad3d"} -2023-12-15T15:09:08.210Z INFO initializing dbft {"height": 3414, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:08.211Z debug frostfs-node/morph.go:229 new block {"index": 3413} -2023-12-15T15:09:08.981Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3413, "blockHeight": 3413, "took": "3.122461ms"} -2023-12-15T15:09:09.211Z INFO sending PrepareRequest {"height": 3414, "view": 0} -2023-12-15T15:09:09.211Z INFO sending Commit {"height": 3414, "view": 0} -2023-12-15T15:09:09.211Z INFO approving block {"height": 3414, "hash": "4943f6a47ec7143b777f79c340604e6f3f88e323cd577ac640b43f215a752b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e983219a034246e7ce80e7ae37a09d9a6f0a96118bba85a322a9227df48817c"} -2023-12-15T15:09:09.213Z INFO initializing dbft {"height": 3415, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:09.213Z debug frostfs-node/morph.go:229 new block {"index": 3414} -2023-12-15T15:09:09.983Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3414, "blockHeight": 3414, "took": "4.485674ms"} -2023-12-15T15:09:10.212Z INFO sending PrepareRequest {"height": 3415, "view": 0} -2023-12-15T15:09:10.212Z INFO sending Commit {"height": 3415, "view": 0} -2023-12-15T15:09:10.213Z INFO approving block {"height": 3415, "hash": "d1f3c1bac3c73a543ebbc2876b8060cb653e7a20aaca0c65d03d1c781efe2c76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4943f6a47ec7143b777f79c340604e6f3f88e323cd577ac640b43f215a752b39"} -2023-12-15T15:09:10.214Z INFO initializing dbft {"height": 3416, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:10.214Z debug frostfs-node/morph.go:229 new block {"index": 3415} -2023-12-15T15:09:10.984Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3415, "blockHeight": 3415, "took": "4.68695ms"} -2023-12-15T15:09:11.213Z INFO sending PrepareRequest {"height": 3416, "view": 0} -2023-12-15T15:09:11.213Z INFO sending Commit {"height": 3416, "view": 0} -2023-12-15T15:09:11.214Z INFO approving block {"height": 3416, "hash": "be3ad8640bd7dea6f7e3e0a9f53bc4b56338b9dd340e0cdf0545c846c3311bfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1f3c1bac3c73a543ebbc2876b8060cb653e7a20aaca0c65d03d1c781efe2c76"} -2023-12-15T15:09:11.215Z INFO initializing dbft {"height": 3417, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:11.215Z debug frostfs-node/morph.go:229 new block {"index": 3416} -2023-12-15T15:09:11.984Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3416, "blockHeight": 3416, "took": "4.563943ms"} -2023-12-15T15:09:12.215Z INFO sending PrepareRequest {"height": 3417, "view": 0} -2023-12-15T15:09:12.215Z INFO sending Commit {"height": 3417, "view": 0} -2023-12-15T15:09:12.216Z INFO approving block {"height": 3417, "hash": "63de17764205cf69d84776d8759cd13f0358d641fc196c3386d803339570b2d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be3ad8640bd7dea6f7e3e0a9f53bc4b56338b9dd340e0cdf0545c846c3311bfe"} -2023-12-15T15:09:12.217Z INFO initializing dbft {"height": 3418, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:12.218Z debug frostfs-node/morph.go:229 new block {"index": 3417} -2023-12-15T15:09:12.220Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:09:12.224Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:09:12.224Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:09:12.985Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3417, "blockHeight": 3417, "took": "4.753732ms"} -2023-12-15T15:09:13.217Z INFO sending PrepareRequest {"height": 3418, "view": 0} -2023-12-15T15:09:13.217Z INFO sending Commit {"height": 3418, "view": 0} -2023-12-15T15:09:13.218Z INFO approving block {"height": 3418, "hash": "4c60ba38794a5934baf4b3cf6dbebc7434e6826474bc4d80b9b9e19caebda2e1", "tx_count": 2, "merkle": "f03880c0f4d390e3ecf0549984ed1e7a706225a0cef91994f4483cebf6fc610c", "prev": "63de17764205cf69d84776d8759cd13f0358d641fc196c3386d803339570b2d1"} -2023-12-15T15:09:13.219Z INFO runtime log {"tx": "0e9e6dae1cabba2fe30ac50afdd6df1888653153cc00c9b49465bb3ef478e41e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:09:13.219Z INFO runtime log {"tx": "0e9e6dae1cabba2fe30ac50afdd6df1888653153cc00c9b49465bb3ef478e41e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:09:13.220Z INFO initializing dbft {"height": 3419, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:13.221Z debug frostfs-node/morph.go:229 new block {"index": 3418} -2023-12-15T15:09:13.986Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3418, "blockHeight": 3418, "took": "5.358347ms"} -2023-12-15T15:09:14.219Z INFO sending PrepareRequest {"height": 3419, "view": 0} -2023-12-15T15:09:14.219Z INFO sending Commit {"height": 3419, "view": 0} -2023-12-15T15:09:14.219Z INFO approving block {"height": 3419, "hash": "24c039cedadd9605ece16f05fcbac566b685c4f5da3fdd642f6a3837356caaa6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c60ba38794a5934baf4b3cf6dbebc7434e6826474bc4d80b9b9e19caebda2e1"} -2023-12-15T15:09:14.221Z INFO initializing dbft {"height": 3420, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:14.222Z debug frostfs-node/morph.go:229 new block {"index": 3419} -2023-12-15T15:09:14.985Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3419, "blockHeight": 3419, "took": "4.144751ms"} -2023-12-15T15:09:15.221Z INFO sending PrepareRequest {"height": 3420, "view": 0} -2023-12-15T15:09:15.221Z INFO sending Commit {"height": 3420, "view": 0} -2023-12-15T15:09:15.221Z INFO approving block {"height": 3420, "hash": "c2474d68d361ec11ba59df81456cd7d15c0d0e456394882cffe13811d0c692c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24c039cedadd9605ece16f05fcbac566b685c4f5da3fdd642f6a3837356caaa6"} -2023-12-15T15:09:15.222Z INFO initializing dbft {"height": 3421, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:15.223Z debug frostfs-node/morph.go:229 new block {"index": 3420} -2023-12-15T15:09:15.987Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3420, "blockHeight": 3420, "took": "4.439913ms"} -2023-12-15T15:09:16.222Z INFO sending PrepareRequest {"height": 3421, "view": 0} -2023-12-15T15:09:16.222Z INFO sending Commit {"height": 3421, "view": 0} -2023-12-15T15:09:16.223Z INFO approving block {"height": 3421, "hash": "e1b3505446c7ecd14538bb57dddac1d21eadc53eda4a3f0cb36236837d2b7859", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2474d68d361ec11ba59df81456cd7d15c0d0e456394882cffe13811d0c692c4"} -2023-12-15T15:09:16.224Z INFO initializing dbft {"height": 3422, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:16.224Z debug frostfs-node/morph.go:229 new block {"index": 3421} -2023-12-15T15:09:16.986Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3421, "blockHeight": 3421, "took": "3.387949ms"} -2023-12-15T15:09:17.223Z INFO sending PrepareRequest {"height": 3422, "view": 0} -2023-12-15T15:09:17.224Z INFO sending Commit {"height": 3422, "view": 0} -2023-12-15T15:09:17.224Z INFO approving block {"height": 3422, "hash": "4367db34b28f429a1f587d54d9953fdc178dc3bb775b09f4c50d4d27ec1e23c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1b3505446c7ecd14538bb57dddac1d21eadc53eda4a3f0cb36236837d2b7859"} -2023-12-15T15:09:17.225Z INFO initializing dbft {"height": 3423, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:17.225Z debug frostfs-node/morph.go:229 new block {"index": 3422} -2023-12-15T15:09:17.987Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3422, "blockHeight": 3422, "took": "4.236094ms"} -2023-12-15T15:09:18.225Z INFO sending PrepareRequest {"height": 3423, "view": 0} -2023-12-15T15:09:18.226Z INFO sending Commit {"height": 3423, "view": 0} -2023-12-15T15:09:18.226Z INFO approving block {"height": 3423, "hash": "255bd9629c5b6d7f09a5fa492ea5056eacc85c5a38f39b66456462133fcbf419", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4367db34b28f429a1f587d54d9953fdc178dc3bb775b09f4c50d4d27ec1e23c4"} -2023-12-15T15:09:18.230Z INFO initializing dbft {"height": 3424, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:18.230Z debug frostfs-node/morph.go:229 new block {"index": 3423} -2023-12-15T15:09:18.986Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3423, "blockHeight": 3423, "took": "2.993567ms"} -2023-12-15T15:09:19.228Z INFO sending PrepareRequest {"height": 3424, "view": 0} -2023-12-15T15:09:19.228Z INFO sending Commit {"height": 3424, "view": 0} -2023-12-15T15:09:19.228Z INFO approving block {"height": 3424, "hash": "86dbc8a2916e88fe36ce0e9e5c05d9672ea0264043c36c4b2e74a0454878c47f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "255bd9629c5b6d7f09a5fa492ea5056eacc85c5a38f39b66456462133fcbf419"} -2023-12-15T15:09:19.229Z INFO initializing dbft {"height": 3425, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:19.230Z debug frostfs-node/morph.go:229 new block {"index": 3424} -2023-12-15T15:09:19.987Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3424, "blockHeight": 3424, "took": "3.235054ms"} -2023-12-15T15:09:20.229Z INFO sending PrepareRequest {"height": 3425, "view": 0} -2023-12-15T15:09:20.229Z INFO sending Commit {"height": 3425, "view": 0} -2023-12-15T15:09:20.230Z INFO approving block {"height": 3425, "hash": "9ea8c5199aa8969e99b3c945aaf7505bda8757c6bc4e248c9f329da60a0c8c1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86dbc8a2916e88fe36ce0e9e5c05d9672ea0264043c36c4b2e74a0454878c47f"} -2023-12-15T15:09:20.231Z INFO initializing dbft {"height": 3426, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:20.232Z debug frostfs-node/morph.go:229 new block {"index": 3425} -2023-12-15T15:09:20.988Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3425, "blockHeight": 3425, "took": "3.312647ms"} -2023-12-15T15:09:21.230Z INFO sending PrepareRequest {"height": 3426, "view": 0} -2023-12-15T15:09:21.230Z INFO sending Commit {"height": 3426, "view": 0} -2023-12-15T15:09:21.231Z INFO approving block {"height": 3426, "hash": "ecacf95aeaa7d5533eff07411535336234cd974143a0fa77ae4ec09cb03e7f74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ea8c5199aa8969e99b3c945aaf7505bda8757c6bc4e248c9f329da60a0c8c1e"} -2023-12-15T15:09:21.232Z INFO initializing dbft {"height": 3427, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:21.232Z debug frostfs-node/morph.go:229 new block {"index": 3426} -2023-12-15T15:09:21.990Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3426, "blockHeight": 3426, "took": "4.87938ms"} -2023-12-15T15:09:22.232Z INFO sending PrepareRequest {"height": 3427, "view": 0} -2023-12-15T15:09:22.232Z INFO sending Commit {"height": 3427, "view": 0} -2023-12-15T15:09:22.232Z INFO approving block {"height": 3427, "hash": "90c6a52fc44e2131964183269cb6b02f31af594f063c2fd286f4ecfc49cad5fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecacf95aeaa7d5533eff07411535336234cd974143a0fa77ae4ec09cb03e7f74"} -2023-12-15T15:09:22.233Z INFO initializing dbft {"height": 3428, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:22.233Z debug frostfs-node/morph.go:229 new block {"index": 3427} -2023-12-15T15:09:22.989Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3427, "blockHeight": 3427, "took": "3.907714ms"} -2023-12-15T15:09:23.233Z INFO sending PrepareRequest {"height": 3428, "view": 0} -2023-12-15T15:09:23.234Z INFO sending Commit {"height": 3428, "view": 0} -2023-12-15T15:09:23.234Z INFO approving block {"height": 3428, "hash": "b6129f3a3d50855f1ae5f052ce2c4cce317b2a8118629df8d4d9e2b84e751405", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90c6a52fc44e2131964183269cb6b02f31af594f063c2fd286f4ecfc49cad5fe"} -2023-12-15T15:09:23.235Z INFO initializing dbft {"height": 3429, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:23.236Z debug frostfs-node/morph.go:229 new block {"index": 3428} -2023-12-15T15:09:23.989Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3428, "blockHeight": 3428, "took": "3.195823ms"} -2023-12-15T15:09:24.235Z INFO sending PrepareRequest {"height": 3429, "view": 0} -2023-12-15T15:09:24.235Z INFO sending Commit {"height": 3429, "view": 0} -2023-12-15T15:09:24.235Z INFO approving block {"height": 3429, "hash": "51197800ca06028ee19099d42d490c170283442f86128b98ec6ee4d0e2e8f28c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6129f3a3d50855f1ae5f052ce2c4cce317b2a8118629df8d4d9e2b84e751405"} -2023-12-15T15:09:24.236Z INFO initializing dbft {"height": 3430, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:24.237Z debug frostfs-node/morph.go:229 new block {"index": 3429} -2023-12-15T15:09:24.991Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3429, "blockHeight": 3429, "took": "4.485487ms"} -2023-12-15T15:09:25.237Z INFO sending PrepareRequest {"height": 3430, "view": 0} -2023-12-15T15:09:25.237Z INFO sending Commit {"height": 3430, "view": 0} -2023-12-15T15:09:25.237Z INFO approving block {"height": 3430, "hash": "db08686815e0567afcbc33999cb10bb101d3e860de8e69cf9adaa6a276122a09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51197800ca06028ee19099d42d490c170283442f86128b98ec6ee4d0e2e8f28c"} -2023-12-15T15:09:25.238Z INFO initializing dbft {"height": 3431, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:25.239Z debug frostfs-node/morph.go:229 new block {"index": 3430} -2023-12-15T15:09:25.990Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3430, "blockHeight": 3430, "took": "3.10389ms"} -2023-12-15T15:09:26.238Z INFO sending PrepareRequest {"height": 3431, "view": 0} -2023-12-15T15:09:26.238Z INFO sending Commit {"height": 3431, "view": 0} -2023-12-15T15:09:26.238Z INFO approving block {"height": 3431, "hash": "50e4b9ce3ccbf1311ae90f05e084f981e4d3bb4a21312b0e166dc67ef9971fdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db08686815e0567afcbc33999cb10bb101d3e860de8e69cf9adaa6a276122a09"} -2023-12-15T15:09:26.239Z INFO initializing dbft {"height": 3432, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:26.239Z debug frostfs-node/morph.go:229 new block {"index": 3431} -2023-12-15T15:09:26.991Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3431, "blockHeight": 3431, "took": "3.360438ms"} -2023-12-15T15:09:27.239Z INFO sending PrepareRequest {"height": 3432, "view": 0} -2023-12-15T15:09:27.240Z INFO sending Commit {"height": 3432, "view": 0} -2023-12-15T15:09:27.240Z INFO approving block {"height": 3432, "hash": "11821ded23b2b217f4c2250c82071f1c1219a74e24253a59e8653b5ec25b41d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50e4b9ce3ccbf1311ae90f05e084f981e4d3bb4a21312b0e166dc67ef9971fdb"} -2023-12-15T15:09:27.241Z INFO initializing dbft {"height": 3433, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:27.242Z debug frostfs-node/morph.go:229 new block {"index": 3432} -2023-12-15T15:09:27.991Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3432, "blockHeight": 3432, "took": "3.047619ms"} -2023-12-15T15:09:28.241Z INFO sending PrepareRequest {"height": 3433, "view": 0} -2023-12-15T15:09:28.241Z INFO sending Commit {"height": 3433, "view": 0} -2023-12-15T15:09:28.242Z INFO approving block {"height": 3433, "hash": "73ebe60b0dfc7cb7a849ff04c98fb1784614ce91f7c11d366f16d4cfd31aadd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11821ded23b2b217f4c2250c82071f1c1219a74e24253a59e8653b5ec25b41d6"} -2023-12-15T15:09:28.243Z INFO initializing dbft {"height": 3434, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:28.244Z debug frostfs-node/morph.go:229 new block {"index": 3433} -2023-12-15T15:09:28.249Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 15 epoch for daughters"} -2023-12-15T15:09:28.991Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3433, "blockHeight": 3433, "took": "3.0816ms"} -2023-12-15T15:09:29.244Z INFO sending PrepareRequest {"height": 3434, "view": 0} -2023-12-15T15:09:29.244Z INFO sending Commit {"height": 3434, "view": 0} -2023-12-15T15:09:29.244Z INFO approving block {"height": 3434, "hash": "88bf15305bcf07aba03bf42e777f01a8a169bc1a73920afd6af3117f1529c760", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73ebe60b0dfc7cb7a849ff04c98fb1784614ce91f7c11d366f16d4cfd31aadd0"} -2023-12-15T15:09:29.246Z INFO initializing dbft {"height": 3435, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:29.246Z debug frostfs-node/morph.go:229 new block {"index": 3434} -2023-12-15T15:09:29.251Z INFO runtime log {"tx": "1fbf1e0245012c78848370080fbe250af6c06824e525be23008de556caeedcc6", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:09:29.996Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3434, "blockHeight": 3434, "took": "5.918846ms"} -2023-12-15T15:09:30.245Z INFO sending PrepareRequest {"height": 3435, "view": 0} -2023-12-15T15:09:30.245Z INFO sending Commit {"height": 3435, "view": 0} -2023-12-15T15:09:30.245Z INFO approving block {"height": 3435, "hash": "9cc6d3767a046f728c3258e02fe28f8ab60a6e775ed5e73f39b0e70fc615fdef", "tx_count": 1, "merkle": "cbe73d468082997151eaa71b47ad1c0eb866b251fe314fe8720589688492da54", "prev": "88bf15305bcf07aba03bf42e777f01a8a169bc1a73920afd6af3117f1529c760"} -2023-12-15T15:09:30.246Z INFO runtime log {"tx": "54da928468890572e84f31fe51b266b80e1cad471ba7ea5171998280463de7cb", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:09:30.247Z INFO initializing dbft {"height": 3436, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:30.247Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 15} -2023-12-15T15:09:30.247Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 15} -2023-12-15T15:09:30.248Z debug frostfs-node/morph.go:229 new block {"index": 3435} -2023-12-15T15:09:30.997Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 3435, "blockHeight": 3435, "took": "7.125919ms"} -2023-12-15T15:09:31.246Z INFO sending PrepareRequest {"height": 3436, "view": 0} -2023-12-15T15:09:31.246Z INFO sending Commit {"height": 3436, "view": 0} -2023-12-15T15:09:31.246Z INFO approving block {"height": 3436, "hash": "a3f79075b9a864b96b9caa7787fcec8ee590b6d61ec19cebece081e1fdd41f10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cc6d3767a046f728c3258e02fe28f8ab60a6e775ed5e73f39b0e70fc615fdef"} -2023-12-15T15:09:31.248Z INFO initializing dbft {"height": 3437, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:31.248Z debug frostfs-node/morph.go:229 new block {"index": 3436} -2023-12-15T15:09:31.995Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3436, "blockHeight": 3436, "took": "4.131615ms"} -2023-12-15T15:09:32.248Z INFO sending PrepareRequest {"height": 3437, "view": 0} -2023-12-15T15:09:32.248Z INFO sending Commit {"height": 3437, "view": 0} -2023-12-15T15:09:32.248Z INFO approving block {"height": 3437, "hash": "f72be416bcb9a235639be22c4bb067a28e3b21f2d9d647120614569722dc0251", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3f79075b9a864b96b9caa7787fcec8ee590b6d61ec19cebece081e1fdd41f10"} -2023-12-15T15:09:32.250Z INFO initializing dbft {"height": 3438, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:32.250Z debug frostfs-node/morph.go:229 new block {"index": 3437} -2023-12-15T15:09:32.994Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3437, "blockHeight": 3437, "took": "3.271016ms"} -2023-12-15T15:09:33.249Z INFO sending PrepareRequest {"height": 3438, "view": 0} -2023-12-15T15:09:33.249Z INFO sending Commit {"height": 3438, "view": 0} -2023-12-15T15:09:33.249Z INFO approving block {"height": 3438, "hash": "148773f202f9da30b1e7ba97b876978daaad3de843271eac03ddb3a6466e1e59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f72be416bcb9a235639be22c4bb067a28e3b21f2d9d647120614569722dc0251"} -2023-12-15T15:09:33.250Z INFO initializing dbft {"height": 3439, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:33.250Z debug frostfs-node/morph.go:229 new block {"index": 3438} -2023-12-15T15:09:33.995Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3438, "blockHeight": 3438, "took": "3.540914ms"} -2023-12-15T15:09:34.250Z INFO sending PrepareRequest {"height": 3439, "view": 0} -2023-12-15T15:09:34.250Z INFO sending Commit {"height": 3439, "view": 0} -2023-12-15T15:09:34.251Z INFO approving block {"height": 3439, "hash": "4c8f739e5e04af5bd26f4febb33d04a47ae7331a2c0e19ce9bc2a5add2a5ff60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "148773f202f9da30b1e7ba97b876978daaad3de843271eac03ddb3a6466e1e59"} -2023-12-15T15:09:34.252Z INFO initializing dbft {"height": 3440, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:34.252Z debug frostfs-node/morph.go:229 new block {"index": 3439} -2023-12-15T15:09:34.996Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3439, "blockHeight": 3439, "took": "4.526726ms"} -2023-12-15T15:09:35.252Z INFO sending PrepareRequest {"height": 3440, "view": 0} -2023-12-15T15:09:35.252Z INFO sending Commit {"height": 3440, "view": 0} -2023-12-15T15:09:35.252Z INFO approving block {"height": 3440, "hash": "537aca297ae42fab2511dcb2a36e96b8bf6d92f32cb6eaafe1d86c1d438f04c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c8f739e5e04af5bd26f4febb33d04a47ae7331a2c0e19ce9bc2a5add2a5ff60"} -2023-12-15T15:09:35.253Z INFO initializing dbft {"height": 3441, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:35.253Z debug frostfs-node/morph.go:229 new block {"index": 3440} -2023-12-15T15:09:35.997Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3440, "blockHeight": 3440, "took": "4.412195ms"} -2023-12-15T15:09:36.253Z INFO sending PrepareRequest {"height": 3441, "view": 0} -2023-12-15T15:09:36.254Z INFO sending Commit {"height": 3441, "view": 0} -2023-12-15T15:09:36.254Z INFO approving block {"height": 3441, "hash": "daf7f543f46bdc28d3ea9de08620429873902a83f4146a26f6689579bbe8770e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "537aca297ae42fab2511dcb2a36e96b8bf6d92f32cb6eaafe1d86c1d438f04c8"} -2023-12-15T15:09:36.256Z INFO initializing dbft {"height": 3442, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:36.256Z debug frostfs-node/morph.go:229 new block {"index": 3441} -2023-12-15T15:09:36.997Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3441, "blockHeight": 3441, "took": "4.19377ms"} -2023-12-15T15:09:37.255Z INFO sending PrepareRequest {"height": 3442, "view": 0} -2023-12-15T15:09:37.255Z INFO sending Commit {"height": 3442, "view": 0} -2023-12-15T15:09:37.255Z INFO approving block {"height": 3442, "hash": "15f3e6f4f402381a47b2c3c93bbd5c08f38f7d52dceb091abb2417f458cdba3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "daf7f543f46bdc28d3ea9de08620429873902a83f4146a26f6689579bbe8770e"} -2023-12-15T15:09:37.256Z INFO initializing dbft {"height": 3443, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:37.257Z debug frostfs-node/morph.go:229 new block {"index": 3442} -2023-12-15T15:09:37.997Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3442, "blockHeight": 3442, "took": "3.248382ms"} -2023-12-15T15:09:38.256Z INFO sending PrepareRequest {"height": 3443, "view": 0} -2023-12-15T15:09:38.256Z INFO sending Commit {"height": 3443, "view": 0} -2023-12-15T15:09:38.257Z INFO approving block {"height": 3443, "hash": "4e8c824e69c7b919f43eba463568031bb048bbb3ee20b5114e88d351946d9922", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15f3e6f4f402381a47b2c3c93bbd5c08f38f7d52dceb091abb2417f458cdba3a"} -2023-12-15T15:09:38.258Z INFO initializing dbft {"height": 3444, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:38.258Z debug frostfs-node/morph.go:229 new block {"index": 3443} -2023-12-15T15:09:38.999Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3443, "blockHeight": 3443, "took": "4.494251ms"} -2023-12-15T15:09:39.258Z INFO sending PrepareRequest {"height": 3444, "view": 0} -2023-12-15T15:09:39.258Z INFO sending Commit {"height": 3444, "view": 0} -2023-12-15T15:09:39.258Z INFO approving block {"height": 3444, "hash": "151fcd7a0c09efeb713e07d039ecb92f9ca1e2fb774a9e1051488106586e1621", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e8c824e69c7b919f43eba463568031bb048bbb3ee20b5114e88d351946d9922"} -2023-12-15T15:09:39.259Z INFO initializing dbft {"height": 3445, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:39.260Z debug frostfs-node/morph.go:229 new block {"index": 3444} -2023-12-15T15:09:39.998Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3444, "blockHeight": 3444, "took": "2.980717ms"} -2023-12-15T15:09:40.259Z INFO sending PrepareRequest {"height": 3445, "view": 0} -2023-12-15T15:09:40.260Z INFO sending Commit {"height": 3445, "view": 0} -2023-12-15T15:09:40.260Z INFO approving block {"height": 3445, "hash": "1c25f9ce7c92e073076f78b55e60d50e4ec2988d5215cf9150339eb6c6ccf2f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "151fcd7a0c09efeb713e07d039ecb92f9ca1e2fb774a9e1051488106586e1621"} -2023-12-15T15:09:40.261Z INFO initializing dbft {"height": 3446, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:40.261Z debug frostfs-node/morph.go:229 new block {"index": 3445} -2023-12-15T15:09:41.000Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3445, "blockHeight": 3445, "took": "4.308146ms"} -2023-12-15T15:09:41.260Z INFO sending PrepareRequest {"height": 3446, "view": 0} -2023-12-15T15:09:41.260Z INFO sending Commit {"height": 3446, "view": 0} -2023-12-15T15:09:41.261Z INFO approving block {"height": 3446, "hash": "fdf5ff0457565bc9eeabd7c93ce0abea77ff6c8d49bdd0fcaa11002a462d9c40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c25f9ce7c92e073076f78b55e60d50e4ec2988d5215cf9150339eb6c6ccf2f4"} -2023-12-15T15:09:41.262Z INFO initializing dbft {"height": 3447, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:41.262Z debug frostfs-node/morph.go:229 new block {"index": 3446} -2023-12-15T15:09:41.999Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3446, "blockHeight": 3446, "took": "3.009858ms"} -2023-12-15T15:09:42.262Z INFO sending PrepareRequest {"height": 3447, "view": 0} -2023-12-15T15:09:42.262Z INFO sending Commit {"height": 3447, "view": 0} -2023-12-15T15:09:42.262Z INFO approving block {"height": 3447, "hash": "594d8f7ba431fd5425767f6c8396c2b69414ed8abbdb88a73803c13523555093", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdf5ff0457565bc9eeabd7c93ce0abea77ff6c8d49bdd0fcaa11002a462d9c40"} -2023-12-15T15:09:42.263Z INFO initializing dbft {"height": 3448, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:42.264Z debug frostfs-node/morph.go:229 new block {"index": 3447} -2023-12-15T15:09:42.999Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3447, "blockHeight": 3447, "took": "3.076849ms"} -2023-12-15T15:09:43.263Z INFO sending PrepareRequest {"height": 3448, "view": 0} -2023-12-15T15:09:43.263Z INFO sending Commit {"height": 3448, "view": 0} -2023-12-15T15:09:43.264Z INFO approving block {"height": 3448, "hash": "c97c59561616120258899eac9f832c3aacc8f55719e42492e1b44b2fad5aee66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "594d8f7ba431fd5425767f6c8396c2b69414ed8abbdb88a73803c13523555093"} -2023-12-15T15:09:43.264Z INFO initializing dbft {"height": 3449, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:43.265Z debug frostfs-node/morph.go:229 new block {"index": 3448} -2023-12-15T15:09:44.000Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3448, "blockHeight": 3448, "took": "3.309587ms"} -2023-12-15T15:09:44.265Z INFO sending PrepareRequest {"height": 3449, "view": 0} -2023-12-15T15:09:44.265Z INFO sending Commit {"height": 3449, "view": 0} -2023-12-15T15:09:44.265Z INFO approving block {"height": 3449, "hash": "be3bd207e7518544c8269d95040a60e7516705c8baac978649e00785e05eddc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c97c59561616120258899eac9f832c3aacc8f55719e42492e1b44b2fad5aee66"} -2023-12-15T15:09:44.266Z INFO initializing dbft {"height": 3450, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:44.267Z debug frostfs-node/morph.go:229 new block {"index": 3449} -2023-12-15T15:09:45.001Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3449, "blockHeight": 3449, "took": "3.561704ms"} -2023-12-15T15:09:45.266Z INFO sending PrepareRequest {"height": 3450, "view": 0} -2023-12-15T15:09:45.266Z INFO sending Commit {"height": 3450, "view": 0} -2023-12-15T15:09:45.266Z INFO approving block {"height": 3450, "hash": "0e29402efe5f80b58535e960778ea9fa73d24442b8f05fafd9e159119bcbcede", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be3bd207e7518544c8269d95040a60e7516705c8baac978649e00785e05eddc1"} -2023-12-15T15:09:45.267Z INFO initializing dbft {"height": 3451, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:45.268Z debug frostfs-node/morph.go:229 new block {"index": 3450} -2023-12-15T15:09:46.003Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3450, "blockHeight": 3450, "took": "4.797543ms"} -2023-12-15T15:09:46.268Z INFO sending PrepareRequest {"height": 3451, "view": 0} -2023-12-15T15:09:46.268Z INFO sending Commit {"height": 3451, "view": 0} -2023-12-15T15:09:46.268Z INFO approving block {"height": 3451, "hash": "00277dfc07a444e0f72e20c08aabe4d368dfb8d32256a1ffc25b47c6c6227325", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e29402efe5f80b58535e960778ea9fa73d24442b8f05fafd9e159119bcbcede"} -2023-12-15T15:09:46.270Z INFO initializing dbft {"height": 3452, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:46.271Z debug frostfs-node/morph.go:229 new block {"index": 3451} -2023-12-15T15:09:47.003Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3451, "blockHeight": 3451, "took": "4.353173ms"} -2023-12-15T15:09:47.269Z INFO sending PrepareRequest {"height": 3452, "view": 0} -2023-12-15T15:09:47.269Z INFO sending Commit {"height": 3452, "view": 0} -2023-12-15T15:09:47.270Z INFO approving block {"height": 3452, "hash": "48275604b58499e093d3be2da6e4584a82e6838b34e347ada034023ae01ab68e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00277dfc07a444e0f72e20c08aabe4d368dfb8d32256a1ffc25b47c6c6227325"} -2023-12-15T15:09:47.271Z INFO initializing dbft {"height": 3453, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:47.271Z debug frostfs-node/morph.go:229 new block {"index": 3452} -2023-12-15T15:09:48.002Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3452, "blockHeight": 3452, "took": "3.04243ms"} -2023-12-15T15:09:48.271Z INFO sending PrepareRequest {"height": 3453, "view": 0} -2023-12-15T15:09:48.271Z INFO sending Commit {"height": 3453, "view": 0} -2023-12-15T15:09:48.271Z INFO approving block {"height": 3453, "hash": "1a87ae8dda51766b91938e569d25306af5e822eadeada1e8652bd311d9022f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48275604b58499e093d3be2da6e4584a82e6838b34e347ada034023ae01ab68e"} -2023-12-15T15:09:48.273Z INFO initializing dbft {"height": 3454, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:48.273Z debug frostfs-node/morph.go:229 new block {"index": 3453} -2023-12-15T15:09:49.004Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3453, "blockHeight": 3453, "took": "4.929883ms"} -2023-12-15T15:09:49.272Z INFO sending PrepareRequest {"height": 3454, "view": 0} -2023-12-15T15:09:49.273Z INFO sending Commit {"height": 3454, "view": 0} -2023-12-15T15:09:49.273Z INFO approving block {"height": 3454, "hash": "80e08a97758305423e1a6d7db9d9af46539196349068792d7417b930f2a02831", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a87ae8dda51766b91938e569d25306af5e822eadeada1e8652bd311d9022f8b"} -2023-12-15T15:09:49.275Z INFO initializing dbft {"height": 3455, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:49.276Z debug frostfs-node/morph.go:229 new block {"index": 3454} -2023-12-15T15:09:50.007Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3454, "blockHeight": 3454, "took": "7.171872ms"} -2023-12-15T15:09:50.274Z INFO sending PrepareRequest {"height": 3455, "view": 0} -2023-12-15T15:09:50.274Z INFO sending Commit {"height": 3455, "view": 0} -2023-12-15T15:09:50.275Z INFO approving block {"height": 3455, "hash": "126b1381f015bc5e37e210ec50cd1d8c1993f958af5d21bcd94db41a52ebcdb3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80e08a97758305423e1a6d7db9d9af46539196349068792d7417b930f2a02831"} -2023-12-15T15:09:50.277Z INFO initializing dbft {"height": 3456, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:50.278Z debug frostfs-node/morph.go:229 new block {"index": 3455} -2023-12-15T15:09:51.005Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3455, "blockHeight": 3455, "took": "4.997076ms"} -2023-12-15T15:09:51.276Z INFO sending PrepareRequest {"height": 3456, "view": 0} -2023-12-15T15:09:51.276Z INFO sending Commit {"height": 3456, "view": 0} -2023-12-15T15:09:51.277Z INFO approving block {"height": 3456, "hash": "3f15d3d07168251ca5a11b2bed3cba5d437f1cc3d97941d28bd17498e3fd9cf0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "126b1381f015bc5e37e210ec50cd1d8c1993f958af5d21bcd94db41a52ebcdb3"} -2023-12-15T15:09:51.278Z INFO initializing dbft {"height": 3457, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:51.278Z debug frostfs-node/morph.go:229 new block {"index": 3456} -2023-12-15T15:09:52.005Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3456, "blockHeight": 3456, "took": "4.600573ms"} -2023-12-15T15:09:52.278Z INFO sending PrepareRequest {"height": 3457, "view": 0} -2023-12-15T15:09:52.278Z INFO sending Commit {"height": 3457, "view": 0} -2023-12-15T15:09:52.278Z INFO approving block {"height": 3457, "hash": "b8bdf088b0b8e372c1cd36d3ce8b2cfb47ac51578105370fb5d017d3fa77f23c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f15d3d07168251ca5a11b2bed3cba5d437f1cc3d97941d28bd17498e3fd9cf0"} -2023-12-15T15:09:52.280Z INFO initializing dbft {"height": 3458, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:52.280Z debug frostfs-node/morph.go:229 new block {"index": 3457} -2023-12-15T15:09:53.004Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3457, "blockHeight": 3457, "took": "2.908934ms"} -2023-12-15T15:09:53.279Z INFO sending PrepareRequest {"height": 3458, "view": 0} -2023-12-15T15:09:53.279Z INFO sending Commit {"height": 3458, "view": 0} -2023-12-15T15:09:53.279Z INFO approving block {"height": 3458, "hash": "d2407cf4f6943da55c35af75756eab57cca3a0e6aab74bf2dcf7b9705d1ab867", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8bdf088b0b8e372c1cd36d3ce8b2cfb47ac51578105370fb5d017d3fa77f23c"} -2023-12-15T15:09:53.280Z INFO initializing dbft {"height": 3459, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:53.281Z debug frostfs-node/morph.go:229 new block {"index": 3458} -2023-12-15T15:09:54.007Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3458, "blockHeight": 3458, "took": "4.918172ms"} -2023-12-15T15:09:54.281Z INFO sending PrepareRequest {"height": 3459, "view": 0} -2023-12-15T15:09:54.281Z INFO sending Commit {"height": 3459, "view": 0} -2023-12-15T15:09:54.281Z INFO approving block {"height": 3459, "hash": "00e730532478554cae1d1ad486fb29c6d7ecef5751a351cd330dd584e77e5645", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2407cf4f6943da55c35af75756eab57cca3a0e6aab74bf2dcf7b9705d1ab867"} -2023-12-15T15:09:54.282Z INFO initializing dbft {"height": 3460, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:54.282Z debug frostfs-node/morph.go:229 new block {"index": 3459} -2023-12-15T15:09:55.006Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3459, "blockHeight": 3459, "took": "3.941204ms"} -2023-12-15T15:09:55.282Z INFO sending PrepareRequest {"height": 3460, "view": 0} -2023-12-15T15:09:55.282Z INFO sending Commit {"height": 3460, "view": 0} -2023-12-15T15:09:55.282Z INFO approving block {"height": 3460, "hash": "950e9cdf608d935593742c0cc48ca18dd35366bd5e2c84a758ed7d73b38d1c42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00e730532478554cae1d1ad486fb29c6d7ecef5751a351cd330dd584e77e5645"} -2023-12-15T15:09:55.284Z INFO initializing dbft {"height": 3461, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:55.284Z debug frostfs-node/morph.go:229 new block {"index": 3460} -2023-12-15T15:09:56.007Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3460, "blockHeight": 3460, "took": "4.140612ms"} -2023-12-15T15:09:56.284Z INFO sending PrepareRequest {"height": 3461, "view": 0} -2023-12-15T15:09:56.284Z INFO sending Commit {"height": 3461, "view": 0} -2023-12-15T15:09:56.285Z INFO approving block {"height": 3461, "hash": "e70c71b9b622fe537e45f2884e2183c05ff86e4c235a1680d0587d6f5f10aba0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "950e9cdf608d935593742c0cc48ca18dd35366bd5e2c84a758ed7d73b38d1c42"} -2023-12-15T15:09:56.287Z INFO initializing dbft {"height": 3462, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:56.287Z debug frostfs-node/morph.go:229 new block {"index": 3461} -2023-12-15T15:09:57.008Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3461, "blockHeight": 3461, "took": "4.256164ms"} -2023-12-15T15:09:57.286Z INFO sending PrepareRequest {"height": 3462, "view": 0} -2023-12-15T15:09:57.287Z INFO sending Commit {"height": 3462, "view": 0} -2023-12-15T15:09:57.287Z INFO approving block {"height": 3462, "hash": "a58780d563a63ed459af4f7fa09755fa53c7cdd245c9dcfc8dfe35922ae5ec96", "tx_count": 1, "merkle": "57762ee1762ccb0ed410283f69add6f63a01c12aff7e7b6a4f997d2e2ae9d607", "prev": "e70c71b9b622fe537e45f2884e2183c05ff86e4c235a1680d0587d6f5f10aba0"} -2023-12-15T15:09:57.288Z INFO initializing dbft {"height": 3463, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:57.289Z debug frostfs-node/morph.go:229 new block {"index": 3462} -2023-12-15T15:09:57.292Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T15:09:58.011Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 3462, "blockHeight": 3462, "took": "7.023502ms"} -2023-12-15T15:09:58.288Z INFO sending PrepareRequest {"height": 3463, "view": 0} -2023-12-15T15:09:58.289Z INFO sending Commit {"height": 3463, "view": 0} -2023-12-15T15:09:58.289Z INFO approving block {"height": 3463, "hash": "0c6416acd0064cabdda12bb185920fbed66205558c4e4a95dde39b360e2053f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a58780d563a63ed459af4f7fa09755fa53c7cdd245c9dcfc8dfe35922ae5ec96"} -2023-12-15T15:09:58.290Z INFO initializing dbft {"height": 3464, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:58.291Z debug frostfs-node/morph.go:229 new block {"index": 3463} -2023-12-15T15:09:59.009Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3463, "blockHeight": 3463, "took": "4.16983ms"} -2023-12-15T15:09:59.290Z INFO sending PrepareRequest {"height": 3464, "view": 0} -2023-12-15T15:09:59.290Z INFO sending Commit {"height": 3464, "view": 0} -2023-12-15T15:09:59.290Z INFO approving block {"height": 3464, "hash": "e1d47eff7c18f8390cd539ba458d0b2ccac5596692eefb6db8bdc6f933fffb69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c6416acd0064cabdda12bb185920fbed66205558c4e4a95dde39b360e2053f0"} -2023-12-15T15:09:59.291Z INFO initializing dbft {"height": 3465, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:09:59.292Z debug frostfs-node/morph.go:229 new block {"index": 3464} -2023-12-15T15:10:00.010Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3464, "blockHeight": 3464, "took": "4.212451ms"} -2023-12-15T15:10:00.292Z INFO sending PrepareRequest {"height": 3465, "view": 0} -2023-12-15T15:10:00.292Z INFO sending Commit {"height": 3465, "view": 0} -2023-12-15T15:10:00.292Z INFO approving block {"height": 3465, "hash": "da7f4e86ca8385ccc58b72b348dd989e016838aaed438f2aaf5e40f2422f5f74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1d47eff7c18f8390cd539ba458d0b2ccac5596692eefb6db8bdc6f933fffb69"} -2023-12-15T15:10:00.293Z INFO initializing dbft {"height": 3466, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:00.294Z debug frostfs-node/morph.go:229 new block {"index": 3465} -2023-12-15T15:10:01.009Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3465, "blockHeight": 3465, "took": "3.120391ms"} -2023-12-15T15:10:01.293Z INFO sending PrepareRequest {"height": 3466, "view": 0} -2023-12-15T15:10:01.293Z INFO sending Commit {"height": 3466, "view": 0} -2023-12-15T15:10:01.294Z INFO approving block {"height": 3466, "hash": "b39df4bafb7988a62cbdcd1fe30a26ea21485f8b379cc21a63a208d97fdb72db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da7f4e86ca8385ccc58b72b348dd989e016838aaed438f2aaf5e40f2422f5f74"} -2023-12-15T15:10:01.295Z INFO initializing dbft {"height": 3467, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:01.295Z debug frostfs-node/morph.go:229 new block {"index": 3466} -2023-12-15T15:10:02.010Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3466, "blockHeight": 3466, "took": "3.09668ms"} -2023-12-15T15:10:02.294Z INFO sending PrepareRequest {"height": 3467, "view": 0} -2023-12-15T15:10:02.295Z INFO sending Commit {"height": 3467, "view": 0} -2023-12-15T15:10:02.295Z INFO approving block {"height": 3467, "hash": "b2e504f6de3195c04e43f8ae9998700ae9a780e559154f0c51d74758988d58f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b39df4bafb7988a62cbdcd1fe30a26ea21485f8b379cc21a63a208d97fdb72db"} -2023-12-15T15:10:02.296Z INFO initializing dbft {"height": 3468, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:02.297Z debug frostfs-node/morph.go:229 new block {"index": 3467} -2023-12-15T15:10:02.299Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:10:02.302Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:10:02.302Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:10:03.013Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3467, "blockHeight": 3467, "took": "5.532692ms"} -2023-12-15T15:10:03.296Z INFO sending PrepareRequest {"height": 3468, "view": 0} -2023-12-15T15:10:03.296Z INFO sending Commit {"height": 3468, "view": 0} -2023-12-15T15:10:03.296Z INFO approving block {"height": 3468, "hash": "05cf01ed334ba4460f35bb0b6fc8025d8a284ab0314a4539016e06c186f3f979", "tx_count": 2, "merkle": "f696e83f121c8671c55e1e85d4e2ccc472b326b2563dca5245ed5f8544e8f8ae", "prev": "b2e504f6de3195c04e43f8ae9998700ae9a780e559154f0c51d74758988d58f6"} -2023-12-15T15:10:03.297Z INFO runtime log {"tx": "aa02da16635d9c9e9a82c4e71a1b142287dc0a2fb5abe49d57c51706d70d67eb", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:10:03.297Z INFO runtime log {"tx": "aa02da16635d9c9e9a82c4e71a1b142287dc0a2fb5abe49d57c51706d70d67eb", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:10:03.298Z INFO initializing dbft {"height": 3469, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:03.300Z debug frostfs-node/morph.go:229 new block {"index": 3468} -2023-12-15T15:10:04.013Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3468, "blockHeight": 3468, "took": "5.368617ms"} -2023-12-15T15:10:04.298Z INFO sending PrepareRequest {"height": 3469, "view": 0} -2023-12-15T15:10:04.298Z INFO sending Commit {"height": 3469, "view": 0} -2023-12-15T15:10:04.298Z INFO approving block {"height": 3469, "hash": "d1ba21baf6310c6c9a70c28a4612d6c177aba54a86eebb3a4b1b2d1dd9a8916d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05cf01ed334ba4460f35bb0b6fc8025d8a284ab0314a4539016e06c186f3f979"} -2023-12-15T15:10:04.300Z INFO initializing dbft {"height": 3470, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:04.300Z debug frostfs-node/morph.go:229 new block {"index": 3469} -2023-12-15T15:10:05.011Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3469, "blockHeight": 3469, "took": "3.28057ms"} -2023-12-15T15:10:05.299Z INFO sending PrepareRequest {"height": 3470, "view": 0} -2023-12-15T15:10:05.300Z INFO sending Commit {"height": 3470, "view": 0} -2023-12-15T15:10:05.300Z INFO approving block {"height": 3470, "hash": "f0c7c712b647699c489e879e4c29a9dcb0338e0a89818b1e55a8b3154291ab2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1ba21baf6310c6c9a70c28a4612d6c177aba54a86eebb3a4b1b2d1dd9a8916d"} -2023-12-15T15:10:05.301Z INFO initializing dbft {"height": 3471, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:05.302Z debug frostfs-node/morph.go:229 new block {"index": 3470} -2023-12-15T15:10:06.012Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3470, "blockHeight": 3470, "took": "3.019488ms"} -2023-12-15T15:10:06.302Z INFO sending PrepareRequest {"height": 3471, "view": 0} -2023-12-15T15:10:06.302Z INFO sending Commit {"height": 3471, "view": 0} -2023-12-15T15:10:06.302Z INFO approving block {"height": 3471, "hash": "c270c6b8cfa75f427f21f02f6bb9735d7d4d3e208df1f7bd5dd5f7f0a72b1d18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0c7c712b647699c489e879e4c29a9dcb0338e0a89818b1e55a8b3154291ab2c"} -2023-12-15T15:10:06.304Z INFO initializing dbft {"height": 3472, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:06.304Z debug frostfs-node/morph.go:229 new block {"index": 3471} -2023-12-15T15:10:07.012Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3471, "blockHeight": 3471, "took": "3.361968ms"} -2023-12-15T15:10:07.303Z INFO sending PrepareRequest {"height": 3472, "view": 0} -2023-12-15T15:10:07.303Z INFO sending Commit {"height": 3472, "view": 0} -2023-12-15T15:10:07.303Z INFO approving block {"height": 3472, "hash": "57d99692503cdb35a07be4feef922de2f9ceaf809742e11c5cc3fb006909fb7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c270c6b8cfa75f427f21f02f6bb9735d7d4d3e208df1f7bd5dd5f7f0a72b1d18"} -2023-12-15T15:10:07.304Z INFO initializing dbft {"height": 3473, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:07.305Z debug frostfs-node/morph.go:229 new block {"index": 3472} -2023-12-15T15:10:08.014Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3472, "blockHeight": 3472, "took": "4.329553ms"} -2023-12-15T15:10:08.305Z INFO sending PrepareRequest {"height": 3473, "view": 0} -2023-12-15T15:10:08.305Z INFO sending Commit {"height": 3473, "view": 0} -2023-12-15T15:10:08.305Z INFO approving block {"height": 3473, "hash": "8185feedc33af1186c5224b84d230443249df6c612390f28d9a096212074b941", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57d99692503cdb35a07be4feef922de2f9ceaf809742e11c5cc3fb006909fb7b"} -2023-12-15T15:10:08.306Z INFO initializing dbft {"height": 3474, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:08.306Z debug frostfs-node/morph.go:229 new block {"index": 3473} -2023-12-15T15:10:09.015Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3473, "blockHeight": 3473, "took": "5.198142ms"} -2023-12-15T15:10:09.306Z INFO sending PrepareRequest {"height": 3474, "view": 0} -2023-12-15T15:10:09.306Z INFO sending Commit {"height": 3474, "view": 0} -2023-12-15T15:10:09.306Z INFO approving block {"height": 3474, "hash": "f29fe81e65a0b7200a76dd55922bfeacf85e2561a75c4b7f211813f69b4c2433", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8185feedc33af1186c5224b84d230443249df6c612390f28d9a096212074b941"} -2023-12-15T15:10:09.307Z INFO initializing dbft {"height": 3475, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:09.308Z debug frostfs-node/morph.go:229 new block {"index": 3474} -2023-12-15T15:10:10.015Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3474, "blockHeight": 3474, "took": "4.683938ms"} -2023-12-15T15:10:10.308Z INFO sending PrepareRequest {"height": 3475, "view": 0} -2023-12-15T15:10:10.308Z INFO sending Commit {"height": 3475, "view": 0} -2023-12-15T15:10:10.308Z INFO approving block {"height": 3475, "hash": "bda87adc7e170cf2a58860d08e6059b514a447cc79170bb0e7d05fe6698d9c2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f29fe81e65a0b7200a76dd55922bfeacf85e2561a75c4b7f211813f69b4c2433"} -2023-12-15T15:10:10.309Z INFO initializing dbft {"height": 3476, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:10.310Z debug frostfs-node/morph.go:229 new block {"index": 3475} -2023-12-15T15:10:11.016Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3475, "blockHeight": 3475, "took": "4.21224ms"} -2023-12-15T15:10:11.310Z INFO sending PrepareRequest {"height": 3476, "view": 0} -2023-12-15T15:10:11.310Z INFO sending Commit {"height": 3476, "view": 0} -2023-12-15T15:10:11.310Z INFO approving block {"height": 3476, "hash": "9535eece2f25c38f0215cdc806001bdd7513c4866b516d032ddb707be0fe72af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bda87adc7e170cf2a58860d08e6059b514a447cc79170bb0e7d05fe6698d9c2c"} -2023-12-15T15:10:11.311Z INFO initializing dbft {"height": 3477, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:11.311Z debug frostfs-node/morph.go:229 new block {"index": 3476} -2023-12-15T15:10:12.015Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3476, "blockHeight": 3476, "took": "2.920205ms"} -2023-12-15T15:10:12.311Z INFO sending PrepareRequest {"height": 3477, "view": 0} -2023-12-15T15:10:12.312Z INFO sending Commit {"height": 3477, "view": 0} -2023-12-15T15:10:12.312Z INFO approving block {"height": 3477, "hash": "017571e3da3cf4b7c2a7d58617b79743ed92a40b8b8f8bd914782879a0bea72a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9535eece2f25c38f0215cdc806001bdd7513c4866b516d032ddb707be0fe72af"} -2023-12-15T15:10:12.313Z INFO initializing dbft {"height": 3478, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:12.314Z debug frostfs-node/morph.go:229 new block {"index": 3477} -2023-12-15T15:10:13.018Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3477, "blockHeight": 3477, "took": "5.44418ms"} -2023-12-15T15:10:13.313Z INFO sending PrepareRequest {"height": 3478, "view": 0} -2023-12-15T15:10:13.313Z INFO sending Commit {"height": 3478, "view": 0} -2023-12-15T15:10:13.313Z INFO approving block {"height": 3478, "hash": "80a3902066310173119d6c7af4b8245dc4bea4323fcf31bad2e91ae301e18566", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "017571e3da3cf4b7c2a7d58617b79743ed92a40b8b8f8bd914782879a0bea72a"} -2023-12-15T15:10:13.314Z INFO initializing dbft {"height": 3479, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:13.314Z debug frostfs-node/morph.go:229 new block {"index": 3478} -2023-12-15T15:10:14.018Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3478, "blockHeight": 3478, "took": "4.504502ms"} -2023-12-15T15:10:14.314Z INFO sending PrepareRequest {"height": 3479, "view": 0} -2023-12-15T15:10:14.314Z INFO sending Commit {"height": 3479, "view": 0} -2023-12-15T15:10:14.314Z INFO approving block {"height": 3479, "hash": "33b44b8537b0b537e99bd3c4a686787e33d69765caad03356746ff87c972070f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80a3902066310173119d6c7af4b8245dc4bea4323fcf31bad2e91ae301e18566"} -2023-12-15T15:10:14.315Z INFO initializing dbft {"height": 3480, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:14.316Z debug frostfs-node/morph.go:229 new block {"index": 3479} -2023-12-15T15:10:15.017Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3479, "blockHeight": 3479, "took": "3.507732ms"} -2023-12-15T15:10:15.316Z INFO sending PrepareRequest {"height": 3480, "view": 0} -2023-12-15T15:10:15.316Z INFO sending Commit {"height": 3480, "view": 0} -2023-12-15T15:10:15.316Z INFO approving block {"height": 3480, "hash": "c36aef04db47c4d1bfa802d03e1d6531b1a80a32243ff94f9f7ec7e092a622d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33b44b8537b0b537e99bd3c4a686787e33d69765caad03356746ff87c972070f"} -2023-12-15T15:10:15.318Z INFO initializing dbft {"height": 3481, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:15.319Z debug frostfs-node/morph.go:229 new block {"index": 3480} -2023-12-15T15:10:16.017Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3480, "blockHeight": 3480, "took": "3.125674ms"} -2023-12-15T15:10:16.317Z INFO sending PrepareRequest {"height": 3481, "view": 0} -2023-12-15T15:10:16.317Z INFO sending Commit {"height": 3481, "view": 0} -2023-12-15T15:10:16.318Z INFO approving block {"height": 3481, "hash": "376f65ef4d8fb87c3aaf4f491af09033ef6903be96955e9f5b92ebe9073f5a96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c36aef04db47c4d1bfa802d03e1d6531b1a80a32243ff94f9f7ec7e092a622d0"} -2023-12-15T15:10:16.318Z INFO initializing dbft {"height": 3482, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:16.319Z debug frostfs-node/morph.go:229 new block {"index": 3481} -2023-12-15T15:10:17.020Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3481, "blockHeight": 3481, "took": "5.467761ms"} -2023-12-15T15:10:17.319Z INFO sending PrepareRequest {"height": 3482, "view": 0} -2023-12-15T15:10:17.319Z INFO sending Commit {"height": 3482, "view": 0} -2023-12-15T15:10:17.320Z INFO approving block {"height": 3482, "hash": "cf1d5e7157b6f6ab75f96c4a24f750a44cd66ece96dc9c2bca489bab62c724f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "376f65ef4d8fb87c3aaf4f491af09033ef6903be96955e9f5b92ebe9073f5a96"} -2023-12-15T15:10:17.321Z INFO initializing dbft {"height": 3483, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:17.322Z debug frostfs-node/morph.go:229 new block {"index": 3482} -2023-12-15T15:10:18.019Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3482, "blockHeight": 3482, "took": "3.420311ms"} -2023-12-15T15:10:18.321Z INFO sending PrepareRequest {"height": 3483, "view": 0} -2023-12-15T15:10:18.321Z INFO sending Commit {"height": 3483, "view": 0} -2023-12-15T15:10:18.321Z INFO approving block {"height": 3483, "hash": "5d718a52a7822cc8637837b1cab51753526acd9c023bd44799f31ecc9bf7fe70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf1d5e7157b6f6ab75f96c4a24f750a44cd66ece96dc9c2bca489bab62c724f4"} -2023-12-15T15:10:18.323Z INFO initializing dbft {"height": 3484, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:18.323Z debug frostfs-node/morph.go:229 new block {"index": 3483} -2023-12-15T15:10:19.021Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3483, "blockHeight": 3483, "took": "4.702467ms"} -2023-12-15T15:10:19.322Z INFO sending PrepareRequest {"height": 3484, "view": 0} -2023-12-15T15:10:19.324Z INFO sending Commit {"height": 3484, "view": 0} -2023-12-15T15:10:19.326Z INFO approving block {"height": 3484, "hash": "b9988601f314c4e6ca46dd778a184a4ee5d6e2cb2959204ad1b10f85a1c61609", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d718a52a7822cc8637837b1cab51753526acd9c023bd44799f31ecc9bf7fe70"} -2023-12-15T15:10:19.327Z INFO initializing dbft {"height": 3485, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:19.328Z debug frostfs-node/morph.go:229 new block {"index": 3484} -2023-12-15T15:10:20.022Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3484, "blockHeight": 3484, "took": "5.2877ms"} -2023-12-15T15:10:20.327Z INFO sending PrepareRequest {"height": 3485, "view": 0} -2023-12-15T15:10:20.327Z INFO sending Commit {"height": 3485, "view": 0} -2023-12-15T15:10:20.328Z INFO approving block {"height": 3485, "hash": "f724acf30d52b6c2efcf1997ff5e4fc074029deec98f642823609da8a1f4ac89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9988601f314c4e6ca46dd778a184a4ee5d6e2cb2959204ad1b10f85a1c61609"} -2023-12-15T15:10:20.329Z INFO initializing dbft {"height": 3486, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:20.329Z debug frostfs-node/morph.go:229 new block {"index": 3485} -2023-12-15T15:10:21.021Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3485, "blockHeight": 3485, "took": "3.879065ms"} -2023-12-15T15:10:21.329Z INFO sending PrepareRequest {"height": 3486, "view": 0} -2023-12-15T15:10:21.329Z INFO sending Commit {"height": 3486, "view": 0} -2023-12-15T15:10:21.329Z INFO approving block {"height": 3486, "hash": "81a9376b56bdfbced5b952daa6c0fd6c3265677258e5bf7755e4200dd288ff5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f724acf30d52b6c2efcf1997ff5e4fc074029deec98f642823609da8a1f4ac89"} -2023-12-15T15:10:21.330Z INFO initializing dbft {"height": 3487, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:21.330Z debug frostfs-node/morph.go:229 new block {"index": 3486} -2023-12-15T15:10:22.021Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3486, "blockHeight": 3486, "took": "3.42474ms"} -2023-12-15T15:10:22.331Z INFO sending PrepareRequest {"height": 3487, "view": 0} -2023-12-15T15:10:22.331Z INFO sending Commit {"height": 3487, "view": 0} -2023-12-15T15:10:22.332Z INFO approving block {"height": 3487, "hash": "d9879778700d298924763fee480b7d04238ffac8212597c3f6947ea8d1ae8e38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81a9376b56bdfbced5b952daa6c0fd6c3265677258e5bf7755e4200dd288ff5a"} -2023-12-15T15:10:22.333Z INFO initializing dbft {"height": 3488, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:22.334Z debug frostfs-node/morph.go:229 new block {"index": 3487} -2023-12-15T15:10:23.022Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3487, "blockHeight": 3487, "took": "3.460391ms"} -2023-12-15T15:10:23.332Z INFO sending PrepareRequest {"height": 3488, "view": 0} -2023-12-15T15:10:23.332Z INFO sending Commit {"height": 3488, "view": 0} -2023-12-15T15:10:23.332Z INFO approving block {"height": 3488, "hash": "64e04c9afd2e1122b6a4420a880e8fa80ee879415fd61f39f8cdfadba782e490", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9879778700d298924763fee480b7d04238ffac8212597c3f6947ea8d1ae8e38"} -2023-12-15T15:10:23.333Z INFO initializing dbft {"height": 3489, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:23.334Z debug frostfs-node/morph.go:229 new block {"index": 3488} -2023-12-15T15:10:24.022Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3488, "blockHeight": 3488, "took": "3.462151ms"} -2023-12-15T15:10:24.334Z INFO sending PrepareRequest {"height": 3489, "view": 0} -2023-12-15T15:10:24.334Z INFO sending Commit {"height": 3489, "view": 0} -2023-12-15T15:10:24.334Z INFO approving block {"height": 3489, "hash": "e10c3aff3f69ff5d391bf5872182cd25f45ee275f62a59b3755d0317be8af7b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64e04c9afd2e1122b6a4420a880e8fa80ee879415fd61f39f8cdfadba782e490"} -2023-12-15T15:10:24.335Z INFO initializing dbft {"height": 3490, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:24.335Z debug frostfs-node/morph.go:229 new block {"index": 3489} -2023-12-15T15:10:25.024Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3489, "blockHeight": 3489, "took": "4.380116ms"} -2023-12-15T15:10:25.335Z INFO sending PrepareRequest {"height": 3490, "view": 0} -2023-12-15T15:10:25.335Z INFO sending Commit {"height": 3490, "view": 0} -2023-12-15T15:10:25.336Z INFO approving block {"height": 3490, "hash": "1f9e02d0554527c9e51c4a12218472175f5bcb7d07551fda27f66c1ef6f7c7e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e10c3aff3f69ff5d391bf5872182cd25f45ee275f62a59b3755d0317be8af7b7"} -2023-12-15T15:10:25.337Z INFO initializing dbft {"height": 3491, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:25.337Z debug frostfs-node/morph.go:229 new block {"index": 3490} -2023-12-15T15:10:26.024Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3490, "blockHeight": 3490, "took": "3.946565ms"} -2023-12-15T15:10:26.337Z INFO sending PrepareRequest {"height": 3491, "view": 0} -2023-12-15T15:10:26.337Z INFO sending Commit {"height": 3491, "view": 0} -2023-12-15T15:10:26.337Z INFO approving block {"height": 3491, "hash": "1b4d2646aa5f8664161f51f2e7e3fa47c1eb1f4af3107b201a66886f289e2f91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f9e02d0554527c9e51c4a12218472175f5bcb7d07551fda27f66c1ef6f7c7e8"} -2023-12-15T15:10:26.339Z INFO initializing dbft {"height": 3492, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:26.339Z debug frostfs-node/morph.go:229 new block {"index": 3491} -2023-12-15T15:10:27.026Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3491, "blockHeight": 3491, "took": "4.720188ms"} -2023-12-15T15:10:27.338Z INFO sending PrepareRequest {"height": 3492, "view": 0} -2023-12-15T15:10:27.339Z INFO sending Commit {"height": 3492, "view": 0} -2023-12-15T15:10:27.339Z INFO approving block {"height": 3492, "hash": "f7415fbea1c7a9b42e3c1eda735ee92af6cd0b8e4cae912e0144e5efdc81a81b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b4d2646aa5f8664161f51f2e7e3fa47c1eb1f4af3107b201a66886f289e2f91"} -2023-12-15T15:10:27.341Z INFO initializing dbft {"height": 3493, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:27.341Z debug frostfs-node/morph.go:229 new block {"index": 3492} -2023-12-15T15:10:28.026Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3492, "blockHeight": 3492, "took": "4.210222ms"} -2023-12-15T15:10:28.340Z INFO sending PrepareRequest {"height": 3493, "view": 0} -2023-12-15T15:10:28.340Z INFO sending Commit {"height": 3493, "view": 0} -2023-12-15T15:10:28.340Z INFO approving block {"height": 3493, "hash": "adce38efd93d6ec1095dd0e433d5355383fc3c0006e8a7bfa78296f0a79b66a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7415fbea1c7a9b42e3c1eda735ee92af6cd0b8e4cae912e0144e5efdc81a81b"} -2023-12-15T15:10:28.341Z INFO initializing dbft {"height": 3494, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:28.342Z debug frostfs-node/morph.go:229 new block {"index": 3493} -2023-12-15T15:10:28.344Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 15, "iteration": 1, "error": "no data for 0 iteration in 15 epoch for consumers's trusts"} -2023-12-15T15:10:29.026Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3493, "blockHeight": 3493, "took": "2.871214ms"} -2023-12-15T15:10:29.341Z INFO sending PrepareRequest {"height": 3494, "view": 0} -2023-12-15T15:10:29.341Z INFO sending Commit {"height": 3494, "view": 0} -2023-12-15T15:10:29.342Z INFO approving block {"height": 3494, "hash": "5aa950d23007ff31d48a313077bb71a88a6ca7f5a4e4c70b135b9e31406578d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adce38efd93d6ec1095dd0e433d5355383fc3c0006e8a7bfa78296f0a79b66a4"} -2023-12-15T15:10:29.343Z INFO initializing dbft {"height": 3495, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:29.344Z debug frostfs-node/morph.go:229 new block {"index": 3494} -2023-12-15T15:10:29.348Z info settlement/calls.go:61 start basic income collection {"epoch": 15} -2023-12-15T15:10:30.027Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3494, "blockHeight": 3494, "took": "3.910006ms"} -2023-12-15T15:10:30.342Z INFO sending PrepareRequest {"height": 3495, "view": 0} -2023-12-15T15:10:30.342Z INFO sending Commit {"height": 3495, "view": 0} -2023-12-15T15:10:30.343Z INFO approving block {"height": 3495, "hash": "f4711aa0e9f67dfd0573bba69f82caa05afc152de3da8f80880307b94855ecd2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aa950d23007ff31d48a313077bb71a88a6ca7f5a4e4c70b135b9e31406578d5"} -2023-12-15T15:10:30.344Z INFO initializing dbft {"height": 3496, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:30.344Z debug frostfs-node/morph.go:229 new block {"index": 3495} -2023-12-15T15:10:31.027Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3495, "blockHeight": 3495, "took": "3.06915ms"} -2023-12-15T15:10:31.344Z INFO sending PrepareRequest {"height": 3496, "view": 0} -2023-12-15T15:10:31.344Z INFO sending Commit {"height": 3496, "view": 0} -2023-12-15T15:10:31.344Z INFO approving block {"height": 3496, "hash": "b0e5b93523f3a7fec682aad8e7761117878197d7c6799839c4051163ad37f4d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4711aa0e9f67dfd0573bba69f82caa05afc152de3da8f80880307b94855ecd2"} -2023-12-15T15:10:31.345Z INFO initializing dbft {"height": 3497, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:31.345Z debug frostfs-node/morph.go:229 new block {"index": 3496} -2023-12-15T15:10:32.029Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3496, "blockHeight": 3496, "took": "4.405769ms"} -2023-12-15T15:10:32.345Z INFO sending PrepareRequest {"height": 3497, "view": 0} -2023-12-15T15:10:32.346Z INFO sending Commit {"height": 3497, "view": 0} -2023-12-15T15:10:32.346Z INFO approving block {"height": 3497, "hash": "20c614bf074e5724daca57169388230a5c1592c38543b222891361bd3ea0afcb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0e5b93523f3a7fec682aad8e7761117878197d7c6799839c4051163ad37f4d8"} -2023-12-15T15:10:32.348Z INFO initializing dbft {"height": 3498, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:32.348Z debug frostfs-node/morph.go:229 new block {"index": 3497} -2023-12-15T15:10:33.029Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3497, "blockHeight": 3497, "took": "4.545193ms"} -2023-12-15T15:10:33.347Z INFO sending PrepareRequest {"height": 3498, "view": 0} -2023-12-15T15:10:33.347Z INFO sending Commit {"height": 3498, "view": 0} -2023-12-15T15:10:33.347Z INFO approving block {"height": 3498, "hash": "91a8cdd798ea2867a928ee9b71745a7fda9db030773dc061b46b1afe02733eb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20c614bf074e5724daca57169388230a5c1592c38543b222891361bd3ea0afcb"} -2023-12-15T15:10:33.348Z INFO initializing dbft {"height": 3499, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:33.348Z debug frostfs-node/morph.go:229 new block {"index": 3498} -2023-12-15T15:10:34.030Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3498, "blockHeight": 3498, "took": "4.81139ms"} -2023-12-15T15:10:34.348Z INFO sending PrepareRequest {"height": 3499, "view": 0} -2023-12-15T15:10:34.348Z INFO sending Commit {"height": 3499, "view": 0} -2023-12-15T15:10:34.349Z INFO approving block {"height": 3499, "hash": "7c103b360aade1f74fd942978e2559064cb8098a2caa7d588a62890d2869927e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91a8cdd798ea2867a928ee9b71745a7fda9db030773dc061b46b1afe02733eb7"} -2023-12-15T15:10:34.351Z INFO initializing dbft {"height": 3500, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:34.351Z debug frostfs-node/morph.go:229 new block {"index": 3499} -2023-12-15T15:10:35.029Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3499, "blockHeight": 3499, "took": "3.277498ms"} -2023-12-15T15:10:35.350Z INFO sending PrepareRequest {"height": 3500, "view": 0} -2023-12-15T15:10:35.350Z INFO sending Commit {"height": 3500, "view": 0} -2023-12-15T15:10:35.350Z INFO approving block {"height": 3500, "hash": "5f9e4880f79653eee82d6cf0ba1847c13c94b9272dde66f406666f8478586e88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c103b360aade1f74fd942978e2559064cb8098a2caa7d588a62890d2869927e"} -2023-12-15T15:10:35.351Z INFO initializing dbft {"height": 3501, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:35.352Z debug frostfs-node/morph.go:229 new block {"index": 3500} -2023-12-15T15:10:36.030Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3500, "blockHeight": 3500, "took": "4.222917ms"} -2023-12-15T15:10:36.351Z INFO sending PrepareRequest {"height": 3501, "view": 0} -2023-12-15T15:10:36.351Z INFO sending Commit {"height": 3501, "view": 0} -2023-12-15T15:10:36.352Z INFO approving block {"height": 3501, "hash": "21c543012bb8a4975018c1adef0a8d4ddc6f890b231c38dd2b071d103718e474", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f9e4880f79653eee82d6cf0ba1847c13c94b9272dde66f406666f8478586e88"} -2023-12-15T15:10:36.353Z INFO initializing dbft {"height": 3502, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:36.353Z debug frostfs-node/morph.go:229 new block {"index": 3501} -2023-12-15T15:10:37.030Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3501, "blockHeight": 3501, "took": "3.348438ms"} -2023-12-15T15:10:37.352Z INFO sending PrepareRequest {"height": 3502, "view": 0} -2023-12-15T15:10:37.353Z INFO sending Commit {"height": 3502, "view": 0} -2023-12-15T15:10:37.353Z INFO approving block {"height": 3502, "hash": "7b6e68b661de38788420e8f4e1357a630ed27fdd2b557bcdeab2f07622d50938", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21c543012bb8a4975018c1adef0a8d4ddc6f890b231c38dd2b071d103718e474"} -2023-12-15T15:10:37.354Z INFO initializing dbft {"height": 3503, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:37.354Z debug frostfs-node/morph.go:229 new block {"index": 3502} -2023-12-15T15:10:38.031Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3502, "blockHeight": 3502, "took": "3.778034ms"} -2023-12-15T15:10:38.354Z INFO sending PrepareRequest {"height": 3503, "view": 0} -2023-12-15T15:10:38.354Z INFO sending Commit {"height": 3503, "view": 0} -2023-12-15T15:10:38.355Z INFO approving block {"height": 3503, "hash": "159fecdfa9601e4988830a540e091f817103b7ec73d61a22725cd606435aa1d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b6e68b661de38788420e8f4e1357a630ed27fdd2b557bcdeab2f07622d50938"} -2023-12-15T15:10:38.355Z INFO initializing dbft {"height": 3504, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:38.356Z debug frostfs-node/morph.go:229 new block {"index": 3503} -2023-12-15T15:10:39.034Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3503, "blockHeight": 3503, "took": "6.356572ms"} -2023-12-15T15:10:39.356Z INFO sending PrepareRequest {"height": 3504, "view": 0} -2023-12-15T15:10:39.356Z INFO sending Commit {"height": 3504, "view": 0} -2023-12-15T15:10:39.356Z INFO approving block {"height": 3504, "hash": "612bbac005909c3d9eb8f60f046d1c6cdd70f33a6051b8779b432c2f6a759fa0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "159fecdfa9601e4988830a540e091f817103b7ec73d61a22725cd606435aa1d7"} -2023-12-15T15:10:39.357Z INFO initializing dbft {"height": 3505, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:39.357Z debug frostfs-node/morph.go:229 new block {"index": 3504} -2023-12-15T15:10:40.031Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3504, "blockHeight": 3504, "took": "3.296227ms"} -2023-12-15T15:10:40.357Z INFO sending PrepareRequest {"height": 3505, "view": 0} -2023-12-15T15:10:40.357Z INFO sending Commit {"height": 3505, "view": 0} -2023-12-15T15:10:40.358Z INFO approving block {"height": 3505, "hash": "90c74e79b5ed25004fa6c2795ac2dfc51a9602fcdbecbda745adcf030bb7c744", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "612bbac005909c3d9eb8f60f046d1c6cdd70f33a6051b8779b432c2f6a759fa0"} -2023-12-15T15:10:40.359Z INFO initializing dbft {"height": 3506, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:40.359Z debug frostfs-node/morph.go:229 new block {"index": 3505} -2023-12-15T15:10:41.034Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3505, "blockHeight": 3505, "took": "4.632754ms"} -2023-12-15T15:10:41.359Z INFO sending PrepareRequest {"height": 3506, "view": 0} -2023-12-15T15:10:41.359Z INFO sending Commit {"height": 3506, "view": 0} -2023-12-15T15:10:41.359Z INFO approving block {"height": 3506, "hash": "4baef4f6cfabd9e570b7bff3bd3630c1c7aea890902faf6d2b60f7506bf71188", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90c74e79b5ed25004fa6c2795ac2dfc51a9602fcdbecbda745adcf030bb7c744"} -2023-12-15T15:10:41.360Z INFO initializing dbft {"height": 3507, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:41.361Z debug frostfs-node/morph.go:229 new block {"index": 3506} -2023-12-15T15:10:42.034Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3506, "blockHeight": 3506, "took": "3.939939ms"} -2023-12-15T15:10:42.361Z INFO sending PrepareRequest {"height": 3507, "view": 0} -2023-12-15T15:10:42.361Z INFO sending Commit {"height": 3507, "view": 0} -2023-12-15T15:10:42.361Z INFO approving block {"height": 3507, "hash": "15ccae2bb48481e50ebc046a33dd4d5ad334bd9b1bd48f97938c9d982f513068", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4baef4f6cfabd9e570b7bff3bd3630c1c7aea890902faf6d2b60f7506bf71188"} -2023-12-15T15:10:42.363Z INFO initializing dbft {"height": 3508, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:42.363Z debug frostfs-node/morph.go:229 new block {"index": 3507} -2023-12-15T15:10:43.035Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3507, "blockHeight": 3507, "took": "4.829855ms"} -2023-12-15T15:10:43.362Z INFO sending PrepareRequest {"height": 3508, "view": 0} -2023-12-15T15:10:43.363Z INFO sending Commit {"height": 3508, "view": 0} -2023-12-15T15:10:43.363Z INFO approving block {"height": 3508, "hash": "079295f870677e85789b6572bd8c2992aeed85a2805ba044e418f7bf2c7f5bc6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15ccae2bb48481e50ebc046a33dd4d5ad334bd9b1bd48f97938c9d982f513068"} -2023-12-15T15:10:43.364Z INFO initializing dbft {"height": 3509, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:43.365Z debug frostfs-node/morph.go:229 new block {"index": 3508} -2023-12-15T15:10:44.037Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3508, "blockHeight": 3508, "took": "6.18178ms"} -2023-12-15T15:10:44.364Z INFO sending PrepareRequest {"height": 3509, "view": 0} -2023-12-15T15:10:44.364Z INFO sending Commit {"height": 3509, "view": 0} -2023-12-15T15:10:44.365Z INFO approving block {"height": 3509, "hash": "81f73f080dd943adfdd19dcd032457397c368afbcd4f2b945ac0a989c6a06bcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "079295f870677e85789b6572bd8c2992aeed85a2805ba044e418f7bf2c7f5bc6"} -2023-12-15T15:10:44.366Z INFO initializing dbft {"height": 3510, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:44.367Z debug frostfs-node/morph.go:229 new block {"index": 3509} -2023-12-15T15:10:45.038Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3509, "blockHeight": 3509, "took": "6.363127ms"} -2023-12-15T15:10:45.365Z INFO sending PrepareRequest {"height": 3510, "view": 0} -2023-12-15T15:10:45.366Z INFO sending Commit {"height": 3510, "view": 0} -2023-12-15T15:10:45.366Z INFO approving block {"height": 3510, "hash": "a144364f19cd485bffb11cb567afbb0b8bfffa859b04d95b54d94e011bce2a78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81f73f080dd943adfdd19dcd032457397c368afbcd4f2b945ac0a989c6a06bcf"} -2023-12-15T15:10:45.368Z INFO initializing dbft {"height": 3511, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:45.368Z debug frostfs-node/morph.go:229 new block {"index": 3510} -2023-12-15T15:10:46.036Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3510, "blockHeight": 3510, "took": "4.491596ms"} -2023-12-15T15:10:46.367Z INFO sending PrepareRequest {"height": 3511, "view": 0} -2023-12-15T15:10:46.367Z INFO sending Commit {"height": 3511, "view": 0} -2023-12-15T15:10:46.368Z INFO approving block {"height": 3511, "hash": "afb80900c5a4a1664819f00b7dc9322449793e77df499c266d7deea76c396ef9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a144364f19cd485bffb11cb567afbb0b8bfffa859b04d95b54d94e011bce2a78"} -2023-12-15T15:10:46.369Z INFO initializing dbft {"height": 3512, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:46.370Z debug frostfs-node/morph.go:229 new block {"index": 3511} -2023-12-15T15:10:47.037Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3511, "blockHeight": 3511, "took": "4.222652ms"} -2023-12-15T15:10:47.369Z INFO sending PrepareRequest {"height": 3512, "view": 0} -2023-12-15T15:10:47.369Z INFO sending Commit {"height": 3512, "view": 0} -2023-12-15T15:10:47.369Z INFO approving block {"height": 3512, "hash": "6fedf58ff657612138e626ab2d58c514a7d641569aae67d5a9a34e792fabe199", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afb80900c5a4a1664819f00b7dc9322449793e77df499c266d7deea76c396ef9"} -2023-12-15T15:10:47.370Z INFO initializing dbft {"height": 3513, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:47.371Z debug frostfs-node/morph.go:229 new block {"index": 3512} -2023-12-15T15:10:48.036Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3512, "blockHeight": 3512, "took": "3.13092ms"} -2023-12-15T15:10:48.370Z INFO sending PrepareRequest {"height": 3513, "view": 0} -2023-12-15T15:10:48.370Z INFO sending Commit {"height": 3513, "view": 0} -2023-12-15T15:10:48.370Z INFO approving block {"height": 3513, "hash": "bb5c4db555b432410504023ed01055f9f04344d73ce7748bf0cd95877300b0ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fedf58ff657612138e626ab2d58c514a7d641569aae67d5a9a34e792fabe199"} -2023-12-15T15:10:48.373Z INFO initializing dbft {"height": 3514, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:48.374Z debug frostfs-node/morph.go:229 new block {"index": 3513} -2023-12-15T15:10:49.036Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3513, "blockHeight": 3513, "took": "3.104991ms"} -2023-12-15T15:10:49.371Z INFO sending PrepareRequest {"height": 3514, "view": 0} -2023-12-15T15:10:49.372Z INFO sending Commit {"height": 3514, "view": 0} -2023-12-15T15:10:49.372Z INFO approving block {"height": 3514, "hash": "a6eb2dab3649f66d3eb209215b75ef4004c6f690c2a213ad80e8f0b78a832d6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb5c4db555b432410504023ed01055f9f04344d73ce7748bf0cd95877300b0ee"} -2023-12-15T15:10:49.374Z INFO initializing dbft {"height": 3515, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:49.374Z debug frostfs-node/morph.go:229 new block {"index": 3514} -2023-12-15T15:10:50.037Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3514, "blockHeight": 3514, "took": "3.282049ms"} -2023-12-15T15:10:50.373Z INFO sending PrepareRequest {"height": 3515, "view": 0} -2023-12-15T15:10:50.373Z INFO sending Commit {"height": 3515, "view": 0} -2023-12-15T15:10:50.373Z INFO approving block {"height": 3515, "hash": "571b27d743414467eff9a276c4c1c8a6208c49988b380dd733854e301f979265", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6eb2dab3649f66d3eb209215b75ef4004c6f690c2a213ad80e8f0b78a832d6b"} -2023-12-15T15:10:50.374Z INFO initializing dbft {"height": 3516, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:50.375Z debug frostfs-node/morph.go:229 new block {"index": 3515} -2023-12-15T15:10:51.039Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3515, "blockHeight": 3515, "took": "4.999897ms"} -2023-12-15T15:10:51.374Z INFO sending PrepareRequest {"height": 3516, "view": 0} -2023-12-15T15:10:51.374Z INFO sending Commit {"height": 3516, "view": 0} -2023-12-15T15:10:51.374Z INFO approving block {"height": 3516, "hash": "035800ccb154a6cc68243c5bfbf3932960c298f89a3e0c6c81b96593aa21d9b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "571b27d743414467eff9a276c4c1c8a6208c49988b380dd733854e301f979265"} -2023-12-15T15:10:51.375Z INFO initializing dbft {"height": 3517, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:51.376Z debug frostfs-node/morph.go:229 new block {"index": 3516} -2023-12-15T15:10:52.037Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3516, "blockHeight": 3516, "took": "2.957017ms"} -2023-12-15T15:10:52.375Z INFO sending PrepareRequest {"height": 3517, "view": 0} -2023-12-15T15:10:52.376Z INFO sending Commit {"height": 3517, "view": 0} -2023-12-15T15:10:52.376Z INFO approving block {"height": 3517, "hash": "33b6825efbb54e2ea9ede5c6cdc28e34105bf9165be139bd406b9c3b9aa8bf96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "035800ccb154a6cc68243c5bfbf3932960c298f89a3e0c6c81b96593aa21d9b7"} -2023-12-15T15:10:52.377Z INFO initializing dbft {"height": 3518, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:52.377Z debug frostfs-node/morph.go:229 new block {"index": 3517} -2023-12-15T15:10:52.379Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:10:52.382Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:10:52.382Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:10:53.038Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3517, "blockHeight": 3517, "took": "3.844352ms"} -2023-12-15T15:10:53.377Z INFO sending PrepareRequest {"height": 3518, "view": 0} -2023-12-15T15:10:53.377Z INFO sending Commit {"height": 3518, "view": 0} -2023-12-15T15:10:53.377Z INFO approving block {"height": 3518, "hash": "da662a73c8248a576aef7e2673e0aba1b442e80d5b774463f2b1acc548e89959", "tx_count": 2, "merkle": "622345c8ab1671841c570f8c654538ed6f221074395d8fe7d73cfbd198d5f63a", "prev": "33b6825efbb54e2ea9ede5c6cdc28e34105bf9165be139bd406b9c3b9aa8bf96"} -2023-12-15T15:10:53.378Z INFO runtime log {"tx": "a9cb972d7165a940f0fbbb567c25db6cd55574fbe0fd63dfa387937a4e643791", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:10:53.378Z INFO runtime log {"tx": "a9cb972d7165a940f0fbbb567c25db6cd55574fbe0fd63dfa387937a4e643791", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:10:53.379Z INFO initializing dbft {"height": 3519, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:53.380Z debug frostfs-node/morph.go:229 new block {"index": 3518} -2023-12-15T15:10:54.042Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3518, "blockHeight": 3518, "took": "6.645744ms"} -2023-12-15T15:10:54.378Z INFO sending PrepareRequest {"height": 3519, "view": 0} -2023-12-15T15:10:54.378Z INFO sending Commit {"height": 3519, "view": 0} -2023-12-15T15:10:54.378Z INFO approving block {"height": 3519, "hash": "1a19f9227384cad8ebb29fb924444942224b5d32217412c5e7f404e0c784f793", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da662a73c8248a576aef7e2673e0aba1b442e80d5b774463f2b1acc548e89959"} -2023-12-15T15:10:54.379Z INFO initializing dbft {"height": 3520, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:54.380Z debug frostfs-node/morph.go:229 new block {"index": 3519} -2023-12-15T15:10:55.040Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3519, "blockHeight": 3519, "took": "4.337093ms"} -2023-12-15T15:10:55.379Z INFO sending PrepareRequest {"height": 3520, "view": 0} -2023-12-15T15:10:55.380Z INFO sending Commit {"height": 3520, "view": 0} -2023-12-15T15:10:55.380Z INFO approving block {"height": 3520, "hash": "450367aa2cda26f8a198b9177c4f0f308b400f9f24de3930dc8c87d3f92a882f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a19f9227384cad8ebb29fb924444942224b5d32217412c5e7f404e0c784f793"} -2023-12-15T15:10:55.381Z INFO initializing dbft {"height": 3521, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:55.381Z debug frostfs-node/morph.go:229 new block {"index": 3520} -2023-12-15T15:10:56.039Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3520, "blockHeight": 3520, "took": "2.908265ms"} -2023-12-15T15:10:56.381Z INFO sending PrepareRequest {"height": 3521, "view": 0} -2023-12-15T15:10:56.382Z INFO sending Commit {"height": 3521, "view": 0} -2023-12-15T15:10:56.382Z INFO approving block {"height": 3521, "hash": "9299c6352a2e3f65dafa363d59e6b25ff30059b504f38c9eb6e0da1bef38eb3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "450367aa2cda26f8a198b9177c4f0f308b400f9f24de3930dc8c87d3f92a882f"} -2023-12-15T15:10:56.384Z INFO initializing dbft {"height": 3522, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:56.384Z debug frostfs-node/morph.go:229 new block {"index": 3521} -2023-12-15T15:10:57.040Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3521, "blockHeight": 3521, "took": "3.376819ms"} -2023-12-15T15:10:57.383Z INFO sending PrepareRequest {"height": 3522, "view": 0} -2023-12-15T15:10:57.384Z INFO sending Commit {"height": 3522, "view": 0} -2023-12-15T15:10:57.384Z INFO approving block {"height": 3522, "hash": "d24bba6fbf5038bcdf9b259bed5c3e667341903b1a4d1249541bf9e503905e31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9299c6352a2e3f65dafa363d59e6b25ff30059b504f38c9eb6e0da1bef38eb3f"} -2023-12-15T15:10:57.385Z INFO initializing dbft {"height": 3523, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:57.385Z debug frostfs-node/morph.go:229 new block {"index": 3522} -2023-12-15T15:10:58.042Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3522, "blockHeight": 3522, "took": "5.664193ms"} -2023-12-15T15:10:58.384Z INFO sending PrepareRequest {"height": 3523, "view": 0} -2023-12-15T15:10:58.385Z INFO sending Commit {"height": 3523, "view": 0} -2023-12-15T15:10:58.385Z INFO approving block {"height": 3523, "hash": "76ecd6cddf773f7c5be490dd60ed9fce68d5fe34f0c108a7f1b3cc658d7c3286", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d24bba6fbf5038bcdf9b259bed5c3e667341903b1a4d1249541bf9e503905e31"} -2023-12-15T15:10:58.386Z INFO initializing dbft {"height": 3524, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:58.387Z debug frostfs-node/morph.go:229 new block {"index": 3523} -2023-12-15T15:10:59.040Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3523, "blockHeight": 3523, "took": "3.203984ms"} -2023-12-15T15:10:59.386Z INFO sending PrepareRequest {"height": 3524, "view": 0} -2023-12-15T15:10:59.387Z INFO sending Commit {"height": 3524, "view": 0} -2023-12-15T15:10:59.387Z INFO approving block {"height": 3524, "hash": "3b4480974fea5b43379c314d454b30be281e005f940f00d3bd8adefcd400c7c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76ecd6cddf773f7c5be490dd60ed9fce68d5fe34f0c108a7f1b3cc658d7c3286"} -2023-12-15T15:10:59.388Z INFO initializing dbft {"height": 3525, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:10:59.389Z debug frostfs-node/morph.go:229 new block {"index": 3524} -2023-12-15T15:11:00.042Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3524, "blockHeight": 3524, "took": "4.593442ms"} -2023-12-15T15:11:00.388Z INFO sending PrepareRequest {"height": 3525, "view": 0} -2023-12-15T15:11:00.388Z INFO sending Commit {"height": 3525, "view": 0} -2023-12-15T15:11:00.388Z INFO approving block {"height": 3525, "hash": "32aeb21911e483a9398f21bdebeed15ed2e56721dfaba1b4e23d8acac98423fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b4480974fea5b43379c314d454b30be281e005f940f00d3bd8adefcd400c7c7"} -2023-12-15T15:11:00.389Z INFO initializing dbft {"height": 3526, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:00.390Z debug frostfs-node/morph.go:229 new block {"index": 3525} -2023-12-15T15:11:01.044Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3525, "blockHeight": 3525, "took": "5.8333ms"} -2023-12-15T15:11:01.389Z INFO sending PrepareRequest {"height": 3526, "view": 0} -2023-12-15T15:11:01.389Z INFO sending Commit {"height": 3526, "view": 0} -2023-12-15T15:11:01.389Z INFO approving block {"height": 3526, "hash": "2823bad5c604a2327d1f189233f54405c774489c271b35ed48289929c959b6f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32aeb21911e483a9398f21bdebeed15ed2e56721dfaba1b4e23d8acac98423fc"} -2023-12-15T15:11:01.391Z INFO initializing dbft {"height": 3527, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:01.392Z debug frostfs-node/morph.go:229 new block {"index": 3526} -2023-12-15T15:11:02.043Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3526, "blockHeight": 3526, "took": "4.263654ms"} -2023-12-15T15:11:02.390Z INFO sending PrepareRequest {"height": 3527, "view": 0} -2023-12-15T15:11:02.391Z INFO sending Commit {"height": 3527, "view": 0} -2023-12-15T15:11:02.391Z INFO approving block {"height": 3527, "hash": "47ae9d8612df07aee5b8a9deee4fa293bafd6e26ea3763a55924a1d310791fd3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2823bad5c604a2327d1f189233f54405c774489c271b35ed48289929c959b6f1"} -2023-12-15T15:11:02.392Z INFO initializing dbft {"height": 3528, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:02.392Z debug frostfs-node/morph.go:229 new block {"index": 3527} -2023-12-15T15:11:03.044Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3527, "blockHeight": 3527, "took": "4.788389ms"} -2023-12-15T15:11:03.392Z INFO sending PrepareRequest {"height": 3528, "view": 0} -2023-12-15T15:11:03.393Z INFO sending Commit {"height": 3528, "view": 0} -2023-12-15T15:11:03.393Z INFO approving block {"height": 3528, "hash": "ed9cdedc4d9f3badde67d6eebf7f78017d494f72903e5c71a80a4a1dd4db0a28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47ae9d8612df07aee5b8a9deee4fa293bafd6e26ea3763a55924a1d310791fd3"} -2023-12-15T15:11:03.394Z INFO initializing dbft {"height": 3529, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:03.394Z debug frostfs-node/morph.go:229 new block {"index": 3528} -2023-12-15T15:11:04.046Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3528, "blockHeight": 3528, "took": "6.005232ms"} -2023-12-15T15:11:04.394Z INFO sending PrepareRequest {"height": 3529, "view": 0} -2023-12-15T15:11:04.394Z INFO sending Commit {"height": 3529, "view": 0} -2023-12-15T15:11:04.394Z INFO approving block {"height": 3529, "hash": "4c19467bd658a1e700841730f2acf583b02bce956bbd79324936f8f22ebdcb3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed9cdedc4d9f3badde67d6eebf7f78017d494f72903e5c71a80a4a1dd4db0a28"} -2023-12-15T15:11:04.395Z INFO initializing dbft {"height": 3530, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:04.396Z debug frostfs-node/morph.go:229 new block {"index": 3529} -2023-12-15T15:11:05.044Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3529, "blockHeight": 3529, "took": "4.236784ms"} -2023-12-15T15:11:05.395Z INFO sending PrepareRequest {"height": 3530, "view": 0} -2023-12-15T15:11:05.395Z INFO sending Commit {"height": 3530, "view": 0} -2023-12-15T15:11:05.395Z INFO approving block {"height": 3530, "hash": "dd20a854bebf1ea148591c2547e737c26dc080368db4fbb45080723488cf9cc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c19467bd658a1e700841730f2acf583b02bce956bbd79324936f8f22ebdcb3f"} -2023-12-15T15:11:05.396Z INFO initializing dbft {"height": 3531, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:05.398Z debug frostfs-node/morph.go:229 new block {"index": 3530} -2023-12-15T15:11:06.045Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3530, "blockHeight": 3530, "took": "4.565501ms"} -2023-12-15T15:11:06.397Z INFO sending PrepareRequest {"height": 3531, "view": 0} -2023-12-15T15:11:06.397Z INFO sending Commit {"height": 3531, "view": 0} -2023-12-15T15:11:06.397Z INFO approving block {"height": 3531, "hash": "ef2940f21e94faaa2b71650e574292fba4fa253244e7e7ad14698539d43b7fb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd20a854bebf1ea148591c2547e737c26dc080368db4fbb45080723488cf9cc0"} -2023-12-15T15:11:06.398Z INFO initializing dbft {"height": 3532, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:06.398Z debug frostfs-node/morph.go:229 new block {"index": 3531} -2023-12-15T15:11:07.046Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3531, "blockHeight": 3531, "took": "4.594884ms"} -2023-12-15T15:11:07.398Z INFO sending PrepareRequest {"height": 3532, "view": 0} -2023-12-15T15:11:07.398Z INFO sending Commit {"height": 3532, "view": 0} -2023-12-15T15:11:07.399Z INFO approving block {"height": 3532, "hash": "2d2de98757446f0cf6db5722cb613c5a16a140e4fa493336847f3e035c221be2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef2940f21e94faaa2b71650e574292fba4fa253244e7e7ad14698539d43b7fb5"} -2023-12-15T15:11:07.400Z INFO initializing dbft {"height": 3533, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:07.400Z debug frostfs-node/morph.go:229 new block {"index": 3532} -2023-12-15T15:11:08.045Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3532, "blockHeight": 3532, "took": "3.846656ms"} -2023-12-15T15:11:08.400Z INFO sending PrepareRequest {"height": 3533, "view": 0} -2023-12-15T15:11:08.400Z INFO sending Commit {"height": 3533, "view": 0} -2023-12-15T15:11:08.400Z INFO approving block {"height": 3533, "hash": "63a5da9ab53b88049adfae427807277c464b2d6f440d962eee8aa8562f8f72c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d2de98757446f0cf6db5722cb613c5a16a140e4fa493336847f3e035c221be2"} -2023-12-15T15:11:08.402Z INFO initializing dbft {"height": 3534, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:08.402Z debug frostfs-node/morph.go:229 new block {"index": 3533} -2023-12-15T15:11:09.047Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3533, "blockHeight": 3533, "took": "4.860132ms"} -2023-12-15T15:11:09.401Z INFO sending PrepareRequest {"height": 3534, "view": 0} -2023-12-15T15:11:09.401Z INFO sending Commit {"height": 3534, "view": 0} -2023-12-15T15:11:09.401Z INFO approving block {"height": 3534, "hash": "79ca1ddd4d86a3f4927ead78130489d4157fb8bcbae6df4c51ad3c47c6b8efd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63a5da9ab53b88049adfae427807277c464b2d6f440d962eee8aa8562f8f72c4"} -2023-12-15T15:11:09.402Z INFO initializing dbft {"height": 3535, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:09.402Z debug frostfs-node/morph.go:229 new block {"index": 3534} -2023-12-15T15:11:10.045Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3534, "blockHeight": 3534, "took": "2.958436ms"} -2023-12-15T15:11:10.403Z INFO sending PrepareRequest {"height": 3535, "view": 0} -2023-12-15T15:11:10.403Z INFO sending Commit {"height": 3535, "view": 0} -2023-12-15T15:11:10.403Z INFO approving block {"height": 3535, "hash": "1aa81f2c04adbac93d14c371ffdde7f77f4a056264e2fa48e9bb177363e2656b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79ca1ddd4d86a3f4927ead78130489d4157fb8bcbae6df4c51ad3c47c6b8efd8"} -2023-12-15T15:11:10.404Z INFO initializing dbft {"height": 3536, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:10.404Z debug frostfs-node/morph.go:229 new block {"index": 3535} -2023-12-15T15:11:11.046Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3535, "blockHeight": 3535, "took": "3.045069ms"} -2023-12-15T15:11:11.404Z INFO sending PrepareRequest {"height": 3536, "view": 0} -2023-12-15T15:11:11.405Z INFO sending Commit {"height": 3536, "view": 0} -2023-12-15T15:11:11.405Z INFO approving block {"height": 3536, "hash": "d7a65a48c363db0eff1b119219f3c2d270a9fc9137024b9771cb8309ae0c3e6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1aa81f2c04adbac93d14c371ffdde7f77f4a056264e2fa48e9bb177363e2656b"} -2023-12-15T15:11:11.406Z INFO initializing dbft {"height": 3537, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:11.407Z debug frostfs-node/morph.go:229 new block {"index": 3536} -2023-12-15T15:11:12.048Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3536, "blockHeight": 3536, "took": "4.480071ms"} -2023-12-15T15:11:12.406Z INFO sending PrepareRequest {"height": 3537, "view": 0} -2023-12-15T15:11:12.406Z INFO sending Commit {"height": 3537, "view": 0} -2023-12-15T15:11:12.406Z INFO approving block {"height": 3537, "hash": "b371210666dd4589f715b456558e0801b257e87b74796e2818d5e9aec0959755", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7a65a48c363db0eff1b119219f3c2d270a9fc9137024b9771cb8309ae0c3e6d"} -2023-12-15T15:11:12.408Z INFO initializing dbft {"height": 3538, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:12.408Z debug frostfs-node/morph.go:229 new block {"index": 3537} -2023-12-15T15:11:13.048Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3537, "blockHeight": 3537, "took": "4.080829ms"} -2023-12-15T15:11:13.407Z INFO sending PrepareRequest {"height": 3538, "view": 0} -2023-12-15T15:11:13.408Z INFO sending Commit {"height": 3538, "view": 0} -2023-12-15T15:11:13.408Z INFO approving block {"height": 3538, "hash": "40cc7abdb8bb97f98b504c7ce658386d78b0408fc722f098cffccc42e9a9f0f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b371210666dd4589f715b456558e0801b257e87b74796e2818d5e9aec0959755"} -2023-12-15T15:11:13.409Z INFO initializing dbft {"height": 3539, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:13.410Z debug frostfs-node/morph.go:229 new block {"index": 3538} -2023-12-15T15:11:14.050Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3538, "blockHeight": 3538, "took": "4.736124ms"} -2023-12-15T15:11:14.409Z INFO sending PrepareRequest {"height": 3539, "view": 0} -2023-12-15T15:11:14.409Z INFO sending Commit {"height": 3539, "view": 0} -2023-12-15T15:11:14.409Z INFO approving block {"height": 3539, "hash": "24c412b71e8bca234391d083cf112219fa3a13bcee3a99dc41797667cfcd5091", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40cc7abdb8bb97f98b504c7ce658386d78b0408fc722f098cffccc42e9a9f0f9"} -2023-12-15T15:11:14.410Z INFO initializing dbft {"height": 3540, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:14.410Z debug frostfs-node/morph.go:229 new block {"index": 3539} -2023-12-15T15:11:15.049Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3539, "blockHeight": 3539, "took": "3.726681ms"} -2023-12-15T15:11:15.410Z INFO sending PrepareRequest {"height": 3540, "view": 0} -2023-12-15T15:11:15.410Z INFO sending Commit {"height": 3540, "view": 0} -2023-12-15T15:11:15.411Z INFO approving block {"height": 3540, "hash": "015001baab1d23d64b21d197d38a1452c435b3872250f3e0a9b8e6b11875a3c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24c412b71e8bca234391d083cf112219fa3a13bcee3a99dc41797667cfcd5091"} -2023-12-15T15:11:15.411Z INFO initializing dbft {"height": 3541, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:15.412Z debug frostfs-node/morph.go:229 new block {"index": 3540} -2023-12-15T15:11:16.053Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3540, "blockHeight": 3540, "took": "7.108568ms"} -2023-12-15T15:11:16.412Z INFO sending PrepareRequest {"height": 3541, "view": 0} -2023-12-15T15:11:16.412Z INFO sending Commit {"height": 3541, "view": 0} -2023-12-15T15:11:16.412Z INFO approving block {"height": 3541, "hash": "a714f9d1d052c0bb170843362ce3354f20fcc150eebcc3a2eba714b39d63b541", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "015001baab1d23d64b21d197d38a1452c435b3872250f3e0a9b8e6b11875a3c0"} -2023-12-15T15:11:16.414Z INFO initializing dbft {"height": 3542, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:16.415Z debug frostfs-node/morph.go:229 new block {"index": 3541} -2023-12-15T15:11:17.050Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3541, "blockHeight": 3541, "took": "3.554194ms"} -2023-12-15T15:11:17.413Z INFO sending PrepareRequest {"height": 3542, "view": 0} -2023-12-15T15:11:17.413Z INFO sending Commit {"height": 3542, "view": 0} -2023-12-15T15:11:17.414Z INFO approving block {"height": 3542, "hash": "d9336007f7cd7480831f2ff781eca68e3aa34235b1ccad9f0f192b44c544940d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a714f9d1d052c0bb170843362ce3354f20fcc150eebcc3a2eba714b39d63b541"} -2023-12-15T15:11:17.415Z INFO initializing dbft {"height": 3543, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:17.415Z debug frostfs-node/morph.go:229 new block {"index": 3542} -2023-12-15T15:11:18.053Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3542, "blockHeight": 3542, "took": "6.331524ms"} -2023-12-15T15:11:18.415Z INFO sending PrepareRequest {"height": 3543, "view": 0} -2023-12-15T15:11:18.415Z INFO sending Commit {"height": 3543, "view": 0} -2023-12-15T15:11:18.415Z INFO approving block {"height": 3543, "hash": "900438407bf13e6b69c10b5e0420460adeba219a6024cfed00e1fb44ae68d1d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9336007f7cd7480831f2ff781eca68e3aa34235b1ccad9f0f192b44c544940d"} -2023-12-15T15:11:18.416Z INFO initializing dbft {"height": 3544, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:18.417Z debug frostfs-node/morph.go:229 new block {"index": 3543} -2023-12-15T15:11:19.052Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3543, "blockHeight": 3543, "took": "4.716295ms"} -2023-12-15T15:11:19.416Z INFO sending PrepareRequest {"height": 3544, "view": 0} -2023-12-15T15:11:19.417Z INFO sending Commit {"height": 3544, "view": 0} -2023-12-15T15:11:19.417Z INFO approving block {"height": 3544, "hash": "6b26ded3f19dbb31361e518e760984fa65235a70be0664c9696dccc9c4f86b26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "900438407bf13e6b69c10b5e0420460adeba219a6024cfed00e1fb44ae68d1d6"} -2023-12-15T15:11:19.418Z INFO initializing dbft {"height": 3545, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:19.418Z debug frostfs-node/morph.go:229 new block {"index": 3544} -2023-12-15T15:11:20.051Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3544, "blockHeight": 3544, "took": "3.422721ms"} -2023-12-15T15:11:20.418Z INFO sending PrepareRequest {"height": 3545, "view": 0} -2023-12-15T15:11:20.418Z INFO sending Commit {"height": 3545, "view": 0} -2023-12-15T15:11:20.419Z INFO approving block {"height": 3545, "hash": "5122f798614610291a5b4728ab64af12b4d5b5a248e6b4b545d0563b511bd056", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b26ded3f19dbb31361e518e760984fa65235a70be0664c9696dccc9c4f86b26"} -2023-12-15T15:11:20.420Z INFO initializing dbft {"height": 3546, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:20.420Z debug frostfs-node/morph.go:229 new block {"index": 3545} -2023-12-15T15:11:21.053Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3545, "blockHeight": 3545, "took": "4.670236ms"} -2023-12-15T15:11:21.420Z INFO sending PrepareRequest {"height": 3546, "view": 0} -2023-12-15T15:11:21.420Z INFO sending Commit {"height": 3546, "view": 0} -2023-12-15T15:11:21.420Z INFO approving block {"height": 3546, "hash": "be9bd63b90c47f75cfc0edc54c153065f3c93b6ae538d63198d66f143039cc77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5122f798614610291a5b4728ab64af12b4d5b5a248e6b4b545d0563b511bd056"} -2023-12-15T15:11:21.422Z INFO initializing dbft {"height": 3547, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:21.422Z debug frostfs-node/morph.go:229 new block {"index": 3546} -2023-12-15T15:11:22.053Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3546, "blockHeight": 3546, "took": "3.645917ms"} -2023-12-15T15:11:22.421Z INFO sending PrepareRequest {"height": 3547, "view": 0} -2023-12-15T15:11:22.421Z INFO sending Commit {"height": 3547, "view": 0} -2023-12-15T15:11:22.421Z INFO approving block {"height": 3547, "hash": "0969f4edce109619d1ac759e28833a91603017084f01036afb127fb09be5ab7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be9bd63b90c47f75cfc0edc54c153065f3c93b6ae538d63198d66f143039cc77"} -2023-12-15T15:11:22.422Z INFO initializing dbft {"height": 3548, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:22.423Z debug frostfs-node/morph.go:229 new block {"index": 3547} -2023-12-15T15:11:23.052Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3547, "blockHeight": 3547, "took": "3.08783ms"} -2023-12-15T15:11:23.422Z INFO sending PrepareRequest {"height": 3548, "view": 0} -2023-12-15T15:11:23.423Z INFO sending Commit {"height": 3548, "view": 0} -2023-12-15T15:11:23.423Z INFO approving block {"height": 3548, "hash": "57c3035497612eaaff65ef7b7904070070db50c3894053c5926d4d52ce2eafc3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0969f4edce109619d1ac759e28833a91603017084f01036afb127fb09be5ab7d"} -2023-12-15T15:11:23.423Z INFO initializing dbft {"height": 3549, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:23.424Z debug frostfs-node/morph.go:229 new block {"index": 3548} -2023-12-15T15:11:24.055Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3548, "blockHeight": 3548, "took": "5.043121ms"} -2023-12-15T15:11:24.424Z INFO sending PrepareRequest {"height": 3549, "view": 0} -2023-12-15T15:11:24.424Z INFO sending Commit {"height": 3549, "view": 0} -2023-12-15T15:11:24.424Z INFO approving block {"height": 3549, "hash": "04ab96b2afb125110c306cf88440147d2c42350bfe80d3b51eee1871de265c80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57c3035497612eaaff65ef7b7904070070db50c3894053c5926d4d52ce2eafc3"} -2023-12-15T15:11:24.425Z INFO initializing dbft {"height": 3550, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:24.426Z debug frostfs-node/morph.go:229 new block {"index": 3549} -2023-12-15T15:11:25.056Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3549, "blockHeight": 3549, "took": "6.055174ms"} -2023-12-15T15:11:25.425Z INFO sending PrepareRequest {"height": 3550, "view": 0} -2023-12-15T15:11:25.425Z INFO sending Commit {"height": 3550, "view": 0} -2023-12-15T15:11:25.426Z INFO approving block {"height": 3550, "hash": "f617413dfb448bb49bce04730ca96b01f520a711c76395bbbbee6dddaa1150c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04ab96b2afb125110c306cf88440147d2c42350bfe80d3b51eee1871de265c80"} -2023-12-15T15:11:25.426Z INFO initializing dbft {"height": 3551, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:25.427Z debug frostfs-node/morph.go:229 new block {"index": 3550} -2023-12-15T15:11:26.054Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3550, "blockHeight": 3550, "took": "2.966746ms"} -2023-12-15T15:11:26.427Z INFO sending PrepareRequest {"height": 3551, "view": 0} -2023-12-15T15:11:26.427Z INFO sending Commit {"height": 3551, "view": 0} -2023-12-15T15:11:26.428Z INFO approving block {"height": 3551, "hash": "5a45f4df7647f4467336a7339989e8c5147abbeeaf302d9817ff3f7d92497496", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f617413dfb448bb49bce04730ca96b01f520a711c76395bbbbee6dddaa1150c7"} -2023-12-15T15:11:26.429Z INFO initializing dbft {"height": 3552, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:26.429Z debug frostfs-node/morph.go:229 new block {"index": 3551} -2023-12-15T15:11:27.056Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3551, "blockHeight": 3551, "took": "3.940866ms"} -2023-12-15T15:11:27.429Z INFO sending PrepareRequest {"height": 3552, "view": 0} -2023-12-15T15:11:27.430Z INFO sending Commit {"height": 3552, "view": 0} -2023-12-15T15:11:27.430Z INFO approving block {"height": 3552, "hash": "5cae84b920214a8b956ace0b6cf585c5dd6c929538966f855cfe9652b977c476", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a45f4df7647f4467336a7339989e8c5147abbeeaf302d9817ff3f7d92497496"} -2023-12-15T15:11:27.432Z INFO initializing dbft {"height": 3553, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:27.432Z debug frostfs-node/morph.go:229 new block {"index": 3552} -2023-12-15T15:11:28.058Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3552, "blockHeight": 3552, "took": "5.094529ms"} -2023-12-15T15:11:28.430Z INFO sending PrepareRequest {"height": 3553, "view": 0} -2023-12-15T15:11:28.431Z INFO sending Commit {"height": 3553, "view": 0} -2023-12-15T15:11:28.431Z INFO approving block {"height": 3553, "hash": "5047eef5ae0c9228fac3d6f3ed9886191f74091772a77b101c9050f94e2cf40a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cae84b920214a8b956ace0b6cf585c5dd6c929538966f855cfe9652b977c476"} -2023-12-15T15:11:28.432Z INFO initializing dbft {"height": 3554, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:28.433Z debug frostfs-node/morph.go:229 new block {"index": 3553} -2023-12-15T15:11:28.437Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 15, "iteration": 2, "error": "no data for 1 iteration in 15 epoch for consumers's trusts"} -2023-12-15T15:11:29.058Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3553, "blockHeight": 3553, "took": "4.609814ms"} -2023-12-15T15:11:29.432Z INFO sending PrepareRequest {"height": 3554, "view": 0} -2023-12-15T15:11:29.433Z INFO sending Commit {"height": 3554, "view": 0} -2023-12-15T15:11:29.433Z INFO approving block {"height": 3554, "hash": "50acd86e4287b248bf0696d6b5712365cdc81492a64cb771bb36b51fa30385e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5047eef5ae0c9228fac3d6f3ed9886191f74091772a77b101c9050f94e2cf40a"} -2023-12-15T15:11:29.434Z INFO initializing dbft {"height": 3555, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:29.435Z debug frostfs-node/morph.go:229 new block {"index": 3554} -2023-12-15T15:11:29.440Z info settlement/calls.go:106 start basic income distribution {"epoch": 15} -2023-12-15T15:11:30.057Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3554, "blockHeight": 3554, "took": "3.41532ms"} -2023-12-15T15:11:30.434Z INFO sending PrepareRequest {"height": 3555, "view": 0} -2023-12-15T15:11:30.434Z INFO sending Commit {"height": 3555, "view": 0} -2023-12-15T15:11:30.434Z INFO approving block {"height": 3555, "hash": "82d68d9275f9370f3f1969057e75ea1d382c2adced0f7e773f774d0e2107182f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50acd86e4287b248bf0696d6b5712365cdc81492a64cb771bb36b51fa30385e9"} -2023-12-15T15:11:30.435Z INFO initializing dbft {"height": 3556, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:30.435Z debug frostfs-node/morph.go:229 new block {"index": 3555} -2023-12-15T15:11:31.060Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3555, "blockHeight": 3555, "took": "5.265457ms"} -2023-12-15T15:11:31.435Z INFO sending PrepareRequest {"height": 3556, "view": 0} -2023-12-15T15:11:31.436Z INFO sending Commit {"height": 3556, "view": 0} -2023-12-15T15:11:31.436Z INFO approving block {"height": 3556, "hash": "a6b2e53cfce98fecf0f6e49e983a798b1126338e57bd78d8f2a3ba46f433ff90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82d68d9275f9370f3f1969057e75ea1d382c2adced0f7e773f774d0e2107182f"} -2023-12-15T15:11:31.437Z INFO initializing dbft {"height": 3557, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:31.437Z debug frostfs-node/morph.go:229 new block {"index": 3556} -2023-12-15T15:11:32.058Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3556, "blockHeight": 3556, "took": "3.0746ms"} -2023-12-15T15:11:32.437Z INFO sending PrepareRequest {"height": 3557, "view": 0} -2023-12-15T15:11:32.437Z INFO sending Commit {"height": 3557, "view": 0} -2023-12-15T15:11:32.437Z INFO approving block {"height": 3557, "hash": "cd457910c870ea22c3254a60f661553984e61792f8ccfb80a361cf82c10b65d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6b2e53cfce98fecf0f6e49e983a798b1126338e57bd78d8f2a3ba46f433ff90"} -2023-12-15T15:11:32.438Z INFO initializing dbft {"height": 3558, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:32.439Z debug frostfs-node/morph.go:229 new block {"index": 3557} -2023-12-15T15:11:33.060Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3557, "blockHeight": 3557, "took": "4.36197ms"} -2023-12-15T15:11:33.439Z INFO sending PrepareRequest {"height": 3558, "view": 0} -2023-12-15T15:11:33.439Z INFO sending Commit {"height": 3558, "view": 0} -2023-12-15T15:11:33.439Z INFO approving block {"height": 3558, "hash": "4c26f7147bf598aa9ba8d698073621a670741e00b170962257b6a08ca7f98f67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd457910c870ea22c3254a60f661553984e61792f8ccfb80a361cf82c10b65d5"} -2023-12-15T15:11:33.441Z INFO initializing dbft {"height": 3559, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:33.441Z debug frostfs-node/morph.go:229 new block {"index": 3558} -2023-12-15T15:11:34.060Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3558, "blockHeight": 3558, "took": "3.603475ms"} -2023-12-15T15:11:34.440Z INFO sending PrepareRequest {"height": 3559, "view": 0} -2023-12-15T15:11:34.440Z INFO sending Commit {"height": 3559, "view": 0} -2023-12-15T15:11:34.440Z INFO approving block {"height": 3559, "hash": "0e34592d6570e2bbaac404b6d2b232b38d34be05449b32ba6e5b5e59999ae8c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c26f7147bf598aa9ba8d698073621a670741e00b170962257b6a08ca7f98f67"} -2023-12-15T15:11:34.441Z INFO initializing dbft {"height": 3560, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:34.442Z debug frostfs-node/morph.go:229 new block {"index": 3559} -2023-12-15T15:11:35.060Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3559, "blockHeight": 3559, "took": "3.276775ms"} -2023-12-15T15:11:35.442Z INFO sending PrepareRequest {"height": 3560, "view": 0} -2023-12-15T15:11:35.442Z INFO sending Commit {"height": 3560, "view": 0} -2023-12-15T15:11:35.442Z INFO approving block {"height": 3560, "hash": "7e53d1cbf5e997815cc89d50e10d298157ad573d2cbd465c821030a03c56d0c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e34592d6570e2bbaac404b6d2b232b38d34be05449b32ba6e5b5e59999ae8c7"} -2023-12-15T15:11:35.443Z INFO initializing dbft {"height": 3561, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:35.444Z debug frostfs-node/morph.go:229 new block {"index": 3560} -2023-12-15T15:11:36.060Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3560, "blockHeight": 3560, "took": "3.255965ms"} -2023-12-15T15:11:36.443Z INFO sending PrepareRequest {"height": 3561, "view": 0} -2023-12-15T15:11:36.443Z INFO sending Commit {"height": 3561, "view": 0} -2023-12-15T15:11:36.443Z INFO approving block {"height": 3561, "hash": "e691dba41b7bf6a3e6dbe4515f8105f1c9b2770728530b6bc548c08f4ecafd28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e53d1cbf5e997815cc89d50e10d298157ad573d2cbd465c821030a03c56d0c4"} -2023-12-15T15:11:36.444Z INFO initializing dbft {"height": 3562, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:36.444Z debug frostfs-node/morph.go:229 new block {"index": 3561} -2023-12-15T15:11:37.062Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3561, "blockHeight": 3561, "took": "4.720807ms"} -2023-12-15T15:11:37.444Z INFO sending PrepareRequest {"height": 3562, "view": 0} -2023-12-15T15:11:37.445Z INFO sending Commit {"height": 3562, "view": 0} -2023-12-15T15:11:37.445Z INFO approving block {"height": 3562, "hash": "3f9144ed3d21265c147b0340eef816335583a0f1400c50585838180a1f72259f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e691dba41b7bf6a3e6dbe4515f8105f1c9b2770728530b6bc548c08f4ecafd28"} -2023-12-15T15:11:37.446Z INFO initializing dbft {"height": 3563, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:37.446Z debug frostfs-node/morph.go:229 new block {"index": 3562} -2023-12-15T15:11:38.063Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3562, "blockHeight": 3562, "took": "5.178881ms"} -2023-12-15T15:11:38.446Z INFO sending PrepareRequest {"height": 3563, "view": 0} -2023-12-15T15:11:38.446Z INFO sending Commit {"height": 3563, "view": 0} -2023-12-15T15:11:38.446Z INFO approving block {"height": 3563, "hash": "2157f774d74893990c317a3d3bacfe7670416acb4ef478066f37d975cddb0b22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f9144ed3d21265c147b0340eef816335583a0f1400c50585838180a1f72259f"} -2023-12-15T15:11:38.447Z INFO initializing dbft {"height": 3564, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:38.448Z debug frostfs-node/morph.go:229 new block {"index": 3563} -2023-12-15T15:11:39.065Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3563, "blockHeight": 3563, "took": "5.695852ms"} -2023-12-15T15:11:39.447Z INFO sending PrepareRequest {"height": 3564, "view": 0} -2023-12-15T15:11:39.447Z INFO sending Commit {"height": 3564, "view": 0} -2023-12-15T15:11:39.447Z INFO approving block {"height": 3564, "hash": "19b93bbc11ae8480c7dabd5187c7355d90d7d4674e092bacd0e58342b6ce0212", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2157f774d74893990c317a3d3bacfe7670416acb4ef478066f37d975cddb0b22"} -2023-12-15T15:11:39.448Z INFO initializing dbft {"height": 3565, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:39.449Z debug frostfs-node/morph.go:229 new block {"index": 3564} -2023-12-15T15:11:40.064Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3564, "blockHeight": 3564, "took": "4.463614ms"} -2023-12-15T15:11:40.448Z INFO sending PrepareRequest {"height": 3565, "view": 0} -2023-12-15T15:11:40.449Z INFO sending Commit {"height": 3565, "view": 0} -2023-12-15T15:11:40.449Z INFO approving block {"height": 3565, "hash": "5951910765bea4da6fcbecf1b886a7e88e1a76a0123148f98c3b02678b1ed60d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19b93bbc11ae8480c7dabd5187c7355d90d7d4674e092bacd0e58342b6ce0212"} -2023-12-15T15:11:40.450Z INFO initializing dbft {"height": 3566, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:40.450Z debug frostfs-node/morph.go:229 new block {"index": 3565} -2023-12-15T15:11:41.063Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3565, "blockHeight": 3565, "took": "3.205704ms"} -2023-12-15T15:11:41.449Z INFO sending PrepareRequest {"height": 3566, "view": 0} -2023-12-15T15:11:41.450Z INFO sending Commit {"height": 3566, "view": 0} -2023-12-15T15:11:41.450Z INFO approving block {"height": 3566, "hash": "628987cde921d55f082c155a0ccc94494d83926c20b40f84b016aa4602988158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5951910765bea4da6fcbecf1b886a7e88e1a76a0123148f98c3b02678b1ed60d"} -2023-12-15T15:11:41.451Z INFO initializing dbft {"height": 3567, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:41.452Z debug frostfs-node/morph.go:229 new block {"index": 3566} -2023-12-15T15:11:42.065Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3566, "blockHeight": 3566, "took": "4.653686ms"} -2023-12-15T15:11:42.451Z INFO sending PrepareRequest {"height": 3567, "view": 0} -2023-12-15T15:11:42.451Z INFO sending Commit {"height": 3567, "view": 0} -2023-12-15T15:11:42.452Z INFO approving block {"height": 3567, "hash": "040906ce240602730958c98eb26f6e62d6390c9865718ad9044ae1d4049b7556", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "628987cde921d55f082c155a0ccc94494d83926c20b40f84b016aa4602988158"} -2023-12-15T15:11:42.453Z INFO initializing dbft {"height": 3568, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:42.453Z debug frostfs-node/morph.go:229 new block {"index": 3567} -2023-12-15T15:11:42.456Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:11:42.457Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:11:42.457Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:11:43.066Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3567, "blockHeight": 3567, "took": "3.943996ms"} -2023-12-15T15:11:43.453Z INFO sending PrepareRequest {"height": 3568, "view": 0} -2023-12-15T15:11:43.453Z INFO sending Commit {"height": 3568, "view": 0} -2023-12-15T15:11:43.453Z INFO approving block {"height": 3568, "hash": "09ae49c8251cc16fa5fadc91825e18834b4c0ab0728f17dc89b8fdf41394f077", "tx_count": 2, "merkle": "275fbee320a096b88e616c43622517e101a94d3dfb406d8eb5b39e1796b1f3bd", "prev": "040906ce240602730958c98eb26f6e62d6390c9865718ad9044ae1d4049b7556"} -2023-12-15T15:11:43.454Z INFO runtime log {"tx": "511ab10e5a062ae58d1bd4a693a7ba92baa260548c8c38a932a395fe968dde5c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:11:43.454Z INFO runtime log {"tx": "511ab10e5a062ae58d1bd4a693a7ba92baa260548c8c38a932a395fe968dde5c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:11:43.455Z INFO initializing dbft {"height": 3569, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:43.455Z debug frostfs-node/morph.go:229 new block {"index": 3568} -2023-12-15T15:11:44.068Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 3568, "blockHeight": 3568, "took": "6.295838ms"} -2023-12-15T15:11:44.454Z INFO sending PrepareRequest {"height": 3569, "view": 0} -2023-12-15T15:11:44.454Z INFO sending Commit {"height": 3569, "view": 0} -2023-12-15T15:11:44.454Z INFO approving block {"height": 3569, "hash": "7e95665829f95d99891a86d99e9476ec9f9e7ed94d9b2b32893082bc73540002", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09ae49c8251cc16fa5fadc91825e18834b4c0ab0728f17dc89b8fdf41394f077"} -2023-12-15T15:11:44.455Z INFO initializing dbft {"height": 3570, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:44.456Z debug frostfs-node/morph.go:229 new block {"index": 3569} -2023-12-15T15:11:45.067Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3569, "blockHeight": 3569, "took": "4.094874ms"} -2023-12-15T15:11:45.456Z INFO sending PrepareRequest {"height": 3570, "view": 0} -2023-12-15T15:11:45.456Z INFO sending Commit {"height": 3570, "view": 0} -2023-12-15T15:11:45.456Z INFO approving block {"height": 3570, "hash": "a8c6df2c39cc9eb72815bc090680d394fca23fc82811df4f5cdaaecce36d8a63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e95665829f95d99891a86d99e9476ec9f9e7ed94d9b2b32893082bc73540002"} -2023-12-15T15:11:45.458Z INFO initializing dbft {"height": 3571, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:45.458Z debug frostfs-node/morph.go:229 new block {"index": 3570} -2023-12-15T15:11:46.067Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3570, "blockHeight": 3570, "took": "4.481161ms"} -2023-12-15T15:11:46.457Z INFO sending PrepareRequest {"height": 3571, "view": 0} -2023-12-15T15:11:46.457Z INFO sending Commit {"height": 3571, "view": 0} -2023-12-15T15:11:46.458Z INFO approving block {"height": 3571, "hash": "2cb11e162cfb9f47cab59cab5680fd625c066df0e00d8e79f711997bb9f6ddde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8c6df2c39cc9eb72815bc090680d394fca23fc82811df4f5cdaaecce36d8a63"} -2023-12-15T15:11:46.459Z INFO initializing dbft {"height": 3572, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:46.460Z debug frostfs-node/morph.go:229 new block {"index": 3571} -2023-12-15T15:11:47.068Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3571, "blockHeight": 3571, "took": "4.259658ms"} -2023-12-15T15:11:47.459Z INFO sending PrepareRequest {"height": 3572, "view": 0} -2023-12-15T15:11:47.459Z INFO sending Commit {"height": 3572, "view": 0} -2023-12-15T15:11:47.459Z INFO approving block {"height": 3572, "hash": "5975e4bf4785247d415f7166c3d877d04b361caf98e8faf8c02f1733a907978a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2cb11e162cfb9f47cab59cab5680fd625c066df0e00d8e79f711997bb9f6ddde"} -2023-12-15T15:11:47.460Z INFO initializing dbft {"height": 3573, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:47.461Z debug frostfs-node/morph.go:229 new block {"index": 3572} -2023-12-15T15:11:48.068Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3572, "blockHeight": 3572, "took": "4.41452ms"} -2023-12-15T15:11:48.460Z INFO sending PrepareRequest {"height": 3573, "view": 0} -2023-12-15T15:11:48.460Z INFO sending Commit {"height": 3573, "view": 0} -2023-12-15T15:11:48.461Z INFO approving block {"height": 3573, "hash": "2241aae193bd9e9f498a7e329140300a043eff996e4d967c8c524ef12da51f87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5975e4bf4785247d415f7166c3d877d04b361caf98e8faf8c02f1733a907978a"} -2023-12-15T15:11:48.462Z INFO initializing dbft {"height": 3574, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:48.463Z debug frostfs-node/morph.go:229 new block {"index": 3573} -2023-12-15T15:11:49.071Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3573, "blockHeight": 3573, "took": "6.84395ms"} -2023-12-15T15:11:49.461Z INFO sending PrepareRequest {"height": 3574, "view": 0} -2023-12-15T15:11:49.462Z INFO sending Commit {"height": 3574, "view": 0} -2023-12-15T15:11:49.462Z INFO approving block {"height": 3574, "hash": "7c3e283ef4f28957aaa1eabb11f9c59b4b295f35ec2f2420e52bc8dea7b65ef6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2241aae193bd9e9f498a7e329140300a043eff996e4d967c8c524ef12da51f87"} -2023-12-15T15:11:49.463Z INFO initializing dbft {"height": 3575, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:49.463Z debug frostfs-node/morph.go:229 new block {"index": 3574} -2023-12-15T15:11:50.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3574, "blockHeight": 3574, "took": "4.643352ms"} -2023-12-15T15:11:50.463Z INFO sending PrepareRequest {"height": 3575, "view": 0} -2023-12-15T15:11:50.464Z INFO sending Commit {"height": 3575, "view": 0} -2023-12-15T15:11:50.464Z INFO approving block {"height": 3575, "hash": "d043a04de0eb4bb15f628aa8c131548ec1624e99b04f4d04e0bcf0f955741755", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c3e283ef4f28957aaa1eabb11f9c59b4b295f35ec2f2420e52bc8dea7b65ef6"} -2023-12-15T15:11:50.465Z INFO initializing dbft {"height": 3576, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:50.466Z debug frostfs-node/morph.go:229 new block {"index": 3575} -2023-12-15T15:11:51.071Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3575, "blockHeight": 3575, "took": "4.93642ms"} -2023-12-15T15:11:51.465Z INFO sending PrepareRequest {"height": 3576, "view": 0} -2023-12-15T15:11:51.465Z INFO sending Commit {"height": 3576, "view": 0} -2023-12-15T15:11:51.465Z INFO approving block {"height": 3576, "hash": "42df2d1b479998cad62bcf37ac6f485147d18ae3bc94e0bc3b21e4b0397f00c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d043a04de0eb4bb15f628aa8c131548ec1624e99b04f4d04e0bcf0f955741755"} -2023-12-15T15:11:51.466Z INFO initializing dbft {"height": 3577, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:51.466Z debug frostfs-node/morph.go:229 new block {"index": 3576} -2023-12-15T15:11:52.069Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3576, "blockHeight": 3576, "took": "2.991925ms"} -2023-12-15T15:11:52.466Z INFO sending PrepareRequest {"height": 3577, "view": 0} -2023-12-15T15:11:52.466Z INFO sending Commit {"height": 3577, "view": 0} -2023-12-15T15:11:52.467Z INFO approving block {"height": 3577, "hash": "2a915da88fa3bd4948e81ca29bfb0242a8f1c7d65ecd734cd82a1b7ceef7dc92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42df2d1b479998cad62bcf37ac6f485147d18ae3bc94e0bc3b21e4b0397f00c6"} -2023-12-15T15:11:52.468Z INFO initializing dbft {"height": 3578, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:52.468Z debug frostfs-node/morph.go:229 new block {"index": 3577} -2023-12-15T15:11:53.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3577, "blockHeight": 3577, "took": "3.608373ms"} -2023-12-15T15:11:53.468Z INFO sending PrepareRequest {"height": 3578, "view": 0} -2023-12-15T15:11:53.468Z INFO sending Commit {"height": 3578, "view": 0} -2023-12-15T15:11:53.469Z INFO approving block {"height": 3578, "hash": "95d2a740cc994bfd3a4eeb8cdfdfdf7a4b3b7d97222dcf1ede088733318802a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a915da88fa3bd4948e81ca29bfb0242a8f1c7d65ecd734cd82a1b7ceef7dc92"} -2023-12-15T15:11:53.470Z INFO initializing dbft {"height": 3579, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:53.470Z debug frostfs-node/morph.go:229 new block {"index": 3578} -2023-12-15T15:11:54.071Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3578, "blockHeight": 3578, "took": "4.071723ms"} -2023-12-15T15:11:54.470Z INFO sending PrepareRequest {"height": 3579, "view": 0} -2023-12-15T15:11:54.470Z INFO sending Commit {"height": 3579, "view": 0} -2023-12-15T15:11:54.470Z INFO approving block {"height": 3579, "hash": "479427033d42588e245f51afa73605b5e2361f4bb60e7c1dbebc77c9801977d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95d2a740cc994bfd3a4eeb8cdfdfdf7a4b3b7d97222dcf1ede088733318802a9"} -2023-12-15T15:11:54.471Z INFO initializing dbft {"height": 3580, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:54.471Z debug frostfs-node/morph.go:229 new block {"index": 3579} -2023-12-15T15:11:55.070Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3579, "blockHeight": 3579, "took": "2.989414ms"} -2023-12-15T15:11:55.471Z INFO sending PrepareRequest {"height": 3580, "view": 0} -2023-12-15T15:11:55.471Z INFO sending Commit {"height": 3580, "view": 0} -2023-12-15T15:11:55.472Z INFO approving block {"height": 3580, "hash": "1d9bdc6496aacda9f5cef0c5bef0fd746f766d0357abfcce05b97efdabaedae0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "479427033d42588e245f51afa73605b5e2361f4bb60e7c1dbebc77c9801977d3"} -2023-12-15T15:11:55.472Z INFO initializing dbft {"height": 3581, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:55.473Z debug frostfs-node/morph.go:229 new block {"index": 3580} -2023-12-15T15:11:56.072Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3580, "blockHeight": 3580, "took": "4.729818ms"} -2023-12-15T15:11:56.472Z INFO sending PrepareRequest {"height": 3581, "view": 0} -2023-12-15T15:11:56.472Z INFO sending Commit {"height": 3581, "view": 0} -2023-12-15T15:11:56.473Z INFO approving block {"height": 3581, "hash": "367d09e7f5e87c547c5aef371452e81f76f311e556f68d7b6eea90010b451c57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d9bdc6496aacda9f5cef0c5bef0fd746f766d0357abfcce05b97efdabaedae0"} -2023-12-15T15:11:56.473Z INFO initializing dbft {"height": 3582, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:56.474Z debug frostfs-node/morph.go:229 new block {"index": 3581} -2023-12-15T15:11:57.072Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3581, "blockHeight": 3581, "took": "3.345369ms"} -2023-12-15T15:11:57.473Z INFO sending PrepareRequest {"height": 3582, "view": 0} -2023-12-15T15:11:57.474Z INFO sending Commit {"height": 3582, "view": 0} -2023-12-15T15:11:57.474Z INFO approving block {"height": 3582, "hash": "dcd6b560c4e1da023f5d549e7958ef863c06d240eebf2b66a2281adf27bd222b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "367d09e7f5e87c547c5aef371452e81f76f311e556f68d7b6eea90010b451c57"} -2023-12-15T15:11:57.475Z INFO initializing dbft {"height": 3583, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:57.476Z debug frostfs-node/morph.go:229 new block {"index": 3582} -2023-12-15T15:11:58.073Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3582, "blockHeight": 3582, "took": "3.06397ms"} -2023-12-15T15:11:58.475Z INFO sending PrepareRequest {"height": 3583, "view": 0} -2023-12-15T15:11:58.475Z INFO sending Commit {"height": 3583, "view": 0} -2023-12-15T15:11:58.476Z INFO approving block {"height": 3583, "hash": "2a41be47e1e8aaef2eda442e013eda92ec66bb3a70491d3e419fd366c7ce7121", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcd6b560c4e1da023f5d549e7958ef863c06d240eebf2b66a2281adf27bd222b"} -2023-12-15T15:11:58.477Z INFO initializing dbft {"height": 3584, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:58.478Z debug frostfs-node/morph.go:229 new block {"index": 3583} -2023-12-15T15:11:59.077Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 3583, "blockHeight": 3583, "took": "6.473223ms"} -2023-12-15T15:11:59.477Z INFO sending PrepareRequest {"height": 3584, "view": 0} -2023-12-15T15:11:59.477Z INFO sending Commit {"height": 3584, "view": 0} -2023-12-15T15:11:59.477Z INFO approving block {"height": 3584, "hash": "9ad3bf97a04832de24125b22b990dbe397f7fa4c1ed9ad4fb536b145ac623cf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a41be47e1e8aaef2eda442e013eda92ec66bb3a70491d3e419fd366c7ce7121"} -2023-12-15T15:11:59.478Z INFO initializing dbft {"height": 3585, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:11:59.478Z debug frostfs-node/morph.go:229 new block {"index": 3584} -2023-12-15T15:12:00.075Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3584, "blockHeight": 3584, "took": "3.3853ms"} -2023-12-15T15:12:00.479Z INFO sending PrepareRequest {"height": 3585, "view": 0} -2023-12-15T15:12:00.479Z INFO sending Commit {"height": 3585, "view": 0} -2023-12-15T15:12:00.479Z INFO approving block {"height": 3585, "hash": "ed0b33c07fdb3e8f5fc498d923977a1d1c5a5782207fd9d9990f6cb00baf5a3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ad3bf97a04832de24125b22b990dbe397f7fa4c1ed9ad4fb536b145ac623cf3"} -2023-12-15T15:12:00.481Z INFO initializing dbft {"height": 3586, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:00.481Z debug frostfs-node/morph.go:229 new block {"index": 3585} -2023-12-15T15:12:01.076Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3585, "blockHeight": 3585, "took": "3.531594ms"} -2023-12-15T15:12:01.480Z INFO sending PrepareRequest {"height": 3586, "view": 0} -2023-12-15T15:12:01.480Z INFO sending Commit {"height": 3586, "view": 0} -2023-12-15T15:12:01.481Z INFO approving block {"height": 3586, "hash": "14e2290b1cb19cd5e41928eaccb56f50ef2364e14e3272db92d3101451f97fde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed0b33c07fdb3e8f5fc498d923977a1d1c5a5782207fd9d9990f6cb00baf5a3c"} -2023-12-15T15:12:01.482Z INFO initializing dbft {"height": 3587, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:01.483Z debug frostfs-node/morph.go:229 new block {"index": 3586} -2023-12-15T15:12:02.075Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3586, "blockHeight": 3586, "took": "3.002208ms"} -2023-12-15T15:12:02.481Z INFO sending PrepareRequest {"height": 3587, "view": 0} -2023-12-15T15:12:02.481Z INFO sending Commit {"height": 3587, "view": 0} -2023-12-15T15:12:02.482Z INFO approving block {"height": 3587, "hash": "86b55d010b5585866946d54ce3c426beb3de4b8c454fbc2589665306ba291693", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14e2290b1cb19cd5e41928eaccb56f50ef2364e14e3272db92d3101451f97fde"} -2023-12-15T15:12:02.482Z INFO initializing dbft {"height": 3588, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:02.483Z debug frostfs-node/morph.go:229 new block {"index": 3587} -2023-12-15T15:12:03.077Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3587, "blockHeight": 3587, "took": "4.517393ms"} -2023-12-15T15:12:03.483Z INFO sending PrepareRequest {"height": 3588, "view": 0} -2023-12-15T15:12:03.483Z INFO sending Commit {"height": 3588, "view": 0} -2023-12-15T15:12:03.483Z INFO approving block {"height": 3588, "hash": "58d4e715f5fff2472bd1955de3c1c5d307326a3f9125e05248a20f311a1a2cb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86b55d010b5585866946d54ce3c426beb3de4b8c454fbc2589665306ba291693"} -2023-12-15T15:12:03.485Z INFO initializing dbft {"height": 3589, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:03.486Z debug frostfs-node/morph.go:229 new block {"index": 3588} -2023-12-15T15:12:04.078Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3588, "blockHeight": 3588, "took": "4.626102ms"} -2023-12-15T15:12:04.484Z INFO sending PrepareRequest {"height": 3589, "view": 0} -2023-12-15T15:12:04.485Z INFO sending Commit {"height": 3589, "view": 0} -2023-12-15T15:12:04.485Z INFO approving block {"height": 3589, "hash": "14ff9538c406011e5d9adfe1ba3f810c6504446c674933bc333b00349a0f4ef3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58d4e715f5fff2472bd1955de3c1c5d307326a3f9125e05248a20f311a1a2cb4"} -2023-12-15T15:12:04.486Z INFO initializing dbft {"height": 3590, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:04.487Z debug frostfs-node/morph.go:229 new block {"index": 3589} -2023-12-15T15:12:05.078Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3589, "blockHeight": 3589, "took": "4.527562ms"} -2023-12-15T15:12:05.486Z INFO sending PrepareRequest {"height": 3590, "view": 0} -2023-12-15T15:12:05.486Z INFO sending Commit {"height": 3590, "view": 0} -2023-12-15T15:12:05.487Z INFO approving block {"height": 3590, "hash": "dc433d55ed896cae9efbb615e4caaa5a07416de1d9a38a7749feb5e8c9b8b006", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14ff9538c406011e5d9adfe1ba3f810c6504446c674933bc333b00349a0f4ef3"} -2023-12-15T15:12:05.488Z INFO initializing dbft {"height": 3591, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:05.489Z debug frostfs-node/morph.go:229 new block {"index": 3590} -2023-12-15T15:12:06.079Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3590, "blockHeight": 3590, "took": "4.367818ms"} -2023-12-15T15:12:06.487Z INFO sending PrepareRequest {"height": 3591, "view": 0} -2023-12-15T15:12:06.487Z INFO sending Commit {"height": 3591, "view": 0} -2023-12-15T15:12:06.488Z INFO approving block {"height": 3591, "hash": "b4b858704ca7fca0872c0b75d00d003af74d987b73ae2f50b73a0dfd13e6cb94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc433d55ed896cae9efbb615e4caaa5a07416de1d9a38a7749feb5e8c9b8b006"} -2023-12-15T15:12:06.489Z INFO initializing dbft {"height": 3592, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:06.489Z debug frostfs-node/morph.go:229 new block {"index": 3591} -2023-12-15T15:12:07.079Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3591, "blockHeight": 3591, "took": "4.512196ms"} -2023-12-15T15:12:07.488Z INFO sending PrepareRequest {"height": 3592, "view": 0} -2023-12-15T15:12:07.489Z INFO sending Commit {"height": 3592, "view": 0} -2023-12-15T15:12:07.489Z INFO approving block {"height": 3592, "hash": "2d921bd85ff4bd2bc3a0f99a0f99124fa6b28a06e64ce325c83ba2b6d03b0838", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4b858704ca7fca0872c0b75d00d003af74d987b73ae2f50b73a0dfd13e6cb94"} -2023-12-15T15:12:07.490Z INFO initializing dbft {"height": 3593, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:07.490Z debug frostfs-node/morph.go:229 new block {"index": 3592} -2023-12-15T15:12:08.078Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3592, "blockHeight": 3592, "took": "2.942166ms"} -2023-12-15T15:12:08.490Z INFO sending PrepareRequest {"height": 3593, "view": 0} -2023-12-15T15:12:08.490Z INFO sending Commit {"height": 3593, "view": 0} -2023-12-15T15:12:08.490Z INFO approving block {"height": 3593, "hash": "e020cfa80bd3631b875130ecd1b9f39385d6367f238ab26e3846f6c4ae21751b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d921bd85ff4bd2bc3a0f99a0f99124fa6b28a06e64ce325c83ba2b6d03b0838"} -2023-12-15T15:12:08.491Z INFO initializing dbft {"height": 3594, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:08.492Z debug frostfs-node/morph.go:229 new block {"index": 3593} -2023-12-15T15:12:09.079Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3593, "blockHeight": 3593, "took": "3.491093ms"} -2023-12-15T15:12:09.492Z INFO sending PrepareRequest {"height": 3594, "view": 0} -2023-12-15T15:12:09.492Z INFO sending Commit {"height": 3594, "view": 0} -2023-12-15T15:12:09.492Z INFO approving block {"height": 3594, "hash": "bc129a0d7180602a3c3ec5bf47413ae94bc694ae5f7d526df7425b04567c2894", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e020cfa80bd3631b875130ecd1b9f39385d6367f238ab26e3846f6c4ae21751b"} -2023-12-15T15:12:09.493Z INFO initializing dbft {"height": 3595, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:09.494Z debug frostfs-node/morph.go:229 new block {"index": 3594} -2023-12-15T15:12:10.082Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3594, "blockHeight": 3594, "took": "5.628944ms"} -2023-12-15T15:12:10.493Z INFO sending PrepareRequest {"height": 3595, "view": 0} -2023-12-15T15:12:10.493Z INFO sending Commit {"height": 3595, "view": 0} -2023-12-15T15:12:10.494Z INFO approving block {"height": 3595, "hash": "81280a96a984e3648496333535672e7d5568b176e98890e6788bc9e57b5535ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc129a0d7180602a3c3ec5bf47413ae94bc694ae5f7d526df7425b04567c2894"} -2023-12-15T15:12:10.494Z INFO initializing dbft {"height": 3596, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:10.495Z debug frostfs-node/morph.go:229 new block {"index": 3595} -2023-12-15T15:12:11.085Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3595, "blockHeight": 3595, "took": "8.054898ms"} -2023-12-15T15:12:11.494Z INFO sending PrepareRequest {"height": 3596, "view": 0} -2023-12-15T15:12:11.494Z INFO sending Commit {"height": 3596, "view": 0} -2023-12-15T15:12:11.494Z INFO approving block {"height": 3596, "hash": "6a04105d431a0554182a666cfe9256763e24537ce808cacd322260946948dabf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81280a96a984e3648496333535672e7d5568b176e98890e6788bc9e57b5535ba"} -2023-12-15T15:12:11.495Z INFO initializing dbft {"height": 3597, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:11.496Z debug frostfs-node/morph.go:229 new block {"index": 3596} -2023-12-15T15:12:12.083Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3596, "blockHeight": 3596, "took": "5.659395ms"} -2023-12-15T15:12:12.496Z INFO sending PrepareRequest {"height": 3597, "view": 0} -2023-12-15T15:12:12.496Z INFO sending Commit {"height": 3597, "view": 0} -2023-12-15T15:12:12.496Z INFO approving block {"height": 3597, "hash": "29ae0af449a961c75846126e61102d597ae0ca4081010e3ad48048926696c33b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a04105d431a0554182a666cfe9256763e24537ce808cacd322260946948dabf"} -2023-12-15T15:12:12.497Z INFO initializing dbft {"height": 3598, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:12.497Z debug frostfs-node/morph.go:229 new block {"index": 3597} -2023-12-15T15:12:13.085Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3597, "blockHeight": 3597, "took": "7.292479ms"} -2023-12-15T15:12:13.497Z INFO sending PrepareRequest {"height": 3598, "view": 0} -2023-12-15T15:12:13.498Z INFO sending Commit {"height": 3598, "view": 0} -2023-12-15T15:12:13.498Z INFO approving block {"height": 3598, "hash": "f46adc272f0cf46a558bcb9d35245807088cea9183114ab88e09d4bffc29244f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29ae0af449a961c75846126e61102d597ae0ca4081010e3ad48048926696c33b"} -2023-12-15T15:12:13.499Z INFO initializing dbft {"height": 3599, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:13.500Z debug frostfs-node/morph.go:229 new block {"index": 3598} -2023-12-15T15:12:14.083Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3598, "blockHeight": 3598, "took": "4.168852ms"} -2023-12-15T15:12:14.499Z INFO sending PrepareRequest {"height": 3599, "view": 0} -2023-12-15T15:12:14.499Z INFO sending Commit {"height": 3599, "view": 0} -2023-12-15T15:12:14.499Z INFO approving block {"height": 3599, "hash": "a872162216d409dc2b7891d0aee1eeebc2991d06a10ec6d8fc14976bcabe2fa7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f46adc272f0cf46a558bcb9d35245807088cea9183114ab88e09d4bffc29244f"} -2023-12-15T15:12:14.501Z INFO initializing dbft {"height": 3600, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:14.501Z debug frostfs-node/morph.go:229 new block {"index": 3599} -2023-12-15T15:12:15.084Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3599, "blockHeight": 3599, "took": "4.749329ms"} -2023-12-15T15:12:15.500Z INFO sending PrepareRequest {"height": 3600, "view": 0} -2023-12-15T15:12:15.500Z INFO sending Commit {"height": 3600, "view": 0} -2023-12-15T15:12:15.500Z INFO approving block {"height": 3600, "hash": "02096bd7fab0dec949d570cc55961c80939c1f0c6e0ca5f2ad17fec12982a966", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a872162216d409dc2b7891d0aee1eeebc2991d06a10ec6d8fc14976bcabe2fa7"} -2023-12-15T15:12:15.501Z INFO initializing dbft {"height": 3601, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:15.502Z debug frostfs-node/morph.go:229 new block {"index": 3600} -2023-12-15T15:12:16.084Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3600, "blockHeight": 3600, "took": "4.541086ms"} -2023-12-15T15:12:16.501Z INFO sending PrepareRequest {"height": 3601, "view": 0} -2023-12-15T15:12:16.502Z INFO sending Commit {"height": 3601, "view": 0} -2023-12-15T15:12:16.502Z INFO approving block {"height": 3601, "hash": "94892337090b9a3158a57f48b451fb1e964af67f446aaa505ff600b60091876f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02096bd7fab0dec949d570cc55961c80939c1f0c6e0ca5f2ad17fec12982a966"} -2023-12-15T15:12:16.503Z INFO initializing dbft {"height": 3602, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:16.503Z debug frostfs-node/morph.go:229 new block {"index": 3601} -2023-12-15T15:12:17.086Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3601, "blockHeight": 3601, "took": "5.787138ms"} -2023-12-15T15:12:17.503Z INFO sending PrepareRequest {"height": 3602, "view": 0} -2023-12-15T15:12:17.503Z INFO sending Commit {"height": 3602, "view": 0} -2023-12-15T15:12:17.504Z INFO approving block {"height": 3602, "hash": "ec23518ef1021aef0d56a019fc01bfc60663e833b569ca9d397c6d5916070023", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94892337090b9a3158a57f48b451fb1e964af67f446aaa505ff600b60091876f"} -2023-12-15T15:12:17.505Z INFO initializing dbft {"height": 3603, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:17.506Z debug frostfs-node/morph.go:229 new block {"index": 3602} -2023-12-15T15:12:18.087Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3602, "blockHeight": 3602, "took": "6.16825ms"} -2023-12-15T15:12:18.505Z INFO sending PrepareRequest {"height": 3603, "view": 0} -2023-12-15T15:12:18.505Z INFO sending Commit {"height": 3603, "view": 0} -2023-12-15T15:12:18.505Z INFO approving block {"height": 3603, "hash": "e667397a19f4235990f68757740a124f1b96971c454332d45bf34f67eb229308", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec23518ef1021aef0d56a019fc01bfc60663e833b569ca9d397c6d5916070023"} -2023-12-15T15:12:18.507Z INFO initializing dbft {"height": 3604, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:18.507Z debug frostfs-node/morph.go:229 new block {"index": 3603} -2023-12-15T15:12:19.086Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3603, "blockHeight": 3603, "took": "4.549273ms"} -2023-12-15T15:12:19.506Z INFO sending PrepareRequest {"height": 3604, "view": 0} -2023-12-15T15:12:19.506Z INFO sending Commit {"height": 3604, "view": 0} -2023-12-15T15:12:19.506Z INFO approving block {"height": 3604, "hash": "74420d550ef8c14b20b5c6c7549725c48bdd7740ad1bbba272b2254e03e5e4a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e667397a19f4235990f68757740a124f1b96971c454332d45bf34f67eb229308"} -2023-12-15T15:12:19.507Z INFO initializing dbft {"height": 3605, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:19.508Z debug frostfs-node/morph.go:229 new block {"index": 3604} -2023-12-15T15:12:20.086Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3604, "blockHeight": 3604, "took": "4.7544ms"} -2023-12-15T15:12:20.508Z INFO sending PrepareRequest {"height": 3605, "view": 0} -2023-12-15T15:12:20.508Z INFO sending Commit {"height": 3605, "view": 0} -2023-12-15T15:12:20.508Z INFO approving block {"height": 3605, "hash": "6040764b87e8c42385b8bb1c2bf1fb9d043f4c547c89f8e5cfed13e68b42231d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74420d550ef8c14b20b5c6c7549725c48bdd7740ad1bbba272b2254e03e5e4a6"} -2023-12-15T15:12:20.509Z INFO initializing dbft {"height": 3606, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:20.510Z debug frostfs-node/morph.go:229 new block {"index": 3605} -2023-12-15T15:12:21.087Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3605, "blockHeight": 3605, "took": "4.632276ms"} -2023-12-15T15:12:21.509Z INFO sending PrepareRequest {"height": 3606, "view": 0} -2023-12-15T15:12:21.509Z INFO sending Commit {"height": 3606, "view": 0} -2023-12-15T15:12:21.510Z INFO approving block {"height": 3606, "hash": "d47f3a0225436a296b6330a52f137a759755e1d1056a3b8cfa388e87059459a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6040764b87e8c42385b8bb1c2bf1fb9d043f4c547c89f8e5cfed13e68b42231d"} -2023-12-15T15:12:21.511Z INFO initializing dbft {"height": 3607, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:21.512Z debug frostfs-node/morph.go:229 new block {"index": 3606} -2023-12-15T15:12:22.089Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3606, "blockHeight": 3606, "took": "6.468216ms"} -2023-12-15T15:12:22.511Z INFO sending PrepareRequest {"height": 3607, "view": 0} -2023-12-15T15:12:22.511Z INFO sending Commit {"height": 3607, "view": 0} -2023-12-15T15:12:22.511Z INFO approving block {"height": 3607, "hash": "bf497ac485737bf76116480844f31619e37baffd0d86d45254916d181b32d2fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d47f3a0225436a296b6330a52f137a759755e1d1056a3b8cfa388e87059459a9"} -2023-12-15T15:12:22.513Z INFO initializing dbft {"height": 3608, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:22.513Z debug frostfs-node/morph.go:229 new block {"index": 3607} -2023-12-15T15:12:23.086Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3607, "blockHeight": 3607, "took": "2.925425ms"} -2023-12-15T15:12:23.512Z INFO sending PrepareRequest {"height": 3608, "view": 0} -2023-12-15T15:12:23.512Z INFO sending Commit {"height": 3608, "view": 0} -2023-12-15T15:12:23.512Z INFO approving block {"height": 3608, "hash": "0f406ee84bf9d520e61c9c3789848adfcb22a5982fb865df8ae702b70653f6d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf497ac485737bf76116480844f31619e37baffd0d86d45254916d181b32d2fd"} -2023-12-15T15:12:23.513Z INFO initializing dbft {"height": 3609, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:23.513Z debug frostfs-node/morph.go:229 new block {"index": 3608} -2023-12-15T15:12:24.087Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3608, "blockHeight": 3608, "took": "3.932201ms"} -2023-12-15T15:12:24.514Z INFO sending PrepareRequest {"height": 3609, "view": 0} -2023-12-15T15:12:24.514Z INFO sending Commit {"height": 3609, "view": 0} -2023-12-15T15:12:24.514Z INFO approving block {"height": 3609, "hash": "72d891058caff473349e2cfb831787e96e2d67d4928f2a553ac221904b0d50bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f406ee84bf9d520e61c9c3789848adfcb22a5982fb865df8ae702b70653f6d3"} -2023-12-15T15:12:24.516Z INFO initializing dbft {"height": 3610, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:24.516Z debug frostfs-node/morph.go:229 new block {"index": 3609} -2023-12-15T15:12:25.089Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3609, "blockHeight": 3609, "took": "5.095036ms"} -2023-12-15T15:12:25.515Z INFO sending PrepareRequest {"height": 3610, "view": 0} -2023-12-15T15:12:25.515Z INFO sending Commit {"height": 3610, "view": 0} -2023-12-15T15:12:25.515Z INFO approving block {"height": 3610, "hash": "fc06f6678b17bae865480455ea7f4820ce0e8bd68139070c0a3a7d5542c18cd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72d891058caff473349e2cfb831787e96e2d67d4928f2a553ac221904b0d50bb"} -2023-12-15T15:12:25.516Z INFO initializing dbft {"height": 3611, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:25.516Z debug frostfs-node/morph.go:229 new block {"index": 3610} -2023-12-15T15:12:26.089Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3610, "blockHeight": 3610, "took": "4.838025ms"} -2023-12-15T15:12:26.516Z INFO sending PrepareRequest {"height": 3611, "view": 0} -2023-12-15T15:12:26.516Z INFO sending Commit {"height": 3611, "view": 0} -2023-12-15T15:12:26.516Z INFO approving block {"height": 3611, "hash": "436204464950e847f14953c7ffb73212483b07602e9c6a6c9775af4ecc33932a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc06f6678b17bae865480455ea7f4820ce0e8bd68139070c0a3a7d5542c18cd6"} -2023-12-15T15:12:26.517Z INFO initializing dbft {"height": 3612, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:26.518Z debug frostfs-node/morph.go:229 new block {"index": 3611} -2023-12-15T15:12:27.090Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3611, "blockHeight": 3611, "took": "4.94027ms"} -2023-12-15T15:12:27.518Z INFO sending PrepareRequest {"height": 3612, "view": 0} -2023-12-15T15:12:27.518Z INFO sending Commit {"height": 3612, "view": 0} -2023-12-15T15:12:27.519Z INFO approving block {"height": 3612, "hash": "d941c17e67cab6c83dacb52b4aebd24898a6dd8c6f30df2199fdfd3f28209c09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "436204464950e847f14953c7ffb73212483b07602e9c6a6c9775af4ecc33932a"} -2023-12-15T15:12:27.520Z INFO initializing dbft {"height": 3613, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:27.520Z debug frostfs-node/morph.go:229 new block {"index": 3612} -2023-12-15T15:12:28.091Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3612, "blockHeight": 3612, "took": "5.022898ms"} -2023-12-15T15:12:28.520Z INFO sending PrepareRequest {"height": 3613, "view": 0} -2023-12-15T15:12:28.521Z INFO sending Commit {"height": 3613, "view": 0} -2023-12-15T15:12:28.521Z INFO approving block {"height": 3613, "hash": "b45975e3ee0976415ad1c2540b083ad3bbc68e8bdab45c5511b272eec8871acc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d941c17e67cab6c83dacb52b4aebd24898a6dd8c6f30df2199fdfd3f28209c09"} -2023-12-15T15:12:28.522Z INFO initializing dbft {"height": 3614, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:28.523Z debug frostfs-node/morph.go:229 new block {"index": 3613} -2023-12-15T15:12:28.526Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 15, "iteration": 3, "error": "no data for 2 iteration in 15 epoch for consumers's trusts"} -2023-12-15T15:12:29.090Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3613, "blockHeight": 3613, "took": "3.09822ms"} -2023-12-15T15:12:29.522Z INFO sending PrepareRequest {"height": 3614, "view": 0} -2023-12-15T15:12:29.522Z INFO sending Commit {"height": 3614, "view": 0} -2023-12-15T15:12:29.522Z INFO approving block {"height": 3614, "hash": "34e3426e371e732224e81b821e63bd54e71de6d0f0a433b90feeeabfa69e71a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b45975e3ee0976415ad1c2540b083ad3bbc68e8bdab45c5511b272eec8871acc"} -2023-12-15T15:12:29.523Z INFO initializing dbft {"height": 3615, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:29.523Z debug frostfs-node/morph.go:229 new block {"index": 3614} -2023-12-15T15:12:29.526Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T15:12:29.530Z INFO runtime log {"tx": "c262832e0fb56603d9f9e3de188462f4d33d248e29dfa2d6b0d61f8546df8d1d", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:12:30.092Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3614, "blockHeight": 3614, "took": "4.309057ms"} -2023-12-15T15:12:30.523Z INFO sending PrepareRequest {"height": 3615, "view": 0} -2023-12-15T15:12:30.523Z INFO sending Commit {"height": 3615, "view": 0} -2023-12-15T15:12:30.523Z INFO approving block {"height": 3615, "hash": "b7d01ee0c3767649470fdd09e3c50b2aeec6008ccb7858690486e7f220e7aa46", "tx_count": 1, "merkle": "8aeb753be9ff9497d4e07c3dd01e5c84c8fcf696db2baf5439b864d9a485e426", "prev": "34e3426e371e732224e81b821e63bd54e71de6d0f0a433b90feeeabfa69e71a2"} -2023-12-15T15:12:30.524Z INFO runtime log {"tx": "26e485a4d964b83954af2bdb96f6fcc8845c1ed03d7ce0d49794ffe93b75eb8a", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T15:12:30.525Z INFO initializing dbft {"height": 3616, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:30.525Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 17} -2023-12-15T15:12:30.525Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 17} -2023-12-15T15:12:30.525Z debug tree/sync.go:298 syncing trees... -2023-12-15T15:12:30.525Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T15:12:30.526Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 17} -2023-12-15T15:12:30.526Z debug controller/calls.go:95 starting to report local trust values {"epoch": 16} -2023-12-15T15:12:30.526Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 16} -2023-12-15T15:12:30.526Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 17} -2023-12-15T15:12:30.526Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 17} -2023-12-15T15:12:30.526Z debug frostfs-node/morph.go:229 new block {"index": 3615} -2023-12-15T15:12:30.528Z debug controller/calls.go:146 reporting successfully finished {"epoch": 16} -2023-12-15T15:12:30.528Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 16} -2023-12-15T15:12:30.529Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T15:12:30.531Z INFO runtime log {"tx": "9c71cc0c93571379b80e2b879ce1b7112459cf8ffc61f47a02213f7e17c32c85", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:12:30.532Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 3618, "tx_hash": "8cfbdc6cff10fbf2cc03951287c1f4335702a2080ce7dd97f81b93ed44609e4d"} -2023-12-15T15:12:30.539Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T15:12:30.539Z info audit/handlers.go:13 new round of audit {"epoch": 17} -2023-12-15T15:12:30.540Z info settlement/calls.go:26 new audit settlement event {"epoch": 17} -2023-12-15T15:12:30.540Z info settlement/handlers.go:14 process audit settlements {"epoch": 17} -2023-12-15T15:12:30.540Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 17} -2023-12-15T15:12:30.542Z info settlement/handlers.go:18 audit processing finished {"epoch": 17} -2023-12-15T15:12:30.543Z info audit/process.go:39 select containers for audit {"epoch": 17, "amount": 0} -2023-12-15T15:12:30.545Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 3618, "tx_hash": "7e0a6ef8de66b6081a2b6a31ccc53c9d9f87f12532b97f007ce1f238cceb9960"} -2023-12-15T15:12:31.096Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 3615, "blockHeight": 3615, "took": "8.535803ms"} -2023-12-15T15:12:31.524Z INFO sending PrepareRequest {"height": 3616, "view": 0} -2023-12-15T15:12:31.524Z INFO sending Commit {"height": 3616, "view": 0} -2023-12-15T15:12:31.524Z INFO approving block {"height": 3616, "hash": "8f98582364adfeccb7cc875d83c0d7b0dca8dcfd44d9838fdfd698fe829c1321", "tx_count": 3, "merkle": "cc8ff93fd4a834506f5f73c9b829107a4008bdb0c8f95e107ad8820a3120852f", "prev": "b7d01ee0c3767649470fdd09e3c50b2aeec6008ccb7858690486e7f220e7aa46"} -2023-12-15T15:12:31.525Z INFO runtime log {"tx": "23cbdb689ded8780cad62b244adf8010c6cd3139662741ca59060e14c57567af", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T15:12:31.526Z INFO initializing dbft {"height": 3617, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:31.526Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 16} -2023-12-15T15:12:31.526Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 16} -2023-12-15T15:12:31.526Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 16} -2023-12-15T15:12:31.527Z debug frostfs-node/morph.go:229 new block {"index": 3616} -2023-12-15T15:12:32.098Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 3616, "blockHeight": 3616, "took": "10.145475ms"} -2023-12-15T15:12:32.525Z INFO sending PrepareRequest {"height": 3617, "view": 0} -2023-12-15T15:12:32.525Z INFO sending Commit {"height": 3617, "view": 0} -2023-12-15T15:12:32.525Z INFO approving block {"height": 3617, "hash": "cd98daecebe5f68106904f4153964eafdc0c4d6c85e0c7fa985a8b4913cef486", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f98582364adfeccb7cc875d83c0d7b0dca8dcfd44d9838fdfd698fe829c1321"} -2023-12-15T15:12:32.526Z INFO initializing dbft {"height": 3618, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:32.527Z debug frostfs-node/morph.go:229 new block {"index": 3617} -2023-12-15T15:12:32.529Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T15:12:32.529Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:12:32.530Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:12:33.092Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3617, "blockHeight": 3617, "took": "3.547321ms"} -2023-12-15T15:12:33.527Z INFO sending PrepareRequest {"height": 3618, "view": 0} -2023-12-15T15:12:33.527Z INFO sending Commit {"height": 3618, "view": 0} -2023-12-15T15:12:33.527Z INFO approving block {"height": 3618, "hash": "fd7f0b1e72409e7072e0f61333433b170ec28da1ff5f1aa9269686335e9a22c6", "tx_count": 2, "merkle": "79b3daa3d67497742a11a0c36befb6c5954613f02992c599763a8927e54b74cd", "prev": "cd98daecebe5f68106904f4153964eafdc0c4d6c85e0c7fa985a8b4913cef486"} -2023-12-15T15:12:33.528Z INFO runtime log {"tx": "23e80ab7d71a2a66aa8f962046a16a6b83d9fdeb5e6b33266ec11e92b3194d14", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T15:12:33.528Z INFO runtime log {"tx": "23e80ab7d71a2a66aa8f962046a16a6b83d9fdeb5e6b33266ec11e92b3194d14", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T15:12:33.529Z INFO initializing dbft {"height": 3619, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:33.529Z debug frostfs-node/morph.go:229 new block {"index": 3618} -2023-12-15T15:12:34.093Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 3618, "blockHeight": 3618, "took": "4.144498ms"} -2023-12-15T15:12:34.528Z INFO sending PrepareRequest {"height": 3619, "view": 0} -2023-12-15T15:12:34.528Z INFO sending Commit {"height": 3619, "view": 0} -2023-12-15T15:12:34.529Z INFO approving block {"height": 3619, "hash": "238e0294590e842af63f2f903db140de919f0af47f289aac5fef9b11e1e7459d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd7f0b1e72409e7072e0f61333433b170ec28da1ff5f1aa9269686335e9a22c6"} -2023-12-15T15:12:34.530Z INFO initializing dbft {"height": 3620, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:34.530Z debug frostfs-node/morph.go:229 new block {"index": 3619} -2023-12-15T15:12:35.093Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3619, "blockHeight": 3619, "took": "3.081937ms"} -2023-12-15T15:12:35.530Z INFO sending PrepareRequest {"height": 3620, "view": 0} -2023-12-15T15:12:35.530Z INFO sending Commit {"height": 3620, "view": 0} -2023-12-15T15:12:35.530Z INFO approving block {"height": 3620, "hash": "372f796c149581f9bcb2569d49b6e6caf74ecaadf5acabc4cd84ae415c5e30b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "238e0294590e842af63f2f903db140de919f0af47f289aac5fef9b11e1e7459d"} -2023-12-15T15:12:35.532Z INFO initializing dbft {"height": 3621, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:35.533Z debug frostfs-node/morph.go:229 new block {"index": 3620} -2023-12-15T15:12:36.094Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3620, "blockHeight": 3620, "took": "4.55814ms"} -2023-12-15T15:12:36.532Z INFO sending PrepareRequest {"height": 3621, "view": 0} -2023-12-15T15:12:36.532Z INFO sending Commit {"height": 3621, "view": 0} -2023-12-15T15:12:36.533Z INFO approving block {"height": 3621, "hash": "bdc398713ffc832a0966363eea698d55ba6434ca6c4cdb696aa2730f69d4056c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "372f796c149581f9bcb2569d49b6e6caf74ecaadf5acabc4cd84ae415c5e30b1"} -2023-12-15T15:12:36.534Z INFO initializing dbft {"height": 3622, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:36.535Z debug frostfs-node/morph.go:229 new block {"index": 3621} -2023-12-15T15:12:37.094Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3621, "blockHeight": 3621, "took": "3.369155ms"} -2023-12-15T15:12:37.533Z INFO sending PrepareRequest {"height": 3622, "view": 0} -2023-12-15T15:12:37.534Z INFO sending Commit {"height": 3622, "view": 0} -2023-12-15T15:12:37.534Z INFO approving block {"height": 3622, "hash": "b7a620fe149e16c8d1284b132ba2b0fe3932f64c030b23fb0f21118193de67b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdc398713ffc832a0966363eea698d55ba6434ca6c4cdb696aa2730f69d4056c"} -2023-12-15T15:12:37.535Z INFO initializing dbft {"height": 3623, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:37.535Z debug frostfs-node/morph.go:229 new block {"index": 3622} -2023-12-15T15:12:38.095Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3622, "blockHeight": 3622, "took": "4.128697ms"} -2023-12-15T15:12:38.535Z INFO sending PrepareRequest {"height": 3623, "view": 0} -2023-12-15T15:12:38.535Z INFO sending Commit {"height": 3623, "view": 0} -2023-12-15T15:12:38.535Z INFO approving block {"height": 3623, "hash": "08e4d9d0242af678a4419750d2a30e13c8ac9bd2cce276e369e05dbd4e1e7554", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7a620fe149e16c8d1284b132ba2b0fe3932f64c030b23fb0f21118193de67b3"} -2023-12-15T15:12:38.536Z INFO initializing dbft {"height": 3624, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:38.536Z debug frostfs-node/morph.go:229 new block {"index": 3623} -2023-12-15T15:12:39.096Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3623, "blockHeight": 3623, "took": "4.474ms"} -2023-12-15T15:12:39.536Z INFO sending PrepareRequest {"height": 3624, "view": 0} -2023-12-15T15:12:39.537Z INFO sending Commit {"height": 3624, "view": 0} -2023-12-15T15:12:39.537Z INFO approving block {"height": 3624, "hash": "63ce65c159f0bdb9dfe3214bc382aba7ae147e2f34713008ff2d8200778c31cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08e4d9d0242af678a4419750d2a30e13c8ac9bd2cce276e369e05dbd4e1e7554"} -2023-12-15T15:12:39.537Z INFO initializing dbft {"height": 3625, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:39.538Z debug frostfs-node/morph.go:229 new block {"index": 3624} -2023-12-15T15:12:40.096Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3624, "blockHeight": 3624, "took": "3.535125ms"} -2023-12-15T15:12:40.538Z INFO sending PrepareRequest {"height": 3625, "view": 0} -2023-12-15T15:12:40.539Z INFO sending Commit {"height": 3625, "view": 0} -2023-12-15T15:12:40.539Z INFO approving block {"height": 3625, "hash": "f883b2927726d3881a124a7ae6f324484642874381c4d28345227b087153ce79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63ce65c159f0bdb9dfe3214bc382aba7ae147e2f34713008ff2d8200778c31cf"} -2023-12-15T15:12:40.540Z INFO initializing dbft {"height": 3626, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:40.542Z debug frostfs-node/morph.go:229 new block {"index": 3625} -2023-12-15T15:12:41.100Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3625, "blockHeight": 3625, "took": "6.235607ms"} -2023-12-15T15:12:41.540Z INFO sending PrepareRequest {"height": 3626, "view": 0} -2023-12-15T15:12:41.540Z INFO sending Commit {"height": 3626, "view": 0} -2023-12-15T15:12:41.541Z INFO approving block {"height": 3626, "hash": "c4a75c339e06acbd13f8eed70a7065a181037579df6da5af23276fa0e82a2108", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f883b2927726d3881a124a7ae6f324484642874381c4d28345227b087153ce79"} -2023-12-15T15:12:41.542Z INFO initializing dbft {"height": 3627, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:41.542Z debug frostfs-node/morph.go:229 new block {"index": 3626} -2023-12-15T15:12:42.098Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3626, "blockHeight": 3626, "took": "3.830129ms"} -2023-12-15T15:12:42.541Z INFO sending PrepareRequest {"height": 3627, "view": 0} -2023-12-15T15:12:42.541Z INFO sending Commit {"height": 3627, "view": 0} -2023-12-15T15:12:42.542Z INFO approving block {"height": 3627, "hash": "9a1e69cc14b7ca337ebc25ca9ff49bdb658ac0b2ee2406b657346a1a0927e373", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4a75c339e06acbd13f8eed70a7065a181037579df6da5af23276fa0e82a2108"} -2023-12-15T15:12:42.543Z INFO initializing dbft {"height": 3628, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:42.544Z debug frostfs-node/morph.go:229 new block {"index": 3627} -2023-12-15T15:12:43.099Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3627, "blockHeight": 3627, "took": "4.930384ms"} -2023-12-15T15:12:43.543Z INFO sending PrepareRequest {"height": 3628, "view": 0} -2023-12-15T15:12:43.543Z INFO sending Commit {"height": 3628, "view": 0} -2023-12-15T15:12:43.543Z INFO approving block {"height": 3628, "hash": "4f6b3123420a57aa1cd5bf819c84b44360b467461bc48b276dac5e1333dd89f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a1e69cc14b7ca337ebc25ca9ff49bdb658ac0b2ee2406b657346a1a0927e373"} -2023-12-15T15:12:43.545Z INFO initializing dbft {"height": 3629, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:43.545Z debug frostfs-node/morph.go:229 new block {"index": 3628} -2023-12-15T15:12:44.098Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3628, "blockHeight": 3628, "took": "3.337455ms"} -2023-12-15T15:12:44.544Z INFO sending PrepareRequest {"height": 3629, "view": 0} -2023-12-15T15:12:44.544Z INFO sending Commit {"height": 3629, "view": 0} -2023-12-15T15:12:44.544Z INFO approving block {"height": 3629, "hash": "fbce5c5f553eddef814f626dc07ab5b753df2f60493b622c63684cddaefb35f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f6b3123420a57aa1cd5bf819c84b44360b467461bc48b276dac5e1333dd89f2"} -2023-12-15T15:12:44.546Z INFO initializing dbft {"height": 3630, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:44.546Z debug frostfs-node/morph.go:229 new block {"index": 3629} -2023-12-15T15:12:45.100Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3629, "blockHeight": 3629, "took": "5.115935ms"} -2023-12-15T15:12:45.545Z INFO sending PrepareRequest {"height": 3630, "view": 0} -2023-12-15T15:12:45.546Z INFO sending Commit {"height": 3630, "view": 0} -2023-12-15T15:12:45.546Z INFO approving block {"height": 3630, "hash": "e278801bb8784deaf429ce3e3f58e830beabd0f42c2801986b4a2e5825f283dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbce5c5f553eddef814f626dc07ab5b753df2f60493b622c63684cddaefb35f2"} -2023-12-15T15:12:45.547Z INFO initializing dbft {"height": 3631, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:45.547Z debug frostfs-node/morph.go:229 new block {"index": 3630} -2023-12-15T15:12:46.100Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3630, "blockHeight": 3630, "took": "4.480117ms"} -2023-12-15T15:12:46.547Z INFO sending PrepareRequest {"height": 3631, "view": 0} -2023-12-15T15:12:46.547Z INFO sending Commit {"height": 3631, "view": 0} -2023-12-15T15:12:46.547Z INFO approving block {"height": 3631, "hash": "de60797e44d07045ea8af9c14582accca302e47ca7e0fa1a10b0931da46a7917", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e278801bb8784deaf429ce3e3f58e830beabd0f42c2801986b4a2e5825f283dc"} -2023-12-15T15:12:46.548Z INFO initializing dbft {"height": 3632, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:46.549Z debug frostfs-node/morph.go:229 new block {"index": 3631} -2023-12-15T15:12:47.102Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3631, "blockHeight": 3631, "took": "5.893518ms"} -2023-12-15T15:12:47.548Z INFO sending PrepareRequest {"height": 3632, "view": 0} -2023-12-15T15:12:47.549Z INFO sending Commit {"height": 3632, "view": 0} -2023-12-15T15:12:47.549Z INFO approving block {"height": 3632, "hash": "65722cd5bdfe289541c36e3b02fa3f58f50804df1da81d4e9ea9200b7773f78b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de60797e44d07045ea8af9c14582accca302e47ca7e0fa1a10b0931da46a7917"} -2023-12-15T15:12:47.550Z INFO initializing dbft {"height": 3633, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:47.551Z debug frostfs-node/morph.go:229 new block {"index": 3632} -2023-12-15T15:12:48.101Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3632, "blockHeight": 3632, "took": "4.501571ms"} -2023-12-15T15:12:48.550Z INFO sending PrepareRequest {"height": 3633, "view": 0} -2023-12-15T15:12:48.550Z INFO sending Commit {"height": 3633, "view": 0} -2023-12-15T15:12:48.550Z INFO approving block {"height": 3633, "hash": "97c0c85e45cb6a523c3c969ee36b2bd95cd7eed5406670e4697c8404e9a1c3ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65722cd5bdfe289541c36e3b02fa3f58f50804df1da81d4e9ea9200b7773f78b"} -2023-12-15T15:12:48.551Z INFO initializing dbft {"height": 3634, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:48.552Z debug frostfs-node/morph.go:229 new block {"index": 3633} -2023-12-15T15:12:49.100Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3633, "blockHeight": 3633, "took": "3.338138ms"} -2023-12-15T15:12:49.551Z INFO sending PrepareRequest {"height": 3634, "view": 0} -2023-12-15T15:12:49.551Z INFO sending Commit {"height": 3634, "view": 0} -2023-12-15T15:12:49.551Z INFO approving block {"height": 3634, "hash": "cf8e04ae3af0e9ac797ca29c3ce07b0cfbf5c4f0a01fb503b6bdcf8ec4bf556a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97c0c85e45cb6a523c3c969ee36b2bd95cd7eed5406670e4697c8404e9a1c3ee"} -2023-12-15T15:12:49.552Z INFO initializing dbft {"height": 3635, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:49.553Z debug frostfs-node/morph.go:229 new block {"index": 3634} -2023-12-15T15:12:50.101Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3634, "blockHeight": 3634, "took": "3.76203ms"} -2023-12-15T15:12:50.552Z INFO sending PrepareRequest {"height": 3635, "view": 0} -2023-12-15T15:12:50.553Z INFO sending Commit {"height": 3635, "view": 0} -2023-12-15T15:12:50.553Z INFO approving block {"height": 3635, "hash": "398af63aac2d12edff6698536db16141c780f5b20256f94cf25ae048b717e37b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf8e04ae3af0e9ac797ca29c3ce07b0cfbf5c4f0a01fb503b6bdcf8ec4bf556a"} -2023-12-15T15:12:50.554Z INFO initializing dbft {"height": 3636, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:50.555Z debug frostfs-node/morph.go:229 new block {"index": 3635} -2023-12-15T15:12:51.101Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3635, "blockHeight": 3635, "took": "3.347147ms"} -2023-12-15T15:12:51.554Z INFO sending PrepareRequest {"height": 3636, "view": 0} -2023-12-15T15:12:51.554Z INFO sending Commit {"height": 3636, "view": 0} -2023-12-15T15:12:51.554Z INFO approving block {"height": 3636, "hash": "2e6996c9be91dce108d174b33d1b308d59146ae88b8eed0bede09b22257bfa69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "398af63aac2d12edff6698536db16141c780f5b20256f94cf25ae048b717e37b"} -2023-12-15T15:12:51.555Z INFO initializing dbft {"height": 3637, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:51.555Z debug frostfs-node/morph.go:229 new block {"index": 3636} -2023-12-15T15:12:52.102Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3636, "blockHeight": 3636, "took": "3.846999ms"} -2023-12-15T15:12:52.555Z INFO sending PrepareRequest {"height": 3637, "view": 0} -2023-12-15T15:12:52.556Z INFO sending Commit {"height": 3637, "view": 0} -2023-12-15T15:12:52.556Z INFO approving block {"height": 3637, "hash": "8853d25706e0ae7e0896e9aee42b8e47339653cd9183413be2d6cf46860ad499", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e6996c9be91dce108d174b33d1b308d59146ae88b8eed0bede09b22257bfa69"} -2023-12-15T15:12:52.557Z INFO initializing dbft {"height": 3638, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:52.557Z debug frostfs-node/morph.go:229 new block {"index": 3637} -2023-12-15T15:12:53.103Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3637, "blockHeight": 3637, "took": "4.050314ms"} -2023-12-15T15:12:53.556Z INFO sending PrepareRequest {"height": 3638, "view": 0} -2023-12-15T15:12:53.557Z INFO sending Commit {"height": 3638, "view": 0} -2023-12-15T15:12:53.557Z INFO approving block {"height": 3638, "hash": "d14ba7dae1ae2cc153cd82bcdd4608a1a1db80caaa3ef1fd799f71bcff7baf36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8853d25706e0ae7e0896e9aee42b8e47339653cd9183413be2d6cf46860ad499"} -2023-12-15T15:12:53.558Z INFO initializing dbft {"height": 3639, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:53.559Z debug frostfs-node/morph.go:229 new block {"index": 3638} -2023-12-15T15:12:54.104Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3638, "blockHeight": 3638, "took": "4.227616ms"} -2023-12-15T15:12:54.558Z INFO sending PrepareRequest {"height": 3639, "view": 0} -2023-12-15T15:12:54.559Z INFO sending Commit {"height": 3639, "view": 0} -2023-12-15T15:12:54.559Z INFO approving block {"height": 3639, "hash": "10158bcc1b3fdd3b81666fd470a7baa7ccc04bc4f4add10e741f3e93dffae1c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d14ba7dae1ae2cc153cd82bcdd4608a1a1db80caaa3ef1fd799f71bcff7baf36"} -2023-12-15T15:12:54.560Z INFO initializing dbft {"height": 3640, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:54.561Z debug frostfs-node/morph.go:229 new block {"index": 3639} -2023-12-15T15:12:55.105Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3639, "blockHeight": 3639, "took": "4.168051ms"} -2023-12-15T15:12:55.560Z INFO sending PrepareRequest {"height": 3640, "view": 0} -2023-12-15T15:12:55.560Z INFO sending Commit {"height": 3640, "view": 0} -2023-12-15T15:12:55.560Z INFO approving block {"height": 3640, "hash": "7e7c8b7ce0f3961850a642f5288bc9eb3767479eff5cd2f9ff8a36f24860d69f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10158bcc1b3fdd3b81666fd470a7baa7ccc04bc4f4add10e741f3e93dffae1c5"} -2023-12-15T15:12:55.561Z INFO initializing dbft {"height": 3641, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:55.562Z debug frostfs-node/morph.go:229 new block {"index": 3640} -2023-12-15T15:12:56.104Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3640, "blockHeight": 3640, "took": "3.569247ms"} -2023-12-15T15:12:56.561Z INFO sending PrepareRequest {"height": 3641, "view": 0} -2023-12-15T15:12:56.561Z INFO sending Commit {"height": 3641, "view": 0} -2023-12-15T15:12:56.561Z INFO approving block {"height": 3641, "hash": "53bdd6f182d1d31c2ecbc9f773007c99c1ea98df4e8c6cdf31bac8d69b324a6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e7c8b7ce0f3961850a642f5288bc9eb3767479eff5cd2f9ff8a36f24860d69f"} -2023-12-15T15:12:56.562Z INFO initializing dbft {"height": 3642, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:56.562Z debug frostfs-node/morph.go:229 new block {"index": 3641} -2023-12-15T15:12:57.106Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3641, "blockHeight": 3641, "took": "4.639961ms"} -2023-12-15T15:12:57.563Z INFO sending PrepareRequest {"height": 3642, "view": 0} -2023-12-15T15:12:57.563Z INFO sending Commit {"height": 3642, "view": 0} -2023-12-15T15:12:57.563Z INFO approving block {"height": 3642, "hash": "3a46277d58e714ed7324f241347dd4c5c41875a334abce80f268e3b3c3fe6c75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53bdd6f182d1d31c2ecbc9f773007c99c1ea98df4e8c6cdf31bac8d69b324a6e"} -2023-12-15T15:12:57.564Z INFO initializing dbft {"height": 3643, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:57.565Z debug frostfs-node/morph.go:229 new block {"index": 3642} -2023-12-15T15:12:58.107Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3642, "blockHeight": 3642, "took": "5.638482ms"} -2023-12-15T15:12:58.565Z INFO sending PrepareRequest {"height": 3643, "view": 0} -2023-12-15T15:12:58.565Z INFO sending Commit {"height": 3643, "view": 0} -2023-12-15T15:12:58.566Z INFO approving block {"height": 3643, "hash": "785b27c965f79f89f533690c7aa794f8149617d91f377653a16ea9bec2e3b6c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a46277d58e714ed7324f241347dd4c5c41875a334abce80f268e3b3c3fe6c75"} -2023-12-15T15:12:58.567Z INFO initializing dbft {"height": 3644, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:58.568Z debug frostfs-node/morph.go:229 new block {"index": 3643} -2023-12-15T15:12:59.106Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3643, "blockHeight": 3643, "took": "3.726077ms"} -2023-12-15T15:12:59.567Z INFO sending PrepareRequest {"height": 3644, "view": 0} -2023-12-15T15:12:59.567Z INFO sending Commit {"height": 3644, "view": 0} -2023-12-15T15:12:59.567Z INFO approving block {"height": 3644, "hash": "157ecd2875223a9935de97733772dcb28fc1ec31c4370baae9b1780821dfbfff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "785b27c965f79f89f533690c7aa794f8149617d91f377653a16ea9bec2e3b6c3"} -2023-12-15T15:12:59.569Z INFO initializing dbft {"height": 3645, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:12:59.569Z debug frostfs-node/morph.go:229 new block {"index": 3644} -2023-12-15T15:13:00.108Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3644, "blockHeight": 3644, "took": "4.722609ms"} -2023-12-15T15:13:00.568Z INFO sending PrepareRequest {"height": 3645, "view": 0} -2023-12-15T15:13:00.568Z INFO sending Commit {"height": 3645, "view": 0} -2023-12-15T15:13:00.569Z INFO approving block {"height": 3645, "hash": "de7cc0de7d412162ffcbca719dc61e864e8350ba9c097bd19fe731bf1aecc5fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "157ecd2875223a9935de97733772dcb28fc1ec31c4370baae9b1780821dfbfff"} -2023-12-15T15:13:00.570Z INFO initializing dbft {"height": 3646, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:00.570Z debug frostfs-node/morph.go:229 new block {"index": 3645} -2023-12-15T15:13:01.110Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3645, "blockHeight": 3645, "took": "6.240215ms"} -2023-12-15T15:13:01.569Z INFO sending PrepareRequest {"height": 3646, "view": 0} -2023-12-15T15:13:01.570Z INFO sending Commit {"height": 3646, "view": 0} -2023-12-15T15:13:01.570Z INFO approving block {"height": 3646, "hash": "87f59f7d2290dc1a01d7a8405b55a7131c203e3f91a254493ad2b3ad7ccc82da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de7cc0de7d412162ffcbca719dc61e864e8350ba9c097bd19fe731bf1aecc5fd"} -2023-12-15T15:13:01.572Z INFO initializing dbft {"height": 3647, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:01.572Z debug frostfs-node/morph.go:229 new block {"index": 3646} -2023-12-15T15:13:02.107Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3646, "blockHeight": 3646, "took": "3.508152ms"} -2023-12-15T15:13:02.570Z INFO sending PrepareRequest {"height": 3647, "view": 0} -2023-12-15T15:13:02.571Z INFO sending Commit {"height": 3647, "view": 0} -2023-12-15T15:13:02.571Z INFO approving block {"height": 3647, "hash": "5437209f02bb45849441824d9276f464809179ab1e991cc89ffd6dadf5ac1583", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87f59f7d2290dc1a01d7a8405b55a7131c203e3f91a254493ad2b3ad7ccc82da"} -2023-12-15T15:13:02.572Z INFO initializing dbft {"height": 3648, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:02.573Z debug frostfs-node/morph.go:229 new block {"index": 3647} -2023-12-15T15:13:03.108Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3647, "blockHeight": 3647, "took": "3.005498ms"} -2023-12-15T15:13:03.572Z INFO sending PrepareRequest {"height": 3648, "view": 0} -2023-12-15T15:13:03.572Z INFO sending Commit {"height": 3648, "view": 0} -2023-12-15T15:13:03.572Z INFO approving block {"height": 3648, "hash": "7474e34b96492ca06941f80fe4265485d81ef58f9dbb13c36889e3d7bc271ce5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5437209f02bb45849441824d9276f464809179ab1e991cc89ffd6dadf5ac1583"} -2023-12-15T15:13:03.573Z INFO initializing dbft {"height": 3649, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:03.574Z debug frostfs-node/morph.go:229 new block {"index": 3648} -2023-12-15T15:13:04.109Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3648, "blockHeight": 3648, "took": "3.611225ms"} -2023-12-15T15:13:04.573Z INFO sending PrepareRequest {"height": 3649, "view": 0} -2023-12-15T15:13:04.574Z INFO sending Commit {"height": 3649, "view": 0} -2023-12-15T15:13:04.574Z INFO approving block {"height": 3649, "hash": "006c385cace31806085d36d97bb965b3789091a678327c1b300de3cdecd8e6c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7474e34b96492ca06941f80fe4265485d81ef58f9dbb13c36889e3d7bc271ce5"} -2023-12-15T15:13:04.575Z INFO initializing dbft {"height": 3650, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:04.576Z debug frostfs-node/morph.go:229 new block {"index": 3649} -2023-12-15T15:13:05.111Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3649, "blockHeight": 3649, "took": "5.504567ms"} -2023-12-15T15:13:05.575Z INFO sending PrepareRequest {"height": 3650, "view": 0} -2023-12-15T15:13:05.575Z INFO sending Commit {"height": 3650, "view": 0} -2023-12-15T15:13:05.575Z INFO approving block {"height": 3650, "hash": "3fb4d8044245783c7ccfe4010e461c9f8cf8b945a442c1805a09248ec0dbde53", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "006c385cace31806085d36d97bb965b3789091a678327c1b300de3cdecd8e6c8"} -2023-12-15T15:13:05.577Z INFO initializing dbft {"height": 3651, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:05.577Z debug frostfs-node/morph.go:229 new block {"index": 3650} -2023-12-15T15:13:06.110Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3650, "blockHeight": 3650, "took": "4.28641ms"} -2023-12-15T15:13:06.576Z INFO sending PrepareRequest {"height": 3651, "view": 0} -2023-12-15T15:13:06.576Z INFO sending Commit {"height": 3651, "view": 0} -2023-12-15T15:13:06.577Z INFO approving block {"height": 3651, "hash": "6554dc19a0d74e89f28035f39718462d6905f7e9444acda9d795724b0132433b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3fb4d8044245783c7ccfe4010e461c9f8cf8b945a442c1805a09248ec0dbde53"} -2023-12-15T15:13:06.578Z INFO initializing dbft {"height": 3652, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:06.578Z debug frostfs-node/morph.go:229 new block {"index": 3651} -2023-12-15T15:13:07.112Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3651, "blockHeight": 3651, "took": "5.075104ms"} -2023-12-15T15:13:07.577Z INFO sending PrepareRequest {"height": 3652, "view": 0} -2023-12-15T15:13:07.578Z INFO sending Commit {"height": 3652, "view": 0} -2023-12-15T15:13:07.578Z INFO approving block {"height": 3652, "hash": "87616e16711128f4a351dfd7a2ee8627389249c29b7b564a50502b905988c65e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6554dc19a0d74e89f28035f39718462d6905f7e9444acda9d795724b0132433b"} -2023-12-15T15:13:07.579Z INFO initializing dbft {"height": 3653, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:07.580Z debug frostfs-node/morph.go:229 new block {"index": 3652} -2023-12-15T15:13:08.110Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3652, "blockHeight": 3652, "took": "3.554163ms"} -2023-12-15T15:13:08.579Z INFO sending PrepareRequest {"height": 3653, "view": 0} -2023-12-15T15:13:08.579Z INFO sending Commit {"height": 3653, "view": 0} -2023-12-15T15:13:08.579Z INFO approving block {"height": 3653, "hash": "41910dff6c91361997ed11ad1f349f8522dd8cdfe29246d3eee0872a30adc506", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87616e16711128f4a351dfd7a2ee8627389249c29b7b564a50502b905988c65e"} -2023-12-15T15:13:08.580Z INFO initializing dbft {"height": 3654, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:08.580Z debug frostfs-node/morph.go:229 new block {"index": 3653} -2023-12-15T15:13:09.114Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3653, "blockHeight": 3653, "took": "6.410371ms"} -2023-12-15T15:13:09.581Z INFO sending PrepareRequest {"height": 3654, "view": 0} -2023-12-15T15:13:09.581Z INFO sending Commit {"height": 3654, "view": 0} -2023-12-15T15:13:09.581Z INFO approving block {"height": 3654, "hash": "0c3bd61923d79e8a52cad431893dd4ace5e4546c4f36b43625526258f0b5297c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41910dff6c91361997ed11ad1f349f8522dd8cdfe29246d3eee0872a30adc506"} -2023-12-15T15:13:09.582Z INFO initializing dbft {"height": 3655, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:09.582Z debug frostfs-node/morph.go:229 new block {"index": 3654} -2023-12-15T15:13:10.113Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3654, "blockHeight": 3654, "took": "5.294635ms"} -2023-12-15T15:13:10.582Z INFO sending PrepareRequest {"height": 3655, "view": 0} -2023-12-15T15:13:10.582Z INFO sending Commit {"height": 3655, "view": 0} -2023-12-15T15:13:10.582Z INFO approving block {"height": 3655, "hash": "50fa6e6d884e6981947d40eb3caa49fb46e0db0fb4dafac213cecb69845d7a43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c3bd61923d79e8a52cad431893dd4ace5e4546c4f36b43625526258f0b5297c"} -2023-12-15T15:13:10.583Z INFO initializing dbft {"height": 3656, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:10.584Z debug frostfs-node/morph.go:229 new block {"index": 3655} -2023-12-15T15:13:11.113Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3655, "blockHeight": 3655, "took": "4.735118ms"} -2023-12-15T15:13:11.583Z INFO sending PrepareRequest {"height": 3656, "view": 0} -2023-12-15T15:13:11.583Z INFO sending Commit {"height": 3656, "view": 0} -2023-12-15T15:13:11.583Z INFO approving block {"height": 3656, "hash": "6663d0db5c1110b765de8e4c9a832610e15ceec0735472ca743b865e2a5c8d5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50fa6e6d884e6981947d40eb3caa49fb46e0db0fb4dafac213cecb69845d7a43"} -2023-12-15T15:13:11.584Z INFO initializing dbft {"height": 3657, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:11.584Z debug frostfs-node/morph.go:229 new block {"index": 3656} -2023-12-15T15:13:12.114Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3656, "blockHeight": 3656, "took": "4.921793ms"} -2023-12-15T15:13:12.584Z INFO sending PrepareRequest {"height": 3657, "view": 0} -2023-12-15T15:13:12.585Z INFO sending Commit {"height": 3657, "view": 0} -2023-12-15T15:13:12.585Z INFO approving block {"height": 3657, "hash": "56bdffe9d674df28f249b645116b514348ed136aeb0741996e6a609a6b37a490", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6663d0db5c1110b765de8e4c9a832610e15ceec0735472ca743b865e2a5c8d5b"} -2023-12-15T15:13:12.586Z INFO initializing dbft {"height": 3658, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:12.586Z debug frostfs-node/morph.go:229 new block {"index": 3657} -2023-12-15T15:13:13.116Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3657, "blockHeight": 3657, "took": "6.396394ms"} -2023-12-15T15:13:13.586Z INFO sending PrepareRequest {"height": 3658, "view": 0} -2023-12-15T15:13:13.586Z INFO sending Commit {"height": 3658, "view": 0} -2023-12-15T15:13:13.587Z INFO approving block {"height": 3658, "hash": "a39789e81b956e633b4cfe5672075648703c1c9b6c2e3749d73a8b4553b4594e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56bdffe9d674df28f249b645116b514348ed136aeb0741996e6a609a6b37a490"} -2023-12-15T15:13:13.588Z INFO initializing dbft {"height": 3659, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:13.588Z debug frostfs-node/morph.go:229 new block {"index": 3658} -2023-12-15T15:13:14.117Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3658, "blockHeight": 3658, "took": "6.93349ms"} -2023-12-15T15:13:14.588Z INFO sending PrepareRequest {"height": 3659, "view": 0} -2023-12-15T15:13:14.589Z INFO sending Commit {"height": 3659, "view": 0} -2023-12-15T15:13:14.589Z INFO approving block {"height": 3659, "hash": "1f4fdf89012f0c4f6fe5fb90538d0e887a76e1770a746f5d350f6047b4cfba6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a39789e81b956e633b4cfe5672075648703c1c9b6c2e3749d73a8b4553b4594e"} -2023-12-15T15:13:14.592Z INFO initializing dbft {"height": 3660, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:14.593Z debug frostfs-node/morph.go:229 new block {"index": 3659} -2023-12-15T15:13:15.118Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3659, "blockHeight": 3659, "took": "7.187225ms"} -2023-12-15T15:13:15.590Z INFO sending PrepareRequest {"height": 3660, "view": 0} -2023-12-15T15:13:15.591Z INFO sending Commit {"height": 3660, "view": 0} -2023-12-15T15:13:15.592Z INFO approving block {"height": 3660, "hash": "fbea815c2a973abe5c0818745705ea48cc2b03a77a2d2b1a5ad72fa79b526e32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f4fdf89012f0c4f6fe5fb90538d0e887a76e1770a746f5d350f6047b4cfba6a"} -2023-12-15T15:13:15.593Z INFO initializing dbft {"height": 3661, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:15.594Z debug frostfs-node/morph.go:229 new block {"index": 3660} -2023-12-15T15:13:16.592Z INFO sending PrepareRequest {"height": 3661, "view": 0} -2023-12-15T15:13:16.593Z INFO sending Commit {"height": 3661, "view": 0} -2023-12-15T15:13:16.593Z INFO approving block {"height": 3661, "hash": "c1170253379159f1780334b475635f1f30d8955934a2129729e13c1f366162fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbea815c2a973abe5c0818745705ea48cc2b03a77a2d2b1a5ad72fa79b526e32"} -2023-12-15T15:13:16.594Z INFO initializing dbft {"height": 3662, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:16.595Z debug frostfs-node/morph.go:229 new block {"index": 3661} -2023-12-15T15:13:17.405Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3660, "blockHeight": 3660, "took": "1.29274597s"} -2023-12-15T15:13:17.595Z INFO sending PrepareRequest {"height": 3662, "view": 0} -2023-12-15T15:13:17.595Z INFO sending Commit {"height": 3662, "view": 0} -2023-12-15T15:13:17.597Z INFO approving block {"height": 3662, "hash": "d9389d68e953d072f1be41852fea567535b77d2f535578e40f0d9946ab631732", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1170253379159f1780334b475635f1f30d8955934a2129729e13c1f366162fa"} -2023-12-15T15:13:17.599Z INFO initializing dbft {"height": 3663, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:17.602Z debug frostfs-node/morph.go:229 new block {"index": 3662} -2023-12-15T15:13:17.913Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3661, "blockHeight": 3661, "took": "507.611146ms"} -2023-12-15T15:13:19.556Z INFO sending PrepareRequest {"height": 3663, "view": 0} -2023-12-15T15:13:19.596Z INFO sending Commit {"height": 3663, "view": 0} -2023-12-15T15:13:19.596Z INFO approving block {"height": 3663, "hash": "74f6af2af6b3bf7d79685a29c42d84d838a37dfda8331f4669a8bd1121ac8656", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9389d68e953d072f1be41852fea567535b77d2f535578e40f0d9946ab631732"} -2023-12-15T15:13:19.748Z INFO initializing dbft {"height": 3664, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:20.097Z debug frostfs-node/morph.go:229 new block {"index": 3663} -2023-12-15T15:13:20.599Z INFO sending PrepareRequest {"height": 3664, "view": 0} -2023-12-15T15:13:20.600Z INFO sending Commit {"height": 3664, "view": 0} -2023-12-15T15:13:20.603Z INFO approving block {"height": 3664, "hash": "6f989dcd77ce1a3d7ff8045504f1832e67281d5a5df12715ce0b08846ef04b09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74f6af2af6b3bf7d79685a29c42d84d838a37dfda8331f4669a8bd1121ac8656"} -2023-12-15T15:13:20.608Z INFO initializing dbft {"height": 3665, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:20.609Z debug frostfs-node/morph.go:229 new block {"index": 3664} -2023-12-15T15:13:21.830Z INFO sending PrepareRequest {"height": 3665, "view": 0} -2023-12-15T15:13:21.854Z INFO sending Commit {"height": 3665, "view": 0} -2023-12-15T15:13:21.864Z INFO approving block {"height": 3665, "hash": "32bdaf416b4b2221f84d85012d8b4e213530a334830c88e80559304a75db441d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f989dcd77ce1a3d7ff8045504f1832e67281d5a5df12715ce0b08846ef04b09"} -2023-12-15T15:13:21.896Z INFO initializing dbft {"height": 3666, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T15:13:22.067Z debug frostfs-node/morph.go:229 new block {"index": 3665} -2023-12-15T23:06:38.899Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3662, "blockHeight": 3662, "took": "3.977722436s"} -2023-12-15T23:06:41.177Z INFO sending PrepareRequest {"height": 3666, "view": 0} -2023-12-15T23:06:41.178Z INFO sending Commit {"height": 3666, "view": 0} -2023-12-15T23:06:41.179Z INFO approving block {"height": 3666, "hash": "f71af7420bad96ee27b7c6ff589df172f196aadbe6c1738a9690d939e4fb2437", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32bdaf416b4b2221f84d85012d8b4e213530a334830c88e80559304a75db441d"} -2023-12-15T23:06:41.161Z INFO persisted to disk {"blocks": 3, "keys": 71, "headerHeight": 3665, "blockHeight": 3665, "took": "2.185751393s"} -2023-12-15T23:06:41.373Z INFO initializing dbft {"height": 3667, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:41.374Z debug frostfs-node/morph.go:229 new block {"index": 3666} -2023-12-15T23:06:41.373Z INFO persisted to disk {"blocks": 0, "keys": 2, "headerHeight": 3666, "blockHeight": 3665, "took": "181.488143ms"} -2023-12-15T23:06:42.220Z INFO sending PrepareRequest {"height": 3667, "view": 0} -2023-12-15T23:06:42.221Z INFO sending Commit {"height": 3667, "view": 0} -2023-12-15T23:06:42.221Z INFO approving block {"height": 3667, "hash": "0cfe9b66336ec0a45478ac41b99f4cc64f82e6ad92f9eba6ad7ee04ace1e6563", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f71af7420bad96ee27b7c6ff589df172f196aadbe6c1738a9690d939e4fb2437"} -2023-12-15T23:06:42.571Z INFO initializing dbft {"height": 3668, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:42.674Z debug frostfs-node/morph.go:229 new block {"index": 3667} -2023-12-15T23:06:43.293Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 3667, "blockHeight": 3666, "took": "1.050668033s"} -2023-12-15T23:06:43.292Z INFO sending PrepareRequest {"height": 3668, "view": 0} -2023-12-15T23:06:43.313Z INFO sending Commit {"height": 3668, "view": 0} -2023-12-15T23:06:43.343Z INFO approving block {"height": 3668, "hash": "30bd7a11dba47fbf05da5f834851ca08fcd7043233357f2f9600f9bd28701778", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cfe9b66336ec0a45478ac41b99f4cc64f82e6ad92f9eba6ad7ee04ace1e6563"} -2023-12-15T23:06:43.358Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:06:43.412Z INFO initializing dbft {"height": 3669, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:43.492Z debug frostfs-node/morph.go:229 new block {"index": 3668} -2023-12-15T23:06:43.671Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:06:43.672Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:06:44.306Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 3667, "blockHeight": 3667, "took": "1.013169393s"} -2023-12-15T23:06:44.345Z INFO sending PrepareRequest {"height": 3669, "view": 0} -2023-12-15T23:06:44.345Z INFO sending Commit {"height": 3669, "view": 0} -2023-12-15T23:06:44.346Z INFO approving block {"height": 3669, "hash": "6ff0826130806388cc0ae11014379a5007003fdac0d852b2045e745e6b82b79b", "tx_count": 2, "merkle": "a132d4c663e3d2a05656b85a896c31018168f8ab0ab4ae1e841ae40baa16eafc", "prev": "30bd7a11dba47fbf05da5f834851ca08fcd7043233357f2f9600f9bd28701778"} -2023-12-15T23:06:44.414Z INFO runtime log {"tx": "ec713e88fe78d01c8d6c26c696486e192830906716c191a412483d4d7c7a6dd4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:06:44.415Z INFO runtime log {"tx": "ec713e88fe78d01c8d6c26c696486e192830906716c191a412483d4d7c7a6dd4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:06:44.455Z INFO initializing dbft {"height": 3670, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:44.462Z debug frostfs-node/morph.go:229 new block {"index": 3669} -2023-12-15T23:06:45.348Z INFO sending PrepareRequest {"height": 3670, "view": 0} -2023-12-15T23:06:45.348Z INFO sending Commit {"height": 3670, "view": 0} -2023-12-15T23:06:45.418Z INFO approving block {"height": 3670, "hash": "8e1538aedcd0c36782919cfdbb3d3650d8e1d3e733d56b0ea2a18ffc4db68f15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ff0826130806388cc0ae11014379a5007003fdac0d852b2045e745e6b82b79b"} -2023-12-15T23:06:45.424Z INFO initializing dbft {"height": 3671, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:45.431Z debug frostfs-node/morph.go:229 new block {"index": 3670} -2023-12-15T23:06:46.058Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3668, "blockHeight": 3668, "took": "1.751568051s"} -2023-12-15T23:06:46.419Z INFO sending PrepareRequest {"height": 3671, "view": 0} -2023-12-15T23:06:46.420Z INFO sending Commit {"height": 3671, "view": 0} -2023-12-15T23:06:46.421Z INFO approving block {"height": 3671, "hash": "91d032db55876f37b0dbc79be06c505ab6e572a3f2420cc16d080a9eba3151e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e1538aedcd0c36782919cfdbb3d3650d8e1d3e733d56b0ea2a18ffc4db68f15"} -2023-12-15T23:06:46.423Z INFO initializing dbft {"height": 3672, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:46.425Z debug frostfs-node/morph.go:229 new block {"index": 3671} -2023-12-15T23:06:47.424Z INFO sending PrepareRequest {"height": 3672, "view": 0} -2023-12-15T23:06:47.424Z INFO sending Commit {"height": 3672, "view": 0} -2023-12-15T23:06:47.425Z INFO approving block {"height": 3672, "hash": "24af0f7206b9c8638b48b553c8b36fabb9d43ab974d58161bd611218408d60f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91d032db55876f37b0dbc79be06c505ab6e572a3f2420cc16d080a9eba3151e4"} -2023-12-15T23:06:47.427Z INFO initializing dbft {"height": 3673, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:47.427Z debug frostfs-node/morph.go:229 new block {"index": 3672} -2023-12-15T23:06:47.441Z INFO persisted to disk {"blocks": 2, "keys": 70, "headerHeight": 3670, "blockHeight": 3670, "took": "1.382768495s"} -2023-12-15T23:06:48.379Z INFO persisted to disk {"blocks": 2, "keys": 50, "headerHeight": 3672, "blockHeight": 3672, "took": "937.623007ms"} -2023-12-15T23:06:48.426Z INFO sending PrepareRequest {"height": 3673, "view": 0} -2023-12-15T23:06:48.426Z INFO sending Commit {"height": 3673, "view": 0} -2023-12-15T23:06:48.427Z INFO approving block {"height": 3673, "hash": "3cd6a4cee914223e40f92cf48fcd31a8db8d03c9ddbd78d74d9382b123fa3b0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24af0f7206b9c8638b48b553c8b36fabb9d43ab974d58161bd611218408d60f5"} -2023-12-15T23:06:48.429Z INFO initializing dbft {"height": 3674, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:48.430Z debug frostfs-node/morph.go:229 new block {"index": 3673} -2023-12-15T23:06:48.871Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3673, "blockHeight": 3673, "took": "429.768089ms"} -2023-12-15T23:06:49.428Z INFO sending PrepareRequest {"height": 3674, "view": 0} -2023-12-15T23:06:49.428Z INFO sending Commit {"height": 3674, "view": 0} -2023-12-15T23:06:49.429Z INFO approving block {"height": 3674, "hash": "18e5055d013f1a9d968cb56690eb327fc9260a19b470adb3a69a3ec60ecf553d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cd6a4cee914223e40f92cf48fcd31a8db8d03c9ddbd78d74d9382b123fa3b0d"} -2023-12-15T23:06:49.431Z INFO initializing dbft {"height": 3675, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:49.436Z debug frostfs-node/morph.go:229 new block {"index": 3674} -2023-12-15T23:06:49.575Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 16 epoch for daughters"} -2023-12-15T23:06:49.579Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3674, "blockHeight": 3674, "took": "111.796725ms"} -2023-12-15T23:06:50.466Z INFO sending PrepareRequest {"height": 3675, "view": 0} -2023-12-15T23:06:50.466Z INFO sending Commit {"height": 3675, "view": 0} -2023-12-15T23:06:50.466Z INFO approving block {"height": 3675, "hash": "796778b0a10a34a2fb86b2ad7c6d8ba95316d4fa86b059852812ec1a09369a85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18e5055d013f1a9d968cb56690eb327fc9260a19b470adb3a69a3ec60ecf553d"} -2023-12-15T23:06:50.468Z INFO initializing dbft {"height": 3676, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:50.492Z debug frostfs-node/morph.go:229 new block {"index": 3675} -2023-12-15T23:06:50.534Z INFO persisted to disk {"blocks": 0, "keys": 2, "headerHeight": 3675, "blockHeight": 3674, "took": "66.226137ms"} -2023-12-15T23:06:50.915Z INFO runtime log {"tx": "78d91de4a3a5118bddef0316d55fe8a3a721e032f9e0c05df03acf9de7e236b2", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:06:51.467Z INFO sending PrepareRequest {"height": 3676, "view": 0} -2023-12-15T23:06:51.467Z INFO sending Commit {"height": 3676, "view": 0} -2023-12-15T23:06:51.468Z INFO approving block {"height": 3676, "hash": "328aea482e664e4fc1d256f0801fe5a2b69cde03712f8efbb1d283a1bafd3b91", "tx_count": 1, "merkle": "940f7d630d7dfd9eb49ea289b66204971b93a4cbff2eaabebeeb5fb87880627f", "prev": "796778b0a10a34a2fb86b2ad7c6d8ba95316d4fa86b059852812ec1a09369a85"} -2023-12-15T23:06:51.469Z INFO runtime log {"tx": "7f628078b85febbebeaa2effcba4931b970462b689a29eb49efd7d0d637d0f94", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:06:51.471Z INFO initializing dbft {"height": 3677, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:51.477Z debug frostfs-node/morph.go:229 new block {"index": 3676} -2023-12-15T23:06:51.488Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 16} -2023-12-15T23:06:51.488Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 16} -2023-12-15T23:06:51.491Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 3675, "blockHeight": 3675, "took": "22.861828ms"} -2023-12-15T23:06:52.469Z INFO sending PrepareRequest {"height": 3677, "view": 0} -2023-12-15T23:06:52.469Z INFO sending Commit {"height": 3677, "view": 0} -2023-12-15T23:06:52.470Z INFO approving block {"height": 3677, "hash": "3ddde58f3c2dd847a48cfd9e60584e1db6bcaac401b178af595c691fec72bce3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "328aea482e664e4fc1d256f0801fe5a2b69cde03712f8efbb1d283a1bafd3b91"} -2023-12-15T23:06:52.471Z INFO initializing dbft {"height": 3678, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:52.473Z debug frostfs-node/morph.go:229 new block {"index": 3677} -2023-12-15T23:06:52.487Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 3676, "blockHeight": 3676, "took": "18.681265ms"} -2023-12-15T23:06:53.471Z INFO sending PrepareRequest {"height": 3678, "view": 0} -2023-12-15T23:06:53.471Z INFO sending Commit {"height": 3678, "view": 0} -2023-12-15T23:06:53.472Z INFO approving block {"height": 3678, "hash": "8a9d4914eb08480bed2bff5cc13265e63c98fb25982d1596c5b725ef5a618b12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ddde58f3c2dd847a48cfd9e60584e1db6bcaac401b178af595c691fec72bce3"} -2023-12-15T23:06:53.474Z INFO initializing dbft {"height": 3679, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:53.476Z debug frostfs-node/morph.go:229 new block {"index": 3678} -2023-12-15T23:06:53.484Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3677, "blockHeight": 3677, "took": "14.987552ms"} -2023-12-15T23:06:54.473Z INFO sending PrepareRequest {"height": 3679, "view": 0} -2023-12-15T23:06:54.473Z INFO sending Commit {"height": 3679, "view": 0} -2023-12-15T23:06:54.474Z INFO approving block {"height": 3679, "hash": "8b52e1ca92c696ab237aaf3067f05f9369f0469cf40fea475c4cb4f75a0f3ed7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a9d4914eb08480bed2bff5cc13265e63c98fb25982d1596c5b725ef5a618b12"} -2023-12-15T23:06:54.476Z INFO initializing dbft {"height": 3680, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:54.477Z debug frostfs-node/morph.go:229 new block {"index": 3679} -2023-12-15T23:06:54.482Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3678, "blockHeight": 3678, "took": "12.222032ms"} -2023-12-15T23:06:55.475Z INFO sending PrepareRequest {"height": 3680, "view": 0} -2023-12-15T23:06:55.475Z INFO sending Commit {"height": 3680, "view": 0} -2023-12-15T23:06:55.476Z INFO approving block {"height": 3680, "hash": "31b2eb091f9262c8a54a285c5fd2ed26ff0c67a2d367ef0988e7bb3dd2dd9965", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b52e1ca92c696ab237aaf3067f05f9369f0469cf40fea475c4cb4f75a0f3ed7"} -2023-12-15T23:06:55.477Z INFO initializing dbft {"height": 3681, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:55.478Z debug frostfs-node/morph.go:229 new block {"index": 3680} -2023-12-15T23:06:55.485Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3679, "blockHeight": 3679, "took": "14.640545ms"} -2023-12-15T23:06:56.477Z INFO sending PrepareRequest {"height": 3681, "view": 0} -2023-12-15T23:06:56.477Z INFO sending Commit {"height": 3681, "view": 0} -2023-12-15T23:06:56.478Z INFO approving block {"height": 3681, "hash": "638cf8b4aec16d9d41543dfe96be76f4f3b961cbb5534c78f954830fd838cac3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31b2eb091f9262c8a54a285c5fd2ed26ff0c67a2d367ef0988e7bb3dd2dd9965"} -2023-12-15T23:06:56.480Z INFO initializing dbft {"height": 3682, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:56.481Z debug frostfs-node/morph.go:229 new block {"index": 3681} -2023-12-15T23:06:56.486Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3680, "blockHeight": 3680, "took": "14.659939ms"} -2023-12-15T23:06:57.480Z INFO sending PrepareRequest {"height": 3682, "view": 0} -2023-12-15T23:06:57.481Z INFO sending Commit {"height": 3682, "view": 0} -2023-12-15T23:06:57.482Z INFO approving block {"height": 3682, "hash": "27aac9982431adb01d1ac66e1ca47411c074a7951efbdd71015e4945c80370b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "638cf8b4aec16d9d41543dfe96be76f4f3b961cbb5534c78f954830fd838cac3"} -2023-12-15T23:06:57.484Z INFO initializing dbft {"height": 3683, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:57.487Z debug frostfs-node/morph.go:229 new block {"index": 3682} -2023-12-15T23:06:57.493Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3681, "blockHeight": 3681, "took": "20.452876ms"} -2023-12-15T23:06:58.483Z INFO sending PrepareRequest {"height": 3683, "view": 0} -2023-12-15T23:06:58.484Z INFO sending Commit {"height": 3683, "view": 0} -2023-12-15T23:06:58.484Z INFO approving block {"height": 3683, "hash": "670ba6c6ae54d77f73af9d4825bdf78945fe18416021b150fbefac139b82ef8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27aac9982431adb01d1ac66e1ca47411c074a7951efbdd71015e4945c80370b3"} -2023-12-15T23:06:58.486Z INFO initializing dbft {"height": 3684, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:58.490Z debug frostfs-node/morph.go:229 new block {"index": 3683} -2023-12-15T23:06:58.497Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3682, "blockHeight": 3682, "took": "23.891378ms"} -2023-12-15T23:06:59.485Z INFO sending PrepareRequest {"height": 3684, "view": 0} -2023-12-15T23:06:59.486Z INFO sending Commit {"height": 3684, "view": 0} -2023-12-15T23:06:59.487Z INFO approving block {"height": 3684, "hash": "c0fa218ecb92d3631aa9c49a3421a8ad1c7555d92aa8ef36a76a3fe6d675b8d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "670ba6c6ae54d77f73af9d4825bdf78945fe18416021b150fbefac139b82ef8f"} -2023-12-15T23:06:59.488Z INFO initializing dbft {"height": 3685, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:06:59.490Z debug frostfs-node/morph.go:229 new block {"index": 3684} -2023-12-15T23:06:59.492Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3683, "blockHeight": 3683, "took": "17.588402ms"} -2023-12-15T23:07:00.488Z INFO sending PrepareRequest {"height": 3685, "view": 0} -2023-12-15T23:07:00.489Z INFO sending Commit {"height": 3685, "view": 0} -2023-12-15T23:07:00.489Z INFO approving block {"height": 3685, "hash": "35c70db445833c96040afbd7d0b81ccbd77c3202edcc34a83a20c87e69fac4a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0fa218ecb92d3631aa9c49a3421a8ad1c7555d92aa8ef36a76a3fe6d675b8d3"} -2023-12-15T23:07:00.491Z INFO initializing dbft {"height": 3686, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:00.491Z debug frostfs-node/morph.go:229 new block {"index": 3685} -2023-12-15T23:07:00.497Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3684, "blockHeight": 3684, "took": "21.433978ms"} -2023-12-15T23:07:01.490Z INFO sending PrepareRequest {"height": 3686, "view": 0} -2023-12-15T23:07:01.491Z INFO sending Commit {"height": 3686, "view": 0} -2023-12-15T23:07:01.492Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3685, "blockHeight": 3685, "took": "14.936574ms"} -2023-12-15T23:07:01.491Z INFO approving block {"height": 3686, "hash": "95ceb81b3f9301e9c7dffb941be93017cff6b876b531dd528811c5e64aa0bdbf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35c70db445833c96040afbd7d0b81ccbd77c3202edcc34a83a20c87e69fac4a6"} -2023-12-15T23:07:01.494Z INFO initializing dbft {"height": 3687, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:01.495Z debug frostfs-node/morph.go:229 new block {"index": 3686} -2023-12-15T23:07:02.492Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3686, "blockHeight": 3686, "took": "14.979146ms"} -2023-12-15T23:07:02.493Z INFO sending PrepareRequest {"height": 3687, "view": 0} -2023-12-15T23:07:02.495Z INFO sending Commit {"height": 3687, "view": 0} -2023-12-15T23:07:02.495Z INFO approving block {"height": 3687, "hash": "81735765a90f9892892fdebbde020f7da7e3c83826e7ae2c848b39306d969f18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95ceb81b3f9301e9c7dffb941be93017cff6b876b531dd528811c5e64aa0bdbf"} -2023-12-15T23:07:02.497Z INFO initializing dbft {"height": 3688, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:02.498Z debug frostfs-node/morph.go:229 new block {"index": 3687} -2023-12-15T23:07:03.499Z INFO sending PrepareRequest {"height": 3688, "view": 0} -2023-12-15T23:07:03.499Z INFO sending Commit {"height": 3688, "view": 0} -2023-12-15T23:07:03.500Z INFO approving block {"height": 3688, "hash": "7bb2c410b82eec8a35dff1a8da3a0a9e87d1b67e74a0f6d02beb8dbf201c8701", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81735765a90f9892892fdebbde020f7da7e3c83826e7ae2c848b39306d969f18"} -2023-12-15T23:07:03.502Z INFO initializing dbft {"height": 3689, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:03.505Z debug frostfs-node/morph.go:229 new block {"index": 3688} -2023-12-15T23:07:03.505Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3687, "blockHeight": 3687, "took": "27.665647ms"} -2023-12-15T23:07:04.487Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3688, "blockHeight": 3688, "took": "9.129246ms"} -2023-12-15T23:07:04.501Z INFO sending PrepareRequest {"height": 3689, "view": 0} -2023-12-15T23:07:04.501Z INFO sending Commit {"height": 3689, "view": 0} -2023-12-15T23:07:04.502Z INFO approving block {"height": 3689, "hash": "a9dfab1b3d3c44463f6decbf6943532bb578b682a8ddc1eaec7c2ef20c0d2fce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bb2c410b82eec8a35dff1a8da3a0a9e87d1b67e74a0f6d02beb8dbf201c8701"} -2023-12-15T23:07:04.503Z INFO initializing dbft {"height": 3690, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:04.504Z debug frostfs-node/morph.go:229 new block {"index": 3689} -2023-12-15T23:07:05.487Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3689, "blockHeight": 3689, "took": "8.688013ms"} -2023-12-15T23:07:05.503Z INFO sending PrepareRequest {"height": 3690, "view": 0} -2023-12-15T23:07:05.504Z INFO sending Commit {"height": 3690, "view": 0} -2023-12-15T23:07:05.504Z INFO approving block {"height": 3690, "hash": "5403425f42f3eec838c3cc29235d1f0dc3bb35af3154b35f1dfca3683f5bb78f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9dfab1b3d3c44463f6decbf6943532bb578b682a8ddc1eaec7c2ef20c0d2fce"} -2023-12-15T23:07:05.506Z INFO initializing dbft {"height": 3691, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:05.507Z debug frostfs-node/morph.go:229 new block {"index": 3690} -2023-12-15T23:07:06.495Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3690, "blockHeight": 3690, "took": "15.690962ms"} -2023-12-15T23:07:06.505Z INFO sending PrepareRequest {"height": 3691, "view": 0} -2023-12-15T23:07:06.506Z INFO sending Commit {"height": 3691, "view": 0} -2023-12-15T23:07:06.506Z INFO approving block {"height": 3691, "hash": "f083530192d2485217deb0b2d41ed053850b35c395fe2e0c3880c237a98b9bec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5403425f42f3eec838c3cc29235d1f0dc3bb35af3154b35f1dfca3683f5bb78f"} -2023-12-15T23:07:06.507Z INFO initializing dbft {"height": 3692, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:06.508Z debug frostfs-node/morph.go:229 new block {"index": 3691} -2023-12-15T23:07:07.491Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3691, "blockHeight": 3691, "took": "11.158032ms"} -2023-12-15T23:07:07.507Z INFO sending PrepareRequest {"height": 3692, "view": 0} -2023-12-15T23:07:07.508Z INFO sending Commit {"height": 3692, "view": 0} -2023-12-15T23:07:07.508Z INFO approving block {"height": 3692, "hash": "21bf22272cce472716995ee233a3ea3819e32ce1ba89e4d64b4d707f06c1d37e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f083530192d2485217deb0b2d41ed053850b35c395fe2e0c3880c237a98b9bec"} -2023-12-15T23:07:07.509Z INFO initializing dbft {"height": 3693, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:07.511Z debug frostfs-node/morph.go:229 new block {"index": 3692} -2023-12-15T23:07:08.493Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3692, "blockHeight": 3692, "took": "12.067236ms"} -2023-12-15T23:07:08.510Z INFO sending PrepareRequest {"height": 3693, "view": 0} -2023-12-15T23:07:08.510Z INFO sending Commit {"height": 3693, "view": 0} -2023-12-15T23:07:08.511Z INFO approving block {"height": 3693, "hash": "d10a4e6ee2339befe9c125c5c290caf549dbbf239b9e007ebd46294da3010ace", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21bf22272cce472716995ee233a3ea3819e32ce1ba89e4d64b4d707f06c1d37e"} -2023-12-15T23:07:08.512Z INFO initializing dbft {"height": 3694, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:08.513Z debug frostfs-node/morph.go:229 new block {"index": 3693} -2023-12-15T23:07:09.492Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3693, "blockHeight": 3693, "took": "11.01712ms"} -2023-12-15T23:07:09.512Z INFO sending PrepareRequest {"height": 3694, "view": 0} -2023-12-15T23:07:09.512Z INFO sending Commit {"height": 3694, "view": 0} -2023-12-15T23:07:09.513Z INFO approving block {"height": 3694, "hash": "182b1935ba72235ceac183f6b0273a137b3efa48a84f511e53b497d9daaac3dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d10a4e6ee2339befe9c125c5c290caf549dbbf239b9e007ebd46294da3010ace"} -2023-12-15T23:07:09.514Z INFO initializing dbft {"height": 3695, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:09.514Z debug frostfs-node/morph.go:229 new block {"index": 3694} -2023-12-15T23:07:10.492Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3694, "blockHeight": 3694, "took": "10.102791ms"} -2023-12-15T23:07:10.514Z INFO sending PrepareRequest {"height": 3695, "view": 0} -2023-12-15T23:07:10.515Z INFO sending Commit {"height": 3695, "view": 0} -2023-12-15T23:07:10.515Z INFO approving block {"height": 3695, "hash": "f4857cc3c499518017c6fb79a930de9dd46cbdf7ebc1225c2571357942f05157", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "182b1935ba72235ceac183f6b0273a137b3efa48a84f511e53b497d9daaac3dc"} -2023-12-15T23:07:10.517Z INFO initializing dbft {"height": 3696, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:10.518Z debug frostfs-node/morph.go:229 new block {"index": 3695} -2023-12-15T23:07:11.496Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3695, "blockHeight": 3695, "took": "13.559868ms"} -2023-12-15T23:07:11.517Z INFO sending PrepareRequest {"height": 3696, "view": 0} -2023-12-15T23:07:11.517Z INFO sending Commit {"height": 3696, "view": 0} -2023-12-15T23:07:11.517Z INFO approving block {"height": 3696, "hash": "bafd37be71e75fa7a9ce3c55cef2f15b0101be794a2c06365ee5b47196eba935", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4857cc3c499518017c6fb79a930de9dd46cbdf7ebc1225c2571357942f05157"} -2023-12-15T23:07:11.519Z INFO initializing dbft {"height": 3697, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:11.520Z debug frostfs-node/morph.go:229 new block {"index": 3696} -2023-12-15T23:07:12.492Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3696, "blockHeight": 3696, "took": "8.351119ms"} -2023-12-15T23:07:12.518Z INFO sending PrepareRequest {"height": 3697, "view": 0} -2023-12-15T23:07:12.518Z INFO sending Commit {"height": 3697, "view": 0} -2023-12-15T23:07:12.518Z INFO approving block {"height": 3697, "hash": "41211313d7c8dd26a3b72df0713ba20cc87404bbca07891b043d3f6fe3636f3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bafd37be71e75fa7a9ce3c55cef2f15b0101be794a2c06365ee5b47196eba935"} -2023-12-15T23:07:12.520Z INFO initializing dbft {"height": 3698, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:12.521Z debug frostfs-node/morph.go:229 new block {"index": 3697} -2023-12-15T23:07:13.491Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3697, "blockHeight": 3697, "took": "7.401881ms"} -2023-12-15T23:07:13.520Z INFO sending PrepareRequest {"height": 3698, "view": 0} -2023-12-15T23:07:13.520Z INFO sending Commit {"height": 3698, "view": 0} -2023-12-15T23:07:13.520Z INFO approving block {"height": 3698, "hash": "0556a39d01e8577375f7b605e9d3320d1a21a63d037b1efd7fad2f1f9d69e45e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41211313d7c8dd26a3b72df0713ba20cc87404bbca07891b043d3f6fe3636f3f"} -2023-12-15T23:07:13.521Z INFO initializing dbft {"height": 3699, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:13.522Z debug frostfs-node/morph.go:229 new block {"index": 3698} -2023-12-15T23:07:14.492Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3698, "blockHeight": 3698, "took": "7.524767ms"} -2023-12-15T23:07:14.522Z INFO sending PrepareRequest {"height": 3699, "view": 0} -2023-12-15T23:07:14.522Z INFO sending Commit {"height": 3699, "view": 0} -2023-12-15T23:07:14.522Z INFO approving block {"height": 3699, "hash": "44152e5125d3d187ee850d93fa5124d6120979c1e888dd70491caf5cbbc2e6c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0556a39d01e8577375f7b605e9d3320d1a21a63d037b1efd7fad2f1f9d69e45e"} -2023-12-15T23:07:14.524Z INFO initializing dbft {"height": 3700, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:14.525Z debug frostfs-node/morph.go:229 new block {"index": 3699} -2023-12-15T23:07:15.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3699, "blockHeight": 3699, "took": "12.287945ms"} -2023-12-15T23:07:15.524Z INFO sending PrepareRequest {"height": 3700, "view": 0} -2023-12-15T23:07:15.524Z INFO sending Commit {"height": 3700, "view": 0} -2023-12-15T23:07:15.525Z INFO approving block {"height": 3700, "hash": "9738aa08a7449da650c3554ea294b54df54b6821f872789157a37a07bc504252", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44152e5125d3d187ee850d93fa5124d6120979c1e888dd70491caf5cbbc2e6c5"} -2023-12-15T23:07:15.527Z INFO initializing dbft {"height": 3701, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:15.528Z debug frostfs-node/morph.go:229 new block {"index": 3700} -2023-12-15T23:07:16.500Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3700, "blockHeight": 3700, "took": "13.448327ms"} -2023-12-15T23:07:16.526Z INFO sending PrepareRequest {"height": 3701, "view": 0} -2023-12-15T23:07:16.526Z INFO sending Commit {"height": 3701, "view": 0} -2023-12-15T23:07:16.527Z INFO approving block {"height": 3701, "hash": "43f508b42c58c366dab3cdacc154754ebfcc2e403d567cece4519e0f3b2e959d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9738aa08a7449da650c3554ea294b54df54b6821f872789157a37a07bc504252"} -2023-12-15T23:07:16.528Z INFO initializing dbft {"height": 3702, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:16.529Z debug frostfs-node/morph.go:229 new block {"index": 3701} -2023-12-15T23:07:17.524Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3701, "blockHeight": 3701, "took": "36.804646ms"} -2023-12-15T23:07:17.528Z INFO sending PrepareRequest {"height": 3702, "view": 0} -2023-12-15T23:07:17.528Z INFO sending Commit {"height": 3702, "view": 0} -2023-12-15T23:07:17.529Z INFO approving block {"height": 3702, "hash": "36f069c8f235503a1faac326604abd32b0244d21b3c3b6218ec7239a6aa1a452", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43f508b42c58c366dab3cdacc154754ebfcc2e403d567cece4519e0f3b2e959d"} -2023-12-15T23:07:17.532Z INFO initializing dbft {"height": 3703, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:17.552Z debug frostfs-node/morph.go:229 new block {"index": 3702} -2023-12-15T23:07:18.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3702, "blockHeight": 3702, "took": "10.551274ms"} -2023-12-15T23:07:18.531Z INFO sending PrepareRequest {"height": 3703, "view": 0} -2023-12-15T23:07:18.531Z INFO sending Commit {"height": 3703, "view": 0} -2023-12-15T23:07:18.531Z INFO approving block {"height": 3703, "hash": "d59c368d7711b8e35c4d438eb57a9ba784e95ac9290ed7ae3e02de63f43d4de0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36f069c8f235503a1faac326604abd32b0244d21b3c3b6218ec7239a6aa1a452"} -2023-12-15T23:07:18.533Z INFO initializing dbft {"height": 3704, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:18.535Z debug frostfs-node/morph.go:229 new block {"index": 3703} -2023-12-15T23:07:19.500Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3703, "blockHeight": 3703, "took": "11.187484ms"} -2023-12-15T23:07:19.533Z INFO sending PrepareRequest {"height": 3704, "view": 0} -2023-12-15T23:07:19.533Z INFO sending Commit {"height": 3704, "view": 0} -2023-12-15T23:07:19.534Z INFO approving block {"height": 3704, "hash": "bd8865576c26b71cd81d26eb129b2b51372a8b114842cfe86f565d438571d138", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d59c368d7711b8e35c4d438eb57a9ba784e95ac9290ed7ae3e02de63f43d4de0"} -2023-12-15T23:07:19.535Z INFO initializing dbft {"height": 3705, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:19.536Z debug frostfs-node/morph.go:229 new block {"index": 3704} -2023-12-15T23:07:20.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3704, "blockHeight": 3704, "took": "8.324613ms"} -2023-12-15T23:07:20.535Z INFO sending PrepareRequest {"height": 3705, "view": 0} -2023-12-15T23:07:20.535Z INFO sending Commit {"height": 3705, "view": 0} -2023-12-15T23:07:20.535Z INFO approving block {"height": 3705, "hash": "5b685dca16712e819d1ddb1ecaa53d5af553f11ef8dee0251e3fcb2c0dd69a4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd8865576c26b71cd81d26eb129b2b51372a8b114842cfe86f565d438571d138"} -2023-12-15T23:07:20.536Z INFO initializing dbft {"height": 3706, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:20.537Z debug frostfs-node/morph.go:229 new block {"index": 3705} -2023-12-15T23:07:21.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3705, "blockHeight": 3705, "took": "7.775267ms"} -2023-12-15T23:07:21.536Z INFO sending PrepareRequest {"height": 3706, "view": 0} -2023-12-15T23:07:21.536Z INFO sending Commit {"height": 3706, "view": 0} -2023-12-15T23:07:21.537Z INFO approving block {"height": 3706, "hash": "bd2db15d803ab6d921b77e4544c6b87248c43256c9e0fa75586d267630582c24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b685dca16712e819d1ddb1ecaa53d5af553f11ef8dee0251e3fcb2c0dd69a4b"} -2023-12-15T23:07:21.538Z INFO initializing dbft {"height": 3707, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:21.539Z debug frostfs-node/morph.go:229 new block {"index": 3706} -2023-12-15T23:07:22.498Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3706, "blockHeight": 3706, "took": "6.791109ms"} -2023-12-15T23:07:22.538Z INFO sending PrepareRequest {"height": 3707, "view": 0} -2023-12-15T23:07:22.539Z INFO sending Commit {"height": 3707, "view": 0} -2023-12-15T23:07:22.539Z INFO approving block {"height": 3707, "hash": "eb3042764a190007fae08e1a5a12798c75abe1e0e025ac7d08ede7af24a9adba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd2db15d803ab6d921b77e4544c6b87248c43256c9e0fa75586d267630582c24"} -2023-12-15T23:07:22.544Z INFO initializing dbft {"height": 3708, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:22.546Z debug frostfs-node/morph.go:229 new block {"index": 3707} -2023-12-15T23:07:23.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3707, "blockHeight": 3707, "took": "11.215204ms"} -2023-12-15T23:07:23.542Z INFO sending PrepareRequest {"height": 3708, "view": 0} -2023-12-15T23:07:23.542Z INFO sending Commit {"height": 3708, "view": 0} -2023-12-15T23:07:23.542Z INFO approving block {"height": 3708, "hash": "17e256e65362887d09537d2ae27462fc315ba273ab824c2fb8c88ac7acb92ad9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb3042764a190007fae08e1a5a12798c75abe1e0e025ac7d08ede7af24a9adba"} -2023-12-15T23:07:23.543Z INFO initializing dbft {"height": 3709, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:23.544Z debug frostfs-node/morph.go:229 new block {"index": 3708} -2023-12-15T23:07:24.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3708, "blockHeight": 3708, "took": "10.790825ms"} -2023-12-15T23:07:24.543Z INFO sending PrepareRequest {"height": 3709, "view": 0} -2023-12-15T23:07:24.544Z INFO sending Commit {"height": 3709, "view": 0} -2023-12-15T23:07:24.544Z INFO approving block {"height": 3709, "hash": "7d7c07c1700fc8408623ea39017c1e66dfae4ac876108077b72e4588aeaecab1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17e256e65362887d09537d2ae27462fc315ba273ab824c2fb8c88ac7acb92ad9"} -2023-12-15T23:07:24.545Z INFO initializing dbft {"height": 3710, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:24.546Z debug frostfs-node/morph.go:229 new block {"index": 3709} -2023-12-15T23:07:25.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3709, "blockHeight": 3709, "took": "7.709992ms"} -2023-12-15T23:07:25.545Z INFO sending PrepareRequest {"height": 3710, "view": 0} -2023-12-15T23:07:25.545Z INFO sending Commit {"height": 3710, "view": 0} -2023-12-15T23:07:25.546Z INFO approving block {"height": 3710, "hash": "be48a46e8958a58aa5859ac23175ab022c973b1150dec2bd72f370794997b15b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d7c07c1700fc8408623ea39017c1e66dfae4ac876108077b72e4588aeaecab1"} -2023-12-15T23:07:25.547Z INFO initializing dbft {"height": 3711, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:25.548Z debug frostfs-node/morph.go:229 new block {"index": 3710} -2023-12-15T23:07:26.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3710, "blockHeight": 3710, "took": "6.995804ms"} -2023-12-15T23:07:26.547Z INFO sending PrepareRequest {"height": 3711, "view": 0} -2023-12-15T23:07:26.547Z INFO sending Commit {"height": 3711, "view": 0} -2023-12-15T23:07:26.548Z INFO approving block {"height": 3711, "hash": "8790ba9fce21cf850b623f97301844097694f8a581f64c3f3695fbb05134a186", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be48a46e8958a58aa5859ac23175ab022c973b1150dec2bd72f370794997b15b"} -2023-12-15T23:07:26.549Z INFO initializing dbft {"height": 3712, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:26.551Z debug frostfs-node/morph.go:229 new block {"index": 3711} -2023-12-15T23:07:27.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3711, "blockHeight": 3711, "took": "8.637692ms"} -2023-12-15T23:07:27.549Z INFO sending PrepareRequest {"height": 3712, "view": 0} -2023-12-15T23:07:27.549Z INFO sending Commit {"height": 3712, "view": 0} -2023-12-15T23:07:27.550Z INFO approving block {"height": 3712, "hash": "d5a1c045098b9f8d74ea0605da27e86270af1084ed829c6384a68535058b95eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8790ba9fce21cf850b623f97301844097694f8a581f64c3f3695fbb05134a186"} -2023-12-15T23:07:27.551Z INFO initializing dbft {"height": 3713, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:27.552Z debug frostfs-node/morph.go:229 new block {"index": 3712} -2023-12-15T23:07:28.501Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3712, "blockHeight": 3712, "took": "6.361464ms"} -2023-12-15T23:07:28.551Z INFO sending PrepareRequest {"height": 3713, "view": 0} -2023-12-15T23:07:28.551Z INFO sending Commit {"height": 3713, "view": 0} -2023-12-15T23:07:28.551Z INFO approving block {"height": 3713, "hash": "e58012413c2e9d29c24ebd1db583b0f4b76ba670e33e92d45b835caf853d1068", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5a1c045098b9f8d74ea0605da27e86270af1084ed829c6384a68535058b95eb"} -2023-12-15T23:07:28.552Z INFO initializing dbft {"height": 3714, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:28.553Z debug frostfs-node/morph.go:229 new block {"index": 3713} -2023-12-15T23:07:29.502Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3713, "blockHeight": 3713, "took": "6.935339ms"} -2023-12-15T23:07:29.552Z INFO sending PrepareRequest {"height": 3714, "view": 0} -2023-12-15T23:07:29.552Z INFO sending Commit {"height": 3714, "view": 0} -2023-12-15T23:07:29.553Z INFO approving block {"height": 3714, "hash": "3bdaad1ee729f0a00155031e27967e7180a777ce5b88fa6958cf7a36cf821ef5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e58012413c2e9d29c24ebd1db583b0f4b76ba670e33e92d45b835caf853d1068"} -2023-12-15T23:07:29.554Z INFO initializing dbft {"height": 3715, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:29.554Z debug frostfs-node/morph.go:229 new block {"index": 3714} -2023-12-15T23:07:30.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3714, "blockHeight": 3714, "took": "7.315407ms"} -2023-12-15T23:07:30.554Z INFO sending PrepareRequest {"height": 3715, "view": 0} -2023-12-15T23:07:30.554Z INFO sending Commit {"height": 3715, "view": 0} -2023-12-15T23:07:30.555Z INFO approving block {"height": 3715, "hash": "afb9928868c4e28a260f2617470a40451875c41c662a9df79f01c92515adee25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bdaad1ee729f0a00155031e27967e7180a777ce5b88fa6958cf7a36cf821ef5"} -2023-12-15T23:07:30.557Z INFO initializing dbft {"height": 3716, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:30.557Z debug frostfs-node/morph.go:229 new block {"index": 3715} -2023-12-15T23:07:31.504Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3715, "blockHeight": 3715, "took": "7.2433ms"} -2023-12-15T23:07:31.557Z INFO sending PrepareRequest {"height": 3716, "view": 0} -2023-12-15T23:07:31.557Z INFO sending Commit {"height": 3716, "view": 0} -2023-12-15T23:07:31.557Z INFO approving block {"height": 3716, "hash": "b626fb6b4d9c781226cc1e6c8b7b5730a0f9333634f4f9d344c5d294e8d38ab1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afb9928868c4e28a260f2617470a40451875c41c662a9df79f01c92515adee25"} -2023-12-15T23:07:31.559Z INFO initializing dbft {"height": 3717, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:31.559Z debug frostfs-node/morph.go:229 new block {"index": 3716} -2023-12-15T23:07:32.503Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3716, "blockHeight": 3716, "took": "5.783923ms"} -2023-12-15T23:07:32.558Z INFO sending PrepareRequest {"height": 3717, "view": 0} -2023-12-15T23:07:32.559Z INFO sending Commit {"height": 3717, "view": 0} -2023-12-15T23:07:32.559Z INFO approving block {"height": 3717, "hash": "0efd01ec53d8e8e9e17e5e33710545b95083b9187b545a9aed0b36c9fbf47131", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b626fb6b4d9c781226cc1e6c8b7b5730a0f9333634f4f9d344c5d294e8d38ab1"} -2023-12-15T23:07:32.560Z INFO initializing dbft {"height": 3718, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:32.561Z debug frostfs-node/morph.go:229 new block {"index": 3717} -2023-12-15T23:07:32.563Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:07:32.567Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:07:32.567Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:07:33.507Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3717, "blockHeight": 3717, "took": "8.93011ms"} -2023-12-15T23:07:33.560Z INFO sending PrepareRequest {"height": 3718, "view": 0} -2023-12-15T23:07:33.561Z INFO sending Commit {"height": 3718, "view": 0} -2023-12-15T23:07:33.561Z INFO approving block {"height": 3718, "hash": "7e5bb47b57995ae412610334af90b04eb8dd4643009500fbb7c0cad7dece79ca", "tx_count": 2, "merkle": "8e402fe848cbc1a8b82c571e4b483a2e473c9eb3d0d9c2022ab0bb14f857110e", "prev": "0efd01ec53d8e8e9e17e5e33710545b95083b9187b545a9aed0b36c9fbf47131"} -2023-12-15T23:07:33.562Z INFO runtime log {"tx": "8099f5a98e461a8c769fb537338f1de5c617c9b80df2dca939362e86afb9e486", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:07:33.562Z INFO runtime log {"tx": "8099f5a98e461a8c769fb537338f1de5c617c9b80df2dca939362e86afb9e486", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:07:33.568Z INFO initializing dbft {"height": 3719, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:33.570Z debug frostfs-node/morph.go:229 new block {"index": 3718} -2023-12-15T23:07:34.515Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 3718, "blockHeight": 3718, "took": "16.526416ms"} -2023-12-15T23:07:34.563Z INFO sending PrepareRequest {"height": 3719, "view": 0} -2023-12-15T23:07:34.563Z INFO sending Commit {"height": 3719, "view": 0} -2023-12-15T23:07:34.564Z INFO approving block {"height": 3719, "hash": "82622f95bd5373260738146a6398fba2441b41eb47c1f8c9cdc4ba28f71a6f34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e5bb47b57995ae412610334af90b04eb8dd4643009500fbb7c0cad7dece79ca"} -2023-12-15T23:07:34.566Z INFO initializing dbft {"height": 3720, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:34.568Z debug frostfs-node/morph.go:229 new block {"index": 3719} -2023-12-15T23:07:35.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3719, "blockHeight": 3719, "took": "11.634711ms"} -2023-12-15T23:07:35.565Z INFO sending PrepareRequest {"height": 3720, "view": 0} -2023-12-15T23:07:35.565Z INFO sending Commit {"height": 3720, "view": 0} -2023-12-15T23:07:35.567Z INFO approving block {"height": 3720, "hash": "a2bc549042bab4c86783aa689d40df41ec3f9ee382294ce4ebf2eab2e90d5f69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82622f95bd5373260738146a6398fba2441b41eb47c1f8c9cdc4ba28f71a6f34"} -2023-12-15T23:07:35.568Z INFO initializing dbft {"height": 3721, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:35.568Z debug frostfs-node/morph.go:229 new block {"index": 3720} -2023-12-15T23:07:36.508Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3720, "blockHeight": 3720, "took": "7.950441ms"} -2023-12-15T23:07:36.568Z INFO sending PrepareRequest {"height": 3721, "view": 0} -2023-12-15T23:07:36.568Z INFO sending Commit {"height": 3721, "view": 0} -2023-12-15T23:07:36.569Z INFO approving block {"height": 3721, "hash": "80cf5ac366cfc788329c50d7543babefcf8a0920a941f474956c76bbdd587d5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2bc549042bab4c86783aa689d40df41ec3f9ee382294ce4ebf2eab2e90d5f69"} -2023-12-15T23:07:36.570Z INFO initializing dbft {"height": 3722, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:36.571Z debug frostfs-node/morph.go:229 new block {"index": 3721} -2023-12-15T23:07:37.508Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3721, "blockHeight": 3721, "took": "7.64101ms"} -2023-12-15T23:07:37.569Z INFO sending PrepareRequest {"height": 3722, "view": 0} -2023-12-15T23:07:37.569Z INFO sending Commit {"height": 3722, "view": 0} -2023-12-15T23:07:37.570Z INFO approving block {"height": 3722, "hash": "102af6404f4e75687049c068fdefdf9e4661c270a413dca97b03964aed388d96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80cf5ac366cfc788329c50d7543babefcf8a0920a941f474956c76bbdd587d5a"} -2023-12-15T23:07:37.570Z INFO initializing dbft {"height": 3723, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:37.571Z debug frostfs-node/morph.go:229 new block {"index": 3722} -2023-12-15T23:07:38.509Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3722, "blockHeight": 3722, "took": "7.722331ms"} -2023-12-15T23:07:38.571Z INFO sending PrepareRequest {"height": 3723, "view": 0} -2023-12-15T23:07:38.571Z INFO sending Commit {"height": 3723, "view": 0} -2023-12-15T23:07:38.571Z INFO approving block {"height": 3723, "hash": "8aeec29d3bb006b812043ea54b65740601b0d73f77c0c3a2428126ad1b047221", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "102af6404f4e75687049c068fdefdf9e4661c270a413dca97b03964aed388d96"} -2023-12-15T23:07:38.572Z INFO initializing dbft {"height": 3724, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:38.573Z debug frostfs-node/morph.go:229 new block {"index": 3723} -2023-12-15T23:07:39.510Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3723, "blockHeight": 3723, "took": "8.579299ms"} -2023-12-15T23:07:39.572Z INFO sending PrepareRequest {"height": 3724, "view": 0} -2023-12-15T23:07:39.573Z INFO sending Commit {"height": 3724, "view": 0} -2023-12-15T23:07:39.573Z INFO approving block {"height": 3724, "hash": "6785a53fae7dbb733819c5e6222bc2e468ec5c1e9e50c3af4309a0802610de81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8aeec29d3bb006b812043ea54b65740601b0d73f77c0c3a2428126ad1b047221"} -2023-12-15T23:07:39.574Z INFO initializing dbft {"height": 3725, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:39.575Z debug frostfs-node/morph.go:229 new block {"index": 3724} -2023-12-15T23:07:40.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3724, "blockHeight": 3724, "took": "8.527749ms"} -2023-12-15T23:07:40.574Z INFO sending PrepareRequest {"height": 3725, "view": 0} -2023-12-15T23:07:40.575Z INFO sending Commit {"height": 3725, "view": 0} -2023-12-15T23:07:40.575Z INFO approving block {"height": 3725, "hash": "59904969a5919e4fd3d67e5b72c8c12ff7e74491f06866a93df98d9832e54090", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6785a53fae7dbb733819c5e6222bc2e468ec5c1e9e50c3af4309a0802610de81"} -2023-12-15T23:07:40.576Z INFO initializing dbft {"height": 3726, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:40.577Z debug frostfs-node/morph.go:229 new block {"index": 3725} -2023-12-15T23:07:41.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3725, "blockHeight": 3725, "took": "7.968945ms"} -2023-12-15T23:07:41.576Z INFO sending PrepareRequest {"height": 3726, "view": 0} -2023-12-15T23:07:41.576Z INFO sending Commit {"height": 3726, "view": 0} -2023-12-15T23:07:41.577Z INFO approving block {"height": 3726, "hash": "fd117192bf7b9bb459549f77108d839965e37fa3047472a2c5fb12ead81a6ecc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59904969a5919e4fd3d67e5b72c8c12ff7e74491f06866a93df98d9832e54090"} -2023-12-15T23:07:41.578Z INFO initializing dbft {"height": 3727, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:41.579Z debug frostfs-node/morph.go:229 new block {"index": 3726} -2023-12-15T23:07:42.511Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3726, "blockHeight": 3726, "took": "7.279019ms"} -2023-12-15T23:07:42.577Z INFO sending PrepareRequest {"height": 3727, "view": 0} -2023-12-15T23:07:42.578Z INFO sending Commit {"height": 3727, "view": 0} -2023-12-15T23:07:42.578Z INFO approving block {"height": 3727, "hash": "afc7aded67252d927d1e125cd2ddc71438b52c8499b8a92fafd45bad1d1bb0a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd117192bf7b9bb459549f77108d839965e37fa3047472a2c5fb12ead81a6ecc"} -2023-12-15T23:07:42.579Z INFO initializing dbft {"height": 3728, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:42.579Z debug frostfs-node/morph.go:229 new block {"index": 3727} -2023-12-15T23:07:43.514Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3727, "blockHeight": 3727, "took": "10.202257ms"} -2023-12-15T23:07:43.579Z INFO sending PrepareRequest {"height": 3728, "view": 0} -2023-12-15T23:07:43.579Z INFO sending Commit {"height": 3728, "view": 0} -2023-12-15T23:07:43.579Z INFO approving block {"height": 3728, "hash": "79ccd358eb91f314c0d0dc42be876984d7c6db16de1c89e80eceb1672a4f31bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afc7aded67252d927d1e125cd2ddc71438b52c8499b8a92fafd45bad1d1bb0a0"} -2023-12-15T23:07:43.580Z INFO initializing dbft {"height": 3729, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:43.581Z debug frostfs-node/morph.go:229 new block {"index": 3728} -2023-12-15T23:07:44.514Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3728, "blockHeight": 3728, "took": "8.581317ms"} -2023-12-15T23:07:44.581Z INFO sending PrepareRequest {"height": 3729, "view": 0} -2023-12-15T23:07:44.581Z INFO sending Commit {"height": 3729, "view": 0} -2023-12-15T23:07:44.582Z INFO approving block {"height": 3729, "hash": "3947a28d647166219028cb6f6bc2bd6588d3e70e59f978a019bce5a2ecab1c3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79ccd358eb91f314c0d0dc42be876984d7c6db16de1c89e80eceb1672a4f31bb"} -2023-12-15T23:07:44.583Z INFO initializing dbft {"height": 3730, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:44.584Z debug frostfs-node/morph.go:229 new block {"index": 3729} -2023-12-15T23:07:45.516Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3729, "blockHeight": 3729, "took": "9.758628ms"} -2023-12-15T23:07:45.583Z INFO sending PrepareRequest {"height": 3730, "view": 0} -2023-12-15T23:07:45.583Z INFO sending Commit {"height": 3730, "view": 0} -2023-12-15T23:07:45.584Z INFO approving block {"height": 3730, "hash": "e635403fdb2b34e48ff210c1e87a3a90d9b2b66f908b0408798f6e669d2b95f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3947a28d647166219028cb6f6bc2bd6588d3e70e59f978a019bce5a2ecab1c3c"} -2023-12-15T23:07:45.585Z INFO initializing dbft {"height": 3731, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:45.587Z debug frostfs-node/morph.go:229 new block {"index": 3730} -2023-12-15T23:07:46.515Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3730, "blockHeight": 3730, "took": "7.970698ms"} -2023-12-15T23:07:46.586Z INFO sending PrepareRequest {"height": 3731, "view": 0} -2023-12-15T23:07:46.586Z INFO sending Commit {"height": 3731, "view": 0} -2023-12-15T23:07:46.586Z INFO approving block {"height": 3731, "hash": "9781b2ddfc01e0d7d1a5689f3a2b85651d06a0ef45952ec340ba9a24f0a22758", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e635403fdb2b34e48ff210c1e87a3a90d9b2b66f908b0408798f6e669d2b95f0"} -2023-12-15T23:07:46.588Z INFO initializing dbft {"height": 3732, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:46.588Z debug frostfs-node/morph.go:229 new block {"index": 3731} -2023-12-15T23:07:47.518Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3731, "blockHeight": 3731, "took": "9.958342ms"} -2023-12-15T23:07:47.588Z INFO sending PrepareRequest {"height": 3732, "view": 0} -2023-12-15T23:07:47.588Z INFO sending Commit {"height": 3732, "view": 0} -2023-12-15T23:07:47.589Z INFO approving block {"height": 3732, "hash": "2570971677a61ddfeac24ab1ee6ab63fb54643698cb36cc44a00d7a55f4abff1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9781b2ddfc01e0d7d1a5689f3a2b85651d06a0ef45952ec340ba9a24f0a22758"} -2023-12-15T23:07:47.590Z INFO initializing dbft {"height": 3733, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:47.591Z debug frostfs-node/morph.go:229 new block {"index": 3732} -2023-12-15T23:07:48.565Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3732, "blockHeight": 3732, "took": "56.933781ms"} -2023-12-15T23:07:48.590Z INFO sending PrepareRequest {"height": 3733, "view": 0} -2023-12-15T23:07:48.590Z INFO sending Commit {"height": 3733, "view": 0} -2023-12-15T23:07:48.591Z INFO approving block {"height": 3733, "hash": "789bb68a57b569d2f7d1ba9792eca7d2472b797a1d169e3a979d09601298accf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2570971677a61ddfeac24ab1ee6ab63fb54643698cb36cc44a00d7a55f4abff1"} -2023-12-15T23:07:48.592Z INFO initializing dbft {"height": 3734, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:48.594Z debug frostfs-node/morph.go:229 new block {"index": 3733} -2023-12-15T23:07:49.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3733, "blockHeight": 3733, "took": "10.713821ms"} -2023-12-15T23:07:49.592Z INFO sending PrepareRequest {"height": 3734, "view": 0} -2023-12-15T23:07:49.593Z INFO sending Commit {"height": 3734, "view": 0} -2023-12-15T23:07:49.593Z INFO approving block {"height": 3734, "hash": "49d986264030645ed408034fb2c03d50eed4d288dd61f129045e835eba0420e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "789bb68a57b569d2f7d1ba9792eca7d2472b797a1d169e3a979d09601298accf"} -2023-12-15T23:07:49.595Z INFO initializing dbft {"height": 3735, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:49.596Z debug frostfs-node/morph.go:229 new block {"index": 3734} -2023-12-15T23:07:49.599Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 16, "iteration": 1, "error": "no data for 0 iteration in 16 epoch for consumers's trusts"} -2023-12-15T23:07:50.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3734, "blockHeight": 3734, "took": "10.059645ms"} -2023-12-15T23:07:50.594Z INFO sending PrepareRequest {"height": 3735, "view": 0} -2023-12-15T23:07:50.594Z INFO sending Commit {"height": 3735, "view": 0} -2023-12-15T23:07:50.594Z INFO approving block {"height": 3735, "hash": "f2b1504387537d90a9120de0fbf4d78763df9f741d88312cd874c67317a21f14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49d986264030645ed408034fb2c03d50eed4d288dd61f129045e835eba0420e4"} -2023-12-15T23:07:50.597Z INFO initializing dbft {"height": 3736, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:50.598Z debug frostfs-node/morph.go:229 new block {"index": 3735} -2023-12-15T23:07:50.611Z info settlement/calls.go:61 start basic income collection {"epoch": 16} -2023-12-15T23:07:51.521Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3735, "blockHeight": 3735, "took": "10.457064ms"} -2023-12-15T23:07:51.595Z INFO sending PrepareRequest {"height": 3736, "view": 0} -2023-12-15T23:07:51.595Z INFO sending Commit {"height": 3736, "view": 0} -2023-12-15T23:07:51.596Z INFO approving block {"height": 3736, "hash": "7e31231cf44c26dc5da28cbfbbe7d59fa70331a6d5e204a69d1b88604700c7cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2b1504387537d90a9120de0fbf4d78763df9f741d88312cd874c67317a21f14"} -2023-12-15T23:07:51.597Z INFO initializing dbft {"height": 3737, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:51.598Z debug frostfs-node/morph.go:229 new block {"index": 3736} -2023-12-15T23:07:52.521Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3736, "blockHeight": 3736, "took": "9.809372ms"} -2023-12-15T23:07:52.597Z INFO sending PrepareRequest {"height": 3737, "view": 0} -2023-12-15T23:07:52.597Z INFO sending Commit {"height": 3737, "view": 0} -2023-12-15T23:07:52.597Z INFO approving block {"height": 3737, "hash": "04f11d3a354135ec5104ccfd015ef9ab209a3aaaff73e6c4b7d713eecb6c8780", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e31231cf44c26dc5da28cbfbbe7d59fa70331a6d5e204a69d1b88604700c7cd"} -2023-12-15T23:07:52.599Z INFO initializing dbft {"height": 3738, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:52.600Z debug frostfs-node/morph.go:229 new block {"index": 3737} -2023-12-15T23:07:53.519Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3737, "blockHeight": 3737, "took": "7.472492ms"} -2023-12-15T23:07:53.599Z INFO sending PrepareRequest {"height": 3738, "view": 0} -2023-12-15T23:07:53.599Z INFO sending Commit {"height": 3738, "view": 0} -2023-12-15T23:07:53.599Z INFO approving block {"height": 3738, "hash": "00aae8fad78a740ae0d374ccd7a6a797968b70cc0ba76ff778db5db20a28dbf6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04f11d3a354135ec5104ccfd015ef9ab209a3aaaff73e6c4b7d713eecb6c8780"} -2023-12-15T23:07:53.600Z INFO initializing dbft {"height": 3739, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:53.602Z debug frostfs-node/morph.go:229 new block {"index": 3738} -2023-12-15T23:07:54.520Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3738, "blockHeight": 3738, "took": "8.200999ms"} -2023-12-15T23:07:54.600Z INFO sending PrepareRequest {"height": 3739, "view": 0} -2023-12-15T23:07:54.600Z INFO sending Commit {"height": 3739, "view": 0} -2023-12-15T23:07:54.601Z INFO approving block {"height": 3739, "hash": "4afefe98c69b47273925d3c340c89d91b2667b012c5c76fc039033d0f36726fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00aae8fad78a740ae0d374ccd7a6a797968b70cc0ba76ff778db5db20a28dbf6"} -2023-12-15T23:07:54.602Z INFO initializing dbft {"height": 3740, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:54.602Z debug frostfs-node/morph.go:229 new block {"index": 3739} -2023-12-15T23:07:55.520Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3739, "blockHeight": 3739, "took": "6.985598ms"} -2023-12-15T23:07:55.602Z INFO sending PrepareRequest {"height": 3740, "view": 0} -2023-12-15T23:07:55.602Z INFO sending Commit {"height": 3740, "view": 0} -2023-12-15T23:07:55.602Z INFO approving block {"height": 3740, "hash": "819d6672bd15c72356f0bf2ef4f8087c15a2ac1ba81ec782c78a655b3104d1fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4afefe98c69b47273925d3c340c89d91b2667b012c5c76fc039033d0f36726fd"} -2023-12-15T23:07:55.603Z INFO initializing dbft {"height": 3741, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:55.604Z debug frostfs-node/morph.go:229 new block {"index": 3740} -2023-12-15T23:07:56.529Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3740, "blockHeight": 3740, "took": "16.005698ms"} -2023-12-15T23:07:56.603Z INFO sending PrepareRequest {"height": 3741, "view": 0} -2023-12-15T23:07:56.603Z INFO sending Commit {"height": 3741, "view": 0} -2023-12-15T23:07:56.604Z INFO approving block {"height": 3741, "hash": "d64df81a290185e36f87e9b329af5a2c2f8e1403624cbbfe4e6e9ed2a17e3dab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "819d6672bd15c72356f0bf2ef4f8087c15a2ac1ba81ec782c78a655b3104d1fb"} -2023-12-15T23:07:56.605Z INFO initializing dbft {"height": 3742, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:56.605Z debug frostfs-node/morph.go:229 new block {"index": 3741} -2023-12-15T23:07:57.523Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3741, "blockHeight": 3741, "took": "7.776247ms"} -2023-12-15T23:07:57.605Z INFO sending PrepareRequest {"height": 3742, "view": 0} -2023-12-15T23:07:57.605Z INFO sending Commit {"height": 3742, "view": 0} -2023-12-15T23:07:57.605Z INFO approving block {"height": 3742, "hash": "94e7262a0fe16dd106637aa6598868d8e5e8ef4bd94d414d664c1d544a7892c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d64df81a290185e36f87e9b329af5a2c2f8e1403624cbbfe4e6e9ed2a17e3dab"} -2023-12-15T23:07:57.606Z INFO initializing dbft {"height": 3743, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:57.607Z debug frostfs-node/morph.go:229 new block {"index": 3742} -2023-12-15T23:07:58.523Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3742, "blockHeight": 3742, "took": "7.584402ms"} -2023-12-15T23:07:58.606Z INFO sending PrepareRequest {"height": 3743, "view": 0} -2023-12-15T23:07:58.606Z INFO sending Commit {"height": 3743, "view": 0} -2023-12-15T23:07:58.607Z INFO approving block {"height": 3743, "hash": "953550ffb0400a4e1987376906afc1273368b4ad4cb98da911ccbadf2a9c9f72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94e7262a0fe16dd106637aa6598868d8e5e8ef4bd94d414d664c1d544a7892c6"} -2023-12-15T23:07:58.608Z INFO initializing dbft {"height": 3744, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:58.609Z debug frostfs-node/morph.go:229 new block {"index": 3743} -2023-12-15T23:07:59.525Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3743, "blockHeight": 3743, "took": "8.51102ms"} -2023-12-15T23:07:59.608Z INFO sending PrepareRequest {"height": 3744, "view": 0} -2023-12-15T23:07:59.608Z INFO sending Commit {"height": 3744, "view": 0} -2023-12-15T23:07:59.608Z INFO approving block {"height": 3744, "hash": "1c28646f1aca039605055986213be5356ee16253d5a6e092790ca92ebc6f588a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "953550ffb0400a4e1987376906afc1273368b4ad4cb98da911ccbadf2a9c9f72"} -2023-12-15T23:07:59.609Z INFO initializing dbft {"height": 3745, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:07:59.610Z debug frostfs-node/morph.go:229 new block {"index": 3744} -2023-12-15T23:08:00.535Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3744, "blockHeight": 3744, "took": "18.172577ms"} -2023-12-15T23:08:00.610Z INFO sending PrepareRequest {"height": 3745, "view": 0} -2023-12-15T23:08:00.610Z INFO sending Commit {"height": 3745, "view": 0} -2023-12-15T23:08:00.610Z INFO approving block {"height": 3745, "hash": "2315efec027ad869b82b1154e984ef8df9f5dd1eeff309cb21e54bff64a30f20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c28646f1aca039605055986213be5356ee16253d5a6e092790ca92ebc6f588a"} -2023-12-15T23:08:00.612Z INFO initializing dbft {"height": 3746, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:00.613Z debug frostfs-node/morph.go:229 new block {"index": 3745} -2023-12-15T23:08:01.526Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3745, "blockHeight": 3745, "took": "8.55411ms"} -2023-12-15T23:08:01.611Z INFO sending PrepareRequest {"height": 3746, "view": 0} -2023-12-15T23:08:01.611Z INFO sending Commit {"height": 3746, "view": 0} -2023-12-15T23:08:01.612Z INFO approving block {"height": 3746, "hash": "5629c975288c432dadc4b979347f618dabefa172bb56a543f2573fcacc3ed361", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2315efec027ad869b82b1154e984ef8df9f5dd1eeff309cb21e54bff64a30f20"} -2023-12-15T23:08:01.613Z INFO initializing dbft {"height": 3747, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:01.614Z debug frostfs-node/morph.go:229 new block {"index": 3746} -2023-12-15T23:08:02.526Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3746, "blockHeight": 3746, "took": "8.320479ms"} -2023-12-15T23:08:02.613Z INFO sending PrepareRequest {"height": 3747, "view": 0} -2023-12-15T23:08:02.613Z INFO sending Commit {"height": 3747, "view": 0} -2023-12-15T23:08:02.614Z INFO approving block {"height": 3747, "hash": "f43ace0fca56141050b8d1acf40269d0fa3ff5ed9a00ac95c46fb7dfed9ab071", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5629c975288c432dadc4b979347f618dabefa172bb56a543f2573fcacc3ed361"} -2023-12-15T23:08:02.616Z INFO initializing dbft {"height": 3748, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:02.616Z debug frostfs-node/morph.go:229 new block {"index": 3747} -2023-12-15T23:08:03.528Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3747, "blockHeight": 3747, "took": "9.653198ms"} -2023-12-15T23:08:03.614Z INFO sending PrepareRequest {"height": 3748, "view": 0} -2023-12-15T23:08:03.615Z INFO sending Commit {"height": 3748, "view": 0} -2023-12-15T23:08:03.616Z INFO approving block {"height": 3748, "hash": "8cd3968d394535d30464ea7f0475eec0fc5484504549034197ced31c29858487", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f43ace0fca56141050b8d1acf40269d0fa3ff5ed9a00ac95c46fb7dfed9ab071"} -2023-12-15T23:08:03.617Z INFO initializing dbft {"height": 3749, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:03.617Z debug frostfs-node/morph.go:229 new block {"index": 3748} -2023-12-15T23:08:04.531Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3748, "blockHeight": 3748, "took": "11.411999ms"} -2023-12-15T23:08:04.617Z INFO sending PrepareRequest {"height": 3749, "view": 0} -2023-12-15T23:08:04.618Z INFO sending Commit {"height": 3749, "view": 0} -2023-12-15T23:08:04.618Z INFO approving block {"height": 3749, "hash": "d151adff40313640f02453384bb968fb8a2b9b79ef2987e83a0d3e3bc1772cc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cd3968d394535d30464ea7f0475eec0fc5484504549034197ced31c29858487"} -2023-12-15T23:08:04.620Z INFO initializing dbft {"height": 3750, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:04.621Z debug frostfs-node/morph.go:229 new block {"index": 3749} -2023-12-15T23:08:05.526Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3749, "blockHeight": 3749, "took": "6.009053ms"} -2023-12-15T23:08:05.619Z INFO sending PrepareRequest {"height": 3750, "view": 0} -2023-12-15T23:08:05.619Z INFO sending Commit {"height": 3750, "view": 0} -2023-12-15T23:08:05.619Z INFO approving block {"height": 3750, "hash": "456d248b0fc3dbc8c7819bc6728dbf99c74f6abe8bb4db8fbb1d897cf4539250", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d151adff40313640f02453384bb968fb8a2b9b79ef2987e83a0d3e3bc1772cc4"} -2023-12-15T23:08:05.620Z INFO initializing dbft {"height": 3751, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:05.621Z debug frostfs-node/morph.go:229 new block {"index": 3750} -2023-12-15T23:08:06.528Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3750, "blockHeight": 3750, "took": "7.458156ms"} -2023-12-15T23:08:06.621Z INFO sending PrepareRequest {"height": 3751, "view": 0} -2023-12-15T23:08:06.621Z INFO sending Commit {"height": 3751, "view": 0} -2023-12-15T23:08:06.622Z INFO approving block {"height": 3751, "hash": "abc207ee460bf4a6f6e796bcb36f0c07849cd64b41235d01402772c35dcb3569", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "456d248b0fc3dbc8c7819bc6728dbf99c74f6abe8bb4db8fbb1d897cf4539250"} -2023-12-15T23:08:06.623Z INFO initializing dbft {"height": 3752, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:06.624Z debug frostfs-node/morph.go:229 new block {"index": 3751} -2023-12-15T23:08:07.532Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3751, "blockHeight": 3751, "took": "10.180492ms"} -2023-12-15T23:08:07.623Z INFO sending PrepareRequest {"height": 3752, "view": 0} -2023-12-15T23:08:07.623Z INFO sending Commit {"height": 3752, "view": 0} -2023-12-15T23:08:07.623Z INFO approving block {"height": 3752, "hash": "365622128a4b662f6bb826ae7c643c913d8e6cefe50bfca8e7d75e420234e10a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abc207ee460bf4a6f6e796bcb36f0c07849cd64b41235d01402772c35dcb3569"} -2023-12-15T23:08:07.624Z INFO initializing dbft {"height": 3753, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:07.625Z debug frostfs-node/morph.go:229 new block {"index": 3752} -2023-12-15T23:08:08.532Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3752, "blockHeight": 3752, "took": "9.798289ms"} -2023-12-15T23:08:08.624Z INFO sending PrepareRequest {"height": 3753, "view": 0} -2023-12-15T23:08:08.625Z INFO sending Commit {"height": 3753, "view": 0} -2023-12-15T23:08:08.625Z INFO approving block {"height": 3753, "hash": "5848e35aceb7dede36711496aa818ad5a82939d1c19ce046ace8dd502706363b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "365622128a4b662f6bb826ae7c643c913d8e6cefe50bfca8e7d75e420234e10a"} -2023-12-15T23:08:08.626Z INFO initializing dbft {"height": 3754, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:08.627Z debug frostfs-node/morph.go:229 new block {"index": 3753} -2023-12-15T23:08:09.535Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3753, "blockHeight": 3753, "took": "11.677568ms"} -2023-12-15T23:08:09.626Z INFO sending PrepareRequest {"height": 3754, "view": 0} -2023-12-15T23:08:09.626Z INFO sending Commit {"height": 3754, "view": 0} -2023-12-15T23:08:09.626Z INFO approving block {"height": 3754, "hash": "fee9518b08ff44fc99e74d9bda8f106c88945b15b07112cb7b55069c4b3abed7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5848e35aceb7dede36711496aa818ad5a82939d1c19ce046ace8dd502706363b"} -2023-12-15T23:08:09.627Z INFO initializing dbft {"height": 3755, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:09.628Z debug frostfs-node/morph.go:229 new block {"index": 3754} -2023-12-15T23:08:10.531Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3754, "blockHeight": 3754, "took": "7.350543ms"} -2023-12-15T23:08:10.627Z INFO sending PrepareRequest {"height": 3755, "view": 0} -2023-12-15T23:08:10.628Z INFO sending Commit {"height": 3755, "view": 0} -2023-12-15T23:08:10.628Z INFO approving block {"height": 3755, "hash": "424f9df2eeee70768a32c9c5e3dfd930169c0a9da5560263e6337b63188372b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fee9518b08ff44fc99e74d9bda8f106c88945b15b07112cb7b55069c4b3abed7"} -2023-12-15T23:08:10.629Z INFO initializing dbft {"height": 3756, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:10.630Z debug frostfs-node/morph.go:229 new block {"index": 3755} -2023-12-15T23:08:11.532Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3755, "blockHeight": 3755, "took": "7.181231ms"} -2023-12-15T23:08:11.629Z INFO sending PrepareRequest {"height": 3756, "view": 0} -2023-12-15T23:08:11.630Z INFO sending Commit {"height": 3756, "view": 0} -2023-12-15T23:08:11.630Z INFO approving block {"height": 3756, "hash": "840007ebdf41f0de9bd4d33ccf235b068d642916d9743702cf898fd7a077974b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "424f9df2eeee70768a32c9c5e3dfd930169c0a9da5560263e6337b63188372b5"} -2023-12-15T23:08:11.631Z INFO initializing dbft {"height": 3757, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:11.632Z debug frostfs-node/morph.go:229 new block {"index": 3756} -2023-12-15T23:08:12.579Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3756, "blockHeight": 3756, "took": "53.456439ms"} -2023-12-15T23:08:12.631Z INFO sending PrepareRequest {"height": 3757, "view": 0} -2023-12-15T23:08:12.631Z INFO sending Commit {"height": 3757, "view": 0} -2023-12-15T23:08:12.632Z INFO approving block {"height": 3757, "hash": "95a2e8c1fc50882fb2c6d4f11227a235e531a8b32b3b4e75ba83238d479cd21f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "840007ebdf41f0de9bd4d33ccf235b068d642916d9743702cf898fd7a077974b"} -2023-12-15T23:08:12.635Z debug frostfs-node/morph.go:229 new block {"index": 3757} -2023-12-15T23:08:12.635Z INFO initializing dbft {"height": 3758, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:13.534Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3757, "blockHeight": 3757, "took": "7.186871ms"} -2023-12-15T23:08:13.632Z INFO sending PrepareRequest {"height": 3758, "view": 0} -2023-12-15T23:08:13.633Z INFO sending Commit {"height": 3758, "view": 0} -2023-12-15T23:08:13.633Z INFO approving block {"height": 3758, "hash": "2d052e10d46a502366cc78aa9f3071486a3e67634eb25c8faf3c9b79d66c25a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95a2e8c1fc50882fb2c6d4f11227a235e531a8b32b3b4e75ba83238d479cd21f"} -2023-12-15T23:08:13.635Z INFO initializing dbft {"height": 3759, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:13.636Z debug frostfs-node/morph.go:229 new block {"index": 3758} -2023-12-15T23:08:14.538Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3758, "blockHeight": 3758, "took": "10.711143ms"} -2023-12-15T23:08:14.635Z INFO sending PrepareRequest {"height": 3759, "view": 0} -2023-12-15T23:08:14.635Z INFO sending Commit {"height": 3759, "view": 0} -2023-12-15T23:08:14.635Z INFO approving block {"height": 3759, "hash": "7c728940cc6aa1fe005e5406c56f11f03dc9190f5bc056445400de57bb0e4bc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d052e10d46a502366cc78aa9f3071486a3e67634eb25c8faf3c9b79d66c25a3"} -2023-12-15T23:08:14.636Z INFO initializing dbft {"height": 3760, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:14.637Z debug frostfs-node/morph.go:229 new block {"index": 3759} -2023-12-15T23:08:15.535Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3759, "blockHeight": 3759, "took": "6.13636ms"} -2023-12-15T23:08:15.637Z INFO sending PrepareRequest {"height": 3760, "view": 0} -2023-12-15T23:08:15.637Z INFO sending Commit {"height": 3760, "view": 0} -2023-12-15T23:08:15.637Z INFO approving block {"height": 3760, "hash": "82e05146c295bf4e6fc0c8b73b4aa0fa5823bc7aa89690faef253d81cdfd065c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c728940cc6aa1fe005e5406c56f11f03dc9190f5bc056445400de57bb0e4bc5"} -2023-12-15T23:08:15.638Z INFO initializing dbft {"height": 3761, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:15.638Z debug frostfs-node/morph.go:229 new block {"index": 3760} -2023-12-15T23:08:16.536Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3760, "blockHeight": 3760, "took": "6.42634ms"} -2023-12-15T23:08:16.638Z INFO sending PrepareRequest {"height": 3761, "view": 0} -2023-12-15T23:08:16.638Z INFO sending Commit {"height": 3761, "view": 0} -2023-12-15T23:08:16.638Z INFO approving block {"height": 3761, "hash": "b9fc0b5992f1eb4f81224a610abae38ca91b4485c5affc0620baf1d3e9d04212", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82e05146c295bf4e6fc0c8b73b4aa0fa5823bc7aa89690faef253d81cdfd065c"} -2023-12-15T23:08:16.639Z INFO initializing dbft {"height": 3762, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:16.640Z debug frostfs-node/morph.go:229 new block {"index": 3761} -2023-12-15T23:08:17.545Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3761, "blockHeight": 3761, "took": "14.49544ms"} -2023-12-15T23:08:17.640Z INFO sending PrepareRequest {"height": 3762, "view": 0} -2023-12-15T23:08:17.640Z INFO sending Commit {"height": 3762, "view": 0} -2023-12-15T23:08:17.640Z INFO approving block {"height": 3762, "hash": "037ec488dc42a4a01ba9e8c84704370c8968a0f3e014c0b5d8bc8ebc22aecd55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9fc0b5992f1eb4f81224a610abae38ca91b4485c5affc0620baf1d3e9d04212"} -2023-12-15T23:08:17.641Z INFO initializing dbft {"height": 3763, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:17.642Z debug frostfs-node/morph.go:229 new block {"index": 3762} -2023-12-15T23:08:18.547Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3762, "blockHeight": 3762, "took": "15.196379ms"} -2023-12-15T23:08:18.642Z INFO sending PrepareRequest {"height": 3763, "view": 0} -2023-12-15T23:08:18.642Z INFO sending Commit {"height": 3763, "view": 0} -2023-12-15T23:08:18.643Z INFO approving block {"height": 3763, "hash": "33de855b5d8a0527cf11ed1160bc49d7aaf42f49f0d91d0acf42a7761d4886d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "037ec488dc42a4a01ba9e8c84704370c8968a0f3e014c0b5d8bc8ebc22aecd55"} -2023-12-15T23:08:18.644Z INFO initializing dbft {"height": 3764, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:18.645Z debug frostfs-node/morph.go:229 new block {"index": 3763} -2023-12-15T23:08:19.542Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3763, "blockHeight": 3763, "took": "8.917566ms"} -2023-12-15T23:08:19.644Z INFO sending PrepareRequest {"height": 3764, "view": 0} -2023-12-15T23:08:19.644Z INFO sending Commit {"height": 3764, "view": 0} -2023-12-15T23:08:19.644Z INFO approving block {"height": 3764, "hash": "359920a8055f029f8dcb9c3f3fee3d7c861e2da65b2d51a5c998705b49baca4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33de855b5d8a0527cf11ed1160bc49d7aaf42f49f0d91d0acf42a7761d4886d4"} -2023-12-15T23:08:19.645Z INFO initializing dbft {"height": 3765, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:19.646Z debug frostfs-node/morph.go:229 new block {"index": 3764} -2023-12-15T23:08:20.543Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3764, "blockHeight": 3764, "took": "9.023649ms"} -2023-12-15T23:08:20.645Z INFO sending PrepareRequest {"height": 3765, "view": 0} -2023-12-15T23:08:20.645Z INFO sending Commit {"height": 3765, "view": 0} -2023-12-15T23:08:20.645Z INFO approving block {"height": 3765, "hash": "5a5ec3b4f125fc867e82890893d8f50aa29d53b4379797afdf93635edae7f85f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "359920a8055f029f8dcb9c3f3fee3d7c861e2da65b2d51a5c998705b49baca4e"} -2023-12-15T23:08:20.646Z INFO initializing dbft {"height": 3766, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:20.646Z debug frostfs-node/morph.go:229 new block {"index": 3765} -2023-12-15T23:08:21.541Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3765, "blockHeight": 3765, "took": "6.093579ms"} -2023-12-15T23:08:21.646Z INFO sending PrepareRequest {"height": 3766, "view": 0} -2023-12-15T23:08:21.647Z INFO sending Commit {"height": 3766, "view": 0} -2023-12-15T23:08:21.647Z INFO approving block {"height": 3766, "hash": "118303ffc14c07577c976b92cfc67600832e59442afaa3de708c0499007c21df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a5ec3b4f125fc867e82890893d8f50aa29d53b4379797afdf93635edae7f85f"} -2023-12-15T23:08:21.648Z INFO initializing dbft {"height": 3767, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:21.649Z debug frostfs-node/morph.go:229 new block {"index": 3766} -2023-12-15T23:08:22.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3766, "blockHeight": 3766, "took": "10.371359ms"} -2023-12-15T23:08:22.648Z INFO sending PrepareRequest {"height": 3767, "view": 0} -2023-12-15T23:08:22.648Z INFO sending Commit {"height": 3767, "view": 0} -2023-12-15T23:08:22.649Z INFO approving block {"height": 3767, "hash": "367390e56c461e4ef47f32326f71f8ee4ffd3ed01e83d0854e892c25c26d3838", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "118303ffc14c07577c976b92cfc67600832e59442afaa3de708c0499007c21df"} -2023-12-15T23:08:22.650Z INFO initializing dbft {"height": 3768, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:22.650Z debug frostfs-node/morph.go:229 new block {"index": 3767} -2023-12-15T23:08:22.653Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:08:22.656Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:08:22.656Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:08:23.543Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3767, "blockHeight": 3767, "took": "7.601396ms"} -2023-12-15T23:08:23.650Z INFO sending PrepareRequest {"height": 3768, "view": 0} -2023-12-15T23:08:23.650Z INFO sending Commit {"height": 3768, "view": 0} -2023-12-15T23:08:23.650Z INFO approving block {"height": 3768, "hash": "e57a8c5c78af2588b19e9574e677ea0d880453981faafae2f83667b26108b7d5", "tx_count": 2, "merkle": "14b75f8f9a427d7faaba92901f790ec7bebb4630864bec7b5857432562eca5ec", "prev": "367390e56c461e4ef47f32326f71f8ee4ffd3ed01e83d0854e892c25c26d3838"} -2023-12-15T23:08:23.651Z INFO runtime log {"tx": "5e7ff8597f9bc56db7085c3779dc0def1c9db2e8cb146dad478497ff7c21624d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:08:23.651Z INFO runtime log {"tx": "5e7ff8597f9bc56db7085c3779dc0def1c9db2e8cb146dad478497ff7c21624d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:08:23.652Z INFO initializing dbft {"height": 3769, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:23.653Z debug frostfs-node/morph.go:229 new block {"index": 3768} -2023-12-15T23:08:24.546Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 3768, "blockHeight": 3768, "took": "9.237854ms"} -2023-12-15T23:08:24.651Z INFO sending PrepareRequest {"height": 3769, "view": 0} -2023-12-15T23:08:24.652Z INFO sending Commit {"height": 3769, "view": 0} -2023-12-15T23:08:24.652Z INFO approving block {"height": 3769, "hash": "902bc0921cbca7c9ad7bad985ded14a76e11e28ce08cb0016e88535843435cfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e57a8c5c78af2588b19e9574e677ea0d880453981faafae2f83667b26108b7d5"} -2023-12-15T23:08:24.654Z INFO initializing dbft {"height": 3770, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:24.654Z debug frostfs-node/morph.go:229 new block {"index": 3769} -2023-12-15T23:08:25.544Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3769, "blockHeight": 3769, "took": "7.240743ms"} -2023-12-15T23:08:25.653Z INFO sending PrepareRequest {"height": 3770, "view": 0} -2023-12-15T23:08:25.653Z INFO sending Commit {"height": 3770, "view": 0} -2023-12-15T23:08:25.654Z INFO approving block {"height": 3770, "hash": "216fed5f88d79d058ac0598f712b6d9ef95c153676c65204c201a1542e4b413b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "902bc0921cbca7c9ad7bad985ded14a76e11e28ce08cb0016e88535843435cfc"} -2023-12-15T23:08:25.655Z INFO initializing dbft {"height": 3771, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:25.655Z debug frostfs-node/morph.go:229 new block {"index": 3770} -2023-12-15T23:08:26.545Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3770, "blockHeight": 3770, "took": "7.287698ms"} -2023-12-15T23:08:26.654Z INFO sending PrepareRequest {"height": 3771, "view": 0} -2023-12-15T23:08:26.654Z INFO sending Commit {"height": 3771, "view": 0} -2023-12-15T23:08:26.655Z INFO approving block {"height": 3771, "hash": "12e0bb808b96f818aa2a93adf28bc0b4961e990cce443f7e95b619f51691cd5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "216fed5f88d79d058ac0598f712b6d9ef95c153676c65204c201a1542e4b413b"} -2023-12-15T23:08:26.657Z INFO initializing dbft {"height": 3772, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:26.658Z debug frostfs-node/morph.go:229 new block {"index": 3771} -2023-12-15T23:08:27.544Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3771, "blockHeight": 3771, "took": "5.822809ms"} -2023-12-15T23:08:27.655Z INFO sending PrepareRequest {"height": 3772, "view": 0} -2023-12-15T23:08:27.656Z INFO sending Commit {"height": 3772, "view": 0} -2023-12-15T23:08:27.656Z INFO approving block {"height": 3772, "hash": "5f0eeebd82e359710ead840488f7d9468a32358be5ead91f0ad4b853adde01e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12e0bb808b96f818aa2a93adf28bc0b4961e990cce443f7e95b619f51691cd5d"} -2023-12-15T23:08:27.657Z INFO initializing dbft {"height": 3773, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:27.658Z debug frostfs-node/morph.go:229 new block {"index": 3772} -2023-12-15T23:08:28.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3772, "blockHeight": 3772, "took": "6.720255ms"} -2023-12-15T23:08:28.657Z INFO sending PrepareRequest {"height": 3773, "view": 0} -2023-12-15T23:08:28.658Z INFO sending Commit {"height": 3773, "view": 0} -2023-12-15T23:08:28.658Z INFO approving block {"height": 3773, "hash": "d639b0085f982f6653f0e8afe1efb67867e13224ad7f8d1133b42b3db58924cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f0eeebd82e359710ead840488f7d9468a32358be5ead91f0ad4b853adde01e2"} -2023-12-15T23:08:28.659Z INFO initializing dbft {"height": 3774, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:28.660Z debug frostfs-node/morph.go:229 new block {"index": 3773} -2023-12-15T23:08:29.546Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3773, "blockHeight": 3773, "took": "6.06591ms"} -2023-12-15T23:08:29.659Z INFO sending PrepareRequest {"height": 3774, "view": 0} -2023-12-15T23:08:29.659Z INFO sending Commit {"height": 3774, "view": 0} -2023-12-15T23:08:29.660Z INFO approving block {"height": 3774, "hash": "5529d4c88704782dc8e7f48ba95701a0e0705ec7de846a59b1a2e53379575190", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d639b0085f982f6653f0e8afe1efb67867e13224ad7f8d1133b42b3db58924cd"} -2023-12-15T23:08:29.661Z INFO initializing dbft {"height": 3775, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:29.661Z debug frostfs-node/morph.go:229 new block {"index": 3774} -2023-12-15T23:08:30.547Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3774, "blockHeight": 3774, "took": "5.701692ms"} -2023-12-15T23:08:30.661Z INFO sending PrepareRequest {"height": 3775, "view": 0} -2023-12-15T23:08:30.661Z INFO sending Commit {"height": 3775, "view": 0} -2023-12-15T23:08:30.661Z INFO approving block {"height": 3775, "hash": "f5aded76531f078f27e0539c89821393b04ae04d25121f6769240f79be1dc41d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5529d4c88704782dc8e7f48ba95701a0e0705ec7de846a59b1a2e53379575190"} -2023-12-15T23:08:30.662Z INFO initializing dbft {"height": 3776, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:30.663Z debug frostfs-node/morph.go:229 new block {"index": 3775} -2023-12-15T23:08:31.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3775, "blockHeight": 3775, "took": "11.217452ms"} -2023-12-15T23:08:31.663Z INFO sending PrepareRequest {"height": 3776, "view": 0} -2023-12-15T23:08:31.663Z INFO sending Commit {"height": 3776, "view": 0} -2023-12-15T23:08:31.663Z INFO approving block {"height": 3776, "hash": "a4c51eeaa0196d3f8a64239babf6432b5a3f4b313b45b4d955f683071b220841", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5aded76531f078f27e0539c89821393b04ae04d25121f6769240f79be1dc41d"} -2023-12-15T23:08:31.665Z INFO initializing dbft {"height": 3777, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:31.665Z debug frostfs-node/morph.go:229 new block {"index": 3776} -2023-12-15T23:08:32.550Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3776, "blockHeight": 3776, "took": "6.865432ms"} -2023-12-15T23:08:32.665Z INFO sending PrepareRequest {"height": 3777, "view": 0} -2023-12-15T23:08:32.665Z INFO sending Commit {"height": 3777, "view": 0} -2023-12-15T23:08:32.666Z INFO approving block {"height": 3777, "hash": "b2bd66d0376bea93edd9bc8361693da65d0f5ae024cf55628ececa5397cddbb3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4c51eeaa0196d3f8a64239babf6432b5a3f4b313b45b4d955f683071b220841"} -2023-12-15T23:08:32.667Z INFO initializing dbft {"height": 3778, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:32.667Z debug frostfs-node/morph.go:229 new block {"index": 3777} -2023-12-15T23:08:33.551Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3777, "blockHeight": 3777, "took": "7.726469ms"} -2023-12-15T23:08:33.666Z INFO sending PrepareRequest {"height": 3778, "view": 0} -2023-12-15T23:08:33.667Z INFO sending Commit {"height": 3778, "view": 0} -2023-12-15T23:08:33.667Z INFO approving block {"height": 3778, "hash": "2f68e72ef96dbd3f75dddcfe83a0488f08d08adba1c7fa51959b1e7c18f6a7cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2bd66d0376bea93edd9bc8361693da65d0f5ae024cf55628ececa5397cddbb3"} -2023-12-15T23:08:33.668Z INFO initializing dbft {"height": 3779, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:33.668Z debug frostfs-node/morph.go:229 new block {"index": 3778} -2023-12-15T23:08:34.555Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3778, "blockHeight": 3778, "took": "10.870271ms"} -2023-12-15T23:08:34.669Z INFO sending PrepareRequest {"height": 3779, "view": 0} -2023-12-15T23:08:34.669Z INFO sending Commit {"height": 3779, "view": 0} -2023-12-15T23:08:34.669Z INFO approving block {"height": 3779, "hash": "03f6e54e8c25128484f4d71e6e1844f83c10e4af1838bc5b7cb2084baec84c33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f68e72ef96dbd3f75dddcfe83a0488f08d08adba1c7fa51959b1e7c18f6a7cd"} -2023-12-15T23:08:34.670Z INFO initializing dbft {"height": 3780, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:34.671Z debug frostfs-node/morph.go:229 new block {"index": 3779} -2023-12-15T23:08:35.551Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3779, "blockHeight": 3779, "took": "5.627841ms"} -2023-12-15T23:08:35.670Z INFO sending PrepareRequest {"height": 3780, "view": 0} -2023-12-15T23:08:35.670Z INFO sending Commit {"height": 3780, "view": 0} -2023-12-15T23:08:35.671Z INFO approving block {"height": 3780, "hash": "a334ae4f21a61de6e10433d504a597a7102c11eda11befc13a9c23d0784d1b9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03f6e54e8c25128484f4d71e6e1844f83c10e4af1838bc5b7cb2084baec84c33"} -2023-12-15T23:08:35.672Z INFO initializing dbft {"height": 3781, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:35.673Z debug frostfs-node/morph.go:229 new block {"index": 3780} -2023-12-15T23:08:36.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3780, "blockHeight": 3780, "took": "7.690213ms"} -2023-12-15T23:08:36.672Z INFO sending PrepareRequest {"height": 3781, "view": 0} -2023-12-15T23:08:36.672Z INFO sending Commit {"height": 3781, "view": 0} -2023-12-15T23:08:36.672Z INFO approving block {"height": 3781, "hash": "f7ca194f380df21df4cef161f465cb7a482f89137daa1a450f71a9829df68eb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a334ae4f21a61de6e10433d504a597a7102c11eda11befc13a9c23d0784d1b9f"} -2023-12-15T23:08:36.674Z INFO initializing dbft {"height": 3782, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:36.674Z debug frostfs-node/morph.go:229 new block {"index": 3781} -2023-12-15T23:08:37.556Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3781, "blockHeight": 3781, "took": "9.566493ms"} -2023-12-15T23:08:37.673Z INFO sending PrepareRequest {"height": 3782, "view": 0} -2023-12-15T23:08:37.674Z INFO sending Commit {"height": 3782, "view": 0} -2023-12-15T23:08:37.674Z INFO approving block {"height": 3782, "hash": "20c8e1e749f251df7851fcb2b44d084ab4dc28331f3eea0c11687734602957ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7ca194f380df21df4cef161f465cb7a482f89137daa1a450f71a9829df68eb0"} -2023-12-15T23:08:37.678Z INFO initializing dbft {"height": 3783, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:37.679Z debug frostfs-node/morph.go:229 new block {"index": 3782} -2023-12-15T23:08:38.557Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3782, "blockHeight": 3782, "took": "10.113431ms"} -2023-12-15T23:08:38.675Z INFO sending PrepareRequest {"height": 3783, "view": 0} -2023-12-15T23:08:38.675Z INFO sending Commit {"height": 3783, "view": 0} -2023-12-15T23:08:38.676Z INFO approving block {"height": 3783, "hash": "30c4caf4eba31b60773ffd970410dd282ee1dc5b594732f998a826109eada3e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20c8e1e749f251df7851fcb2b44d084ab4dc28331f3eea0c11687734602957ed"} -2023-12-15T23:08:38.677Z INFO initializing dbft {"height": 3784, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:38.678Z debug frostfs-node/morph.go:229 new block {"index": 3783} -2023-12-15T23:08:39.555Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3783, "blockHeight": 3783, "took": "7.349224ms"} -2023-12-15T23:08:39.677Z INFO sending PrepareRequest {"height": 3784, "view": 0} -2023-12-15T23:08:39.677Z INFO sending Commit {"height": 3784, "view": 0} -2023-12-15T23:08:39.677Z INFO approving block {"height": 3784, "hash": "9e66a9d621451dd5b16cccf57fa1daeef40d58a5785d8707a21f64b0d7541e62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30c4caf4eba31b60773ffd970410dd282ee1dc5b594732f998a826109eada3e0"} -2023-12-15T23:08:39.678Z INFO initializing dbft {"height": 3785, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:39.679Z debug frostfs-node/morph.go:229 new block {"index": 3784} -2023-12-15T23:08:40.557Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3784, "blockHeight": 3784, "took": "7.673072ms"} -2023-12-15T23:08:40.678Z INFO sending PrepareRequest {"height": 3785, "view": 0} -2023-12-15T23:08:40.678Z INFO sending Commit {"height": 3785, "view": 0} -2023-12-15T23:08:40.679Z INFO approving block {"height": 3785, "hash": "2091a8e393f621b63fb151a0a1ebc5a09ea2dabd589575c6f3eea403f916df0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e66a9d621451dd5b16cccf57fa1daeef40d58a5785d8707a21f64b0d7541e62"} -2023-12-15T23:08:40.681Z INFO initializing dbft {"height": 3786, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:40.681Z debug frostfs-node/morph.go:229 new block {"index": 3785} -2023-12-15T23:08:41.555Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3785, "blockHeight": 3785, "took": "6.281534ms"} -2023-12-15T23:08:41.680Z INFO sending PrepareRequest {"height": 3786, "view": 0} -2023-12-15T23:08:41.680Z INFO sending Commit {"height": 3786, "view": 0} -2023-12-15T23:08:41.681Z INFO approving block {"height": 3786, "hash": "33c14ec72a821598c36fa01b29283ac52a0004c037397180fa4edcfc60b3f6d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2091a8e393f621b63fb151a0a1ebc5a09ea2dabd589575c6f3eea403f916df0d"} -2023-12-15T23:08:41.682Z INFO initializing dbft {"height": 3787, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:41.683Z debug frostfs-node/morph.go:229 new block {"index": 3786} -2023-12-15T23:08:42.558Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3786, "blockHeight": 3786, "took": "7.605389ms"} -2023-12-15T23:08:42.682Z INFO sending PrepareRequest {"height": 3787, "view": 0} -2023-12-15T23:08:42.682Z INFO sending Commit {"height": 3787, "view": 0} -2023-12-15T23:08:42.683Z INFO approving block {"height": 3787, "hash": "15069f3dce9ff8b63a37b00b888351b9125185f7082a79f88dcbd911b366b3c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33c14ec72a821598c36fa01b29283ac52a0004c037397180fa4edcfc60b3f6d6"} -2023-12-15T23:08:42.684Z INFO initializing dbft {"height": 3788, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:42.685Z debug frostfs-node/morph.go:229 new block {"index": 3787} -2023-12-15T23:08:43.558Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3787, "blockHeight": 3787, "took": "6.606632ms"} -2023-12-15T23:08:43.684Z INFO sending PrepareRequest {"height": 3788, "view": 0} -2023-12-15T23:08:43.685Z INFO sending Commit {"height": 3788, "view": 0} -2023-12-15T23:08:43.685Z INFO approving block {"height": 3788, "hash": "a5751a161785a558e96bb4f22c31ce07330974e5e38ea73c24edd33d61e5f079", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15069f3dce9ff8b63a37b00b888351b9125185f7082a79f88dcbd911b366b3c1"} -2023-12-15T23:08:43.686Z INFO initializing dbft {"height": 3789, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:43.687Z debug frostfs-node/morph.go:229 new block {"index": 3788} -2023-12-15T23:08:44.558Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3788, "blockHeight": 3788, "took": "6.212039ms"} -2023-12-15T23:08:44.687Z INFO sending PrepareRequest {"height": 3789, "view": 0} -2023-12-15T23:08:44.687Z INFO sending Commit {"height": 3789, "view": 0} -2023-12-15T23:08:44.687Z INFO approving block {"height": 3789, "hash": "24e7c2cb157a9c7f390d5e484ca1899b294926f240d3726f58f0bd8e1459e504", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5751a161785a558e96bb4f22c31ce07330974e5e38ea73c24edd33d61e5f079"} -2023-12-15T23:08:44.689Z INFO initializing dbft {"height": 3790, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:44.690Z debug frostfs-node/morph.go:229 new block {"index": 3789} -2023-12-15T23:08:45.560Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3789, "blockHeight": 3789, "took": "7.328907ms"} -2023-12-15T23:08:45.689Z INFO sending PrepareRequest {"height": 3790, "view": 0} -2023-12-15T23:08:45.689Z INFO sending Commit {"height": 3790, "view": 0} -2023-12-15T23:08:45.689Z INFO approving block {"height": 3790, "hash": "d81212f435f57682f3c64a6aa50686c24fe7edeca7b6a8b0584722257fd60616", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24e7c2cb157a9c7f390d5e484ca1899b294926f240d3726f58f0bd8e1459e504"} -2023-12-15T23:08:45.692Z INFO initializing dbft {"height": 3791, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:45.693Z debug frostfs-node/morph.go:229 new block {"index": 3790} -2023-12-15T23:08:46.560Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3790, "blockHeight": 3790, "took": "7.031948ms"} -2023-12-15T23:08:46.690Z INFO sending PrepareRequest {"height": 3791, "view": 0} -2023-12-15T23:08:46.691Z INFO sending Commit {"height": 3791, "view": 0} -2023-12-15T23:08:46.691Z INFO approving block {"height": 3791, "hash": "6d5190708fa0af0882d8fb5e84f9e0c819a45b5de90b5b9f8f2748522528076e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d81212f435f57682f3c64a6aa50686c24fe7edeca7b6a8b0584722257fd60616"} -2023-12-15T23:08:46.692Z INFO initializing dbft {"height": 3792, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:46.693Z debug frostfs-node/morph.go:229 new block {"index": 3791} -2023-12-15T23:08:47.566Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3791, "blockHeight": 3791, "took": "11.954821ms"} -2023-12-15T23:08:47.692Z INFO sending PrepareRequest {"height": 3792, "view": 0} -2023-12-15T23:08:47.692Z INFO sending Commit {"height": 3792, "view": 0} -2023-12-15T23:08:47.692Z INFO approving block {"height": 3792, "hash": "cdbaebaf3b9bf9b21e62c396a5176eb20df3c30e1f695fde5f1b9b74467d3534", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d5190708fa0af0882d8fb5e84f9e0c819a45b5de90b5b9f8f2748522528076e"} -2023-12-15T23:08:47.694Z INFO initializing dbft {"height": 3793, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:47.696Z debug frostfs-node/morph.go:229 new block {"index": 3792} -2023-12-15T23:08:48.560Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3792, "blockHeight": 3792, "took": "5.279284ms"} -2023-12-15T23:08:48.694Z INFO sending PrepareRequest {"height": 3793, "view": 0} -2023-12-15T23:08:48.694Z INFO sending Commit {"height": 3793, "view": 0} -2023-12-15T23:08:48.694Z INFO approving block {"height": 3793, "hash": "d28aecb47705f5e35301ad8159e9e108072e2b59f7780fcb760b86d8bb1a6248", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdbaebaf3b9bf9b21e62c396a5176eb20df3c30e1f695fde5f1b9b74467d3534"} -2023-12-15T23:08:48.695Z INFO initializing dbft {"height": 3794, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:48.696Z debug frostfs-node/morph.go:229 new block {"index": 3793} -2023-12-15T23:08:49.569Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3793, "blockHeight": 3793, "took": "12.983144ms"} -2023-12-15T23:08:49.696Z INFO sending PrepareRequest {"height": 3794, "view": 0} -2023-12-15T23:08:49.697Z INFO sending Commit {"height": 3794, "view": 0} -2023-12-15T23:08:49.697Z INFO approving block {"height": 3794, "hash": "9aa330351f53980c2fef7ebd5b8962335a5d5d77a90cd1a0de8332b5cdb80030", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d28aecb47705f5e35301ad8159e9e108072e2b59f7780fcb760b86d8bb1a6248"} -2023-12-15T23:08:49.699Z INFO initializing dbft {"height": 3795, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:49.701Z debug frostfs-node/morph.go:229 new block {"index": 3794} -2023-12-15T23:08:49.707Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 16, "iteration": 2, "error": "no data for 1 iteration in 16 epoch for consumers's trusts"} -2023-12-15T23:08:50.565Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3794, "blockHeight": 3794, "took": "8.045586ms"} -2023-12-15T23:08:50.698Z INFO sending PrepareRequest {"height": 3795, "view": 0} -2023-12-15T23:08:50.698Z INFO sending Commit {"height": 3795, "view": 0} -2023-12-15T23:08:50.699Z INFO approving block {"height": 3795, "hash": "6e0f571022309a18d39cdb86d97b5f35cdadbd03bba7dba21c258daba0df99f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9aa330351f53980c2fef7ebd5b8962335a5d5d77a90cd1a0de8332b5cdb80030"} -2023-12-15T23:08:50.700Z INFO initializing dbft {"height": 3796, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:50.701Z debug frostfs-node/morph.go:229 new block {"index": 3795} -2023-12-15T23:08:50.705Z info settlement/calls.go:106 start basic income distribution {"epoch": 16} -2023-12-15T23:08:51.563Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3795, "blockHeight": 3795, "took": "5.634803ms"} -2023-12-15T23:08:51.700Z INFO sending PrepareRequest {"height": 3796, "view": 0} -2023-12-15T23:08:51.700Z INFO sending Commit {"height": 3796, "view": 0} -2023-12-15T23:08:51.700Z INFO approving block {"height": 3796, "hash": "5715e2f7bdcc7a7faa71b43f87f660a26b76022bb6bc5cbb4276b0ad712e19a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e0f571022309a18d39cdb86d97b5f35cdadbd03bba7dba21c258daba0df99f5"} -2023-12-15T23:08:51.701Z INFO initializing dbft {"height": 3797, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:51.702Z debug frostfs-node/morph.go:229 new block {"index": 3796} -2023-12-15T23:08:52.565Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3796, "blockHeight": 3796, "took": "6.709264ms"} -2023-12-15T23:08:52.701Z INFO sending PrepareRequest {"height": 3797, "view": 0} -2023-12-15T23:08:52.701Z INFO sending Commit {"height": 3797, "view": 0} -2023-12-15T23:08:52.702Z INFO approving block {"height": 3797, "hash": "3a37e38603ca210b5299ff8b63c3d343884d3f804bf7ddfa88119f2b3772e811", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5715e2f7bdcc7a7faa71b43f87f660a26b76022bb6bc5cbb4276b0ad712e19a4"} -2023-12-15T23:08:52.703Z INFO initializing dbft {"height": 3798, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:52.703Z debug frostfs-node/morph.go:229 new block {"index": 3797} -2023-12-15T23:08:53.565Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3797, "blockHeight": 3797, "took": "6.462801ms"} -2023-12-15T23:08:53.703Z INFO sending PrepareRequest {"height": 3798, "view": 0} -2023-12-15T23:08:53.703Z INFO sending Commit {"height": 3798, "view": 0} -2023-12-15T23:08:53.703Z INFO approving block {"height": 3798, "hash": "9509c19f94ef9a61068098fa7376772d8d8184e2d8079663fc1650fd42291290", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a37e38603ca210b5299ff8b63c3d343884d3f804bf7ddfa88119f2b3772e811"} -2023-12-15T23:08:53.704Z INFO initializing dbft {"height": 3799, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:53.705Z debug frostfs-node/morph.go:229 new block {"index": 3798} -2023-12-15T23:08:54.566Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3798, "blockHeight": 3798, "took": "6.691017ms"} -2023-12-15T23:08:54.705Z INFO sending PrepareRequest {"height": 3799, "view": 0} -2023-12-15T23:08:54.705Z INFO sending Commit {"height": 3799, "view": 0} -2023-12-15T23:08:54.705Z INFO approving block {"height": 3799, "hash": "665c878ae3203a7b84e2b75872b54d3378191b2caa6695c05b6fb36995155ddc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9509c19f94ef9a61068098fa7376772d8d8184e2d8079663fc1650fd42291290"} -2023-12-15T23:08:54.707Z INFO initializing dbft {"height": 3800, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:54.707Z debug frostfs-node/morph.go:229 new block {"index": 3799} -2023-12-15T23:08:55.568Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3799, "blockHeight": 3799, "took": "7.918914ms"} -2023-12-15T23:08:55.706Z INFO sending PrepareRequest {"height": 3800, "view": 0} -2023-12-15T23:08:55.706Z INFO sending Commit {"height": 3800, "view": 0} -2023-12-15T23:08:55.707Z INFO approving block {"height": 3800, "hash": "10570052c3c8a6742f8f9397da3be0b5957227686e3e1413bec2d90cc4edde26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "665c878ae3203a7b84e2b75872b54d3378191b2caa6695c05b6fb36995155ddc"} -2023-12-15T23:08:55.708Z INFO initializing dbft {"height": 3801, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:55.708Z debug frostfs-node/morph.go:229 new block {"index": 3800} -2023-12-15T23:08:56.568Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3800, "blockHeight": 3800, "took": "6.851162ms"} -2023-12-15T23:08:56.708Z INFO sending PrepareRequest {"height": 3801, "view": 0} -2023-12-15T23:08:56.708Z INFO sending Commit {"height": 3801, "view": 0} -2023-12-15T23:08:56.709Z INFO approving block {"height": 3801, "hash": "60ecc1411655bed170f550273366ff0b37f4add27c2c2baf6573b781f9664ea3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10570052c3c8a6742f8f9397da3be0b5957227686e3e1413bec2d90cc4edde26"} -2023-12-15T23:08:56.711Z INFO initializing dbft {"height": 3802, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:56.712Z debug frostfs-node/morph.go:229 new block {"index": 3801} -2023-12-15T23:08:57.570Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3801, "blockHeight": 3801, "took": "7.74955ms"} -2023-12-15T23:08:57.711Z INFO sending PrepareRequest {"height": 3802, "view": 0} -2023-12-15T23:08:57.711Z INFO sending Commit {"height": 3802, "view": 0} -2023-12-15T23:08:57.712Z INFO approving block {"height": 3802, "hash": "deeba5f688e20c92cc2356c906874109133bfd81272011c223a9225bdc77036a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60ecc1411655bed170f550273366ff0b37f4add27c2c2baf6573b781f9664ea3"} -2023-12-15T23:08:57.713Z INFO initializing dbft {"height": 3803, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:57.714Z debug frostfs-node/morph.go:229 new block {"index": 3802} -2023-12-15T23:08:58.569Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3802, "blockHeight": 3802, "took": "6.304327ms"} -2023-12-15T23:08:58.713Z INFO sending PrepareRequest {"height": 3803, "view": 0} -2023-12-15T23:08:58.713Z INFO sending Commit {"height": 3803, "view": 0} -2023-12-15T23:08:58.714Z INFO approving block {"height": 3803, "hash": "0c6f7c74ce0f563f23de07b36ccfbcb80df2e0ef4bfc4d62d9fde178dd4e02b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "deeba5f688e20c92cc2356c906874109133bfd81272011c223a9225bdc77036a"} -2023-12-15T23:08:58.715Z INFO initializing dbft {"height": 3804, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:58.716Z debug frostfs-node/morph.go:229 new block {"index": 3803} -2023-12-15T23:08:59.572Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3803, "blockHeight": 3803, "took": "7.95688ms"} -2023-12-15T23:08:59.715Z INFO sending PrepareRequest {"height": 3804, "view": 0} -2023-12-15T23:08:59.715Z INFO sending Commit {"height": 3804, "view": 0} -2023-12-15T23:08:59.715Z INFO approving block {"height": 3804, "hash": "500338d41df94a4337a1fee6f9bb0b51d76e4369ce00a583ee0e6ad8523970ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c6f7c74ce0f563f23de07b36ccfbcb80df2e0ef4bfc4d62d9fde178dd4e02b5"} -2023-12-15T23:08:59.716Z INFO initializing dbft {"height": 3805, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:08:59.717Z debug frostfs-node/morph.go:229 new block {"index": 3804} -2023-12-15T23:09:00.578Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3804, "blockHeight": 3804, "took": "13.612663ms"} -2023-12-15T23:09:00.717Z INFO sending PrepareRequest {"height": 3805, "view": 0} -2023-12-15T23:09:00.717Z INFO sending Commit {"height": 3805, "view": 0} -2023-12-15T23:09:00.718Z INFO approving block {"height": 3805, "hash": "29da04a59903fe2e01c954f7cd1c40404a48519720cd95b632d21a89ef693b1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "500338d41df94a4337a1fee6f9bb0b51d76e4369ce00a583ee0e6ad8523970ce"} -2023-12-15T23:09:00.719Z INFO initializing dbft {"height": 3806, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:00.720Z debug frostfs-node/morph.go:229 new block {"index": 3805} -2023-12-15T23:09:01.576Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3805, "blockHeight": 3805, "took": "10.348855ms"} -2023-12-15T23:09:01.719Z INFO sending PrepareRequest {"height": 3806, "view": 0} -2023-12-15T23:09:01.720Z INFO sending Commit {"height": 3806, "view": 0} -2023-12-15T23:09:01.720Z INFO approving block {"height": 3806, "hash": "aad8af78cb36babf61029edd560fce7bc9de178f669d89a853bf3242333b4c0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29da04a59903fe2e01c954f7cd1c40404a48519720cd95b632d21a89ef693b1e"} -2023-12-15T23:09:01.722Z INFO initializing dbft {"height": 3807, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:01.723Z debug frostfs-node/morph.go:229 new block {"index": 3806} -2023-12-15T23:09:02.574Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3806, "blockHeight": 3806, "took": "7.305031ms"} -2023-12-15T23:09:02.721Z INFO sending PrepareRequest {"height": 3807, "view": 0} -2023-12-15T23:09:02.722Z INFO sending Commit {"height": 3807, "view": 0} -2023-12-15T23:09:02.722Z INFO approving block {"height": 3807, "hash": "88f599bf4edb8f11b58ebc4677d1d7d9b7d45bca04e272242efab3b7ec55c4e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad8af78cb36babf61029edd560fce7bc9de178f669d89a853bf3242333b4c0a"} -2023-12-15T23:09:02.723Z INFO initializing dbft {"height": 3808, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:02.723Z debug frostfs-node/morph.go:229 new block {"index": 3807} -2023-12-15T23:09:03.578Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3807, "blockHeight": 3807, "took": "10.189424ms"} -2023-12-15T23:09:03.723Z INFO sending PrepareRequest {"height": 3808, "view": 0} -2023-12-15T23:09:03.723Z INFO sending Commit {"height": 3808, "view": 0} -2023-12-15T23:09:03.724Z INFO approving block {"height": 3808, "hash": "c8c2a05dfe56a962b5ae59ca6ea0bacaf25edd923f638198edbe598dc2add680", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88f599bf4edb8f11b58ebc4677d1d7d9b7d45bca04e272242efab3b7ec55c4e9"} -2023-12-15T23:09:03.726Z INFO initializing dbft {"height": 3809, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:03.727Z debug frostfs-node/morph.go:229 new block {"index": 3808} -2023-12-15T23:09:04.575Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3808, "blockHeight": 3808, "took": "6.875385ms"} -2023-12-15T23:09:04.725Z INFO sending PrepareRequest {"height": 3809, "view": 0} -2023-12-15T23:09:04.726Z INFO sending Commit {"height": 3809, "view": 0} -2023-12-15T23:09:04.726Z INFO approving block {"height": 3809, "hash": "3facb08e12f0391c533fec3b176aeb3fd7ceded5164e62eee575d062d63ab78e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8c2a05dfe56a962b5ae59ca6ea0bacaf25edd923f638198edbe598dc2add680"} -2023-12-15T23:09:04.728Z INFO initializing dbft {"height": 3810, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:04.729Z debug frostfs-node/morph.go:229 new block {"index": 3809} -2023-12-15T23:09:05.576Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3809, "blockHeight": 3809, "took": "6.993489ms"} -2023-12-15T23:09:05.727Z INFO sending PrepareRequest {"height": 3810, "view": 0} -2023-12-15T23:09:05.728Z INFO sending Commit {"height": 3810, "view": 0} -2023-12-15T23:09:05.728Z INFO approving block {"height": 3810, "hash": "0075fc5f5ab5827631357567c3be6268b8d0727f57265927918ab8ad2cfffdc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3facb08e12f0391c533fec3b176aeb3fd7ceded5164e62eee575d062d63ab78e"} -2023-12-15T23:09:05.730Z INFO initializing dbft {"height": 3811, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:05.732Z debug frostfs-node/morph.go:229 new block {"index": 3810} -2023-12-15T23:09:06.577Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3810, "blockHeight": 3810, "took": "6.760345ms"} -2023-12-15T23:09:06.729Z INFO sending PrepareRequest {"height": 3811, "view": 0} -2023-12-15T23:09:06.729Z INFO sending Commit {"height": 3811, "view": 0} -2023-12-15T23:09:06.730Z INFO approving block {"height": 3811, "hash": "5f4111ba2f07df24f9d47a3a94bab397fec1abb452c7ae0e17317cf282aeaf2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0075fc5f5ab5827631357567c3be6268b8d0727f57265927918ab8ad2cfffdc1"} -2023-12-15T23:09:06.731Z INFO initializing dbft {"height": 3812, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:06.731Z debug frostfs-node/morph.go:229 new block {"index": 3811} -2023-12-15T23:09:07.580Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3811, "blockHeight": 3811, "took": "9.074363ms"} -2023-12-15T23:09:07.730Z INFO sending PrepareRequest {"height": 3812, "view": 0} -2023-12-15T23:09:07.730Z INFO sending Commit {"height": 3812, "view": 0} -2023-12-15T23:09:07.731Z INFO approving block {"height": 3812, "hash": "22b9660e40286f37dc1b5d4f4bb3c52db6d47e05586c9f6fa5cf4056a4070f91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f4111ba2f07df24f9d47a3a94bab397fec1abb452c7ae0e17317cf282aeaf2f"} -2023-12-15T23:09:07.732Z INFO initializing dbft {"height": 3813, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:07.733Z debug frostfs-node/morph.go:229 new block {"index": 3812} -2023-12-15T23:09:08.577Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3812, "blockHeight": 3812, "took": "5.621232ms"} -2023-12-15T23:09:08.732Z INFO sending PrepareRequest {"height": 3813, "view": 0} -2023-12-15T23:09:08.732Z INFO sending Commit {"height": 3813, "view": 0} -2023-12-15T23:09:08.733Z INFO approving block {"height": 3813, "hash": "b8077499c7d4747a24635c8a0c6d8289f2a549ffa004e73949435cc82e373727", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22b9660e40286f37dc1b5d4f4bb3c52db6d47e05586c9f6fa5cf4056a4070f91"} -2023-12-15T23:09:08.734Z INFO initializing dbft {"height": 3814, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:08.734Z debug frostfs-node/morph.go:229 new block {"index": 3813} -2023-12-15T23:09:09.578Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3813, "blockHeight": 3813, "took": "5.907517ms"} -2023-12-15T23:09:09.734Z INFO sending PrepareRequest {"height": 3814, "view": 0} -2023-12-15T23:09:09.734Z INFO sending Commit {"height": 3814, "view": 0} -2023-12-15T23:09:09.734Z INFO approving block {"height": 3814, "hash": "0d830c7c898741522168fd4513d2fd042044c10ad564bfb2ad3be25df52cfa28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8077499c7d4747a24635c8a0c6d8289f2a549ffa004e73949435cc82e373727"} -2023-12-15T23:09:09.736Z INFO initializing dbft {"height": 3815, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:09.736Z debug frostfs-node/morph.go:229 new block {"index": 3814} -2023-12-15T23:09:10.578Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3814, "blockHeight": 3814, "took": "5.488556ms"} -2023-12-15T23:09:10.736Z INFO sending PrepareRequest {"height": 3815, "view": 0} -2023-12-15T23:09:10.736Z INFO sending Commit {"height": 3815, "view": 0} -2023-12-15T23:09:10.736Z INFO approving block {"height": 3815, "hash": "336b27371ca66245a0042a84c61bcad0846635b52ff7f55e9f816d8a6e88b1e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d830c7c898741522168fd4513d2fd042044c10ad564bfb2ad3be25df52cfa28"} -2023-12-15T23:09:10.737Z INFO initializing dbft {"height": 3816, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:10.738Z debug frostfs-node/morph.go:229 new block {"index": 3815} -2023-12-15T23:09:11.581Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3815, "blockHeight": 3815, "took": "7.515938ms"} -2023-12-15T23:09:11.738Z INFO sending PrepareRequest {"height": 3816, "view": 0} -2023-12-15T23:09:11.738Z INFO sending Commit {"height": 3816, "view": 0} -2023-12-15T23:09:11.738Z INFO approving block {"height": 3816, "hash": "98d4ad0938bd7d024c933986977dc1a69bf2671c3e723b81faf73785ef7c5aed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "336b27371ca66245a0042a84c61bcad0846635b52ff7f55e9f816d8a6e88b1e5"} -2023-12-15T23:09:11.741Z INFO initializing dbft {"height": 3817, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:11.742Z debug frostfs-node/morph.go:229 new block {"index": 3816} -2023-12-15T23:09:12.587Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3816, "blockHeight": 3816, "took": "12.486021ms"} -2023-12-15T23:09:12.740Z INFO sending PrepareRequest {"height": 3817, "view": 0} -2023-12-15T23:09:12.740Z INFO sending Commit {"height": 3817, "view": 0} -2023-12-15T23:09:12.741Z INFO approving block {"height": 3817, "hash": "b4fba47771c791ab50da55ebd7c895ca747e9b7bd9bc47e6994af76491801596", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98d4ad0938bd7d024c933986977dc1a69bf2671c3e723b81faf73785ef7c5aed"} -2023-12-15T23:09:12.742Z INFO initializing dbft {"height": 3818, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:12.743Z debug frostfs-node/morph.go:229 new block {"index": 3817} -2023-12-15T23:09:12.747Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:09:12.753Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:09:12.754Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:09:13.582Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3817, "blockHeight": 3817, "took": "7.224544ms"} -2023-12-15T23:09:13.741Z INFO sending PrepareRequest {"height": 3818, "view": 0} -2023-12-15T23:09:13.741Z INFO sending Commit {"height": 3818, "view": 0} -2023-12-15T23:09:13.741Z INFO approving block {"height": 3818, "hash": "fe35264e53fc079c90802b04ba15fef49f035451b0554332af1239c541532dd4", "tx_count": 2, "merkle": "48f314ea876a4082a1273aac8974be581a09204fae07a655fb7f4365b2d12552", "prev": "b4fba47771c791ab50da55ebd7c895ca747e9b7bd9bc47e6994af76491801596"} -2023-12-15T23:09:13.742Z INFO runtime log {"tx": "756c70d2cdee46f936df0391a07ef5b2c621f63322b4ab0b8e1fbd60cb8650c2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:09:13.742Z INFO runtime log {"tx": "756c70d2cdee46f936df0391a07ef5b2c621f63322b4ab0b8e1fbd60cb8650c2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:09:13.743Z INFO initializing dbft {"height": 3819, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:13.745Z debug frostfs-node/morph.go:229 new block {"index": 3818} -2023-12-15T23:09:14.592Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 3818, "blockHeight": 3818, "took": "15.775062ms"} -2023-12-15T23:09:14.743Z INFO sending PrepareRequest {"height": 3819, "view": 0} -2023-12-15T23:09:14.743Z INFO sending Commit {"height": 3819, "view": 0} -2023-12-15T23:09:14.743Z INFO approving block {"height": 3819, "hash": "87cdfa2320c45f5f888d796611b5dc959589ca4843209250cf52b67645aff43d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe35264e53fc079c90802b04ba15fef49f035451b0554332af1239c541532dd4"} -2023-12-15T23:09:14.744Z INFO initializing dbft {"height": 3820, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:14.744Z debug frostfs-node/morph.go:229 new block {"index": 3819} -2023-12-15T23:09:15.584Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3819, "blockHeight": 3819, "took": "6.314063ms"} -2023-12-15T23:09:15.744Z INFO sending PrepareRequest {"height": 3820, "view": 0} -2023-12-15T23:09:15.745Z INFO sending Commit {"height": 3820, "view": 0} -2023-12-15T23:09:15.745Z INFO approving block {"height": 3820, "hash": "4a05dc62232f091e85252024e411d97234765e61e6d9612297481b174ac1258e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87cdfa2320c45f5f888d796611b5dc959589ca4843209250cf52b67645aff43d"} -2023-12-15T23:09:15.746Z INFO initializing dbft {"height": 3821, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:15.747Z debug frostfs-node/morph.go:229 new block {"index": 3820} -2023-12-15T23:09:16.586Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3820, "blockHeight": 3820, "took": "7.653302ms"} -2023-12-15T23:09:16.746Z INFO sending PrepareRequest {"height": 3821, "view": 0} -2023-12-15T23:09:16.746Z INFO sending Commit {"height": 3821, "view": 0} -2023-12-15T23:09:16.747Z INFO approving block {"height": 3821, "hash": "9daf735cc31eb22c9875eb13aaee9fcbc70cc99f67d5a7dfc07786c41f7e7ffa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a05dc62232f091e85252024e411d97234765e61e6d9612297481b174ac1258e"} -2023-12-15T23:09:16.748Z INFO initializing dbft {"height": 3822, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:16.748Z debug frostfs-node/morph.go:229 new block {"index": 3821} -2023-12-15T23:09:17.593Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3821, "blockHeight": 3821, "took": "14.153092ms"} -2023-12-15T23:09:17.748Z INFO sending PrepareRequest {"height": 3822, "view": 0} -2023-12-15T23:09:17.748Z INFO sending Commit {"height": 3822, "view": 0} -2023-12-15T23:09:17.749Z INFO approving block {"height": 3822, "hash": "ea6a649ffc241ff409ad8bdc2829005633deb2ff7de4e00012a23d8f4d75a910", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9daf735cc31eb22c9875eb13aaee9fcbc70cc99f67d5a7dfc07786c41f7e7ffa"} -2023-12-15T23:09:17.750Z INFO initializing dbft {"height": 3823, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:17.750Z debug frostfs-node/morph.go:229 new block {"index": 3822} -2023-12-15T23:09:18.592Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3822, "blockHeight": 3822, "took": "12.159816ms"} -2023-12-15T23:09:18.750Z INFO sending PrepareRequest {"height": 3823, "view": 0} -2023-12-15T23:09:18.751Z INFO sending Commit {"height": 3823, "view": 0} -2023-12-15T23:09:18.751Z INFO approving block {"height": 3823, "hash": "563550eb697f6f7d530a37d4f856348222ad32cceaa7bb77716c11d378c919f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea6a649ffc241ff409ad8bdc2829005633deb2ff7de4e00012a23d8f4d75a910"} -2023-12-15T23:09:18.753Z INFO initializing dbft {"height": 3824, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:18.754Z debug frostfs-node/morph.go:229 new block {"index": 3823} -2023-12-15T23:09:19.588Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3823, "blockHeight": 3823, "took": "7.100593ms"} -2023-12-15T23:09:19.752Z INFO sending PrepareRequest {"height": 3824, "view": 0} -2023-12-15T23:09:19.753Z INFO sending Commit {"height": 3824, "view": 0} -2023-12-15T23:09:19.753Z INFO approving block {"height": 3824, "hash": "6771dc9661fa5669c48fac965f170b2764611d9822e1cc62937bb5f138c8be32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "563550eb697f6f7d530a37d4f856348222ad32cceaa7bb77716c11d378c919f8"} -2023-12-15T23:09:19.754Z INFO initializing dbft {"height": 3825, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:19.755Z debug frostfs-node/morph.go:229 new block {"index": 3824} -2023-12-15T23:09:20.592Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3824, "blockHeight": 3824, "took": "9.702972ms"} -2023-12-15T23:09:20.754Z INFO sending PrepareRequest {"height": 3825, "view": 0} -2023-12-15T23:09:20.755Z INFO sending Commit {"height": 3825, "view": 0} -2023-12-15T23:09:20.755Z INFO approving block {"height": 3825, "hash": "bb3ba8e40f3aced6599d3edf5fe51f92e046dcccb49d03fc3502171ef674d47d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6771dc9661fa5669c48fac965f170b2764611d9822e1cc62937bb5f138c8be32"} -2023-12-15T23:09:20.757Z INFO initializing dbft {"height": 3826, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:20.758Z debug frostfs-node/morph.go:229 new block {"index": 3825} -2023-12-15T23:09:21.591Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3825, "blockHeight": 3825, "took": "8.242383ms"} -2023-12-15T23:09:21.756Z INFO sending PrepareRequest {"height": 3826, "view": 0} -2023-12-15T23:09:21.756Z INFO sending Commit {"height": 3826, "view": 0} -2023-12-15T23:09:21.756Z INFO approving block {"height": 3826, "hash": "9206f17d77034216eb43abe73bb69c8319a95bed6fdcf3ad66ad2a1bcdd0cf3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb3ba8e40f3aced6599d3edf5fe51f92e046dcccb49d03fc3502171ef674d47d"} -2023-12-15T23:09:21.757Z INFO initializing dbft {"height": 3827, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:21.758Z debug frostfs-node/morph.go:229 new block {"index": 3826} -2023-12-15T23:09:22.592Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3826, "blockHeight": 3826, "took": "7.834388ms"} -2023-12-15T23:09:22.758Z INFO sending PrepareRequest {"height": 3827, "view": 0} -2023-12-15T23:09:22.758Z INFO sending Commit {"height": 3827, "view": 0} -2023-12-15T23:09:22.759Z INFO approving block {"height": 3827, "hash": "2e53136d4f9f8aa865b3702fedf3ee29914f9475ed53b79ec9ae21fcf6cd3847", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9206f17d77034216eb43abe73bb69c8319a95bed6fdcf3ad66ad2a1bcdd0cf3e"} -2023-12-15T23:09:22.760Z INFO initializing dbft {"height": 3828, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:22.760Z debug frostfs-node/morph.go:229 new block {"index": 3827} -2023-12-15T23:09:23.595Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3827, "blockHeight": 3827, "took": "10.870443ms"} -2023-12-15T23:09:23.759Z INFO sending PrepareRequest {"height": 3828, "view": 0} -2023-12-15T23:09:23.760Z INFO sending Commit {"height": 3828, "view": 0} -2023-12-15T23:09:23.761Z INFO approving block {"height": 3828, "hash": "89d05f9a2871d764dd69573b10826980d577f1dbd67ca2593ed5be5d25c14223", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e53136d4f9f8aa865b3702fedf3ee29914f9475ed53b79ec9ae21fcf6cd3847"} -2023-12-15T23:09:23.762Z INFO initializing dbft {"height": 3829, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:23.763Z debug frostfs-node/morph.go:229 new block {"index": 3828} -2023-12-15T23:09:24.597Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3828, "blockHeight": 3828, "took": "11.595409ms"} -2023-12-15T23:09:24.762Z INFO sending PrepareRequest {"height": 3829, "view": 0} -2023-12-15T23:09:24.762Z INFO sending Commit {"height": 3829, "view": 0} -2023-12-15T23:09:24.763Z INFO approving block {"height": 3829, "hash": "59da9198371d597ef44ba1def53536efaf547fd5da1777d050b65d52cf64e857", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89d05f9a2871d764dd69573b10826980d577f1dbd67ca2593ed5be5d25c14223"} -2023-12-15T23:09:24.763Z INFO initializing dbft {"height": 3830, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:24.764Z debug frostfs-node/morph.go:229 new block {"index": 3829} -2023-12-15T23:09:25.594Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3829, "blockHeight": 3829, "took": "8.266057ms"} -2023-12-15T23:09:25.764Z INFO sending PrepareRequest {"height": 3830, "view": 0} -2023-12-15T23:09:25.765Z INFO sending Commit {"height": 3830, "view": 0} -2023-12-15T23:09:25.765Z INFO approving block {"height": 3830, "hash": "8027cfe3b0b8d40309fb01d5d85edab274e21cd711f531b680cb8333cf7c7692", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59da9198371d597ef44ba1def53536efaf547fd5da1777d050b65d52cf64e857"} -2023-12-15T23:09:25.767Z INFO initializing dbft {"height": 3831, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:25.767Z debug frostfs-node/morph.go:229 new block {"index": 3830} -2023-12-15T23:09:26.599Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3830, "blockHeight": 3830, "took": "12.176338ms"} -2023-12-15T23:09:26.766Z INFO sending PrepareRequest {"height": 3831, "view": 0} -2023-12-15T23:09:26.766Z INFO sending Commit {"height": 3831, "view": 0} -2023-12-15T23:09:26.766Z INFO approving block {"height": 3831, "hash": "be9e8e3a67426f41a3c34ac86b91fff349674763ec33cbfbc1ad7840d463b6db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8027cfe3b0b8d40309fb01d5d85edab274e21cd711f531b680cb8333cf7c7692"} -2023-12-15T23:09:26.767Z INFO initializing dbft {"height": 3832, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:26.768Z debug frostfs-node/morph.go:229 new block {"index": 3831} -2023-12-15T23:09:27.595Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3831, "blockHeight": 3831, "took": "7.237533ms"} -2023-12-15T23:09:27.767Z INFO sending PrepareRequest {"height": 3832, "view": 0} -2023-12-15T23:09:27.767Z INFO sending Commit {"height": 3832, "view": 0} -2023-12-15T23:09:27.767Z INFO approving block {"height": 3832, "hash": "3682f31d1212274e02c04d92fd99b47553e67075c08b92abb8db33db07da6300", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be9e8e3a67426f41a3c34ac86b91fff349674763ec33cbfbc1ad7840d463b6db"} -2023-12-15T23:09:27.768Z INFO initializing dbft {"height": 3833, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:27.769Z debug frostfs-node/morph.go:229 new block {"index": 3832} -2023-12-15T23:09:28.598Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3832, "blockHeight": 3832, "took": "9.185959ms"} -2023-12-15T23:09:28.768Z INFO sending PrepareRequest {"height": 3833, "view": 0} -2023-12-15T23:09:28.768Z INFO sending Commit {"height": 3833, "view": 0} -2023-12-15T23:09:28.769Z INFO approving block {"height": 3833, "hash": "785fada87384196aa2ecd8b763af7318f7dd9174aff96dea6d102ccd1fd9569d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3682f31d1212274e02c04d92fd99b47553e67075c08b92abb8db33db07da6300"} -2023-12-15T23:09:28.771Z INFO initializing dbft {"height": 3834, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:28.772Z debug frostfs-node/morph.go:229 new block {"index": 3833} -2023-12-15T23:09:29.595Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3833, "blockHeight": 3833, "took": "5.557687ms"} -2023-12-15T23:09:29.770Z INFO sending PrepareRequest {"height": 3834, "view": 0} -2023-12-15T23:09:29.770Z INFO sending Commit {"height": 3834, "view": 0} -2023-12-15T23:09:29.771Z INFO approving block {"height": 3834, "hash": "f0b32d6abe9c6f2550f918d251f6fada8bad9b8ff09a73c71a4f6ab4165c340f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "785fada87384196aa2ecd8b763af7318f7dd9174aff96dea6d102ccd1fd9569d"} -2023-12-15T23:09:29.778Z INFO initializing dbft {"height": 3835, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:29.779Z debug frostfs-node/morph.go:229 new block {"index": 3834} -2023-12-15T23:09:30.598Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3834, "blockHeight": 3834, "took": "7.483159ms"} -2023-12-15T23:09:30.773Z INFO sending PrepareRequest {"height": 3835, "view": 0} -2023-12-15T23:09:30.773Z INFO sending Commit {"height": 3835, "view": 0} -2023-12-15T23:09:30.774Z INFO approving block {"height": 3835, "hash": "66f9fd514ebb8a887c876a0a6aa9ed99465eae6f8ec9d3aaac7c1a12c9d85544", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0b32d6abe9c6f2550f918d251f6fada8bad9b8ff09a73c71a4f6ab4165c340f"} -2023-12-15T23:09:30.776Z INFO initializing dbft {"height": 3836, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:30.776Z debug frostfs-node/morph.go:229 new block {"index": 3835} -2023-12-15T23:09:31.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3835, "blockHeight": 3835, "took": "9.571875ms"} -2023-12-15T23:09:31.775Z INFO sending PrepareRequest {"height": 3836, "view": 0} -2023-12-15T23:09:31.775Z INFO sending Commit {"height": 3836, "view": 0} -2023-12-15T23:09:31.775Z INFO approving block {"height": 3836, "hash": "01ab24fb0e1fec14bf7941364957b8e8e9af3880e386dad35310eef047bea63f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66f9fd514ebb8a887c876a0a6aa9ed99465eae6f8ec9d3aaac7c1a12c9d85544"} -2023-12-15T23:09:31.776Z INFO initializing dbft {"height": 3837, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:31.776Z debug frostfs-node/morph.go:229 new block {"index": 3836} -2023-12-15T23:09:32.598Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3836, "blockHeight": 3836, "took": "5.651524ms"} -2023-12-15T23:09:32.776Z INFO sending PrepareRequest {"height": 3837, "view": 0} -2023-12-15T23:09:32.776Z INFO sending Commit {"height": 3837, "view": 0} -2023-12-15T23:09:32.776Z INFO approving block {"height": 3837, "hash": "589cf6acf156323f23a162a7f51d312f180ac7c6e957c61db52ee7ed15574114", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01ab24fb0e1fec14bf7941364957b8e8e9af3880e386dad35310eef047bea63f"} -2023-12-15T23:09:32.777Z INFO initializing dbft {"height": 3838, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:32.778Z debug frostfs-node/morph.go:229 new block {"index": 3837} -2023-12-15T23:09:33.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3837, "blockHeight": 3837, "took": "8.13972ms"} -2023-12-15T23:09:33.778Z INFO sending PrepareRequest {"height": 3838, "view": 0} -2023-12-15T23:09:33.779Z INFO sending Commit {"height": 3838, "view": 0} -2023-12-15T23:09:33.779Z INFO approving block {"height": 3838, "hash": "425b373d82c1ebf10ee6f51955ca47b42c5666b22ff7278a379244fe7247d748", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "589cf6acf156323f23a162a7f51d312f180ac7c6e957c61db52ee7ed15574114"} -2023-12-15T23:09:33.780Z INFO initializing dbft {"height": 3839, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:33.784Z debug frostfs-node/morph.go:229 new block {"index": 3838} -2023-12-15T23:09:34.601Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3838, "blockHeight": 3838, "took": "7.434399ms"} -2023-12-15T23:09:34.780Z INFO sending PrepareRequest {"height": 3839, "view": 0} -2023-12-15T23:09:34.780Z INFO sending Commit {"height": 3839, "view": 0} -2023-12-15T23:09:34.780Z INFO approving block {"height": 3839, "hash": "1812062dd054176098b077a927e22db0b497660b3e66d3f5bd93a2d72f518a17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "425b373d82c1ebf10ee6f51955ca47b42c5666b22ff7278a379244fe7247d748"} -2023-12-15T23:09:34.782Z INFO initializing dbft {"height": 3840, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:34.782Z debug frostfs-node/morph.go:229 new block {"index": 3839} -2023-12-15T23:09:35.603Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 3839, "blockHeight": 3839, "took": "8.171441ms"} -2023-12-15T23:09:35.782Z INFO sending PrepareRequest {"height": 3840, "view": 0} -2023-12-15T23:09:35.783Z INFO sending Commit {"height": 3840, "view": 0} -2023-12-15T23:09:35.783Z INFO approving block {"height": 3840, "hash": "81e84bf585509641968a3df3e10f228d6e4cbc06fba2cde6a3e6375b8fc57429", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1812062dd054176098b077a927e22db0b497660b3e66d3f5bd93a2d72f518a17"} -2023-12-15T23:09:35.784Z INFO initializing dbft {"height": 3841, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:35.787Z debug frostfs-node/morph.go:229 new block {"index": 3840} -2023-12-15T23:09:36.602Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3840, "blockHeight": 3840, "took": "6.40084ms"} -2023-12-15T23:09:36.784Z INFO sending PrepareRequest {"height": 3841, "view": 0} -2023-12-15T23:09:36.784Z INFO sending Commit {"height": 3841, "view": 0} -2023-12-15T23:09:36.784Z INFO approving block {"height": 3841, "hash": "c53651147c14b95cb61e6e93f30df89ab2675a7552cf0804b1f744b74d2bfa89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81e84bf585509641968a3df3e10f228d6e4cbc06fba2cde6a3e6375b8fc57429"} -2023-12-15T23:09:36.787Z INFO initializing dbft {"height": 3842, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:36.788Z debug frostfs-node/morph.go:229 new block {"index": 3841} -2023-12-15T23:09:37.608Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3841, "blockHeight": 3841, "took": "11.810768ms"} -2023-12-15T23:09:37.785Z INFO sending PrepareRequest {"height": 3842, "view": 0} -2023-12-15T23:09:37.786Z INFO sending Commit {"height": 3842, "view": 0} -2023-12-15T23:09:37.786Z INFO approving block {"height": 3842, "hash": "15252146864a109e8de66229c5d38e03c9c69cd9ee3388af39e50a8a61f170e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c53651147c14b95cb61e6e93f30df89ab2675a7552cf0804b1f744b74d2bfa89"} -2023-12-15T23:09:37.788Z INFO initializing dbft {"height": 3843, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:37.789Z debug frostfs-node/morph.go:229 new block {"index": 3842} -2023-12-15T23:09:38.609Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3842, "blockHeight": 3842, "took": "11.577176ms"} -2023-12-15T23:09:38.787Z INFO sending PrepareRequest {"height": 3843, "view": 0} -2023-12-15T23:09:38.788Z INFO sending Commit {"height": 3843, "view": 0} -2023-12-15T23:09:38.788Z INFO approving block {"height": 3843, "hash": "336fb70f6ae51fe8c4f5cfd5d3d727b543d5b75974ddc0fa5b8e8bbce8c23c8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15252146864a109e8de66229c5d38e03c9c69cd9ee3388af39e50a8a61f170e1"} -2023-12-15T23:09:38.791Z INFO initializing dbft {"height": 3844, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:38.793Z debug frostfs-node/morph.go:229 new block {"index": 3843} -2023-12-15T23:09:39.606Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3843, "blockHeight": 3843, "took": "8.5785ms"} -2023-12-15T23:09:39.789Z INFO sending PrepareRequest {"height": 3844, "view": 0} -2023-12-15T23:09:39.789Z INFO sending Commit {"height": 3844, "view": 0} -2023-12-15T23:09:39.790Z INFO approving block {"height": 3844, "hash": "01e93902de2b880762d7384c8c554359b28317e817e50e4203062860e72b6653", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "336fb70f6ae51fe8c4f5cfd5d3d727b543d5b75974ddc0fa5b8e8bbce8c23c8f"} -2023-12-15T23:09:39.792Z INFO initializing dbft {"height": 3845, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:39.792Z debug frostfs-node/morph.go:229 new block {"index": 3844} -2023-12-15T23:09:40.608Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3844, "blockHeight": 3844, "took": "9.561743ms"} -2023-12-15T23:09:40.791Z INFO sending PrepareRequest {"height": 3845, "view": 0} -2023-12-15T23:09:40.791Z INFO sending Commit {"height": 3845, "view": 0} -2023-12-15T23:09:40.792Z INFO approving block {"height": 3845, "hash": "e3c188833daaad11d7c7c749a142dfa4b54b56e09830ea3d9995f234466ddd40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01e93902de2b880762d7384c8c554359b28317e817e50e4203062860e72b6653"} -2023-12-15T23:09:40.793Z INFO initializing dbft {"height": 3846, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:40.795Z debug frostfs-node/morph.go:229 new block {"index": 3845} -2023-12-15T23:09:41.606Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3845, "blockHeight": 3845, "took": "7.020084ms"} -2023-12-15T23:09:41.793Z INFO sending PrepareRequest {"height": 3846, "view": 0} -2023-12-15T23:09:41.793Z INFO sending Commit {"height": 3846, "view": 0} -2023-12-15T23:09:41.793Z INFO approving block {"height": 3846, "hash": "1e5e0866adc276de67b5e10f654e27f2e51c342296f3a44e87c0e39320912082", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3c188833daaad11d7c7c749a142dfa4b54b56e09830ea3d9995f234466ddd40"} -2023-12-15T23:09:41.795Z INFO initializing dbft {"height": 3847, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:41.795Z debug frostfs-node/morph.go:229 new block {"index": 3846} -2023-12-15T23:09:42.607Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3846, "blockHeight": 3846, "took": "6.669449ms"} -2023-12-15T23:09:42.794Z INFO sending PrepareRequest {"height": 3847, "view": 0} -2023-12-15T23:09:42.794Z INFO sending Commit {"height": 3847, "view": 0} -2023-12-15T23:09:42.794Z INFO approving block {"height": 3847, "hash": "c14cc6c2fece242196cc33ebd6bb38c9fa466f12815072f85615b4d2e9a9a271", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e5e0866adc276de67b5e10f654e27f2e51c342296f3a44e87c0e39320912082"} -2023-12-15T23:09:42.795Z INFO initializing dbft {"height": 3848, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:42.796Z debug frostfs-node/morph.go:229 new block {"index": 3847} -2023-12-15T23:09:43.610Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3847, "blockHeight": 3847, "took": "9.322516ms"} -2023-12-15T23:09:43.796Z INFO sending PrepareRequest {"height": 3848, "view": 0} -2023-12-15T23:09:43.796Z INFO sending Commit {"height": 3848, "view": 0} -2023-12-15T23:09:43.797Z INFO approving block {"height": 3848, "hash": "072f73c016251cd268fba62ca882c5dc1a86433e1fb7895017c9b0c7e2b5f70c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c14cc6c2fece242196cc33ebd6bb38c9fa466f12815072f85615b4d2e9a9a271"} -2023-12-15T23:09:43.799Z INFO initializing dbft {"height": 3849, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:43.799Z debug frostfs-node/morph.go:229 new block {"index": 3848} -2023-12-15T23:09:44.612Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3848, "blockHeight": 3848, "took": "9.881742ms"} -2023-12-15T23:09:44.798Z INFO sending PrepareRequest {"height": 3849, "view": 0} -2023-12-15T23:09:44.798Z INFO sending Commit {"height": 3849, "view": 0} -2023-12-15T23:09:44.799Z INFO approving block {"height": 3849, "hash": "8648c8c29eb685d27f0a8e58c04c53c63575d28cb434b2d4b51775fdc221125a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "072f73c016251cd268fba62ca882c5dc1a86433e1fb7895017c9b0c7e2b5f70c"} -2023-12-15T23:09:44.800Z INFO initializing dbft {"height": 3850, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:44.800Z debug frostfs-node/morph.go:229 new block {"index": 3849} -2023-12-15T23:09:45.610Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3849, "blockHeight": 3849, "took": "6.85849ms"} -2023-12-15T23:09:45.799Z INFO sending PrepareRequest {"height": 3850, "view": 0} -2023-12-15T23:09:45.800Z INFO sending Commit {"height": 3850, "view": 0} -2023-12-15T23:09:45.800Z INFO approving block {"height": 3850, "hash": "ae382b59ca01389e9404ab64b1d4f656e5745ed395d5082782b39f3e03daa098", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8648c8c29eb685d27f0a8e58c04c53c63575d28cb434b2d4b51775fdc221125a"} -2023-12-15T23:09:45.801Z INFO initializing dbft {"height": 3851, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:45.802Z debug frostfs-node/morph.go:229 new block {"index": 3850} -2023-12-15T23:09:46.615Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3850, "blockHeight": 3850, "took": "11.278484ms"} -2023-12-15T23:09:46.801Z INFO sending PrepareRequest {"height": 3851, "view": 0} -2023-12-15T23:09:46.801Z INFO sending Commit {"height": 3851, "view": 0} -2023-12-15T23:09:46.802Z INFO approving block {"height": 3851, "hash": "660967a2404c4346b71f87c61b15e80062f40ef20d9f8cad6881879f270a73db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae382b59ca01389e9404ab64b1d4f656e5745ed395d5082782b39f3e03daa098"} -2023-12-15T23:09:46.802Z INFO initializing dbft {"height": 3852, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:46.803Z debug frostfs-node/morph.go:229 new block {"index": 3851} -2023-12-15T23:09:47.618Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3851, "blockHeight": 3851, "took": "12.602057ms"} -2023-12-15T23:09:47.802Z INFO sending PrepareRequest {"height": 3852, "view": 0} -2023-12-15T23:09:47.803Z INFO sending Commit {"height": 3852, "view": 0} -2023-12-15T23:09:47.803Z INFO approving block {"height": 3852, "hash": "235b3a8063395d915b84b46ff26a1cfc0b2fcecbd1c05d55a7d8e2bd05497368", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "660967a2404c4346b71f87c61b15e80062f40ef20d9f8cad6881879f270a73db"} -2023-12-15T23:09:47.805Z INFO initializing dbft {"height": 3853, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:47.806Z debug frostfs-node/morph.go:229 new block {"index": 3852} -2023-12-15T23:09:48.614Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3852, "blockHeight": 3852, "took": "8.309796ms"} -2023-12-15T23:09:48.804Z INFO sending PrepareRequest {"height": 3853, "view": 0} -2023-12-15T23:09:48.804Z INFO sending Commit {"height": 3853, "view": 0} -2023-12-15T23:09:48.805Z INFO approving block {"height": 3853, "hash": "fce67ffb16cc121fa0d1aebb517f9b619db0a8c49343782ad67d8b6df1f3b2d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "235b3a8063395d915b84b46ff26a1cfc0b2fcecbd1c05d55a7d8e2bd05497368"} -2023-12-15T23:09:48.806Z INFO initializing dbft {"height": 3854, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:48.806Z debug frostfs-node/morph.go:229 new block {"index": 3853} -2023-12-15T23:09:49.613Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3853, "blockHeight": 3853, "took": "6.320973ms"} -2023-12-15T23:09:49.807Z INFO sending PrepareRequest {"height": 3854, "view": 0} -2023-12-15T23:09:49.807Z INFO sending Commit {"height": 3854, "view": 0} -2023-12-15T23:09:49.807Z INFO approving block {"height": 3854, "hash": "d4166b241436bc38c8807c2053e492a4d18703d4f90b0d35b0cb3378094e9dcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fce67ffb16cc121fa0d1aebb517f9b619db0a8c49343782ad67d8b6df1f3b2d1"} -2023-12-15T23:09:49.809Z INFO initializing dbft {"height": 3855, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:49.809Z debug frostfs-node/morph.go:229 new block {"index": 3854} -2023-12-15T23:09:49.813Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 16, "iteration": 3, "error": "no data for 2 iteration in 16 epoch for consumers's trusts"} -2023-12-15T23:09:50.615Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3854, "blockHeight": 3854, "took": "8.48492ms"} -2023-12-15T23:09:50.810Z INFO sending PrepareRequest {"height": 3855, "view": 0} -2023-12-15T23:09:50.810Z INFO sending Commit {"height": 3855, "view": 0} -2023-12-15T23:09:50.811Z INFO approving block {"height": 3855, "hash": "9c27e2236823eb8b9524fff106524528115176fea4abe6e53040508b4ac209a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4166b241436bc38c8807c2053e492a4d18703d4f90b0d35b0cb3378094e9dcf"} -2023-12-15T23:09:50.813Z INFO initializing dbft {"height": 3856, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:50.814Z debug frostfs-node/morph.go:229 new block {"index": 3855} -2023-12-15T23:09:50.818Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:09:50.828Z INFO runtime log {"tx": "063197969bc649ea6ceb258dd2a6373aa18d9000fdf387798ecf4aaac3f94057", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:09:51.616Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3855, "blockHeight": 3855, "took": "8.297702ms"} -2023-12-15T23:09:51.812Z INFO sending PrepareRequest {"height": 3856, "view": 0} -2023-12-15T23:09:51.812Z INFO sending Commit {"height": 3856, "view": 0} -2023-12-15T23:09:51.813Z INFO approving block {"height": 3856, "hash": "210437110f932b70e4a837a2c0d5ec3fe433261a77d8de02769264f252996dff", "tx_count": 1, "merkle": "46e8498b96a2d05c5aa96143f5967b6ee0381ea52fb2f3294876f753f9169f41", "prev": "9c27e2236823eb8b9524fff106524528115176fea4abe6e53040508b4ac209a0"} -2023-12-15T23:09:51.814Z INFO runtime log {"tx": "419f16f953f7764829f3b22fa51e38e06e7b96f54361a95a5cd0a2968b49e846", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:09:51.815Z INFO initializing dbft {"height": 3857, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:51.816Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 18} -2023-12-15T23:09:51.817Z debug frostfs-node/morph.go:229 new block {"index": 3856} -2023-12-15T23:09:51.817Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T23:09:51.819Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 18} -2023-12-15T23:09:51.819Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:09:51.819Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 18} -2023-12-15T23:09:51.818Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:09:51.824Z debug controller/calls.go:95 starting to report local trust values {"epoch": 17} -2023-12-15T23:09:51.825Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 17} -2023-12-15T23:09:51.825Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 18} -2023-12-15T23:09:51.825Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 18} -2023-12-15T23:09:51.828Z INFO runtime log {"tx": "7ab41e068a761eb6f3e71d6a2af07b91dddb0f360c4795cf432b3bd1e9cc786b", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:09:51.836Z debug controller/calls.go:146 reporting successfully finished {"epoch": 17} -2023-12-15T23:09:51.837Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 17} -2023-12-15T23:09:51.838Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:09:51.842Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:09:51.842Z info audit/handlers.go:13 new round of audit {"epoch": 18} -2023-12-15T23:09:51.843Z info settlement/calls.go:26 new audit settlement event {"epoch": 18} -2023-12-15T23:09:51.844Z info client/notary.go:214 notary deposit invoke {"amount": 4592437189, "expire_at": 4294967295, "vub": 3859, "tx_hash": "e1a48eb90e870bb67e886d014171792a61f4b28e5810f61e8108106284b7ecad"} -2023-12-15T23:09:51.845Z info settlement/handlers.go:14 process audit settlements {"epoch": 18} -2023-12-15T23:09:51.845Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 18} -2023-12-15T23:09:51.848Z info settlement/handlers.go:18 audit processing finished {"epoch": 18} -2023-12-15T23:09:51.852Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 4000, "fallback_valid_for": 40, "tx_hash": "1833178a4812bb93cb1755213cad7860458ce7c4ff830d7770d47cd5b1bd2e88"} -2023-12-15T23:09:51.855Z info audit/process.go:39 select containers for audit {"epoch": 18, "amount": 0} -2023-12-15T23:09:51.858Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T23:09:51.859Z info client/notary.go:214 notary deposit invoke {"amount": 259294102678, "expire_at": 4294967295, "vub": 3859, "tx_hash": "558d2b53aeb2839bdf5b6ea26fe5aad0f7fb160d4e9315251cbd575fe6f9f957"} -2023-12-15T23:09:52.621Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 3856, "blockHeight": 3856, "took": "13.13574ms"} -2023-12-15T23:09:52.814Z INFO sending PrepareRequest {"height": 3857, "view": 0} -2023-12-15T23:09:52.814Z INFO sending Commit {"height": 3857, "view": 0} -2023-12-15T23:09:52.814Z INFO approving block {"height": 3857, "hash": "5479ffcf812cdb2650dd395888a072790956cd2118c67bda6a02d09e295ad26e", "tx_count": 3, "merkle": "628b96f928930bf5a2e92f5f0c53f43990ccaa80e2cbf8ca9a1ba89df10d3c68", "prev": "210437110f932b70e4a837a2c0d5ec3fe433261a77d8de02769264f252996dff"} -2023-12-15T23:09:52.816Z INFO runtime log {"tx": "913e0f9b0369a5ab81ab607e3945414c2650c681d5b48ef8cbf33c45b3b918b0", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:09:52.818Z INFO initializing dbft {"height": 3858, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:52.818Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 17} -2023-12-15T23:09:52.820Z debug frostfs-node/morph.go:229 new block {"index": 3857} -2023-12-15T23:09:52.821Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 17} -2023-12-15T23:09:52.821Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 17} -2023-12-15T23:09:53.628Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 3857, "blockHeight": 3857, "took": "19.662356ms"} -2023-12-15T23:09:53.816Z INFO sending PrepareRequest {"height": 3858, "view": 0} -2023-12-15T23:09:53.816Z INFO sending Commit {"height": 3858, "view": 0} -2023-12-15T23:09:53.816Z INFO approving block {"height": 3858, "hash": "50a90c2f745f89568e9cba1d7d51579e7aae974d51713623c02f1609b5088473", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5479ffcf812cdb2650dd395888a072790956cd2118c67bda6a02d09e295ad26e"} -2023-12-15T23:09:53.818Z INFO initializing dbft {"height": 3859, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:53.818Z debug frostfs-node/morph.go:229 new block {"index": 3858} -2023-12-15T23:09:54.619Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3858, "blockHeight": 3858, "took": "9.789765ms"} -2023-12-15T23:09:54.818Z INFO sending PrepareRequest {"height": 3859, "view": 0} -2023-12-15T23:09:54.818Z INFO sending Commit {"height": 3859, "view": 0} -2023-12-15T23:09:54.819Z INFO approving block {"height": 3859, "hash": "e1ff72ddf8d590ea5640fe2076bfd74379d1f58d991b65ec9bda4113d664b584", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50a90c2f745f89568e9cba1d7d51579e7aae974d51713623c02f1609b5088473"} -2023-12-15T23:09:54.822Z INFO initializing dbft {"height": 3860, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:54.823Z debug frostfs-node/morph.go:229 new block {"index": 3859} -2023-12-15T23:09:55.616Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3859, "blockHeight": 3859, "took": "6.109068ms"} -2023-12-15T23:09:55.820Z INFO sending PrepareRequest {"height": 3860, "view": 0} -2023-12-15T23:09:55.821Z INFO sending Commit {"height": 3860, "view": 0} -2023-12-15T23:09:55.821Z INFO approving block {"height": 3860, "hash": "921d2c00b19fa645de5318270a319f4ac6aff667014389458c57927d291c15f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1ff72ddf8d590ea5640fe2076bfd74379d1f58d991b65ec9bda4113d664b584"} -2023-12-15T23:09:55.822Z INFO initializing dbft {"height": 3861, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:55.823Z debug frostfs-node/morph.go:229 new block {"index": 3860} -2023-12-15T23:09:56.618Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3860, "blockHeight": 3860, "took": "6.769273ms"} -2023-12-15T23:09:56.822Z INFO sending PrepareRequest {"height": 3861, "view": 0} -2023-12-15T23:09:56.822Z INFO sending Commit {"height": 3861, "view": 0} -2023-12-15T23:09:56.822Z INFO approving block {"height": 3861, "hash": "1b932127d8673a7fbf68c2cc4d99749eeeeceb1c76777bc2ab7b39098946af5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "921d2c00b19fa645de5318270a319f4ac6aff667014389458c57927d291c15f0"} -2023-12-15T23:09:56.824Z INFO initializing dbft {"height": 3862, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:56.825Z debug frostfs-node/morph.go:229 new block {"index": 3861} -2023-12-15T23:09:57.619Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3861, "blockHeight": 3861, "took": "7.738315ms"} -2023-12-15T23:09:57.823Z INFO sending PrepareRequest {"height": 3862, "view": 0} -2023-12-15T23:09:57.824Z INFO sending Commit {"height": 3862, "view": 0} -2023-12-15T23:09:57.827Z INFO approving block {"height": 3862, "hash": "b3616fa28b62c67e74815c63328b1c502a88fb5e19ad179419c640b4aded9022", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b932127d8673a7fbf68c2cc4d99749eeeeceb1c76777bc2ab7b39098946af5b"} -2023-12-15T23:09:57.829Z INFO initializing dbft {"height": 3863, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:57.830Z debug frostfs-node/morph.go:229 new block {"index": 3862} -2023-12-15T23:09:58.618Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3862, "blockHeight": 3862, "took": "5.84081ms"} -2023-12-15T23:09:58.829Z INFO sending PrepareRequest {"height": 3863, "view": 0} -2023-12-15T23:09:58.829Z INFO sending Commit {"height": 3863, "view": 0} -2023-12-15T23:09:58.829Z INFO approving block {"height": 3863, "hash": "1c43c382f3c8a38e47a320cb42c50088d9cef4f89b39eb6c8942b241767197e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3616fa28b62c67e74815c63328b1c502a88fb5e19ad179419c640b4aded9022"} -2023-12-15T23:09:58.830Z INFO initializing dbft {"height": 3864, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:58.831Z debug frostfs-node/morph.go:229 new block {"index": 3863} -2023-12-15T23:09:59.618Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3863, "blockHeight": 3863, "took": "5.54845ms"} -2023-12-15T23:09:59.830Z INFO sending PrepareRequest {"height": 3864, "view": 0} -2023-12-15T23:09:59.831Z INFO sending Commit {"height": 3864, "view": 0} -2023-12-15T23:09:59.831Z INFO approving block {"height": 3864, "hash": "7c106ce6c9eb294425b873204b21ba9f975e572e1ec22b522ab3942f3ddc9d1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c43c382f3c8a38e47a320cb42c50088d9cef4f89b39eb6c8942b241767197e5"} -2023-12-15T23:09:59.833Z INFO initializing dbft {"height": 3865, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:09:59.834Z debug frostfs-node/morph.go:229 new block {"index": 3864} -2023-12-15T23:10:00.625Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3864, "blockHeight": 3864, "took": "11.470731ms"} -2023-12-15T23:10:00.832Z INFO sending PrepareRequest {"height": 3865, "view": 0} -2023-12-15T23:10:00.832Z INFO sending Commit {"height": 3865, "view": 0} -2023-12-15T23:10:00.832Z INFO approving block {"height": 3865, "hash": "6e13f9cc55662a0f9f76ef52952b75be2c2af410fa9fb4d7e7bfdb0ab3dc60a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c106ce6c9eb294425b873204b21ba9f975e572e1ec22b522ab3942f3ddc9d1a"} -2023-12-15T23:10:00.834Z INFO initializing dbft {"height": 3866, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:00.835Z debug frostfs-node/morph.go:229 new block {"index": 3865} -2023-12-15T23:10:01.620Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3865, "blockHeight": 3865, "took": "6.48418ms"} -2023-12-15T23:10:01.833Z INFO sending PrepareRequest {"height": 3866, "view": 0} -2023-12-15T23:10:01.834Z INFO sending Commit {"height": 3866, "view": 0} -2023-12-15T23:10:01.834Z INFO approving block {"height": 3866, "hash": "a07741cca4361309cda3a9380cf60f6c10ddc6b5d773320f69f1c15a5f0f7754", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e13f9cc55662a0f9f76ef52952b75be2c2af410fa9fb4d7e7bfdb0ab3dc60a0"} -2023-12-15T23:10:01.836Z INFO initializing dbft {"height": 3867, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:01.837Z debug frostfs-node/morph.go:229 new block {"index": 3866} -2023-12-15T23:10:02.625Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3866, "blockHeight": 3866, "took": "10.544141ms"} -2023-12-15T23:10:02.836Z INFO sending PrepareRequest {"height": 3867, "view": 0} -2023-12-15T23:10:02.836Z INFO sending Commit {"height": 3867, "view": 0} -2023-12-15T23:10:02.836Z INFO approving block {"height": 3867, "hash": "3c6be69489c6c005a93f729bb4f70056500d89ce555a19b411fcb5021d094b1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a07741cca4361309cda3a9380cf60f6c10ddc6b5d773320f69f1c15a5f0f7754"} -2023-12-15T23:10:02.838Z INFO initializing dbft {"height": 3868, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:02.839Z debug frostfs-node/morph.go:229 new block {"index": 3867} -2023-12-15T23:10:02.843Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:10:02.844Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:10:02.844Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:10:03.624Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3867, "blockHeight": 3867, "took": "8.650363ms"} -2023-12-15T23:10:03.837Z INFO sending PrepareRequest {"height": 3868, "view": 0} -2023-12-15T23:10:03.837Z INFO sending Commit {"height": 3868, "view": 0} -2023-12-15T23:10:03.838Z INFO approving block {"height": 3868, "hash": "c2a7a284141fcaa36953d170bd48e35db9fc3316da2d8fa2b0c46c1c4a0e740a", "tx_count": 2, "merkle": "230b0d7e457f724d15f289a9c3be96b2343f1aa84457fd48859942d7d20fb9c7", "prev": "3c6be69489c6c005a93f729bb4f70056500d89ce555a19b411fcb5021d094b1c"} -2023-12-15T23:10:03.839Z INFO runtime log {"tx": "08f485f4c9c4a36dd96df84b8ef2d0f898c3c02e4aa814daf6e534b3cfac2d75", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:10:03.839Z INFO runtime log {"tx": "08f485f4c9c4a36dd96df84b8ef2d0f898c3c02e4aa814daf6e534b3cfac2d75", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:10:03.840Z INFO initializing dbft {"height": 3869, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:03.841Z debug frostfs-node/morph.go:229 new block {"index": 3868} -2023-12-15T23:10:04.629Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 3868, "blockHeight": 3868, "took": "13.04439ms"} -2023-12-15T23:10:04.839Z INFO sending PrepareRequest {"height": 3869, "view": 0} -2023-12-15T23:10:04.839Z INFO sending Commit {"height": 3869, "view": 0} -2023-12-15T23:10:04.839Z INFO approving block {"height": 3869, "hash": "5223dc9238b2525e6e97383040d2e261dcb40f0648fc93ceb4660280ee946e1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2a7a284141fcaa36953d170bd48e35db9fc3316da2d8fa2b0c46c1c4a0e740a"} -2023-12-15T23:10:04.841Z INFO initializing dbft {"height": 3870, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:04.841Z debug frostfs-node/morph.go:229 new block {"index": 3869} -2023-12-15T23:10:05.628Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3869, "blockHeight": 3869, "took": "10.717691ms"} -2023-12-15T23:10:05.841Z INFO sending PrepareRequest {"height": 3870, "view": 0} -2023-12-15T23:10:05.841Z INFO sending Commit {"height": 3870, "view": 0} -2023-12-15T23:10:05.841Z INFO approving block {"height": 3870, "hash": "421db829ecac38b9deac382a0a1195f7a8332cdf5d31d86d2870a42ad42b73ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5223dc9238b2525e6e97383040d2e261dcb40f0648fc93ceb4660280ee946e1f"} -2023-12-15T23:10:05.843Z INFO initializing dbft {"height": 3871, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:05.844Z debug frostfs-node/morph.go:229 new block {"index": 3870} -2023-12-15T23:10:06.624Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3870, "blockHeight": 3870, "took": "6.324834ms"} -2023-12-15T23:10:06.843Z INFO sending PrepareRequest {"height": 3871, "view": 0} -2023-12-15T23:10:06.843Z INFO sending Commit {"height": 3871, "view": 0} -2023-12-15T23:10:06.843Z INFO approving block {"height": 3871, "hash": "3f49f560322310d8c5813b446d2606360ebb07180ec4ca282a691c05c9082373", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "421db829ecac38b9deac382a0a1195f7a8332cdf5d31d86d2870a42ad42b73ee"} -2023-12-15T23:10:06.845Z INFO initializing dbft {"height": 3872, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:06.845Z debug frostfs-node/morph.go:229 new block {"index": 3871} -2023-12-15T23:10:07.626Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3871, "blockHeight": 3871, "took": "6.996927ms"} -2023-12-15T23:10:07.845Z INFO sending PrepareRequest {"height": 3872, "view": 0} -2023-12-15T23:10:07.845Z INFO sending Commit {"height": 3872, "view": 0} -2023-12-15T23:10:07.845Z INFO approving block {"height": 3872, "hash": "5fab782834df5adad0a1bceae01ffe7a555399126132dc00155ec4d3503a8dc2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f49f560322310d8c5813b446d2606360ebb07180ec4ca282a691c05c9082373"} -2023-12-15T23:10:07.847Z INFO initializing dbft {"height": 3873, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:07.847Z debug frostfs-node/morph.go:229 new block {"index": 3872} -2023-12-15T23:10:08.630Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3872, "blockHeight": 3872, "took": "10.189051ms"} -2023-12-15T23:10:08.847Z INFO sending PrepareRequest {"height": 3873, "view": 0} -2023-12-15T23:10:08.847Z INFO sending Commit {"height": 3873, "view": 0} -2023-12-15T23:10:08.848Z INFO approving block {"height": 3873, "hash": "54bddddf53b590c99798c1e1641f53cf148c40f3e9d7414ed3280718f257ee88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5fab782834df5adad0a1bceae01ffe7a555399126132dc00155ec4d3503a8dc2"} -2023-12-15T23:10:08.850Z INFO initializing dbft {"height": 3874, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:08.851Z debug frostfs-node/morph.go:229 new block {"index": 3873} -2023-12-15T23:10:09.629Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3873, "blockHeight": 3873, "took": "8.543889ms"} -2023-12-15T23:10:09.849Z INFO sending PrepareRequest {"height": 3874, "view": 0} -2023-12-15T23:10:09.849Z INFO sending Commit {"height": 3874, "view": 0} -2023-12-15T23:10:09.849Z INFO approving block {"height": 3874, "hash": "ec0f9bb3dc76832dd5c04621296bb486ff3a29d014bb59628191141748b1b40b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54bddddf53b590c99798c1e1641f53cf148c40f3e9d7414ed3280718f257ee88"} -2023-12-15T23:10:09.850Z INFO initializing dbft {"height": 3875, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:09.851Z debug frostfs-node/morph.go:229 new block {"index": 3874} -2023-12-15T23:10:10.629Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3874, "blockHeight": 3874, "took": "7.273907ms"} -2023-12-15T23:10:10.850Z INFO sending PrepareRequest {"height": 3875, "view": 0} -2023-12-15T23:10:10.850Z INFO sending Commit {"height": 3875, "view": 0} -2023-12-15T23:10:10.850Z INFO approving block {"height": 3875, "hash": "a7ebb8601e289de1635461a24401f1c591e744c3ca608fc6c2c5037cab9f6b47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec0f9bb3dc76832dd5c04621296bb486ff3a29d014bb59628191141748b1b40b"} -2023-12-15T23:10:10.852Z INFO initializing dbft {"height": 3876, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:10.853Z debug frostfs-node/morph.go:229 new block {"index": 3875} -2023-12-15T23:10:11.629Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3875, "blockHeight": 3875, "took": "6.560339ms"} -2023-12-15T23:10:11.851Z INFO sending PrepareRequest {"height": 3876, "view": 0} -2023-12-15T23:10:11.851Z INFO sending Commit {"height": 3876, "view": 0} -2023-12-15T23:10:11.851Z INFO approving block {"height": 3876, "hash": "2ba69cc6055ef21c7cafdfb32d25d1ce34d823468775521231f4abb82edd6851", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7ebb8601e289de1635461a24401f1c591e744c3ca608fc6c2c5037cab9f6b47"} -2023-12-15T23:10:11.853Z INFO initializing dbft {"height": 3877, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:11.853Z debug frostfs-node/morph.go:229 new block {"index": 3876} -2023-12-15T23:10:12.631Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3876, "blockHeight": 3876, "took": "8.259332ms"} -2023-12-15T23:10:12.853Z INFO sending PrepareRequest {"height": 3877, "view": 0} -2023-12-15T23:10:12.853Z INFO sending Commit {"height": 3877, "view": 0} -2023-12-15T23:10:12.853Z INFO approving block {"height": 3877, "hash": "2c7afdb293b9a01bff721bbbf55be3f011d67b0d03f261abd48523a2a3c4c4fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ba69cc6055ef21c7cafdfb32d25d1ce34d823468775521231f4abb82edd6851"} -2023-12-15T23:10:12.855Z INFO initializing dbft {"height": 3878, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:12.855Z debug frostfs-node/morph.go:229 new block {"index": 3877} -2023-12-15T23:10:13.633Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3877, "blockHeight": 3877, "took": "9.518877ms"} -2023-12-15T23:10:13.854Z INFO sending PrepareRequest {"height": 3878, "view": 0} -2023-12-15T23:10:13.855Z INFO sending Commit {"height": 3878, "view": 0} -2023-12-15T23:10:13.855Z INFO approving block {"height": 3878, "hash": "075c87a2df51ad89911708f0ec367fee6d411e40d961b97fcb20d2f233b1c84a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c7afdb293b9a01bff721bbbf55be3f011d67b0d03f261abd48523a2a3c4c4fd"} -2023-12-15T23:10:13.858Z INFO initializing dbft {"height": 3879, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:13.858Z debug frostfs-node/morph.go:229 new block {"index": 3878} -2023-12-15T23:10:14.634Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3878, "blockHeight": 3878, "took": "9.764161ms"} -2023-12-15T23:10:14.856Z INFO sending PrepareRequest {"height": 3879, "view": 0} -2023-12-15T23:10:14.856Z INFO sending Commit {"height": 3879, "view": 0} -2023-12-15T23:10:14.857Z INFO approving block {"height": 3879, "hash": "ae7d10d1d85db09ba9656a1abe12d08fe02094c7c074e7173a2c3800433dc8d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "075c87a2df51ad89911708f0ec367fee6d411e40d961b97fcb20d2f233b1c84a"} -2023-12-15T23:10:14.858Z INFO initializing dbft {"height": 3880, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:14.858Z debug frostfs-node/morph.go:229 new block {"index": 3879} -2023-12-15T23:10:15.635Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3879, "blockHeight": 3879, "took": "9.413434ms"} -2023-12-15T23:10:15.857Z INFO sending PrepareRequest {"height": 3880, "view": 0} -2023-12-15T23:10:15.857Z INFO sending Commit {"height": 3880, "view": 0} -2023-12-15T23:10:15.858Z INFO approving block {"height": 3880, "hash": "0b8b0c47df4d4f995e9d1e160ebf545c7537814d74d6d84f0e7b9a998c141cb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae7d10d1d85db09ba9656a1abe12d08fe02094c7c074e7173a2c3800433dc8d5"} -2023-12-15T23:10:15.859Z INFO initializing dbft {"height": 3881, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:15.860Z debug frostfs-node/morph.go:229 new block {"index": 3880} -2023-12-15T23:10:16.634Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3880, "blockHeight": 3880, "took": "8.128773ms"} -2023-12-15T23:10:16.859Z INFO sending PrepareRequest {"height": 3881, "view": 0} -2023-12-15T23:10:16.860Z INFO sending Commit {"height": 3881, "view": 0} -2023-12-15T23:10:16.860Z INFO approving block {"height": 3881, "hash": "e6fdbe47e8980d897dde243248078811ee405f9edb7695ba9ca6fdf39efa6c57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b8b0c47df4d4f995e9d1e160ebf545c7537814d74d6d84f0e7b9a998c141cb2"} -2023-12-15T23:10:16.861Z INFO initializing dbft {"height": 3882, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:16.862Z debug frostfs-node/morph.go:229 new block {"index": 3881} -2023-12-15T23:10:17.633Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3881, "blockHeight": 3881, "took": "5.764628ms"} -2023-12-15T23:10:17.861Z INFO sending PrepareRequest {"height": 3882, "view": 0} -2023-12-15T23:10:17.861Z INFO sending Commit {"height": 3882, "view": 0} -2023-12-15T23:10:17.861Z INFO approving block {"height": 3882, "hash": "cc7dc6c8464c0eedee2f4a8445236dfc4ca05181d1af9c3588f5793695e4b70e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6fdbe47e8980d897dde243248078811ee405f9edb7695ba9ca6fdf39efa6c57"} -2023-12-15T23:10:17.863Z INFO initializing dbft {"height": 3883, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:17.863Z debug frostfs-node/morph.go:229 new block {"index": 3882} -2023-12-15T23:10:18.636Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3882, "blockHeight": 3882, "took": "8.545879ms"} -2023-12-15T23:10:18.863Z INFO sending PrepareRequest {"height": 3883, "view": 0} -2023-12-15T23:10:18.863Z INFO sending Commit {"height": 3883, "view": 0} -2023-12-15T23:10:18.864Z INFO approving block {"height": 3883, "hash": "b4e32c4bc62ddded10e2c13920f8c6b527fa2f207cc78b9c72112436d02a7d02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc7dc6c8464c0eedee2f4a8445236dfc4ca05181d1af9c3588f5793695e4b70e"} -2023-12-15T23:10:18.865Z INFO initializing dbft {"height": 3884, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:18.866Z debug frostfs-node/morph.go:229 new block {"index": 3883} -2023-12-15T23:10:19.635Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3883, "blockHeight": 3883, "took": "5.984404ms"} -2023-12-15T23:10:19.866Z INFO sending PrepareRequest {"height": 3884, "view": 0} -2023-12-15T23:10:19.866Z INFO sending Commit {"height": 3884, "view": 0} -2023-12-15T23:10:19.866Z INFO approving block {"height": 3884, "hash": "6be0d176544e13d86fa2e39510437d21cc9e025161afc4ca059c526fd0b3247e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4e32c4bc62ddded10e2c13920f8c6b527fa2f207cc78b9c72112436d02a7d02"} -2023-12-15T23:10:19.868Z INFO initializing dbft {"height": 3885, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:19.868Z debug frostfs-node/morph.go:229 new block {"index": 3884} -2023-12-15T23:10:20.635Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3884, "blockHeight": 3884, "took": "5.61312ms"} -2023-12-15T23:10:20.867Z INFO sending PrepareRequest {"height": 3885, "view": 0} -2023-12-15T23:10:20.867Z INFO sending Commit {"height": 3885, "view": 0} -2023-12-15T23:10:20.868Z INFO approving block {"height": 3885, "hash": "154307fe0724d2d835aea9037bf1ca5109081079cefee4509cee2514a266069c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6be0d176544e13d86fa2e39510437d21cc9e025161afc4ca059c526fd0b3247e"} -2023-12-15T23:10:20.869Z INFO initializing dbft {"height": 3886, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:20.870Z debug frostfs-node/morph.go:229 new block {"index": 3885} -2023-12-15T23:10:21.639Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3885, "blockHeight": 3885, "took": "8.665216ms"} -2023-12-15T23:10:21.869Z INFO sending PrepareRequest {"height": 3886, "view": 0} -2023-12-15T23:10:21.870Z INFO sending Commit {"height": 3886, "view": 0} -2023-12-15T23:10:21.870Z INFO approving block {"height": 3886, "hash": "a1750ea9f90e445911ee491eab5a48da358728692d9fdab66ad27e8fb3ebc766", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "154307fe0724d2d835aea9037bf1ca5109081079cefee4509cee2514a266069c"} -2023-12-15T23:10:21.872Z INFO initializing dbft {"height": 3887, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:21.873Z debug frostfs-node/morph.go:229 new block {"index": 3886} -2023-12-15T23:10:22.638Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3886, "blockHeight": 3886, "took": "6.782648ms"} -2023-12-15T23:10:22.871Z INFO sending PrepareRequest {"height": 3887, "view": 0} -2023-12-15T23:10:22.871Z INFO sending Commit {"height": 3887, "view": 0} -2023-12-15T23:10:22.872Z INFO approving block {"height": 3887, "hash": "0f4b5cc490136fd400c67276a231c3d802ef60b1778fa11f13667310bfcea394", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1750ea9f90e445911ee491eab5a48da358728692d9fdab66ad27e8fb3ebc766"} -2023-12-15T23:10:22.873Z INFO initializing dbft {"height": 3888, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:22.874Z debug frostfs-node/morph.go:229 new block {"index": 3887} -2023-12-15T23:10:23.642Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3887, "blockHeight": 3887, "took": "10.680262ms"} -2023-12-15T23:10:23.873Z INFO sending PrepareRequest {"height": 3888, "view": 0} -2023-12-15T23:10:23.874Z INFO sending Commit {"height": 3888, "view": 0} -2023-12-15T23:10:23.874Z INFO approving block {"height": 3888, "hash": "5ba29b1f35df291d027afe4bc9f5e3e4a821408b0aee8b38ec3420ba916ed7e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f4b5cc490136fd400c67276a231c3d802ef60b1778fa11f13667310bfcea394"} -2023-12-15T23:10:23.876Z INFO initializing dbft {"height": 3889, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:23.878Z debug frostfs-node/morph.go:229 new block {"index": 3888} -2023-12-15T23:10:24.637Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3888, "blockHeight": 3888, "took": "5.490946ms"} -2023-12-15T23:10:24.875Z INFO sending PrepareRequest {"height": 3889, "view": 0} -2023-12-15T23:10:24.875Z INFO sending Commit {"height": 3889, "view": 0} -2023-12-15T23:10:24.876Z INFO approving block {"height": 3889, "hash": "bda6fba33aa38af031326f7dc67463a13f2582b4113dd163902e5a75abfcdc61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ba29b1f35df291d027afe4bc9f5e3e4a821408b0aee8b38ec3420ba916ed7e7"} -2023-12-15T23:10:24.878Z INFO initializing dbft {"height": 3890, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:24.879Z debug frostfs-node/morph.go:229 new block {"index": 3889} -2023-12-15T23:10:25.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3889, "blockHeight": 3889, "took": "11.349036ms"} -2023-12-15T23:10:25.877Z INFO sending PrepareRequest {"height": 3890, "view": 0} -2023-12-15T23:10:25.878Z INFO sending Commit {"height": 3890, "view": 0} -2023-12-15T23:10:25.878Z INFO approving block {"height": 3890, "hash": "8959a18578ca8470065ed8dcfaf55d299c690ab35226ca6b30fe1e814b702ebd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bda6fba33aa38af031326f7dc67463a13f2582b4113dd163902e5a75abfcdc61"} -2023-12-15T23:10:25.881Z INFO initializing dbft {"height": 3891, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:25.882Z debug frostfs-node/morph.go:229 new block {"index": 3890} -2023-12-15T23:10:26.641Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3890, "blockHeight": 3890, "took": "7.45872ms"} -2023-12-15T23:10:26.879Z INFO sending PrepareRequest {"height": 3891, "view": 0} -2023-12-15T23:10:26.880Z INFO sending Commit {"height": 3891, "view": 0} -2023-12-15T23:10:26.880Z INFO approving block {"height": 3891, "hash": "2762173fd7d533b1564200c9d4cdadfde7359701887b7fbb86f3a6fe6dd85607", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8959a18578ca8470065ed8dcfaf55d299c690ab35226ca6b30fe1e814b702ebd"} -2023-12-15T23:10:26.881Z INFO initializing dbft {"height": 3892, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:26.882Z debug frostfs-node/morph.go:229 new block {"index": 3891} -2023-12-15T23:10:27.639Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3891, "blockHeight": 3891, "took": "5.578172ms"} -2023-12-15T23:10:27.881Z INFO sending PrepareRequest {"height": 3892, "view": 0} -2023-12-15T23:10:27.881Z INFO sending Commit {"height": 3892, "view": 0} -2023-12-15T23:10:27.881Z INFO approving block {"height": 3892, "hash": "df23fc638cbe06b8bb911c0e0e729761b71e2e993e174327e6f22ed1f557b663", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2762173fd7d533b1564200c9d4cdadfde7359701887b7fbb86f3a6fe6dd85607"} -2023-12-15T23:10:27.882Z INFO initializing dbft {"height": 3893, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:27.883Z debug frostfs-node/morph.go:229 new block {"index": 3892} -2023-12-15T23:10:28.643Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3892, "blockHeight": 3892, "took": "8.941164ms"} -2023-12-15T23:10:28.882Z INFO sending PrepareRequest {"height": 3893, "view": 0} -2023-12-15T23:10:28.882Z INFO sending Commit {"height": 3893, "view": 0} -2023-12-15T23:10:28.883Z INFO approving block {"height": 3893, "hash": "98de96ff41705609260133042164e62efc78b2db93b3ca076dc4dd05f011d0b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df23fc638cbe06b8bb911c0e0e729761b71e2e993e174327e6f22ed1f557b663"} -2023-12-15T23:10:28.884Z INFO initializing dbft {"height": 3894, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:28.884Z debug frostfs-node/morph.go:229 new block {"index": 3893} -2023-12-15T23:10:29.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3893, "blockHeight": 3893, "took": "8.768928ms"} -2023-12-15T23:10:29.883Z INFO sending PrepareRequest {"height": 3894, "view": 0} -2023-12-15T23:10:29.883Z INFO sending Commit {"height": 3894, "view": 0} -2023-12-15T23:10:29.884Z INFO approving block {"height": 3894, "hash": "ff10b8364b57bfe36d966e109db00868f08ada87bc08a5dfbe4158161abb4139", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98de96ff41705609260133042164e62efc78b2db93b3ca076dc4dd05f011d0b5"} -2023-12-15T23:10:29.885Z INFO initializing dbft {"height": 3895, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:29.887Z debug frostfs-node/morph.go:229 new block {"index": 3894} -2023-12-15T23:10:30.645Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3894, "blockHeight": 3894, "took": "8.808317ms"} -2023-12-15T23:10:30.885Z INFO sending PrepareRequest {"height": 3895, "view": 0} -2023-12-15T23:10:30.886Z INFO sending Commit {"height": 3895, "view": 0} -2023-12-15T23:10:30.886Z INFO approving block {"height": 3895, "hash": "c8f9e33b8232661e46528f4e2c06fcc39b12bd7020689dcfdd7d17991f98c6d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff10b8364b57bfe36d966e109db00868f08ada87bc08a5dfbe4158161abb4139"} -2023-12-15T23:10:30.888Z INFO initializing dbft {"height": 3896, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:30.889Z debug frostfs-node/morph.go:229 new block {"index": 3895} -2023-12-15T23:10:31.645Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3895, "blockHeight": 3895, "took": "8.408888ms"} -2023-12-15T23:10:31.887Z INFO sending PrepareRequest {"height": 3896, "view": 0} -2023-12-15T23:10:31.888Z INFO sending Commit {"height": 3896, "view": 0} -2023-12-15T23:10:31.888Z INFO approving block {"height": 3896, "hash": "e3bd405399691dc01bc8ce62a39b59a44e2de43df7afb393d34ae7e74eb3cd80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8f9e33b8232661e46528f4e2c06fcc39b12bd7020689dcfdd7d17991f98c6d7"} -2023-12-15T23:10:31.891Z INFO initializing dbft {"height": 3897, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:31.891Z debug frostfs-node/morph.go:229 new block {"index": 3896} -2023-12-15T23:10:32.645Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3896, "blockHeight": 3896, "took": "7.465848ms"} -2023-12-15T23:10:32.889Z INFO sending PrepareRequest {"height": 3897, "view": 0} -2023-12-15T23:10:32.890Z INFO sending Commit {"height": 3897, "view": 0} -2023-12-15T23:10:32.890Z INFO approving block {"height": 3897, "hash": "3333fa924bd5b36e6a42e31d3eec58506be09889d31d5f84bc29d9e2f914cf48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3bd405399691dc01bc8ce62a39b59a44e2de43df7afb393d34ae7e74eb3cd80"} -2023-12-15T23:10:32.892Z INFO initializing dbft {"height": 3898, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:32.893Z debug frostfs-node/morph.go:229 new block {"index": 3897} -2023-12-15T23:10:33.644Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3897, "blockHeight": 3897, "took": "5.61657ms"} -2023-12-15T23:10:33.891Z INFO sending PrepareRequest {"height": 3898, "view": 0} -2023-12-15T23:10:33.891Z INFO sending Commit {"height": 3898, "view": 0} -2023-12-15T23:10:33.891Z INFO approving block {"height": 3898, "hash": "1f18000a07a5a750f991ef085d01894518eac68385aaaeb20af58bdd43e20ef3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3333fa924bd5b36e6a42e31d3eec58506be09889d31d5f84bc29d9e2f914cf48"} -2023-12-15T23:10:33.893Z INFO initializing dbft {"height": 3899, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:33.893Z debug frostfs-node/morph.go:229 new block {"index": 3898} -2023-12-15T23:10:34.650Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3898, "blockHeight": 3898, "took": "10.806095ms"} -2023-12-15T23:10:34.893Z INFO sending PrepareRequest {"height": 3899, "view": 0} -2023-12-15T23:10:34.893Z INFO sending Commit {"height": 3899, "view": 0} -2023-12-15T23:10:34.893Z INFO approving block {"height": 3899, "hash": "e02a6d0ec16be89bef9952171f2e896d28f446b16eda7eea08c5d678bb95975c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f18000a07a5a750f991ef085d01894518eac68385aaaeb20af58bdd43e20ef3"} -2023-12-15T23:10:34.895Z INFO initializing dbft {"height": 3900, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:34.896Z debug frostfs-node/morph.go:229 new block {"index": 3899} -2023-12-15T23:10:35.649Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3899, "blockHeight": 3899, "took": "8.20796ms"} -2023-12-15T23:10:35.895Z INFO sending PrepareRequest {"height": 3900, "view": 0} -2023-12-15T23:10:35.895Z INFO sending Commit {"height": 3900, "view": 0} -2023-12-15T23:10:35.895Z INFO approving block {"height": 3900, "hash": "935e0db8c8de9446303a25b92e7e696fa089114f9aad0a35c9ea240c12a4661d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e02a6d0ec16be89bef9952171f2e896d28f446b16eda7eea08c5d678bb95975c"} -2023-12-15T23:10:35.897Z INFO initializing dbft {"height": 3901, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:35.898Z debug frostfs-node/morph.go:229 new block {"index": 3900} -2023-12-15T23:10:36.647Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3900, "blockHeight": 3900, "took": "5.519286ms"} -2023-12-15T23:10:36.896Z INFO sending PrepareRequest {"height": 3901, "view": 0} -2023-12-15T23:10:36.897Z INFO sending Commit {"height": 3901, "view": 0} -2023-12-15T23:10:36.897Z INFO approving block {"height": 3901, "hash": "68edd1d4adefd5ad0547827e53f39c6aa3b1cd52f62834998ffde8aeb7c99a94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "935e0db8c8de9446303a25b92e7e696fa089114f9aad0a35c9ea240c12a4661d"} -2023-12-15T23:10:36.898Z INFO initializing dbft {"height": 3902, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:36.899Z debug frostfs-node/morph.go:229 new block {"index": 3901} -2023-12-15T23:10:37.649Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3901, "blockHeight": 3901, "took": "7.013741ms"} -2023-12-15T23:10:37.898Z INFO sending PrepareRequest {"height": 3902, "view": 0} -2023-12-15T23:10:37.899Z INFO sending Commit {"height": 3902, "view": 0} -2023-12-15T23:10:37.899Z INFO approving block {"height": 3902, "hash": "ecc6f82f8688ba7ee810456f547977f1dfad269b00f00320cef30b1866c1e212", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68edd1d4adefd5ad0547827e53f39c6aa3b1cd52f62834998ffde8aeb7c99a94"} -2023-12-15T23:10:37.901Z INFO initializing dbft {"height": 3903, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:37.901Z debug frostfs-node/morph.go:229 new block {"index": 3902} -2023-12-15T23:10:38.651Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3902, "blockHeight": 3902, "took": "8.282442ms"} -2023-12-15T23:10:38.900Z INFO sending PrepareRequest {"height": 3903, "view": 0} -2023-12-15T23:10:38.900Z INFO sending Commit {"height": 3903, "view": 0} -2023-12-15T23:10:38.900Z INFO approving block {"height": 3903, "hash": "4773079a54b8f80d508ea9e183d58db61066afc7c3362e93a37286919a7bb0d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecc6f82f8688ba7ee810456f547977f1dfad269b00f00320cef30b1866c1e212"} -2023-12-15T23:10:38.902Z INFO initializing dbft {"height": 3904, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:38.903Z debug frostfs-node/morph.go:229 new block {"index": 3903} -2023-12-15T23:10:39.657Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3903, "blockHeight": 3903, "took": "13.015792ms"} -2023-12-15T23:10:39.902Z INFO sending PrepareRequest {"height": 3904, "view": 0} -2023-12-15T23:10:39.902Z INFO sending Commit {"height": 3904, "view": 0} -2023-12-15T23:10:39.903Z INFO approving block {"height": 3904, "hash": "2781ef8f2392a60f3f4a9d8e43128f0de9569d5da7c492a6262fa35b03acc429", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4773079a54b8f80d508ea9e183d58db61066afc7c3362e93a37286919a7bb0d6"} -2023-12-15T23:10:39.905Z INFO initializing dbft {"height": 3905, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:39.906Z debug frostfs-node/morph.go:229 new block {"index": 3904} -2023-12-15T23:10:40.650Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3904, "blockHeight": 3904, "took": "5.344865ms"} -2023-12-15T23:10:40.903Z INFO sending PrepareRequest {"height": 3905, "view": 0} -2023-12-15T23:10:40.903Z INFO sending Commit {"height": 3905, "view": 0} -2023-12-15T23:10:40.904Z INFO approving block {"height": 3905, "hash": "c07dce56ec326d99b73c89810a1903492f4298ba907e0bfeea685913731d8369", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2781ef8f2392a60f3f4a9d8e43128f0de9569d5da7c492a6262fa35b03acc429"} -2023-12-15T23:10:40.905Z INFO initializing dbft {"height": 3906, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:40.906Z debug frostfs-node/morph.go:229 new block {"index": 3905} -2023-12-15T23:10:41.654Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3905, "blockHeight": 3905, "took": "8.562741ms"} -2023-12-15T23:10:41.905Z INFO sending PrepareRequest {"height": 3906, "view": 0} -2023-12-15T23:10:41.906Z INFO sending Commit {"height": 3906, "view": 0} -2023-12-15T23:10:41.906Z INFO approving block {"height": 3906, "hash": "a9b587276ab344272abf4afd03725858412639244b4e294de8f19ce1e58c608e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c07dce56ec326d99b73c89810a1903492f4298ba907e0bfeea685913731d8369"} -2023-12-15T23:10:41.908Z INFO initializing dbft {"height": 3907, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:41.909Z debug frostfs-node/morph.go:229 new block {"index": 3906} -2023-12-15T23:10:42.655Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3906, "blockHeight": 3906, "took": "8.986983ms"} -2023-12-15T23:10:42.907Z INFO sending PrepareRequest {"height": 3907, "view": 0} -2023-12-15T23:10:42.907Z INFO sending Commit {"height": 3907, "view": 0} -2023-12-15T23:10:42.908Z INFO approving block {"height": 3907, "hash": "80de196f95a220b6d051398a5d79c725262dabe8e71825f02040037a5bcfcb53", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9b587276ab344272abf4afd03725858412639244b4e294de8f19ce1e58c608e"} -2023-12-15T23:10:42.912Z INFO initializing dbft {"height": 3908, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:42.913Z debug frostfs-node/morph.go:229 new block {"index": 3907} -2023-12-15T23:10:43.655Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3907, "blockHeight": 3907, "took": "8.703094ms"} -2023-12-15T23:10:43.909Z INFO sending PrepareRequest {"height": 3908, "view": 0} -2023-12-15T23:10:43.909Z INFO sending Commit {"height": 3908, "view": 0} -2023-12-15T23:10:43.910Z INFO approving block {"height": 3908, "hash": "ac14434c3278bf3fdb83a31e86493fd71b07e8a99e2dcfc3a6b520da329a968e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80de196f95a220b6d051398a5d79c725262dabe8e71825f02040037a5bcfcb53"} -2023-12-15T23:10:43.911Z INFO initializing dbft {"height": 3909, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:43.912Z debug frostfs-node/morph.go:229 new block {"index": 3908} -2023-12-15T23:10:44.656Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3908, "blockHeight": 3908, "took": "7.78374ms"} -2023-12-15T23:10:44.911Z INFO sending PrepareRequest {"height": 3909, "view": 0} -2023-12-15T23:10:44.912Z INFO sending Commit {"height": 3909, "view": 0} -2023-12-15T23:10:44.912Z INFO approving block {"height": 3909, "hash": "af84c6b4dcc1c494491e13430c6094c9fbc90b1e49a031d3ae6019db2fa3cb10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac14434c3278bf3fdb83a31e86493fd71b07e8a99e2dcfc3a6b520da329a968e"} -2023-12-15T23:10:44.914Z INFO initializing dbft {"height": 3910, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:44.915Z debug frostfs-node/morph.go:229 new block {"index": 3909} -2023-12-15T23:10:45.659Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3909, "blockHeight": 3909, "took": "9.155057ms"} -2023-12-15T23:10:45.913Z INFO sending PrepareRequest {"height": 3910, "view": 0} -2023-12-15T23:10:45.913Z INFO sending Commit {"height": 3910, "view": 0} -2023-12-15T23:10:45.914Z INFO approving block {"height": 3910, "hash": "316b0d6bf2419268340c665f7f39814864fa188a25408086e9f7041144dae7f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af84c6b4dcc1c494491e13430c6094c9fbc90b1e49a031d3ae6019db2fa3cb10"} -2023-12-15T23:10:45.916Z INFO initializing dbft {"height": 3911, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:45.917Z debug frostfs-node/morph.go:229 new block {"index": 3910} -2023-12-15T23:10:46.661Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3910, "blockHeight": 3910, "took": "10.25698ms"} -2023-12-15T23:10:46.915Z INFO sending PrepareRequest {"height": 3911, "view": 0} -2023-12-15T23:10:46.915Z INFO sending Commit {"height": 3911, "view": 0} -2023-12-15T23:10:46.915Z INFO approving block {"height": 3911, "hash": "580abbe6c2ce2fad2bdb957905565cd449df0a0a3b56c57150524475181d69ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "316b0d6bf2419268340c665f7f39814864fa188a25408086e9f7041144dae7f5"} -2023-12-15T23:10:46.918Z INFO initializing dbft {"height": 3912, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:46.918Z debug frostfs-node/morph.go:229 new block {"index": 3911} -2023-12-15T23:10:47.659Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3911, "blockHeight": 3911, "took": "8.093625ms"} -2023-12-15T23:10:47.916Z INFO sending PrepareRequest {"height": 3912, "view": 0} -2023-12-15T23:10:47.917Z INFO sending Commit {"height": 3912, "view": 0} -2023-12-15T23:10:47.917Z INFO approving block {"height": 3912, "hash": "8afd56b52be734c008b7f4b655b2f866c5bebdd2129a08412ea5bc8a15c53f01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "580abbe6c2ce2fad2bdb957905565cd449df0a0a3b56c57150524475181d69ba"} -2023-12-15T23:10:47.919Z INFO initializing dbft {"height": 3913, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:47.921Z debug frostfs-node/morph.go:229 new block {"index": 3912} -2023-12-15T23:10:48.664Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3912, "blockHeight": 3912, "took": "11.963535ms"} -2023-12-15T23:10:48.919Z INFO sending PrepareRequest {"height": 3913, "view": 0} -2023-12-15T23:10:48.919Z INFO sending Commit {"height": 3913, "view": 0} -2023-12-15T23:10:48.919Z INFO approving block {"height": 3913, "hash": "c44c4276a72ddfa7da67deb7b3b8af63978fb3b998e9b8e4c31870092364c37a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8afd56b52be734c008b7f4b655b2f866c5bebdd2129a08412ea5bc8a15c53f01"} -2023-12-15T23:10:48.921Z INFO initializing dbft {"height": 3914, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:48.922Z debug frostfs-node/morph.go:229 new block {"index": 3913} -2023-12-15T23:10:49.659Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3913, "blockHeight": 3913, "took": "6.054477ms"} -2023-12-15T23:10:49.920Z INFO sending PrepareRequest {"height": 3914, "view": 0} -2023-12-15T23:10:49.920Z INFO sending Commit {"height": 3914, "view": 0} -2023-12-15T23:10:49.921Z INFO approving block {"height": 3914, "hash": "525073c0f942a89a38d7b0b1197783277cde72a54e6fba23b3636f2da7385285", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c44c4276a72ddfa7da67deb7b3b8af63978fb3b998e9b8e4c31870092364c37a"} -2023-12-15T23:10:49.922Z INFO initializing dbft {"height": 3915, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:49.923Z debug frostfs-node/morph.go:229 new block {"index": 3914} -2023-12-15T23:10:50.661Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3914, "blockHeight": 3914, "took": "6.818029ms"} -2023-12-15T23:10:50.922Z INFO sending PrepareRequest {"height": 3915, "view": 0} -2023-12-15T23:10:50.922Z INFO sending Commit {"height": 3915, "view": 0} -2023-12-15T23:10:50.923Z INFO approving block {"height": 3915, "hash": "46802a25f748a7c1a771a81162046917e50ff3ba1e49cf06c6c924d8c5024883", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "525073c0f942a89a38d7b0b1197783277cde72a54e6fba23b3636f2da7385285"} -2023-12-15T23:10:50.925Z INFO initializing dbft {"height": 3916, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:50.926Z debug frostfs-node/morph.go:229 new block {"index": 3915} -2023-12-15T23:10:51.662Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3915, "blockHeight": 3915, "took": "7.553803ms"} -2023-12-15T23:10:51.924Z INFO sending PrepareRequest {"height": 3916, "view": 0} -2023-12-15T23:10:51.924Z INFO sending Commit {"height": 3916, "view": 0} -2023-12-15T23:10:51.924Z INFO approving block {"height": 3916, "hash": "eb1f09d41d44d4b71bd88004f5d3e692326c9b5b3fc4c0618ad00cb5b7abc6dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46802a25f748a7c1a771a81162046917e50ff3ba1e49cf06c6c924d8c5024883"} -2023-12-15T23:10:51.926Z INFO initializing dbft {"height": 3917, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:51.927Z debug frostfs-node/morph.go:229 new block {"index": 3916} -2023-12-15T23:10:51.934Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 17 epoch for daughters"} -2023-12-15T23:10:51.937Z INFO runtime log {"tx": "824b6c0eda4628ae365b05d98c8f01b54540f21cf1aa34b16142b90dcd04aa8d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:10:52.663Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3916, "blockHeight": 3916, "took": "7.409787ms"} -2023-12-15T23:10:52.926Z INFO sending PrepareRequest {"height": 3917, "view": 0} -2023-12-15T23:10:52.926Z INFO sending Commit {"height": 3917, "view": 0} -2023-12-15T23:10:52.927Z INFO approving block {"height": 3917, "hash": "415333e6b3dc169614d82dacf217ebc9f5910b6efb7c7adfd4990161a6a29b73", "tx_count": 1, "merkle": "079417dc7e82afb9deefd7d9eef383a85b078a62a4b821759b874f13158582ac", "prev": "eb1f09d41d44d4b71bd88004f5d3e692326c9b5b3fc4c0618ad00cb5b7abc6dd"} -2023-12-15T23:10:52.928Z INFO runtime log {"tx": "ac828515134f879b7521b8a4628a075ba883f3eed9d7efdeb9af827edc179407", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:10:52.932Z INFO initializing dbft {"height": 3918, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:52.932Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 17} -2023-12-15T23:10:52.933Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 17} -2023-12-15T23:10:52.935Z debug frostfs-node/morph.go:229 new block {"index": 3917} -2023-12-15T23:10:52.937Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:10:52.939Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:10:52.939Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:10:53.667Z INFO persisted to disk {"blocks": 1, "keys": 35, "headerHeight": 3917, "blockHeight": 3917, "took": "10.377842ms"} -2023-12-15T23:10:53.928Z INFO sending PrepareRequest {"height": 3918, "view": 0} -2023-12-15T23:10:53.928Z INFO sending Commit {"height": 3918, "view": 0} -2023-12-15T23:10:53.929Z INFO approving block {"height": 3918, "hash": "0b719aa840228883ae6c40e018227b2f080f00814a5a28c2e143b37f8aafaba8", "tx_count": 2, "merkle": "87a6bd56ba1799253c632f87fe0ca555527c0eac54eb41bf2c0f21c2cc0f76e0", "prev": "415333e6b3dc169614d82dacf217ebc9f5910b6efb7c7adfd4990161a6a29b73"} -2023-12-15T23:10:53.930Z INFO runtime log {"tx": "33abc1e4c80ed252b9d469976fdf03471480a1ebfc1ad8d8306548cbf2fb9378", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:10:53.930Z INFO runtime log {"tx": "33abc1e4c80ed252b9d469976fdf03471480a1ebfc1ad8d8306548cbf2fb9378", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:10:53.932Z INFO initializing dbft {"height": 3919, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:53.933Z debug frostfs-node/morph.go:229 new block {"index": 3918} -2023-12-15T23:10:54.672Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 3918, "blockHeight": 3918, "took": "15.410476ms"} -2023-12-15T23:10:54.930Z INFO sending PrepareRequest {"height": 3919, "view": 0} -2023-12-15T23:10:54.930Z INFO sending Commit {"height": 3919, "view": 0} -2023-12-15T23:10:54.930Z INFO approving block {"height": 3919, "hash": "a3a4527086d9f9520d6c3bbf566f10533257cbdeaa1adc07036865ba1f046892", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b719aa840228883ae6c40e018227b2f080f00814a5a28c2e143b37f8aafaba8"} -2023-12-15T23:10:54.933Z INFO initializing dbft {"height": 3920, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:54.934Z debug frostfs-node/morph.go:229 new block {"index": 3919} -2023-12-15T23:10:55.667Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3919, "blockHeight": 3919, "took": "9.699902ms"} -2023-12-15T23:10:55.932Z INFO sending PrepareRequest {"height": 3920, "view": 0} -2023-12-15T23:10:55.932Z INFO sending Commit {"height": 3920, "view": 0} -2023-12-15T23:10:55.933Z INFO approving block {"height": 3920, "hash": "c6507054827c1fa1e4c40c2c28d2a6bcd14527be245399ae065f3c1532ff5cc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3a4527086d9f9520d6c3bbf566f10533257cbdeaa1adc07036865ba1f046892"} -2023-12-15T23:10:55.934Z INFO initializing dbft {"height": 3921, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:55.935Z debug frostfs-node/morph.go:229 new block {"index": 3920} -2023-12-15T23:10:56.667Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3920, "blockHeight": 3920, "took": "7.938661ms"} -2023-12-15T23:10:56.935Z INFO sending PrepareRequest {"height": 3921, "view": 0} -2023-12-15T23:10:56.935Z INFO sending Commit {"height": 3921, "view": 0} -2023-12-15T23:10:56.935Z INFO approving block {"height": 3921, "hash": "c6f8c4d9bd00522c913a60e1f027c5ae41336446fd357b0f0dbb47bf142aec7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6507054827c1fa1e4c40c2c28d2a6bcd14527be245399ae065f3c1532ff5cc5"} -2023-12-15T23:10:56.937Z INFO initializing dbft {"height": 3922, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:56.938Z debug frostfs-node/morph.go:229 new block {"index": 3921} -2023-12-15T23:10:57.667Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3921, "blockHeight": 3921, "took": "7.359474ms"} -2023-12-15T23:10:57.936Z INFO sending PrepareRequest {"height": 3922, "view": 0} -2023-12-15T23:10:57.936Z INFO sending Commit {"height": 3922, "view": 0} -2023-12-15T23:10:57.937Z INFO approving block {"height": 3922, "hash": "fa2dc007bf9ec71260a0e474eacb7b756d03b2bc36be4266210acfcc8ece0195", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6f8c4d9bd00522c913a60e1f027c5ae41336446fd357b0f0dbb47bf142aec7d"} -2023-12-15T23:10:57.940Z INFO initializing dbft {"height": 3923, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:57.941Z debug frostfs-node/morph.go:229 new block {"index": 3922} -2023-12-15T23:10:58.670Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3922, "blockHeight": 3922, "took": "9.32742ms"} -2023-12-15T23:10:58.938Z INFO sending PrepareRequest {"height": 3923, "view": 0} -2023-12-15T23:10:58.938Z INFO sending Commit {"height": 3923, "view": 0} -2023-12-15T23:10:58.938Z INFO approving block {"height": 3923, "hash": "0f50293e2cc68db24472e14a9528992e3e02e516cee8214bf9e87f99652a3379", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa2dc007bf9ec71260a0e474eacb7b756d03b2bc36be4266210acfcc8ece0195"} -2023-12-15T23:10:58.940Z INFO initializing dbft {"height": 3924, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:58.941Z debug frostfs-node/morph.go:229 new block {"index": 3923} -2023-12-15T23:10:59.672Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3923, "blockHeight": 3923, "took": "10.905817ms"} -2023-12-15T23:10:59.939Z INFO sending PrepareRequest {"height": 3924, "view": 0} -2023-12-15T23:10:59.940Z INFO sending Commit {"height": 3924, "view": 0} -2023-12-15T23:10:59.940Z INFO approving block {"height": 3924, "hash": "0a3e7f6d3e6c36b55bd867535d3c2c457def378bface6072fd3eb4e026aa1b93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f50293e2cc68db24472e14a9528992e3e02e516cee8214bf9e87f99652a3379"} -2023-12-15T23:10:59.942Z INFO initializing dbft {"height": 3925, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:10:59.943Z debug frostfs-node/morph.go:229 new block {"index": 3924} -2023-12-15T23:11:00.669Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3924, "blockHeight": 3924, "took": "7.488734ms"} -2023-12-15T23:11:00.941Z INFO sending PrepareRequest {"height": 3925, "view": 0} -2023-12-15T23:11:00.941Z INFO sending Commit {"height": 3925, "view": 0} -2023-12-15T23:11:00.942Z INFO approving block {"height": 3925, "hash": "e5c9312fd43b32ac38f3fc034b5926275466a92c155b4ba0ed386e470598c9c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a3e7f6d3e6c36b55bd867535d3c2c457def378bface6072fd3eb4e026aa1b93"} -2023-12-15T23:11:00.943Z INFO initializing dbft {"height": 3926, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:00.944Z debug frostfs-node/morph.go:229 new block {"index": 3925} -2023-12-15T23:11:01.669Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3925, "blockHeight": 3925, "took": "6.702269ms"} -2023-12-15T23:11:01.943Z INFO sending PrepareRequest {"height": 3926, "view": 0} -2023-12-15T23:11:01.943Z INFO sending Commit {"height": 3926, "view": 0} -2023-12-15T23:11:01.944Z INFO approving block {"height": 3926, "hash": "342f7a8644eb5d22b52ae74c615ce322433176b7a1bb173df5ae3aa74e0f82f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5c9312fd43b32ac38f3fc034b5926275466a92c155b4ba0ed386e470598c9c1"} -2023-12-15T23:11:01.946Z INFO initializing dbft {"height": 3927, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:01.947Z debug frostfs-node/morph.go:229 new block {"index": 3926} -2023-12-15T23:11:02.672Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3926, "blockHeight": 3926, "took": "8.242715ms"} -2023-12-15T23:11:02.945Z INFO sending PrepareRequest {"height": 3927, "view": 0} -2023-12-15T23:11:02.945Z INFO sending Commit {"height": 3927, "view": 0} -2023-12-15T23:11:02.945Z INFO approving block {"height": 3927, "hash": "d650f39967232fb01ff3ea0c1577db24e28e79df859820dec06ba0306dd8a23e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "342f7a8644eb5d22b52ae74c615ce322433176b7a1bb173df5ae3aa74e0f82f5"} -2023-12-15T23:11:02.947Z INFO initializing dbft {"height": 3928, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:02.947Z debug frostfs-node/morph.go:229 new block {"index": 3927} -2023-12-15T23:11:03.675Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3927, "blockHeight": 3927, "took": "10.250596ms"} -2023-12-15T23:11:03.947Z INFO sending PrepareRequest {"height": 3928, "view": 0} -2023-12-15T23:11:03.947Z INFO sending Commit {"height": 3928, "view": 0} -2023-12-15T23:11:03.947Z INFO approving block {"height": 3928, "hash": "6bc97acd46b2c8dbffd9ca7478383c5e028a6957e75f046fc25a82b35ada3064", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d650f39967232fb01ff3ea0c1577db24e28e79df859820dec06ba0306dd8a23e"} -2023-12-15T23:11:03.948Z INFO initializing dbft {"height": 3929, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:03.949Z debug frostfs-node/morph.go:229 new block {"index": 3928} -2023-12-15T23:11:04.672Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3928, "blockHeight": 3928, "took": "6.815967ms"} -2023-12-15T23:11:04.949Z INFO sending PrepareRequest {"height": 3929, "view": 0} -2023-12-15T23:11:04.949Z INFO sending Commit {"height": 3929, "view": 0} -2023-12-15T23:11:04.949Z INFO approving block {"height": 3929, "hash": "c2d188988bda73a637d57ad723c3079e49de151a2f4c18bb08a9ee1a4860c2b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bc97acd46b2c8dbffd9ca7478383c5e028a6957e75f046fc25a82b35ada3064"} -2023-12-15T23:11:04.951Z INFO initializing dbft {"height": 3930, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:04.952Z debug frostfs-node/morph.go:229 new block {"index": 3929} -2023-12-15T23:11:05.675Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3929, "blockHeight": 3929, "took": "8.843968ms"} -2023-12-15T23:11:05.951Z INFO sending PrepareRequest {"height": 3930, "view": 0} -2023-12-15T23:11:05.951Z INFO sending Commit {"height": 3930, "view": 0} -2023-12-15T23:11:05.951Z INFO approving block {"height": 3930, "hash": "524b05a133f61cc97190dbca996460543f8c421262dd5a43058e4eb78f4632f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2d188988bda73a637d57ad723c3079e49de151a2f4c18bb08a9ee1a4860c2b2"} -2023-12-15T23:11:05.953Z INFO initializing dbft {"height": 3931, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:05.954Z debug frostfs-node/morph.go:229 new block {"index": 3930} -2023-12-15T23:11:06.674Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3930, "blockHeight": 3930, "took": "7.627042ms"} -2023-12-15T23:11:06.953Z INFO sending PrepareRequest {"height": 3931, "view": 0} -2023-12-15T23:11:06.953Z INFO sending Commit {"height": 3931, "view": 0} -2023-12-15T23:11:06.954Z INFO approving block {"height": 3931, "hash": "3abf2655836128d8160a02e76972d3247ff9cb4958f897f5db46e9dad4074fe0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "524b05a133f61cc97190dbca996460543f8c421262dd5a43058e4eb78f4632f5"} -2023-12-15T23:11:06.956Z INFO initializing dbft {"height": 3932, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:06.958Z debug frostfs-node/morph.go:229 new block {"index": 3931} -2023-12-15T23:11:07.676Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3931, "blockHeight": 3931, "took": "9.051169ms"} -2023-12-15T23:11:07.955Z INFO sending PrepareRequest {"height": 3932, "view": 0} -2023-12-15T23:11:07.955Z INFO sending Commit {"height": 3932, "view": 0} -2023-12-15T23:11:07.955Z INFO approving block {"height": 3932, "hash": "a05266b86b55f274b14e063044a88b7b8790e7e0396c5e0a48e50f48a6713733", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3abf2655836128d8160a02e76972d3247ff9cb4958f897f5db46e9dad4074fe0"} -2023-12-15T23:11:07.957Z INFO initializing dbft {"height": 3933, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:07.958Z debug frostfs-node/morph.go:229 new block {"index": 3932} -2023-12-15T23:11:08.676Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3932, "blockHeight": 3932, "took": "7.800037ms"} -2023-12-15T23:11:08.956Z INFO sending PrepareRequest {"height": 3933, "view": 0} -2023-12-15T23:11:08.957Z INFO sending Commit {"height": 3933, "view": 0} -2023-12-15T23:11:08.957Z INFO approving block {"height": 3933, "hash": "6fd65f11dcf5dd0f118fba2b7deb0aaf8317cf1b2bc6fbadf7eff14f58985a22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a05266b86b55f274b14e063044a88b7b8790e7e0396c5e0a48e50f48a6713733"} -2023-12-15T23:11:08.959Z INFO initializing dbft {"height": 3934, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:08.959Z debug frostfs-node/morph.go:229 new block {"index": 3933} -2023-12-15T23:11:09.678Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3933, "blockHeight": 3933, "took": "8.870737ms"} -2023-12-15T23:11:09.959Z INFO sending PrepareRequest {"height": 3934, "view": 0} -2023-12-15T23:11:09.959Z INFO sending Commit {"height": 3934, "view": 0} -2023-12-15T23:11:09.959Z INFO approving block {"height": 3934, "hash": "30cdd3a65b62d954dff9c49cbf160564cd9971ed44897fcb3c1626ebe01cc696", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fd65f11dcf5dd0f118fba2b7deb0aaf8317cf1b2bc6fbadf7eff14f58985a22"} -2023-12-15T23:11:09.961Z INFO initializing dbft {"height": 3935, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:09.962Z debug frostfs-node/morph.go:229 new block {"index": 3934} -2023-12-15T23:11:10.676Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3934, "blockHeight": 3934, "took": "6.011091ms"} -2023-12-15T23:11:10.961Z INFO sending PrepareRequest {"height": 3935, "view": 0} -2023-12-15T23:11:10.961Z INFO sending Commit {"height": 3935, "view": 0} -2023-12-15T23:11:10.962Z INFO approving block {"height": 3935, "hash": "1f87566d122dc2ec6bd2fe77ee8cd3a57655c71e994c903cb1913bef72c34248", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30cdd3a65b62d954dff9c49cbf160564cd9971ed44897fcb3c1626ebe01cc696"} -2023-12-15T23:11:10.964Z INFO initializing dbft {"height": 3936, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:10.965Z debug frostfs-node/morph.go:229 new block {"index": 3935} -2023-12-15T23:11:11.677Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3935, "blockHeight": 3935, "took": "6.003838ms"} -2023-12-15T23:11:11.963Z INFO sending PrepareRequest {"height": 3936, "view": 0} -2023-12-15T23:11:11.964Z INFO sending Commit {"height": 3936, "view": 0} -2023-12-15T23:11:11.964Z INFO approving block {"height": 3936, "hash": "ee38343387413df8d9ffc58f6932c3fb12e53500b46c66453a0de2966f3ef122", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f87566d122dc2ec6bd2fe77ee8cd3a57655c71e994c903cb1913bef72c34248"} -2023-12-15T23:11:11.967Z INFO initializing dbft {"height": 3937, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:11.968Z debug frostfs-node/morph.go:229 new block {"index": 3936} -2023-12-15T23:11:12.681Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3936, "blockHeight": 3936, "took": "9.343967ms"} -2023-12-15T23:11:12.965Z INFO sending PrepareRequest {"height": 3937, "view": 0} -2023-12-15T23:11:12.966Z INFO sending Commit {"height": 3937, "view": 0} -2023-12-15T23:11:12.966Z INFO approving block {"height": 3937, "hash": "7006a472f43e986c81b41b65e6492891ef9b36a0f83672d3a4e0abcb599cda9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee38343387413df8d9ffc58f6932c3fb12e53500b46c66453a0de2966f3ef122"} -2023-12-15T23:11:12.968Z INFO initializing dbft {"height": 3938, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:12.969Z debug frostfs-node/morph.go:229 new block {"index": 3937} -2023-12-15T23:11:13.680Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3937, "blockHeight": 3937, "took": "7.378247ms"} -2023-12-15T23:11:13.967Z INFO sending PrepareRequest {"height": 3938, "view": 0} -2023-12-15T23:11:13.968Z INFO sending Commit {"height": 3938, "view": 0} -2023-12-15T23:11:13.968Z INFO approving block {"height": 3938, "hash": "46bd44245962c21549940b6d28f37a83e6e3e93e20dadb5b0bdc16e05022eba7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7006a472f43e986c81b41b65e6492891ef9b36a0f83672d3a4e0abcb599cda9f"} -2023-12-15T23:11:13.970Z INFO initializing dbft {"height": 3939, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:13.971Z debug frostfs-node/morph.go:229 new block {"index": 3938} -2023-12-15T23:11:14.681Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3938, "blockHeight": 3938, "took": "7.611321ms"} -2023-12-15T23:11:14.969Z INFO sending PrepareRequest {"height": 3939, "view": 0} -2023-12-15T23:11:14.969Z INFO sending Commit {"height": 3939, "view": 0} -2023-12-15T23:11:14.970Z INFO approving block {"height": 3939, "hash": "0772693ff3f9ca7b2a23a3bf3e99863e86fb5165cb178790c0bd001f1332c1a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46bd44245962c21549940b6d28f37a83e6e3e93e20dadb5b0bdc16e05022eba7"} -2023-12-15T23:11:14.972Z INFO initializing dbft {"height": 3940, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:14.972Z debug frostfs-node/morph.go:229 new block {"index": 3939} -2023-12-15T23:11:15.682Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3939, "blockHeight": 3939, "took": "7.652532ms"} -2023-12-15T23:11:15.972Z INFO sending PrepareRequest {"height": 3940, "view": 0} -2023-12-15T23:11:15.972Z INFO sending Commit {"height": 3940, "view": 0} -2023-12-15T23:11:15.972Z INFO approving block {"height": 3940, "hash": "f8f981bf45a5fcd75c969ca7400343d6957bd8c6eea260d7a9ff445c7a43e9b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0772693ff3f9ca7b2a23a3bf3e99863e86fb5165cb178790c0bd001f1332c1a8"} -2023-12-15T23:11:15.975Z INFO initializing dbft {"height": 3941, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:15.976Z debug frostfs-node/morph.go:229 new block {"index": 3940} -2023-12-15T23:11:16.683Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3940, "blockHeight": 3940, "took": "7.86966ms"} -2023-12-15T23:11:16.974Z INFO sending PrepareRequest {"height": 3941, "view": 0} -2023-12-15T23:11:16.974Z INFO sending Commit {"height": 3941, "view": 0} -2023-12-15T23:11:16.974Z INFO approving block {"height": 3941, "hash": "7573a96d6c8a1e687fdf6f4ebdf3dedae4f2e81ba8c882063aa2ce52cbd9b4a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8f981bf45a5fcd75c969ca7400343d6957bd8c6eea260d7a9ff445c7a43e9b1"} -2023-12-15T23:11:16.976Z INFO initializing dbft {"height": 3942, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:16.977Z debug frostfs-node/morph.go:229 new block {"index": 3941} -2023-12-15T23:11:17.684Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3941, "blockHeight": 3941, "took": "8.02133ms"} -2023-12-15T23:11:17.975Z INFO sending PrepareRequest {"height": 3942, "view": 0} -2023-12-15T23:11:17.976Z INFO sending Commit {"height": 3942, "view": 0} -2023-12-15T23:11:17.976Z INFO approving block {"height": 3942, "hash": "52d05af5ca6a1ee4a2545eb90e86937f1ef58c8095b092ebf501e0f8d714e9e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7573a96d6c8a1e687fdf6f4ebdf3dedae4f2e81ba8c882063aa2ce52cbd9b4a8"} -2023-12-15T23:11:17.977Z INFO initializing dbft {"height": 3943, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:17.978Z debug frostfs-node/morph.go:229 new block {"index": 3942} -2023-12-15T23:11:18.685Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3942, "blockHeight": 3942, "took": "7.739724ms"} -2023-12-15T23:11:18.977Z INFO sending PrepareRequest {"height": 3943, "view": 0} -2023-12-15T23:11:18.977Z INFO sending Commit {"height": 3943, "view": 0} -2023-12-15T23:11:18.977Z INFO approving block {"height": 3943, "hash": "2b64ab5652832379d5293e6e9df1c92635eb2230ed31747fb715a95b6aa4117b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52d05af5ca6a1ee4a2545eb90e86937f1ef58c8095b092ebf501e0f8d714e9e9"} -2023-12-15T23:11:18.979Z INFO initializing dbft {"height": 3944, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:18.980Z debug frostfs-node/morph.go:229 new block {"index": 3943} -2023-12-15T23:11:19.686Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3943, "blockHeight": 3943, "took": "7.490537ms"} -2023-12-15T23:11:19.979Z INFO sending PrepareRequest {"height": 3944, "view": 0} -2023-12-15T23:11:19.979Z INFO sending Commit {"height": 3944, "view": 0} -2023-12-15T23:11:19.980Z INFO approving block {"height": 3944, "hash": "5ce7fc29e02d415bf11724c13e77edb50f4a226877a51144dff86505803aedc9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b64ab5652832379d5293e6e9df1c92635eb2230ed31747fb715a95b6aa4117b"} -2023-12-15T23:11:19.982Z INFO initializing dbft {"height": 3945, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:19.983Z debug frostfs-node/morph.go:229 new block {"index": 3944} -2023-12-15T23:11:20.687Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3944, "blockHeight": 3944, "took": "8.523915ms"} -2023-12-15T23:11:20.981Z INFO sending PrepareRequest {"height": 3945, "view": 0} -2023-12-15T23:11:20.981Z INFO sending Commit {"height": 3945, "view": 0} -2023-12-15T23:11:20.981Z INFO approving block {"height": 3945, "hash": "7a3ef2728627ec69e18f0bb5bae2c07f1e899ed5ba3c3e4cebad66dc7765f721", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ce7fc29e02d415bf11724c13e77edb50f4a226877a51144dff86505803aedc9"} -2023-12-15T23:11:20.983Z INFO initializing dbft {"height": 3946, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:20.984Z debug frostfs-node/morph.go:229 new block {"index": 3945} -2023-12-15T23:11:21.689Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3945, "blockHeight": 3945, "took": "9.365078ms"} -2023-12-15T23:11:21.982Z INFO sending PrepareRequest {"height": 3946, "view": 0} -2023-12-15T23:11:21.982Z INFO sending Commit {"height": 3946, "view": 0} -2023-12-15T23:11:21.983Z INFO approving block {"height": 3946, "hash": "c9e2ce9ab118819c2e8a0570d8ea938f3405cb289f3e39078b01bd17724fe351", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a3ef2728627ec69e18f0bb5bae2c07f1e899ed5ba3c3e4cebad66dc7765f721"} -2023-12-15T23:11:21.985Z INFO initializing dbft {"height": 3947, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:21.985Z debug frostfs-node/morph.go:229 new block {"index": 3946} -2023-12-15T23:11:22.691Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3946, "blockHeight": 3946, "took": "11.389867ms"} -2023-12-15T23:11:22.984Z INFO sending PrepareRequest {"height": 3947, "view": 0} -2023-12-15T23:11:22.985Z INFO sending Commit {"height": 3947, "view": 0} -2023-12-15T23:11:22.985Z INFO approving block {"height": 3947, "hash": "50cbbb7706cefe840fc766bb94c765a406f7b26142fa0a095f65aabec3196e1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9e2ce9ab118819c2e8a0570d8ea938f3405cb289f3e39078b01bd17724fe351"} -2023-12-15T23:11:22.987Z INFO initializing dbft {"height": 3948, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:22.988Z debug frostfs-node/morph.go:229 new block {"index": 3947} -2023-12-15T23:11:23.692Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3947, "blockHeight": 3947, "took": "12.260296ms"} -2023-12-15T23:11:23.986Z INFO sending PrepareRequest {"height": 3948, "view": 0} -2023-12-15T23:11:23.986Z INFO sending Commit {"height": 3948, "view": 0} -2023-12-15T23:11:23.987Z INFO approving block {"height": 3948, "hash": "8bf0198190d45fe05226af415e2117e06beea120468fe5ef704e6d1443150aa2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50cbbb7706cefe840fc766bb94c765a406f7b26142fa0a095f65aabec3196e1f"} -2023-12-15T23:11:23.988Z INFO initializing dbft {"height": 3949, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:23.989Z debug frostfs-node/morph.go:229 new block {"index": 3948} -2023-12-15T23:11:24.691Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3948, "blockHeight": 3948, "took": "10.666701ms"} -2023-12-15T23:11:24.988Z INFO sending PrepareRequest {"height": 3949, "view": 0} -2023-12-15T23:11:24.988Z INFO sending Commit {"height": 3949, "view": 0} -2023-12-15T23:11:24.988Z INFO approving block {"height": 3949, "hash": "caa8780bd63af53c261ca6d53b71822d88155ba523f3d886aa0d4df98e28b579", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bf0198190d45fe05226af415e2117e06beea120468fe5ef704e6d1443150aa2"} -2023-12-15T23:11:24.991Z INFO initializing dbft {"height": 3950, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:24.991Z debug frostfs-node/morph.go:229 new block {"index": 3949} -2023-12-15T23:11:25.689Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3949, "blockHeight": 3949, "took": "7.57282ms"} -2023-12-15T23:11:25.990Z INFO sending PrepareRequest {"height": 3950, "view": 0} -2023-12-15T23:11:25.990Z INFO sending Commit {"height": 3950, "view": 0} -2023-12-15T23:11:25.990Z INFO approving block {"height": 3950, "hash": "4885fc4b4ac6a22a27fd5ebab749f91836a3a572983b1c719e03b08283d71bc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "caa8780bd63af53c261ca6d53b71822d88155ba523f3d886aa0d4df98e28b579"} -2023-12-15T23:11:25.993Z INFO initializing dbft {"height": 3951, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:25.994Z debug frostfs-node/morph.go:229 new block {"index": 3950} -2023-12-15T23:11:26.693Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3950, "blockHeight": 3950, "took": "10.747569ms"} -2023-12-15T23:11:26.991Z INFO sending PrepareRequest {"height": 3951, "view": 0} -2023-12-15T23:11:26.992Z INFO sending Commit {"height": 3951, "view": 0} -2023-12-15T23:11:26.992Z INFO approving block {"height": 3951, "hash": "2208b083739f0527500130afc10db33bbc731e839d028285f2e654a1fe8d546d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4885fc4b4ac6a22a27fd5ebab749f91836a3a572983b1c719e03b08283d71bc0"} -2023-12-15T23:11:26.994Z INFO initializing dbft {"height": 3952, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:26.995Z debug frostfs-node/morph.go:229 new block {"index": 3951} -2023-12-15T23:11:27.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3951, "blockHeight": 3951, "took": "13.693815ms"} -2023-12-15T23:11:27.993Z INFO sending PrepareRequest {"height": 3952, "view": 0} -2023-12-15T23:11:27.994Z INFO sending Commit {"height": 3952, "view": 0} -2023-12-15T23:11:27.994Z INFO approving block {"height": 3952, "hash": "aa3190bee106bb4bb46d597c07dcc9e448b52b308781bf5d450deca6bc253324", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2208b083739f0527500130afc10db33bbc731e839d028285f2e654a1fe8d546d"} -2023-12-15T23:11:27.996Z INFO initializing dbft {"height": 3953, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:27.996Z debug frostfs-node/morph.go:229 new block {"index": 3952} -2023-12-15T23:11:28.692Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3952, "blockHeight": 3952, "took": "8.324464ms"} -2023-12-15T23:11:28.996Z INFO sending PrepareRequest {"height": 3953, "view": 0} -2023-12-15T23:11:28.996Z INFO sending Commit {"height": 3953, "view": 0} -2023-12-15T23:11:28.996Z INFO approving block {"height": 3953, "hash": "b0c902020a6f242f0b27392da4f0e045879d9832b53d0f33d5174a1071620e9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa3190bee106bb4bb46d597c07dcc9e448b52b308781bf5d450deca6bc253324"} -2023-12-15T23:11:28.998Z INFO initializing dbft {"height": 3954, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:28.999Z debug frostfs-node/morph.go:229 new block {"index": 3953} -2023-12-15T23:11:29.692Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3953, "blockHeight": 3953, "took": "7.936859ms"} -2023-12-15T23:11:29.998Z INFO sending PrepareRequest {"height": 3954, "view": 0} -2023-12-15T23:11:29.998Z INFO sending Commit {"height": 3954, "view": 0} -2023-12-15T23:11:29.998Z INFO approving block {"height": 3954, "hash": "cd4f00d74ebbc184667bf33af3f8446ff65bab3e98c539255cc3eed9142e9387", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0c902020a6f242f0b27392da4f0e045879d9832b53d0f33d5174a1071620e9f"} -2023-12-15T23:11:30.000Z INFO initializing dbft {"height": 3955, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:30.001Z debug frostfs-node/morph.go:229 new block {"index": 3954} -2023-12-15T23:11:30.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3954, "blockHeight": 3954, "took": "10.409181ms"} -2023-12-15T23:11:31.000Z INFO sending PrepareRequest {"height": 3955, "view": 0} -2023-12-15T23:11:31.000Z INFO sending Commit {"height": 3955, "view": 0} -2023-12-15T23:11:31.000Z INFO approving block {"height": 3955, "hash": "c19f74443a68c47e7bc4078778cc1318c15b65a097417ce54418395d82216961", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd4f00d74ebbc184667bf33af3f8446ff65bab3e98c539255cc3eed9142e9387"} -2023-12-15T23:11:31.002Z INFO initializing dbft {"height": 3956, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:31.003Z debug frostfs-node/morph.go:229 new block {"index": 3955} -2023-12-15T23:11:31.695Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3955, "blockHeight": 3955, "took": "8.944329ms"} -2023-12-15T23:11:32.002Z INFO sending PrepareRequest {"height": 3956, "view": 0} -2023-12-15T23:11:32.002Z INFO sending Commit {"height": 3956, "view": 0} -2023-12-15T23:11:32.002Z INFO approving block {"height": 3956, "hash": "150ad0205d5bd836e047202609d1560adcc6a6bc56ee1ad33cf88a96d562062a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c19f74443a68c47e7bc4078778cc1318c15b65a097417ce54418395d82216961"} -2023-12-15T23:11:32.004Z INFO initializing dbft {"height": 3957, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:32.005Z debug frostfs-node/morph.go:229 new block {"index": 3956} -2023-12-15T23:11:32.693Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3956, "blockHeight": 3956, "took": "5.45134ms"} -2023-12-15T23:11:33.003Z INFO sending PrepareRequest {"height": 3957, "view": 0} -2023-12-15T23:11:33.004Z INFO sending Commit {"height": 3957, "view": 0} -2023-12-15T23:11:33.004Z INFO approving block {"height": 3957, "hash": "48ed14c7364e5d4a8d4ac30ea9e7ec264e49eb0958ada2ff38bfefb69b072dca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "150ad0205d5bd836e047202609d1560adcc6a6bc56ee1ad33cf88a96d562062a"} -2023-12-15T23:11:33.006Z INFO initializing dbft {"height": 3958, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:33.007Z debug frostfs-node/morph.go:229 new block {"index": 3957} -2023-12-15T23:11:33.699Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3957, "blockHeight": 3957, "took": "10.589638ms"} -2023-12-15T23:11:34.006Z INFO sending PrepareRequest {"height": 3958, "view": 0} -2023-12-15T23:11:34.006Z INFO sending Commit {"height": 3958, "view": 0} -2023-12-15T23:11:34.007Z INFO approving block {"height": 3958, "hash": "108381595c12b80a38c3c717dc4429d580f1ed3eb369ddf997741d87eeda06f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48ed14c7364e5d4a8d4ac30ea9e7ec264e49eb0958ada2ff38bfefb69b072dca"} -2023-12-15T23:11:34.009Z INFO initializing dbft {"height": 3959, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:34.010Z debug frostfs-node/morph.go:229 new block {"index": 3958} -2023-12-15T23:11:34.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3958, "blockHeight": 3958, "took": "6.914495ms"} -2023-12-15T23:11:35.008Z INFO sending PrepareRequest {"height": 3959, "view": 0} -2023-12-15T23:11:35.009Z INFO sending Commit {"height": 3959, "view": 0} -2023-12-15T23:11:35.010Z INFO approving block {"height": 3959, "hash": "e701c12bc190ce9fbf9cf8eac92881119704d11c112ee7cb1c9b380e0a518cf2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "108381595c12b80a38c3c717dc4429d580f1ed3eb369ddf997741d87eeda06f4"} -2023-12-15T23:11:35.013Z INFO initializing dbft {"height": 3960, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:35.014Z debug frostfs-node/morph.go:229 new block {"index": 3959} -2023-12-15T23:11:35.698Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3959, "blockHeight": 3959, "took": "8.249982ms"} -2023-12-15T23:11:36.011Z INFO sending PrepareRequest {"height": 3960, "view": 0} -2023-12-15T23:11:36.012Z INFO sending Commit {"height": 3960, "view": 0} -2023-12-15T23:11:36.012Z INFO approving block {"height": 3960, "hash": "bf18e957c1b8c44414bddf28716c13d230fdff2d1d509e10d0fbc411d88a21f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e701c12bc190ce9fbf9cf8eac92881119704d11c112ee7cb1c9b380e0a518cf2"} -2023-12-15T23:11:36.015Z INFO initializing dbft {"height": 3961, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:36.016Z debug frostfs-node/morph.go:229 new block {"index": 3960} -2023-12-15T23:11:36.696Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3960, "blockHeight": 3960, "took": "4.826697ms"} -2023-12-15T23:11:37.013Z INFO sending PrepareRequest {"height": 3961, "view": 0} -2023-12-15T23:11:37.013Z INFO sending Commit {"height": 3961, "view": 0} -2023-12-15T23:11:37.014Z INFO approving block {"height": 3961, "hash": "06d45653aead89558ff94376bc24778fa77b570280149f43c9e433e5eb150988", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf18e957c1b8c44414bddf28716c13d230fdff2d1d509e10d0fbc411d88a21f4"} -2023-12-15T23:11:37.016Z INFO initializing dbft {"height": 3962, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:37.016Z debug frostfs-node/morph.go:229 new block {"index": 3961} -2023-12-15T23:11:37.697Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3961, "blockHeight": 3961, "took": "5.574311ms"} -2023-12-15T23:11:38.015Z INFO sending PrepareRequest {"height": 3962, "view": 0} -2023-12-15T23:11:38.015Z INFO sending Commit {"height": 3962, "view": 0} -2023-12-15T23:11:38.016Z INFO approving block {"height": 3962, "hash": "1c4c4d31a21bfba883bc6ba9fdf2d84902f26efd2cc05d37fd90563bd4243617", "tx_count": 1, "merkle": "f5c8fab9fdc8c3a4b92f18b4d8330858837a1f658a848630225208db5895203e", "prev": "06d45653aead89558ff94376bc24778fa77b570280149f43c9e433e5eb150988"} -2023-12-15T23:11:38.019Z INFO initializing dbft {"height": 3963, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:38.023Z debug frostfs-node/morph.go:229 new block {"index": 3962} -2023-12-15T23:11:38.027Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T23:11:38.711Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 3962, "blockHeight": 3962, "took": "18.524981ms"} -2023-12-15T23:11:39.018Z INFO sending PrepareRequest {"height": 3963, "view": 0} -2023-12-15T23:11:39.018Z INFO sending Commit {"height": 3963, "view": 0} -2023-12-15T23:11:39.018Z INFO approving block {"height": 3963, "hash": "b3b89e30b77490c2f29f5e71a012ff781b23fd316bbfbbb563f83d688591dbd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c4c4d31a21bfba883bc6ba9fdf2d84902f26efd2cc05d37fd90563bd4243617"} -2023-12-15T23:11:39.020Z INFO initializing dbft {"height": 3964, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:39.021Z debug frostfs-node/morph.go:229 new block {"index": 3963} -2023-12-15T23:11:39.702Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3963, "blockHeight": 3963, "took": "8.411886ms"} -2023-12-15T23:11:40.020Z INFO sending PrepareRequest {"height": 3964, "view": 0} -2023-12-15T23:11:40.020Z INFO sending Commit {"height": 3964, "view": 0} -2023-12-15T23:11:40.020Z INFO approving block {"height": 3964, "hash": "fa0dd71776713865c8406c2edcb83d26703275545463d174063677273c90437d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3b89e30b77490c2f29f5e71a012ff781b23fd316bbfbbb563f83d688591dbd1"} -2023-12-15T23:11:40.022Z INFO initializing dbft {"height": 3965, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:40.023Z debug frostfs-node/morph.go:229 new block {"index": 3964} -2023-12-15T23:11:40.703Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3964, "blockHeight": 3964, "took": "8.628621ms"} -2023-12-15T23:11:41.021Z INFO sending PrepareRequest {"height": 3965, "view": 0} -2023-12-15T23:11:41.021Z INFO sending Commit {"height": 3965, "view": 0} -2023-12-15T23:11:41.022Z INFO approving block {"height": 3965, "hash": "0587a7d49bac121f7c7dfe93aae723c60213f603fce5b004dc2c845867b97208", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa0dd71776713865c8406c2edcb83d26703275545463d174063677273c90437d"} -2023-12-15T23:11:41.023Z INFO initializing dbft {"height": 3966, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:41.024Z debug frostfs-node/morph.go:229 new block {"index": 3965} -2023-12-15T23:11:41.701Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3965, "blockHeight": 3965, "took": "5.267676ms"} -2023-12-15T23:11:42.023Z INFO sending PrepareRequest {"height": 3966, "view": 0} -2023-12-15T23:11:42.023Z INFO sending Commit {"height": 3966, "view": 0} -2023-12-15T23:11:42.023Z INFO approving block {"height": 3966, "hash": "be1621de3fbfb3beb1e53a2c06867243e58a93e69c533067432c55860028f9bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0587a7d49bac121f7c7dfe93aae723c60213f603fce5b004dc2c845867b97208"} -2023-12-15T23:11:42.025Z INFO initializing dbft {"height": 3967, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:42.026Z debug frostfs-node/morph.go:229 new block {"index": 3966} -2023-12-15T23:11:42.707Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3966, "blockHeight": 3966, "took": "11.036678ms"} -2023-12-15T23:11:43.025Z INFO sending PrepareRequest {"height": 3967, "view": 0} -2023-12-15T23:11:43.025Z INFO sending Commit {"height": 3967, "view": 0} -2023-12-15T23:11:43.026Z INFO approving block {"height": 3967, "hash": "3991d803b93445e8275c584eae3e694b3aafc0130710af31ae8eff7dcb13cf4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be1621de3fbfb3beb1e53a2c06867243e58a93e69c533067432c55860028f9bb"} -2023-12-15T23:11:43.028Z INFO initializing dbft {"height": 3968, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:43.029Z debug frostfs-node/morph.go:229 new block {"index": 3967} -2023-12-15T23:11:43.034Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:11:43.043Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:11:43.044Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:11:43.707Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3967, "blockHeight": 3967, "took": "9.530328ms"} -2023-12-15T23:11:44.027Z INFO sending PrepareRequest {"height": 3968, "view": 0} -2023-12-15T23:11:44.027Z INFO sending Commit {"height": 3968, "view": 0} -2023-12-15T23:11:44.028Z INFO approving block {"height": 3968, "hash": "b86280f204c7cdfbd9586d8215fcc629a05bf5ef656cb286e2e05b519f3a0483", "tx_count": 2, "merkle": "86f27194b833cf41cb2675ddd0da68eb7b7ac0d920370750449c1f7e4c2c9d06", "prev": "3991d803b93445e8275c584eae3e694b3aafc0130710af31ae8eff7dcb13cf4d"} -2023-12-15T23:11:44.029Z INFO runtime log {"tx": "3e3d3f77523a29f1c15a7df1f8ab2ed50a409ed19d1b7d6c35beb210bcd75dba", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:11:44.030Z INFO runtime log {"tx": "3e3d3f77523a29f1c15a7df1f8ab2ed50a409ed19d1b7d6c35beb210bcd75dba", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:11:44.031Z INFO initializing dbft {"height": 3969, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:44.043Z debug frostfs-node/morph.go:229 new block {"index": 3968} -2023-12-15T23:11:44.715Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 3968, "blockHeight": 3968, "took": "16.857167ms"} -2023-12-15T23:11:45.029Z INFO sending PrepareRequest {"height": 3969, "view": 0} -2023-12-15T23:11:45.030Z INFO sending Commit {"height": 3969, "view": 0} -2023-12-15T23:11:45.030Z INFO approving block {"height": 3969, "hash": "16cddbf756a89d9c780f6e10cbb7fe9836f49b75d2d980b73d8431099c558b4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b86280f204c7cdfbd9586d8215fcc629a05bf5ef656cb286e2e05b519f3a0483"} -2023-12-15T23:11:45.032Z INFO initializing dbft {"height": 3970, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:45.032Z debug frostfs-node/morph.go:229 new block {"index": 3969} -2023-12-15T23:11:45.708Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3969, "blockHeight": 3969, "took": "8.666522ms"} -2023-12-15T23:11:46.031Z INFO sending PrepareRequest {"height": 3970, "view": 0} -2023-12-15T23:11:46.032Z INFO sending Commit {"height": 3970, "view": 0} -2023-12-15T23:11:46.032Z INFO approving block {"height": 3970, "hash": "923422340f408fce7985d79ab3c207c6ee9790437afc87e9dfe24c157ca44dcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16cddbf756a89d9c780f6e10cbb7fe9836f49b75d2d980b73d8431099c558b4e"} -2023-12-15T23:11:46.033Z INFO initializing dbft {"height": 3971, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:46.034Z debug frostfs-node/morph.go:229 new block {"index": 3970} -2023-12-15T23:11:46.706Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3970, "blockHeight": 3970, "took": "5.620738ms"} -2023-12-15T23:11:47.034Z INFO sending PrepareRequest {"height": 3971, "view": 0} -2023-12-15T23:11:47.034Z INFO sending Commit {"height": 3971, "view": 0} -2023-12-15T23:11:47.034Z INFO approving block {"height": 3971, "hash": "bd70803ba7cd2980f38feb35e6537bc6908e8ef313ee381665c38e98a0e032ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "923422340f408fce7985d79ab3c207c6ee9790437afc87e9dfe24c157ca44dcc"} -2023-12-15T23:11:47.036Z INFO initializing dbft {"height": 3972, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:47.037Z debug frostfs-node/morph.go:229 new block {"index": 3971} -2023-12-15T23:11:47.709Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3971, "blockHeight": 3971, "took": "7.736268ms"} -2023-12-15T23:11:48.035Z INFO sending PrepareRequest {"height": 3972, "view": 0} -2023-12-15T23:11:48.036Z INFO sending Commit {"height": 3972, "view": 0} -2023-12-15T23:11:48.036Z INFO approving block {"height": 3972, "hash": "adb1328d32b4819b7f4d7fc58476dd25b7f1d8704c091362ceab1e5b2a65f958", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd70803ba7cd2980f38feb35e6537bc6908e8ef313ee381665c38e98a0e032ca"} -2023-12-15T23:11:48.038Z INFO initializing dbft {"height": 3973, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:48.039Z debug frostfs-node/morph.go:229 new block {"index": 3972} -2023-12-15T23:11:48.710Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3972, "blockHeight": 3972, "took": "8.503527ms"} -2023-12-15T23:11:49.037Z INFO sending PrepareRequest {"height": 3973, "view": 0} -2023-12-15T23:11:49.037Z INFO sending Commit {"height": 3973, "view": 0} -2023-12-15T23:11:49.038Z INFO approving block {"height": 3973, "hash": "70ead5539131bcdd85283fbb2eaf2be332f2e8c1b6393c3c71f58e784f9b3b6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adb1328d32b4819b7f4d7fc58476dd25b7f1d8704c091362ceab1e5b2a65f958"} -2023-12-15T23:11:49.040Z INFO initializing dbft {"height": 3974, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:49.041Z debug frostfs-node/morph.go:229 new block {"index": 3973} -2023-12-15T23:11:49.716Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3973, "blockHeight": 3973, "took": "13.502991ms"} -2023-12-15T23:11:50.039Z INFO sending PrepareRequest {"height": 3974, "view": 0} -2023-12-15T23:11:50.040Z INFO sending Commit {"height": 3974, "view": 0} -2023-12-15T23:11:50.040Z INFO approving block {"height": 3974, "hash": "5957db34a21b2cd799ed21ccdc6956cddaa4e8d4c69ab452bce3510e6fc87992", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70ead5539131bcdd85283fbb2eaf2be332f2e8c1b6393c3c71f58e784f9b3b6a"} -2023-12-15T23:11:50.042Z INFO initializing dbft {"height": 3975, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:50.043Z debug frostfs-node/morph.go:229 new block {"index": 3974} -2023-12-15T23:11:50.710Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3974, "blockHeight": 3974, "took": "6.116768ms"} -2023-12-15T23:11:51.041Z INFO sending PrepareRequest {"height": 3975, "view": 0} -2023-12-15T23:11:51.041Z INFO sending Commit {"height": 3975, "view": 0} -2023-12-15T23:11:51.042Z INFO approving block {"height": 3975, "hash": "364441f1651ba30c98309981c4ab836694c7622905212a3176b805074295d203", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5957db34a21b2cd799ed21ccdc6956cddaa4e8d4c69ab452bce3510e6fc87992"} -2023-12-15T23:11:51.043Z INFO initializing dbft {"height": 3976, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:51.044Z debug frostfs-node/morph.go:229 new block {"index": 3975} -2023-12-15T23:11:51.717Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3975, "blockHeight": 3975, "took": "12.064583ms"} -2023-12-15T23:11:52.044Z INFO sending PrepareRequest {"height": 3976, "view": 0} -2023-12-15T23:11:52.044Z INFO sending Commit {"height": 3976, "view": 0} -2023-12-15T23:11:52.044Z INFO approving block {"height": 3976, "hash": "a0cb89a303132be8b4eb8566ce929fdd19f14eeff2dda079a3a4f5b408418a67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "364441f1651ba30c98309981c4ab836694c7622905212a3176b805074295d203"} -2023-12-15T23:11:52.046Z INFO initializing dbft {"height": 3977, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:52.047Z debug frostfs-node/morph.go:229 new block {"index": 3976} -2023-12-15T23:11:52.050Z info settlement/calls.go:61 start basic income collection {"epoch": 17} -2023-12-15T23:11:52.053Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 17, "iteration": 1, "error": "no data for 0 iteration in 17 epoch for consumers's trusts"} -2023-12-15T23:11:52.713Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3976, "blockHeight": 3976, "took": "7.990175ms"} -2023-12-15T23:11:53.046Z INFO sending PrepareRequest {"height": 3977, "view": 0} -2023-12-15T23:11:53.046Z INFO sending Commit {"height": 3977, "view": 0} -2023-12-15T23:11:53.047Z INFO approving block {"height": 3977, "hash": "443c6db661082805e7e1e09e77e8f3ffe8207770ffb45335f3e3379d90c9a8be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0cb89a303132be8b4eb8566ce929fdd19f14eeff2dda079a3a4f5b408418a67"} -2023-12-15T23:11:53.048Z INFO initializing dbft {"height": 3978, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:53.049Z debug frostfs-node/morph.go:229 new block {"index": 3977} -2023-12-15T23:11:53.715Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3977, "blockHeight": 3977, "took": "8.40282ms"} -2023-12-15T23:11:54.048Z INFO sending PrepareRequest {"height": 3978, "view": 0} -2023-12-15T23:11:54.048Z INFO sending Commit {"height": 3978, "view": 0} -2023-12-15T23:11:54.049Z INFO approving block {"height": 3978, "hash": "66851340242061c66273a14a47820dff19de9a9751e67405bd1b1023ac9ad201", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "443c6db661082805e7e1e09e77e8f3ffe8207770ffb45335f3e3379d90c9a8be"} -2023-12-15T23:11:54.050Z INFO initializing dbft {"height": 3979, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:54.051Z debug frostfs-node/morph.go:229 new block {"index": 3978} -2023-12-15T23:11:54.716Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3978, "blockHeight": 3978, "took": "8.178727ms"} -2023-12-15T23:11:55.049Z INFO sending PrepareRequest {"height": 3979, "view": 0} -2023-12-15T23:11:55.050Z INFO sending Commit {"height": 3979, "view": 0} -2023-12-15T23:11:55.050Z INFO approving block {"height": 3979, "hash": "47d8f753485bde2c96f0a6b45559defd5927bc6632caf9f58147c3eee93ffaa2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66851340242061c66273a14a47820dff19de9a9751e67405bd1b1023ac9ad201"} -2023-12-15T23:11:55.051Z INFO initializing dbft {"height": 3980, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:55.051Z debug frostfs-node/morph.go:229 new block {"index": 3979} -2023-12-15T23:11:55.713Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3979, "blockHeight": 3979, "took": "5.454979ms"} -2023-12-15T23:11:56.052Z INFO sending PrepareRequest {"height": 3980, "view": 0} -2023-12-15T23:11:56.052Z INFO sending Commit {"height": 3980, "view": 0} -2023-12-15T23:11:56.052Z INFO approving block {"height": 3980, "hash": "fe37d8265fbffd29728f492b019a08116a069ac15e94be701b55008e658fe39f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47d8f753485bde2c96f0a6b45559defd5927bc6632caf9f58147c3eee93ffaa2"} -2023-12-15T23:11:56.053Z INFO initializing dbft {"height": 3981, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:56.054Z debug frostfs-node/morph.go:229 new block {"index": 3980} -2023-12-15T23:11:56.716Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3980, "blockHeight": 3980, "took": "7.214259ms"} -2023-12-15T23:11:57.053Z INFO sending PrepareRequest {"height": 3981, "view": 0} -2023-12-15T23:11:57.053Z INFO sending Commit {"height": 3981, "view": 0} -2023-12-15T23:11:57.054Z INFO approving block {"height": 3981, "hash": "197134e2af78c8eab1b0f7851bff92f529ddb470d384d91a7b0dbdecd7bd72a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe37d8265fbffd29728f492b019a08116a069ac15e94be701b55008e658fe39f"} -2023-12-15T23:11:57.055Z INFO initializing dbft {"height": 3982, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:57.056Z debug frostfs-node/morph.go:229 new block {"index": 3981} -2023-12-15T23:11:57.718Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3981, "blockHeight": 3981, "took": "7.873747ms"} -2023-12-15T23:11:58.055Z INFO sending PrepareRequest {"height": 3982, "view": 0} -2023-12-15T23:11:58.055Z INFO sending Commit {"height": 3982, "view": 0} -2023-12-15T23:11:58.056Z INFO approving block {"height": 3982, "hash": "a13c7353c17d6d9760236ef64587708bb6c43ce6f54e1d2fc00dcf7d27cc96cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "197134e2af78c8eab1b0f7851bff92f529ddb470d384d91a7b0dbdecd7bd72a7"} -2023-12-15T23:11:58.057Z INFO initializing dbft {"height": 3983, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:58.058Z debug frostfs-node/morph.go:229 new block {"index": 3982} -2023-12-15T23:11:58.722Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3982, "blockHeight": 3982, "took": "9.932229ms"} -2023-12-15T23:11:59.057Z INFO sending PrepareRequest {"height": 3983, "view": 0} -2023-12-15T23:11:59.058Z INFO sending Commit {"height": 3983, "view": 0} -2023-12-15T23:11:59.058Z INFO approving block {"height": 3983, "hash": "815e14071367ba6161688a81e01de87d997c2ce9280f71530c2184bae92914c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a13c7353c17d6d9760236ef64587708bb6c43ce6f54e1d2fc00dcf7d27cc96cd"} -2023-12-15T23:11:59.060Z INFO initializing dbft {"height": 3984, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:11:59.060Z debug frostfs-node/morph.go:229 new block {"index": 3983} -2023-12-15T23:11:59.725Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3983, "blockHeight": 3983, "took": "12.18131ms"} -2023-12-15T23:12:00.060Z INFO sending PrepareRequest {"height": 3984, "view": 0} -2023-12-15T23:12:00.060Z INFO sending Commit {"height": 3984, "view": 0} -2023-12-15T23:12:00.060Z INFO approving block {"height": 3984, "hash": "83f46fe9a560d1a5d78d474af8337e4effb403786a3005bff564dbdc875c5bb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "815e14071367ba6161688a81e01de87d997c2ce9280f71530c2184bae92914c8"} -2023-12-15T23:12:00.062Z INFO initializing dbft {"height": 3985, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:00.063Z debug frostfs-node/morph.go:229 new block {"index": 3984} -2023-12-15T23:12:00.722Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3984, "blockHeight": 3984, "took": "8.259559ms"} -2023-12-15T23:12:01.062Z INFO sending PrepareRequest {"height": 3985, "view": 0} -2023-12-15T23:12:01.062Z INFO sending Commit {"height": 3985, "view": 0} -2023-12-15T23:12:01.062Z INFO approving block {"height": 3985, "hash": "c18575f50ffcd93d5f52e6d2b9aa323eb431df3eda3dae9fc81e4fc5dc241f43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83f46fe9a560d1a5d78d474af8337e4effb403786a3005bff564dbdc875c5bb6"} -2023-12-15T23:12:01.064Z INFO initializing dbft {"height": 3986, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:01.064Z debug frostfs-node/morph.go:229 new block {"index": 3985} -2023-12-15T23:12:01.723Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3985, "blockHeight": 3985, "took": "7.772505ms"} -2023-12-15T23:12:02.063Z INFO sending PrepareRequest {"height": 3986, "view": 0} -2023-12-15T23:12:02.064Z INFO sending Commit {"height": 3986, "view": 0} -2023-12-15T23:12:02.064Z INFO approving block {"height": 3986, "hash": "283fd216112d18e58a6ee9854e7fe558468a525ce139a761d9f51c65662c8d62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c18575f50ffcd93d5f52e6d2b9aa323eb431df3eda3dae9fc81e4fc5dc241f43"} -2023-12-15T23:12:02.066Z INFO initializing dbft {"height": 3987, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:02.067Z debug frostfs-node/morph.go:229 new block {"index": 3986} -2023-12-15T23:12:02.724Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3986, "blockHeight": 3986, "took": "8.490767ms"} -2023-12-15T23:12:03.067Z INFO sending PrepareRequest {"height": 3987, "view": 0} -2023-12-15T23:12:03.067Z INFO sending Commit {"height": 3987, "view": 0} -2023-12-15T23:12:03.067Z INFO approving block {"height": 3987, "hash": "5eebb8480f77b0f9005c5f20d222bba149e4905fbff445935b9ff6a3e447a10c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "283fd216112d18e58a6ee9854e7fe558468a525ce139a761d9f51c65662c8d62"} -2023-12-15T23:12:03.069Z INFO initializing dbft {"height": 3988, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:03.070Z debug frostfs-node/morph.go:229 new block {"index": 3987} -2023-12-15T23:12:03.724Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3987, "blockHeight": 3987, "took": "7.981502ms"} -2023-12-15T23:12:04.068Z INFO sending PrepareRequest {"height": 3988, "view": 0} -2023-12-15T23:12:04.068Z INFO sending Commit {"height": 3988, "view": 0} -2023-12-15T23:12:04.069Z INFO approving block {"height": 3988, "hash": "0e828b8e1f0c4b3f70e511dce5e7f236f1c4c208067a5a7401bcbd60b51cb88b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5eebb8480f77b0f9005c5f20d222bba149e4905fbff445935b9ff6a3e447a10c"} -2023-12-15T23:12:04.070Z INFO initializing dbft {"height": 3989, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:04.071Z debug frostfs-node/morph.go:229 new block {"index": 3988} -2023-12-15T23:12:04.725Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3988, "blockHeight": 3988, "took": "7.844238ms"} -2023-12-15T23:12:05.070Z INFO sending PrepareRequest {"height": 3989, "view": 0} -2023-12-15T23:12:05.071Z INFO sending Commit {"height": 3989, "view": 0} -2023-12-15T23:12:05.071Z INFO approving block {"height": 3989, "hash": "63830340bf59ece7cf2a443d17910d287adcd530a611388829d39295ec061d0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e828b8e1f0c4b3f70e511dce5e7f236f1c4c208067a5a7401bcbd60b51cb88b"} -2023-12-15T23:12:05.073Z INFO initializing dbft {"height": 3990, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:05.074Z debug frostfs-node/morph.go:229 new block {"index": 3989} -2023-12-15T23:12:05.726Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3989, "blockHeight": 3989, "took": "8.718814ms"} -2023-12-15T23:12:06.072Z INFO sending PrepareRequest {"height": 3990, "view": 0} -2023-12-15T23:12:06.072Z INFO sending Commit {"height": 3990, "view": 0} -2023-12-15T23:12:06.073Z INFO approving block {"height": 3990, "hash": "e7e7687675c2b021be60df0924e3bf1f26a9073037f423ba0566aa541b74db7e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63830340bf59ece7cf2a443d17910d287adcd530a611388829d39295ec061d0d"} -2023-12-15T23:12:06.074Z INFO initializing dbft {"height": 3991, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:06.076Z debug frostfs-node/morph.go:229 new block {"index": 3990} -2023-12-15T23:12:06.725Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3990, "blockHeight": 3990, "took": "7.045145ms"} -2023-12-15T23:12:07.073Z INFO sending PrepareRequest {"height": 3991, "view": 0} -2023-12-15T23:12:07.074Z INFO sending Commit {"height": 3991, "view": 0} -2023-12-15T23:12:07.074Z INFO approving block {"height": 3991, "hash": "68a262469d4ac0dee852d93220bfe27354591cb758cf4c0fe4c52b0569205fb9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7e7687675c2b021be60df0924e3bf1f26a9073037f423ba0566aa541b74db7e"} -2023-12-15T23:12:07.075Z INFO initializing dbft {"height": 3992, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:07.076Z debug frostfs-node/morph.go:229 new block {"index": 3991} -2023-12-15T23:12:07.726Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3991, "blockHeight": 3991, "took": "7.588722ms"} -2023-12-15T23:12:08.075Z INFO sending PrepareRequest {"height": 3992, "view": 0} -2023-12-15T23:12:08.075Z INFO sending Commit {"height": 3992, "view": 0} -2023-12-15T23:12:08.076Z INFO approving block {"height": 3992, "hash": "348468c6a6d647f7532ebeffaadd261689d8ef6c3ce67c5b922e1d61e53084f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68a262469d4ac0dee852d93220bfe27354591cb758cf4c0fe4c52b0569205fb9"} -2023-12-15T23:12:08.077Z INFO initializing dbft {"height": 3993, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:08.078Z debug frostfs-node/morph.go:229 new block {"index": 3992} -2023-12-15T23:12:08.725Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3992, "blockHeight": 3992, "took": "5.99934ms"} -2023-12-15T23:12:09.076Z INFO sending PrepareRequest {"height": 3993, "view": 0} -2023-12-15T23:12:09.077Z INFO sending Commit {"height": 3993, "view": 0} -2023-12-15T23:12:09.077Z INFO approving block {"height": 3993, "hash": "0c1aca4b63582f85ad4f68aa1600e43d96b48873348b74517871d0a4028c70af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "348468c6a6d647f7532ebeffaadd261689d8ef6c3ce67c5b922e1d61e53084f1"} -2023-12-15T23:12:09.078Z INFO initializing dbft {"height": 3994, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:09.079Z debug frostfs-node/morph.go:229 new block {"index": 3993} -2023-12-15T23:12:09.724Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3993, "blockHeight": 3993, "took": "4.818061ms"} -2023-12-15T23:12:10.078Z INFO sending PrepareRequest {"height": 3994, "view": 0} -2023-12-15T23:12:10.078Z INFO sending Commit {"height": 3994, "view": 0} -2023-12-15T23:12:10.079Z INFO approving block {"height": 3994, "hash": "a57100267e1e9ec921f674589c8d88235ce3991587c0e2e40cf9d4089bf48529", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c1aca4b63582f85ad4f68aa1600e43d96b48873348b74517871d0a4028c70af"} -2023-12-15T23:12:10.081Z INFO initializing dbft {"height": 3995, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:10.082Z debug frostfs-node/morph.go:229 new block {"index": 3994} -2023-12-15T23:12:10.728Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3994, "blockHeight": 3994, "took": "7.891396ms"} -2023-12-15T23:12:11.080Z INFO sending PrepareRequest {"height": 3995, "view": 0} -2023-12-15T23:12:11.080Z INFO sending Commit {"height": 3995, "view": 0} -2023-12-15T23:12:11.080Z INFO approving block {"height": 3995, "hash": "debd1ae6efa0c3774dd1754280fcab454f449dca6609e049c9f5af6efadeeafe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a57100267e1e9ec921f674589c8d88235ce3991587c0e2e40cf9d4089bf48529"} -2023-12-15T23:12:11.083Z INFO initializing dbft {"height": 3996, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:11.083Z debug frostfs-node/morph.go:229 new block {"index": 3995} -2023-12-15T23:12:11.726Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3995, "blockHeight": 3995, "took": "5.035046ms"} -2023-12-15T23:12:12.081Z INFO sending PrepareRequest {"height": 3996, "view": 0} -2023-12-15T23:12:12.082Z INFO sending Commit {"height": 3996, "view": 0} -2023-12-15T23:12:12.082Z INFO approving block {"height": 3996, "hash": "480f25e4556c9efa709292930c7385e1b70cdfe6c2ae49d75d6805a604ba16dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "debd1ae6efa0c3774dd1754280fcab454f449dca6609e049c9f5af6efadeeafe"} -2023-12-15T23:12:12.083Z INFO initializing dbft {"height": 3997, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:12.084Z debug frostfs-node/morph.go:229 new block {"index": 3996} -2023-12-15T23:12:12.733Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3996, "blockHeight": 3996, "took": "11.18969ms"} -2023-12-15T23:12:13.083Z INFO sending PrepareRequest {"height": 3997, "view": 0} -2023-12-15T23:12:13.083Z INFO sending Commit {"height": 3997, "view": 0} -2023-12-15T23:12:13.084Z INFO approving block {"height": 3997, "hash": "a626dbc87852e8766b4282bb4fe250a162703db3c4da7d3ab90a91edb5fefd8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "480f25e4556c9efa709292930c7385e1b70cdfe6c2ae49d75d6805a604ba16dd"} -2023-12-15T23:12:13.086Z INFO initializing dbft {"height": 3998, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:13.086Z debug frostfs-node/morph.go:229 new block {"index": 3997} -2023-12-15T23:12:13.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3997, "blockHeight": 3997, "took": "8.232099ms"} -2023-12-15T23:12:14.085Z INFO sending PrepareRequest {"height": 3998, "view": 0} -2023-12-15T23:12:14.085Z INFO sending Commit {"height": 3998, "view": 0} -2023-12-15T23:12:14.086Z INFO approving block {"height": 3998, "hash": "5f0204d666120523c7e44070cf88d93524dfd4b84f3b706113f87c3d54980940", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a626dbc87852e8766b4282bb4fe250a162703db3c4da7d3ab90a91edb5fefd8a"} -2023-12-15T23:12:14.088Z INFO initializing dbft {"height": 3999, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:14.089Z debug frostfs-node/morph.go:229 new block {"index": 3998} -2023-12-15T23:12:14.733Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 3998, "blockHeight": 3998, "took": "8.179539ms"} -2023-12-15T23:12:15.087Z INFO sending PrepareRequest {"height": 3999, "view": 0} -2023-12-15T23:12:15.087Z INFO sending Commit {"height": 3999, "view": 0} -2023-12-15T23:12:15.087Z INFO approving block {"height": 3999, "hash": "cdb723050c34ebc288fd7a4b3993743945fa856c505ed18f03a81ebc3d1d8401", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f0204d666120523c7e44070cf88d93524dfd4b84f3b706113f87c3d54980940"} -2023-12-15T23:12:15.095Z INFO initializing dbft {"height": 4000, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:15.096Z debug frostfs-node/morph.go:229 new block {"index": 3999} -2023-12-15T23:12:15.736Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 3999, "blockHeight": 3999, "took": "10.804316ms"} -2023-12-15T23:12:16.089Z INFO sending PrepareRequest {"height": 4000, "view": 0} -2023-12-15T23:12:16.090Z INFO sending Commit {"height": 4000, "view": 0} -2023-12-15T23:12:16.090Z INFO approving block {"height": 4000, "hash": "10d085c494c183460381e372c640fb8311849dda28cc2a65627078cb9eaf5ace", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdb723050c34ebc288fd7a4b3993743945fa856c505ed18f03a81ebc3d1d8401"} -2023-12-15T23:12:16.092Z INFO initializing dbft {"height": 4001, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:16.093Z debug frostfs-node/morph.go:229 new block {"index": 4000} -2023-12-15T23:12:16.731Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4000, "blockHeight": 4000, "took": "3.955666ms"} -2023-12-15T23:12:17.091Z INFO sending PrepareRequest {"height": 4001, "view": 0} -2023-12-15T23:12:17.091Z INFO sending Commit {"height": 4001, "view": 0} -2023-12-15T23:12:17.092Z INFO approving block {"height": 4001, "hash": "1591a5e3802785889db9f39a155b3747631d97429d2ed2a87cb60e796b011733", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10d085c494c183460381e372c640fb8311849dda28cc2a65627078cb9eaf5ace"} -2023-12-15T23:12:17.093Z INFO initializing dbft {"height": 4002, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:17.094Z debug frostfs-node/morph.go:229 new block {"index": 4001} -2023-12-15T23:12:17.733Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4001, "blockHeight": 4001, "took": "5.193625ms"} -2023-12-15T23:12:18.093Z INFO sending PrepareRequest {"height": 4002, "view": 0} -2023-12-15T23:12:18.093Z INFO sending Commit {"height": 4002, "view": 0} -2023-12-15T23:12:18.094Z INFO approving block {"height": 4002, "hash": "0e45240666e2fa5989ab97c259b034f4ecde0f16e5a6e9e5ed40c9bb5ff60336", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1591a5e3802785889db9f39a155b3747631d97429d2ed2a87cb60e796b011733"} -2023-12-15T23:12:18.095Z INFO initializing dbft {"height": 4003, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:18.096Z debug frostfs-node/morph.go:229 new block {"index": 4002} -2023-12-15T23:12:18.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4002, "blockHeight": 4002, "took": "8.979582ms"} -2023-12-15T23:12:19.095Z INFO sending PrepareRequest {"height": 4003, "view": 0} -2023-12-15T23:12:19.096Z INFO sending Commit {"height": 4003, "view": 0} -2023-12-15T23:12:19.096Z INFO approving block {"height": 4003, "hash": "b3c6e7e2ea96e678c0ee56cdaf066568fb37c8921369935ee5902d40f688e5e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e45240666e2fa5989ab97c259b034f4ecde0f16e5a6e9e5ed40c9bb5ff60336"} -2023-12-15T23:12:19.098Z INFO initializing dbft {"height": 4004, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:19.101Z debug frostfs-node/morph.go:229 new block {"index": 4003} -2023-12-15T23:12:19.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4003, "blockHeight": 4003, "took": "7.895313ms"} -2023-12-15T23:12:20.097Z INFO sending PrepareRequest {"height": 4004, "view": 0} -2023-12-15T23:12:20.098Z INFO sending Commit {"height": 4004, "view": 0} -2023-12-15T23:12:20.098Z INFO approving block {"height": 4004, "hash": "623ae2c153f5bb703260f658b9a11ae0d5801c2b07a8dde152b8cb9a761583a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3c6e7e2ea96e678c0ee56cdaf066568fb37c8921369935ee5902d40f688e5e2"} -2023-12-15T23:12:20.100Z INFO initializing dbft {"height": 4005, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:20.101Z debug frostfs-node/morph.go:229 new block {"index": 4004} -2023-12-15T23:12:20.738Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4004, "blockHeight": 4004, "took": "7.234581ms"} -2023-12-15T23:12:21.099Z INFO sending PrepareRequest {"height": 4005, "view": 0} -2023-12-15T23:12:21.099Z INFO sending Commit {"height": 4005, "view": 0} -2023-12-15T23:12:21.100Z INFO approving block {"height": 4005, "hash": "bfea12d198320f538749f072c6255ecf3cb1590932324013d65a91a3f372afb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "623ae2c153f5bb703260f658b9a11ae0d5801c2b07a8dde152b8cb9a761583a8"} -2023-12-15T23:12:21.101Z INFO initializing dbft {"height": 4006, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:21.102Z debug frostfs-node/morph.go:229 new block {"index": 4005} -2023-12-15T23:12:21.739Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4005, "blockHeight": 4005, "took": "7.650209ms"} -2023-12-15T23:12:22.101Z INFO sending PrepareRequest {"height": 4006, "view": 0} -2023-12-15T23:12:22.101Z INFO sending Commit {"height": 4006, "view": 0} -2023-12-15T23:12:22.102Z INFO approving block {"height": 4006, "hash": "06716b496aaf7df457b96cb4e52763c910c91e1b6d7b2b2bc3c7f1693befc757", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfea12d198320f538749f072c6255ecf3cb1590932324013d65a91a3f372afb2"} -2023-12-15T23:12:22.103Z INFO initializing dbft {"height": 4007, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:22.104Z debug frostfs-node/morph.go:229 new block {"index": 4006} -2023-12-15T23:12:22.740Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4006, "blockHeight": 4006, "took": "7.703643ms"} -2023-12-15T23:12:23.102Z INFO sending PrepareRequest {"height": 4007, "view": 0} -2023-12-15T23:12:23.102Z INFO sending Commit {"height": 4007, "view": 0} -2023-12-15T23:12:23.103Z INFO approving block {"height": 4007, "hash": "8c807b5a2fffd9cbac1b5f9ef58676f66494a91f545642e49e78cbedbe6cf2d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06716b496aaf7df457b96cb4e52763c910c91e1b6d7b2b2bc3c7f1693befc757"} -2023-12-15T23:12:23.103Z INFO initializing dbft {"height": 4008, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:23.104Z debug frostfs-node/morph.go:229 new block {"index": 4007} -2023-12-15T23:12:23.740Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4007, "blockHeight": 4007, "took": "7.345355ms"} -2023-12-15T23:12:24.103Z INFO sending PrepareRequest {"height": 4008, "view": 0} -2023-12-15T23:12:24.104Z INFO sending Commit {"height": 4008, "view": 0} -2023-12-15T23:12:24.104Z INFO approving block {"height": 4008, "hash": "ce8c904127463093da312c666391448ff44cebc7ccd17a286d56936b2c46baea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c807b5a2fffd9cbac1b5f9ef58676f66494a91f545642e49e78cbedbe6cf2d6"} -2023-12-15T23:12:24.106Z INFO initializing dbft {"height": 4009, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:24.107Z debug frostfs-node/morph.go:229 new block {"index": 4008} -2023-12-15T23:12:24.742Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4008, "blockHeight": 4008, "took": "8.249669ms"} -2023-12-15T23:12:25.105Z INFO sending PrepareRequest {"height": 4009, "view": 0} -2023-12-15T23:12:25.105Z INFO sending Commit {"height": 4009, "view": 0} -2023-12-15T23:12:25.106Z INFO approving block {"height": 4009, "hash": "a24a3735690022403dbfec916c490db85351a87fe8e6aa25fae37824817d65a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce8c904127463093da312c666391448ff44cebc7ccd17a286d56936b2c46baea"} -2023-12-15T23:12:25.108Z INFO initializing dbft {"height": 4010, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:25.108Z debug frostfs-node/morph.go:229 new block {"index": 4009} -2023-12-15T23:12:25.742Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4009, "blockHeight": 4009, "took": "6.934451ms"} -2023-12-15T23:12:26.107Z INFO sending PrepareRequest {"height": 4010, "view": 0} -2023-12-15T23:12:26.107Z INFO sending Commit {"height": 4010, "view": 0} -2023-12-15T23:12:26.108Z INFO approving block {"height": 4010, "hash": "971fd4cfd45f8a41b9f2af347027ae905b48720c52d7254c78ec77173debbb82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a24a3735690022403dbfec916c490db85351a87fe8e6aa25fae37824817d65a2"} -2023-12-15T23:12:26.109Z INFO initializing dbft {"height": 4011, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:26.110Z debug frostfs-node/morph.go:229 new block {"index": 4010} -2023-12-15T23:12:26.742Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4010, "blockHeight": 4010, "took": "6.747659ms"} -2023-12-15T23:12:27.109Z INFO sending PrepareRequest {"height": 4011, "view": 0} -2023-12-15T23:12:27.109Z INFO sending Commit {"height": 4011, "view": 0} -2023-12-15T23:12:27.109Z INFO approving block {"height": 4011, "hash": "8676ac31cd3b51104c49566e91bd75f8c154afabf8e5b9a2f57a23a9f19964fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "971fd4cfd45f8a41b9f2af347027ae905b48720c52d7254c78ec77173debbb82"} -2023-12-15T23:12:27.111Z INFO initializing dbft {"height": 4012, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:27.112Z debug frostfs-node/morph.go:229 new block {"index": 4011} -2023-12-15T23:12:27.743Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4011, "blockHeight": 4011, "took": "6.994676ms"} -2023-12-15T23:12:28.111Z INFO sending PrepareRequest {"height": 4012, "view": 0} -2023-12-15T23:12:28.111Z INFO sending Commit {"height": 4012, "view": 0} -2023-12-15T23:12:28.111Z INFO approving block {"height": 4012, "hash": "e9929aa0f81cdc07520df37d4b6815f44eee1cc794452d6ecc36aef1c129c371", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8676ac31cd3b51104c49566e91bd75f8c154afabf8e5b9a2f57a23a9f19964fa"} -2023-12-15T23:12:28.113Z INFO initializing dbft {"height": 4013, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:28.113Z debug frostfs-node/morph.go:229 new block {"index": 4012} -2023-12-15T23:12:28.746Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4012, "blockHeight": 4012, "took": "8.691285ms"} -2023-12-15T23:12:29.113Z INFO sending PrepareRequest {"height": 4013, "view": 0} -2023-12-15T23:12:29.113Z INFO sending Commit {"height": 4013, "view": 0} -2023-12-15T23:12:29.113Z INFO approving block {"height": 4013, "hash": "1beebf32c08ada78499547fd75bfee50a5c1972f94dc686bc2c05a22f28f1c26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9929aa0f81cdc07520df37d4b6815f44eee1cc794452d6ecc36aef1c129c371"} -2023-12-15T23:12:29.114Z INFO initializing dbft {"height": 4014, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:29.115Z debug frostfs-node/morph.go:229 new block {"index": 4013} -2023-12-15T23:12:29.746Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4013, "blockHeight": 4013, "took": "7.533995ms"} -2023-12-15T23:12:30.115Z INFO sending PrepareRequest {"height": 4014, "view": 0} -2023-12-15T23:12:30.115Z INFO sending Commit {"height": 4014, "view": 0} -2023-12-15T23:12:30.115Z INFO approving block {"height": 4014, "hash": "7a9cfd06ca191ceb64c42b8a272073b5983797c27ab3e45ee1865e2f42426ecf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1beebf32c08ada78499547fd75bfee50a5c1972f94dc686bc2c05a22f28f1c26"} -2023-12-15T23:12:30.118Z INFO initializing dbft {"height": 4015, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:30.118Z debug frostfs-node/morph.go:229 new block {"index": 4014} -2023-12-15T23:12:30.744Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4014, "blockHeight": 4014, "took": "4.842241ms"} -2023-12-15T23:12:31.116Z INFO sending PrepareRequest {"height": 4015, "view": 0} -2023-12-15T23:12:31.117Z INFO sending Commit {"height": 4015, "view": 0} -2023-12-15T23:12:31.118Z INFO approving block {"height": 4015, "hash": "897188713200ba3e946645ac77e9665efcc7b87eec59aa2dd55261e21209115d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a9cfd06ca191ceb64c42b8a272073b5983797c27ab3e45ee1865e2f42426ecf"} -2023-12-15T23:12:31.119Z INFO initializing dbft {"height": 4016, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:31.120Z debug frostfs-node/morph.go:229 new block {"index": 4015} -2023-12-15T23:12:31.745Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4015, "blockHeight": 4015, "took": "5.343035ms"} -2023-12-15T23:12:32.119Z INFO sending PrepareRequest {"height": 4016, "view": 0} -2023-12-15T23:12:32.120Z INFO sending Commit {"height": 4016, "view": 0} -2023-12-15T23:12:32.120Z INFO approving block {"height": 4016, "hash": "70c9ee85b233ca2c53f16a0102b83d8082bfbb4765f8d005d82d435730022142", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "897188713200ba3e946645ac77e9665efcc7b87eec59aa2dd55261e21209115d"} -2023-12-15T23:12:32.122Z INFO initializing dbft {"height": 4017, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:32.122Z debug frostfs-node/morph.go:229 new block {"index": 4016} -2023-12-15T23:12:32.747Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4016, "blockHeight": 4016, "took": "6.056966ms"} -2023-12-15T23:12:33.121Z INFO sending PrepareRequest {"height": 4017, "view": 0} -2023-12-15T23:12:33.121Z INFO sending Commit {"height": 4017, "view": 0} -2023-12-15T23:12:33.122Z INFO approving block {"height": 4017, "hash": "20bc707b8ecdd0e443bb287201fbaf27b707b494b871f03c9a1911e8a0971b3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70c9ee85b233ca2c53f16a0102b83d8082bfbb4765f8d005d82d435730022142"} -2023-12-15T23:12:33.124Z INFO initializing dbft {"height": 4018, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:33.125Z debug frostfs-node/morph.go:229 new block {"index": 4017} -2023-12-15T23:12:33.128Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:12:33.133Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:12:33.133Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:12:33.749Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4017, "blockHeight": 4017, "took": "7.778366ms"} -2023-12-15T23:12:34.123Z INFO sending PrepareRequest {"height": 4018, "view": 0} -2023-12-15T23:12:34.124Z INFO sending Commit {"height": 4018, "view": 0} -2023-12-15T23:12:34.125Z INFO approving block {"height": 4018, "hash": "24626d6702b44673f107279d1e013b56ec88f2a43bdaf71de76bb0c491ee9190", "tx_count": 2, "merkle": "4c6bf40169d0c5e3634f2160ba83631f82028e57fcf10619bbf2faa647322bdc", "prev": "20bc707b8ecdd0e443bb287201fbaf27b707b494b871f03c9a1911e8a0971b3f"} -2023-12-15T23:12:34.126Z INFO runtime log {"tx": "7413d713f47b4d290d7b1b2aa2f982bd56ea7cbbbc032b5b14fa3a6a9aadf572", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:12:34.127Z INFO runtime log {"tx": "7413d713f47b4d290d7b1b2aa2f982bd56ea7cbbbc032b5b14fa3a6a9aadf572", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:12:34.130Z INFO initializing dbft {"height": 4019, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:34.131Z debug frostfs-node/morph.go:229 new block {"index": 4018} -2023-12-15T23:12:34.754Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 4018, "blockHeight": 4018, "took": "11.741494ms"} -2023-12-15T23:12:35.126Z INFO sending PrepareRequest {"height": 4019, "view": 0} -2023-12-15T23:12:35.127Z INFO sending Commit {"height": 4019, "view": 0} -2023-12-15T23:12:35.127Z INFO approving block {"height": 4019, "hash": "dff58234129ceea2682952778933af0fe877cc4fc17d9595626b3ed450bb928b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24626d6702b44673f107279d1e013b56ec88f2a43bdaf71de76bb0c491ee9190"} -2023-12-15T23:12:35.128Z INFO initializing dbft {"height": 4020, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:35.129Z debug frostfs-node/morph.go:229 new block {"index": 4019} -2023-12-15T23:12:35.755Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4019, "blockHeight": 4019, "took": "11.789908ms"} -2023-12-15T23:12:36.128Z INFO sending PrepareRequest {"height": 4020, "view": 0} -2023-12-15T23:12:36.128Z INFO sending Commit {"height": 4020, "view": 0} -2023-12-15T23:12:36.129Z INFO approving block {"height": 4020, "hash": "769495d76c71f256361e7d545f8ec8d48d73b6a7895f9e32007a4c376433078d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dff58234129ceea2682952778933af0fe877cc4fc17d9595626b3ed450bb928b"} -2023-12-15T23:12:36.130Z INFO initializing dbft {"height": 4021, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:36.130Z debug frostfs-node/morph.go:229 new block {"index": 4020} -2023-12-15T23:12:36.751Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4020, "blockHeight": 4020, "took": "7.093175ms"} -2023-12-15T23:12:37.130Z INFO sending PrepareRequest {"height": 4021, "view": 0} -2023-12-15T23:12:37.130Z INFO sending Commit {"height": 4021, "view": 0} -2023-12-15T23:12:37.130Z INFO approving block {"height": 4021, "hash": "574d6810ac8ddd3f5d5c68d659eed071c5f0c474064a00c72debe35b310aa558", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "769495d76c71f256361e7d545f8ec8d48d73b6a7895f9e32007a4c376433078d"} -2023-12-15T23:12:37.131Z INFO initializing dbft {"height": 4022, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:37.132Z debug frostfs-node/morph.go:229 new block {"index": 4021} -2023-12-15T23:12:37.751Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4021, "blockHeight": 4021, "took": "6.030767ms"} -2023-12-15T23:12:38.132Z INFO sending PrepareRequest {"height": 4022, "view": 0} -2023-12-15T23:12:38.132Z INFO sending Commit {"height": 4022, "view": 0} -2023-12-15T23:12:38.133Z INFO approving block {"height": 4022, "hash": "f607b949fb0555eb3a229dd3d38a6f8ebf222e45a4478f420dddd6e4db008892", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "574d6810ac8ddd3f5d5c68d659eed071c5f0c474064a00c72debe35b310aa558"} -2023-12-15T23:12:38.135Z INFO initializing dbft {"height": 4023, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:38.135Z debug frostfs-node/morph.go:229 new block {"index": 4022} -2023-12-15T23:12:38.753Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4022, "blockHeight": 4022, "took": "7.536184ms"} -2023-12-15T23:12:39.135Z INFO sending PrepareRequest {"height": 4023, "view": 0} -2023-12-15T23:12:39.135Z INFO sending Commit {"height": 4023, "view": 0} -2023-12-15T23:12:39.135Z INFO approving block {"height": 4023, "hash": "df8b5df94811832bb0dba18d492e40b2baf4c6feb5fb0c30ee5ee09b0a45083e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f607b949fb0555eb3a229dd3d38a6f8ebf222e45a4478f420dddd6e4db008892"} -2023-12-15T23:12:39.137Z INFO initializing dbft {"height": 4024, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:39.137Z debug frostfs-node/morph.go:229 new block {"index": 4023} -2023-12-15T23:12:39.755Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4023, "blockHeight": 4023, "took": "8.028836ms"} -2023-12-15T23:12:40.137Z INFO sending PrepareRequest {"height": 4024, "view": 0} -2023-12-15T23:12:40.137Z INFO sending Commit {"height": 4024, "view": 0} -2023-12-15T23:12:40.138Z INFO approving block {"height": 4024, "hash": "a1379d773de2e660da5dead82f272ca01b408ed4720231ffcc217f3731e06b01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df8b5df94811832bb0dba18d492e40b2baf4c6feb5fb0c30ee5ee09b0a45083e"} -2023-12-15T23:12:40.140Z INFO initializing dbft {"height": 4025, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:40.141Z debug frostfs-node/morph.go:229 new block {"index": 4024} -2023-12-15T23:12:40.753Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4024, "blockHeight": 4024, "took": "4.281048ms"} -2023-12-15T23:12:41.139Z INFO sending PrepareRequest {"height": 4025, "view": 0} -2023-12-15T23:12:41.139Z INFO sending Commit {"height": 4025, "view": 0} -2023-12-15T23:12:41.140Z INFO approving block {"height": 4025, "hash": "c719171d7209c46b81faf55b2597a504f870d4bb883358db9d7fb83db0e6cbfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1379d773de2e660da5dead82f272ca01b408ed4720231ffcc217f3731e06b01"} -2023-12-15T23:12:41.141Z INFO initializing dbft {"height": 4026, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:41.142Z debug frostfs-node/morph.go:229 new block {"index": 4025} -2023-12-15T23:12:41.757Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4025, "blockHeight": 4025, "took": "8.260486ms"} -2023-12-15T23:12:42.141Z INFO sending PrepareRequest {"height": 4026, "view": 0} -2023-12-15T23:12:42.141Z INFO sending Commit {"height": 4026, "view": 0} -2023-12-15T23:12:42.142Z INFO approving block {"height": 4026, "hash": "a62516065a49bf582511bd50d13dd04564df63a8b8ba4b1615691bc1cb2b2f51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c719171d7209c46b81faf55b2597a504f870d4bb883358db9d7fb83db0e6cbfc"} -2023-12-15T23:12:42.144Z INFO initializing dbft {"height": 4027, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:42.145Z debug frostfs-node/morph.go:229 new block {"index": 4026} -2023-12-15T23:12:42.755Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4026, "blockHeight": 4026, "took": "4.925601ms"} -2023-12-15T23:12:43.144Z INFO sending PrepareRequest {"height": 4027, "view": 0} -2023-12-15T23:12:43.144Z INFO sending Commit {"height": 4027, "view": 0} -2023-12-15T23:12:43.144Z INFO approving block {"height": 4027, "hash": "857c0b326bd262066b535ce45592b68a81e040786326be98d48c9ad1aa789149", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a62516065a49bf582511bd50d13dd04564df63a8b8ba4b1615691bc1cb2b2f51"} -2023-12-15T23:12:43.146Z INFO initializing dbft {"height": 4028, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:43.147Z debug frostfs-node/morph.go:229 new block {"index": 4027} -2023-12-15T23:12:43.761Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4027, "blockHeight": 4027, "took": "10.396496ms"} -2023-12-15T23:12:44.145Z INFO sending PrepareRequest {"height": 4028, "view": 0} -2023-12-15T23:12:44.145Z INFO sending Commit {"height": 4028, "view": 0} -2023-12-15T23:12:44.146Z INFO approving block {"height": 4028, "hash": "a3c19226ef7cdc76294019a56c08034b3fb6dc3374bfb6e96486dd7d4fc3655e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "857c0b326bd262066b535ce45592b68a81e040786326be98d48c9ad1aa789149"} -2023-12-15T23:12:44.147Z INFO initializing dbft {"height": 4029, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:44.148Z debug frostfs-node/morph.go:229 new block {"index": 4028} -2023-12-15T23:12:44.758Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4028, "blockHeight": 4028, "took": "7.727036ms"} -2023-12-15T23:12:45.147Z INFO sending PrepareRequest {"height": 4029, "view": 0} -2023-12-15T23:12:45.147Z INFO sending Commit {"height": 4029, "view": 0} -2023-12-15T23:12:45.148Z INFO approving block {"height": 4029, "hash": "6e966c161c3472748ad4d44834e3b85e701dca83d0298461b99ab6bbeda4b6b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3c19226ef7cdc76294019a56c08034b3fb6dc3374bfb6e96486dd7d4fc3655e"} -2023-12-15T23:12:45.149Z INFO initializing dbft {"height": 4030, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:45.149Z debug frostfs-node/morph.go:229 new block {"index": 4029} -2023-12-15T23:12:45.759Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4029, "blockHeight": 4029, "took": "7.86684ms"} -2023-12-15T23:12:46.148Z INFO sending PrepareRequest {"height": 4030, "view": 0} -2023-12-15T23:12:46.149Z INFO sending Commit {"height": 4030, "view": 0} -2023-12-15T23:12:46.149Z INFO approving block {"height": 4030, "hash": "29bb0ae1e862f595a49a03a75cc97488c07b59907e150e14598b1899d363ee87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e966c161c3472748ad4d44834e3b85e701dca83d0298461b99ab6bbeda4b6b9"} -2023-12-15T23:12:46.150Z INFO initializing dbft {"height": 4031, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:46.151Z debug frostfs-node/morph.go:229 new block {"index": 4030} -2023-12-15T23:12:46.759Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4030, "blockHeight": 4030, "took": "7.295556ms"} -2023-12-15T23:12:47.150Z INFO sending PrepareRequest {"height": 4031, "view": 0} -2023-12-15T23:12:47.151Z INFO sending Commit {"height": 4031, "view": 0} -2023-12-15T23:12:47.151Z INFO approving block {"height": 4031, "hash": "913a839d174be94a77c745a50e2aca251b4191f389dc866143ad0045e825024e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29bb0ae1e862f595a49a03a75cc97488c07b59907e150e14598b1899d363ee87"} -2023-12-15T23:12:47.153Z INFO initializing dbft {"height": 4032, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:47.153Z debug frostfs-node/morph.go:229 new block {"index": 4031} -2023-12-15T23:12:47.760Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4031, "blockHeight": 4031, "took": "6.658365ms"} -2023-12-15T23:12:48.153Z INFO sending PrepareRequest {"height": 4032, "view": 0} -2023-12-15T23:12:48.153Z INFO sending Commit {"height": 4032, "view": 0} -2023-12-15T23:12:48.153Z INFO approving block {"height": 4032, "hash": "7b4df7c26961333dcb88c1e4939c221e0338f2cf2b4c24ba0a8f12fbc72ee7f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "913a839d174be94a77c745a50e2aca251b4191f389dc866143ad0045e825024e"} -2023-12-15T23:12:48.155Z INFO initializing dbft {"height": 4033, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:48.156Z debug frostfs-node/morph.go:229 new block {"index": 4032} -2023-12-15T23:12:48.759Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4032, "blockHeight": 4032, "took": "5.252214ms"} -2023-12-15T23:12:49.155Z INFO sending PrepareRequest {"height": 4033, "view": 0} -2023-12-15T23:12:49.155Z INFO sending Commit {"height": 4033, "view": 0} -2023-12-15T23:12:49.156Z INFO approving block {"height": 4033, "hash": "ed92323ae7f9483b4ad8da33e12fe6bc73f60bb78fa29a4cf394a5dea901551b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b4df7c26961333dcb88c1e4939c221e0338f2cf2b4c24ba0a8f12fbc72ee7f4"} -2023-12-15T23:12:49.157Z INFO initializing dbft {"height": 4034, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:49.158Z debug frostfs-node/morph.go:229 new block {"index": 4033} -2023-12-15T23:12:49.763Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4033, "blockHeight": 4033, "took": "7.33544ms"} -2023-12-15T23:12:50.157Z INFO sending PrepareRequest {"height": 4034, "view": 0} -2023-12-15T23:12:50.157Z INFO sending Commit {"height": 4034, "view": 0} -2023-12-15T23:12:50.158Z INFO approving block {"height": 4034, "hash": "fa08cedf7e4ad9314d7491f75e5e4076a887fb8e7cbe8ae7b6856af0330e3e27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed92323ae7f9483b4ad8da33e12fe6bc73f60bb78fa29a4cf394a5dea901551b"} -2023-12-15T23:12:50.159Z INFO initializing dbft {"height": 4035, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:50.160Z debug frostfs-node/morph.go:229 new block {"index": 4034} -2023-12-15T23:12:50.762Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4034, "blockHeight": 4034, "took": "5.352832ms"} -2023-12-15T23:12:51.159Z INFO sending PrepareRequest {"height": 4035, "view": 0} -2023-12-15T23:12:51.159Z INFO sending Commit {"height": 4035, "view": 0} -2023-12-15T23:12:51.159Z INFO approving block {"height": 4035, "hash": "13bc571bdd049b36b4eb9205382e41a179006a89bea318bc2a10c563e3a80143", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa08cedf7e4ad9314d7491f75e5e4076a887fb8e7cbe8ae7b6856af0330e3e27"} -2023-12-15T23:12:51.162Z INFO initializing dbft {"height": 4036, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:51.163Z debug frostfs-node/morph.go:229 new block {"index": 4035} -2023-12-15T23:12:51.766Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4035, "blockHeight": 4035, "took": "8.087092ms"} -2023-12-15T23:12:52.160Z INFO sending PrepareRequest {"height": 4036, "view": 0} -2023-12-15T23:12:52.161Z INFO sending Commit {"height": 4036, "view": 0} -2023-12-15T23:12:52.161Z INFO approving block {"height": 4036, "hash": "c93a44455306fb337bff6a6afeb038a6a5ac98a63bd4d282dd25abf13268e2c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13bc571bdd049b36b4eb9205382e41a179006a89bea318bc2a10c563e3a80143"} -2023-12-15T23:12:52.163Z INFO initializing dbft {"height": 4037, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:52.164Z debug frostfs-node/morph.go:229 new block {"index": 4036} -2023-12-15T23:12:52.170Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 17, "iteration": 2, "error": "no data for 1 iteration in 17 epoch for consumers's trusts"} -2023-12-15T23:12:52.172Z info settlement/calls.go:106 start basic income distribution {"epoch": 17} -2023-12-15T23:12:52.767Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4036, "blockHeight": 4036, "took": "8.528936ms"} -2023-12-15T23:12:53.162Z INFO sending PrepareRequest {"height": 4037, "view": 0} -2023-12-15T23:12:53.163Z INFO sending Commit {"height": 4037, "view": 0} -2023-12-15T23:12:53.163Z INFO approving block {"height": 4037, "hash": "f96581a055f31b0b23217ba26ddccd48b55a3dd7bf912016b82b3abd5d971752", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c93a44455306fb337bff6a6afeb038a6a5ac98a63bd4d282dd25abf13268e2c3"} -2023-12-15T23:12:53.165Z INFO initializing dbft {"height": 4038, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:53.166Z debug frostfs-node/morph.go:229 new block {"index": 4037} -2023-12-15T23:12:53.766Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4037, "blockHeight": 4037, "took": "7.438458ms"} -2023-12-15T23:12:54.165Z INFO sending PrepareRequest {"height": 4038, "view": 0} -2023-12-15T23:12:54.165Z INFO sending Commit {"height": 4038, "view": 0} -2023-12-15T23:12:54.166Z INFO approving block {"height": 4038, "hash": "7f6114d0107a674dd5641da611dc09aef82ca815e6c2158db423ffb83ee7406f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f96581a055f31b0b23217ba26ddccd48b55a3dd7bf912016b82b3abd5d971752"} -2023-12-15T23:12:54.167Z INFO initializing dbft {"height": 4039, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:54.168Z debug frostfs-node/morph.go:229 new block {"index": 4038} -2023-12-15T23:12:54.764Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4038, "blockHeight": 4038, "took": "4.360777ms"} -2023-12-15T23:12:55.166Z INFO sending PrepareRequest {"height": 4039, "view": 0} -2023-12-15T23:12:55.167Z INFO sending Commit {"height": 4039, "view": 0} -2023-12-15T23:12:55.167Z INFO approving block {"height": 4039, "hash": "0536c8ff5123f6dd595e1a3f0decb764aacf39ba3853c650450b37e0eacb0727", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f6114d0107a674dd5641da611dc09aef82ca815e6c2158db423ffb83ee7406f"} -2023-12-15T23:12:55.169Z INFO initializing dbft {"height": 4040, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:55.169Z debug frostfs-node/morph.go:229 new block {"index": 4039} -2023-12-15T23:12:55.769Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4039, "blockHeight": 4039, "took": "8.075066ms"} -2023-12-15T23:12:56.168Z INFO sending PrepareRequest {"height": 4040, "view": 0} -2023-12-15T23:12:56.168Z INFO sending Commit {"height": 4040, "view": 0} -2023-12-15T23:12:56.169Z INFO approving block {"height": 4040, "hash": "ac9e2aa1d7197df84a9422794f3991b5287a45728c6dd487121ea4a6ca285923", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0536c8ff5123f6dd595e1a3f0decb764aacf39ba3853c650450b37e0eacb0727"} -2023-12-15T23:12:56.171Z INFO initializing dbft {"height": 4041, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:56.171Z debug frostfs-node/morph.go:229 new block {"index": 4040} -2023-12-15T23:12:56.769Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4040, "blockHeight": 4040, "took": "7.402611ms"} -2023-12-15T23:12:57.170Z INFO sending PrepareRequest {"height": 4041, "view": 0} -2023-12-15T23:12:57.170Z INFO sending Commit {"height": 4041, "view": 0} -2023-12-15T23:12:57.171Z INFO approving block {"height": 4041, "hash": "06453dbe613f31ed346887c3781a6a71e320ee5476fa95ec9bb326ae0fcc0cf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac9e2aa1d7197df84a9422794f3991b5287a45728c6dd487121ea4a6ca285923"} -2023-12-15T23:12:57.172Z INFO initializing dbft {"height": 4042, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:57.173Z debug frostfs-node/morph.go:229 new block {"index": 4041} -2023-12-15T23:12:57.770Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4041, "blockHeight": 4041, "took": "7.371856ms"} -2023-12-15T23:12:58.172Z INFO sending PrepareRequest {"height": 4042, "view": 0} -2023-12-15T23:12:58.172Z INFO sending Commit {"height": 4042, "view": 0} -2023-12-15T23:12:58.172Z INFO approving block {"height": 4042, "hash": "30a7757ec387a30cb8b7dd1841b56f7251aa8d3a252ef5383e9356897f9d0106", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06453dbe613f31ed346887c3781a6a71e320ee5476fa95ec9bb326ae0fcc0cf9"} -2023-12-15T23:12:58.174Z INFO initializing dbft {"height": 4043, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:58.175Z debug frostfs-node/morph.go:229 new block {"index": 4042} -2023-12-15T23:12:58.771Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4042, "blockHeight": 4042, "took": "7.767597ms"} -2023-12-15T23:12:59.174Z INFO sending PrepareRequest {"height": 4043, "view": 0} -2023-12-15T23:12:59.174Z INFO sending Commit {"height": 4043, "view": 0} -2023-12-15T23:12:59.174Z INFO approving block {"height": 4043, "hash": "79e1d55b01b0f47296366a8ef3013488c9f18be00976086c54d111f76619bc48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30a7757ec387a30cb8b7dd1841b56f7251aa8d3a252ef5383e9356897f9d0106"} -2023-12-15T23:12:59.176Z INFO initializing dbft {"height": 4044, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:12:59.177Z debug frostfs-node/morph.go:229 new block {"index": 4043} -2023-12-15T23:12:59.771Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4043, "blockHeight": 4043, "took": "7.113078ms"} -2023-12-15T23:13:00.175Z INFO sending PrepareRequest {"height": 4044, "view": 0} -2023-12-15T23:13:00.176Z INFO sending Commit {"height": 4044, "view": 0} -2023-12-15T23:13:00.176Z INFO approving block {"height": 4044, "hash": "8fb44d39e17c6bb87b0818b509b6c05a0917ebffb9b6973593e8a3b25d2895c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79e1d55b01b0f47296366a8ef3013488c9f18be00976086c54d111f76619bc48"} -2023-12-15T23:13:00.178Z INFO initializing dbft {"height": 4045, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:00.179Z debug frostfs-node/morph.go:229 new block {"index": 4044} -2023-12-15T23:13:00.777Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4044, "blockHeight": 4044, "took": "11.012923ms"} -2023-12-15T23:13:01.177Z INFO sending PrepareRequest {"height": 4045, "view": 0} -2023-12-15T23:13:01.177Z INFO sending Commit {"height": 4045, "view": 0} -2023-12-15T23:13:01.178Z INFO approving block {"height": 4045, "hash": "0f6b378a65b40b61144f382adc4b29cd172bcbf967eead2b267369180abec07e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fb44d39e17c6bb87b0818b509b6c05a0917ebffb9b6973593e8a3b25d2895c4"} -2023-12-15T23:13:01.179Z INFO initializing dbft {"height": 4046, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:01.180Z debug frostfs-node/morph.go:229 new block {"index": 4045} -2023-12-15T23:13:01.775Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4045, "blockHeight": 4045, "took": "8.759566ms"} -2023-12-15T23:13:02.179Z INFO sending PrepareRequest {"height": 4046, "view": 0} -2023-12-15T23:13:02.180Z INFO sending Commit {"height": 4046, "view": 0} -2023-12-15T23:13:02.180Z INFO approving block {"height": 4046, "hash": "467aa30b401d3b163b8d966a6d299ad8a9d26cfd2b9b2a360408c4511357f471", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f6b378a65b40b61144f382adc4b29cd172bcbf967eead2b267369180abec07e"} -2023-12-15T23:13:02.182Z INFO initializing dbft {"height": 4047, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:02.183Z debug frostfs-node/morph.go:229 new block {"index": 4046} -2023-12-15T23:13:02.777Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4046, "blockHeight": 4046, "took": "9.65739ms"} -2023-12-15T23:13:03.182Z INFO sending PrepareRequest {"height": 4047, "view": 0} -2023-12-15T23:13:03.182Z INFO sending Commit {"height": 4047, "view": 0} -2023-12-15T23:13:03.183Z INFO approving block {"height": 4047, "hash": "051d263de8215a3c4035cd5bdd9963ec2ebdf1a8e75f4b4832e555cb26bfdb8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "467aa30b401d3b163b8d966a6d299ad8a9d26cfd2b9b2a360408c4511357f471"} -2023-12-15T23:13:03.184Z INFO initializing dbft {"height": 4048, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:03.186Z debug frostfs-node/morph.go:229 new block {"index": 4047} -2023-12-15T23:13:03.776Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4047, "blockHeight": 4047, "took": "7.61224ms"} -2023-12-15T23:13:04.183Z INFO sending PrepareRequest {"height": 4048, "view": 0} -2023-12-15T23:13:04.184Z INFO sending Commit {"height": 4048, "view": 0} -2023-12-15T23:13:04.184Z INFO approving block {"height": 4048, "hash": "44dfb6bfcb588dfe7e7ad9aa22ac021a694ba73812a979102d3c0661712e9696", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "051d263de8215a3c4035cd5bdd9963ec2ebdf1a8e75f4b4832e555cb26bfdb8c"} -2023-12-15T23:13:04.186Z INFO initializing dbft {"height": 4049, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:04.186Z debug frostfs-node/morph.go:229 new block {"index": 4048} -2023-12-15T23:13:04.776Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4048, "blockHeight": 4048, "took": "7.426755ms"} -2023-12-15T23:13:05.185Z INFO sending PrepareRequest {"height": 4049, "view": 0} -2023-12-15T23:13:05.186Z INFO sending Commit {"height": 4049, "view": 0} -2023-12-15T23:13:05.186Z INFO approving block {"height": 4049, "hash": "6b889163ae71cfd3f22323b5f2cad14b94df9474ce83dd8f0cc7582f873f6c1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44dfb6bfcb588dfe7e7ad9aa22ac021a694ba73812a979102d3c0661712e9696"} -2023-12-15T23:13:05.188Z INFO initializing dbft {"height": 4050, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:05.188Z debug frostfs-node/morph.go:229 new block {"index": 4049} -2023-12-15T23:13:05.777Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4049, "blockHeight": 4049, "took": "6.940381ms"} -2023-12-15T23:13:06.187Z INFO sending PrepareRequest {"height": 4050, "view": 0} -2023-12-15T23:13:06.187Z INFO sending Commit {"height": 4050, "view": 0} -2023-12-15T23:13:06.188Z INFO approving block {"height": 4050, "hash": "ff4715ae4e413350cd2ab4fc40ca560f28113b6e729be7d2621322aea0bc4b23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b889163ae71cfd3f22323b5f2cad14b94df9474ce83dd8f0cc7582f873f6c1c"} -2023-12-15T23:13:06.189Z INFO initializing dbft {"height": 4051, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:06.190Z debug frostfs-node/morph.go:229 new block {"index": 4050} -2023-12-15T23:13:06.781Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4050, "blockHeight": 4050, "took": "10.500141ms"} -2023-12-15T23:13:07.189Z INFO sending PrepareRequest {"height": 4051, "view": 0} -2023-12-15T23:13:07.189Z INFO sending Commit {"height": 4051, "view": 0} -2023-12-15T23:13:07.190Z INFO approving block {"height": 4051, "hash": "fdcdf52cb438b2a466ade070bfe44e09a81385bbd8f6361f30c06ca7652384ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff4715ae4e413350cd2ab4fc40ca560f28113b6e729be7d2621322aea0bc4b23"} -2023-12-15T23:13:07.191Z INFO initializing dbft {"height": 4052, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:07.192Z debug frostfs-node/morph.go:229 new block {"index": 4051} -2023-12-15T23:13:07.780Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4051, "blockHeight": 4051, "took": "8.859646ms"} -2023-12-15T23:13:08.191Z INFO sending PrepareRequest {"height": 4052, "view": 0} -2023-12-15T23:13:08.191Z INFO sending Commit {"height": 4052, "view": 0} -2023-12-15T23:13:08.191Z INFO approving block {"height": 4052, "hash": "f7de0ec6e3dab7350c0ebfe505c805ac49feaf7cedad3ec6a11529d15375fe2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdcdf52cb438b2a466ade070bfe44e09a81385bbd8f6361f30c06ca7652384ba"} -2023-12-15T23:13:08.193Z INFO initializing dbft {"height": 4053, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:08.194Z debug frostfs-node/morph.go:229 new block {"index": 4052} -2023-12-15T23:13:08.780Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4052, "blockHeight": 4052, "took": "7.303072ms"} -2023-12-15T23:13:09.193Z INFO sending PrepareRequest {"height": 4053, "view": 0} -2023-12-15T23:13:09.194Z INFO sending Commit {"height": 4053, "view": 0} -2023-12-15T23:13:09.194Z INFO approving block {"height": 4053, "hash": "81b9a6b22990dddb39c5b42c8b6ab7627ffb38963c41342890310e6c5bccda5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7de0ec6e3dab7350c0ebfe505c805ac49feaf7cedad3ec6a11529d15375fe2b"} -2023-12-15T23:13:09.196Z INFO initializing dbft {"height": 4054, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:09.197Z debug frostfs-node/morph.go:229 new block {"index": 4053} -2023-12-15T23:13:09.781Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4053, "blockHeight": 4053, "took": "7.336243ms"} -2023-12-15T23:13:10.195Z INFO sending PrepareRequest {"height": 4054, "view": 0} -2023-12-15T23:13:10.196Z INFO sending Commit {"height": 4054, "view": 0} -2023-12-15T23:13:10.196Z INFO approving block {"height": 4054, "hash": "fbcca25ab97bcb06caeb899f7664f6b8cb36a15a86a1c4c767b53184fbac9b65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81b9a6b22990dddb39c5b42c8b6ab7627ffb38963c41342890310e6c5bccda5b"} -2023-12-15T23:13:10.198Z INFO initializing dbft {"height": 4055, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:10.199Z debug frostfs-node/morph.go:229 new block {"index": 4054} -2023-12-15T23:13:10.785Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4054, "blockHeight": 4054, "took": "10.288566ms"} -2023-12-15T23:13:11.197Z INFO sending PrepareRequest {"height": 4055, "view": 0} -2023-12-15T23:13:11.197Z INFO sending Commit {"height": 4055, "view": 0} -2023-12-15T23:13:11.198Z INFO approving block {"height": 4055, "hash": "3928b5e88af2151a53063b2222644a0edc20e72d5515e0cca81283077b346ddb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbcca25ab97bcb06caeb899f7664f6b8cb36a15a86a1c4c767b53184fbac9b65"} -2023-12-15T23:13:11.200Z INFO initializing dbft {"height": 4056, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:11.201Z debug frostfs-node/morph.go:229 new block {"index": 4055} -2023-12-15T23:13:11.782Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4055, "blockHeight": 4055, "took": "7.205562ms"} -2023-12-15T23:13:12.199Z INFO sending PrepareRequest {"height": 4056, "view": 0} -2023-12-15T23:13:12.200Z INFO sending Commit {"height": 4056, "view": 0} -2023-12-15T23:13:12.200Z INFO approving block {"height": 4056, "hash": "eb9b7948adcd99934b45f17101d54744ebe866e2425df24bbbec93b007331ef6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3928b5e88af2151a53063b2222644a0edc20e72d5515e0cca81283077b346ddb"} -2023-12-15T23:13:12.201Z INFO initializing dbft {"height": 4057, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:12.201Z debug frostfs-node/morph.go:229 new block {"index": 4056} -2023-12-15T23:13:12.783Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4056, "blockHeight": 4056, "took": "7.381064ms"} -2023-12-15T23:13:13.201Z INFO sending PrepareRequest {"height": 4057, "view": 0} -2023-12-15T23:13:13.202Z INFO sending Commit {"height": 4057, "view": 0} -2023-12-15T23:13:13.202Z INFO approving block {"height": 4057, "hash": "121e8f00e1255f2bda8643aa6ccab40cd2be08a0bdcd800f7441af03a55946ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb9b7948adcd99934b45f17101d54744ebe866e2425df24bbbec93b007331ef6"} -2023-12-15T23:13:13.203Z INFO initializing dbft {"height": 4058, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:13.204Z debug frostfs-node/morph.go:229 new block {"index": 4057} -2023-12-15T23:13:13.784Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4057, "blockHeight": 4057, "took": "7.205399ms"} -2023-12-15T23:13:14.203Z INFO sending PrepareRequest {"height": 4058, "view": 0} -2023-12-15T23:13:14.203Z INFO sending Commit {"height": 4058, "view": 0} -2023-12-15T23:13:14.204Z INFO approving block {"height": 4058, "hash": "2b7ff4b6d3e0344fcb9fec4a81fe0cac9810f15c649690a8b1fa9c9adbc3773e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "121e8f00e1255f2bda8643aa6ccab40cd2be08a0bdcd800f7441af03a55946ea"} -2023-12-15T23:13:14.205Z INFO initializing dbft {"height": 4059, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:14.205Z debug frostfs-node/morph.go:229 new block {"index": 4058} -2023-12-15T23:13:14.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4058, "blockHeight": 4058, "took": "15.319814ms"} -2023-12-15T23:13:15.204Z INFO sending PrepareRequest {"height": 4059, "view": 0} -2023-12-15T23:13:15.205Z INFO sending Commit {"height": 4059, "view": 0} -2023-12-15T23:13:15.205Z INFO approving block {"height": 4059, "hash": "780bc814cde96061b9f95a8b8b7a8a01dd0b64d6014f65f5160a6bb8dd61ac0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b7ff4b6d3e0344fcb9fec4a81fe0cac9810f15c649690a8b1fa9c9adbc3773e"} -2023-12-15T23:13:15.207Z INFO initializing dbft {"height": 4060, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:15.207Z debug frostfs-node/morph.go:229 new block {"index": 4059} -2023-12-15T23:13:15.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4059, "blockHeight": 4059, "took": "13.691631ms"} -2023-12-15T23:13:16.206Z INFO sending PrepareRequest {"height": 4060, "view": 0} -2023-12-15T23:13:16.207Z INFO sending Commit {"height": 4060, "view": 0} -2023-12-15T23:13:16.207Z INFO approving block {"height": 4060, "hash": "829f9a69edea97b57681e4038f9189f0cf5c41b3d8fde4c32c9c991fa19f44c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "780bc814cde96061b9f95a8b8b7a8a01dd0b64d6014f65f5160a6bb8dd61ac0d"} -2023-12-15T23:13:16.208Z INFO initializing dbft {"height": 4061, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:16.209Z debug frostfs-node/morph.go:229 new block {"index": 4060} -2023-12-15T23:13:16.785Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4060, "blockHeight": 4060, "took": "6.474862ms"} -2023-12-15T23:13:17.208Z INFO sending PrepareRequest {"height": 4061, "view": 0} -2023-12-15T23:13:17.209Z INFO sending Commit {"height": 4061, "view": 0} -2023-12-15T23:13:17.209Z INFO approving block {"height": 4061, "hash": "22db6bb2406b48e755fc9aac781bb7ec3ca3df6e0e6a3cd1ae2c603dd3bdec79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "829f9a69edea97b57681e4038f9189f0cf5c41b3d8fde4c32c9c991fa19f44c7"} -2023-12-15T23:13:17.211Z INFO initializing dbft {"height": 4062, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:17.211Z debug frostfs-node/morph.go:229 new block {"index": 4061} -2023-12-15T23:13:17.787Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4061, "blockHeight": 4061, "took": "6.905531ms"} -2023-12-15T23:13:18.211Z INFO sending PrepareRequest {"height": 4062, "view": 0} -2023-12-15T23:13:18.211Z INFO sending Commit {"height": 4062, "view": 0} -2023-12-15T23:13:18.211Z INFO approving block {"height": 4062, "hash": "0bbef41d6afb421e02f85d5f00fc49ae31f1b608f33d47696beb975df5851531", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22db6bb2406b48e755fc9aac781bb7ec3ca3df6e0e6a3cd1ae2c603dd3bdec79"} -2023-12-15T23:13:18.213Z INFO initializing dbft {"height": 4063, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:18.214Z debug frostfs-node/morph.go:229 new block {"index": 4062} -2023-12-15T23:13:18.787Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4062, "blockHeight": 4062, "took": "6.14279ms"} -2023-12-15T23:13:19.213Z INFO sending PrepareRequest {"height": 4063, "view": 0} -2023-12-15T23:13:19.213Z INFO sending Commit {"height": 4063, "view": 0} -2023-12-15T23:13:19.214Z INFO approving block {"height": 4063, "hash": "856608c6f1985014cd3bfd3768926ab92f82e669cf4ffdf6a833688484361755", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bbef41d6afb421e02f85d5f00fc49ae31f1b608f33d47696beb975df5851531"} -2023-12-15T23:13:19.215Z INFO initializing dbft {"height": 4064, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:19.216Z debug frostfs-node/morph.go:229 new block {"index": 4063} -2023-12-15T23:13:19.791Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4063, "blockHeight": 4063, "took": "8.598631ms"} -2023-12-15T23:13:20.215Z INFO sending PrepareRequest {"height": 4064, "view": 0} -2023-12-15T23:13:20.216Z INFO sending Commit {"height": 4064, "view": 0} -2023-12-15T23:13:20.216Z INFO approving block {"height": 4064, "hash": "62cab553b550bfe09e1f6759d4684f2f7f64584f986e1ea5077d229907019168", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "856608c6f1985014cd3bfd3768926ab92f82e669cf4ffdf6a833688484361755"} -2023-12-15T23:13:20.218Z INFO initializing dbft {"height": 4065, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:20.219Z debug frostfs-node/morph.go:229 new block {"index": 4064} -2023-12-15T23:13:20.791Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4064, "blockHeight": 4064, "took": "7.033884ms"} -2023-12-15T23:13:21.217Z INFO sending PrepareRequest {"height": 4065, "view": 0} -2023-12-15T23:13:21.218Z INFO sending Commit {"height": 4065, "view": 0} -2023-12-15T23:13:21.218Z INFO approving block {"height": 4065, "hash": "c7b3055302cf4f246072a0ffa40aab06c478615f1e5dc8733547546f0e303a47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62cab553b550bfe09e1f6759d4684f2f7f64584f986e1ea5077d229907019168"} -2023-12-15T23:13:21.220Z INFO initializing dbft {"height": 4066, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:21.221Z debug frostfs-node/morph.go:229 new block {"index": 4065} -2023-12-15T23:13:21.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4065, "blockHeight": 4065, "took": "7.288982ms"} -2023-12-15T23:13:22.219Z INFO sending PrepareRequest {"height": 4066, "view": 0} -2023-12-15T23:13:22.220Z INFO sending Commit {"height": 4066, "view": 0} -2023-12-15T23:13:22.220Z INFO approving block {"height": 4066, "hash": "fd1706b68efd6d83d681edc7716e6df6b8347578f5f9d1cca93172f85f5d1059", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7b3055302cf4f246072a0ffa40aab06c478615f1e5dc8733547546f0e303a47"} -2023-12-15T23:13:22.221Z INFO initializing dbft {"height": 4067, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:22.222Z debug frostfs-node/morph.go:229 new block {"index": 4066} -2023-12-15T23:13:22.793Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4066, "blockHeight": 4066, "took": "7.779047ms"} -2023-12-15T23:13:23.222Z INFO sending PrepareRequest {"height": 4067, "view": 0} -2023-12-15T23:13:23.222Z INFO sending Commit {"height": 4067, "view": 0} -2023-12-15T23:13:23.222Z INFO approving block {"height": 4067, "hash": "ed8cb21a4430fe7f673405d1d5101780a2c72773907e3ded660f954a45e13441", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd1706b68efd6d83d681edc7716e6df6b8347578f5f9d1cca93172f85f5d1059"} -2023-12-15T23:13:23.223Z INFO initializing dbft {"height": 4068, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:23.223Z debug frostfs-node/morph.go:229 new block {"index": 4067} -2023-12-15T23:13:23.226Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:13:23.229Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:13:23.229Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:13:23.792Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4067, "blockHeight": 4067, "took": "5.081659ms"} -2023-12-15T23:13:24.224Z INFO sending PrepareRequest {"height": 4068, "view": 0} -2023-12-15T23:13:24.225Z INFO sending Commit {"height": 4068, "view": 0} -2023-12-15T23:13:24.225Z INFO approving block {"height": 4068, "hash": "e4ba01c832e6c0c763006f0ebf987eeaa4023c6ddffee0909b39731ab87ce4fa", "tx_count": 2, "merkle": "a5f6838fad9ed550bc6765b08a69d4bee3490759125827b6d87545aee7966788", "prev": "ed8cb21a4430fe7f673405d1d5101780a2c72773907e3ded660f954a45e13441"} -2023-12-15T23:13:24.227Z INFO runtime log {"tx": "6594e5f281955eae58ab58295523be2cb7ba63f7054039a63f7781bb112b354c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:13:24.227Z INFO runtime log {"tx": "6594e5f281955eae58ab58295523be2cb7ba63f7054039a63f7781bb112b354c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:13:24.229Z INFO initializing dbft {"height": 4069, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:24.230Z debug frostfs-node/morph.go:229 new block {"index": 4068} -2023-12-15T23:13:24.799Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 4068, "blockHeight": 4068, "took": "11.592612ms"} -2023-12-15T23:13:25.227Z INFO sending PrepareRequest {"height": 4069, "view": 0} -2023-12-15T23:13:25.227Z INFO sending Commit {"height": 4069, "view": 0} -2023-12-15T23:13:25.228Z INFO approving block {"height": 4069, "hash": "24c18e2cdf4bd832a8be73ea9655f64f6e79f4b24dd86d0334edcd56ebbf6a47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4ba01c832e6c0c763006f0ebf987eeaa4023c6ddffee0909b39731ab87ce4fa"} -2023-12-15T23:13:25.229Z INFO initializing dbft {"height": 4070, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:25.230Z debug frostfs-node/morph.go:229 new block {"index": 4069} -2023-12-15T23:13:25.793Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4069, "blockHeight": 4069, "took": "5.182691ms"} -2023-12-15T23:13:26.228Z INFO sending PrepareRequest {"height": 4070, "view": 0} -2023-12-15T23:13:26.228Z INFO sending Commit {"height": 4070, "view": 0} -2023-12-15T23:13:26.229Z INFO approving block {"height": 4070, "hash": "87178813ea785f60f403a7c311ebacf1a347231fe87001eaaf64702fd5697470", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24c18e2cdf4bd832a8be73ea9655f64f6e79f4b24dd86d0334edcd56ebbf6a47"} -2023-12-15T23:13:26.230Z INFO initializing dbft {"height": 4071, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:26.230Z debug frostfs-node/morph.go:229 new block {"index": 4070} -2023-12-15T23:13:26.795Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4070, "blockHeight": 4070, "took": "5.815731ms"} -2023-12-15T23:13:27.229Z INFO sending PrepareRequest {"height": 4071, "view": 0} -2023-12-15T23:13:27.230Z INFO sending Commit {"height": 4071, "view": 0} -2023-12-15T23:13:27.230Z INFO approving block {"height": 4071, "hash": "3d1bb316d01f67c71e5442621aa87109855a11a39390e7793f91bdfe0dd820b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87178813ea785f60f403a7c311ebacf1a347231fe87001eaaf64702fd5697470"} -2023-12-15T23:13:27.231Z INFO initializing dbft {"height": 4072, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:27.232Z debug frostfs-node/morph.go:229 new block {"index": 4071} -2023-12-15T23:13:27.794Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4071, "blockHeight": 4071, "took": "4.670907ms"} -2023-12-15T23:13:28.230Z INFO sending PrepareRequest {"height": 4072, "view": 0} -2023-12-15T23:13:28.231Z INFO sending Commit {"height": 4072, "view": 0} -2023-12-15T23:13:28.231Z INFO approving block {"height": 4072, "hash": "3e12dc6c36beb02bb9c4ac86f6245d1f1d671a6a835eb12b3ecf88009db7b021", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d1bb316d01f67c71e5442621aa87109855a11a39390e7793f91bdfe0dd820b6"} -2023-12-15T23:13:28.232Z INFO initializing dbft {"height": 4073, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:28.232Z debug frostfs-node/morph.go:229 new block {"index": 4072} -2023-12-15T23:13:28.794Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4072, "blockHeight": 4072, "took": "4.524445ms"} -2023-12-15T23:13:29.232Z INFO sending PrepareRequest {"height": 4073, "view": 0} -2023-12-15T23:13:29.232Z INFO sending Commit {"height": 4073, "view": 0} -2023-12-15T23:13:29.232Z INFO approving block {"height": 4073, "hash": "7834be3fcd0f743337fe6c5badb7389722873eaf2b897cb2012fec7ce5803285", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e12dc6c36beb02bb9c4ac86f6245d1f1d671a6a835eb12b3ecf88009db7b021"} -2023-12-15T23:13:29.233Z INFO initializing dbft {"height": 4074, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:29.234Z debug frostfs-node/morph.go:229 new block {"index": 4073} -2023-12-15T23:13:29.798Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4073, "blockHeight": 4073, "took": "7.303465ms"} -2023-12-15T23:13:30.234Z INFO sending PrepareRequest {"height": 4074, "view": 0} -2023-12-15T23:13:30.234Z INFO sending Commit {"height": 4074, "view": 0} -2023-12-15T23:13:30.234Z INFO approving block {"height": 4074, "hash": "f6ec5dbf3619162519c90dd4f2c3bdfed7ef676536c8a161b117f5611027a1f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7834be3fcd0f743337fe6c5badb7389722873eaf2b897cb2012fec7ce5803285"} -2023-12-15T23:13:30.236Z INFO initializing dbft {"height": 4075, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:30.236Z debug frostfs-node/morph.go:229 new block {"index": 4074} -2023-12-15T23:13:30.798Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4074, "blockHeight": 4074, "took": "7.414868ms"} -2023-12-15T23:13:31.236Z INFO sending PrepareRequest {"height": 4075, "view": 0} -2023-12-15T23:13:31.236Z INFO sending Commit {"height": 4075, "view": 0} -2023-12-15T23:13:31.236Z INFO approving block {"height": 4075, "hash": "6a3de34cdd61546cef1d7c2695b41d52b04b78bf23a4fc1757da797cb97de012", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6ec5dbf3619162519c90dd4f2c3bdfed7ef676536c8a161b117f5611027a1f4"} -2023-12-15T23:13:31.238Z INFO initializing dbft {"height": 4076, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:31.239Z debug frostfs-node/morph.go:229 new block {"index": 4075} -2023-12-15T23:13:31.801Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4075, "blockHeight": 4075, "took": "7.519231ms"} -2023-12-15T23:13:32.237Z INFO sending PrepareRequest {"height": 4076, "view": 0} -2023-12-15T23:13:32.238Z INFO sending Commit {"height": 4076, "view": 0} -2023-12-15T23:13:32.238Z INFO approving block {"height": 4076, "hash": "53a25976be03693772f2d4280fc43759cadf60b7d6988f64d6b5bd29778df248", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a3de34cdd61546cef1d7c2695b41d52b04b78bf23a4fc1757da797cb97de012"} -2023-12-15T23:13:32.239Z INFO initializing dbft {"height": 4077, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:32.241Z debug frostfs-node/morph.go:229 new block {"index": 4076} -2023-12-15T23:13:32.800Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4076, "blockHeight": 4076, "took": "6.273826ms"} -2023-12-15T23:13:33.239Z INFO sending PrepareRequest {"height": 4077, "view": 0} -2023-12-15T23:13:33.239Z INFO sending Commit {"height": 4077, "view": 0} -2023-12-15T23:13:33.240Z INFO approving block {"height": 4077, "hash": "a155361ed46ac66e3223c53cedb40a31535007f3d446627faba27611ad7283eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53a25976be03693772f2d4280fc43759cadf60b7d6988f64d6b5bd29778df248"} -2023-12-15T23:13:33.241Z INFO initializing dbft {"height": 4078, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:33.242Z debug frostfs-node/morph.go:229 new block {"index": 4077} -2023-12-15T23:13:33.801Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4077, "blockHeight": 4077, "took": "6.910321ms"} -2023-12-15T23:13:34.241Z INFO sending PrepareRequest {"height": 4078, "view": 0} -2023-12-15T23:13:34.241Z INFO sending Commit {"height": 4078, "view": 0} -2023-12-15T23:13:34.242Z INFO approving block {"height": 4078, "hash": "2569c079c7be2e8600f07b542d5f6b261a3de96de1959cb1b6af801c5984e27c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a155361ed46ac66e3223c53cedb40a31535007f3d446627faba27611ad7283eb"} -2023-12-15T23:13:34.244Z INFO initializing dbft {"height": 4079, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:34.245Z debug frostfs-node/morph.go:229 new block {"index": 4078} -2023-12-15T23:13:34.799Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4078, "blockHeight": 4078, "took": "3.764231ms"} -2023-12-15T23:13:35.244Z INFO sending PrepareRequest {"height": 4079, "view": 0} -2023-12-15T23:13:35.244Z INFO sending Commit {"height": 4079, "view": 0} -2023-12-15T23:13:35.244Z INFO approving block {"height": 4079, "hash": "f24c8a89a3096fa7c53f7cf47f65e61722f16b61a5bde527c1b1906416319c54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2569c079c7be2e8600f07b542d5f6b261a3de96de1959cb1b6af801c5984e27c"} -2023-12-15T23:13:35.245Z INFO initializing dbft {"height": 4080, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:35.245Z debug frostfs-node/morph.go:229 new block {"index": 4079} -2023-12-15T23:13:35.805Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4079, "blockHeight": 4079, "took": "9.524598ms"} -2023-12-15T23:13:36.246Z INFO sending PrepareRequest {"height": 4080, "view": 0} -2023-12-15T23:13:36.246Z INFO sending Commit {"height": 4080, "view": 0} -2023-12-15T23:13:36.247Z INFO approving block {"height": 4080, "hash": "7d36854fdd141b00e4d669d6d40c949ce94c0233a28c93d9dde3d83d2beac5e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f24c8a89a3096fa7c53f7cf47f65e61722f16b61a5bde527c1b1906416319c54"} -2023-12-15T23:13:36.249Z INFO initializing dbft {"height": 4081, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:36.250Z debug frostfs-node/morph.go:229 new block {"index": 4080} -2023-12-15T23:13:36.803Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4080, "blockHeight": 4080, "took": "6.966182ms"} -2023-12-15T23:13:37.248Z INFO sending PrepareRequest {"height": 4081, "view": 0} -2023-12-15T23:13:37.248Z INFO sending Commit {"height": 4081, "view": 0} -2023-12-15T23:13:37.248Z INFO approving block {"height": 4081, "hash": "d184a57f3b321c4e412c78817843c4fd0d75fb0f3521e3a5beb1a31d294a3db3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d36854fdd141b00e4d669d6d40c949ce94c0233a28c93d9dde3d83d2beac5e9"} -2023-12-15T23:13:37.249Z INFO initializing dbft {"height": 4082, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:37.250Z debug frostfs-node/morph.go:229 new block {"index": 4081} -2023-12-15T23:13:37.802Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4081, "blockHeight": 4081, "took": "4.711563ms"} -2023-12-15T23:13:38.249Z INFO sending PrepareRequest {"height": 4082, "view": 0} -2023-12-15T23:13:38.249Z INFO sending Commit {"height": 4082, "view": 0} -2023-12-15T23:13:38.250Z INFO approving block {"height": 4082, "hash": "545d63581f01caf609be310b1904215fa9a1a0e7cffb718db47f0540f68b8158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d184a57f3b321c4e412c78817843c4fd0d75fb0f3521e3a5beb1a31d294a3db3"} -2023-12-15T23:13:38.251Z INFO initializing dbft {"height": 4083, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:38.251Z debug frostfs-node/morph.go:229 new block {"index": 4082} -2023-12-15T23:13:38.805Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4082, "blockHeight": 4082, "took": "7.189989ms"} -2023-12-15T23:13:39.251Z INFO sending PrepareRequest {"height": 4083, "view": 0} -2023-12-15T23:13:39.251Z INFO sending Commit {"height": 4083, "view": 0} -2023-12-15T23:13:39.252Z INFO approving block {"height": 4083, "hash": "0c56cd00c9fffd158c45dabc7df710d88f70f1852ad8a2987f3213ba364b577c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "545d63581f01caf609be310b1904215fa9a1a0e7cffb718db47f0540f68b8158"} -2023-12-15T23:13:39.253Z INFO initializing dbft {"height": 4084, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:39.254Z debug frostfs-node/morph.go:229 new block {"index": 4083} -2023-12-15T23:13:39.805Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4083, "blockHeight": 4083, "took": "6.942102ms"} -2023-12-15T23:13:40.253Z INFO sending PrepareRequest {"height": 4084, "view": 0} -2023-12-15T23:13:40.253Z INFO sending Commit {"height": 4084, "view": 0} -2023-12-15T23:13:40.253Z INFO approving block {"height": 4084, "hash": "33ead2a7385a1caf681020e76eeb85f095e5b7cdec7290202b0648a139422141", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c56cd00c9fffd158c45dabc7df710d88f70f1852ad8a2987f3213ba364b577c"} -2023-12-15T23:13:40.255Z INFO initializing dbft {"height": 4085, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:40.256Z debug frostfs-node/morph.go:229 new block {"index": 4084} -2023-12-15T23:13:40.804Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4084, "blockHeight": 4084, "took": "4.633642ms"} -2023-12-15T23:13:41.255Z INFO sending PrepareRequest {"height": 4085, "view": 0} -2023-12-15T23:13:41.255Z INFO sending Commit {"height": 4085, "view": 0} -2023-12-15T23:13:41.256Z INFO approving block {"height": 4085, "hash": "e99aaa4213718b9a914af7934f27cc2eb8b89059a54946cd8de66677e8b6e16a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33ead2a7385a1caf681020e76eeb85f095e5b7cdec7290202b0648a139422141"} -2023-12-15T23:13:41.258Z INFO initializing dbft {"height": 4086, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:41.258Z debug frostfs-node/morph.go:229 new block {"index": 4085} -2023-12-15T23:13:41.808Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4085, "blockHeight": 4085, "took": "6.847507ms"} -2023-12-15T23:13:42.257Z INFO sending PrepareRequest {"height": 4086, "view": 0} -2023-12-15T23:13:42.258Z INFO sending Commit {"height": 4086, "view": 0} -2023-12-15T23:13:42.258Z INFO approving block {"height": 4086, "hash": "766b65fe493d9ef0a613303bdde59087b219551ebf2b5b167fee3646ecfb1edc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e99aaa4213718b9a914af7934f27cc2eb8b89059a54946cd8de66677e8b6e16a"} -2023-12-15T23:13:42.259Z INFO initializing dbft {"height": 4087, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:42.260Z debug frostfs-node/morph.go:229 new block {"index": 4086} -2023-12-15T23:13:42.813Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4086, "blockHeight": 4086, "took": "10.964359ms"} -2023-12-15T23:13:43.259Z INFO sending PrepareRequest {"height": 4087, "view": 0} -2023-12-15T23:13:43.259Z INFO sending Commit {"height": 4087, "view": 0} -2023-12-15T23:13:43.260Z INFO approving block {"height": 4087, "hash": "0ce4e9fc80760a5122ea233dbdaa6ee302548f4cc22e6cc00e2ae742f79d6e92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "766b65fe493d9ef0a613303bdde59087b219551ebf2b5b167fee3646ecfb1edc"} -2023-12-15T23:13:43.261Z INFO initializing dbft {"height": 4088, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:43.262Z debug frostfs-node/morph.go:229 new block {"index": 4087} -2023-12-15T23:13:43.813Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4087, "blockHeight": 4087, "took": "9.600333ms"} -2023-12-15T23:13:44.261Z INFO sending PrepareRequest {"height": 4088, "view": 0} -2023-12-15T23:13:44.262Z INFO sending Commit {"height": 4088, "view": 0} -2023-12-15T23:13:44.262Z INFO approving block {"height": 4088, "hash": "a3afbf49c7e988f8b9b601cfb262d8b42df2c7af9c4295ba8aeea4e6461f6d68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ce4e9fc80760a5122ea233dbdaa6ee302548f4cc22e6cc00e2ae742f79d6e92"} -2023-12-15T23:13:44.264Z INFO initializing dbft {"height": 4089, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:44.265Z debug frostfs-node/morph.go:229 new block {"index": 4088} -2023-12-15T23:13:44.811Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4088, "blockHeight": 4088, "took": "6.675901ms"} -2023-12-15T23:13:45.264Z INFO sending PrepareRequest {"height": 4089, "view": 0} -2023-12-15T23:13:45.264Z INFO sending Commit {"height": 4089, "view": 0} -2023-12-15T23:13:45.265Z INFO approving block {"height": 4089, "hash": "e5ab85940b0b6170fa1db56c6474ee3f2df4573d56fe2571bbfd588f7fd860c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3afbf49c7e988f8b9b601cfb262d8b42df2c7af9c4295ba8aeea4e6461f6d68"} -2023-12-15T23:13:45.267Z INFO initializing dbft {"height": 4090, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:45.269Z debug frostfs-node/morph.go:229 new block {"index": 4089} -2023-12-15T23:13:45.809Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4089, "blockHeight": 4089, "took": "4.780241ms"} -2023-12-15T23:13:46.266Z INFO sending PrepareRequest {"height": 4090, "view": 0} -2023-12-15T23:13:46.266Z INFO sending Commit {"height": 4090, "view": 0} -2023-12-15T23:13:46.266Z INFO approving block {"height": 4090, "hash": "05c318b1caf0ae655cadf8acc617682fcf86f2705e03ae268cb2c38f517489da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5ab85940b0b6170fa1db56c6474ee3f2df4573d56fe2571bbfd588f7fd860c7"} -2023-12-15T23:13:46.268Z INFO initializing dbft {"height": 4091, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:46.269Z debug frostfs-node/morph.go:229 new block {"index": 4090} -2023-12-15T23:13:46.814Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4090, "blockHeight": 4090, "took": "8.502929ms"} -2023-12-15T23:13:47.268Z INFO sending PrepareRequest {"height": 4091, "view": 0} -2023-12-15T23:13:47.268Z INFO sending Commit {"height": 4091, "view": 0} -2023-12-15T23:13:47.268Z INFO approving block {"height": 4091, "hash": "bb4fe0904aa445c3ae2562a4bfa797c364c0547764d15e2ad66e1a1833df017b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05c318b1caf0ae655cadf8acc617682fcf86f2705e03ae268cb2c38f517489da"} -2023-12-15T23:13:47.270Z INFO initializing dbft {"height": 4092, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:47.271Z debug frostfs-node/morph.go:229 new block {"index": 4091} -2023-12-15T23:13:47.813Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4091, "blockHeight": 4091, "took": "7.000392ms"} -2023-12-15T23:13:48.269Z INFO sending PrepareRequest {"height": 4092, "view": 0} -2023-12-15T23:13:48.270Z INFO sending Commit {"height": 4092, "view": 0} -2023-12-15T23:13:48.270Z INFO approving block {"height": 4092, "hash": "a2cdc76c6883a56e4339a292ee5258aeab58eb231c48143a21ca7563e40986db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb4fe0904aa445c3ae2562a4bfa797c364c0547764d15e2ad66e1a1833df017b"} -2023-12-15T23:13:48.272Z INFO initializing dbft {"height": 4093, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:48.273Z debug frostfs-node/morph.go:229 new block {"index": 4092} -2023-12-15T23:13:48.814Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4092, "blockHeight": 4092, "took": "7.070825ms"} -2023-12-15T23:13:49.272Z INFO sending PrepareRequest {"height": 4093, "view": 0} -2023-12-15T23:13:49.272Z INFO sending Commit {"height": 4093, "view": 0} -2023-12-15T23:13:49.272Z INFO approving block {"height": 4093, "hash": "1a109f58ab5ebf01a936572cc71fb316ea1e20c357ea036fa02555d62e22cbe1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2cdc76c6883a56e4339a292ee5258aeab58eb231c48143a21ca7563e40986db"} -2023-12-15T23:13:49.274Z INFO initializing dbft {"height": 4094, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:49.274Z debug frostfs-node/morph.go:229 new block {"index": 4093} -2023-12-15T23:13:49.815Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4093, "blockHeight": 4093, "took": "7.559928ms"} -2023-12-15T23:13:50.274Z INFO sending PrepareRequest {"height": 4094, "view": 0} -2023-12-15T23:13:50.274Z INFO sending Commit {"height": 4094, "view": 0} -2023-12-15T23:13:50.274Z INFO approving block {"height": 4094, "hash": "aea15eed8502332b0d9d01317babff7953a50e662d47955dc11e5479c63dde52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a109f58ab5ebf01a936572cc71fb316ea1e20c357ea036fa02555d62e22cbe1"} -2023-12-15T23:13:50.276Z INFO initializing dbft {"height": 4095, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:50.277Z debug frostfs-node/morph.go:229 new block {"index": 4094} -2023-12-15T23:13:50.815Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4094, "blockHeight": 4094, "took": "6.828251ms"} -2023-12-15T23:13:51.276Z INFO sending PrepareRequest {"height": 4095, "view": 0} -2023-12-15T23:13:51.276Z INFO sending Commit {"height": 4095, "view": 0} -2023-12-15T23:13:51.277Z INFO approving block {"height": 4095, "hash": "c476aa2b94256e7de18c45664abfe97c5d4fa7e7e71de25f55588949cbbd9b57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aea15eed8502332b0d9d01317babff7953a50e662d47955dc11e5479c63dde52"} -2023-12-15T23:13:51.279Z INFO initializing dbft {"height": 4096, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:51.280Z debug frostfs-node/morph.go:229 new block {"index": 4095} -2023-12-15T23:13:51.817Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 4095, "blockHeight": 4095, "took": "7.351061ms"} -2023-12-15T23:13:52.278Z INFO sending PrepareRequest {"height": 4096, "view": 0} -2023-12-15T23:13:52.279Z INFO sending Commit {"height": 4096, "view": 0} -2023-12-15T23:13:52.279Z INFO approving block {"height": 4096, "hash": "5fc09b638eb29bf7815cfe185c25c7dc7dc3c947d762ec331b617b0516d9c3e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c476aa2b94256e7de18c45664abfe97c5d4fa7e7e71de25f55588949cbbd9b57"} -2023-12-15T23:13:52.280Z INFO initializing dbft {"height": 4097, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:52.281Z debug frostfs-node/morph.go:229 new block {"index": 4096} -2023-12-15T23:13:52.285Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:13:52.287Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 17, "iteration": 3, "error": "no data for 2 iteration in 17 epoch for consumers's trusts"} -2023-12-15T23:13:52.291Z INFO runtime log {"tx": "c64e9983b431f9254e9d74bc044eab91b5c20e32ebe37d046e277d13727c555b", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:13:52.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4096, "blockHeight": 4096, "took": "9.197244ms"} -2023-12-15T23:13:53.280Z INFO sending PrepareRequest {"height": 4097, "view": 0} -2023-12-15T23:13:53.281Z INFO sending Commit {"height": 4097, "view": 0} -2023-12-15T23:13:53.281Z INFO approving block {"height": 4097, "hash": "2c6fc54082318564357f67691ad396f3bace1cba60f1ea4895e0fa0ebf5dcc6b", "tx_count": 1, "merkle": "ad62d1f692b88472aea9d8d0d3b50bf48df564139a5f74f0738ec86920495e5d", "prev": "5fc09b638eb29bf7815cfe185c25c7dc7dc3c947d762ec331b617b0516d9c3e1"} -2023-12-15T23:13:53.282Z INFO runtime log {"tx": "5d5e492069c88e73f0745f9a1364f58df40bb5d3d0d8a9ae7284b892f6d162ad", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:13:53.284Z INFO initializing dbft {"height": 4098, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:53.285Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 19} -2023-12-15T23:13:53.285Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 19} -2023-12-15T23:13:53.285Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:13:53.286Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:13:53.286Z debug frostfs-node/morph.go:229 new block {"index": 4097} -2023-12-15T23:13:53.286Z debug controller/calls.go:95 starting to report local trust values {"epoch": 18} -2023-12-15T23:13:53.286Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 18} -2023-12-15T23:13:53.286Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 19} -2023-12-15T23:13:53.286Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 19} -2023-12-15T23:13:53.286Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 19} -2023-12-15T23:13:53.290Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:13:53.290Z debug controller/calls.go:146 reporting successfully finished {"epoch": 18} -2023-12-15T23:13:53.290Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 18} -2023-12-15T23:13:53.293Z INFO runtime log {"tx": "b25c073e3eb3f1d82abca79777cca52bc4adefdeb6c5f32d2d379b084e731df5", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:13:53.296Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 4100, "tx_hash": "60abe2ad5ea9de607c110950fbda2aa5ceb38532bbb5ed53a1feddbbb5e3c899"} -2023-12-15T23:13:53.307Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:13:53.308Z info audit/handlers.go:13 new round of audit {"epoch": 19} -2023-12-15T23:13:53.308Z info settlement/calls.go:26 new audit settlement event {"epoch": 19} -2023-12-15T23:13:53.308Z info settlement/handlers.go:14 process audit settlements {"epoch": 19} -2023-12-15T23:13:53.308Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 19} -2023-12-15T23:13:53.310Z info settlement/handlers.go:18 audit processing finished {"epoch": 19} -2023-12-15T23:13:53.312Z info audit/process.go:39 select containers for audit {"epoch": 19, "amount": 0} -2023-12-15T23:13:53.317Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 4100, "tx_hash": "3091d003695d46913fcaed63c231ef4c558d639ddbee7fd95ba42da48ca29351"} -2023-12-15T23:13:53.819Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 4097, "blockHeight": 4097, "took": "7.593961ms"} -2023-12-15T23:13:54.282Z INFO sending PrepareRequest {"height": 4098, "view": 0} -2023-12-15T23:13:54.282Z INFO sending Commit {"height": 4098, "view": 0} -2023-12-15T23:13:54.282Z INFO approving block {"height": 4098, "hash": "cbd0dd2d5eaddbbc88399d8fed92bf2c329c03f8ff5628bf53cfb371e8c9571f", "tx_count": 3, "merkle": "c529d9bf3f3c67167aabf9a3ae01ad4cb77bfb97c9c74083da98f2eed0592d3b", "prev": "2c6fc54082318564357f67691ad396f3bace1cba60f1ea4895e0fa0ebf5dcc6b"} -2023-12-15T23:13:54.283Z INFO runtime log {"tx": "bb72339d423b90e12a56cf1cd563c60477af84be9476df8992d34440f6c5556d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:13:54.285Z INFO initializing dbft {"height": 4099, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:54.285Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 18} -2023-12-15T23:13:54.286Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 18} -2023-12-15T23:13:54.286Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 18} -2023-12-15T23:13:54.286Z debug frostfs-node/morph.go:229 new block {"index": 4098} -2023-12-15T23:13:54.821Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 4098, "blockHeight": 4098, "took": "9.09212ms"} -2023-12-15T23:13:55.283Z INFO sending PrepareRequest {"height": 4099, "view": 0} -2023-12-15T23:13:55.283Z INFO sending Commit {"height": 4099, "view": 0} -2023-12-15T23:13:55.284Z INFO approving block {"height": 4099, "hash": "54789322c3b44c9f4eb296b636bd0271e501df027954423bff8aadc65c9ccfeb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbd0dd2d5eaddbbc88399d8fed92bf2c329c03f8ff5628bf53cfb371e8c9571f"} -2023-12-15T23:13:55.285Z INFO initializing dbft {"height": 4100, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:55.286Z debug frostfs-node/morph.go:229 new block {"index": 4099} -2023-12-15T23:13:55.823Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4099, "blockHeight": 4099, "took": "10.713126ms"} -2023-12-15T23:13:56.285Z INFO sending PrepareRequest {"height": 4100, "view": 0} -2023-12-15T23:13:56.286Z INFO sending Commit {"height": 4100, "view": 0} -2023-12-15T23:13:56.287Z INFO approving block {"height": 4100, "hash": "f57542ac2ca0618939b1b32ed8271e2e0b2c59fa8fdec8ea6e6f91b4e2837a8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54789322c3b44c9f4eb296b636bd0271e501df027954423bff8aadc65c9ccfeb"} -2023-12-15T23:13:56.291Z INFO initializing dbft {"height": 4101, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:56.292Z debug frostfs-node/morph.go:229 new block {"index": 4100} -2023-12-15T23:13:56.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4100, "blockHeight": 4100, "took": "6.918954ms"} -2023-12-15T23:13:57.288Z INFO sending PrepareRequest {"height": 4101, "view": 0} -2023-12-15T23:13:57.289Z INFO sending Commit {"height": 4101, "view": 0} -2023-12-15T23:13:57.289Z INFO approving block {"height": 4101, "hash": "a58a973de40e3c9d52ef827e1249ff40d3925f16f95103320abc8e8b3a8a5646", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f57542ac2ca0618939b1b32ed8271e2e0b2c59fa8fdec8ea6e6f91b4e2837a8f"} -2023-12-15T23:13:57.291Z INFO initializing dbft {"height": 4102, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:57.292Z debug frostfs-node/morph.go:229 new block {"index": 4101} -2023-12-15T23:13:57.822Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4101, "blockHeight": 4101, "took": "6.923432ms"} -2023-12-15T23:13:58.290Z INFO sending PrepareRequest {"height": 4102, "view": 0} -2023-12-15T23:13:58.290Z INFO sending Commit {"height": 4102, "view": 0} -2023-12-15T23:13:58.291Z INFO approving block {"height": 4102, "hash": "63a9cb4e224d2aef4551ab2a131962336458044db08b910c8403666ffd57d485", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a58a973de40e3c9d52ef827e1249ff40d3925f16f95103320abc8e8b3a8a5646"} -2023-12-15T23:13:58.293Z INFO initializing dbft {"height": 4103, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:58.293Z debug frostfs-node/morph.go:229 new block {"index": 4102} -2023-12-15T23:13:58.824Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4102, "blockHeight": 4102, "took": "8.055568ms"} -2023-12-15T23:13:59.292Z INFO sending PrepareRequest {"height": 4103, "view": 0} -2023-12-15T23:13:59.292Z INFO sending Commit {"height": 4103, "view": 0} -2023-12-15T23:13:59.293Z INFO approving block {"height": 4103, "hash": "4c6a04c28b2509d095f794cb1a41301a8b19cde4e913f0476135192659a06f8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63a9cb4e224d2aef4551ab2a131962336458044db08b910c8403666ffd57d485"} -2023-12-15T23:13:59.294Z INFO initializing dbft {"height": 4104, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:13:59.295Z debug frostfs-node/morph.go:229 new block {"index": 4103} -2023-12-15T23:13:59.825Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4103, "blockHeight": 4103, "took": "8.843538ms"} -2023-12-15T23:14:00.294Z INFO sending PrepareRequest {"height": 4104, "view": 0} -2023-12-15T23:14:00.294Z INFO sending Commit {"height": 4104, "view": 0} -2023-12-15T23:14:00.294Z INFO approving block {"height": 4104, "hash": "4fd5f688ebdb3b727c47e2ace0cd8321e38fbd3b84f67c6434a7133a6aadc414", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c6a04c28b2509d095f794cb1a41301a8b19cde4e913f0476135192659a06f8a"} -2023-12-15T23:14:00.295Z INFO initializing dbft {"height": 4105, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:00.296Z debug frostfs-node/morph.go:229 new block {"index": 4104} -2023-12-15T23:14:00.825Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4104, "blockHeight": 4104, "took": "7.975854ms"} -2023-12-15T23:14:01.296Z INFO sending PrepareRequest {"height": 4105, "view": 0} -2023-12-15T23:14:01.297Z INFO sending Commit {"height": 4105, "view": 0} -2023-12-15T23:14:01.297Z INFO approving block {"height": 4105, "hash": "76ddb17e806e4ea66edfe5350911f1a625668dd8c68f18cebcf354bd0034a8b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fd5f688ebdb3b727c47e2ace0cd8321e38fbd3b84f67c6434a7133a6aadc414"} -2023-12-15T23:14:01.299Z INFO initializing dbft {"height": 4106, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:01.300Z debug frostfs-node/morph.go:229 new block {"index": 4105} -2023-12-15T23:14:01.825Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4105, "blockHeight": 4105, "took": "7.786088ms"} -2023-12-15T23:14:02.299Z INFO sending PrepareRequest {"height": 4106, "view": 0} -2023-12-15T23:14:02.299Z INFO sending Commit {"height": 4106, "view": 0} -2023-12-15T23:14:02.300Z INFO approving block {"height": 4106, "hash": "8b616f178e31e80263bdbc92ecf718abf18038bdf7ec21d6178452f3655dc0a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76ddb17e806e4ea66edfe5350911f1a625668dd8c68f18cebcf354bd0034a8b9"} -2023-12-15T23:14:02.301Z INFO initializing dbft {"height": 4107, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:02.302Z debug frostfs-node/morph.go:229 new block {"index": 4106} -2023-12-15T23:14:02.827Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4106, "blockHeight": 4106, "took": "8.756366ms"} -2023-12-15T23:14:03.301Z INFO sending PrepareRequest {"height": 4107, "view": 0} -2023-12-15T23:14:03.302Z INFO sending Commit {"height": 4107, "view": 0} -2023-12-15T23:14:03.302Z INFO approving block {"height": 4107, "hash": "642aace879047c62e557931568af8915d11a2e67e20494e5a9a25a47b5786564", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b616f178e31e80263bdbc92ecf718abf18038bdf7ec21d6178452f3655dc0a3"} -2023-12-15T23:14:03.304Z INFO initializing dbft {"height": 4108, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:03.304Z debug frostfs-node/morph.go:229 new block {"index": 4107} -2023-12-15T23:14:03.828Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4107, "blockHeight": 4107, "took": "7.860711ms"} -2023-12-15T23:14:04.303Z INFO sending PrepareRequest {"height": 4108, "view": 0} -2023-12-15T23:14:04.303Z INFO sending Commit {"height": 4108, "view": 0} -2023-12-15T23:14:04.303Z INFO approving block {"height": 4108, "hash": "90ee24804d8183f91ac3a8edda0fa9a5a6ce7d4b97a1499f989af3d822d128d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "642aace879047c62e557931568af8915d11a2e67e20494e5a9a25a47b5786564"} -2023-12-15T23:14:04.304Z INFO initializing dbft {"height": 4109, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:04.305Z debug frostfs-node/morph.go:229 new block {"index": 4108} -2023-12-15T23:14:04.829Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4108, "blockHeight": 4108, "took": "7.979979ms"} -2023-12-15T23:14:05.305Z INFO sending PrepareRequest {"height": 4109, "view": 0} -2023-12-15T23:14:05.305Z INFO sending Commit {"height": 4109, "view": 0} -2023-12-15T23:14:05.305Z INFO approving block {"height": 4109, "hash": "7ad10a7d9e338a8c68457984554528b45f337f1cbee964390af691f71bff7877", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90ee24804d8183f91ac3a8edda0fa9a5a6ce7d4b97a1499f989af3d822d128d8"} -2023-12-15T23:14:05.307Z INFO initializing dbft {"height": 4110, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:05.307Z debug frostfs-node/morph.go:229 new block {"index": 4109} -2023-12-15T23:14:05.828Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4109, "blockHeight": 4109, "took": "6.890462ms"} -2023-12-15T23:14:06.307Z INFO sending PrepareRequest {"height": 4110, "view": 0} -2023-12-15T23:14:06.307Z INFO sending Commit {"height": 4110, "view": 0} -2023-12-15T23:14:06.308Z INFO approving block {"height": 4110, "hash": "1570d269ea2c545a4acbd02b2bc8dc3538125d1889fae6cd6260f768c7e2325c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ad10a7d9e338a8c68457984554528b45f337f1cbee964390af691f71bff7877"} -2023-12-15T23:14:06.310Z INFO initializing dbft {"height": 4111, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:06.311Z debug frostfs-node/morph.go:229 new block {"index": 4110} -2023-12-15T23:14:06.830Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4110, "blockHeight": 4110, "took": "6.919194ms"} -2023-12-15T23:14:07.309Z INFO sending PrepareRequest {"height": 4111, "view": 0} -2023-12-15T23:14:07.310Z INFO sending Commit {"height": 4111, "view": 0} -2023-12-15T23:14:07.310Z INFO approving block {"height": 4111, "hash": "0e61a3ee7188da6d99f80dbadda23a922510968f668be418fb060e4439b71693", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1570d269ea2c545a4acbd02b2bc8dc3538125d1889fae6cd6260f768c7e2325c"} -2023-12-15T23:14:07.313Z INFO initializing dbft {"height": 4112, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:07.313Z debug frostfs-node/morph.go:229 new block {"index": 4111} -2023-12-15T23:14:07.831Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4111, "blockHeight": 4111, "took": "7.060357ms"} -2023-12-15T23:14:08.311Z INFO sending PrepareRequest {"height": 4112, "view": 0} -2023-12-15T23:14:08.311Z INFO sending Commit {"height": 4112, "view": 0} -2023-12-15T23:14:08.312Z INFO approving block {"height": 4112, "hash": "42b9e9595f221fe5f8886a1bbc7ab84edecf6b77a1991c3ca2e6d1991f26f1ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e61a3ee7188da6d99f80dbadda23a922510968f668be418fb060e4439b71693"} -2023-12-15T23:14:08.313Z INFO initializing dbft {"height": 4113, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:08.314Z debug frostfs-node/morph.go:229 new block {"index": 4112} -2023-12-15T23:14:08.832Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4112, "blockHeight": 4112, "took": "7.238393ms"} -2023-12-15T23:14:09.312Z INFO sending PrepareRequest {"height": 4113, "view": 0} -2023-12-15T23:14:09.313Z INFO sending Commit {"height": 4113, "view": 0} -2023-12-15T23:14:09.313Z INFO approving block {"height": 4113, "hash": "dded825ef5fef1f661b4be1685b1cfc16011e61d2912dba947390b0e63788903", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42b9e9595f221fe5f8886a1bbc7ab84edecf6b77a1991c3ca2e6d1991f26f1ad"} -2023-12-15T23:14:09.314Z INFO initializing dbft {"height": 4114, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:09.315Z debug frostfs-node/morph.go:229 new block {"index": 4113} -2023-12-15T23:14:09.832Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4113, "blockHeight": 4113, "took": "7.035746ms"} -2023-12-15T23:14:10.314Z INFO sending PrepareRequest {"height": 4114, "view": 0} -2023-12-15T23:14:10.314Z INFO sending Commit {"height": 4114, "view": 0} -2023-12-15T23:14:10.315Z INFO approving block {"height": 4114, "hash": "6be466b2da3812b9eb41d2da438ea40c2608be93cd18c81ad96474981b697cdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dded825ef5fef1f661b4be1685b1cfc16011e61d2912dba947390b0e63788903"} -2023-12-15T23:14:10.316Z INFO initializing dbft {"height": 4115, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:10.317Z debug frostfs-node/morph.go:229 new block {"index": 4114} -2023-12-15T23:14:10.833Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4114, "blockHeight": 4114, "took": "7.346563ms"} -2023-12-15T23:14:11.316Z INFO sending PrepareRequest {"height": 4115, "view": 0} -2023-12-15T23:14:11.316Z INFO sending Commit {"height": 4115, "view": 0} -2023-12-15T23:14:11.317Z INFO approving block {"height": 4115, "hash": "8779848ef54b310ed2e38f8d64885badc837a8834ef4ff94f7375e3fc9184f65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6be466b2da3812b9eb41d2da438ea40c2608be93cd18c81ad96474981b697cdf"} -2023-12-15T23:14:11.318Z INFO initializing dbft {"height": 4116, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:11.320Z debug frostfs-node/morph.go:229 new block {"index": 4115} -2023-12-15T23:14:11.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4115, "blockHeight": 4115, "took": "7.58871ms"} -2023-12-15T23:14:12.318Z INFO sending PrepareRequest {"height": 4116, "view": 0} -2023-12-15T23:14:12.318Z INFO sending Commit {"height": 4116, "view": 0} -2023-12-15T23:14:12.318Z INFO approving block {"height": 4116, "hash": "cd5e474220ad995fec77481b4d4ebaca96b5e99d93627794ccc68f9b50a7af93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8779848ef54b310ed2e38f8d64885badc837a8834ef4ff94f7375e3fc9184f65"} -2023-12-15T23:14:12.320Z INFO initializing dbft {"height": 4117, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:12.321Z debug frostfs-node/morph.go:229 new block {"index": 4116} -2023-12-15T23:14:12.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4116, "blockHeight": 4116, "took": "7.300281ms"} -2023-12-15T23:14:13.319Z INFO sending PrepareRequest {"height": 4117, "view": 0} -2023-12-15T23:14:13.320Z INFO sending Commit {"height": 4117, "view": 0} -2023-12-15T23:14:13.320Z INFO approving block {"height": 4117, "hash": "d09ae679ea22bda47a6c12ba1d1ac36539f447573c60ba03e244b6e2243d2d50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd5e474220ad995fec77481b4d4ebaca96b5e99d93627794ccc68f9b50a7af93"} -2023-12-15T23:14:13.322Z INFO initializing dbft {"height": 4118, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:13.322Z debug frostfs-node/morph.go:229 new block {"index": 4117} -2023-12-15T23:14:13.326Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:14:13.331Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:14:13.331Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:14:13.835Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4117, "blockHeight": 4117, "took": "7.095067ms"} -2023-12-15T23:14:14.322Z INFO sending PrepareRequest {"height": 4118, "view": 0} -2023-12-15T23:14:14.322Z INFO sending Commit {"height": 4118, "view": 0} -2023-12-15T23:14:14.322Z INFO approving block {"height": 4118, "hash": "e9662753ee8dbe2cc6edc9128e33e9acaec514ed8bab6025cd9dc1f00641a84a", "tx_count": 2, "merkle": "1da1279ad635cb79bffd80348f5ecb037a55c83f291bf0497f937d93ec8409ac", "prev": "d09ae679ea22bda47a6c12ba1d1ac36539f447573c60ba03e244b6e2243d2d50"} -2023-12-15T23:14:14.323Z INFO runtime log {"tx": "dabfacd56860560393fde6c0a5436d4c64de4f463caba80617fa1307dbd80556", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:14:14.323Z INFO runtime log {"tx": "dabfacd56860560393fde6c0a5436d4c64de4f463caba80617fa1307dbd80556", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:14:14.325Z INFO initializing dbft {"height": 4119, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:14.326Z debug frostfs-node/morph.go:229 new block {"index": 4118} -2023-12-15T23:14:14.840Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4118, "blockHeight": 4118, "took": "11.592267ms"} -2023-12-15T23:14:15.323Z INFO sending PrepareRequest {"height": 4119, "view": 0} -2023-12-15T23:14:15.324Z INFO sending Commit {"height": 4119, "view": 0} -2023-12-15T23:14:15.324Z INFO approving block {"height": 4119, "hash": "1981f7db5d564d5deef4ff44731070d6bb58d431eb93d491e1ec02296b7eec59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9662753ee8dbe2cc6edc9128e33e9acaec514ed8bab6025cd9dc1f00641a84a"} -2023-12-15T23:14:15.326Z INFO initializing dbft {"height": 4120, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:15.327Z debug frostfs-node/morph.go:229 new block {"index": 4119} -2023-12-15T23:14:15.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4119, "blockHeight": 4119, "took": "6.795948ms"} -2023-12-15T23:14:16.325Z INFO sending PrepareRequest {"height": 4120, "view": 0} -2023-12-15T23:14:16.325Z INFO sending Commit {"height": 4120, "view": 0} -2023-12-15T23:14:16.325Z INFO approving block {"height": 4120, "hash": "b1f9d4be8558bbc9918ee377cf5ba57f0f21c2d1eb379bbdf6be38ded504c93f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1981f7db5d564d5deef4ff44731070d6bb58d431eb93d491e1ec02296b7eec59"} -2023-12-15T23:14:16.327Z INFO initializing dbft {"height": 4121, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:16.328Z debug frostfs-node/morph.go:229 new block {"index": 4120} -2023-12-15T23:14:16.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4120, "blockHeight": 4120, "took": "5.562487ms"} -2023-12-15T23:14:17.326Z INFO sending PrepareRequest {"height": 4121, "view": 0} -2023-12-15T23:14:17.326Z INFO sending Commit {"height": 4121, "view": 0} -2023-12-15T23:14:17.327Z INFO approving block {"height": 4121, "hash": "56e50fc4876b77aa08ade1ece95df1fe415c47179209fbfe9af326f08def6408", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1f9d4be8558bbc9918ee377cf5ba57f0f21c2d1eb379bbdf6be38ded504c93f"} -2023-12-15T23:14:17.328Z INFO initializing dbft {"height": 4122, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:17.328Z debug frostfs-node/morph.go:229 new block {"index": 4121} -2023-12-15T23:14:17.838Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4121, "blockHeight": 4121, "took": "7.20515ms"} -2023-12-15T23:14:18.328Z INFO sending PrepareRequest {"height": 4122, "view": 0} -2023-12-15T23:14:18.328Z INFO sending Commit {"height": 4122, "view": 0} -2023-12-15T23:14:18.329Z INFO approving block {"height": 4122, "hash": "226f74f4fc66dbcf06bec5b891fdd5efe3572cad6282bacc56f51b4b9ee88ab9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56e50fc4876b77aa08ade1ece95df1fe415c47179209fbfe9af326f08def6408"} -2023-12-15T23:14:18.330Z INFO initializing dbft {"height": 4123, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:18.330Z debug frostfs-node/morph.go:229 new block {"index": 4122} -2023-12-15T23:14:18.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4122, "blockHeight": 4122, "took": "4.742158ms"} -2023-12-15T23:14:19.329Z INFO sending PrepareRequest {"height": 4123, "view": 0} -2023-12-15T23:14:19.330Z INFO sending Commit {"height": 4123, "view": 0} -2023-12-15T23:14:19.330Z INFO approving block {"height": 4123, "hash": "8a52c6dbaad794ddc2aea9d6ee5a9bf954da05578f1f16c3cc7f987c23b1ffa9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "226f74f4fc66dbcf06bec5b891fdd5efe3572cad6282bacc56f51b4b9ee88ab9"} -2023-12-15T23:14:19.331Z INFO initializing dbft {"height": 4124, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:19.332Z debug frostfs-node/morph.go:229 new block {"index": 4123} -2023-12-15T23:14:19.838Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4123, "blockHeight": 4123, "took": "5.76517ms"} -2023-12-15T23:14:20.331Z INFO sending PrepareRequest {"height": 4124, "view": 0} -2023-12-15T23:14:20.332Z INFO sending Commit {"height": 4124, "view": 0} -2023-12-15T23:14:20.332Z INFO approving block {"height": 4124, "hash": "2aa28b0bb20ed0bdf51c63a77c8c91032c0b1f62a8e082424edf42104bc4239d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a52c6dbaad794ddc2aea9d6ee5a9bf954da05578f1f16c3cc7f987c23b1ffa9"} -2023-12-15T23:14:20.335Z INFO initializing dbft {"height": 4125, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:20.335Z debug frostfs-node/morph.go:229 new block {"index": 4124} -2023-12-15T23:14:20.838Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4124, "blockHeight": 4124, "took": "4.930011ms"} -2023-12-15T23:14:21.333Z INFO sending PrepareRequest {"height": 4125, "view": 0} -2023-12-15T23:14:21.333Z INFO sending Commit {"height": 4125, "view": 0} -2023-12-15T23:14:21.334Z INFO approving block {"height": 4125, "hash": "af6e45bc9dfa70bfa170853f4e36a1b08c0abdbfc172665fd6ceeff90684be73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2aa28b0bb20ed0bdf51c63a77c8c91032c0b1f62a8e082424edf42104bc4239d"} -2023-12-15T23:14:21.336Z INFO initializing dbft {"height": 4126, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:21.337Z debug frostfs-node/morph.go:229 new block {"index": 4125} -2023-12-15T23:14:21.838Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4125, "blockHeight": 4125, "took": "5.013931ms"} -2023-12-15T23:14:22.335Z INFO sending PrepareRequest {"height": 4126, "view": 0} -2023-12-15T23:14:22.335Z INFO sending Commit {"height": 4126, "view": 0} -2023-12-15T23:14:22.336Z INFO approving block {"height": 4126, "hash": "5250a32f4530d5b35824dd029529bbfe005ed345824a7c66b221efad8faeb772", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af6e45bc9dfa70bfa170853f4e36a1b08c0abdbfc172665fd6ceeff90684be73"} -2023-12-15T23:14:22.337Z INFO initializing dbft {"height": 4127, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:22.338Z debug frostfs-node/morph.go:229 new block {"index": 4126} -2023-12-15T23:14:22.842Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4126, "blockHeight": 4126, "took": "7.655393ms"} -2023-12-15T23:14:23.337Z INFO sending PrepareRequest {"height": 4127, "view": 0} -2023-12-15T23:14:23.337Z INFO sending Commit {"height": 4127, "view": 0} -2023-12-15T23:14:23.337Z INFO approving block {"height": 4127, "hash": "3082c6b1a373d3eeafb91a6754c33cfda218db4ae5db05079927f1391fd4fa55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5250a32f4530d5b35824dd029529bbfe005ed345824a7c66b221efad8faeb772"} -2023-12-15T23:14:23.339Z INFO initializing dbft {"height": 4128, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:23.340Z debug frostfs-node/morph.go:229 new block {"index": 4127} -2023-12-15T23:14:23.846Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4127, "blockHeight": 4127, "took": "10.640194ms"} -2023-12-15T23:14:24.338Z INFO sending PrepareRequest {"height": 4128, "view": 0} -2023-12-15T23:14:24.339Z INFO sending Commit {"height": 4128, "view": 0} -2023-12-15T23:14:24.339Z INFO approving block {"height": 4128, "hash": "9944e415fe56b3e70a7b65b6dbb0edff063d395054897b38fb57e927bbfd0dc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3082c6b1a373d3eeafb91a6754c33cfda218db4ae5db05079927f1391fd4fa55"} -2023-12-15T23:14:24.340Z INFO initializing dbft {"height": 4129, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:24.341Z debug frostfs-node/morph.go:229 new block {"index": 4128} -2023-12-15T23:14:24.840Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4128, "blockHeight": 4128, "took": "4.521622ms"} -2023-12-15T23:14:25.341Z INFO sending PrepareRequest {"height": 4129, "view": 0} -2023-12-15T23:14:25.341Z INFO sending Commit {"height": 4129, "view": 0} -2023-12-15T23:14:25.341Z INFO approving block {"height": 4129, "hash": "6820d735a62f8ffbb580245b74911addf9e41b9a65997381e7005326d191e561", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9944e415fe56b3e70a7b65b6dbb0edff063d395054897b38fb57e927bbfd0dc1"} -2023-12-15T23:14:25.342Z INFO initializing dbft {"height": 4130, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:25.343Z debug frostfs-node/morph.go:229 new block {"index": 4129} -2023-12-15T23:14:25.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4129, "blockHeight": 4129, "took": "7.341534ms"} -2023-12-15T23:14:26.343Z INFO sending PrepareRequest {"height": 4130, "view": 0} -2023-12-15T23:14:26.343Z INFO sending Commit {"height": 4130, "view": 0} -2023-12-15T23:14:26.344Z INFO approving block {"height": 4130, "hash": "9fd15cfae67707a19242f04b9f04b9820ec6a5d2bdd0c8fe6687c8bba0941520", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6820d735a62f8ffbb580245b74911addf9e41b9a65997381e7005326d191e561"} -2023-12-15T23:14:26.345Z INFO initializing dbft {"height": 4131, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:26.346Z debug frostfs-node/morph.go:229 new block {"index": 4130} -2023-12-15T23:14:26.847Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4130, "blockHeight": 4130, "took": "9.945792ms"} -2023-12-15T23:14:27.345Z INFO sending PrepareRequest {"height": 4131, "view": 0} -2023-12-15T23:14:27.345Z INFO sending Commit {"height": 4131, "view": 0} -2023-12-15T23:14:27.345Z INFO approving block {"height": 4131, "hash": "2d65997a1fa5a765543cc130a7b2bc9b88dd69b26e92207b711c180c03b9d58b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fd15cfae67707a19242f04b9f04b9820ec6a5d2bdd0c8fe6687c8bba0941520"} -2023-12-15T23:14:27.346Z INFO initializing dbft {"height": 4132, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:27.347Z debug frostfs-node/morph.go:229 new block {"index": 4131} -2023-12-15T23:14:27.846Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4131, "blockHeight": 4131, "took": "7.481798ms"} -2023-12-15T23:14:28.347Z INFO sending PrepareRequest {"height": 4132, "view": 0} -2023-12-15T23:14:28.347Z INFO sending Commit {"height": 4132, "view": 0} -2023-12-15T23:14:28.348Z INFO approving block {"height": 4132, "hash": "08f2e6842bbcac1998b411796cbcbf4fc8b68ac899e7e505dddba026ccf787fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d65997a1fa5a765543cc130a7b2bc9b88dd69b26e92207b711c180c03b9d58b"} -2023-12-15T23:14:28.349Z INFO initializing dbft {"height": 4133, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:28.350Z debug frostfs-node/morph.go:229 new block {"index": 4132} -2023-12-15T23:14:28.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4132, "blockHeight": 4132, "took": "8.712314ms"} -2023-12-15T23:14:29.348Z INFO sending PrepareRequest {"height": 4133, "view": 0} -2023-12-15T23:14:29.349Z INFO sending Commit {"height": 4133, "view": 0} -2023-12-15T23:14:29.349Z INFO approving block {"height": 4133, "hash": "901dcd6cd101e95c11b853d83565bbe01690b59d8f86a6c1f878612ef021251c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08f2e6842bbcac1998b411796cbcbf4fc8b68ac899e7e505dddba026ccf787fa"} -2023-12-15T23:14:29.351Z INFO initializing dbft {"height": 4134, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:29.351Z debug frostfs-node/morph.go:229 new block {"index": 4133} -2023-12-15T23:14:29.847Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4133, "blockHeight": 4133, "took": "6.997715ms"} -2023-12-15T23:14:30.350Z INFO sending PrepareRequest {"height": 4134, "view": 0} -2023-12-15T23:14:30.351Z INFO sending Commit {"height": 4134, "view": 0} -2023-12-15T23:14:30.351Z INFO approving block {"height": 4134, "hash": "c83c939f4f9bf339651bc4c2990570a1da09579f86f55dd0b80ecd80dae8e50b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "901dcd6cd101e95c11b853d83565bbe01690b59d8f86a6c1f878612ef021251c"} -2023-12-15T23:14:30.352Z INFO initializing dbft {"height": 4135, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:30.352Z debug frostfs-node/morph.go:229 new block {"index": 4134} -2023-12-15T23:14:30.846Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4134, "blockHeight": 4134, "took": "4.986844ms"} -2023-12-15T23:14:31.352Z INFO sending PrepareRequest {"height": 4135, "view": 0} -2023-12-15T23:14:31.352Z INFO sending Commit {"height": 4135, "view": 0} -2023-12-15T23:14:31.352Z INFO approving block {"height": 4135, "hash": "ec84c9d61e6ebdc1df2cdebad6dcd6af44ab3fefbb6b0486b910afba14853be5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c83c939f4f9bf339651bc4c2990570a1da09579f86f55dd0b80ecd80dae8e50b"} -2023-12-15T23:14:31.354Z INFO initializing dbft {"height": 4136, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:31.355Z debug frostfs-node/morph.go:229 new block {"index": 4135} -2023-12-15T23:14:31.846Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4135, "blockHeight": 4135, "took": "4.904093ms"} -2023-12-15T23:14:32.354Z INFO sending PrepareRequest {"height": 4136, "view": 0} -2023-12-15T23:14:32.354Z INFO sending Commit {"height": 4136, "view": 0} -2023-12-15T23:14:32.355Z INFO approving block {"height": 4136, "hash": "e92f20203dcf90bfabc22061d8cffadd34253d0e3bf2e4f9a4d3da4146585492", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec84c9d61e6ebdc1df2cdebad6dcd6af44ab3fefbb6b0486b910afba14853be5"} -2023-12-15T23:14:32.356Z INFO initializing dbft {"height": 4137, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:32.357Z debug frostfs-node/morph.go:229 new block {"index": 4136} -2023-12-15T23:14:32.847Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4136, "blockHeight": 4136, "took": "4.67967ms"} -2023-12-15T23:14:33.356Z INFO sending PrepareRequest {"height": 4137, "view": 0} -2023-12-15T23:14:33.356Z INFO sending Commit {"height": 4137, "view": 0} -2023-12-15T23:14:33.357Z INFO approving block {"height": 4137, "hash": "2683e29766484562044bdee2b45b650f0010efbb1f1bfa67388e2eb731f374cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e92f20203dcf90bfabc22061d8cffadd34253d0e3bf2e4f9a4d3da4146585492"} -2023-12-15T23:14:33.358Z INFO initializing dbft {"height": 4138, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:33.359Z debug frostfs-node/morph.go:229 new block {"index": 4137} -2023-12-15T23:14:33.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4137, "blockHeight": 4137, "took": "4.583483ms"} -2023-12-15T23:14:34.358Z INFO sending PrepareRequest {"height": 4138, "view": 0} -2023-12-15T23:14:34.358Z INFO sending Commit {"height": 4138, "view": 0} -2023-12-15T23:14:34.358Z INFO approving block {"height": 4138, "hash": "18b60c7b98a5bda812efc53b27ef599a449f07d51a49aed541c20483251335fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2683e29766484562044bdee2b45b650f0010efbb1f1bfa67388e2eb731f374cb"} -2023-12-15T23:14:34.360Z INFO initializing dbft {"height": 4139, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:34.361Z debug frostfs-node/morph.go:229 new block {"index": 4138} -2023-12-15T23:14:34.851Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4138, "blockHeight": 4138, "took": "7.025397ms"} -2023-12-15T23:14:35.360Z INFO sending PrepareRequest {"height": 4139, "view": 0} -2023-12-15T23:14:35.360Z INFO sending Commit {"height": 4139, "view": 0} -2023-12-15T23:14:35.360Z INFO approving block {"height": 4139, "hash": "9d4a50bd0897fc830be444ba3aa11ee7cb96e92c2e6c8944f921ff2a8793a707", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18b60c7b98a5bda812efc53b27ef599a449f07d51a49aed541c20483251335fb"} -2023-12-15T23:14:35.362Z INFO initializing dbft {"height": 4140, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:35.363Z debug frostfs-node/morph.go:229 new block {"index": 4139} -2023-12-15T23:14:35.853Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4139, "blockHeight": 4139, "took": "7.913943ms"} -2023-12-15T23:14:36.362Z INFO sending PrepareRequest {"height": 4140, "view": 0} -2023-12-15T23:14:36.362Z INFO sending Commit {"height": 4140, "view": 0} -2023-12-15T23:14:36.363Z INFO approving block {"height": 4140, "hash": "cbb621abcbe0eb533574526d7df79c5533178b3435243f4d79ec6766b7175b54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d4a50bd0897fc830be444ba3aa11ee7cb96e92c2e6c8944f921ff2a8793a707"} -2023-12-15T23:14:36.365Z INFO initializing dbft {"height": 4141, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:36.366Z debug frostfs-node/morph.go:229 new block {"index": 4140} -2023-12-15T23:14:36.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4140, "blockHeight": 4140, "took": "9.932447ms"} -2023-12-15T23:14:37.364Z INFO sending PrepareRequest {"height": 4141, "view": 0} -2023-12-15T23:14:37.364Z INFO sending Commit {"height": 4141, "view": 0} -2023-12-15T23:14:37.364Z INFO approving block {"height": 4141, "hash": "65eac153668c7c4b219a8e0077bd7b2e7a43d91fbad17607d12cdad8288a8e52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbb621abcbe0eb533574526d7df79c5533178b3435243f4d79ec6766b7175b54"} -2023-12-15T23:14:37.365Z INFO initializing dbft {"height": 4142, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:37.366Z debug frostfs-node/morph.go:229 new block {"index": 4141} -2023-12-15T23:14:37.852Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4141, "blockHeight": 4141, "took": "5.081358ms"} -2023-12-15T23:14:38.365Z INFO sending PrepareRequest {"height": 4142, "view": 0} -2023-12-15T23:14:38.366Z INFO sending Commit {"height": 4142, "view": 0} -2023-12-15T23:14:38.366Z INFO approving block {"height": 4142, "hash": "5e966dd5edc8f1f96a433d64de69154649da93c5c5ed62493850f715a8710600", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65eac153668c7c4b219a8e0077bd7b2e7a43d91fbad17607d12cdad8288a8e52"} -2023-12-15T23:14:38.368Z INFO initializing dbft {"height": 4143, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:38.369Z debug frostfs-node/morph.go:229 new block {"index": 4142} -2023-12-15T23:14:38.853Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4142, "blockHeight": 4142, "took": "5.123037ms"} -2023-12-15T23:14:39.367Z INFO sending PrepareRequest {"height": 4143, "view": 0} -2023-12-15T23:14:39.368Z INFO sending Commit {"height": 4143, "view": 0} -2023-12-15T23:14:39.368Z INFO approving block {"height": 4143, "hash": "3d0b89fef754dd1d3873a6b03bb4b6754a5e0b75e50017497e6f635b9d47921d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e966dd5edc8f1f96a433d64de69154649da93c5c5ed62493850f715a8710600"} -2023-12-15T23:14:39.369Z INFO initializing dbft {"height": 4144, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:39.370Z debug frostfs-node/morph.go:229 new block {"index": 4143} -2023-12-15T23:14:39.855Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4143, "blockHeight": 4143, "took": "6.711625ms"} -2023-12-15T23:14:40.369Z INFO sending PrepareRequest {"height": 4144, "view": 0} -2023-12-15T23:14:40.370Z INFO sending Commit {"height": 4144, "view": 0} -2023-12-15T23:14:40.370Z INFO approving block {"height": 4144, "hash": "988a17ae79ed0288db09fbd7a908250eca58da62ff0305610b2bfccb163c16f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d0b89fef754dd1d3873a6b03bb4b6754a5e0b75e50017497e6f635b9d47921d"} -2023-12-15T23:14:40.372Z INFO initializing dbft {"height": 4145, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:40.372Z debug frostfs-node/morph.go:229 new block {"index": 4144} -2023-12-15T23:14:40.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4144, "blockHeight": 4144, "took": "6.858401ms"} -2023-12-15T23:14:41.371Z INFO sending PrepareRequest {"height": 4145, "view": 0} -2023-12-15T23:14:41.371Z INFO sending Commit {"height": 4145, "view": 0} -2023-12-15T23:14:41.372Z INFO approving block {"height": 4145, "hash": "8bd676e3d4b0611afddbe704d3aef669ca847dd330ff54e20305480abe66b3d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "988a17ae79ed0288db09fbd7a908250eca58da62ff0305610b2bfccb163c16f9"} -2023-12-15T23:14:41.373Z INFO initializing dbft {"height": 4146, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:41.374Z debug frostfs-node/morph.go:229 new block {"index": 4145} -2023-12-15T23:14:41.855Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4145, "blockHeight": 4145, "took": "5.062285ms"} -2023-12-15T23:14:42.372Z INFO sending PrepareRequest {"height": 4146, "view": 0} -2023-12-15T23:14:42.373Z INFO sending Commit {"height": 4146, "view": 0} -2023-12-15T23:14:42.373Z INFO approving block {"height": 4146, "hash": "e91a3b79c1fde8aa4e1c155d360e863c57103f0572d6bfbb1ecef5f57e8349bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bd676e3d4b0611afddbe704d3aef669ca847dd330ff54e20305480abe66b3d9"} -2023-12-15T23:14:42.374Z INFO initializing dbft {"height": 4147, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:42.374Z debug frostfs-node/morph.go:229 new block {"index": 4146} -2023-12-15T23:14:42.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4146, "blockHeight": 4146, "took": "11.909366ms"} -2023-12-15T23:14:43.374Z INFO sending PrepareRequest {"height": 4147, "view": 0} -2023-12-15T23:14:43.374Z INFO sending Commit {"height": 4147, "view": 0} -2023-12-15T23:14:43.374Z INFO approving block {"height": 4147, "hash": "b66f91541eca17be8f43db4459427332b905fd24a2a72423293504e48a690589", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e91a3b79c1fde8aa4e1c155d360e863c57103f0572d6bfbb1ecef5f57e8349bf"} -2023-12-15T23:14:43.375Z INFO initializing dbft {"height": 4148, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:43.376Z debug frostfs-node/morph.go:229 new block {"index": 4147} -2023-12-15T23:14:43.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4147, "blockHeight": 4147, "took": "5.146722ms"} -2023-12-15T23:14:44.376Z INFO sending PrepareRequest {"height": 4148, "view": 0} -2023-12-15T23:14:44.376Z INFO sending Commit {"height": 4148, "view": 0} -2023-12-15T23:14:44.376Z INFO approving block {"height": 4148, "hash": "d4c2ac4718c6d1df0a663e58e0d1da9ebcba5c297fbde791daf6d923197da45c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b66f91541eca17be8f43db4459427332b905fd24a2a72423293504e48a690589"} -2023-12-15T23:14:44.378Z INFO initializing dbft {"height": 4149, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:44.378Z debug frostfs-node/morph.go:229 new block {"index": 4148} -2023-12-15T23:14:44.858Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4148, "blockHeight": 4148, "took": "6.788608ms"} -2023-12-15T23:14:45.378Z INFO sending PrepareRequest {"height": 4149, "view": 0} -2023-12-15T23:14:45.378Z INFO sending Commit {"height": 4149, "view": 0} -2023-12-15T23:14:45.378Z INFO approving block {"height": 4149, "hash": "2851f087e38600448f9d8621d56f8283a216a30a8f99e97c71995fa8c3d6ae33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4c2ac4718c6d1df0a663e58e0d1da9ebcba5c297fbde791daf6d923197da45c"} -2023-12-15T23:14:45.380Z INFO initializing dbft {"height": 4150, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:45.380Z debug frostfs-node/morph.go:229 new block {"index": 4149} -2023-12-15T23:14:45.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4149, "blockHeight": 4149, "took": "6.952052ms"} -2023-12-15T23:14:46.380Z INFO sending PrepareRequest {"height": 4150, "view": 0} -2023-12-15T23:14:46.380Z INFO sending Commit {"height": 4150, "view": 0} -2023-12-15T23:14:46.381Z INFO approving block {"height": 4150, "hash": "f2b09c1d6c7c44515c572ce3ae5fefa9d562770b79813b500c4f38a6289e4349", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2851f087e38600448f9d8621d56f8283a216a30a8f99e97c71995fa8c3d6ae33"} -2023-12-15T23:14:46.382Z INFO initializing dbft {"height": 4151, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:46.383Z debug frostfs-node/morph.go:229 new block {"index": 4150} -2023-12-15T23:14:46.865Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4150, "blockHeight": 4150, "took": "11.343572ms"} -2023-12-15T23:14:47.382Z INFO sending PrepareRequest {"height": 4151, "view": 0} -2023-12-15T23:14:47.382Z INFO sending Commit {"height": 4151, "view": 0} -2023-12-15T23:14:47.383Z INFO approving block {"height": 4151, "hash": "3c17bc5872d082b7935da315e19687dd65e539854006ea089859439d6f59c526", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2b09c1d6c7c44515c572ce3ae5fefa9d562770b79813b500c4f38a6289e4349"} -2023-12-15T23:14:47.384Z INFO initializing dbft {"height": 4152, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:47.385Z debug frostfs-node/morph.go:229 new block {"index": 4151} -2023-12-15T23:14:47.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4151, "blockHeight": 4151, "took": "9.155798ms"} -2023-12-15T23:14:48.384Z INFO sending PrepareRequest {"height": 4152, "view": 0} -2023-12-15T23:14:48.384Z INFO sending Commit {"height": 4152, "view": 0} -2023-12-15T23:14:48.384Z INFO approving block {"height": 4152, "hash": "db344dfd03975be9db38780c5654628fde0c999d082d9173d04fc47f50d8553d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c17bc5872d082b7935da315e19687dd65e539854006ea089859439d6f59c526"} -2023-12-15T23:14:48.386Z INFO initializing dbft {"height": 4153, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:48.387Z debug frostfs-node/morph.go:229 new block {"index": 4152} -2023-12-15T23:14:48.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4152, "blockHeight": 4152, "took": "7.521059ms"} -2023-12-15T23:14:49.386Z INFO sending PrepareRequest {"height": 4153, "view": 0} -2023-12-15T23:14:49.386Z INFO sending Commit {"height": 4153, "view": 0} -2023-12-15T23:14:49.387Z INFO approving block {"height": 4153, "hash": "cc4039ef00602b26136ec8fa5ecf7813e1f14b6101bf666cdffaa9381d8f066f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db344dfd03975be9db38780c5654628fde0c999d082d9173d04fc47f50d8553d"} -2023-12-15T23:14:49.389Z INFO initializing dbft {"height": 4154, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:49.389Z debug frostfs-node/morph.go:229 new block {"index": 4153} -2023-12-15T23:14:49.865Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4153, "blockHeight": 4153, "took": "8.469004ms"} -2023-12-15T23:14:50.388Z INFO sending PrepareRequest {"height": 4154, "view": 0} -2023-12-15T23:14:50.388Z INFO sending Commit {"height": 4154, "view": 0} -2023-12-15T23:14:50.389Z INFO approving block {"height": 4154, "hash": "a8480903a113897b5642f184c6754959d821e2bd79348b1fbe4914197b277917", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc4039ef00602b26136ec8fa5ecf7813e1f14b6101bf666cdffaa9381d8f066f"} -2023-12-15T23:14:50.391Z INFO initializing dbft {"height": 4155, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:50.392Z debug frostfs-node/morph.go:229 new block {"index": 4154} -2023-12-15T23:14:50.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4154, "blockHeight": 4154, "took": "4.31999ms"} -2023-12-15T23:14:51.390Z INFO sending PrepareRequest {"height": 4155, "view": 0} -2023-12-15T23:14:51.390Z INFO sending Commit {"height": 4155, "view": 0} -2023-12-15T23:14:51.391Z INFO approving block {"height": 4155, "hash": "a2dc37914baf0c8d0152e007a494832fff29afa54778f6c1c54d0e1a422fcb62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8480903a113897b5642f184c6754959d821e2bd79348b1fbe4914197b277917"} -2023-12-15T23:14:51.392Z INFO initializing dbft {"height": 4156, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:51.393Z debug frostfs-node/morph.go:229 new block {"index": 4155} -2023-12-15T23:14:51.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4155, "blockHeight": 4155, "took": "13.11932ms"} -2023-12-15T23:14:52.392Z INFO sending PrepareRequest {"height": 4156, "view": 0} -2023-12-15T23:14:52.392Z INFO sending Commit {"height": 4156, "view": 0} -2023-12-15T23:14:52.392Z INFO approving block {"height": 4156, "hash": "f7af03258d13bd6ac91432c5f8615920cb1e56b5a8ac980c313f956165af2a94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2dc37914baf0c8d0152e007a494832fff29afa54778f6c1c54d0e1a422fcb62"} -2023-12-15T23:14:52.394Z INFO initializing dbft {"height": 4157, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:52.395Z debug frostfs-node/morph.go:229 new block {"index": 4156} -2023-12-15T23:14:52.402Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 18 epoch for daughters"} -2023-12-15T23:14:52.866Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4156, "blockHeight": 4156, "took": "6.185151ms"} -2023-12-15T23:14:53.393Z INFO sending PrepareRequest {"height": 4157, "view": 0} -2023-12-15T23:14:53.394Z INFO sending Commit {"height": 4157, "view": 0} -2023-12-15T23:14:53.394Z INFO approving block {"height": 4157, "hash": "51d227b9692c6ad95491a61741067e83a9654416fd8fbc27d4993400a55d3c7e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7af03258d13bd6ac91432c5f8615920cb1e56b5a8ac980c313f956165af2a94"} -2023-12-15T23:14:53.400Z INFO initializing dbft {"height": 4158, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:53.401Z debug frostfs-node/morph.go:229 new block {"index": 4157} -2023-12-15T23:14:53.411Z INFO runtime log {"tx": "af756b26351ee9e50401e5a87fd45da88bf5dce33e26410b47f3ad618b514d72", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:14:53.870Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4157, "blockHeight": 4157, "took": "9.865201ms"} -2023-12-15T23:14:54.396Z INFO sending PrepareRequest {"height": 4158, "view": 0} -2023-12-15T23:14:54.396Z INFO sending Commit {"height": 4158, "view": 0} -2023-12-15T23:14:54.397Z INFO approving block {"height": 4158, "hash": "dd70d515605d567e2ac0b24bad5c134b61bed7348509cf0ecb1275a02153985f", "tx_count": 1, "merkle": "20b95d90bc4d424628791b97bc6b9093db70caeb0507b6d6d31230645ebda725", "prev": "51d227b9692c6ad95491a61741067e83a9654416fd8fbc27d4993400a55d3c7e"} -2023-12-15T23:14:54.398Z INFO runtime log {"tx": "25a7bd5e643012d3d6b60705ebca70db93906bbc971b792846424dbc905db920", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:14:54.400Z INFO initializing dbft {"height": 4159, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:54.401Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 18} -2023-12-15T23:14:54.401Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 18} -2023-12-15T23:14:54.401Z debug frostfs-node/morph.go:229 new block {"index": 4158} -2023-12-15T23:14:54.871Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 4158, "blockHeight": 4158, "took": "10.437783ms"} -2023-12-15T23:14:55.398Z INFO sending PrepareRequest {"height": 4159, "view": 0} -2023-12-15T23:14:55.398Z INFO sending Commit {"height": 4159, "view": 0} -2023-12-15T23:14:55.399Z INFO approving block {"height": 4159, "hash": "d36d6af2f1319a5e18f56716edc35b921ca5adac3d6a44116f17cb457b314deb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd70d515605d567e2ac0b24bad5c134b61bed7348509cf0ecb1275a02153985f"} -2023-12-15T23:14:55.400Z INFO initializing dbft {"height": 4160, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:55.401Z debug frostfs-node/morph.go:229 new block {"index": 4159} -2023-12-15T23:14:55.867Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4159, "blockHeight": 4159, "took": "5.912863ms"} -2023-12-15T23:14:56.400Z INFO sending PrepareRequest {"height": 4160, "view": 0} -2023-12-15T23:14:56.400Z INFO sending Commit {"height": 4160, "view": 0} -2023-12-15T23:14:56.401Z INFO approving block {"height": 4160, "hash": "f3e9de8659e5664ab031e5e7e0f1dc011f48425503a094f6b4a7b668d5f349f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d36d6af2f1319a5e18f56716edc35b921ca5adac3d6a44116f17cb457b314deb"} -2023-12-15T23:14:56.404Z INFO initializing dbft {"height": 4161, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:56.405Z debug frostfs-node/morph.go:229 new block {"index": 4160} -2023-12-15T23:14:56.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4160, "blockHeight": 4160, "took": "8.546949ms"} -2023-12-15T23:14:57.403Z INFO sending PrepareRequest {"height": 4161, "view": 0} -2023-12-15T23:14:57.403Z INFO sending Commit {"height": 4161, "view": 0} -2023-12-15T23:14:57.403Z INFO approving block {"height": 4161, "hash": "7bb7512e8f1ea65c41652a8019d31724760fae390e13d526efe32f65436e31be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3e9de8659e5664ab031e5e7e0f1dc011f48425503a094f6b4a7b668d5f349f2"} -2023-12-15T23:14:57.406Z INFO initializing dbft {"height": 4162, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:57.406Z debug frostfs-node/morph.go:229 new block {"index": 4161} -2023-12-15T23:14:57.872Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4161, "blockHeight": 4161, "took": "8.918909ms"} -2023-12-15T23:14:58.405Z INFO sending PrepareRequest {"height": 4162, "view": 0} -2023-12-15T23:14:58.405Z INFO sending Commit {"height": 4162, "view": 0} -2023-12-15T23:14:58.405Z INFO approving block {"height": 4162, "hash": "5fef9ba80450de9edb0e0694b0167cb22da15eb4b96d57e266471245e2da876d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bb7512e8f1ea65c41652a8019d31724760fae390e13d526efe32f65436e31be"} -2023-12-15T23:14:58.407Z INFO initializing dbft {"height": 4163, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:58.408Z debug frostfs-node/morph.go:229 new block {"index": 4162} -2023-12-15T23:14:58.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4162, "blockHeight": 4162, "took": "6.763597ms"} -2023-12-15T23:14:59.407Z INFO sending PrepareRequest {"height": 4163, "view": 0} -2023-12-15T23:14:59.407Z INFO sending Commit {"height": 4163, "view": 0} -2023-12-15T23:14:59.408Z INFO approving block {"height": 4163, "hash": "a6e7abab8e418bbaeada7b8a2c9f55d85439ff399b994ed827fbb7936c537de5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5fef9ba80450de9edb0e0694b0167cb22da15eb4b96d57e266471245e2da876d"} -2023-12-15T23:14:59.410Z INFO initializing dbft {"height": 4164, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:14:59.411Z debug frostfs-node/morph.go:229 new block {"index": 4163} -2023-12-15T23:14:59.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4163, "blockHeight": 4163, "took": "8.470916ms"} -2023-12-15T23:15:00.409Z INFO sending PrepareRequest {"height": 4164, "view": 0} -2023-12-15T23:15:00.409Z INFO sending Commit {"height": 4164, "view": 0} -2023-12-15T23:15:00.410Z INFO approving block {"height": 4164, "hash": "31c4fef71b456242f8227a0fb0f0efec83cb5a939247c8b993f30cc8b2b152df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6e7abab8e418bbaeada7b8a2c9f55d85439ff399b994ed827fbb7936c537de5"} -2023-12-15T23:15:00.411Z INFO initializing dbft {"height": 4165, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:00.412Z debug frostfs-node/morph.go:229 new block {"index": 4164} -2023-12-15T23:15:00.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4164, "blockHeight": 4164, "took": "7.590281ms"} -2023-12-15T23:15:01.411Z INFO sending PrepareRequest {"height": 4165, "view": 0} -2023-12-15T23:15:01.411Z INFO sending Commit {"height": 4165, "view": 0} -2023-12-15T23:15:01.411Z INFO approving block {"height": 4165, "hash": "7c33fe32a09074f7b973de64f7e7b7132ac1193ce7770b54408fbbc17a6e5fba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31c4fef71b456242f8227a0fb0f0efec83cb5a939247c8b993f30cc8b2b152df"} -2023-12-15T23:15:01.413Z INFO initializing dbft {"height": 4166, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:01.414Z debug frostfs-node/morph.go:229 new block {"index": 4165} -2023-12-15T23:15:01.876Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4165, "blockHeight": 4165, "took": "9.09975ms"} -2023-12-15T23:15:02.413Z INFO sending PrepareRequest {"height": 4166, "view": 0} -2023-12-15T23:15:02.413Z INFO sending Commit {"height": 4166, "view": 0} -2023-12-15T23:15:02.413Z INFO approving block {"height": 4166, "hash": "ec114fb9e51599c6bb2e67ac5a86f4faef86f297852f9b2cd3eba4cd6eefcbfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c33fe32a09074f7b973de64f7e7b7132ac1193ce7770b54408fbbc17a6e5fba"} -2023-12-15T23:15:02.415Z INFO initializing dbft {"height": 4167, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:02.416Z debug frostfs-node/morph.go:229 new block {"index": 4166} -2023-12-15T23:15:02.875Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4166, "blockHeight": 4166, "took": "8.048464ms"} -2023-12-15T23:15:03.414Z INFO sending PrepareRequest {"height": 4167, "view": 0} -2023-12-15T23:15:03.415Z INFO sending Commit {"height": 4167, "view": 0} -2023-12-15T23:15:03.415Z INFO approving block {"height": 4167, "hash": "357fac8eedc4ed5e7b75a14696792256ee0b42f4fe5df43fce904735003b7a2a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec114fb9e51599c6bb2e67ac5a86f4faef86f297852f9b2cd3eba4cd6eefcbfd"} -2023-12-15T23:15:03.417Z INFO initializing dbft {"height": 4168, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:03.417Z debug frostfs-node/morph.go:229 new block {"index": 4167} -2023-12-15T23:15:03.421Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:15:03.423Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:15:03.423Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:15:03.876Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4167, "blockHeight": 4167, "took": "8.116812ms"} -2023-12-15T23:15:04.417Z INFO sending PrepareRequest {"height": 4168, "view": 0} -2023-12-15T23:15:04.417Z INFO sending Commit {"height": 4168, "view": 0} -2023-12-15T23:15:04.417Z INFO approving block {"height": 4168, "hash": "b066ea6c312ff5e37a9f3b29041891da9237eac8eaffb127354753c0a41ba17c", "tx_count": 2, "merkle": "b7aea323142a9f14fa9cda4b12b238ac87a84d551d71b2097a52ac059135e1c2", "prev": "357fac8eedc4ed5e7b75a14696792256ee0b42f4fe5df43fce904735003b7a2a"} -2023-12-15T23:15:04.418Z INFO runtime log {"tx": "baa19b4f2eeda58915e5e5bed6170649e6367075c43d159ebbc556ce1cbf0579", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:15:04.419Z INFO runtime log {"tx": "baa19b4f2eeda58915e5e5bed6170649e6367075c43d159ebbc556ce1cbf0579", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:15:04.420Z INFO initializing dbft {"height": 4169, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:04.422Z debug frostfs-node/morph.go:229 new block {"index": 4168} -2023-12-15T23:15:04.881Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4168, "blockHeight": 4168, "took": "12.044649ms"} -2023-12-15T23:15:05.419Z INFO sending PrepareRequest {"height": 4169, "view": 0} -2023-12-15T23:15:05.419Z INFO sending Commit {"height": 4169, "view": 0} -2023-12-15T23:15:05.419Z INFO approving block {"height": 4169, "hash": "f669efb9a77b075ff2b495f1367de21fb2cfba8eedfa554f84d5f7cbec5a53d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b066ea6c312ff5e37a9f3b29041891da9237eac8eaffb127354753c0a41ba17c"} -2023-12-15T23:15:05.423Z INFO initializing dbft {"height": 4170, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:05.423Z debug frostfs-node/morph.go:229 new block {"index": 4169} -2023-12-15T23:15:05.879Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4169, "blockHeight": 4169, "took": "9.446319ms"} -2023-12-15T23:15:06.420Z INFO sending PrepareRequest {"height": 4170, "view": 0} -2023-12-15T23:15:06.421Z INFO sending Commit {"height": 4170, "view": 0} -2023-12-15T23:15:06.421Z INFO approving block {"height": 4170, "hash": "4a1f3c054e6031c0566f231f19a4c947d253bb7b1da269a5bdb121220fce9733", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f669efb9a77b075ff2b495f1367de21fb2cfba8eedfa554f84d5f7cbec5a53d2"} -2023-12-15T23:15:06.423Z INFO initializing dbft {"height": 4171, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:06.424Z debug frostfs-node/morph.go:229 new block {"index": 4170} -2023-12-15T23:15:06.881Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4170, "blockHeight": 4170, "took": "10.183678ms"} -2023-12-15T23:15:07.422Z INFO sending PrepareRequest {"height": 4171, "view": 0} -2023-12-15T23:15:07.423Z INFO sending Commit {"height": 4171, "view": 0} -2023-12-15T23:15:07.423Z INFO approving block {"height": 4171, "hash": "1e39daeacde539b78bfc9e05ccd1263620e0548551174366432acc46fa379708", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a1f3c054e6031c0566f231f19a4c947d253bb7b1da269a5bdb121220fce9733"} -2023-12-15T23:15:07.424Z INFO initializing dbft {"height": 4172, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:07.425Z debug frostfs-node/morph.go:229 new block {"index": 4171} -2023-12-15T23:15:07.878Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4171, "blockHeight": 4171, "took": "6.839625ms"} -2023-12-15T23:15:08.424Z INFO sending PrepareRequest {"height": 4172, "view": 0} -2023-12-15T23:15:08.424Z INFO sending Commit {"height": 4172, "view": 0} -2023-12-15T23:15:08.425Z INFO approving block {"height": 4172, "hash": "75253449e0eb3b812a5d5540408ac7806264ff24648a6da805b4d6b3ed62ff9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e39daeacde539b78bfc9e05ccd1263620e0548551174366432acc46fa379708"} -2023-12-15T23:15:08.426Z INFO initializing dbft {"height": 4173, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:08.427Z debug frostfs-node/morph.go:229 new block {"index": 4172} -2023-12-15T23:15:08.883Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4172, "blockHeight": 4172, "took": "10.894637ms"} -2023-12-15T23:15:09.426Z INFO sending PrepareRequest {"height": 4173, "view": 0} -2023-12-15T23:15:09.426Z INFO sending Commit {"height": 4173, "view": 0} -2023-12-15T23:15:09.427Z INFO approving block {"height": 4173, "hash": "317ad7ed48d4a6d8dd1e2c31fe94017c65412eb83477458ef23cc88efd4fbf89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75253449e0eb3b812a5d5540408ac7806264ff24648a6da805b4d6b3ed62ff9a"} -2023-12-15T23:15:09.428Z INFO initializing dbft {"height": 4174, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:09.429Z debug frostfs-node/morph.go:229 new block {"index": 4173} -2023-12-15T23:15:09.882Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4173, "blockHeight": 4173, "took": "8.745174ms"} -2023-12-15T23:15:10.427Z INFO sending PrepareRequest {"height": 4174, "view": 0} -2023-12-15T23:15:10.428Z INFO sending Commit {"height": 4174, "view": 0} -2023-12-15T23:15:10.428Z INFO approving block {"height": 4174, "hash": "a6ad06302fdf06aca6682243e9d60bf004bbdb7adcf3f497e4e7e249213d3761", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "317ad7ed48d4a6d8dd1e2c31fe94017c65412eb83477458ef23cc88efd4fbf89"} -2023-12-15T23:15:10.430Z INFO initializing dbft {"height": 4175, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:10.431Z debug frostfs-node/morph.go:229 new block {"index": 4174} -2023-12-15T23:15:10.883Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4174, "blockHeight": 4174, "took": "9.731988ms"} -2023-12-15T23:15:11.430Z INFO sending PrepareRequest {"height": 4175, "view": 0} -2023-12-15T23:15:11.430Z INFO sending Commit {"height": 4175, "view": 0} -2023-12-15T23:15:11.430Z INFO approving block {"height": 4175, "hash": "8a61d4150e5074c9ab7109277e5c1b06c1db43b19344692ea1a1fb048a98ac34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6ad06302fdf06aca6682243e9d60bf004bbdb7adcf3f497e4e7e249213d3761"} -2023-12-15T23:15:11.432Z INFO initializing dbft {"height": 4176, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:11.432Z debug frostfs-node/morph.go:229 new block {"index": 4175} -2023-12-15T23:15:11.882Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4175, "blockHeight": 4175, "took": "7.502391ms"} -2023-12-15T23:15:12.432Z INFO sending PrepareRequest {"height": 4176, "view": 0} -2023-12-15T23:15:12.432Z INFO sending Commit {"height": 4176, "view": 0} -2023-12-15T23:15:12.433Z INFO approving block {"height": 4176, "hash": "de6dbfeb5e367e6278f6813d28d4fc5e24fac093042bab30fdac58cfd54949b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a61d4150e5074c9ab7109277e5c1b06c1db43b19344692ea1a1fb048a98ac34"} -2023-12-15T23:15:12.435Z INFO initializing dbft {"height": 4177, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:12.436Z debug frostfs-node/morph.go:229 new block {"index": 4176} -2023-12-15T23:15:12.883Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4176, "blockHeight": 4176, "took": "7.479518ms"} -2023-12-15T23:15:13.434Z INFO sending PrepareRequest {"height": 4177, "view": 0} -2023-12-15T23:15:13.434Z INFO sending Commit {"height": 4177, "view": 0} -2023-12-15T23:15:13.435Z INFO approving block {"height": 4177, "hash": "045b3acf30e940dd566932eab853e117ecbb123b5eb5c7be6cfa77ed226fda42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de6dbfeb5e367e6278f6813d28d4fc5e24fac093042bab30fdac58cfd54949b4"} -2023-12-15T23:15:13.437Z INFO initializing dbft {"height": 4178, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:13.437Z debug frostfs-node/morph.go:229 new block {"index": 4177} -2023-12-15T23:15:13.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4177, "blockHeight": 4177, "took": "7.084596ms"} -2023-12-15T23:15:14.436Z INFO sending PrepareRequest {"height": 4178, "view": 0} -2023-12-15T23:15:14.437Z INFO sending Commit {"height": 4178, "view": 0} -2023-12-15T23:15:14.437Z INFO approving block {"height": 4178, "hash": "2f0527b378323d981ecc0a12afaf0fdcd0752153cedbc05d0bd805b851f3691a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "045b3acf30e940dd566932eab853e117ecbb123b5eb5c7be6cfa77ed226fda42"} -2023-12-15T23:15:14.439Z INFO initializing dbft {"height": 4179, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:14.440Z debug frostfs-node/morph.go:229 new block {"index": 4178} -2023-12-15T23:15:14.885Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4178, "blockHeight": 4178, "took": "7.810817ms"} -2023-12-15T23:15:15.438Z INFO sending PrepareRequest {"height": 4179, "view": 0} -2023-12-15T23:15:15.439Z INFO sending Commit {"height": 4179, "view": 0} -2023-12-15T23:15:15.439Z INFO approving block {"height": 4179, "hash": "0d9e3cafc6e3e75c32ef0e0738d8578e164526012f380b2359fa949850861535", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f0527b378323d981ecc0a12afaf0fdcd0752153cedbc05d0bd805b851f3691a"} -2023-12-15T23:15:15.440Z INFO initializing dbft {"height": 4180, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:15.442Z debug frostfs-node/morph.go:229 new block {"index": 4179} -2023-12-15T23:15:15.885Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4179, "blockHeight": 4179, "took": "7.350924ms"} -2023-12-15T23:15:16.440Z INFO sending PrepareRequest {"height": 4180, "view": 0} -2023-12-15T23:15:16.441Z INFO sending Commit {"height": 4180, "view": 0} -2023-12-15T23:15:16.442Z INFO approving block {"height": 4180, "hash": "506eef7ca325b85907df7f3a80f4cc4cbef61ef9a52f21d3fa00647b72efdb1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d9e3cafc6e3e75c32ef0e0738d8578e164526012f380b2359fa949850861535"} -2023-12-15T23:15:16.444Z INFO initializing dbft {"height": 4181, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:16.445Z debug frostfs-node/morph.go:229 new block {"index": 4180} -2023-12-15T23:15:16.886Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4180, "blockHeight": 4180, "took": "6.425847ms"} -2023-12-15T23:15:17.443Z INFO sending PrepareRequest {"height": 4181, "view": 0} -2023-12-15T23:15:17.443Z INFO sending Commit {"height": 4181, "view": 0} -2023-12-15T23:15:17.443Z INFO approving block {"height": 4181, "hash": "93681bbe4e1236d9a9f0b96aadf454ca4c2c9e433fc10db50261bf0d0f0d9092", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "506eef7ca325b85907df7f3a80f4cc4cbef61ef9a52f21d3fa00647b72efdb1d"} -2023-12-15T23:15:17.444Z INFO initializing dbft {"height": 4182, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:17.445Z debug frostfs-node/morph.go:229 new block {"index": 4181} -2023-12-15T23:15:17.888Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4181, "blockHeight": 4181, "took": "7.264622ms"} -2023-12-15T23:15:18.445Z INFO sending PrepareRequest {"height": 4182, "view": 0} -2023-12-15T23:15:18.446Z INFO sending Commit {"height": 4182, "view": 0} -2023-12-15T23:15:18.446Z INFO approving block {"height": 4182, "hash": "575d290c2071df789d1097e6e298a8c4b55cc72270d1e65dd4d88713a62c8b92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93681bbe4e1236d9a9f0b96aadf454ca4c2c9e433fc10db50261bf0d0f0d9092"} -2023-12-15T23:15:18.448Z INFO initializing dbft {"height": 4183, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:18.449Z debug frostfs-node/morph.go:229 new block {"index": 4182} -2023-12-15T23:15:18.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4182, "blockHeight": 4182, "took": "7.805235ms"} -2023-12-15T23:15:19.448Z INFO sending PrepareRequest {"height": 4183, "view": 0} -2023-12-15T23:15:19.448Z INFO sending Commit {"height": 4183, "view": 0} -2023-12-15T23:15:19.449Z INFO approving block {"height": 4183, "hash": "245014a6c34d1437077fce4c58cf75a7858d58ee8a0b0c79e8c3d2d3cb139504", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "575d290c2071df789d1097e6e298a8c4b55cc72270d1e65dd4d88713a62c8b92"} -2023-12-15T23:15:19.451Z INFO initializing dbft {"height": 4184, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:19.453Z debug frostfs-node/morph.go:229 new block {"index": 4183} -2023-12-15T23:15:19.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4183, "blockHeight": 4183, "took": "7.359237ms"} -2023-12-15T23:15:20.450Z INFO sending PrepareRequest {"height": 4184, "view": 0} -2023-12-15T23:15:20.450Z INFO sending Commit {"height": 4184, "view": 0} -2023-12-15T23:15:20.451Z INFO approving block {"height": 4184, "hash": "ff429e6b9ef9871d57f881e7f12edcc0c3db3cf5166f10148dd94bbcacfeb166", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "245014a6c34d1437077fce4c58cf75a7858d58ee8a0b0c79e8c3d2d3cb139504"} -2023-12-15T23:15:20.453Z INFO initializing dbft {"height": 4185, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:20.454Z debug frostfs-node/morph.go:229 new block {"index": 4184} -2023-12-15T23:15:20.893Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4184, "blockHeight": 4184, "took": "10.164596ms"} -2023-12-15T23:15:21.453Z INFO sending PrepareRequest {"height": 4185, "view": 0} -2023-12-15T23:15:21.453Z INFO sending Commit {"height": 4185, "view": 0} -2023-12-15T23:15:21.453Z INFO approving block {"height": 4185, "hash": "d1b69d778de67b13431919f57d9e4ebaff6d34f5470c92c22ee143a0a9e4bcbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff429e6b9ef9871d57f881e7f12edcc0c3db3cf5166f10148dd94bbcacfeb166"} -2023-12-15T23:15:21.455Z INFO initializing dbft {"height": 4186, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:21.456Z debug frostfs-node/morph.go:229 new block {"index": 4185} -2023-12-15T23:15:21.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4185, "blockHeight": 4185, "took": "5.644535ms"} -2023-12-15T23:15:22.455Z INFO sending PrepareRequest {"height": 4186, "view": 0} -2023-12-15T23:15:22.455Z INFO sending Commit {"height": 4186, "view": 0} -2023-12-15T23:15:22.455Z INFO approving block {"height": 4186, "hash": "4b2ba5ec6eb6448001d94fe064f2206a85fb6fa9f1784502a0458a727b14bbdc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1b69d778de67b13431919f57d9e4ebaff6d34f5470c92c22ee143a0a9e4bcbe"} -2023-12-15T23:15:22.458Z INFO initializing dbft {"height": 4187, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:22.459Z debug frostfs-node/morph.go:229 new block {"index": 4186} -2023-12-15T23:15:22.891Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4186, "blockHeight": 4186, "took": "7.060185ms"} -2023-12-15T23:15:23.457Z INFO sending PrepareRequest {"height": 4187, "view": 0} -2023-12-15T23:15:23.457Z INFO sending Commit {"height": 4187, "view": 0} -2023-12-15T23:15:23.457Z INFO approving block {"height": 4187, "hash": "35232b5089564f55259bdf477e23c0e082a7585e0d391ac2e835d2a96f5e578c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b2ba5ec6eb6448001d94fe064f2206a85fb6fa9f1784502a0458a727b14bbdc"} -2023-12-15T23:15:23.459Z INFO initializing dbft {"height": 4188, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:23.460Z debug frostfs-node/morph.go:229 new block {"index": 4187} -2023-12-15T23:15:23.892Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4187, "blockHeight": 4187, "took": "7.235661ms"} -2023-12-15T23:15:24.459Z INFO sending PrepareRequest {"height": 4188, "view": 0} -2023-12-15T23:15:24.459Z INFO sending Commit {"height": 4188, "view": 0} -2023-12-15T23:15:24.459Z INFO approving block {"height": 4188, "hash": "15dc39db605c53d40c10a7dfd6f293f1f812456be1ea216b5bee3420bea07cf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35232b5089564f55259bdf477e23c0e082a7585e0d391ac2e835d2a96f5e578c"} -2023-12-15T23:15:24.461Z INFO initializing dbft {"height": 4189, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:24.462Z debug frostfs-node/morph.go:229 new block {"index": 4188} -2023-12-15T23:15:24.894Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4188, "blockHeight": 4188, "took": "9.040216ms"} -2023-12-15T23:15:25.460Z INFO sending PrepareRequest {"height": 4189, "view": 0} -2023-12-15T23:15:25.461Z INFO sending Commit {"height": 4189, "view": 0} -2023-12-15T23:15:25.461Z INFO approving block {"height": 4189, "hash": "078d1c5b89d157e60183e2696c54db6a1564f1185de835bf7a0ac9c440a13220", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15dc39db605c53d40c10a7dfd6f293f1f812456be1ea216b5bee3420bea07cf3"} -2023-12-15T23:15:25.463Z INFO initializing dbft {"height": 4190, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:25.463Z debug frostfs-node/morph.go:229 new block {"index": 4189} -2023-12-15T23:15:25.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4189, "blockHeight": 4189, "took": "8.805142ms"} -2023-12-15T23:15:26.462Z INFO sending PrepareRequest {"height": 4190, "view": 0} -2023-12-15T23:15:26.463Z INFO sending Commit {"height": 4190, "view": 0} -2023-12-15T23:15:26.463Z INFO approving block {"height": 4190, "hash": "615452d4f3c34687763c1e71bec72acae716c3f27da120e4f9535eba89d12dfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "078d1c5b89d157e60183e2696c54db6a1564f1185de835bf7a0ac9c440a13220"} -2023-12-15T23:15:26.466Z INFO initializing dbft {"height": 4191, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:26.467Z debug frostfs-node/morph.go:229 new block {"index": 4190} -2023-12-15T23:15:26.895Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4190, "blockHeight": 4190, "took": "7.777261ms"} -2023-12-15T23:15:27.465Z INFO sending PrepareRequest {"height": 4191, "view": 0} -2023-12-15T23:15:27.466Z INFO sending Commit {"height": 4191, "view": 0} -2023-12-15T23:15:27.466Z INFO approving block {"height": 4191, "hash": "e68399aa292917d27bb9184b7cb24b650d062d59c760bf1950d0544423d3b463", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "615452d4f3c34687763c1e71bec72acae716c3f27da120e4f9535eba89d12dfc"} -2023-12-15T23:15:27.468Z INFO initializing dbft {"height": 4192, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:27.469Z debug frostfs-node/morph.go:229 new block {"index": 4191} -2023-12-15T23:15:27.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4191, "blockHeight": 4191, "took": "9.172599ms"} -2023-12-15T23:15:28.467Z INFO sending PrepareRequest {"height": 4192, "view": 0} -2023-12-15T23:15:28.467Z INFO sending Commit {"height": 4192, "view": 0} -2023-12-15T23:15:28.468Z INFO approving block {"height": 4192, "hash": "81603d154ac270943aeed8f6ad79e0cbfc8fdbf0a1a305f120d435099b585965", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e68399aa292917d27bb9184b7cb24b650d062d59c760bf1950d0544423d3b463"} -2023-12-15T23:15:28.470Z INFO initializing dbft {"height": 4193, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:28.471Z debug frostfs-node/morph.go:229 new block {"index": 4192} -2023-12-15T23:15:28.894Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4192, "blockHeight": 4192, "took": "4.857909ms"} -2023-12-15T23:15:29.470Z INFO sending PrepareRequest {"height": 4193, "view": 0} -2023-12-15T23:15:29.470Z INFO sending Commit {"height": 4193, "view": 0} -2023-12-15T23:15:29.470Z INFO approving block {"height": 4193, "hash": "462508dc3fd16d9868aa732cbbed53b4cc5498891bf4ccf296bd33c93d84a6b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81603d154ac270943aeed8f6ad79e0cbfc8fdbf0a1a305f120d435099b585965"} -2023-12-15T23:15:29.471Z INFO initializing dbft {"height": 4194, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:29.472Z debug frostfs-node/morph.go:229 new block {"index": 4193} -2023-12-15T23:15:29.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4193, "blockHeight": 4193, "took": "20.062267ms"} -2023-12-15T23:15:30.473Z INFO sending PrepareRequest {"height": 4194, "view": 0} -2023-12-15T23:15:30.473Z INFO sending Commit {"height": 4194, "view": 0} -2023-12-15T23:15:30.474Z INFO approving block {"height": 4194, "hash": "a67aa9f4f3a15f15583f4e236bfb97c50a03bcd89e8866e2c8927b982836ff3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "462508dc3fd16d9868aa732cbbed53b4cc5498891bf4ccf296bd33c93d84a6b8"} -2023-12-15T23:15:30.476Z INFO initializing dbft {"height": 4195, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:30.476Z debug frostfs-node/morph.go:229 new block {"index": 4194} -2023-12-15T23:15:30.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4194, "blockHeight": 4194, "took": "5.150162ms"} -2023-12-15T23:15:31.475Z INFO sending PrepareRequest {"height": 4195, "view": 0} -2023-12-15T23:15:31.475Z INFO sending Commit {"height": 4195, "view": 0} -2023-12-15T23:15:31.476Z INFO approving block {"height": 4195, "hash": "b593a371d318c2f2ff0b0f59a02cc0317b3ed8a61d41bf5fb664946d0a8e801e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a67aa9f4f3a15f15583f4e236bfb97c50a03bcd89e8866e2c8927b982836ff3f"} -2023-12-15T23:15:31.477Z INFO initializing dbft {"height": 4196, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:31.478Z debug frostfs-node/morph.go:229 new block {"index": 4195} -2023-12-15T23:15:31.899Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4195, "blockHeight": 4195, "took": "8.278271ms"} -2023-12-15T23:15:32.477Z INFO sending PrepareRequest {"height": 4196, "view": 0} -2023-12-15T23:15:32.477Z INFO sending Commit {"height": 4196, "view": 0} -2023-12-15T23:15:32.478Z INFO approving block {"height": 4196, "hash": "602941a2a8469c67cab2e757e34b7b512ccd7d3d9ac468cd1fe1aab81b354c30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b593a371d318c2f2ff0b0f59a02cc0317b3ed8a61d41bf5fb664946d0a8e801e"} -2023-12-15T23:15:32.480Z INFO initializing dbft {"height": 4197, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:32.480Z debug frostfs-node/morph.go:229 new block {"index": 4196} -2023-12-15T23:15:32.902Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4196, "blockHeight": 4196, "took": "9.521797ms"} -2023-12-15T23:15:33.479Z INFO sending PrepareRequest {"height": 4197, "view": 0} -2023-12-15T23:15:33.479Z INFO sending Commit {"height": 4197, "view": 0} -2023-12-15T23:15:33.480Z INFO approving block {"height": 4197, "hash": "0de5856660f05911bca11093357f8f1590c3ffc164fbd248b63daef66e2e07c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "602941a2a8469c67cab2e757e34b7b512ccd7d3d9ac468cd1fe1aab81b354c30"} -2023-12-15T23:15:33.481Z INFO initializing dbft {"height": 4198, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:33.482Z debug frostfs-node/morph.go:229 new block {"index": 4197} -2023-12-15T23:15:33.909Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4197, "blockHeight": 4197, "took": "15.687527ms"} -2023-12-15T23:15:34.480Z INFO sending PrepareRequest {"height": 4198, "view": 0} -2023-12-15T23:15:34.481Z INFO sending Commit {"height": 4198, "view": 0} -2023-12-15T23:15:34.481Z INFO approving block {"height": 4198, "hash": "b7af3a50c345b3c70ecebbe35aa7aa8006d7d5728d6e70776f46e82965663f91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0de5856660f05911bca11093357f8f1590c3ffc164fbd248b63daef66e2e07c3"} -2023-12-15T23:15:34.483Z INFO initializing dbft {"height": 4199, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:34.484Z debug frostfs-node/morph.go:229 new block {"index": 4198} -2023-12-15T23:15:34.901Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4198, "blockHeight": 4198, "took": "7.580309ms"} -2023-12-15T23:15:35.482Z INFO sending PrepareRequest {"height": 4199, "view": 0} -2023-12-15T23:15:35.483Z INFO sending Commit {"height": 4199, "view": 0} -2023-12-15T23:15:35.483Z INFO approving block {"height": 4199, "hash": "a5c88e23c78a2aa5720539e06e3da91a126300f25160ebe1473827baecd7e841", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7af3a50c345b3c70ecebbe35aa7aa8006d7d5728d6e70776f46e82965663f91"} -2023-12-15T23:15:35.485Z INFO initializing dbft {"height": 4200, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:35.486Z debug frostfs-node/morph.go:229 new block {"index": 4199} -2023-12-15T23:15:35.902Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4199, "blockHeight": 4199, "took": "7.307144ms"} -2023-12-15T23:15:36.484Z INFO sending PrepareRequest {"height": 4200, "view": 0} -2023-12-15T23:15:36.484Z INFO sending Commit {"height": 4200, "view": 0} -2023-12-15T23:15:36.485Z INFO approving block {"height": 4200, "hash": "2fa810e185546744cc61fcca42b174f2d6c2ea3ca2e2d7a1ea90256baf97ad01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5c88e23c78a2aa5720539e06e3da91a126300f25160ebe1473827baecd7e841"} -2023-12-15T23:15:36.486Z INFO initializing dbft {"height": 4201, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:36.487Z debug frostfs-node/morph.go:229 new block {"index": 4200} -2023-12-15T23:15:36.904Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4200, "blockHeight": 4200, "took": "8.682916ms"} -2023-12-15T23:15:37.486Z INFO sending PrepareRequest {"height": 4201, "view": 0} -2023-12-15T23:15:37.486Z INFO sending Commit {"height": 4201, "view": 0} -2023-12-15T23:15:37.487Z INFO approving block {"height": 4201, "hash": "8f5a0e758a59e0ad987ab625f4f9e92e1e484b6d87f99f05d55685ef88c55bf6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fa810e185546744cc61fcca42b174f2d6c2ea3ca2e2d7a1ea90256baf97ad01"} -2023-12-15T23:15:37.488Z INFO initializing dbft {"height": 4202, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:37.490Z debug frostfs-node/morph.go:229 new block {"index": 4201} -2023-12-15T23:15:37.908Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4201, "blockHeight": 4201, "took": "11.621728ms"} -2023-12-15T23:15:38.488Z INFO sending PrepareRequest {"height": 4202, "view": 0} -2023-12-15T23:15:38.488Z INFO sending Commit {"height": 4202, "view": 0} -2023-12-15T23:15:38.488Z INFO approving block {"height": 4202, "hash": "5ca0e30f97635f69a4a161b1274c279444f00218efc79ee5b17a8b65f31d5551", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f5a0e758a59e0ad987ab625f4f9e92e1e484b6d87f99f05d55685ef88c55bf6"} -2023-12-15T23:15:38.490Z INFO initializing dbft {"height": 4203, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:38.491Z debug frostfs-node/morph.go:229 new block {"index": 4202} -2023-12-15T23:15:38.904Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4202, "blockHeight": 4202, "took": "7.513069ms"} -2023-12-15T23:15:39.490Z INFO sending PrepareRequest {"height": 4203, "view": 0} -2023-12-15T23:15:39.490Z INFO sending Commit {"height": 4203, "view": 0} -2023-12-15T23:15:39.491Z INFO approving block {"height": 4203, "hash": "c32b8004f99bd12ce6aa28f65e194910fdd8b2ff5bf2aaa88f271cebcd7d7eba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ca0e30f97635f69a4a161b1274c279444f00218efc79ee5b17a8b65f31d5551"} -2023-12-15T23:15:39.493Z INFO initializing dbft {"height": 4204, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:39.493Z debug frostfs-node/morph.go:229 new block {"index": 4203} -2023-12-15T23:15:39.908Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4203, "blockHeight": 4203, "took": "10.596321ms"} -2023-12-15T23:15:40.492Z INFO sending PrepareRequest {"height": 4204, "view": 0} -2023-12-15T23:15:40.492Z INFO sending Commit {"height": 4204, "view": 0} -2023-12-15T23:15:40.493Z INFO approving block {"height": 4204, "hash": "ecc859c3cf50a67fb48726390016a95fe9832d0479cef0a4fe765628389335c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c32b8004f99bd12ce6aa28f65e194910fdd8b2ff5bf2aaa88f271cebcd7d7eba"} -2023-12-15T23:15:40.495Z INFO initializing dbft {"height": 4205, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:40.496Z debug frostfs-node/morph.go:229 new block {"index": 4204} -2023-12-15T23:15:40.909Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4204, "blockHeight": 4204, "took": "10.772844ms"} -2023-12-15T23:15:41.494Z INFO sending PrepareRequest {"height": 4205, "view": 0} -2023-12-15T23:15:41.494Z INFO sending Commit {"height": 4205, "view": 0} -2023-12-15T23:15:41.495Z INFO approving block {"height": 4205, "hash": "46d457df3709b7d48b97ce24f287a78905f1c2a9336befe63af96367edd45b71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecc859c3cf50a67fb48726390016a95fe9832d0479cef0a4fe765628389335c5"} -2023-12-15T23:15:41.496Z INFO initializing dbft {"height": 4206, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:41.497Z debug frostfs-node/morph.go:229 new block {"index": 4205} -2023-12-15T23:15:41.911Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4205, "blockHeight": 4205, "took": "11.558623ms"} -2023-12-15T23:15:42.496Z INFO sending PrepareRequest {"height": 4206, "view": 0} -2023-12-15T23:15:42.496Z INFO sending Commit {"height": 4206, "view": 0} -2023-12-15T23:15:42.497Z INFO approving block {"height": 4206, "hash": "24b2bcbbe0c9ee6acb376a8debb797387436087bfb1fa01052743f8c6dd5dea3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46d457df3709b7d48b97ce24f287a78905f1c2a9336befe63af96367edd45b71"} -2023-12-15T23:15:42.500Z INFO initializing dbft {"height": 4207, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:42.502Z debug frostfs-node/morph.go:229 new block {"index": 4206} -2023-12-15T23:15:42.908Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4206, "blockHeight": 4206, "took": "7.56769ms"} -2023-12-15T23:15:43.498Z INFO sending PrepareRequest {"height": 4207, "view": 0} -2023-12-15T23:15:43.498Z INFO sending Commit {"height": 4207, "view": 0} -2023-12-15T23:15:43.499Z INFO approving block {"height": 4207, "hash": "15340d9c6c94bccd3d3e6f2eef5424a5d1552ce5af0a32cf727fcc2562265e27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24b2bcbbe0c9ee6acb376a8debb797387436087bfb1fa01052743f8c6dd5dea3"} -2023-12-15T23:15:43.501Z INFO initializing dbft {"height": 4208, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:43.502Z debug frostfs-node/morph.go:229 new block {"index": 4207} -2023-12-15T23:15:43.913Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4207, "blockHeight": 4207, "took": "11.177335ms"} -2023-12-15T23:15:44.500Z INFO sending PrepareRequest {"height": 4208, "view": 0} -2023-12-15T23:15:44.500Z INFO sending Commit {"height": 4208, "view": 0} -2023-12-15T23:15:44.500Z INFO approving block {"height": 4208, "hash": "2ed07e2472aebf9123232af4acd3db144475d8fc2261d9c09178b79842b1cc5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15340d9c6c94bccd3d3e6f2eef5424a5d1552ce5af0a32cf727fcc2562265e27"} -2023-12-15T23:15:44.502Z INFO initializing dbft {"height": 4209, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:44.503Z debug frostfs-node/morph.go:229 new block {"index": 4208} -2023-12-15T23:15:44.912Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4208, "blockHeight": 4208, "took": "8.889949ms"} -2023-12-15T23:15:45.502Z INFO sending PrepareRequest {"height": 4209, "view": 0} -2023-12-15T23:15:45.502Z INFO sending Commit {"height": 4209, "view": 0} -2023-12-15T23:15:45.502Z INFO approving block {"height": 4209, "hash": "954e7bf8110f44d52d214fbd03f7ef16ec8bcf3ec951d58003c0674aaf27ed1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ed07e2472aebf9123232af4acd3db144475d8fc2261d9c09178b79842b1cc5b"} -2023-12-15T23:15:45.504Z INFO initializing dbft {"height": 4210, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:45.505Z debug frostfs-node/morph.go:229 new block {"index": 4209} -2023-12-15T23:15:45.912Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4209, "blockHeight": 4209, "took": "7.740875ms"} -2023-12-15T23:15:46.503Z INFO sending PrepareRequest {"height": 4210, "view": 0} -2023-12-15T23:15:46.504Z INFO sending Commit {"height": 4210, "view": 0} -2023-12-15T23:15:46.504Z INFO approving block {"height": 4210, "hash": "153c237c6da671f712004b8329fc78aa83fc51635ba77881a5b980b5b5006201", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "954e7bf8110f44d52d214fbd03f7ef16ec8bcf3ec951d58003c0674aaf27ed1b"} -2023-12-15T23:15:46.506Z INFO initializing dbft {"height": 4211, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:46.507Z debug frostfs-node/morph.go:229 new block {"index": 4210} -2023-12-15T23:15:46.912Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4210, "blockHeight": 4210, "took": "7.855418ms"} -2023-12-15T23:15:47.506Z INFO sending PrepareRequest {"height": 4211, "view": 0} -2023-12-15T23:15:47.506Z INFO sending Commit {"height": 4211, "view": 0} -2023-12-15T23:15:47.506Z INFO approving block {"height": 4211, "hash": "dcebd71b829c4ab704fcebcae5c392bfcdf2a541fa7adf669d10f1f2e2699435", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "153c237c6da671f712004b8329fc78aa83fc51635ba77881a5b980b5b5006201"} -2023-12-15T23:15:47.508Z INFO initializing dbft {"height": 4212, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:47.509Z debug frostfs-node/morph.go:229 new block {"index": 4211} -2023-12-15T23:15:47.919Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4211, "blockHeight": 4211, "took": "13.412984ms"} -2023-12-15T23:15:48.508Z INFO sending PrepareRequest {"height": 4212, "view": 0} -2023-12-15T23:15:48.508Z INFO sending Commit {"height": 4212, "view": 0} -2023-12-15T23:15:48.508Z INFO approving block {"height": 4212, "hash": "b40405941e567f95a9b3dd137f3822528f747bc0bc3d427bcb14f5ead855b43d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcebd71b829c4ab704fcebcae5c392bfcdf2a541fa7adf669d10f1f2e2699435"} -2023-12-15T23:15:48.510Z INFO initializing dbft {"height": 4213, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:48.511Z debug frostfs-node/morph.go:229 new block {"index": 4212} -2023-12-15T23:15:48.914Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4212, "blockHeight": 4212, "took": "6.934853ms"} -2023-12-15T23:15:49.510Z INFO sending PrepareRequest {"height": 4213, "view": 0} -2023-12-15T23:15:49.510Z INFO sending Commit {"height": 4213, "view": 0} -2023-12-15T23:15:49.510Z INFO approving block {"height": 4213, "hash": "66da0c374f76f87bddda79ce041004049d21d3d7f4f9bc046565762539742984", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b40405941e567f95a9b3dd137f3822528f747bc0bc3d427bcb14f5ead855b43d"} -2023-12-15T23:15:49.512Z INFO initializing dbft {"height": 4214, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:49.513Z debug frostfs-node/morph.go:229 new block {"index": 4213} -2023-12-15T23:15:49.916Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4213, "blockHeight": 4213, "took": "7.580408ms"} -2023-12-15T23:15:50.512Z INFO sending PrepareRequest {"height": 4214, "view": 0} -2023-12-15T23:15:50.512Z INFO sending Commit {"height": 4214, "view": 0} -2023-12-15T23:15:50.513Z INFO approving block {"height": 4214, "hash": "b95eb403bf46b11cf3b2e795237f866e2a5bc04e305f08ebfdabcdffc9004e1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66da0c374f76f87bddda79ce041004049d21d3d7f4f9bc046565762539742984"} -2023-12-15T23:15:50.514Z INFO initializing dbft {"height": 4215, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:50.515Z debug frostfs-node/morph.go:229 new block {"index": 4214} -2023-12-15T23:15:50.917Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4214, "blockHeight": 4214, "took": "8.279637ms"} -2023-12-15T23:15:51.514Z INFO sending PrepareRequest {"height": 4215, "view": 0} -2023-12-15T23:15:51.514Z INFO sending Commit {"height": 4215, "view": 0} -2023-12-15T23:15:51.515Z INFO approving block {"height": 4215, "hash": "e39521b750044cd4211b4ee617d582c0ce8564911c46fa01691f929cc5645e1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b95eb403bf46b11cf3b2e795237f866e2a5bc04e305f08ebfdabcdffc9004e1d"} -2023-12-15T23:15:51.516Z INFO initializing dbft {"height": 4216, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:51.517Z debug frostfs-node/morph.go:229 new block {"index": 4215} -2023-12-15T23:15:51.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4215, "blockHeight": 4215, "took": "12.791422ms"} -2023-12-15T23:15:52.516Z INFO sending PrepareRequest {"height": 4216, "view": 0} -2023-12-15T23:15:52.516Z INFO sending Commit {"height": 4216, "view": 0} -2023-12-15T23:15:52.516Z INFO approving block {"height": 4216, "hash": "0e59534992df5932f3d9bd5345221bf737673107258bd5842899922032174033", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e39521b750044cd4211b4ee617d582c0ce8564911c46fa01691f929cc5645e1e"} -2023-12-15T23:15:52.518Z INFO initializing dbft {"height": 4217, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:52.518Z debug frostfs-node/morph.go:229 new block {"index": 4216} -2023-12-15T23:15:52.523Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 18, "iteration": 1, "error": "no data for 0 iteration in 18 epoch for consumers's trusts"} -2023-12-15T23:15:52.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4216, "blockHeight": 4216, "took": "7.382468ms"} -2023-12-15T23:15:53.518Z INFO sending PrepareRequest {"height": 4217, "view": 0} -2023-12-15T23:15:53.518Z INFO sending Commit {"height": 4217, "view": 0} -2023-12-15T23:15:53.518Z INFO approving block {"height": 4217, "hash": "b485d74a6b869d0f244cc2a3db0ac2df0f5874c443f528d656da76386be67675", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e59534992df5932f3d9bd5345221bf737673107258bd5842899922032174033"} -2023-12-15T23:15:53.520Z INFO initializing dbft {"height": 4218, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:53.521Z debug frostfs-node/morph.go:229 new block {"index": 4217} -2023-12-15T23:15:53.527Z info settlement/calls.go:61 start basic income collection {"epoch": 18} -2023-12-15T23:15:53.528Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:15:53.529Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:15:53.529Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:15:53.922Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4217, "blockHeight": 4217, "took": "10.582418ms"} -2023-12-15T23:15:54.519Z INFO sending PrepareRequest {"height": 4218, "view": 0} -2023-12-15T23:15:54.520Z INFO sending Commit {"height": 4218, "view": 0} -2023-12-15T23:15:54.521Z INFO approving block {"height": 4218, "hash": "356fabb03e81fdd33fbb6dd3e4a4dd44d38a4a4721b565bd2b29a004d498782d", "tx_count": 2, "merkle": "2ed3009a99054cd25ea39575706d6caa98ca4d187005a88ef0358e410e19186c", "prev": "b485d74a6b869d0f244cc2a3db0ac2df0f5874c443f528d656da76386be67675"} -2023-12-15T23:15:54.523Z INFO runtime log {"tx": "ca77f58927fc8ac85e508ddb42bfe8483956c79cf8865a011689ca1944b56d39", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:15:54.523Z INFO runtime log {"tx": "ca77f58927fc8ac85e508ddb42bfe8483956c79cf8865a011689ca1944b56d39", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:15:54.524Z INFO initializing dbft {"height": 4219, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:54.525Z debug frostfs-node/morph.go:229 new block {"index": 4218} -2023-12-15T23:15:54.925Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4218, "blockHeight": 4218, "took": "13.088722ms"} -2023-12-15T23:15:55.522Z INFO sending PrepareRequest {"height": 4219, "view": 0} -2023-12-15T23:15:55.523Z INFO sending Commit {"height": 4219, "view": 0} -2023-12-15T23:15:55.523Z INFO approving block {"height": 4219, "hash": "c8d46064dd19d46abb03182a970f969fb5892c860674dead9a57de2833ded604", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "356fabb03e81fdd33fbb6dd3e4a4dd44d38a4a4721b565bd2b29a004d498782d"} -2023-12-15T23:15:55.525Z INFO initializing dbft {"height": 4220, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:55.525Z debug frostfs-node/morph.go:229 new block {"index": 4219} -2023-12-15T23:15:55.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4219, "blockHeight": 4219, "took": "9.204927ms"} -2023-12-15T23:15:56.524Z INFO sending PrepareRequest {"height": 4220, "view": 0} -2023-12-15T23:15:56.524Z INFO sending Commit {"height": 4220, "view": 0} -2023-12-15T23:15:56.525Z INFO approving block {"height": 4220, "hash": "34ccbb9ea6fd7a964d7c091c0c9942e9a9465178dc82042926067b36a63a313b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8d46064dd19d46abb03182a970f969fb5892c860674dead9a57de2833ded604"} -2023-12-15T23:15:56.526Z INFO initializing dbft {"height": 4221, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:56.527Z debug frostfs-node/morph.go:229 new block {"index": 4220} -2023-12-15T23:15:56.922Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4220, "blockHeight": 4220, "took": "7.888819ms"} -2023-12-15T23:15:57.527Z INFO sending PrepareRequest {"height": 4221, "view": 0} -2023-12-15T23:15:57.527Z INFO sending Commit {"height": 4221, "view": 0} -2023-12-15T23:15:57.527Z INFO approving block {"height": 4221, "hash": "fa9369a2e61841deac1117c8cc827a381c4438cda4a0d40dbdaecee2329c625c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34ccbb9ea6fd7a964d7c091c0c9942e9a9465178dc82042926067b36a63a313b"} -2023-12-15T23:15:57.529Z INFO initializing dbft {"height": 4222, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:57.530Z debug frostfs-node/morph.go:229 new block {"index": 4221} -2023-12-15T23:15:57.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4221, "blockHeight": 4221, "took": "9.067694ms"} -2023-12-15T23:15:58.529Z INFO sending PrepareRequest {"height": 4222, "view": 0} -2023-12-15T23:15:58.529Z INFO sending Commit {"height": 4222, "view": 0} -2023-12-15T23:15:58.530Z INFO approving block {"height": 4222, "hash": "78b71b0c8063f2d24900e958e05023fd685c11499ebbda3142c9c94e257eae1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa9369a2e61841deac1117c8cc827a381c4438cda4a0d40dbdaecee2329c625c"} -2023-12-15T23:15:58.532Z INFO initializing dbft {"height": 4223, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:58.532Z debug frostfs-node/morph.go:229 new block {"index": 4222} -2023-12-15T23:15:58.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4222, "blockHeight": 4222, "took": "7.130628ms"} -2023-12-15T23:15:59.531Z INFO sending PrepareRequest {"height": 4223, "view": 0} -2023-12-15T23:15:59.531Z INFO sending Commit {"height": 4223, "view": 0} -2023-12-15T23:15:59.531Z INFO approving block {"height": 4223, "hash": "9e85130af81c537905e9272a930cb919d154b363e516d8b706392c5bc1db1c5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78b71b0c8063f2d24900e958e05023fd685c11499ebbda3142c9c94e257eae1f"} -2023-12-15T23:15:59.533Z INFO initializing dbft {"height": 4224, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:15:59.534Z debug frostfs-node/morph.go:229 new block {"index": 4223} -2023-12-15T23:15:59.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4223, "blockHeight": 4223, "took": "6.886941ms"} -2023-12-15T23:16:00.533Z INFO sending PrepareRequest {"height": 4224, "view": 0} -2023-12-15T23:16:00.534Z INFO sending Commit {"height": 4224, "view": 0} -2023-12-15T23:16:00.534Z INFO approving block {"height": 4224, "hash": "b4e4fe01f7e36c6063d226cb9ab3c820676a5dd35d4db0319f777f3bdafe0e4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e85130af81c537905e9272a930cb919d154b363e516d8b706392c5bc1db1c5a"} -2023-12-15T23:16:00.536Z INFO initializing dbft {"height": 4225, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:00.538Z debug frostfs-node/morph.go:229 new block {"index": 4224} -2023-12-15T23:16:00.925Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4224, "blockHeight": 4224, "took": "7.18487ms"} -2023-12-15T23:16:01.535Z INFO sending PrepareRequest {"height": 4225, "view": 0} -2023-12-15T23:16:01.536Z INFO sending Commit {"height": 4225, "view": 0} -2023-12-15T23:16:01.536Z INFO approving block {"height": 4225, "hash": "fa34cd873325391bfcdf217a13297cda8f5bfb11c1fc4ac1a040fea42bf37976", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4e4fe01f7e36c6063d226cb9ab3c820676a5dd35d4db0319f777f3bdafe0e4f"} -2023-12-15T23:16:01.538Z INFO initializing dbft {"height": 4226, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:01.538Z debug frostfs-node/morph.go:229 new block {"index": 4225} -2023-12-15T23:16:01.926Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4225, "blockHeight": 4225, "took": "7.022518ms"} -2023-12-15T23:16:02.538Z INFO sending PrepareRequest {"height": 4226, "view": 0} -2023-12-15T23:16:02.538Z INFO sending Commit {"height": 4226, "view": 0} -2023-12-15T23:16:02.538Z INFO approving block {"height": 4226, "hash": "35537b4a5e9e313eaa607a29ae82c88c36e9ec3892defd2f541f58bd5fc4c860", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa34cd873325391bfcdf217a13297cda8f5bfb11c1fc4ac1a040fea42bf37976"} -2023-12-15T23:16:02.540Z INFO initializing dbft {"height": 4227, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:02.541Z debug frostfs-node/morph.go:229 new block {"index": 4226} -2023-12-15T23:16:02.927Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4226, "blockHeight": 4226, "took": "7.57274ms"} -2023-12-15T23:16:03.539Z INFO sending PrepareRequest {"height": 4227, "view": 0} -2023-12-15T23:16:03.540Z INFO sending Commit {"height": 4227, "view": 0} -2023-12-15T23:16:03.540Z INFO approving block {"height": 4227, "hash": "15075152db2ac80ba261ecce802a212bec6f63c5a84a8c9c80edbc48dc99ebe1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35537b4a5e9e313eaa607a29ae82c88c36e9ec3892defd2f541f58bd5fc4c860"} -2023-12-15T23:16:03.542Z INFO initializing dbft {"height": 4228, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:03.542Z debug frostfs-node/morph.go:229 new block {"index": 4227} -2023-12-15T23:16:03.928Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4227, "blockHeight": 4227, "took": "7.338333ms"} -2023-12-15T23:16:04.541Z INFO sending PrepareRequest {"height": 4228, "view": 0} -2023-12-15T23:16:04.542Z INFO sending Commit {"height": 4228, "view": 0} -2023-12-15T23:16:04.542Z INFO approving block {"height": 4228, "hash": "abdb828c24220e5f0595d71c184e24ac4dc0565f0ce7510931fec84e65a343ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15075152db2ac80ba261ecce802a212bec6f63c5a84a8c9c80edbc48dc99ebe1"} -2023-12-15T23:16:04.543Z INFO initializing dbft {"height": 4229, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:04.544Z debug frostfs-node/morph.go:229 new block {"index": 4228} -2023-12-15T23:16:04.927Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4228, "blockHeight": 4228, "took": "5.51482ms"} -2023-12-15T23:16:05.543Z INFO sending PrepareRequest {"height": 4229, "view": 0} -2023-12-15T23:16:05.544Z INFO sending Commit {"height": 4229, "view": 0} -2023-12-15T23:16:05.544Z INFO approving block {"height": 4229, "hash": "ac0240bbe3e39de9e612b9e783390468a621227d7e9cc17c621d52aa83a22dcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abdb828c24220e5f0595d71c184e24ac4dc0565f0ce7510931fec84e65a343ab"} -2023-12-15T23:16:05.546Z INFO initializing dbft {"height": 4230, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:05.546Z debug frostfs-node/morph.go:229 new block {"index": 4229} -2023-12-15T23:16:05.932Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4229, "blockHeight": 4229, "took": "9.657093ms"} -2023-12-15T23:16:06.545Z INFO sending PrepareRequest {"height": 4230, "view": 0} -2023-12-15T23:16:06.545Z INFO sending Commit {"height": 4230, "view": 0} -2023-12-15T23:16:06.546Z INFO approving block {"height": 4230, "hash": "781e9a12eeb812e135d3b10085fa955762b81ee5c875bf20ba6eea55e6204ea3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac0240bbe3e39de9e612b9e783390468a621227d7e9cc17c621d52aa83a22dcd"} -2023-12-15T23:16:06.547Z INFO initializing dbft {"height": 4231, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:06.548Z debug frostfs-node/morph.go:229 new block {"index": 4230} -2023-12-15T23:16:06.931Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4230, "blockHeight": 4230, "took": "7.824286ms"} -2023-12-15T23:16:07.548Z INFO sending PrepareRequest {"height": 4231, "view": 0} -2023-12-15T23:16:07.548Z INFO sending Commit {"height": 4231, "view": 0} -2023-12-15T23:16:07.549Z INFO approving block {"height": 4231, "hash": "81ca644fb6aea677c3809ed5e3d61016ed822f8d3793e8807b20aa8c87535dd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "781e9a12eeb812e135d3b10085fa955762b81ee5c875bf20ba6eea55e6204ea3"} -2023-12-15T23:16:07.552Z INFO initializing dbft {"height": 4232, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:07.553Z debug frostfs-node/morph.go:229 new block {"index": 4231} -2023-12-15T23:16:07.933Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4231, "blockHeight": 4231, "took": "8.407707ms"} -2023-12-15T23:16:08.550Z INFO sending PrepareRequest {"height": 4232, "view": 0} -2023-12-15T23:16:08.550Z INFO sending Commit {"height": 4232, "view": 0} -2023-12-15T23:16:08.551Z INFO approving block {"height": 4232, "hash": "eb50461c581aa3a4fc8f59cf760b4929e550f7f4e7bb830ce053daacdff967e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81ca644fb6aea677c3809ed5e3d61016ed822f8d3793e8807b20aa8c87535dd8"} -2023-12-15T23:16:08.553Z INFO initializing dbft {"height": 4233, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:08.554Z debug frostfs-node/morph.go:229 new block {"index": 4232} -2023-12-15T23:16:08.937Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4232, "blockHeight": 4232, "took": "11.524985ms"} -2023-12-15T23:16:09.552Z INFO sending PrepareRequest {"height": 4233, "view": 0} -2023-12-15T23:16:09.552Z INFO sending Commit {"height": 4233, "view": 0} -2023-12-15T23:16:09.552Z INFO approving block {"height": 4233, "hash": "582b5f1d63f1f3a0c97c9a7f20065e3cec8e89c387ebb7af17096187a9c20218", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb50461c581aa3a4fc8f59cf760b4929e550f7f4e7bb830ce053daacdff967e3"} -2023-12-15T23:16:09.554Z INFO initializing dbft {"height": 4234, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:09.555Z debug frostfs-node/morph.go:229 new block {"index": 4233} -2023-12-15T23:16:09.933Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4233, "blockHeight": 4233, "took": "6.918827ms"} -2023-12-15T23:16:10.553Z INFO sending PrepareRequest {"height": 4234, "view": 0} -2023-12-15T23:16:10.553Z INFO sending Commit {"height": 4234, "view": 0} -2023-12-15T23:16:10.554Z INFO approving block {"height": 4234, "hash": "f7113ad98d5c75ef2a69369c6d7297f956877b5f6cf120fba93226d9e5b287a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "582b5f1d63f1f3a0c97c9a7f20065e3cec8e89c387ebb7af17096187a9c20218"} -2023-12-15T23:16:10.555Z INFO initializing dbft {"height": 4235, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:10.557Z debug frostfs-node/morph.go:229 new block {"index": 4234} -2023-12-15T23:16:10.936Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4234, "blockHeight": 4234, "took": "8.567547ms"} -2023-12-15T23:16:11.555Z INFO sending PrepareRequest {"height": 4235, "view": 0} -2023-12-15T23:16:11.555Z INFO sending Commit {"height": 4235, "view": 0} -2023-12-15T23:16:11.556Z INFO approving block {"height": 4235, "hash": "68ca557b3f52dc9f69d911cbf0d870e0d3ecad7ceece357304695984c1ad1345", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7113ad98d5c75ef2a69369c6d7297f956877b5f6cf120fba93226d9e5b287a7"} -2023-12-15T23:16:11.557Z INFO initializing dbft {"height": 4236, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:11.558Z debug frostfs-node/morph.go:229 new block {"index": 4235} -2023-12-15T23:16:11.936Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4235, "blockHeight": 4235, "took": "7.320184ms"} -2023-12-15T23:16:12.557Z INFO sending PrepareRequest {"height": 4236, "view": 0} -2023-12-15T23:16:12.557Z INFO sending Commit {"height": 4236, "view": 0} -2023-12-15T23:16:12.558Z INFO approving block {"height": 4236, "hash": "5a2ded01aca22172369d93aec79a1feb0b272e5dcc81d4127b784865de250a56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68ca557b3f52dc9f69d911cbf0d870e0d3ecad7ceece357304695984c1ad1345"} -2023-12-15T23:16:12.559Z INFO initializing dbft {"height": 4237, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:12.560Z debug frostfs-node/morph.go:229 new block {"index": 4236} -2023-12-15T23:16:12.936Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4236, "blockHeight": 4236, "took": "6.892061ms"} -2023-12-15T23:16:13.559Z INFO sending PrepareRequest {"height": 4237, "view": 0} -2023-12-15T23:16:13.559Z INFO sending Commit {"height": 4237, "view": 0} -2023-12-15T23:16:13.560Z INFO approving block {"height": 4237, "hash": "133580736669d2e0680dbb73288b079a1a39696e2570776a05aef33c25913d58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a2ded01aca22172369d93aec79a1feb0b272e5dcc81d4127b784865de250a56"} -2023-12-15T23:16:13.561Z INFO initializing dbft {"height": 4238, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:13.562Z debug frostfs-node/morph.go:229 new block {"index": 4237} -2023-12-15T23:16:13.936Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4237, "blockHeight": 4237, "took": "6.55831ms"} -2023-12-15T23:16:14.562Z INFO sending PrepareRequest {"height": 4238, "view": 0} -2023-12-15T23:16:14.562Z INFO sending Commit {"height": 4238, "view": 0} -2023-12-15T23:16:14.563Z INFO approving block {"height": 4238, "hash": "ddb3d95eaeac33592abd4da93bd85e46c192b58ae3b9a0f19701ec55686694e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "133580736669d2e0680dbb73288b079a1a39696e2570776a05aef33c25913d58"} -2023-12-15T23:16:14.565Z INFO initializing dbft {"height": 4239, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:14.565Z debug frostfs-node/morph.go:229 new block {"index": 4238} -2023-12-15T23:16:14.937Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4238, "blockHeight": 4238, "took": "7.064196ms"} -2023-12-15T23:16:15.564Z INFO sending PrepareRequest {"height": 4239, "view": 0} -2023-12-15T23:16:15.564Z INFO sending Commit {"height": 4239, "view": 0} -2023-12-15T23:16:15.565Z INFO approving block {"height": 4239, "hash": "2b0d7a7adcdf24273a688a75ccffcc65a26af99e8308867fe4c86cb818b12eba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddb3d95eaeac33592abd4da93bd85e46c192b58ae3b9a0f19701ec55686694e3"} -2023-12-15T23:16:15.566Z INFO initializing dbft {"height": 4240, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:15.567Z debug frostfs-node/morph.go:229 new block {"index": 4239} -2023-12-15T23:16:15.942Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4239, "blockHeight": 4239, "took": "11.18623ms"} -2023-12-15T23:16:16.566Z INFO sending PrepareRequest {"height": 4240, "view": 0} -2023-12-15T23:16:16.566Z INFO sending Commit {"height": 4240, "view": 0} -2023-12-15T23:16:16.567Z INFO approving block {"height": 4240, "hash": "f8d69bfa3680c373fc97fcc66241978f39442b563c98792ad72c8a78d8de7d76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b0d7a7adcdf24273a688a75ccffcc65a26af99e8308867fe4c86cb818b12eba"} -2023-12-15T23:16:16.569Z INFO initializing dbft {"height": 4241, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:16.569Z debug frostfs-node/morph.go:229 new block {"index": 4240} -2023-12-15T23:16:16.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4240, "blockHeight": 4240, "took": "7.480408ms"} -2023-12-15T23:16:17.567Z INFO sending PrepareRequest {"height": 4241, "view": 0} -2023-12-15T23:16:17.568Z INFO sending Commit {"height": 4241, "view": 0} -2023-12-15T23:16:17.568Z INFO approving block {"height": 4241, "hash": "738cd8621d70834369a75573fc43a79a758d26ee23f1b3061f1fe161cf55f50f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8d69bfa3680c373fc97fcc66241978f39442b563c98792ad72c8a78d8de7d76"} -2023-12-15T23:16:17.569Z INFO initializing dbft {"height": 4242, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:17.570Z debug frostfs-node/morph.go:229 new block {"index": 4241} -2023-12-15T23:16:17.940Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4241, "blockHeight": 4241, "took": "8.074352ms"} -2023-12-15T23:16:18.569Z INFO sending PrepareRequest {"height": 4242, "view": 0} -2023-12-15T23:16:18.569Z INFO sending Commit {"height": 4242, "view": 0} -2023-12-15T23:16:18.569Z INFO approving block {"height": 4242, "hash": "adaf49cf1a74006c13533f2e23959ea3df8dc2413d5ccc264dc12f4b342e1b58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "738cd8621d70834369a75573fc43a79a758d26ee23f1b3061f1fe161cf55f50f"} -2023-12-15T23:16:18.570Z INFO initializing dbft {"height": 4243, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:18.571Z debug frostfs-node/morph.go:229 new block {"index": 4242} -2023-12-15T23:16:18.940Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4242, "blockHeight": 4242, "took": "7.255761ms"} -2023-12-15T23:16:19.571Z INFO sending PrepareRequest {"height": 4243, "view": 0} -2023-12-15T23:16:19.571Z INFO sending Commit {"height": 4243, "view": 0} -2023-12-15T23:16:19.572Z INFO approving block {"height": 4243, "hash": "e9932f3eea075818286ca0d20662d0fb8e1cc4b542cf67dada59837d29c7e7bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adaf49cf1a74006c13533f2e23959ea3df8dc2413d5ccc264dc12f4b342e1b58"} -2023-12-15T23:16:19.573Z INFO initializing dbft {"height": 4244, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:19.575Z debug frostfs-node/morph.go:229 new block {"index": 4243} -2023-12-15T23:16:19.941Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4243, "blockHeight": 4243, "took": "7.103316ms"} -2023-12-15T23:16:20.573Z INFO sending PrepareRequest {"height": 4244, "view": 0} -2023-12-15T23:16:20.573Z INFO sending Commit {"height": 4244, "view": 0} -2023-12-15T23:16:20.574Z INFO approving block {"height": 4244, "hash": "970e7f55ad72ac8b4a7a57a39c058e336befcde14413659a50befa0eeaa05cb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9932f3eea075818286ca0d20662d0fb8e1cc4b542cf67dada59837d29c7e7bb"} -2023-12-15T23:16:20.575Z INFO initializing dbft {"height": 4245, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:20.576Z debug frostfs-node/morph.go:229 new block {"index": 4244} -2023-12-15T23:16:20.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4244, "blockHeight": 4244, "took": "10.468248ms"} -2023-12-15T23:16:21.574Z INFO sending PrepareRequest {"height": 4245, "view": 0} -2023-12-15T23:16:21.575Z INFO sending Commit {"height": 4245, "view": 0} -2023-12-15T23:16:21.575Z INFO approving block {"height": 4245, "hash": "ee925b1b9d7f5a179402cc727019a9804cd4729cb8b4f83cd5479171ac196c0c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "970e7f55ad72ac8b4a7a57a39c058e336befcde14413659a50befa0eeaa05cb2"} -2023-12-15T23:16:21.577Z INFO initializing dbft {"height": 4246, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:21.577Z debug frostfs-node/morph.go:229 new block {"index": 4245} -2023-12-15T23:16:21.943Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4245, "blockHeight": 4245, "took": "6.992454ms"} -2023-12-15T23:16:22.577Z INFO sending PrepareRequest {"height": 4246, "view": 0} -2023-12-15T23:16:22.577Z INFO sending Commit {"height": 4246, "view": 0} -2023-12-15T23:16:22.577Z INFO approving block {"height": 4246, "hash": "112249908ce9b111468d5742121bf78ac94fefddcd1268c1142d1cfc9b43654c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee925b1b9d7f5a179402cc727019a9804cd4729cb8b4f83cd5479171ac196c0c"} -2023-12-15T23:16:22.579Z INFO initializing dbft {"height": 4247, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:22.580Z debug frostfs-node/morph.go:229 new block {"index": 4246} -2023-12-15T23:16:22.945Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4246, "blockHeight": 4246, "took": "8.195269ms"} -2023-12-15T23:16:23.578Z INFO sending PrepareRequest {"height": 4247, "view": 0} -2023-12-15T23:16:23.578Z INFO sending Commit {"height": 4247, "view": 0} -2023-12-15T23:16:23.579Z INFO approving block {"height": 4247, "hash": "f1b7ffaaa10506d3304ac3969bffe48177f607fb63acb9cd6b568dc8a7c3e4da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "112249908ce9b111468d5742121bf78ac94fefddcd1268c1142d1cfc9b43654c"} -2023-12-15T23:16:23.580Z INFO initializing dbft {"height": 4248, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:23.581Z debug frostfs-node/morph.go:229 new block {"index": 4247} -2023-12-15T23:16:23.944Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4247, "blockHeight": 4247, "took": "6.500649ms"} -2023-12-15T23:16:24.580Z INFO sending PrepareRequest {"height": 4248, "view": 0} -2023-12-15T23:16:24.580Z INFO sending Commit {"height": 4248, "view": 0} -2023-12-15T23:16:24.580Z INFO approving block {"height": 4248, "hash": "2716080c9debcea1493602efc631b6c741546bfc0edffb22e4d6086cc640bfbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1b7ffaaa10506d3304ac3969bffe48177f607fb63acb9cd6b568dc8a7c3e4da"} -2023-12-15T23:16:24.582Z INFO initializing dbft {"height": 4249, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:24.583Z debug frostfs-node/morph.go:229 new block {"index": 4248} -2023-12-15T23:16:24.950Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4248, "blockHeight": 4248, "took": "11.084133ms"} -2023-12-15T23:16:25.582Z INFO sending PrepareRequest {"height": 4249, "view": 0} -2023-12-15T23:16:25.582Z INFO sending Commit {"height": 4249, "view": 0} -2023-12-15T23:16:25.583Z INFO approving block {"height": 4249, "hash": "3dc27cfa590736f56515fa96dcbf2d2d987217aaf943f291a83deb80c268b595", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2716080c9debcea1493602efc631b6c741546bfc0edffb22e4d6086cc640bfbb"} -2023-12-15T23:16:25.584Z INFO initializing dbft {"height": 4250, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:25.585Z debug frostfs-node/morph.go:229 new block {"index": 4249} -2023-12-15T23:16:25.945Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4249, "blockHeight": 4249, "took": "5.994325ms"} -2023-12-15T23:16:26.584Z INFO sending PrepareRequest {"height": 4250, "view": 0} -2023-12-15T23:16:26.584Z INFO sending Commit {"height": 4250, "view": 0} -2023-12-15T23:16:26.585Z INFO approving block {"height": 4250, "hash": "886680fd86171a6c8de7cac0c14fa00184c71c2c1d250fc881145db25a6e3a5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3dc27cfa590736f56515fa96dcbf2d2d987217aaf943f291a83deb80c268b595"} -2023-12-15T23:16:26.586Z INFO initializing dbft {"height": 4251, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:26.587Z debug frostfs-node/morph.go:229 new block {"index": 4250} -2023-12-15T23:16:26.950Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4250, "blockHeight": 4250, "took": "9.567528ms"} -2023-12-15T23:16:27.585Z INFO sending PrepareRequest {"height": 4251, "view": 0} -2023-12-15T23:16:27.586Z INFO sending Commit {"height": 4251, "view": 0} -2023-12-15T23:16:27.586Z INFO approving block {"height": 4251, "hash": "21b78c24894417b69af0ab5b998de40d8e0faa2718600ca46467037367315127", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "886680fd86171a6c8de7cac0c14fa00184c71c2c1d250fc881145db25a6e3a5c"} -2023-12-15T23:16:27.588Z INFO initializing dbft {"height": 4252, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:27.589Z debug frostfs-node/morph.go:229 new block {"index": 4251} -2023-12-15T23:16:27.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4251, "blockHeight": 4251, "took": "8.616199ms"} -2023-12-15T23:16:28.587Z INFO sending PrepareRequest {"height": 4252, "view": 0} -2023-12-15T23:16:28.588Z INFO sending Commit {"height": 4252, "view": 0} -2023-12-15T23:16:28.588Z INFO approving block {"height": 4252, "hash": "f2c34136c79fcebea38be5a04853ab6fdc3384c513bbba003f796e7bbf775714", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21b78c24894417b69af0ab5b998de40d8e0faa2718600ca46467037367315127"} -2023-12-15T23:16:28.590Z INFO initializing dbft {"height": 4253, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:28.591Z debug frostfs-node/morph.go:229 new block {"index": 4252} -2023-12-15T23:16:28.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4252, "blockHeight": 4252, "took": "7.259527ms"} -2023-12-15T23:16:29.589Z INFO sending PrepareRequest {"height": 4253, "view": 0} -2023-12-15T23:16:29.590Z INFO sending Commit {"height": 4253, "view": 0} -2023-12-15T23:16:29.590Z INFO approving block {"height": 4253, "hash": "5cf4d81eae9d62f879576180690d6797711c447c86f8e2be1da4ddf433673594", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2c34136c79fcebea38be5a04853ab6fdc3384c513bbba003f796e7bbf775714"} -2023-12-15T23:16:29.592Z INFO initializing dbft {"height": 4254, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:29.593Z debug frostfs-node/morph.go:229 new block {"index": 4253} -2023-12-15T23:16:29.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4253, "blockHeight": 4253, "took": "6.855377ms"} -2023-12-15T23:16:30.591Z INFO sending PrepareRequest {"height": 4254, "view": 0} -2023-12-15T23:16:30.591Z INFO sending Commit {"height": 4254, "view": 0} -2023-12-15T23:16:30.592Z INFO approving block {"height": 4254, "hash": "b4038c9e7148b6e468c70da16329d90b1ac0160aed40bc485daf3489877f005a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cf4d81eae9d62f879576180690d6797711c447c86f8e2be1da4ddf433673594"} -2023-12-15T23:16:30.593Z INFO initializing dbft {"height": 4255, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:30.594Z debug frostfs-node/morph.go:229 new block {"index": 4254} -2023-12-15T23:16:30.950Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4254, "blockHeight": 4254, "took": "6.615252ms"} -2023-12-15T23:16:31.593Z INFO sending PrepareRequest {"height": 4255, "view": 0} -2023-12-15T23:16:31.593Z INFO sending Commit {"height": 4255, "view": 0} -2023-12-15T23:16:31.594Z INFO approving block {"height": 4255, "hash": "69cea71d1d7b70d240752cdf0bcc1a93ffef78bc2e275a5a820ec25fb7bdee35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4038c9e7148b6e468c70da16329d90b1ac0160aed40bc485daf3489877f005a"} -2023-12-15T23:16:31.596Z INFO initializing dbft {"height": 4256, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:31.596Z debug frostfs-node/morph.go:229 new block {"index": 4255} -2023-12-15T23:16:31.959Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4255, "blockHeight": 4255, "took": "14.70852ms"} -2023-12-15T23:16:32.595Z INFO sending PrepareRequest {"height": 4256, "view": 0} -2023-12-15T23:16:32.596Z INFO sending Commit {"height": 4256, "view": 0} -2023-12-15T23:16:32.596Z INFO approving block {"height": 4256, "hash": "e6c28f5a223d177817d817ee7936b2e5a7eb98f02af492fd3f96279e3c445389", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69cea71d1d7b70d240752cdf0bcc1a93ffef78bc2e275a5a820ec25fb7bdee35"} -2023-12-15T23:16:32.599Z INFO initializing dbft {"height": 4257, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:32.599Z debug frostfs-node/morph.go:229 new block {"index": 4256} -2023-12-15T23:16:32.957Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4256, "blockHeight": 4256, "took": "12.105748ms"} -2023-12-15T23:16:33.597Z INFO sending PrepareRequest {"height": 4257, "view": 0} -2023-12-15T23:16:33.597Z INFO sending Commit {"height": 4257, "view": 0} -2023-12-15T23:16:33.598Z INFO approving block {"height": 4257, "hash": "6e7e8a350e67a46d469be2748bc505856583e2847c4438496e448677bbe3fb90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6c28f5a223d177817d817ee7936b2e5a7eb98f02af492fd3f96279e3c445389"} -2023-12-15T23:16:33.600Z INFO initializing dbft {"height": 4258, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:33.601Z debug frostfs-node/morph.go:229 new block {"index": 4257} -2023-12-15T23:16:33.954Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4257, "blockHeight": 4257, "took": "9.179217ms"} -2023-12-15T23:16:34.599Z INFO sending PrepareRequest {"height": 4258, "view": 0} -2023-12-15T23:16:34.599Z INFO sending Commit {"height": 4258, "view": 0} -2023-12-15T23:16:34.600Z INFO approving block {"height": 4258, "hash": "11f2c825434f6c69e6da30f28befe4456d59065c7b8b64c439becf08e60cdf5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e7e8a350e67a46d469be2748bc505856583e2847c4438496e448677bbe3fb90"} -2023-12-15T23:16:34.601Z INFO initializing dbft {"height": 4259, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:34.602Z debug frostfs-node/morph.go:229 new block {"index": 4258} -2023-12-15T23:16:34.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4258, "blockHeight": 4258, "took": "5.490777ms"} -2023-12-15T23:16:35.601Z INFO sending PrepareRequest {"height": 4259, "view": 0} -2023-12-15T23:16:35.601Z INFO sending Commit {"height": 4259, "view": 0} -2023-12-15T23:16:35.602Z INFO approving block {"height": 4259, "hash": "ad48a914579196cf2a9f7145f27a02971acf8cbfbefa31c0b531870aff460a99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11f2c825434f6c69e6da30f28befe4456d59065c7b8b64c439becf08e60cdf5d"} -2023-12-15T23:16:35.603Z INFO initializing dbft {"height": 4260, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:35.604Z debug frostfs-node/morph.go:229 new block {"index": 4259} -2023-12-15T23:16:35.956Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4259, "blockHeight": 4259, "took": "9.14631ms"} -2023-12-15T23:16:36.603Z INFO sending PrepareRequest {"height": 4260, "view": 0} -2023-12-15T23:16:36.603Z INFO sending Commit {"height": 4260, "view": 0} -2023-12-15T23:16:36.604Z INFO approving block {"height": 4260, "hash": "4ca1b2be76339c7ab63cb3928f57a9429d7082a8bca42f088217302dd9974f6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad48a914579196cf2a9f7145f27a02971acf8cbfbefa31c0b531870aff460a99"} -2023-12-15T23:16:36.605Z INFO initializing dbft {"height": 4261, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:36.606Z debug frostfs-node/morph.go:229 new block {"index": 4260} -2023-12-15T23:16:36.955Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4260, "blockHeight": 4260, "took": "6.88748ms"} -2023-12-15T23:16:37.604Z INFO sending PrepareRequest {"height": 4261, "view": 0} -2023-12-15T23:16:37.605Z INFO sending Commit {"height": 4261, "view": 0} -2023-12-15T23:16:37.605Z INFO approving block {"height": 4261, "hash": "99738efb81be83d09fd6f9cebceabcd815869c2aec2fa3ff2a8c0e1b9bfb42b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ca1b2be76339c7ab63cb3928f57a9429d7082a8bca42f088217302dd9974f6b"} -2023-12-15T23:16:37.607Z INFO initializing dbft {"height": 4262, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:37.608Z debug frostfs-node/morph.go:229 new block {"index": 4261} -2023-12-15T23:16:37.954Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4261, "blockHeight": 4261, "took": "5.443288ms"} -2023-12-15T23:16:38.607Z INFO sending PrepareRequest {"height": 4262, "view": 0} -2023-12-15T23:16:38.607Z INFO sending Commit {"height": 4262, "view": 0} -2023-12-15T23:16:38.608Z INFO approving block {"height": 4262, "hash": "4d58dca5e5b003239fc205415126a2f845c0e2aac0fbd9ec7b16f3e33e429429", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99738efb81be83d09fd6f9cebceabcd815869c2aec2fa3ff2a8c0e1b9bfb42b1"} -2023-12-15T23:16:38.610Z INFO initializing dbft {"height": 4263, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:38.611Z debug frostfs-node/morph.go:229 new block {"index": 4262} -2023-12-15T23:16:38.959Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4262, "blockHeight": 4262, "took": "9.232069ms"} -2023-12-15T23:16:39.610Z INFO sending PrepareRequest {"height": 4263, "view": 0} -2023-12-15T23:16:39.610Z INFO sending Commit {"height": 4263, "view": 0} -2023-12-15T23:16:39.611Z INFO approving block {"height": 4263, "hash": "f3cd4c6f797beb6be684dc4a60b94b966719e7b220e3037d051ca981b8e06654", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d58dca5e5b003239fc205415126a2f845c0e2aac0fbd9ec7b16f3e33e429429"} -2023-12-15T23:16:39.614Z INFO initializing dbft {"height": 4264, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:39.614Z debug frostfs-node/morph.go:229 new block {"index": 4263} -2023-12-15T23:16:39.958Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4263, "blockHeight": 4263, "took": "7.20978ms"} -2023-12-15T23:16:40.612Z INFO sending PrepareRequest {"height": 4264, "view": 0} -2023-12-15T23:16:40.612Z INFO sending Commit {"height": 4264, "view": 0} -2023-12-15T23:16:40.613Z INFO approving block {"height": 4264, "hash": "49fd4d25924b06bc821a789f2e584fa5b0dc21651f5a3b7a87a6cbd4b3793705", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3cd4c6f797beb6be684dc4a60b94b966719e7b220e3037d051ca981b8e06654"} -2023-12-15T23:16:40.614Z INFO initializing dbft {"height": 4265, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:40.615Z debug frostfs-node/morph.go:229 new block {"index": 4264} -2023-12-15T23:16:40.958Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4264, "blockHeight": 4264, "took": "5.705309ms"} -2023-12-15T23:16:41.614Z INFO sending PrepareRequest {"height": 4265, "view": 0} -2023-12-15T23:16:41.614Z INFO sending Commit {"height": 4265, "view": 0} -2023-12-15T23:16:41.615Z INFO approving block {"height": 4265, "hash": "a0d58a910647711ed06819ee1206aff3589907f697139f4b6273d16fd38282e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49fd4d25924b06bc821a789f2e584fa5b0dc21651f5a3b7a87a6cbd4b3793705"} -2023-12-15T23:16:41.617Z INFO initializing dbft {"height": 4266, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:41.618Z debug frostfs-node/morph.go:229 new block {"index": 4265} -2023-12-15T23:16:41.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4265, "blockHeight": 4265, "took": "7.144035ms"} -2023-12-15T23:16:42.616Z INFO sending PrepareRequest {"height": 4266, "view": 0} -2023-12-15T23:16:42.616Z INFO sending Commit {"height": 4266, "view": 0} -2023-12-15T23:16:42.617Z INFO approving block {"height": 4266, "hash": "c7cce9f97db53cb1387f9e3f22f2dad2dffee0105faa3da77206cf1f3d0fd7c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0d58a910647711ed06819ee1206aff3589907f697139f4b6273d16fd38282e5"} -2023-12-15T23:16:42.618Z INFO initializing dbft {"height": 4267, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:42.619Z debug frostfs-node/morph.go:229 new block {"index": 4266} -2023-12-15T23:16:42.959Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4266, "blockHeight": 4266, "took": "5.34271ms"} -2023-12-15T23:16:43.618Z INFO sending PrepareRequest {"height": 4267, "view": 0} -2023-12-15T23:16:43.618Z INFO sending Commit {"height": 4267, "view": 0} -2023-12-15T23:16:43.619Z INFO approving block {"height": 4267, "hash": "608b4c260ff9fc7f38629e63455d42e9f321add459aee1c5e25531768fdfc925", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7cce9f97db53cb1387f9e3f22f2dad2dffee0105faa3da77206cf1f3d0fd7c5"} -2023-12-15T23:16:43.620Z INFO initializing dbft {"height": 4268, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:43.621Z debug frostfs-node/morph.go:229 new block {"index": 4267} -2023-12-15T23:16:43.625Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:16:43.631Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:16:43.631Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:16:43.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4267, "blockHeight": 4267, "took": "8.325982ms"} -2023-12-15T23:16:44.620Z INFO sending PrepareRequest {"height": 4268, "view": 0} -2023-12-15T23:16:44.620Z INFO sending Commit {"height": 4268, "view": 0} -2023-12-15T23:16:44.621Z INFO approving block {"height": 4268, "hash": "095b98ada643df101c6a1cf25c170ed5c266add357bbf98a040b023edc35e82d", "tx_count": 2, "merkle": "dd3214ea24aa14775972ef309d89efa3fe08fcc5e802026105337f7e5cbea2ab", "prev": "608b4c260ff9fc7f38629e63455d42e9f321add459aee1c5e25531768fdfc925"} -2023-12-15T23:16:44.622Z INFO runtime log {"tx": "300798b2b13d614fc6666d81ac6eee34545b254031b780c2a490a58f6a200c6c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:16:44.623Z INFO runtime log {"tx": "300798b2b13d614fc6666d81ac6eee34545b254031b780c2a490a58f6a200c6c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:16:44.624Z INFO initializing dbft {"height": 4269, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:44.626Z debug frostfs-node/morph.go:229 new block {"index": 4268} -2023-12-15T23:16:44.967Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4268, "blockHeight": 4268, "took": "10.973676ms"} -2023-12-15T23:16:45.622Z INFO sending PrepareRequest {"height": 4269, "view": 0} -2023-12-15T23:16:45.622Z INFO sending Commit {"height": 4269, "view": 0} -2023-12-15T23:16:45.623Z INFO approving block {"height": 4269, "hash": "da9ce385b4a555247683eed34cf18724afb107e45fdd06d4c498729f4268b121", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "095b98ada643df101c6a1cf25c170ed5c266add357bbf98a040b023edc35e82d"} -2023-12-15T23:16:45.625Z INFO initializing dbft {"height": 4270, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:45.626Z debug frostfs-node/morph.go:229 new block {"index": 4269} -2023-12-15T23:16:45.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4269, "blockHeight": 4269, "took": "12.085579ms"} -2023-12-15T23:16:46.624Z INFO sending PrepareRequest {"height": 4270, "view": 0} -2023-12-15T23:16:46.624Z INFO sending Commit {"height": 4270, "view": 0} -2023-12-15T23:16:46.625Z INFO approving block {"height": 4270, "hash": "d9566189bab6e0b488da3b40399870e2200cf626899607c3e628dff75cc45725", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da9ce385b4a555247683eed34cf18724afb107e45fdd06d4c498729f4268b121"} -2023-12-15T23:16:46.627Z INFO initializing dbft {"height": 4271, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:46.627Z debug frostfs-node/morph.go:229 new block {"index": 4270} -2023-12-15T23:16:46.966Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4270, "blockHeight": 4270, "took": "9.007263ms"} -2023-12-15T23:16:47.626Z INFO sending PrepareRequest {"height": 4271, "view": 0} -2023-12-15T23:16:47.626Z INFO sending Commit {"height": 4271, "view": 0} -2023-12-15T23:16:47.626Z INFO approving block {"height": 4271, "hash": "f0847cc94291a680b1260b6ba4d7bed4805f5f662e3e410a14401e517b840df9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9566189bab6e0b488da3b40399870e2200cf626899607c3e628dff75cc45725"} -2023-12-15T23:16:47.628Z INFO initializing dbft {"height": 4272, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:47.629Z debug frostfs-node/morph.go:229 new block {"index": 4271} -2023-12-15T23:16:47.965Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4271, "blockHeight": 4271, "took": "7.400405ms"} -2023-12-15T23:16:48.627Z INFO sending PrepareRequest {"height": 4272, "view": 0} -2023-12-15T23:16:48.628Z INFO sending Commit {"height": 4272, "view": 0} -2023-12-15T23:16:48.628Z INFO approving block {"height": 4272, "hash": "ec226da65e44bad2ee30a777756490ac406beb1d30984d171ab06289c06b5e92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0847cc94291a680b1260b6ba4d7bed4805f5f662e3e410a14401e517b840df9"} -2023-12-15T23:16:48.630Z INFO initializing dbft {"height": 4273, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:48.631Z debug frostfs-node/morph.go:229 new block {"index": 4272} -2023-12-15T23:16:48.965Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4272, "blockHeight": 4272, "took": "7.032592ms"} -2023-12-15T23:16:49.630Z INFO sending PrepareRequest {"height": 4273, "view": 0} -2023-12-15T23:16:49.630Z INFO sending Commit {"height": 4273, "view": 0} -2023-12-15T23:16:49.631Z INFO approving block {"height": 4273, "hash": "1d3df655b6f13c38a4bef299384798b983a4806d6fb6f9d9f34058f9c122549b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec226da65e44bad2ee30a777756490ac406beb1d30984d171ab06289c06b5e92"} -2023-12-15T23:16:49.633Z INFO initializing dbft {"height": 4274, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:49.634Z debug frostfs-node/morph.go:229 new block {"index": 4273} -2023-12-15T23:16:49.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4273, "blockHeight": 4273, "took": "9.241469ms"} -2023-12-15T23:16:50.632Z INFO sending PrepareRequest {"height": 4274, "view": 0} -2023-12-15T23:16:50.632Z INFO sending Commit {"height": 4274, "view": 0} -2023-12-15T23:16:50.633Z INFO approving block {"height": 4274, "hash": "cc71df1b62c84e5182002c16ad8d77cec9fd18201d9e5d762453841f38403f1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d3df655b6f13c38a4bef299384798b983a4806d6fb6f9d9f34058f9c122549b"} -2023-12-15T23:16:50.634Z INFO initializing dbft {"height": 4275, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:50.635Z debug frostfs-node/morph.go:229 new block {"index": 4274} -2023-12-15T23:16:50.971Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4274, "blockHeight": 4274, "took": "10.927602ms"} -2023-12-15T23:16:51.634Z INFO sending PrepareRequest {"height": 4275, "view": 0} -2023-12-15T23:16:51.634Z INFO sending Commit {"height": 4275, "view": 0} -2023-12-15T23:16:51.634Z INFO approving block {"height": 4275, "hash": "a0a0f59a5f9ab62a0139f6c68b3cf7c59bf1fb2c37f244a0f3705eaae32d0db6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc71df1b62c84e5182002c16ad8d77cec9fd18201d9e5d762453841f38403f1a"} -2023-12-15T23:16:51.635Z INFO initializing dbft {"height": 4276, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:51.636Z debug frostfs-node/morph.go:229 new block {"index": 4275} -2023-12-15T23:16:51.966Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4275, "blockHeight": 4275, "took": "4.884504ms"} -2023-12-15T23:16:52.635Z INFO sending PrepareRequest {"height": 4276, "view": 0} -2023-12-15T23:16:52.636Z INFO sending Commit {"height": 4276, "view": 0} -2023-12-15T23:16:52.636Z INFO approving block {"height": 4276, "hash": "935de1582f0d7a61c30a5bca633bf322197451a8b5a6a1fd39d848ebd6fafed9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0a0f59a5f9ab62a0139f6c68b3cf7c59bf1fb2c37f244a0f3705eaae32d0db6"} -2023-12-15T23:16:52.638Z INFO initializing dbft {"height": 4277, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:52.639Z debug frostfs-node/morph.go:229 new block {"index": 4276} -2023-12-15T23:16:52.645Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 18, "iteration": 2, "error": "no data for 1 iteration in 18 epoch for consumers's trusts"} -2023-12-15T23:16:52.967Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4276, "blockHeight": 4276, "took": "5.60774ms"} -2023-12-15T23:16:53.637Z INFO sending PrepareRequest {"height": 4277, "view": 0} -2023-12-15T23:16:53.637Z INFO sending Commit {"height": 4277, "view": 0} -2023-12-15T23:16:53.637Z INFO approving block {"height": 4277, "hash": "d5df93b8e94a3fc073b65aa7d1f57729f1c90483fc51bbad1fa4f0951a6f0afc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "935de1582f0d7a61c30a5bca633bf322197451a8b5a6a1fd39d848ebd6fafed9"} -2023-12-15T23:16:53.639Z INFO initializing dbft {"height": 4278, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:53.640Z debug frostfs-node/morph.go:229 new block {"index": 4277} -2023-12-15T23:16:53.642Z info settlement/calls.go:106 start basic income distribution {"epoch": 18} -2023-12-15T23:16:53.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4277, "blockHeight": 4277, "took": "7.874942ms"} -2023-12-15T23:16:54.639Z INFO sending PrepareRequest {"height": 4278, "view": 0} -2023-12-15T23:16:54.639Z INFO sending Commit {"height": 4278, "view": 0} -2023-12-15T23:16:54.639Z INFO approving block {"height": 4278, "hash": "ebe63ee3f6411f482f36e306ce40a53411999c4d065e872a2327d925d1729329", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5df93b8e94a3fc073b65aa7d1f57729f1c90483fc51bbad1fa4f0951a6f0afc"} -2023-12-15T23:16:54.641Z INFO initializing dbft {"height": 4279, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:54.642Z debug frostfs-node/morph.go:229 new block {"index": 4278} -2023-12-15T23:16:54.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4278, "blockHeight": 4278, "took": "7.317194ms"} -2023-12-15T23:16:55.640Z INFO sending PrepareRequest {"height": 4279, "view": 0} -2023-12-15T23:16:55.640Z INFO sending Commit {"height": 4279, "view": 0} -2023-12-15T23:16:55.641Z INFO approving block {"height": 4279, "hash": "f567709896ca568b700abaa918fe759a3bd6b888e784762a29bfed5f7a5270d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebe63ee3f6411f482f36e306ce40a53411999c4d065e872a2327d925d1729329"} -2023-12-15T23:16:55.642Z INFO initializing dbft {"height": 4280, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:55.642Z debug frostfs-node/morph.go:229 new block {"index": 4279} -2023-12-15T23:16:55.971Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4279, "blockHeight": 4279, "took": "7.32755ms"} -2023-12-15T23:16:56.642Z INFO sending PrepareRequest {"height": 4280, "view": 0} -2023-12-15T23:16:56.642Z INFO sending Commit {"height": 4280, "view": 0} -2023-12-15T23:16:56.643Z INFO approving block {"height": 4280, "hash": "fac4d5d7c272d8bab7b19c4f869ab0d97360ae4015599ed45cd57bf126ff0b61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f567709896ca568b700abaa918fe759a3bd6b888e784762a29bfed5f7a5270d1"} -2023-12-15T23:16:56.644Z INFO initializing dbft {"height": 4281, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:56.645Z debug frostfs-node/morph.go:229 new block {"index": 4280} -2023-12-15T23:16:56.972Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4280, "blockHeight": 4280, "took": "7.590087ms"} -2023-12-15T23:16:57.645Z INFO sending PrepareRequest {"height": 4281, "view": 0} -2023-12-15T23:16:57.645Z INFO sending Commit {"height": 4281, "view": 0} -2023-12-15T23:16:57.646Z INFO approving block {"height": 4281, "hash": "0882041ac7c73adaabf7f6236b6cdaa619406aeaecd7d447b231a16044865607", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fac4d5d7c272d8bab7b19c4f869ab0d97360ae4015599ed45cd57bf126ff0b61"} -2023-12-15T23:16:57.648Z INFO initializing dbft {"height": 4282, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:57.649Z debug frostfs-node/morph.go:229 new block {"index": 4281} -2023-12-15T23:16:57.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4281, "blockHeight": 4281, "took": "8.740424ms"} -2023-12-15T23:16:58.647Z INFO sending PrepareRequest {"height": 4282, "view": 0} -2023-12-15T23:16:58.647Z INFO sending Commit {"height": 4282, "view": 0} -2023-12-15T23:16:58.647Z INFO approving block {"height": 4282, "hash": "a1f5cee51ce6078b3081fd5549b875ef6cd208962809e001897a5378df1897e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0882041ac7c73adaabf7f6236b6cdaa619406aeaecd7d447b231a16044865607"} -2023-12-15T23:16:58.649Z INFO initializing dbft {"height": 4283, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:58.650Z debug frostfs-node/morph.go:229 new block {"index": 4282} -2023-12-15T23:16:58.974Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4282, "blockHeight": 4282, "took": "6.851796ms"} -2023-12-15T23:16:59.649Z INFO sending PrepareRequest {"height": 4283, "view": 0} -2023-12-15T23:16:59.649Z INFO sending Commit {"height": 4283, "view": 0} -2023-12-15T23:16:59.649Z INFO approving block {"height": 4283, "hash": "524af51f07d9593f9b7c95df5efc59b9c4ec0bb849d46d7605e464ec494e41ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1f5cee51ce6078b3081fd5549b875ef6cd208962809e001897a5378df1897e1"} -2023-12-15T23:16:59.651Z INFO initializing dbft {"height": 4284, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:16:59.652Z debug frostfs-node/morph.go:229 new block {"index": 4283} -2023-12-15T23:16:59.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4283, "blockHeight": 4283, "took": "7.731275ms"} -2023-12-15T23:17:00.650Z INFO sending PrepareRequest {"height": 4284, "view": 0} -2023-12-15T23:17:00.651Z INFO sending Commit {"height": 4284, "view": 0} -2023-12-15T23:17:00.651Z INFO approving block {"height": 4284, "hash": "f8f637a2acac0e4f5689a2ec96663623017cf9ed0e32d7f30eee8b6ae1954eca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "524af51f07d9593f9b7c95df5efc59b9c4ec0bb849d46d7605e464ec494e41ab"} -2023-12-15T23:17:00.653Z INFO initializing dbft {"height": 4285, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:00.654Z debug frostfs-node/morph.go:229 new block {"index": 4284} -2023-12-15T23:17:00.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4284, "blockHeight": 4284, "took": "8.9071ms"} -2023-12-15T23:17:01.652Z INFO sending PrepareRequest {"height": 4285, "view": 0} -2023-12-15T23:17:01.653Z INFO sending Commit {"height": 4285, "view": 0} -2023-12-15T23:17:01.653Z INFO approving block {"height": 4285, "hash": "20d70a310e8d0bfed0aeac9e9c66dc542fa3bedb72c2d023de0e1c6234cf6d93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8f637a2acac0e4f5689a2ec96663623017cf9ed0e32d7f30eee8b6ae1954eca"} -2023-12-15T23:17:01.655Z INFO initializing dbft {"height": 4286, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:01.656Z debug frostfs-node/morph.go:229 new block {"index": 4285} -2023-12-15T23:17:01.980Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4285, "blockHeight": 4285, "took": "10.299013ms"} -2023-12-15T23:17:02.656Z INFO sending PrepareRequest {"height": 4286, "view": 0} -2023-12-15T23:17:02.656Z INFO sending Commit {"height": 4286, "view": 0} -2023-12-15T23:17:02.658Z INFO approving block {"height": 4286, "hash": "0cb6fe058f463809b3ab89bbaa18edac5d4f4b87cca82cb6c1c8dbe6ca48f6e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20d70a310e8d0bfed0aeac9e9c66dc542fa3bedb72c2d023de0e1c6234cf6d93"} -2023-12-15T23:17:02.662Z INFO initializing dbft {"height": 4287, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:02.663Z debug frostfs-node/morph.go:229 new block {"index": 4286} -2023-12-15T23:17:02.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4286, "blockHeight": 4286, "took": "7.236859ms"} -2023-12-15T23:17:03.659Z INFO sending PrepareRequest {"height": 4287, "view": 0} -2023-12-15T23:17:03.660Z INFO sending Commit {"height": 4287, "view": 0} -2023-12-15T23:17:03.660Z INFO approving block {"height": 4287, "hash": "757a4850458e5c65ac8fb423277da76cc66964f443294a16ce90ab98b81d07d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cb6fe058f463809b3ab89bbaa18edac5d4f4b87cca82cb6c1c8dbe6ca48f6e6"} -2023-12-15T23:17:03.661Z INFO initializing dbft {"height": 4288, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:03.662Z debug frostfs-node/morph.go:229 new block {"index": 4287} -2023-12-15T23:17:03.980Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4287, "blockHeight": 4287, "took": "8.968514ms"} -2023-12-15T23:17:04.662Z INFO sending PrepareRequest {"height": 4288, "view": 0} -2023-12-15T23:17:04.662Z INFO sending Commit {"height": 4288, "view": 0} -2023-12-15T23:17:04.662Z INFO approving block {"height": 4288, "hash": "dc0ecfe783663947e533bd2930c2d5d1cd4c246219b70f332543985066102f95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "757a4850458e5c65ac8fb423277da76cc66964f443294a16ce90ab98b81d07d5"} -2023-12-15T23:17:04.664Z INFO initializing dbft {"height": 4289, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:04.665Z debug frostfs-node/morph.go:229 new block {"index": 4288} -2023-12-15T23:17:04.979Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4288, "blockHeight": 4288, "took": "7.192199ms"} -2023-12-15T23:17:05.664Z INFO sending PrepareRequest {"height": 4289, "view": 0} -2023-12-15T23:17:05.664Z INFO sending Commit {"height": 4289, "view": 0} -2023-12-15T23:17:05.664Z INFO approving block {"height": 4289, "hash": "e3af7fabf08aa5d6da0249933ececf7281432e183bdebcab3018e129b6e4ea7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc0ecfe783663947e533bd2930c2d5d1cd4c246219b70f332543985066102f95"} -2023-12-15T23:17:05.666Z INFO initializing dbft {"height": 4290, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:05.667Z debug frostfs-node/morph.go:229 new block {"index": 4289} -2023-12-15T23:17:05.979Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4289, "blockHeight": 4289, "took": "6.579947ms"} -2023-12-15T23:17:06.666Z INFO sending PrepareRequest {"height": 4290, "view": 0} -2023-12-15T23:17:06.666Z INFO sending Commit {"height": 4290, "view": 0} -2023-12-15T23:17:06.667Z INFO approving block {"height": 4290, "hash": "0af3bbb61b00c782c5d79be02fa0c68c261fecdb0f0e3165ef6da2de7bba360a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3af7fabf08aa5d6da0249933ececf7281432e183bdebcab3018e129b6e4ea7a"} -2023-12-15T23:17:06.668Z INFO initializing dbft {"height": 4291, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:06.669Z debug frostfs-node/morph.go:229 new block {"index": 4290} -2023-12-15T23:17:06.983Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4290, "blockHeight": 4290, "took": "8.91528ms"} -2023-12-15T23:17:07.668Z INFO sending PrepareRequest {"height": 4291, "view": 0} -2023-12-15T23:17:07.668Z INFO sending Commit {"height": 4291, "view": 0} -2023-12-15T23:17:07.668Z INFO approving block {"height": 4291, "hash": "4be0a9325ff2b2b3365f29008ca3e5512e4a7bbab057e0ec943ee2fe1e12f9d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0af3bbb61b00c782c5d79be02fa0c68c261fecdb0f0e3165ef6da2de7bba360a"} -2023-12-15T23:17:07.671Z INFO initializing dbft {"height": 4292, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:07.673Z debug frostfs-node/morph.go:229 new block {"index": 4291} -2023-12-15T23:17:07.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4291, "blockHeight": 4291, "took": "8.003234ms"} -2023-12-15T23:17:08.670Z INFO sending PrepareRequest {"height": 4292, "view": 0} -2023-12-15T23:17:08.670Z INFO sending Commit {"height": 4292, "view": 0} -2023-12-15T23:17:08.670Z INFO approving block {"height": 4292, "hash": "8f9bd850e3fefe9e31bb78cecf0d83b2388d9592c5a4bf132ccd84f378a2a7a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4be0a9325ff2b2b3365f29008ca3e5512e4a7bbab057e0ec943ee2fe1e12f9d9"} -2023-12-15T23:17:08.672Z INFO initializing dbft {"height": 4293, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:08.673Z debug frostfs-node/morph.go:229 new block {"index": 4292} -2023-12-15T23:17:08.981Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4292, "blockHeight": 4292, "took": "6.206693ms"} -2023-12-15T23:17:09.672Z INFO sending PrepareRequest {"height": 4293, "view": 0} -2023-12-15T23:17:09.672Z INFO sending Commit {"height": 4293, "view": 0} -2023-12-15T23:17:09.672Z INFO approving block {"height": 4293, "hash": "258e6524c0655c899f6397b3ef3ec1ee924c4e0a3517ca0a64a63ad118945c9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f9bd850e3fefe9e31bb78cecf0d83b2388d9592c5a4bf132ccd84f378a2a7a2"} -2023-12-15T23:17:09.674Z INFO initializing dbft {"height": 4294, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:09.674Z debug frostfs-node/morph.go:229 new block {"index": 4293} -2023-12-15T23:17:09.983Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4293, "blockHeight": 4293, "took": "6.616495ms"} -2023-12-15T23:17:10.674Z INFO sending PrepareRequest {"height": 4294, "view": 0} -2023-12-15T23:17:10.674Z INFO sending Commit {"height": 4294, "view": 0} -2023-12-15T23:17:10.674Z INFO approving block {"height": 4294, "hash": "65992bfc1b576ec8f40cea12b2700b47f5ada8def73f15735cfda971fb28386a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "258e6524c0655c899f6397b3ef3ec1ee924c4e0a3517ca0a64a63ad118945c9c"} -2023-12-15T23:17:10.675Z INFO initializing dbft {"height": 4295, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:10.676Z debug frostfs-node/morph.go:229 new block {"index": 4294} -2023-12-15T23:17:10.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4294, "blockHeight": 4294, "took": "5.613474ms"} -2023-12-15T23:17:11.676Z INFO sending PrepareRequest {"height": 4295, "view": 0} -2023-12-15T23:17:11.676Z INFO sending Commit {"height": 4295, "view": 0} -2023-12-15T23:17:11.676Z INFO approving block {"height": 4295, "hash": "ae8ddaa1e69d8b51e1ac3cb543d4fd8724da9b251a822f74089bdfd10e86fa25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65992bfc1b576ec8f40cea12b2700b47f5ada8def73f15735cfda971fb28386a"} -2023-12-15T23:17:11.678Z INFO initializing dbft {"height": 4296, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:11.679Z debug frostfs-node/morph.go:229 new block {"index": 4295} -2023-12-15T23:17:11.985Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4295, "blockHeight": 4295, "took": "7.153858ms"} -2023-12-15T23:17:12.678Z INFO sending PrepareRequest {"height": 4296, "view": 0} -2023-12-15T23:17:12.678Z INFO sending Commit {"height": 4296, "view": 0} -2023-12-15T23:17:12.678Z INFO approving block {"height": 4296, "hash": "375436b6bb0e55d7c8f96b08a88d552e7b43950757a50a4c592aa06079be4fa4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae8ddaa1e69d8b51e1ac3cb543d4fd8724da9b251a822f74089bdfd10e86fa25"} -2023-12-15T23:17:12.680Z INFO initializing dbft {"height": 4297, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:12.681Z debug frostfs-node/morph.go:229 new block {"index": 4296} -2023-12-15T23:17:12.984Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4296, "blockHeight": 4296, "took": "5.624174ms"} -2023-12-15T23:17:13.679Z INFO sending PrepareRequest {"height": 4297, "view": 0} -2023-12-15T23:17:13.679Z INFO sending Commit {"height": 4297, "view": 0} -2023-12-15T23:17:13.680Z INFO approving block {"height": 4297, "hash": "bb5029a452b9d9856e0b1484313ed6d0a8c44a61bd19e3d6bbd1bb4cbae4482f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "375436b6bb0e55d7c8f96b08a88d552e7b43950757a50a4c592aa06079be4fa4"} -2023-12-15T23:17:13.680Z INFO initializing dbft {"height": 4298, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:13.681Z debug frostfs-node/morph.go:229 new block {"index": 4297} -2023-12-15T23:17:13.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4297, "blockHeight": 4297, "took": "7.283759ms"} -2023-12-15T23:17:14.681Z INFO sending PrepareRequest {"height": 4298, "view": 0} -2023-12-15T23:17:14.681Z INFO sending Commit {"height": 4298, "view": 0} -2023-12-15T23:17:14.681Z INFO approving block {"height": 4298, "hash": "73c7d3777793e06636d453ab64da37f92ae3fa4fdd905ce96bfdd3876dd67d69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb5029a452b9d9856e0b1484313ed6d0a8c44a61bd19e3d6bbd1bb4cbae4482f"} -2023-12-15T23:17:14.682Z INFO initializing dbft {"height": 4299, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:14.683Z debug frostfs-node/morph.go:229 new block {"index": 4298} -2023-12-15T23:17:14.988Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4298, "blockHeight": 4298, "took": "8.324752ms"} -2023-12-15T23:17:15.683Z INFO sending PrepareRequest {"height": 4299, "view": 0} -2023-12-15T23:17:15.683Z INFO sending Commit {"height": 4299, "view": 0} -2023-12-15T23:17:15.684Z INFO approving block {"height": 4299, "hash": "ef4d4c0ef366c0d4ef60e1973cf299002abb5b1cc3c0e3f8eb63ecddff1cd1ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73c7d3777793e06636d453ab64da37f92ae3fa4fdd905ce96bfdd3876dd67d69"} -2023-12-15T23:17:15.685Z INFO initializing dbft {"height": 4300, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:15.686Z debug frostfs-node/morph.go:229 new block {"index": 4299} -2023-12-15T23:17:15.990Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4299, "blockHeight": 4299, "took": "8.670378ms"} -2023-12-15T23:17:16.685Z INFO sending PrepareRequest {"height": 4300, "view": 0} -2023-12-15T23:17:16.685Z INFO sending Commit {"height": 4300, "view": 0} -2023-12-15T23:17:16.685Z INFO approving block {"height": 4300, "hash": "964a1eb6925abd566c9061d86b1cf927618ef3a79876c68e353b5946d3fa19f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef4d4c0ef366c0d4ef60e1973cf299002abb5b1cc3c0e3f8eb63ecddff1cd1ff"} -2023-12-15T23:17:16.687Z INFO initializing dbft {"height": 4301, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:16.688Z debug frostfs-node/morph.go:229 new block {"index": 4300} -2023-12-15T23:17:16.990Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4300, "blockHeight": 4300, "took": "7.492174ms"} -2023-12-15T23:17:17.687Z INFO sending PrepareRequest {"height": 4301, "view": 0} -2023-12-15T23:17:17.687Z INFO sending Commit {"height": 4301, "view": 0} -2023-12-15T23:17:17.687Z INFO approving block {"height": 4301, "hash": "7d8de19dd2cc3a87d547aef9fb32b9abc52079daede863017fce287a12e654aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "964a1eb6925abd566c9061d86b1cf927618ef3a79876c68e353b5946d3fa19f8"} -2023-12-15T23:17:17.689Z INFO initializing dbft {"height": 4302, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:17.690Z debug frostfs-node/morph.go:229 new block {"index": 4301} -2023-12-15T23:17:17.994Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4301, "blockHeight": 4301, "took": "11.04435ms"} -2023-12-15T23:17:18.689Z INFO sending PrepareRequest {"height": 4302, "view": 0} -2023-12-15T23:17:18.689Z INFO sending Commit {"height": 4302, "view": 0} -2023-12-15T23:17:18.689Z INFO approving block {"height": 4302, "hash": "a68d521c869a49c7c2ae863e865ad3e5a5678deb1eaa740dc682e8547e34854b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d8de19dd2cc3a87d547aef9fb32b9abc52079daede863017fce287a12e654aa"} -2023-12-15T23:17:18.690Z INFO initializing dbft {"height": 4303, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:18.691Z debug frostfs-node/morph.go:229 new block {"index": 4302} -2023-12-15T23:17:18.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4302, "blockHeight": 4302, "took": "7.920651ms"} -2023-12-15T23:17:19.690Z INFO sending PrepareRequest {"height": 4303, "view": 0} -2023-12-15T23:17:19.691Z INFO sending Commit {"height": 4303, "view": 0} -2023-12-15T23:17:19.691Z INFO approving block {"height": 4303, "hash": "b3928b7d0e935f622bc681c8cf23a3ca96401a310257341d38a3f4aa80828c24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a68d521c869a49c7c2ae863e865ad3e5a5678deb1eaa740dc682e8547e34854b"} -2023-12-15T23:17:19.693Z INFO initializing dbft {"height": 4304, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:19.694Z debug frostfs-node/morph.go:229 new block {"index": 4303} -2023-12-15T23:17:19.993Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4303, "blockHeight": 4303, "took": "7.89111ms"} -2023-12-15T23:17:20.692Z INFO sending PrepareRequest {"height": 4304, "view": 0} -2023-12-15T23:17:20.693Z INFO sending Commit {"height": 4304, "view": 0} -2023-12-15T23:17:20.693Z INFO approving block {"height": 4304, "hash": "99a6d376ff4c4d467cccf66bdf2f1f1e2cb6ff9d5442d5933677107ba052ff48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3928b7d0e935f622bc681c8cf23a3ca96401a310257341d38a3f4aa80828c24"} -2023-12-15T23:17:20.694Z INFO initializing dbft {"height": 4305, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:20.695Z debug frostfs-node/morph.go:229 new block {"index": 4304} -2023-12-15T23:17:20.994Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4304, "blockHeight": 4304, "took": "7.886507ms"} -2023-12-15T23:17:21.694Z INFO sending PrepareRequest {"height": 4305, "view": 0} -2023-12-15T23:17:21.694Z INFO sending Commit {"height": 4305, "view": 0} -2023-12-15T23:17:21.694Z INFO approving block {"height": 4305, "hash": "3816bf05a08847e9275ae04be8e49f8041c6d990245c5e76dfce6dadcf4a89b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99a6d376ff4c4d467cccf66bdf2f1f1e2cb6ff9d5442d5933677107ba052ff48"} -2023-12-15T23:17:21.695Z INFO initializing dbft {"height": 4306, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:21.696Z debug frostfs-node/morph.go:229 new block {"index": 4305} -2023-12-15T23:17:21.998Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4305, "blockHeight": 4305, "took": "10.486586ms"} -2023-12-15T23:17:22.695Z INFO sending PrepareRequest {"height": 4306, "view": 0} -2023-12-15T23:17:22.695Z INFO sending Commit {"height": 4306, "view": 0} -2023-12-15T23:17:22.696Z INFO approving block {"height": 4306, "hash": "ffc5f8d934a0978cefcc475584b92164ddfc6d97166b56bbdf23e83a24b1d03c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3816bf05a08847e9275ae04be8e49f8041c6d990245c5e76dfce6dadcf4a89b0"} -2023-12-15T23:17:22.697Z INFO initializing dbft {"height": 4307, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:22.698Z debug frostfs-node/morph.go:229 new block {"index": 4306} -2023-12-15T23:17:22.995Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4306, "blockHeight": 4306, "took": "6.342742ms"} -2023-12-15T23:17:23.697Z INFO sending PrepareRequest {"height": 4307, "view": 0} -2023-12-15T23:17:23.697Z INFO sending Commit {"height": 4307, "view": 0} -2023-12-15T23:17:23.697Z INFO approving block {"height": 4307, "hash": "ecad8bdb5c51698fa82f9179f86500367d35ece08164856be493c730908b83bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffc5f8d934a0978cefcc475584b92164ddfc6d97166b56bbdf23e83a24b1d03c"} -2023-12-15T23:17:23.698Z INFO initializing dbft {"height": 4308, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:23.699Z debug frostfs-node/morph.go:229 new block {"index": 4307} -2023-12-15T23:17:23.998Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4307, "blockHeight": 4307, "took": "8.495415ms"} -2023-12-15T23:17:24.698Z INFO sending PrepareRequest {"height": 4308, "view": 0} -2023-12-15T23:17:24.699Z INFO sending Commit {"height": 4308, "view": 0} -2023-12-15T23:17:24.699Z INFO approving block {"height": 4308, "hash": "bca30adf8c5367aa1f7c5d25902d7d6fa42f71139828d711c93c8d1de47456b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecad8bdb5c51698fa82f9179f86500367d35ece08164856be493c730908b83bf"} -2023-12-15T23:17:24.701Z INFO initializing dbft {"height": 4309, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:24.701Z debug frostfs-node/morph.go:229 new block {"index": 4308} -2023-12-15T23:17:24.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4308, "blockHeight": 4308, "took": "5.45488ms"} -2023-12-15T23:17:25.700Z INFO sending PrepareRequest {"height": 4309, "view": 0} -2023-12-15T23:17:25.700Z INFO sending Commit {"height": 4309, "view": 0} -2023-12-15T23:17:25.701Z INFO approving block {"height": 4309, "hash": "38f2a2f6565176d42a10f849dde0c950d418426c7687e5691555714f7e0211d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bca30adf8c5367aa1f7c5d25902d7d6fa42f71139828d711c93c8d1de47456b7"} -2023-12-15T23:17:25.704Z INFO initializing dbft {"height": 4310, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:25.704Z debug frostfs-node/morph.go:229 new block {"index": 4309} -2023-12-15T23:17:26.001Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4309, "blockHeight": 4309, "took": "9.807127ms"} -2023-12-15T23:17:26.702Z INFO sending PrepareRequest {"height": 4310, "view": 0} -2023-12-15T23:17:26.702Z INFO sending Commit {"height": 4310, "view": 0} -2023-12-15T23:17:26.703Z INFO approving block {"height": 4310, "hash": "1b66cec3c47049c5bc1ae3e94317bc0c052e329151c5ad94cb5e1e8205da1350", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38f2a2f6565176d42a10f849dde0c950d418426c7687e5691555714f7e0211d9"} -2023-12-15T23:17:26.705Z INFO initializing dbft {"height": 4311, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:26.705Z debug frostfs-node/morph.go:229 new block {"index": 4310} -2023-12-15T23:17:27.005Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4310, "blockHeight": 4310, "took": "12.360966ms"} -2023-12-15T23:17:27.704Z INFO sending PrepareRequest {"height": 4311, "view": 0} -2023-12-15T23:17:27.704Z INFO sending Commit {"height": 4311, "view": 0} -2023-12-15T23:17:27.705Z INFO approving block {"height": 4311, "hash": "49adcad9741a825ede819b3d664b312cd26510e7a99212687d25d6c146e6983d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b66cec3c47049c5bc1ae3e94317bc0c052e329151c5ad94cb5e1e8205da1350"} -2023-12-15T23:17:27.707Z INFO initializing dbft {"height": 4312, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:27.708Z debug frostfs-node/morph.go:229 new block {"index": 4311} -2023-12-15T23:17:28.006Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4311, "blockHeight": 4311, "took": "12.676076ms"} -2023-12-15T23:17:28.706Z INFO sending PrepareRequest {"height": 4312, "view": 0} -2023-12-15T23:17:28.706Z INFO sending Commit {"height": 4312, "view": 0} -2023-12-15T23:17:28.707Z INFO approving block {"height": 4312, "hash": "aac0a409ac269c1ae175067a72c8ac0cf7472b272c18bd9e65c2fb120a872953", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49adcad9741a825ede819b3d664b312cd26510e7a99212687d25d6c146e6983d"} -2023-12-15T23:17:28.708Z INFO initializing dbft {"height": 4313, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:28.709Z debug frostfs-node/morph.go:229 new block {"index": 4312} -2023-12-15T23:17:29.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4312, "blockHeight": 4312, "took": "8.469184ms"} -2023-12-15T23:17:29.708Z INFO sending PrepareRequest {"height": 4313, "view": 0} -2023-12-15T23:17:29.708Z INFO sending Commit {"height": 4313, "view": 0} -2023-12-15T23:17:29.708Z INFO approving block {"height": 4313, "hash": "613dddc21f161d30e7c63e8489db23ea9be7ec104ca2328b2fbbdd9680685724", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aac0a409ac269c1ae175067a72c8ac0cf7472b272c18bd9e65c2fb120a872953"} -2023-12-15T23:17:29.709Z INFO initializing dbft {"height": 4314, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:29.710Z debug frostfs-node/morph.go:229 new block {"index": 4313} -2023-12-15T23:17:30.010Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4313, "blockHeight": 4313, "took": "15.17008ms"} -2023-12-15T23:17:30.709Z INFO sending PrepareRequest {"height": 4314, "view": 0} -2023-12-15T23:17:30.709Z INFO sending Commit {"height": 4314, "view": 0} -2023-12-15T23:17:30.710Z INFO approving block {"height": 4314, "hash": "5e3f7b211d7e984f08479ede0290774d564a139eb66d1d36beefd3f25e51c03e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "613dddc21f161d30e7c63e8489db23ea9be7ec104ca2328b2fbbdd9680685724"} -2023-12-15T23:17:30.712Z INFO initializing dbft {"height": 4315, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:30.713Z debug frostfs-node/morph.go:229 new block {"index": 4314} -2023-12-15T23:17:31.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4314, "blockHeight": 4314, "took": "13.000616ms"} -2023-12-15T23:17:31.711Z INFO sending PrepareRequest {"height": 4315, "view": 0} -2023-12-15T23:17:31.712Z INFO sending Commit {"height": 4315, "view": 0} -2023-12-15T23:17:31.712Z INFO approving block {"height": 4315, "hash": "94918e1a65934637d46e0972458019e313ed1fae769a95a784f98fd0d79482a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e3f7b211d7e984f08479ede0290774d564a139eb66d1d36beefd3f25e51c03e"} -2023-12-15T23:17:31.715Z INFO initializing dbft {"height": 4316, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:31.715Z debug frostfs-node/morph.go:229 new block {"index": 4315} -2023-12-15T23:17:32.007Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4315, "blockHeight": 4315, "took": "9.539688ms"} -2023-12-15T23:17:32.713Z INFO sending PrepareRequest {"height": 4316, "view": 0} -2023-12-15T23:17:32.714Z INFO sending Commit {"height": 4316, "view": 0} -2023-12-15T23:17:32.714Z INFO approving block {"height": 4316, "hash": "d02c710bdcbc9daf4682f8d22bf2aca824a0849fae25ba7120069f08321da701", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94918e1a65934637d46e0972458019e313ed1fae769a95a784f98fd0d79482a1"} -2023-12-15T23:17:32.716Z INFO initializing dbft {"height": 4317, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:32.716Z debug frostfs-node/morph.go:229 new block {"index": 4316} -2023-12-15T23:17:33.006Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4316, "blockHeight": 4316, "took": "7.199824ms"} -2023-12-15T23:17:33.715Z INFO sending PrepareRequest {"height": 4317, "view": 0} -2023-12-15T23:17:33.715Z INFO sending Commit {"height": 4317, "view": 0} -2023-12-15T23:17:33.716Z INFO approving block {"height": 4317, "hash": "14a84e198a44425344e9de0c0f419e676f1d1c00f75dac3860c43f196f263c5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d02c710bdcbc9daf4682f8d22bf2aca824a0849fae25ba7120069f08321da701"} -2023-12-15T23:17:33.717Z INFO initializing dbft {"height": 4318, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:33.718Z debug frostfs-node/morph.go:229 new block {"index": 4317} -2023-12-15T23:17:33.722Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:17:33.727Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:17:33.728Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:17:34.007Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4317, "blockHeight": 4317, "took": "7.993132ms"} -2023-12-15T23:17:34.717Z INFO sending PrepareRequest {"height": 4318, "view": 0} -2023-12-15T23:17:34.717Z INFO sending Commit {"height": 4318, "view": 0} -2023-12-15T23:17:34.718Z INFO approving block {"height": 4318, "hash": "a31afcbc04c642a6471a8bb5c4a4929abbaedaa1cbfa68cc9752c1e7c9e1eb24", "tx_count": 2, "merkle": "ae411694e6eb7e5d291015add8690f4c38a2521e591bb5680018e7c8f7a85968", "prev": "14a84e198a44425344e9de0c0f419e676f1d1c00f75dac3860c43f196f263c5b"} -2023-12-15T23:17:34.719Z INFO runtime log {"tx": "f490b939bb9bad9439ba3f79df25adcda1545f1a553317978de7268094440707", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:17:34.719Z INFO runtime log {"tx": "f490b939bb9bad9439ba3f79df25adcda1545f1a553317978de7268094440707", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:17:34.725Z INFO initializing dbft {"height": 4319, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:34.728Z debug frostfs-node/morph.go:229 new block {"index": 4318} -2023-12-15T23:17:35.008Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4318, "blockHeight": 4318, "took": "8.444146ms"} -2023-12-15T23:17:35.719Z INFO sending PrepareRequest {"height": 4319, "view": 0} -2023-12-15T23:17:35.719Z INFO sending Commit {"height": 4319, "view": 0} -2023-12-15T23:17:35.719Z INFO approving block {"height": 4319, "hash": "4217196885e519539d3adfb6d0405a4bf33760669e6b08c07e2a210fbf58f27e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a31afcbc04c642a6471a8bb5c4a4929abbaedaa1cbfa68cc9752c1e7c9e1eb24"} -2023-12-15T23:17:35.721Z INFO initializing dbft {"height": 4320, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:35.721Z debug frostfs-node/morph.go:229 new block {"index": 4319} -2023-12-15T23:17:36.008Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4319, "blockHeight": 4319, "took": "7.303286ms"} -2023-12-15T23:17:36.721Z INFO sending PrepareRequest {"height": 4320, "view": 0} -2023-12-15T23:17:36.721Z INFO sending Commit {"height": 4320, "view": 0} -2023-12-15T23:17:36.722Z INFO approving block {"height": 4320, "hash": "32eca2acc35674e164d955e7c7df55c1cf8f329398a3bb26821756810f7f7a80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4217196885e519539d3adfb6d0405a4bf33760669e6b08c07e2a210fbf58f27e"} -2023-12-15T23:17:36.723Z INFO initializing dbft {"height": 4321, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:36.724Z debug frostfs-node/morph.go:229 new block {"index": 4320} -2023-12-15T23:17:37.010Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4320, "blockHeight": 4320, "took": "7.947581ms"} -2023-12-15T23:17:37.723Z INFO sending PrepareRequest {"height": 4321, "view": 0} -2023-12-15T23:17:37.723Z INFO sending Commit {"height": 4321, "view": 0} -2023-12-15T23:17:37.724Z INFO approving block {"height": 4321, "hash": "0c95bd61fceb00a82168c099d367a81b40565d9f8d9b86de4d17842b61f8d834", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32eca2acc35674e164d955e7c7df55c1cf8f329398a3bb26821756810f7f7a80"} -2023-12-15T23:17:37.725Z INFO initializing dbft {"height": 4322, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:37.726Z debug frostfs-node/morph.go:229 new block {"index": 4321} -2023-12-15T23:17:38.010Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4321, "blockHeight": 4321, "took": "7.791845ms"} -2023-12-15T23:17:38.725Z INFO sending PrepareRequest {"height": 4322, "view": 0} -2023-12-15T23:17:38.725Z INFO sending Commit {"height": 4322, "view": 0} -2023-12-15T23:17:38.726Z INFO approving block {"height": 4322, "hash": "53e170a551dcf5552bfd12455612f2f6b4e779d3578f2b2ceac70eb0d4f36f17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c95bd61fceb00a82168c099d367a81b40565d9f8d9b86de4d17842b61f8d834"} -2023-12-15T23:17:38.727Z INFO initializing dbft {"height": 4323, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:38.728Z debug frostfs-node/morph.go:229 new block {"index": 4322} -2023-12-15T23:17:39.013Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4322, "blockHeight": 4322, "took": "9.125286ms"} -2023-12-15T23:17:39.727Z INFO sending PrepareRequest {"height": 4323, "view": 0} -2023-12-15T23:17:39.727Z INFO sending Commit {"height": 4323, "view": 0} -2023-12-15T23:17:39.728Z INFO approving block {"height": 4323, "hash": "c88941dd33718d0a4f293393efe0e4e992aa7d7a46731a7ad93372995b085e77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53e170a551dcf5552bfd12455612f2f6b4e779d3578f2b2ceac70eb0d4f36f17"} -2023-12-15T23:17:39.729Z INFO initializing dbft {"height": 4324, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:39.729Z debug frostfs-node/morph.go:229 new block {"index": 4323} -2023-12-15T23:17:40.017Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4323, "blockHeight": 4323, "took": "12.343567ms"} -2023-12-15T23:17:40.728Z INFO sending PrepareRequest {"height": 4324, "view": 0} -2023-12-15T23:17:40.729Z INFO sending Commit {"height": 4324, "view": 0} -2023-12-15T23:17:40.729Z INFO approving block {"height": 4324, "hash": "70c27efc7dbddd2f452204a33b91970f6def36279eb71c7d15d493a94f892b0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c88941dd33718d0a4f293393efe0e4e992aa7d7a46731a7ad93372995b085e77"} -2023-12-15T23:17:40.730Z INFO initializing dbft {"height": 4325, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:40.731Z debug frostfs-node/morph.go:229 new block {"index": 4324} -2023-12-15T23:17:41.011Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4324, "blockHeight": 4324, "took": "5.232716ms"} -2023-12-15T23:17:41.730Z INFO sending PrepareRequest {"height": 4325, "view": 0} -2023-12-15T23:17:41.730Z INFO sending Commit {"height": 4325, "view": 0} -2023-12-15T23:17:41.731Z INFO approving block {"height": 4325, "hash": "9e0df444e13864ad5dbf8ca96774f1f3ba1ccb7d20451cce8956261a589f506e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70c27efc7dbddd2f452204a33b91970f6def36279eb71c7d15d493a94f892b0b"} -2023-12-15T23:17:41.733Z INFO initializing dbft {"height": 4326, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:41.733Z debug frostfs-node/morph.go:229 new block {"index": 4325} -2023-12-15T23:17:42.012Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4325, "blockHeight": 4325, "took": "6.233241ms"} -2023-12-15T23:17:42.732Z INFO sending PrepareRequest {"height": 4326, "view": 0} -2023-12-15T23:17:42.732Z INFO sending Commit {"height": 4326, "view": 0} -2023-12-15T23:17:42.732Z INFO approving block {"height": 4326, "hash": "81e12e0f9d64ed79ec879356025a28e6e7b1062a1365f1a6aab063ae88ee6b01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e0df444e13864ad5dbf8ca96774f1f3ba1ccb7d20451cce8956261a589f506e"} -2023-12-15T23:17:42.733Z INFO initializing dbft {"height": 4327, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:42.734Z debug frostfs-node/morph.go:229 new block {"index": 4326} -2023-12-15T23:17:43.013Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4326, "blockHeight": 4326, "took": "5.600813ms"} -2023-12-15T23:17:43.734Z INFO sending PrepareRequest {"height": 4327, "view": 0} -2023-12-15T23:17:43.734Z INFO sending Commit {"height": 4327, "view": 0} -2023-12-15T23:17:43.734Z INFO approving block {"height": 4327, "hash": "44610403df893fbae5067637d3d7ee6361509fc37d9aa4ae87e9b9e34fa81631", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81e12e0f9d64ed79ec879356025a28e6e7b1062a1365f1a6aab063ae88ee6b01"} -2023-12-15T23:17:43.736Z INFO initializing dbft {"height": 4328, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:43.737Z debug frostfs-node/morph.go:229 new block {"index": 4327} -2023-12-15T23:17:44.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4327, "blockHeight": 4327, "took": "6.905981ms"} -2023-12-15T23:17:44.735Z INFO sending PrepareRequest {"height": 4328, "view": 0} -2023-12-15T23:17:44.735Z INFO sending Commit {"height": 4328, "view": 0} -2023-12-15T23:17:44.736Z INFO approving block {"height": 4328, "hash": "6c846339c92d70aee2e3511a6361b7b4f1fa9cdea839e090d644aa10b49313f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44610403df893fbae5067637d3d7ee6361509fc37d9aa4ae87e9b9e34fa81631"} -2023-12-15T23:17:44.737Z INFO initializing dbft {"height": 4329, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:44.738Z debug frostfs-node/morph.go:229 new block {"index": 4328} -2023-12-15T23:17:45.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4328, "blockHeight": 4328, "took": "6.54679ms"} -2023-12-15T23:17:45.737Z INFO sending PrepareRequest {"height": 4329, "view": 0} -2023-12-15T23:17:45.737Z INFO sending Commit {"height": 4329, "view": 0} -2023-12-15T23:17:45.738Z INFO approving block {"height": 4329, "hash": "d7aa5ac0606965c6a053aaedb50c2e9352dd05aa9dc984f4e5106472f8f15e3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c846339c92d70aee2e3511a6361b7b4f1fa9cdea839e090d644aa10b49313f1"} -2023-12-15T23:17:45.740Z INFO initializing dbft {"height": 4330, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:45.741Z debug frostfs-node/morph.go:229 new block {"index": 4329} -2023-12-15T23:17:46.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4329, "blockHeight": 4329, "took": "9.53629ms"} -2023-12-15T23:17:46.739Z INFO sending PrepareRequest {"height": 4330, "view": 0} -2023-12-15T23:17:46.739Z INFO sending Commit {"height": 4330, "view": 0} -2023-12-15T23:17:46.740Z INFO approving block {"height": 4330, "hash": "f4d084d481e81dcc47dc5e2ad60b48f7ffe1c672320d6e751b1e8faccda23ac7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7aa5ac0606965c6a053aaedb50c2e9352dd05aa9dc984f4e5106472f8f15e3d"} -2023-12-15T23:17:46.742Z INFO initializing dbft {"height": 4331, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:46.743Z debug frostfs-node/morph.go:229 new block {"index": 4330} -2023-12-15T23:17:47.017Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4330, "blockHeight": 4330, "took": "7.384645ms"} -2023-12-15T23:17:47.741Z INFO sending PrepareRequest {"height": 4331, "view": 0} -2023-12-15T23:17:47.741Z INFO sending Commit {"height": 4331, "view": 0} -2023-12-15T23:17:47.742Z INFO approving block {"height": 4331, "hash": "010576eebefee06ba70a612fedd61e12e9699433d9454c98179b02b8daaf527d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4d084d481e81dcc47dc5e2ad60b48f7ffe1c672320d6e751b1e8faccda23ac7"} -2023-12-15T23:17:47.744Z INFO initializing dbft {"height": 4332, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:47.744Z debug frostfs-node/morph.go:229 new block {"index": 4331} -2023-12-15T23:17:48.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4331, "blockHeight": 4331, "took": "7.246881ms"} -2023-12-15T23:17:48.743Z INFO sending PrepareRequest {"height": 4332, "view": 0} -2023-12-15T23:17:48.743Z INFO sending Commit {"height": 4332, "view": 0} -2023-12-15T23:17:48.744Z INFO approving block {"height": 4332, "hash": "e848154d3b0b4094e53b414214c336381d9a9ca0ecb4a593a7e5eda2b3b3516b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "010576eebefee06ba70a612fedd61e12e9699433d9454c98179b02b8daaf527d"} -2023-12-15T23:17:48.745Z INFO initializing dbft {"height": 4333, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:48.746Z debug frostfs-node/morph.go:229 new block {"index": 4332} -2023-12-15T23:17:49.017Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4332, "blockHeight": 4332, "took": "5.594123ms"} -2023-12-15T23:17:49.745Z INFO sending PrepareRequest {"height": 4333, "view": 0} -2023-12-15T23:17:49.745Z INFO sending Commit {"height": 4333, "view": 0} -2023-12-15T23:17:49.746Z INFO approving block {"height": 4333, "hash": "5217efff2f7e49af95829305b90b00e026ed52f7a72ae74d510dbcd6c49431fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e848154d3b0b4094e53b414214c336381d9a9ca0ecb4a593a7e5eda2b3b3516b"} -2023-12-15T23:17:49.747Z INFO initializing dbft {"height": 4334, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:49.748Z debug frostfs-node/morph.go:229 new block {"index": 4333} -2023-12-15T23:17:50.019Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4333, "blockHeight": 4333, "took": "6.476794ms"} -2023-12-15T23:17:50.747Z INFO sending PrepareRequest {"height": 4334, "view": 0} -2023-12-15T23:17:50.748Z INFO sending Commit {"height": 4334, "view": 0} -2023-12-15T23:17:50.748Z INFO approving block {"height": 4334, "hash": "b2923c60f79ab41605943f9a65962cb5c5f489df335720cbd83c3813a9c4a160", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5217efff2f7e49af95829305b90b00e026ed52f7a72ae74d510dbcd6c49431fd"} -2023-12-15T23:17:50.750Z INFO initializing dbft {"height": 4335, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:50.751Z debug frostfs-node/morph.go:229 new block {"index": 4334} -2023-12-15T23:17:51.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4334, "blockHeight": 4334, "took": "9.329928ms"} -2023-12-15T23:17:51.749Z INFO sending PrepareRequest {"height": 4335, "view": 0} -2023-12-15T23:17:51.750Z INFO sending Commit {"height": 4335, "view": 0} -2023-12-15T23:17:51.750Z INFO approving block {"height": 4335, "hash": "9e921a7cd7177e5c573d601fe1c9f6374b934653d976aa042071cdab22da1af4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2923c60f79ab41605943f9a65962cb5c5f489df335720cbd83c3813a9c4a160"} -2023-12-15T23:17:51.751Z INFO initializing dbft {"height": 4336, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:51.752Z debug frostfs-node/morph.go:229 new block {"index": 4335} -2023-12-15T23:17:52.021Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4335, "blockHeight": 4335, "took": "7.367084ms"} -2023-12-15T23:17:52.752Z INFO sending PrepareRequest {"height": 4336, "view": 0} -2023-12-15T23:17:52.752Z INFO sending Commit {"height": 4336, "view": 0} -2023-12-15T23:17:52.753Z INFO approving block {"height": 4336, "hash": "86bc1c50b10e8b9c378dce0abb97d0fd9a0a250513e9a6b23d35749dfa2d0b40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e921a7cd7177e5c573d601fe1c9f6374b934653d976aa042071cdab22da1af4"} -2023-12-15T23:17:52.756Z INFO initializing dbft {"height": 4337, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:52.757Z debug frostfs-node/morph.go:229 new block {"index": 4336} -2023-12-15T23:17:52.765Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 18, "iteration": 3, "error": "no data for 2 iteration in 18 epoch for consumers's trusts"} -2023-12-15T23:17:53.024Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4336, "blockHeight": 4336, "took": "8.29761ms"} -2023-12-15T23:17:53.755Z INFO sending PrepareRequest {"height": 4337, "view": 0} -2023-12-15T23:17:53.755Z INFO sending Commit {"height": 4337, "view": 0} -2023-12-15T23:17:53.756Z INFO approving block {"height": 4337, "hash": "73658f9c0e20013ca38d2f2edb64ff596c27981df9b165e69d62ea9270f312ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86bc1c50b10e8b9c378dce0abb97d0fd9a0a250513e9a6b23d35749dfa2d0b40"} -2023-12-15T23:17:53.757Z INFO initializing dbft {"height": 4338, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:53.758Z debug frostfs-node/morph.go:229 new block {"index": 4337} -2023-12-15T23:17:53.761Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:17:53.768Z INFO runtime log {"tx": "b48e8f9aedd7de5c6ad6552fccc9a926351cc9f22a0da1c20644c3c4f02f852b", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:17:54.027Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4337, "blockHeight": 4337, "took": "11.399037ms"} -2023-12-15T23:17:54.757Z INFO sending PrepareRequest {"height": 4338, "view": 0} -2023-12-15T23:17:54.757Z INFO sending Commit {"height": 4338, "view": 0} -2023-12-15T23:17:54.758Z INFO approving block {"height": 4338, "hash": "69ec7d5fb8f33f1eb284555b6091d1bcc319b8f90140f92fd595e57d605d92bc", "tx_count": 1, "merkle": "b80432aa231117589e0ac3def5623a5add49556d203130aa429107ba51a9689a", "prev": "73658f9c0e20013ca38d2f2edb64ff596c27981df9b165e69d62ea9270f312ba"} -2023-12-15T23:17:54.759Z INFO runtime log {"tx": "9a68a951ba079142aa3031206d5549dd5a3a62f5dec30a9e58171123aa3204b8", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:17:54.761Z INFO initializing dbft {"height": 4339, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:54.762Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 20} -2023-12-15T23:17:54.762Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:17:54.762Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T23:17:54.762Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:17:54.762Z debug controller/calls.go:95 starting to report local trust values {"epoch": 19} -2023-12-15T23:17:54.762Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 19} -2023-12-15T23:17:54.762Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 20} -2023-12-15T23:17:54.762Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 20} -2023-12-15T23:17:54.762Z debug frostfs-node/morph.go:229 new block {"index": 4338} -2023-12-15T23:17:54.762Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 20} -2023-12-15T23:17:54.763Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 20} -2023-12-15T23:17:54.767Z debug controller/calls.go:146 reporting successfully finished {"epoch": 19} -2023-12-15T23:17:54.768Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 19} -2023-12-15T23:17:54.770Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:17:54.773Z INFO runtime log {"tx": "907094f823d95850b82e9e4992f74bbf8086e03990eb9f8b95c4670904c0ca80", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:17:54.782Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 4341, "tx_hash": "9d23d711b7dc3b40e15cd5daacbbffcaca2896973f68920e43703c1dad818696"} -2023-12-15T23:17:54.789Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:17:54.789Z info audit/handlers.go:13 new round of audit {"epoch": 20} -2023-12-15T23:17:54.789Z info settlement/calls.go:26 new audit settlement event {"epoch": 20} -2023-12-15T23:17:54.790Z info settlement/handlers.go:14 process audit settlements {"epoch": 20} -2023-12-15T23:17:54.790Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 20} -2023-12-15T23:17:54.792Z info settlement/handlers.go:18 audit processing finished {"epoch": 20} -2023-12-15T23:17:54.794Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 4400, "fallback_valid_for": 40, "tx_hash": "d18a9537a109087f90f36e75a4700cc58ec1f805b84ab62ecdab30e1af4a865d"} -2023-12-15T23:17:54.794Z info audit/process.go:39 select containers for audit {"epoch": 20, "amount": 0} -2023-12-15T23:17:54.798Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T23:17:54.799Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 4341, "tx_hash": "53f639b0b7cc9c91495fd36f5567a53541764c87b4c93e82dc14701d2580be1a"} -2023-12-15T23:17:55.027Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 4338, "blockHeight": 4338, "took": "10.253299ms"} -2023-12-15T23:17:55.759Z INFO sending PrepareRequest {"height": 4339, "view": 0} -2023-12-15T23:17:55.760Z INFO sending Commit {"height": 4339, "view": 0} -2023-12-15T23:17:55.760Z INFO approving block {"height": 4339, "hash": "1c361924a48ac466625719c4cf1962c8e42268f13f5b0e6878e492abc2935971", "tx_count": 3, "merkle": "ff0b2b9dabc2f3a93fe6f93d5c9b11ab913e3b5b752c35e07bb4e31a96fe8444", "prev": "69ec7d5fb8f33f1eb284555b6091d1bcc319b8f90140f92fd595e57d605d92bc"} -2023-12-15T23:17:55.761Z INFO runtime log {"tx": "cfa16851004a84ee3bd506d4db3df32214a5abf8e21ed53df2be62968364cb8a", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:17:55.764Z INFO initializing dbft {"height": 4340, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:55.765Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 19} -2023-12-15T23:17:55.765Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 19} -2023-12-15T23:17:55.765Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 19} -2023-12-15T23:17:55.767Z debug frostfs-node/morph.go:229 new block {"index": 4339} -2023-12-15T23:17:56.032Z INFO persisted to disk {"blocks": 1, "keys": 58, "headerHeight": 4339, "blockHeight": 4339, "took": "14.292618ms"} -2023-12-15T23:17:56.761Z INFO sending PrepareRequest {"height": 4340, "view": 0} -2023-12-15T23:17:56.761Z INFO sending Commit {"height": 4340, "view": 0} -2023-12-15T23:17:56.762Z INFO approving block {"height": 4340, "hash": "58e819fa4787fbb347a3d39c32c097f55d13fe52b24206b784aa47763cfc93db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c361924a48ac466625719c4cf1962c8e42268f13f5b0e6878e492abc2935971"} -2023-12-15T23:17:56.763Z INFO initializing dbft {"height": 4341, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:56.764Z debug frostfs-node/morph.go:229 new block {"index": 4340} -2023-12-15T23:17:57.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4340, "blockHeight": 4340, "took": "8.456146ms"} -2023-12-15T23:17:57.763Z INFO sending PrepareRequest {"height": 4341, "view": 0} -2023-12-15T23:17:57.763Z INFO sending Commit {"height": 4341, "view": 0} -2023-12-15T23:17:57.763Z INFO approving block {"height": 4341, "hash": "f039f598d59d54d7054bf54bb63c88d20b5cbbc852842321b5c92fed98db6146", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58e819fa4787fbb347a3d39c32c097f55d13fe52b24206b784aa47763cfc93db"} -2023-12-15T23:17:57.765Z INFO initializing dbft {"height": 4342, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:57.766Z debug frostfs-node/morph.go:229 new block {"index": 4341} -2023-12-15T23:17:58.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4341, "blockHeight": 4341, "took": "7.400627ms"} -2023-12-15T23:17:58.764Z INFO sending PrepareRequest {"height": 4342, "view": 0} -2023-12-15T23:17:58.765Z INFO sending Commit {"height": 4342, "view": 0} -2023-12-15T23:17:58.765Z INFO approving block {"height": 4342, "hash": "eff13c9fcf95cd5ad70f5eff736ffd4957f5433f0f218dfd0b9938308c8dd641", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f039f598d59d54d7054bf54bb63c88d20b5cbbc852842321b5c92fed98db6146"} -2023-12-15T23:17:58.767Z INFO initializing dbft {"height": 4343, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:58.768Z debug frostfs-node/morph.go:229 new block {"index": 4342} -2023-12-15T23:17:59.027Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4342, "blockHeight": 4342, "took": "7.296083ms"} -2023-12-15T23:17:59.767Z INFO sending PrepareRequest {"height": 4343, "view": 0} -2023-12-15T23:17:59.767Z INFO sending Commit {"height": 4343, "view": 0} -2023-12-15T23:17:59.767Z INFO approving block {"height": 4343, "hash": "542f766e484b8ca4c80f2ad1b39629c386dc59e651e5fc820cf465626eeef5e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eff13c9fcf95cd5ad70f5eff736ffd4957f5433f0f218dfd0b9938308c8dd641"} -2023-12-15T23:17:59.770Z INFO initializing dbft {"height": 4344, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:17:59.771Z debug frostfs-node/morph.go:229 new block {"index": 4343} -2023-12-15T23:18:00.029Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4343, "blockHeight": 4343, "took": "7.959599ms"} -2023-12-15T23:18:00.769Z INFO sending PrepareRequest {"height": 4344, "view": 0} -2023-12-15T23:18:00.770Z INFO sending Commit {"height": 4344, "view": 0} -2023-12-15T23:18:00.770Z INFO approving block {"height": 4344, "hash": "26c087795ffe4abdd7678b25b29ac68b5106a720a59e9d5e595778c0d865927b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "542f766e484b8ca4c80f2ad1b39629c386dc59e651e5fc820cf465626eeef5e6"} -2023-12-15T23:18:00.773Z INFO initializing dbft {"height": 4345, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:00.774Z debug frostfs-node/morph.go:229 new block {"index": 4344} -2023-12-15T23:18:01.029Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4344, "blockHeight": 4344, "took": "7.390996ms"} -2023-12-15T23:18:01.772Z INFO sending PrepareRequest {"height": 4345, "view": 0} -2023-12-15T23:18:01.772Z INFO sending Commit {"height": 4345, "view": 0} -2023-12-15T23:18:01.772Z INFO approving block {"height": 4345, "hash": "eb5e6472b5ad0b24adcbe515aaee701cca9e890477ef5cbdef982aef21d8f9ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26c087795ffe4abdd7678b25b29ac68b5106a720a59e9d5e595778c0d865927b"} -2023-12-15T23:18:01.774Z INFO initializing dbft {"height": 4346, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:01.775Z debug frostfs-node/morph.go:229 new block {"index": 4345} -2023-12-15T23:18:02.032Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4345, "blockHeight": 4345, "took": "8.925951ms"} -2023-12-15T23:18:02.773Z INFO sending PrepareRequest {"height": 4346, "view": 0} -2023-12-15T23:18:02.774Z INFO sending Commit {"height": 4346, "view": 0} -2023-12-15T23:18:02.774Z INFO approving block {"height": 4346, "hash": "dda7e38078396cbf46c736b1ca2fd687a79357023ec88679761efd5f5d7cccc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb5e6472b5ad0b24adcbe515aaee701cca9e890477ef5cbdef982aef21d8f9ad"} -2023-12-15T23:18:02.775Z INFO initializing dbft {"height": 4347, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:02.776Z debug frostfs-node/morph.go:229 new block {"index": 4346} -2023-12-15T23:18:03.029Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4346, "blockHeight": 4346, "took": "5.827621ms"} -2023-12-15T23:18:03.775Z INFO sending PrepareRequest {"height": 4347, "view": 0} -2023-12-15T23:18:03.776Z INFO sending Commit {"height": 4347, "view": 0} -2023-12-15T23:18:03.776Z INFO approving block {"height": 4347, "hash": "d4215acb5e07024cad3be929454af628caa86a5b7e5ff74afd769929db9afe7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dda7e38078396cbf46c736b1ca2fd687a79357023ec88679761efd5f5d7cccc4"} -2023-12-15T23:18:03.778Z INFO initializing dbft {"height": 4348, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:03.779Z debug frostfs-node/morph.go:229 new block {"index": 4347} -2023-12-15T23:18:04.034Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4347, "blockHeight": 4347, "took": "9.592479ms"} -2023-12-15T23:18:04.777Z INFO sending PrepareRequest {"height": 4348, "view": 0} -2023-12-15T23:18:04.778Z INFO sending Commit {"height": 4348, "view": 0} -2023-12-15T23:18:04.778Z INFO approving block {"height": 4348, "hash": "239a7306392f16e06a4c72b74c13ad679220313192aa5073dd097dfe4b8199fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4215acb5e07024cad3be929454af628caa86a5b7e5ff74afd769929db9afe7a"} -2023-12-15T23:18:04.780Z INFO initializing dbft {"height": 4349, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:04.781Z debug frostfs-node/morph.go:229 new block {"index": 4348} -2023-12-15T23:18:05.036Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4348, "blockHeight": 4348, "took": "10.179556ms"} -2023-12-15T23:18:05.780Z INFO sending PrepareRequest {"height": 4349, "view": 0} -2023-12-15T23:18:05.780Z INFO sending Commit {"height": 4349, "view": 0} -2023-12-15T23:18:05.781Z INFO approving block {"height": 4349, "hash": "33bd11c2bf2ba28a274618022ac10f4c002366357a8ac2a7f1ed3f7a5e81f33f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "239a7306392f16e06a4c72b74c13ad679220313192aa5073dd097dfe4b8199fe"} -2023-12-15T23:18:05.783Z INFO initializing dbft {"height": 4350, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:05.784Z debug frostfs-node/morph.go:229 new block {"index": 4349} -2023-12-15T23:18:06.033Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4349, "blockHeight": 4349, "took": "7.250092ms"} -2023-12-15T23:18:06.782Z INFO sending PrepareRequest {"height": 4350, "view": 0} -2023-12-15T23:18:06.782Z INFO sending Commit {"height": 4350, "view": 0} -2023-12-15T23:18:06.783Z INFO approving block {"height": 4350, "hash": "2511b1276775715ad672caeb4ce2046d61a30d20ad5dadb9bb7a6f8d7a5501a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33bd11c2bf2ba28a274618022ac10f4c002366357a8ac2a7f1ed3f7a5e81f33f"} -2023-12-15T23:18:06.785Z INFO initializing dbft {"height": 4351, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:06.786Z debug frostfs-node/morph.go:229 new block {"index": 4350} -2023-12-15T23:18:07.034Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4350, "blockHeight": 4350, "took": "6.882993ms"} -2023-12-15T23:18:07.784Z INFO sending PrepareRequest {"height": 4351, "view": 0} -2023-12-15T23:18:07.784Z INFO sending Commit {"height": 4351, "view": 0} -2023-12-15T23:18:07.785Z INFO approving block {"height": 4351, "hash": "277848c4531b28360090c68491fc6ef5c6d97b93e8330470b899fda1d0ca6578", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2511b1276775715ad672caeb4ce2046d61a30d20ad5dadb9bb7a6f8d7a5501a2"} -2023-12-15T23:18:07.787Z INFO initializing dbft {"height": 4352, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:07.787Z debug frostfs-node/morph.go:229 new block {"index": 4351} -2023-12-15T23:18:08.038Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4351, "blockHeight": 4351, "took": "9.798354ms"} -2023-12-15T23:18:08.786Z INFO sending PrepareRequest {"height": 4352, "view": 0} -2023-12-15T23:18:08.787Z INFO sending Commit {"height": 4352, "view": 0} -2023-12-15T23:18:08.787Z INFO approving block {"height": 4352, "hash": "56f01f57a5db89ff8e4a9ffaed13c514c377beab85494d77afc75be33d910377", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "277848c4531b28360090c68491fc6ef5c6d97b93e8330470b899fda1d0ca6578"} -2023-12-15T23:18:08.789Z INFO initializing dbft {"height": 4353, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:08.790Z debug frostfs-node/morph.go:229 new block {"index": 4352} -2023-12-15T23:18:09.039Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4352, "blockHeight": 4352, "took": "8.640696ms"} -2023-12-15T23:18:09.788Z INFO sending PrepareRequest {"height": 4353, "view": 0} -2023-12-15T23:18:09.788Z INFO sending Commit {"height": 4353, "view": 0} -2023-12-15T23:18:09.788Z INFO approving block {"height": 4353, "hash": "2f4a4e93fe2cca0b1ea26576abfe9c0c1be599e2244bdb43f4cb713fbf7bdacf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56f01f57a5db89ff8e4a9ffaed13c514c377beab85494d77afc75be33d910377"} -2023-12-15T23:18:09.790Z INFO initializing dbft {"height": 4354, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:09.791Z debug frostfs-node/morph.go:229 new block {"index": 4353} -2023-12-15T23:18:10.037Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4353, "blockHeight": 4353, "took": "5.670784ms"} -2023-12-15T23:18:10.790Z INFO sending PrepareRequest {"height": 4354, "view": 0} -2023-12-15T23:18:10.790Z INFO sending Commit {"height": 4354, "view": 0} -2023-12-15T23:18:10.790Z INFO approving block {"height": 4354, "hash": "3db5fe7d9112a2981e33b4df969ba77bbc20f5038ebbf48d33fe9b4535773d90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f4a4e93fe2cca0b1ea26576abfe9c0c1be599e2244bdb43f4cb713fbf7bdacf"} -2023-12-15T23:18:10.792Z INFO initializing dbft {"height": 4355, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:10.793Z debug frostfs-node/morph.go:229 new block {"index": 4354} -2023-12-15T23:18:11.039Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4354, "blockHeight": 4354, "took": "6.700003ms"} -2023-12-15T23:18:11.792Z INFO sending PrepareRequest {"height": 4355, "view": 0} -2023-12-15T23:18:11.792Z INFO sending Commit {"height": 4355, "view": 0} -2023-12-15T23:18:11.792Z INFO approving block {"height": 4355, "hash": "a6647e9613713cc91a786bcf49865206dc60fefe0d8fdbec06ccaa81158b2851", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3db5fe7d9112a2981e33b4df969ba77bbc20f5038ebbf48d33fe9b4535773d90"} -2023-12-15T23:18:11.799Z INFO initializing dbft {"height": 4356, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:11.800Z debug frostfs-node/morph.go:229 new block {"index": 4355} -2023-12-15T23:18:12.041Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4355, "blockHeight": 4355, "took": "8.201391ms"} -2023-12-15T23:18:12.794Z INFO sending PrepareRequest {"height": 4356, "view": 0} -2023-12-15T23:18:12.794Z INFO sending Commit {"height": 4356, "view": 0} -2023-12-15T23:18:12.795Z INFO approving block {"height": 4356, "hash": "424b695c881bb016692c934a1da27f7bf42c102e14797add0844438c6545237b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6647e9613713cc91a786bcf49865206dc60fefe0d8fdbec06ccaa81158b2851"} -2023-12-15T23:18:12.797Z INFO initializing dbft {"height": 4357, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:12.798Z debug frostfs-node/morph.go:229 new block {"index": 4356} -2023-12-15T23:18:13.040Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4356, "blockHeight": 4356, "took": "6.56141ms"} -2023-12-15T23:18:13.796Z INFO sending PrepareRequest {"height": 4357, "view": 0} -2023-12-15T23:18:13.796Z INFO sending Commit {"height": 4357, "view": 0} -2023-12-15T23:18:13.796Z INFO approving block {"height": 4357, "hash": "31ac4fe5968637a3e2c734a4a1813776243874b02a641f1351c20cdb378743df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "424b695c881bb016692c934a1da27f7bf42c102e14797add0844438c6545237b"} -2023-12-15T23:18:13.798Z INFO initializing dbft {"height": 4358, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:13.799Z debug frostfs-node/morph.go:229 new block {"index": 4357} -2023-12-15T23:18:14.041Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4357, "blockHeight": 4357, "took": "6.745826ms"} -2023-12-15T23:18:14.798Z INFO sending PrepareRequest {"height": 4358, "view": 0} -2023-12-15T23:18:14.798Z INFO sending Commit {"height": 4358, "view": 0} -2023-12-15T23:18:14.798Z INFO approving block {"height": 4358, "hash": "9743b2baceb67d4e1388911a4e2945c11d9b290d250b814f49eb4ee890c0114c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31ac4fe5968637a3e2c734a4a1813776243874b02a641f1351c20cdb378743df"} -2023-12-15T23:18:14.800Z INFO initializing dbft {"height": 4359, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:14.801Z debug frostfs-node/morph.go:229 new block {"index": 4358} -2023-12-15T23:18:15.042Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4358, "blockHeight": 4358, "took": "6.662817ms"} -2023-12-15T23:18:15.800Z INFO sending PrepareRequest {"height": 4359, "view": 0} -2023-12-15T23:18:15.800Z INFO sending Commit {"height": 4359, "view": 0} -2023-12-15T23:18:15.801Z INFO approving block {"height": 4359, "hash": "09fe882f02e476ae331ece0a3d90d1422f432978e16798e948582fecf2262714", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9743b2baceb67d4e1388911a4e2945c11d9b290d250b814f49eb4ee890c0114c"} -2023-12-15T23:18:15.803Z INFO initializing dbft {"height": 4360, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:15.804Z debug frostfs-node/morph.go:229 new block {"index": 4359} -2023-12-15T23:18:16.043Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4359, "blockHeight": 4359, "took": "6.377687ms"} -2023-12-15T23:18:16.802Z INFO sending PrepareRequest {"height": 4360, "view": 0} -2023-12-15T23:18:16.802Z INFO sending Commit {"height": 4360, "view": 0} -2023-12-15T23:18:16.803Z INFO approving block {"height": 4360, "hash": "43142604ae0d7abda0d53ebaacd7f29839e318f62c99f6590a41a4a5e8c1efdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09fe882f02e476ae331ece0a3d90d1422f432978e16798e948582fecf2262714"} -2023-12-15T23:18:16.804Z INFO initializing dbft {"height": 4361, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:16.805Z debug frostfs-node/morph.go:229 new block {"index": 4360} -2023-12-15T23:18:17.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4360, "blockHeight": 4360, "took": "7.97194ms"} -2023-12-15T23:18:17.804Z INFO sending PrepareRequest {"height": 4361, "view": 0} -2023-12-15T23:18:17.804Z INFO sending Commit {"height": 4361, "view": 0} -2023-12-15T23:18:17.804Z INFO approving block {"height": 4361, "hash": "d245aba957ab2e272510c3fec2a3110f2cb0ca47b6788a0937cd1c5727e4d6c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43142604ae0d7abda0d53ebaacd7f29839e318f62c99f6590a41a4a5e8c1efdb"} -2023-12-15T23:18:17.806Z INFO initializing dbft {"height": 4362, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:17.806Z debug frostfs-node/morph.go:229 new block {"index": 4361} -2023-12-15T23:18:18.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4361, "blockHeight": 4361, "took": "7.078831ms"} -2023-12-15T23:18:18.806Z INFO sending PrepareRequest {"height": 4362, "view": 0} -2023-12-15T23:18:18.806Z INFO sending Commit {"height": 4362, "view": 0} -2023-12-15T23:18:18.807Z INFO approving block {"height": 4362, "hash": "523fb914d71cd90e9892b844f578bcffee649b97b262446c1abbb61dd380aae5", "tx_count": 1, "merkle": "567ce73354200d2787daab4395112ace2151aa8356d4a700c959978088f53809", "prev": "d245aba957ab2e272510c3fec2a3110f2cb0ca47b6788a0937cd1c5727e4d6c6"} -2023-12-15T23:18:18.808Z INFO initializing dbft {"height": 4363, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:18.810Z debug frostfs-node/morph.go:229 new block {"index": 4362} -2023-12-15T23:18:18.816Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T23:18:19.047Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 4362, "blockHeight": 4362, "took": "7.298912ms"} -2023-12-15T23:18:19.808Z INFO sending PrepareRequest {"height": 4363, "view": 0} -2023-12-15T23:18:19.809Z INFO sending Commit {"height": 4363, "view": 0} -2023-12-15T23:18:19.809Z INFO approving block {"height": 4363, "hash": "a8c3adccab0202217e5a458880ec10d15f755554cb1979a9f24ac90f1339b3b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "523fb914d71cd90e9892b844f578bcffee649b97b262446c1abbb61dd380aae5"} -2023-12-15T23:18:19.811Z INFO initializing dbft {"height": 4364, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:19.811Z debug frostfs-node/morph.go:229 new block {"index": 4363} -2023-12-15T23:18:20.047Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4363, "blockHeight": 4363, "took": "6.886641ms"} -2023-12-15T23:18:20.810Z INFO sending PrepareRequest {"height": 4364, "view": 0} -2023-12-15T23:18:20.811Z INFO sending Commit {"height": 4364, "view": 0} -2023-12-15T23:18:20.811Z INFO approving block {"height": 4364, "hash": "3ecc30aa0dd0a9b18dc1c11365539003d573f6c371e8edd8c2b16a74885264aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8c3adccab0202217e5a458880ec10d15f755554cb1979a9f24ac90f1339b3b6"} -2023-12-15T23:18:20.814Z INFO initializing dbft {"height": 4365, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:20.815Z debug frostfs-node/morph.go:229 new block {"index": 4364} -2023-12-15T23:18:21.049Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4364, "blockHeight": 4364, "took": "6.424547ms"} -2023-12-15T23:18:21.813Z INFO sending PrepareRequest {"height": 4365, "view": 0} -2023-12-15T23:18:21.813Z INFO sending Commit {"height": 4365, "view": 0} -2023-12-15T23:18:21.813Z INFO approving block {"height": 4365, "hash": "5ca872d07a99460d0337a37a042db09323717561aa66fbb921727293dd3de164", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ecc30aa0dd0a9b18dc1c11365539003d573f6c371e8edd8c2b16a74885264aa"} -2023-12-15T23:18:21.814Z INFO initializing dbft {"height": 4366, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:21.815Z debug frostfs-node/morph.go:229 new block {"index": 4365} -2023-12-15T23:18:22.050Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4365, "blockHeight": 4365, "took": "7.458147ms"} -2023-12-15T23:18:22.814Z INFO sending PrepareRequest {"height": 4366, "view": 0} -2023-12-15T23:18:22.815Z INFO sending Commit {"height": 4366, "view": 0} -2023-12-15T23:18:22.815Z INFO approving block {"height": 4366, "hash": "0e892011e56174b728b506b679c6feb912deb27ef6d4c737befdd708d4b48535", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ca872d07a99460d0337a37a042db09323717561aa66fbb921727293dd3de164"} -2023-12-15T23:18:22.817Z INFO initializing dbft {"height": 4367, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:22.818Z debug frostfs-node/morph.go:229 new block {"index": 4366} -2023-12-15T23:18:23.051Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4366, "blockHeight": 4366, "took": "8.115696ms"} -2023-12-15T23:18:23.816Z INFO sending PrepareRequest {"height": 4367, "view": 0} -2023-12-15T23:18:23.817Z INFO sending Commit {"height": 4367, "view": 0} -2023-12-15T23:18:23.817Z INFO approving block {"height": 4367, "hash": "e23370e156b80b9cb416cf6e99329b503a5294a9d69933d2bde0f6e34a08134c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e892011e56174b728b506b679c6feb912deb27ef6d4c737befdd708d4b48535"} -2023-12-15T23:18:23.818Z INFO initializing dbft {"height": 4368, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:23.819Z debug frostfs-node/morph.go:229 new block {"index": 4367} -2023-12-15T23:18:23.822Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:18:23.827Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:18:23.827Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:18:24.051Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4367, "blockHeight": 4367, "took": "7.052805ms"} -2023-12-15T23:18:24.818Z INFO sending PrepareRequest {"height": 4368, "view": 0} -2023-12-15T23:18:24.818Z INFO sending Commit {"height": 4368, "view": 0} -2023-12-15T23:18:24.819Z INFO approving block {"height": 4368, "hash": "f4b2543aae7730edc5f22dae742747bd885331e1e8c70fc59edecae639c004c3", "tx_count": 2, "merkle": "52c8b26c3f84f938b3371218181c8d63bc062f1d17d8953909d6f3306c79f66f", "prev": "e23370e156b80b9cb416cf6e99329b503a5294a9d69933d2bde0f6e34a08134c"} -2023-12-15T23:18:24.820Z INFO runtime log {"tx": "6e5496f5a84bd8e3ae1eb881bd36a0f1bcb3a14cdcd9871451f90aca5d4f6fe6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:18:24.820Z INFO runtime log {"tx": "6e5496f5a84bd8e3ae1eb881bd36a0f1bcb3a14cdcd9871451f90aca5d4f6fe6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:18:24.821Z INFO initializing dbft {"height": 4369, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:24.823Z debug frostfs-node/morph.go:229 new block {"index": 4368} -2023-12-15T23:18:25.060Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4368, "blockHeight": 4368, "took": "14.07431ms"} -2023-12-15T23:18:25.820Z INFO sending PrepareRequest {"height": 4369, "view": 0} -2023-12-15T23:18:25.820Z INFO sending Commit {"height": 4369, "view": 0} -2023-12-15T23:18:25.820Z INFO approving block {"height": 4369, "hash": "603b8230d140efd48845f5cfa4f73d8e9f22f1d90c945340ee4d8907a83426a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4b2543aae7730edc5f22dae742747bd885331e1e8c70fc59edecae639c004c3"} -2023-12-15T23:18:25.821Z INFO initializing dbft {"height": 4370, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:25.822Z debug frostfs-node/morph.go:229 new block {"index": 4369} -2023-12-15T23:18:26.056Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4369, "blockHeight": 4369, "took": "9.336385ms"} -2023-12-15T23:18:26.821Z INFO sending PrepareRequest {"height": 4370, "view": 0} -2023-12-15T23:18:26.822Z INFO sending Commit {"height": 4370, "view": 0} -2023-12-15T23:18:26.822Z INFO approving block {"height": 4370, "hash": "fa7ca07f44ec3c7e422a3a1516369652fa6ad205aa9738cd6a9caa116d37b658", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "603b8230d140efd48845f5cfa4f73d8e9f22f1d90c945340ee4d8907a83426a6"} -2023-12-15T23:18:26.824Z INFO initializing dbft {"height": 4371, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:26.825Z debug frostfs-node/morph.go:229 new block {"index": 4370} -2023-12-15T23:18:27.055Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4370, "blockHeight": 4370, "took": "7.051416ms"} -2023-12-15T23:18:27.823Z INFO sending PrepareRequest {"height": 4371, "view": 0} -2023-12-15T23:18:27.824Z INFO sending Commit {"height": 4371, "view": 0} -2023-12-15T23:18:27.824Z INFO approving block {"height": 4371, "hash": "d509279e802162a0593eff15afcd85db77d188a81fdc0a2447885bdd8456a444", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa7ca07f44ec3c7e422a3a1516369652fa6ad205aa9738cd6a9caa116d37b658"} -2023-12-15T23:18:27.826Z INFO initializing dbft {"height": 4372, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:27.827Z debug frostfs-node/morph.go:229 new block {"index": 4371} -2023-12-15T23:18:28.057Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4371, "blockHeight": 4371, "took": "7.794857ms"} -2023-12-15T23:18:28.825Z INFO sending PrepareRequest {"height": 4372, "view": 0} -2023-12-15T23:18:28.825Z INFO sending Commit {"height": 4372, "view": 0} -2023-12-15T23:18:28.826Z INFO approving block {"height": 4372, "hash": "b2f7cfa405fe27cad6053747f871e40b4757a662923476ee2a22147b534dcce7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d509279e802162a0593eff15afcd85db77d188a81fdc0a2447885bdd8456a444"} -2023-12-15T23:18:28.827Z INFO initializing dbft {"height": 4373, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:28.828Z debug frostfs-node/morph.go:229 new block {"index": 4372} -2023-12-15T23:18:29.058Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4372, "blockHeight": 4372, "took": "8.032122ms"} -2023-12-15T23:18:29.827Z INFO sending PrepareRequest {"height": 4373, "view": 0} -2023-12-15T23:18:29.827Z INFO sending Commit {"height": 4373, "view": 0} -2023-12-15T23:18:29.827Z INFO approving block {"height": 4373, "hash": "2cc1866906a59b67bf584bc7bc628692411af8edd1af3148bb459985a88056fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2f7cfa405fe27cad6053747f871e40b4757a662923476ee2a22147b534dcce7"} -2023-12-15T23:18:29.829Z INFO initializing dbft {"height": 4374, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:29.830Z debug frostfs-node/morph.go:229 new block {"index": 4373} -2023-12-15T23:18:30.061Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4373, "blockHeight": 4373, "took": "10.156336ms"} -2023-12-15T23:18:30.829Z INFO sending PrepareRequest {"height": 4374, "view": 0} -2023-12-15T23:18:30.830Z INFO sending Commit {"height": 4374, "view": 0} -2023-12-15T23:18:30.831Z INFO approving block {"height": 4374, "hash": "8f256376b00731e8456c0c4fc3ec50c9c9a8221c3eca1c24a00e64148ae98c2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2cc1866906a59b67bf584bc7bc628692411af8edd1af3148bb459985a88056fb"} -2023-12-15T23:18:30.833Z INFO initializing dbft {"height": 4375, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:30.834Z debug frostfs-node/morph.go:229 new block {"index": 4374} -2023-12-15T23:18:31.060Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4374, "blockHeight": 4374, "took": "7.904153ms"} -2023-12-15T23:18:31.832Z INFO sending PrepareRequest {"height": 4375, "view": 0} -2023-12-15T23:18:31.832Z INFO sending Commit {"height": 4375, "view": 0} -2023-12-15T23:18:31.832Z INFO approving block {"height": 4375, "hash": "e5203c0578e4c209c58f9126ef16cd845c384da0d4229327daa33e5e2e4fb614", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f256376b00731e8456c0c4fc3ec50c9c9a8221c3eca1c24a00e64148ae98c2c"} -2023-12-15T23:18:31.834Z INFO initializing dbft {"height": 4376, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:31.835Z debug frostfs-node/morph.go:229 new block {"index": 4375} -2023-12-15T23:18:32.061Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4375, "blockHeight": 4375, "took": "8.011847ms"} -2023-12-15T23:18:32.834Z INFO sending PrepareRequest {"height": 4376, "view": 0} -2023-12-15T23:18:32.834Z INFO sending Commit {"height": 4376, "view": 0} -2023-12-15T23:18:32.835Z INFO approving block {"height": 4376, "hash": "d10f732b595a054ae08bd3862f883a8936d2fa9169a77462ddef3d2f04dbd50e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5203c0578e4c209c58f9126ef16cd845c384da0d4229327daa33e5e2e4fb614"} -2023-12-15T23:18:32.836Z INFO initializing dbft {"height": 4377, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:32.837Z debug frostfs-node/morph.go:229 new block {"index": 4376} -2023-12-15T23:18:33.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4376, "blockHeight": 4376, "took": "8.972471ms"} -2023-12-15T23:18:33.836Z INFO sending PrepareRequest {"height": 4377, "view": 0} -2023-12-15T23:18:33.836Z INFO sending Commit {"height": 4377, "view": 0} -2023-12-15T23:18:33.837Z INFO approving block {"height": 4377, "hash": "153e367cb4cb99227c7ee6f4218c8b5dac475f97d32cb8e2b107dbd2b4494149", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d10f732b595a054ae08bd3862f883a8936d2fa9169a77462ddef3d2f04dbd50e"} -2023-12-15T23:18:33.838Z INFO initializing dbft {"height": 4378, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:33.839Z debug frostfs-node/morph.go:229 new block {"index": 4377} -2023-12-15T23:18:34.061Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4377, "blockHeight": 4377, "took": "5.707866ms"} -2023-12-15T23:18:34.838Z INFO sending PrepareRequest {"height": 4378, "view": 0} -2023-12-15T23:18:34.839Z INFO sending Commit {"height": 4378, "view": 0} -2023-12-15T23:18:34.839Z INFO approving block {"height": 4378, "hash": "551c09c39afdf8e1de14d3c4e8acabef11b165d6de1b69b40bd42afa9c70b4b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "153e367cb4cb99227c7ee6f4218c8b5dac475f97d32cb8e2b107dbd2b4494149"} -2023-12-15T23:18:34.840Z INFO initializing dbft {"height": 4379, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:34.841Z debug frostfs-node/morph.go:229 new block {"index": 4378} -2023-12-15T23:18:35.062Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4378, "blockHeight": 4378, "took": "6.501539ms"} -2023-12-15T23:18:35.840Z INFO sending PrepareRequest {"height": 4379, "view": 0} -2023-12-15T23:18:35.840Z INFO sending Commit {"height": 4379, "view": 0} -2023-12-15T23:18:35.840Z INFO approving block {"height": 4379, "hash": "ba8b5c714fc95e72abed73df2f9362c0b84fa5549e122e5b955204cb0d2ebab5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "551c09c39afdf8e1de14d3c4e8acabef11b165d6de1b69b40bd42afa9c70b4b0"} -2023-12-15T23:18:35.842Z INFO initializing dbft {"height": 4380, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:35.843Z debug frostfs-node/morph.go:229 new block {"index": 4379} -2023-12-15T23:18:36.062Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4379, "blockHeight": 4379, "took": "5.14653ms"} -2023-12-15T23:18:36.842Z INFO sending PrepareRequest {"height": 4380, "view": 0} -2023-12-15T23:18:36.842Z INFO sending Commit {"height": 4380, "view": 0} -2023-12-15T23:18:36.842Z INFO approving block {"height": 4380, "hash": "4c11d118c6b4d16eb1336bd15e68d53201deccb610d6416d895fba8e1c570fee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba8b5c714fc95e72abed73df2f9362c0b84fa5549e122e5b955204cb0d2ebab5"} -2023-12-15T23:18:36.844Z INFO initializing dbft {"height": 4381, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:36.845Z debug frostfs-node/morph.go:229 new block {"index": 4380} -2023-12-15T23:18:37.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4380, "blockHeight": 4380, "took": "7.415815ms"} -2023-12-15T23:18:37.844Z INFO sending PrepareRequest {"height": 4381, "view": 0} -2023-12-15T23:18:37.844Z INFO sending Commit {"height": 4381, "view": 0} -2023-12-15T23:18:37.845Z INFO approving block {"height": 4381, "hash": "4489d3cedeec96ab33dec59f7231e1ff7c60421e61646fb6fbe31bb9bb54bb47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c11d118c6b4d16eb1336bd15e68d53201deccb610d6416d895fba8e1c570fee"} -2023-12-15T23:18:37.847Z INFO initializing dbft {"height": 4382, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:37.847Z debug frostfs-node/morph.go:229 new block {"index": 4381} -2023-12-15T23:18:38.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4381, "blockHeight": 4381, "took": "7.112017ms"} -2023-12-15T23:18:38.846Z INFO sending PrepareRequest {"height": 4382, "view": 0} -2023-12-15T23:18:38.846Z INFO sending Commit {"height": 4382, "view": 0} -2023-12-15T23:18:38.846Z INFO approving block {"height": 4382, "hash": "21380f0cea7d8bb2ab84a70aecae44a3600cf13f03bedb890ecce7b8ba3ee0db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4489d3cedeec96ab33dec59f7231e1ff7c60421e61646fb6fbe31bb9bb54bb47"} -2023-12-15T23:18:38.848Z INFO initializing dbft {"height": 4383, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:38.849Z debug frostfs-node/morph.go:229 new block {"index": 4382} -2023-12-15T23:18:39.068Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4382, "blockHeight": 4382, "took": "7.52179ms"} -2023-12-15T23:18:39.848Z INFO sending PrepareRequest {"height": 4383, "view": 0} -2023-12-15T23:18:39.848Z INFO sending Commit {"height": 4383, "view": 0} -2023-12-15T23:18:39.849Z INFO approving block {"height": 4383, "hash": "ed9b8d5f728a5e0c1b74da0a98e7e5c88196e3a2794f97947ca180af5d9eac1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21380f0cea7d8bb2ab84a70aecae44a3600cf13f03bedb890ecce7b8ba3ee0db"} -2023-12-15T23:18:39.850Z INFO initializing dbft {"height": 4384, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:39.851Z debug frostfs-node/morph.go:229 new block {"index": 4383} -2023-12-15T23:18:40.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4383, "blockHeight": 4383, "took": "10.135305ms"} -2023-12-15T23:18:40.850Z INFO sending PrepareRequest {"height": 4384, "view": 0} -2023-12-15T23:18:40.850Z INFO sending Commit {"height": 4384, "view": 0} -2023-12-15T23:18:40.851Z INFO approving block {"height": 4384, "hash": "61c06b629c818d02e8610a9b4ce2ee6278d07e14d129724be1f545996f406f89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed9b8d5f728a5e0c1b74da0a98e7e5c88196e3a2794f97947ca180af5d9eac1d"} -2023-12-15T23:18:40.852Z INFO initializing dbft {"height": 4385, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:40.853Z debug frostfs-node/morph.go:229 new block {"index": 4384} -2023-12-15T23:18:41.073Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4384, "blockHeight": 4384, "took": "10.163239ms"} -2023-12-15T23:18:41.852Z INFO sending PrepareRequest {"height": 4385, "view": 0} -2023-12-15T23:18:41.853Z INFO sending Commit {"height": 4385, "view": 0} -2023-12-15T23:18:41.853Z INFO approving block {"height": 4385, "hash": "d59bb199bfcb236837bca4961c2f4b81680471afd771698b7880520d075ff76d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61c06b629c818d02e8610a9b4ce2ee6278d07e14d129724be1f545996f406f89"} -2023-12-15T23:18:41.854Z INFO initializing dbft {"height": 4386, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:41.855Z debug frostfs-node/morph.go:229 new block {"index": 4385} -2023-12-15T23:18:42.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4385, "blockHeight": 4385, "took": "7.781106ms"} -2023-12-15T23:18:42.854Z INFO sending PrepareRequest {"height": 4386, "view": 0} -2023-12-15T23:18:42.855Z INFO sending Commit {"height": 4386, "view": 0} -2023-12-15T23:18:42.855Z INFO approving block {"height": 4386, "hash": "3d42e6e78804aefa67cd959423790ecf9193143ce1e166dadaca453cf1563a41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d59bb199bfcb236837bca4961c2f4b81680471afd771698b7880520d075ff76d"} -2023-12-15T23:18:42.856Z INFO initializing dbft {"height": 4387, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:42.857Z debug frostfs-node/morph.go:229 new block {"index": 4386} -2023-12-15T23:18:43.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4386, "blockHeight": 4386, "took": "10.304715ms"} -2023-12-15T23:18:43.857Z INFO sending PrepareRequest {"height": 4387, "view": 0} -2023-12-15T23:18:43.857Z INFO sending Commit {"height": 4387, "view": 0} -2023-12-15T23:18:43.858Z INFO approving block {"height": 4387, "hash": "167b7fb9f6031f14889713915e3d1bf623a7c71947e13bc0b488f0c318b3ca25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d42e6e78804aefa67cd959423790ecf9193143ce1e166dadaca453cf1563a41"} -2023-12-15T23:18:43.860Z INFO initializing dbft {"height": 4388, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:43.861Z debug frostfs-node/morph.go:229 new block {"index": 4387} -2023-12-15T23:18:44.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4387, "blockHeight": 4387, "took": "11.541876ms"} -2023-12-15T23:18:44.859Z INFO sending PrepareRequest {"height": 4388, "view": 0} -2023-12-15T23:18:44.860Z INFO sending Commit {"height": 4388, "view": 0} -2023-12-15T23:18:44.860Z INFO approving block {"height": 4388, "hash": "0e457fe7657c6a5249c99fc35e82f4f0407ab81624cd7345143bf3f68672752e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "167b7fb9f6031f14889713915e3d1bf623a7c71947e13bc0b488f0c318b3ca25"} -2023-12-15T23:18:44.862Z INFO initializing dbft {"height": 4389, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:44.862Z debug frostfs-node/morph.go:229 new block {"index": 4388} -2023-12-15T23:18:45.074Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4388, "blockHeight": 4388, "took": "6.232395ms"} -2023-12-15T23:18:45.863Z INFO sending PrepareRequest {"height": 4389, "view": 0} -2023-12-15T23:18:45.863Z INFO sending Commit {"height": 4389, "view": 0} -2023-12-15T23:18:45.864Z INFO approving block {"height": 4389, "hash": "2e00055d2927b458c285c5277fbf961939f439cc079b48cdf2b15ba4824de12c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e457fe7657c6a5249c99fc35e82f4f0407ab81624cd7345143bf3f68672752e"} -2023-12-15T23:18:45.867Z INFO initializing dbft {"height": 4390, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:45.868Z debug frostfs-node/morph.go:229 new block {"index": 4389} -2023-12-15T23:18:46.077Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4389, "blockHeight": 4389, "took": "8.76305ms"} -2023-12-15T23:18:46.865Z INFO sending PrepareRequest {"height": 4390, "view": 0} -2023-12-15T23:18:46.865Z INFO sending Commit {"height": 4390, "view": 0} -2023-12-15T23:18:46.865Z INFO approving block {"height": 4390, "hash": "4cc705942e41a6b956474dcd9b2fb5758f15fcd4e8c8d9caa6621ef2b2dd5896", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e00055d2927b458c285c5277fbf961939f439cc079b48cdf2b15ba4824de12c"} -2023-12-15T23:18:46.866Z INFO initializing dbft {"height": 4391, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:46.867Z debug frostfs-node/morph.go:229 new block {"index": 4390} -2023-12-15T23:18:47.076Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4390, "blockHeight": 4390, "took": "7.361375ms"} -2023-12-15T23:18:47.866Z INFO sending PrepareRequest {"height": 4391, "view": 0} -2023-12-15T23:18:47.867Z INFO sending Commit {"height": 4391, "view": 0} -2023-12-15T23:18:47.867Z INFO approving block {"height": 4391, "hash": "e1beaf5b24741b26cded50e1d0893f41b7ed15eea035b08f401aefcb21d462ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cc705942e41a6b956474dcd9b2fb5758f15fcd4e8c8d9caa6621ef2b2dd5896"} -2023-12-15T23:18:47.868Z INFO initializing dbft {"height": 4392, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:47.869Z debug frostfs-node/morph.go:229 new block {"index": 4391} -2023-12-15T23:18:48.080Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4391, "blockHeight": 4391, "took": "10.590522ms"} -2023-12-15T23:18:48.868Z INFO sending PrepareRequest {"height": 4392, "view": 0} -2023-12-15T23:18:48.868Z INFO sending Commit {"height": 4392, "view": 0} -2023-12-15T23:18:48.868Z INFO approving block {"height": 4392, "hash": "517eb829337f0d977718e7db0a8e4f24e452cb61b58f5b14c5e281d76007d70d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1beaf5b24741b26cded50e1d0893f41b7ed15eea035b08f401aefcb21d462ca"} -2023-12-15T23:18:48.870Z INFO initializing dbft {"height": 4393, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:48.871Z debug frostfs-node/morph.go:229 new block {"index": 4392} -2023-12-15T23:18:49.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4392, "blockHeight": 4392, "took": "7.801148ms"} -2023-12-15T23:18:49.870Z INFO sending PrepareRequest {"height": 4393, "view": 0} -2023-12-15T23:18:49.870Z INFO sending Commit {"height": 4393, "view": 0} -2023-12-15T23:18:49.871Z INFO approving block {"height": 4393, "hash": "0a7d2b12c6455e9b4330db33330627bebd4ca1836dcd2457e8dcdffbe9c23926", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "517eb829337f0d977718e7db0a8e4f24e452cb61b58f5b14c5e281d76007d70d"} -2023-12-15T23:18:49.873Z INFO initializing dbft {"height": 4394, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:49.874Z debug frostfs-node/morph.go:229 new block {"index": 4393} -2023-12-15T23:18:50.081Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4393, "blockHeight": 4393, "took": "9.769456ms"} -2023-12-15T23:18:50.872Z INFO sending PrepareRequest {"height": 4394, "view": 0} -2023-12-15T23:18:50.872Z INFO sending Commit {"height": 4394, "view": 0} -2023-12-15T23:18:50.873Z INFO approving block {"height": 4394, "hash": "8dd57c0502fb55352a01fd8955d359ae2607f344f3802ed08e0041538400266d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a7d2b12c6455e9b4330db33330627bebd4ca1836dcd2457e8dcdffbe9c23926"} -2023-12-15T23:18:50.875Z INFO initializing dbft {"height": 4395, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:50.876Z debug frostfs-node/morph.go:229 new block {"index": 4394} -2023-12-15T23:18:51.080Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4394, "blockHeight": 4394, "took": "7.841828ms"} -2023-12-15T23:18:51.874Z INFO sending PrepareRequest {"height": 4395, "view": 0} -2023-12-15T23:18:51.874Z INFO sending Commit {"height": 4395, "view": 0} -2023-12-15T23:18:51.875Z INFO approving block {"height": 4395, "hash": "c0f8643842b971d3059742ad272223622c18e6d30764d755febbb5c3fa07558f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8dd57c0502fb55352a01fd8955d359ae2607f344f3802ed08e0041538400266d"} -2023-12-15T23:18:51.876Z INFO initializing dbft {"height": 4396, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:51.877Z debug frostfs-node/morph.go:229 new block {"index": 4395} -2023-12-15T23:18:52.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4395, "blockHeight": 4395, "took": "11.132439ms"} -2023-12-15T23:18:52.876Z INFO sending PrepareRequest {"height": 4396, "view": 0} -2023-12-15T23:18:52.876Z INFO sending Commit {"height": 4396, "view": 0} -2023-12-15T23:18:52.877Z INFO approving block {"height": 4396, "hash": "087e2e39623d21fa73b72263340f69488a98501c95d064475e15d698cc098740", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0f8643842b971d3059742ad272223622c18e6d30764d755febbb5c3fa07558f"} -2023-12-15T23:18:52.878Z INFO initializing dbft {"height": 4397, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:52.879Z debug frostfs-node/morph.go:229 new block {"index": 4396} -2023-12-15T23:18:53.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4396, "blockHeight": 4396, "took": "10.723032ms"} -2023-12-15T23:18:53.878Z INFO sending PrepareRequest {"height": 4397, "view": 0} -2023-12-15T23:18:53.878Z INFO sending Commit {"height": 4397, "view": 0} -2023-12-15T23:18:53.878Z INFO approving block {"height": 4397, "hash": "6121c5b9417ea973bf9d34c24e9f1f5911e38a2d27f2347f54aa67e6b5f0a8e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "087e2e39623d21fa73b72263340f69488a98501c95d064475e15d698cc098740"} -2023-12-15T23:18:53.880Z INFO initializing dbft {"height": 4398, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:53.881Z debug frostfs-node/morph.go:229 new block {"index": 4397} -2023-12-15T23:18:54.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4397, "blockHeight": 4397, "took": "12.031466ms"} -2023-12-15T23:18:54.880Z INFO sending PrepareRequest {"height": 4398, "view": 0} -2023-12-15T23:18:54.880Z INFO sending Commit {"height": 4398, "view": 0} -2023-12-15T23:18:54.880Z INFO approving block {"height": 4398, "hash": "5e303ae79574dc034ce78438954414149dea544479735ab181ab7cff1bbb7e98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6121c5b9417ea973bf9d34c24e9f1f5911e38a2d27f2347f54aa67e6b5f0a8e6"} -2023-12-15T23:18:54.882Z INFO initializing dbft {"height": 4399, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:54.882Z debug frostfs-node/morph.go:229 new block {"index": 4398} -2023-12-15T23:18:54.889Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 19 epoch for daughters"} -2023-12-15T23:18:54.892Z INFO runtime log {"tx": "d6037e9eb306bd87200cb6d1c419a910a0563c9a964c2ec6f529c0677369ecba", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:18:55.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4398, "blockHeight": 4398, "took": "8.656072ms"} -2023-12-15T23:18:55.882Z INFO sending PrepareRequest {"height": 4399, "view": 0} -2023-12-15T23:18:55.882Z INFO sending Commit {"height": 4399, "view": 0} -2023-12-15T23:18:55.883Z INFO approving block {"height": 4399, "hash": "e76ed522dbce933f9ee5a41ed814d9f6533ac32d73be030c073edfef7f914887", "tx_count": 1, "merkle": "d9abf439bfc1d5299c57950408c945190690cf7868c165e258df9cfd95b406ec", "prev": "5e303ae79574dc034ce78438954414149dea544479735ab181ab7cff1bbb7e98"} -2023-12-15T23:18:55.884Z INFO runtime log {"tx": "ec06b495fd9cdf58e265c16878cf90061945c9080495579c29d5c1bf39f4abd9", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:18:55.885Z INFO initializing dbft {"height": 4400, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:55.887Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 19} -2023-12-15T23:18:55.887Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 19} -2023-12-15T23:18:55.888Z debug frostfs-node/morph.go:229 new block {"index": 4399} -2023-12-15T23:18:56.088Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 4399, "blockHeight": 4399, "took": "10.395956ms"} -2023-12-15T23:18:56.884Z INFO sending PrepareRequest {"height": 4400, "view": 0} -2023-12-15T23:18:56.884Z INFO sending Commit {"height": 4400, "view": 0} -2023-12-15T23:18:56.885Z INFO approving block {"height": 4400, "hash": "bd6514f6ceda8aa84d18b6561101feb5581a09b0743c070bf3b1999daf801af0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e76ed522dbce933f9ee5a41ed814d9f6533ac32d73be030c073edfef7f914887"} -2023-12-15T23:18:56.887Z INFO initializing dbft {"height": 4401, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:56.888Z debug frostfs-node/morph.go:229 new block {"index": 4400} -2023-12-15T23:18:57.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4400, "blockHeight": 4400, "took": "7.011384ms"} -2023-12-15T23:18:57.886Z INFO sending PrepareRequest {"height": 4401, "view": 0} -2023-12-15T23:18:57.886Z INFO sending Commit {"height": 4401, "view": 0} -2023-12-15T23:18:57.886Z INFO approving block {"height": 4401, "hash": "cd712e3f7fcef2f45cc7de5851adbb2a20503c75f11622bc86bc042948b17fe5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd6514f6ceda8aa84d18b6561101feb5581a09b0743c070bf3b1999daf801af0"} -2023-12-15T23:18:57.888Z INFO initializing dbft {"height": 4402, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:57.889Z debug frostfs-node/morph.go:229 new block {"index": 4401} -2023-12-15T23:18:58.086Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4401, "blockHeight": 4401, "took": "7.028064ms"} -2023-12-15T23:18:58.888Z INFO sending PrepareRequest {"height": 4402, "view": 0} -2023-12-15T23:18:58.889Z INFO sending Commit {"height": 4402, "view": 0} -2023-12-15T23:18:58.889Z INFO approving block {"height": 4402, "hash": "338be8a580337826877d572a5703298d0fbf406c1b37f5389a36c22798d2ab42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd712e3f7fcef2f45cc7de5851adbb2a20503c75f11622bc86bc042948b17fe5"} -2023-12-15T23:18:58.892Z INFO initializing dbft {"height": 4403, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:58.893Z debug frostfs-node/morph.go:229 new block {"index": 4402} -2023-12-15T23:18:59.089Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4402, "blockHeight": 4402, "took": "8.993457ms"} -2023-12-15T23:18:59.891Z INFO sending PrepareRequest {"height": 4403, "view": 0} -2023-12-15T23:18:59.891Z INFO sending Commit {"height": 4403, "view": 0} -2023-12-15T23:18:59.892Z INFO approving block {"height": 4403, "hash": "2478b220bd28658079bcad16be90ad1c005b73001ef6df0c86841125b1559748", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "338be8a580337826877d572a5703298d0fbf406c1b37f5389a36c22798d2ab42"} -2023-12-15T23:18:59.894Z INFO initializing dbft {"height": 4404, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:18:59.895Z debug frostfs-node/morph.go:229 new block {"index": 4403} -2023-12-15T23:19:00.089Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4403, "blockHeight": 4403, "took": "8.099716ms"} -2023-12-15T23:19:00.894Z INFO sending PrepareRequest {"height": 4404, "view": 0} -2023-12-15T23:19:00.894Z INFO sending Commit {"height": 4404, "view": 0} -2023-12-15T23:19:00.895Z INFO approving block {"height": 4404, "hash": "879f42ddf9e21c4a888000974c6aa6a1b210d68986253f45b579f10908dfa189", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2478b220bd28658079bcad16be90ad1c005b73001ef6df0c86841125b1559748"} -2023-12-15T23:19:00.896Z INFO initializing dbft {"height": 4405, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:00.896Z debug frostfs-node/morph.go:229 new block {"index": 4404} -2023-12-15T23:19:01.088Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4404, "blockHeight": 4404, "took": "6.566801ms"} -2023-12-15T23:19:01.896Z INFO sending PrepareRequest {"height": 4405, "view": 0} -2023-12-15T23:19:01.896Z INFO sending Commit {"height": 4405, "view": 0} -2023-12-15T23:19:01.897Z INFO approving block {"height": 4405, "hash": "008aa26de31eac24e367a743e5e595dbbd16f0f50ec82604d65cb879654eccf1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "879f42ddf9e21c4a888000974c6aa6a1b210d68986253f45b579f10908dfa189"} -2023-12-15T23:19:01.898Z INFO initializing dbft {"height": 4406, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:01.899Z debug frostfs-node/morph.go:229 new block {"index": 4405} -2023-12-15T23:19:02.090Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4405, "blockHeight": 4405, "took": "7.727286ms"} -2023-12-15T23:19:02.898Z INFO sending PrepareRequest {"height": 4406, "view": 0} -2023-12-15T23:19:02.898Z INFO sending Commit {"height": 4406, "view": 0} -2023-12-15T23:19:02.898Z INFO approving block {"height": 4406, "hash": "5c9a1e1f7bde38f884a16238360b388311a78069fa71e83008bac3fe5f0a7aa1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "008aa26de31eac24e367a743e5e595dbbd16f0f50ec82604d65cb879654eccf1"} -2023-12-15T23:19:02.900Z INFO initializing dbft {"height": 4407, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:02.901Z debug frostfs-node/morph.go:229 new block {"index": 4406} -2023-12-15T23:19:03.091Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4406, "blockHeight": 4406, "took": "7.56422ms"} -2023-12-15T23:19:03.900Z INFO sending PrepareRequest {"height": 4407, "view": 0} -2023-12-15T23:19:03.900Z INFO sending Commit {"height": 4407, "view": 0} -2023-12-15T23:19:03.900Z INFO approving block {"height": 4407, "hash": "82b2296ce57f9285df618d4477ab1b9b364c22aecc153e35e161334e74e01ad3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c9a1e1f7bde38f884a16238360b388311a78069fa71e83008bac3fe5f0a7aa1"} -2023-12-15T23:19:03.901Z INFO initializing dbft {"height": 4408, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:03.902Z debug frostfs-node/morph.go:229 new block {"index": 4407} -2023-12-15T23:19:04.090Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4407, "blockHeight": 4407, "took": "5.454309ms"} -2023-12-15T23:19:04.901Z INFO sending PrepareRequest {"height": 4408, "view": 0} -2023-12-15T23:19:04.902Z INFO sending Commit {"height": 4408, "view": 0} -2023-12-15T23:19:04.902Z INFO approving block {"height": 4408, "hash": "83a6de5b56205eade0b85a3583109c152375ea047377a0857340514436edd780", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82b2296ce57f9285df618d4477ab1b9b364c22aecc153e35e161334e74e01ad3"} -2023-12-15T23:19:04.904Z INFO initializing dbft {"height": 4409, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:04.905Z debug frostfs-node/morph.go:229 new block {"index": 4408} -2023-12-15T23:19:05.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4408, "blockHeight": 4408, "took": "10.387203ms"} -2023-12-15T23:19:05.903Z INFO sending PrepareRequest {"height": 4409, "view": 0} -2023-12-15T23:19:05.904Z INFO sending Commit {"height": 4409, "view": 0} -2023-12-15T23:19:05.904Z INFO approving block {"height": 4409, "hash": "8971cd445b4da47f71d5f4a2f2922da484c4d0904056d3c33ec00c99ff5ff3f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83a6de5b56205eade0b85a3583109c152375ea047377a0857340514436edd780"} -2023-12-15T23:19:05.907Z INFO initializing dbft {"height": 4410, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:05.909Z debug frostfs-node/morph.go:229 new block {"index": 4409} -2023-12-15T23:19:06.092Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4409, "blockHeight": 4409, "took": "6.906726ms"} -2023-12-15T23:19:06.905Z INFO sending PrepareRequest {"height": 4410, "view": 0} -2023-12-15T23:19:06.905Z INFO sending Commit {"height": 4410, "view": 0} -2023-12-15T23:19:06.906Z INFO approving block {"height": 4410, "hash": "9f58095158fdb57620135fb759cf7a255b48650fe96ffde9a094547d75acf636", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8971cd445b4da47f71d5f4a2f2922da484c4d0904056d3c33ec00c99ff5ff3f1"} -2023-12-15T23:19:06.907Z INFO initializing dbft {"height": 4411, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:06.908Z debug frostfs-node/morph.go:229 new block {"index": 4410} -2023-12-15T23:19:07.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4410, "blockHeight": 4410, "took": "8.621366ms"} -2023-12-15T23:19:07.907Z INFO sending PrepareRequest {"height": 4411, "view": 0} -2023-12-15T23:19:07.907Z INFO sending Commit {"height": 4411, "view": 0} -2023-12-15T23:19:07.907Z INFO approving block {"height": 4411, "hash": "255915ac05a36594962b1483dca16da254abee5a43e1fa5ed7bee2316aeba05e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f58095158fdb57620135fb759cf7a255b48650fe96ffde9a094547d75acf636"} -2023-12-15T23:19:07.909Z INFO initializing dbft {"height": 4412, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:07.909Z debug frostfs-node/morph.go:229 new block {"index": 4411} -2023-12-15T23:19:08.092Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4411, "blockHeight": 4411, "took": "5.557652ms"} -2023-12-15T23:19:08.908Z INFO sending PrepareRequest {"height": 4412, "view": 0} -2023-12-15T23:19:08.909Z INFO sending Commit {"height": 4412, "view": 0} -2023-12-15T23:19:08.909Z INFO approving block {"height": 4412, "hash": "acfbc65cc2d34b4a046d5d09c9a0ad68e919c3fe99821a74648791ff483fe1be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "255915ac05a36594962b1483dca16da254abee5a43e1fa5ed7bee2316aeba05e"} -2023-12-15T23:19:08.910Z INFO initializing dbft {"height": 4413, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:08.911Z debug frostfs-node/morph.go:229 new block {"index": 4412} -2023-12-15T23:19:09.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4412, "blockHeight": 4412, "took": "7.410915ms"} -2023-12-15T23:19:09.910Z INFO sending PrepareRequest {"height": 4413, "view": 0} -2023-12-15T23:19:09.911Z INFO sending Commit {"height": 4413, "view": 0} -2023-12-15T23:19:09.911Z INFO approving block {"height": 4413, "hash": "1542b85e89cace9f008a63cd6c27d22d31530d3a08cee316c5942c45d6fdc2fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acfbc65cc2d34b4a046d5d09c9a0ad68e919c3fe99821a74648791ff483fe1be"} -2023-12-15T23:19:09.912Z INFO initializing dbft {"height": 4414, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:09.913Z debug frostfs-node/morph.go:229 new block {"index": 4413} -2023-12-15T23:19:10.096Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4413, "blockHeight": 4413, "took": "6.917002ms"} -2023-12-15T23:19:10.912Z INFO sending PrepareRequest {"height": 4414, "view": 0} -2023-12-15T23:19:10.912Z INFO sending Commit {"height": 4414, "view": 0} -2023-12-15T23:19:10.912Z INFO approving block {"height": 4414, "hash": "ddf83306db14fabd725d823f6765c4c9c2d1fdd7ad37ea6abb521779af6f9ffc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1542b85e89cace9f008a63cd6c27d22d31530d3a08cee316c5942c45d6fdc2fe"} -2023-12-15T23:19:10.914Z INFO initializing dbft {"height": 4415, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:10.915Z debug frostfs-node/morph.go:229 new block {"index": 4414} -2023-12-15T23:19:11.105Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4414, "blockHeight": 4414, "took": "15.544945ms"} -2023-12-15T23:19:11.914Z INFO sending PrepareRequest {"height": 4415, "view": 0} -2023-12-15T23:19:11.914Z INFO sending Commit {"height": 4415, "view": 0} -2023-12-15T23:19:11.915Z INFO approving block {"height": 4415, "hash": "080891d32d6b66058a0ec40fa65ff4254f7ec61b8285ec7cea08bc3cbf8e23e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddf83306db14fabd725d823f6765c4c9c2d1fdd7ad37ea6abb521779af6f9ffc"} -2023-12-15T23:19:11.916Z INFO initializing dbft {"height": 4416, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:11.917Z debug frostfs-node/morph.go:229 new block {"index": 4415} -2023-12-15T23:19:12.101Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4415, "blockHeight": 4415, "took": "9.564803ms"} -2023-12-15T23:19:12.917Z INFO sending PrepareRequest {"height": 4416, "view": 0} -2023-12-15T23:19:12.918Z INFO sending Commit {"height": 4416, "view": 0} -2023-12-15T23:19:12.918Z INFO approving block {"height": 4416, "hash": "5491b5ba14da4243893cc785983c672edb85f9adc5f010c21a8e9c4c52595d10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "080891d32d6b66058a0ec40fa65ff4254f7ec61b8285ec7cea08bc3cbf8e23e9"} -2023-12-15T23:19:12.920Z INFO initializing dbft {"height": 4417, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:12.922Z debug frostfs-node/morph.go:229 new block {"index": 4416} -2023-12-15T23:19:13.096Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4416, "blockHeight": 4416, "took": "4.79305ms"} -2023-12-15T23:19:13.920Z INFO sending PrepareRequest {"height": 4417, "view": 0} -2023-12-15T23:19:13.920Z INFO sending Commit {"height": 4417, "view": 0} -2023-12-15T23:19:13.921Z INFO approving block {"height": 4417, "hash": "f63e844e53787eb0dea699c2bb4a898d486f209a26f74a18155a44db0e48d625", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5491b5ba14da4243893cc785983c672edb85f9adc5f010c21a8e9c4c52595d10"} -2023-12-15T23:19:13.922Z INFO initializing dbft {"height": 4418, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:13.923Z debug frostfs-node/morph.go:229 new block {"index": 4417} -2023-12-15T23:19:13.927Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:19:13.933Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:19:13.933Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:19:14.125Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4417, "blockHeight": 4417, "took": "32.561075ms"} -2023-12-15T23:19:14.922Z INFO sending PrepareRequest {"height": 4418, "view": 0} -2023-12-15T23:19:14.922Z INFO sending Commit {"height": 4418, "view": 0} -2023-12-15T23:19:14.923Z INFO approving block {"height": 4418, "hash": "478ceee8d845719119a22d76d1e2ee2e40fb52bbc1fc4fef55dfdced53a45090", "tx_count": 2, "merkle": "833e6ca4735dae53448d957ed2f605281fc9b7e240657ecab820e98cdbbf676d", "prev": "f63e844e53787eb0dea699c2bb4a898d486f209a26f74a18155a44db0e48d625"} -2023-12-15T23:19:14.925Z INFO runtime log {"tx": "b94eb05e65289aec6c85a314abaf97eb967e2a4edba0161bdeeeac2f3a7407b8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:19:14.925Z INFO runtime log {"tx": "b94eb05e65289aec6c85a314abaf97eb967e2a4edba0161bdeeeac2f3a7407b8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:19:14.928Z INFO initializing dbft {"height": 4419, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:14.930Z debug frostfs-node/morph.go:229 new block {"index": 4418} -2023-12-15T23:19:15.105Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4418, "blockHeight": 4418, "took": "11.397732ms"} -2023-12-15T23:19:15.925Z INFO sending PrepareRequest {"height": 4419, "view": 0} -2023-12-15T23:19:15.925Z INFO sending Commit {"height": 4419, "view": 0} -2023-12-15T23:19:15.926Z INFO approving block {"height": 4419, "hash": "88900118547e281f1ab7f558b224b798f6bfeef02fd447a699c477d96453bfcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "478ceee8d845719119a22d76d1e2ee2e40fb52bbc1fc4fef55dfdced53a45090"} -2023-12-15T23:19:15.928Z INFO initializing dbft {"height": 4420, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:15.929Z debug frostfs-node/morph.go:229 new block {"index": 4419} -2023-12-15T23:19:16.103Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4419, "blockHeight": 4419, "took": "9.001968ms"} -2023-12-15T23:19:16.927Z INFO sending PrepareRequest {"height": 4420, "view": 0} -2023-12-15T23:19:16.927Z INFO sending Commit {"height": 4420, "view": 0} -2023-12-15T23:19:16.928Z INFO approving block {"height": 4420, "hash": "70c1255f2b38839ba166efc2427d60c2062b9ca2fdb3c9d42ec621ce010251da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88900118547e281f1ab7f558b224b798f6bfeef02fd447a699c477d96453bfcf"} -2023-12-15T23:19:16.930Z INFO initializing dbft {"height": 4421, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:16.932Z debug frostfs-node/morph.go:229 new block {"index": 4420} -2023-12-15T23:19:17.103Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4420, "blockHeight": 4420, "took": "8.155655ms"} -2023-12-15T23:19:17.929Z INFO sending PrepareRequest {"height": 4421, "view": 0} -2023-12-15T23:19:17.929Z INFO sending Commit {"height": 4421, "view": 0} -2023-12-15T23:19:17.930Z INFO approving block {"height": 4421, "hash": "1727d04b82e652361624f52e4038640ced1f0339b978410e5e0bacc0cb46826b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70c1255f2b38839ba166efc2427d60c2062b9ca2fdb3c9d42ec621ce010251da"} -2023-12-15T23:19:17.931Z INFO initializing dbft {"height": 4422, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:17.932Z debug frostfs-node/morph.go:229 new block {"index": 4421} -2023-12-15T23:19:18.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4421, "blockHeight": 4421, "took": "6.372966ms"} -2023-12-15T23:19:18.931Z INFO sending PrepareRequest {"height": 4422, "view": 0} -2023-12-15T23:19:18.931Z INFO sending Commit {"height": 4422, "view": 0} -2023-12-15T23:19:18.931Z INFO approving block {"height": 4422, "hash": "0816dba877aa74d31db0f154a2242725273ecc38923e2df65439d6cd6b6f3705", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1727d04b82e652361624f52e4038640ced1f0339b978410e5e0bacc0cb46826b"} -2023-12-15T23:19:18.933Z INFO initializing dbft {"height": 4423, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:18.933Z debug frostfs-node/morph.go:229 new block {"index": 4422} -2023-12-15T23:19:19.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4422, "blockHeight": 4422, "took": "5.65957ms"} -2023-12-15T23:19:19.933Z INFO sending PrepareRequest {"height": 4423, "view": 0} -2023-12-15T23:19:19.933Z INFO sending Commit {"height": 4423, "view": 0} -2023-12-15T23:19:19.934Z INFO approving block {"height": 4423, "hash": "06d1f53cebabc37a05cbfa179cd80fba13a2ecf65bbc69ebef473c796b11351c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0816dba877aa74d31db0f154a2242725273ecc38923e2df65439d6cd6b6f3705"} -2023-12-15T23:19:19.935Z INFO initializing dbft {"height": 4424, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:19.936Z debug frostfs-node/morph.go:229 new block {"index": 4423} -2023-12-15T23:19:20.105Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4423, "blockHeight": 4423, "took": "7.428276ms"} -2023-12-15T23:19:20.935Z INFO sending PrepareRequest {"height": 4424, "view": 0} -2023-12-15T23:19:20.935Z INFO sending Commit {"height": 4424, "view": 0} -2023-12-15T23:19:20.936Z INFO approving block {"height": 4424, "hash": "841a05535de5dcf09a83f9d0c9341a7f4f50e13330226b61c214e0bdee99ada4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06d1f53cebabc37a05cbfa179cd80fba13a2ecf65bbc69ebef473c796b11351c"} -2023-12-15T23:19:20.938Z INFO initializing dbft {"height": 4425, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:20.938Z debug frostfs-node/morph.go:229 new block {"index": 4424} -2023-12-15T23:19:21.106Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4424, "blockHeight": 4424, "took": "7.305432ms"} -2023-12-15T23:19:21.937Z INFO sending PrepareRequest {"height": 4425, "view": 0} -2023-12-15T23:19:21.937Z INFO sending Commit {"height": 4425, "view": 0} -2023-12-15T23:19:21.938Z INFO approving block {"height": 4425, "hash": "3a8f65ba492aeb53c088224614289f4530074b099fed961bb677153b33fd1e0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "841a05535de5dcf09a83f9d0c9341a7f4f50e13330226b61c214e0bdee99ada4"} -2023-12-15T23:19:21.939Z INFO initializing dbft {"height": 4426, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:21.940Z debug frostfs-node/morph.go:229 new block {"index": 4425} -2023-12-15T23:19:22.107Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4425, "blockHeight": 4425, "took": "7.680248ms"} -2023-12-15T23:19:22.939Z INFO sending PrepareRequest {"height": 4426, "view": 0} -2023-12-15T23:19:22.939Z INFO sending Commit {"height": 4426, "view": 0} -2023-12-15T23:19:22.939Z INFO approving block {"height": 4426, "hash": "b873f6b65d64e23d261e9bb472d8dfe1025a982b1ac550901650b909eab9652f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a8f65ba492aeb53c088224614289f4530074b099fed961bb677153b33fd1e0f"} -2023-12-15T23:19:22.941Z INFO initializing dbft {"height": 4427, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:22.942Z debug frostfs-node/morph.go:229 new block {"index": 4426} -2023-12-15T23:19:23.107Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4426, "blockHeight": 4426, "took": "7.118448ms"} -2023-12-15T23:19:23.941Z INFO sending PrepareRequest {"height": 4427, "view": 0} -2023-12-15T23:19:23.942Z INFO sending Commit {"height": 4427, "view": 0} -2023-12-15T23:19:23.942Z INFO approving block {"height": 4427, "hash": "e8450850b78a204de0e22258aa7700924bd59bd8fa65de6c28d7ad277d5c7d94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b873f6b65d64e23d261e9bb472d8dfe1025a982b1ac550901650b909eab9652f"} -2023-12-15T23:19:23.943Z INFO initializing dbft {"height": 4428, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:23.945Z debug frostfs-node/morph.go:229 new block {"index": 4427} -2023-12-15T23:19:24.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4427, "blockHeight": 4427, "took": "8.833812ms"} -2023-12-15T23:19:24.943Z INFO sending PrepareRequest {"height": 4428, "view": 0} -2023-12-15T23:19:24.944Z INFO sending Commit {"height": 4428, "view": 0} -2023-12-15T23:19:24.944Z INFO approving block {"height": 4428, "hash": "606465bf7b519cd71fb60d959d7d7d986993bdb388dd36e4e9751f6b01079121", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8450850b78a204de0e22258aa7700924bd59bd8fa65de6c28d7ad277d5c7d94"} -2023-12-15T23:19:24.946Z INFO initializing dbft {"height": 4429, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:24.946Z debug frostfs-node/morph.go:229 new block {"index": 4428} -2023-12-15T23:19:25.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4428, "blockHeight": 4428, "took": "7.403385ms"} -2023-12-15T23:19:25.945Z INFO sending PrepareRequest {"height": 4429, "view": 0} -2023-12-15T23:19:25.946Z INFO sending Commit {"height": 4429, "view": 0} -2023-12-15T23:19:25.946Z INFO approving block {"height": 4429, "hash": "b00488f6041be83c802e06e9ba75550552ec6de319b1fbf532462a6aff6be08a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "606465bf7b519cd71fb60d959d7d7d986993bdb388dd36e4e9751f6b01079121"} -2023-12-15T23:19:25.948Z INFO initializing dbft {"height": 4430, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:25.949Z debug frostfs-node/morph.go:229 new block {"index": 4429} -2023-12-15T23:19:26.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4429, "blockHeight": 4429, "took": "7.129509ms"} -2023-12-15T23:19:26.948Z INFO sending PrepareRequest {"height": 4430, "view": 0} -2023-12-15T23:19:26.948Z INFO sending Commit {"height": 4430, "view": 0} -2023-12-15T23:19:26.949Z INFO approving block {"height": 4430, "hash": "3c63c6ca870a066622c0b7a7868d73e2f44bbb7f5b48fff68b34a603ea80870d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b00488f6041be83c802e06e9ba75550552ec6de319b1fbf532462a6aff6be08a"} -2023-12-15T23:19:26.950Z INFO initializing dbft {"height": 4431, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:26.951Z debug frostfs-node/morph.go:229 new block {"index": 4430} -2023-12-15T23:19:27.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4430, "blockHeight": 4430, "took": "6.598224ms"} -2023-12-15T23:19:27.950Z INFO sending PrepareRequest {"height": 4431, "view": 0} -2023-12-15T23:19:27.950Z INFO sending Commit {"height": 4431, "view": 0} -2023-12-15T23:19:27.950Z INFO approving block {"height": 4431, "hash": "b20f9f4b70da8b58d27a7cdb3210d625f96060cd15676f03646215cdfe36248a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c63c6ca870a066622c0b7a7868d73e2f44bbb7f5b48fff68b34a603ea80870d"} -2023-12-15T23:19:27.952Z INFO initializing dbft {"height": 4432, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:27.953Z debug frostfs-node/morph.go:229 new block {"index": 4431} -2023-12-15T23:19:28.113Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4431, "blockHeight": 4431, "took": "8.647828ms"} -2023-12-15T23:19:28.951Z INFO sending PrepareRequest {"height": 4432, "view": 0} -2023-12-15T23:19:28.952Z INFO sending Commit {"height": 4432, "view": 0} -2023-12-15T23:19:28.952Z INFO approving block {"height": 4432, "hash": "7c3d845001e08efd162709117260c7ed101b5c91fa5588fcf7d65d6b1aed02ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b20f9f4b70da8b58d27a7cdb3210d625f96060cd15676f03646215cdfe36248a"} -2023-12-15T23:19:28.954Z INFO initializing dbft {"height": 4433, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:28.955Z debug frostfs-node/morph.go:229 new block {"index": 4432} -2023-12-15T23:19:29.114Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4432, "blockHeight": 4432, "took": "8.380104ms"} -2023-12-15T23:19:29.953Z INFO sending PrepareRequest {"height": 4433, "view": 0} -2023-12-15T23:19:29.953Z INFO sending Commit {"height": 4433, "view": 0} -2023-12-15T23:19:29.954Z INFO approving block {"height": 4433, "hash": "2f1e1512e1a5c84c6dfa29986e5611a07864dad152ea9e4b276f299a30369541", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c3d845001e08efd162709117260c7ed101b5c91fa5588fcf7d65d6b1aed02ae"} -2023-12-15T23:19:29.955Z INFO initializing dbft {"height": 4434, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:29.956Z debug frostfs-node/morph.go:229 new block {"index": 4433} -2023-12-15T23:19:30.116Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4433, "blockHeight": 4433, "took": "9.943698ms"} -2023-12-15T23:19:30.955Z INFO sending PrepareRequest {"height": 4434, "view": 0} -2023-12-15T23:19:30.955Z INFO sending Commit {"height": 4434, "view": 0} -2023-12-15T23:19:30.956Z INFO approving block {"height": 4434, "hash": "1df8812c95ee738d6198fc94eebcf3bb913351446e6cf674b468434dd390da47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f1e1512e1a5c84c6dfa29986e5611a07864dad152ea9e4b276f299a30369541"} -2023-12-15T23:19:30.957Z INFO initializing dbft {"height": 4435, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:30.958Z debug frostfs-node/morph.go:229 new block {"index": 4434} -2023-12-15T23:19:31.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4434, "blockHeight": 4434, "took": "11.865653ms"} -2023-12-15T23:19:31.957Z INFO sending PrepareRequest {"height": 4435, "view": 0} -2023-12-15T23:19:31.957Z INFO sending Commit {"height": 4435, "view": 0} -2023-12-15T23:19:31.958Z INFO approving block {"height": 4435, "hash": "c01ae44f7915ebe85b5b4d9ab852561aed60875c3f123a6ad0850bcd90606865", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1df8812c95ee738d6198fc94eebcf3bb913351446e6cf674b468434dd390da47"} -2023-12-15T23:19:31.960Z INFO initializing dbft {"height": 4436, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:31.961Z debug frostfs-node/morph.go:229 new block {"index": 4435} -2023-12-15T23:19:32.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4435, "blockHeight": 4435, "took": "11.005671ms"} -2023-12-15T23:19:32.959Z INFO sending PrepareRequest {"height": 4436, "view": 0} -2023-12-15T23:19:32.959Z INFO sending Commit {"height": 4436, "view": 0} -2023-12-15T23:19:32.960Z INFO approving block {"height": 4436, "hash": "6d29e052cd903c4adc2eeb360160d4787713ce5a29a35ec5fed434c9d7f512d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c01ae44f7915ebe85b5b4d9ab852561aed60875c3f123a6ad0850bcd90606865"} -2023-12-15T23:19:32.962Z INFO initializing dbft {"height": 4437, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:32.962Z debug frostfs-node/morph.go:229 new block {"index": 4436} -2023-12-15T23:19:33.120Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4436, "blockHeight": 4436, "took": "10.770844ms"} -2023-12-15T23:19:33.961Z INFO sending PrepareRequest {"height": 4437, "view": 0} -2023-12-15T23:19:33.961Z INFO sending Commit {"height": 4437, "view": 0} -2023-12-15T23:19:33.962Z INFO approving block {"height": 4437, "hash": "4208f8c874f0a582419d2d671d5f150b2aadffe6ddeead449bba965a9ccd40a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d29e052cd903c4adc2eeb360160d4787713ce5a29a35ec5fed434c9d7f512d6"} -2023-12-15T23:19:33.963Z INFO initializing dbft {"height": 4438, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:33.964Z debug frostfs-node/morph.go:229 new block {"index": 4437} -2023-12-15T23:19:34.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4437, "blockHeight": 4437, "took": "8.071285ms"} -2023-12-15T23:19:34.963Z INFO sending PrepareRequest {"height": 4438, "view": 0} -2023-12-15T23:19:34.963Z INFO sending Commit {"height": 4438, "view": 0} -2023-12-15T23:19:34.964Z INFO approving block {"height": 4438, "hash": "b98236b3043bdbbcd932c846c5cb21514e2cc3cc56e9fbf97af2fa4da6b53ff4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4208f8c874f0a582419d2d671d5f150b2aadffe6ddeead449bba965a9ccd40a5"} -2023-12-15T23:19:34.965Z INFO initializing dbft {"height": 4439, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:34.966Z debug frostfs-node/morph.go:229 new block {"index": 4438} -2023-12-15T23:19:35.118Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4438, "blockHeight": 4438, "took": "6.632423ms"} -2023-12-15T23:19:35.966Z INFO sending PrepareRequest {"height": 4439, "view": 0} -2023-12-15T23:19:35.967Z INFO sending Commit {"height": 4439, "view": 0} -2023-12-15T23:19:35.967Z INFO approving block {"height": 4439, "hash": "b31523f8e0982bb105b4718704dd74435d6301f5f85db597d377db7de71e53ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b98236b3043bdbbcd932c846c5cb21514e2cc3cc56e9fbf97af2fa4da6b53ff4"} -2023-12-15T23:19:35.971Z INFO initializing dbft {"height": 4440, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:35.972Z debug frostfs-node/morph.go:229 new block {"index": 4439} -2023-12-15T23:19:36.121Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4439, "blockHeight": 4439, "took": "8.854328ms"} -2023-12-15T23:19:36.969Z INFO sending PrepareRequest {"height": 4440, "view": 0} -2023-12-15T23:19:36.969Z INFO sending Commit {"height": 4440, "view": 0} -2023-12-15T23:19:36.969Z INFO approving block {"height": 4440, "hash": "d555317ecda8e9f901df7e4a784bccbf1fa7f611e17362322ee0905053d1c697", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b31523f8e0982bb105b4718704dd74435d6301f5f85db597d377db7de71e53ae"} -2023-12-15T23:19:36.971Z INFO initializing dbft {"height": 4441, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:36.972Z debug frostfs-node/morph.go:229 new block {"index": 4440} -2023-12-15T23:19:37.120Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4440, "blockHeight": 4440, "took": "5.927863ms"} -2023-12-15T23:19:37.971Z INFO sending PrepareRequest {"height": 4441, "view": 0} -2023-12-15T23:19:37.971Z INFO sending Commit {"height": 4441, "view": 0} -2023-12-15T23:19:37.972Z INFO approving block {"height": 4441, "hash": "e48bc8352a607e0415284511606b8a6f4bc1c4944b83153c46ad0b3cb513af88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d555317ecda8e9f901df7e4a784bccbf1fa7f611e17362322ee0905053d1c697"} -2023-12-15T23:19:37.974Z INFO initializing dbft {"height": 4442, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:37.976Z debug frostfs-node/morph.go:229 new block {"index": 4441} -2023-12-15T23:19:38.122Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4441, "blockHeight": 4441, "took": "6.961673ms"} -2023-12-15T23:19:38.973Z INFO sending PrepareRequest {"height": 4442, "view": 0} -2023-12-15T23:19:38.973Z INFO sending Commit {"height": 4442, "view": 0} -2023-12-15T23:19:38.974Z INFO approving block {"height": 4442, "hash": "896f0eb16496ec8927ee5c47963f43cbe736b5e0ab32d91091eba414b893f91e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e48bc8352a607e0415284511606b8a6f4bc1c4944b83153c46ad0b3cb513af88"} -2023-12-15T23:19:38.976Z INFO initializing dbft {"height": 4443, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:38.976Z debug frostfs-node/morph.go:229 new block {"index": 4442} -2023-12-15T23:19:39.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4442, "blockHeight": 4442, "took": "10.533466ms"} -2023-12-15T23:19:39.975Z INFO sending PrepareRequest {"height": 4443, "view": 0} -2023-12-15T23:19:39.975Z INFO sending Commit {"height": 4443, "view": 0} -2023-12-15T23:19:39.976Z INFO approving block {"height": 4443, "hash": "647c5f0c276cdfc72fd553666e1368485d8732970e7a7dcec12637c58177cd66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "896f0eb16496ec8927ee5c47963f43cbe736b5e0ab32d91091eba414b893f91e"} -2023-12-15T23:19:39.978Z INFO initializing dbft {"height": 4444, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:39.979Z debug frostfs-node/morph.go:229 new block {"index": 4443} -2023-12-15T23:19:40.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4443, "blockHeight": 4443, "took": "10.3194ms"} -2023-12-15T23:19:40.977Z INFO sending PrepareRequest {"height": 4444, "view": 0} -2023-12-15T23:19:40.977Z INFO sending Commit {"height": 4444, "view": 0} -2023-12-15T23:19:40.978Z INFO approving block {"height": 4444, "hash": "4ce3e4dd84adf3cff22e3f4d3c41df6c1b94be2734a9651e8cd2767fc2bc667f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "647c5f0c276cdfc72fd553666e1368485d8732970e7a7dcec12637c58177cd66"} -2023-12-15T23:19:40.980Z INFO initializing dbft {"height": 4445, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:40.981Z debug frostfs-node/morph.go:229 new block {"index": 4444} -2023-12-15T23:19:41.127Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4444, "blockHeight": 4444, "took": "8.549578ms"} -2023-12-15T23:19:41.979Z INFO sending PrepareRequest {"height": 4445, "view": 0} -2023-12-15T23:19:41.979Z INFO sending Commit {"height": 4445, "view": 0} -2023-12-15T23:19:41.980Z INFO approving block {"height": 4445, "hash": "d17928318125097b1a48d867d7f707e228cf79a815c12924de301f79a7ae77ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ce3e4dd84adf3cff22e3f4d3c41df6c1b94be2734a9651e8cd2767fc2bc667f"} -2023-12-15T23:19:41.981Z INFO initializing dbft {"height": 4446, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:41.982Z debug frostfs-node/morph.go:229 new block {"index": 4445} -2023-12-15T23:19:42.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4445, "blockHeight": 4445, "took": "6.801768ms"} -2023-12-15T23:19:42.982Z INFO sending PrepareRequest {"height": 4446, "view": 0} -2023-12-15T23:19:42.982Z INFO sending Commit {"height": 4446, "view": 0} -2023-12-15T23:19:42.983Z INFO approving block {"height": 4446, "hash": "3e791a18dac4ba9600a9dbf0398dabaf2132a5afd3b03f45ac8ee914c0815e79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d17928318125097b1a48d867d7f707e228cf79a815c12924de301f79a7ae77ba"} -2023-12-15T23:19:42.986Z INFO initializing dbft {"height": 4447, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:42.987Z debug frostfs-node/morph.go:229 new block {"index": 4446} -2023-12-15T23:19:43.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4446, "blockHeight": 4446, "took": "7.089406ms"} -2023-12-15T23:19:43.984Z INFO sending PrepareRequest {"height": 4447, "view": 0} -2023-12-15T23:19:43.984Z INFO sending Commit {"height": 4447, "view": 0} -2023-12-15T23:19:43.984Z INFO approving block {"height": 4447, "hash": "576a3dcdd6909dca57097766d0e4a8151d216dd20233b5a708587ee4b3507d8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e791a18dac4ba9600a9dbf0398dabaf2132a5afd3b03f45ac8ee914c0815e79"} -2023-12-15T23:19:43.986Z INFO initializing dbft {"height": 4448, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:43.987Z debug frostfs-node/morph.go:229 new block {"index": 4447} -2023-12-15T23:19:44.131Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4447, "blockHeight": 4447, "took": "8.921091ms"} -2023-12-15T23:19:44.986Z INFO sending PrepareRequest {"height": 4448, "view": 0} -2023-12-15T23:19:44.986Z INFO sending Commit {"height": 4448, "view": 0} -2023-12-15T23:19:44.987Z INFO approving block {"height": 4448, "hash": "decc3228b9516879f336e0a624f86df954244b4416da07af41182cfb82b15f08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "576a3dcdd6909dca57097766d0e4a8151d216dd20233b5a708587ee4b3507d8e"} -2023-12-15T23:19:44.988Z INFO initializing dbft {"height": 4449, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:44.989Z debug frostfs-node/morph.go:229 new block {"index": 4448} -2023-12-15T23:19:45.135Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4448, "blockHeight": 4448, "took": "11.530902ms"} -2023-12-15T23:19:45.988Z INFO sending PrepareRequest {"height": 4449, "view": 0} -2023-12-15T23:19:45.988Z INFO sending Commit {"height": 4449, "view": 0} -2023-12-15T23:19:45.989Z INFO approving block {"height": 4449, "hash": "d156a36044bfa6b0803366054f1391ed483dfdc9b6b8041f423b1d1bdc5592ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "decc3228b9516879f336e0a624f86df954244b4416da07af41182cfb82b15f08"} -2023-12-15T23:19:45.991Z INFO initializing dbft {"height": 4450, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:45.992Z debug frostfs-node/morph.go:229 new block {"index": 4449} -2023-12-15T23:19:46.130Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4449, "blockHeight": 4449, "took": "6.696653ms"} -2023-12-15T23:19:46.990Z INFO sending PrepareRequest {"height": 4450, "view": 0} -2023-12-15T23:19:46.990Z INFO sending Commit {"height": 4450, "view": 0} -2023-12-15T23:19:46.990Z INFO approving block {"height": 4450, "hash": "579eb4c760f8d741cc8f3525b3c172ef1320dfbe59e580d3d2fbde60dcf94d0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d156a36044bfa6b0803366054f1391ed483dfdc9b6b8041f423b1d1bdc5592ef"} -2023-12-15T23:19:46.992Z INFO initializing dbft {"height": 4451, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:46.993Z debug frostfs-node/morph.go:229 new block {"index": 4450} -2023-12-15T23:19:47.135Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4450, "blockHeight": 4450, "took": "10.426417ms"} -2023-12-15T23:19:47.992Z INFO sending PrepareRequest {"height": 4451, "view": 0} -2023-12-15T23:19:47.992Z INFO sending Commit {"height": 4451, "view": 0} -2023-12-15T23:19:47.992Z INFO approving block {"height": 4451, "hash": "eebaf705c37f0046562bac1db19a148a0657921c4cf9af3b5481e17b888521a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "579eb4c760f8d741cc8f3525b3c172ef1320dfbe59e580d3d2fbde60dcf94d0b"} -2023-12-15T23:19:47.994Z INFO initializing dbft {"height": 4452, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:47.995Z debug frostfs-node/morph.go:229 new block {"index": 4451} -2023-12-15T23:19:48.133Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4451, "blockHeight": 4451, "took": "7.113028ms"} -2023-12-15T23:19:48.994Z INFO sending PrepareRequest {"height": 4452, "view": 0} -2023-12-15T23:19:48.995Z INFO sending Commit {"height": 4452, "view": 0} -2023-12-15T23:19:48.995Z INFO approving block {"height": 4452, "hash": "f7620a5b8752f9aa9647b1f430be1aecdc4bca3d270fcc31502021423d2665b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eebaf705c37f0046562bac1db19a148a0657921c4cf9af3b5481e17b888521a8"} -2023-12-15T23:19:48.996Z INFO initializing dbft {"height": 4453, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:48.998Z debug frostfs-node/morph.go:229 new block {"index": 4452} -2023-12-15T23:19:49.135Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4452, "blockHeight": 4452, "took": "7.575841ms"} -2023-12-15T23:19:49.996Z INFO sending PrepareRequest {"height": 4453, "view": 0} -2023-12-15T23:19:49.996Z INFO sending Commit {"height": 4453, "view": 0} -2023-12-15T23:19:49.997Z INFO approving block {"height": 4453, "hash": "be411f4eb7fc0c48270f6111d2175a5b041463ca041cbea63ebef0b62513ce11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7620a5b8752f9aa9647b1f430be1aecdc4bca3d270fcc31502021423d2665b7"} -2023-12-15T23:19:49.998Z INFO initializing dbft {"height": 4454, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:49.999Z debug frostfs-node/morph.go:229 new block {"index": 4453} -2023-12-15T23:19:50.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4453, "blockHeight": 4453, "took": "13.600324ms"} -2023-12-15T23:19:50.999Z INFO sending PrepareRequest {"height": 4454, "view": 0} -2023-12-15T23:19:50.999Z INFO sending Commit {"height": 4454, "view": 0} -2023-12-15T23:19:51.000Z INFO approving block {"height": 4454, "hash": "9076113a3b7fda02322bc9caf31af1728ba10809c3a9fde70f1d7379f37295aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be411f4eb7fc0c48270f6111d2175a5b041463ca041cbea63ebef0b62513ce11"} -2023-12-15T23:19:51.002Z INFO initializing dbft {"height": 4455, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:51.003Z debug frostfs-node/morph.go:229 new block {"index": 4454} -2023-12-15T23:19:51.140Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4454, "blockHeight": 4454, "took": "11.085576ms"} -2023-12-15T23:19:52.001Z INFO sending PrepareRequest {"height": 4455, "view": 0} -2023-12-15T23:19:52.001Z INFO sending Commit {"height": 4455, "view": 0} -2023-12-15T23:19:52.002Z INFO approving block {"height": 4455, "hash": "6e6446a53b1b26fd139d86a480c25c48617b957d5b32c1fe91e0ef6febe19224", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9076113a3b7fda02322bc9caf31af1728ba10809c3a9fde70f1d7379f37295aa"} -2023-12-15T23:19:52.004Z INFO initializing dbft {"height": 4456, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:52.004Z debug frostfs-node/morph.go:229 new block {"index": 4455} -2023-12-15T23:19:52.137Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4455, "blockHeight": 4455, "took": "6.85192ms"} -2023-12-15T23:19:53.003Z INFO sending PrepareRequest {"height": 4456, "view": 0} -2023-12-15T23:19:53.003Z INFO sending Commit {"height": 4456, "view": 0} -2023-12-15T23:19:53.004Z INFO approving block {"height": 4456, "hash": "fddea03972db1052890ee4c87cdc769ef88fad7ef8a94bd9db64a84ac3b9ae79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e6446a53b1b26fd139d86a480c25c48617b957d5b32c1fe91e0ef6febe19224"} -2023-12-15T23:19:53.006Z INFO initializing dbft {"height": 4457, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:53.007Z debug frostfs-node/morph.go:229 new block {"index": 4456} -2023-12-15T23:19:53.137Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4456, "blockHeight": 4456, "took": "5.592233ms"} -2023-12-15T23:19:54.005Z INFO sending PrepareRequest {"height": 4457, "view": 0} -2023-12-15T23:19:54.006Z INFO sending Commit {"height": 4457, "view": 0} -2023-12-15T23:19:54.006Z INFO approving block {"height": 4457, "hash": "56097299e539de4bacb685495ddc7c81b445604df5fefcb61b8d0d267e6b325d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fddea03972db1052890ee4c87cdc769ef88fad7ef8a94bd9db64a84ac3b9ae79"} -2023-12-15T23:19:54.008Z INFO initializing dbft {"height": 4458, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:54.010Z debug frostfs-node/morph.go:229 new block {"index": 4457} -2023-12-15T23:19:54.143Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4457, "blockHeight": 4457, "took": "10.901282ms"} -2023-12-15T23:19:55.008Z INFO sending PrepareRequest {"height": 4458, "view": 0} -2023-12-15T23:19:55.008Z INFO sending Commit {"height": 4458, "view": 0} -2023-12-15T23:19:55.009Z INFO approving block {"height": 4458, "hash": "346a5e66251c9575e50d02a4d356cd5bebc0019e2e208ab3fb4a90cf33136f73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56097299e539de4bacb685495ddc7c81b445604df5fefcb61b8d0d267e6b325d"} -2023-12-15T23:19:55.011Z INFO initializing dbft {"height": 4459, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:55.012Z debug frostfs-node/morph.go:229 new block {"index": 4458} -2023-12-15T23:19:55.018Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 19, "iteration": 1, "error": "no data for 0 iteration in 19 epoch for consumers's trusts"} -2023-12-15T23:19:55.020Z info settlement/calls.go:61 start basic income collection {"epoch": 19} -2023-12-15T23:19:55.139Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4458, "blockHeight": 4458, "took": "5.407848ms"} -2023-12-15T23:19:56.010Z INFO sending PrepareRequest {"height": 4459, "view": 0} -2023-12-15T23:19:56.011Z INFO sending Commit {"height": 4459, "view": 0} -2023-12-15T23:19:56.011Z INFO approving block {"height": 4459, "hash": "a0f42d13cfab58546d898bd9cc78f8a278e999415951012ff0cb86e5d5cef84c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "346a5e66251c9575e50d02a4d356cd5bebc0019e2e208ab3fb4a90cf33136f73"} -2023-12-15T23:19:56.013Z INFO initializing dbft {"height": 4460, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:56.014Z debug frostfs-node/morph.go:229 new block {"index": 4459} -2023-12-15T23:19:56.143Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4459, "blockHeight": 4459, "took": "8.855778ms"} -2023-12-15T23:19:57.012Z INFO sending PrepareRequest {"height": 4460, "view": 0} -2023-12-15T23:19:57.012Z INFO sending Commit {"height": 4460, "view": 0} -2023-12-15T23:19:57.013Z INFO approving block {"height": 4460, "hash": "94ab5b2dc625f6a42b11ac2b151c24e204dcefef44c17be265823b12dd33b81e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0f42d13cfab58546d898bd9cc78f8a278e999415951012ff0cb86e5d5cef84c"} -2023-12-15T23:19:57.014Z INFO initializing dbft {"height": 4461, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:57.015Z debug frostfs-node/morph.go:229 new block {"index": 4460} -2023-12-15T23:19:57.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4460, "blockHeight": 4460, "took": "11.276673ms"} -2023-12-15T23:19:58.014Z INFO sending PrepareRequest {"height": 4461, "view": 0} -2023-12-15T23:19:58.014Z INFO sending Commit {"height": 4461, "view": 0} -2023-12-15T23:19:58.015Z INFO approving block {"height": 4461, "hash": "14d7514ac164735988e8a77a0431f88bfbc76ea1789acfc778e61fb2dd830746", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94ab5b2dc625f6a42b11ac2b151c24e204dcefef44c17be265823b12dd33b81e"} -2023-12-15T23:19:58.016Z INFO initializing dbft {"height": 4462, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:58.017Z debug frostfs-node/morph.go:229 new block {"index": 4461} -2023-12-15T23:19:58.145Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4461, "blockHeight": 4461, "took": "8.440328ms"} -2023-12-15T23:19:59.016Z INFO sending PrepareRequest {"height": 4462, "view": 0} -2023-12-15T23:19:59.017Z INFO sending Commit {"height": 4462, "view": 0} -2023-12-15T23:19:59.017Z INFO approving block {"height": 4462, "hash": "64d3ab434bf35870a27dc55e14655c45c0268914a125ace1e5a358fd73d9eb2a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14d7514ac164735988e8a77a0431f88bfbc76ea1789acfc778e61fb2dd830746"} -2023-12-15T23:19:59.019Z INFO initializing dbft {"height": 4463, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:19:59.019Z debug frostfs-node/morph.go:229 new block {"index": 4462} -2023-12-15T23:19:59.145Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4462, "blockHeight": 4462, "took": "7.388616ms"} -2023-12-15T23:20:00.019Z INFO sending PrepareRequest {"height": 4463, "view": 0} -2023-12-15T23:20:00.020Z INFO sending Commit {"height": 4463, "view": 0} -2023-12-15T23:20:00.020Z INFO approving block {"height": 4463, "hash": "0fe11090604dee8b22d44e55ea3b38c1c07f7b7521e841421b50ef1c7b6d7091", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64d3ab434bf35870a27dc55e14655c45c0268914a125ace1e5a358fd73d9eb2a"} -2023-12-15T23:20:00.022Z INFO initializing dbft {"height": 4464, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:00.023Z debug frostfs-node/morph.go:229 new block {"index": 4463} -2023-12-15T23:20:00.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4463, "blockHeight": 4463, "took": "12.550037ms"} -2023-12-15T23:20:01.022Z INFO sending PrepareRequest {"height": 4464, "view": 0} -2023-12-15T23:20:01.023Z INFO sending Commit {"height": 4464, "view": 0} -2023-12-15T23:20:01.023Z INFO approving block {"height": 4464, "hash": "8b742ee52a27d85b5171793f2a3697090cce7352ed06ffe9726d103b5c87345d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fe11090604dee8b22d44e55ea3b38c1c07f7b7521e841421b50ef1c7b6d7091"} -2023-12-15T23:20:01.025Z INFO initializing dbft {"height": 4465, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:01.026Z debug frostfs-node/morph.go:229 new block {"index": 4464} -2023-12-15T23:20:01.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4464, "blockHeight": 4464, "took": "8.26364ms"} -2023-12-15T23:20:02.024Z INFO sending PrepareRequest {"height": 4465, "view": 0} -2023-12-15T23:20:02.025Z INFO sending Commit {"height": 4465, "view": 0} -2023-12-15T23:20:02.025Z INFO approving block {"height": 4465, "hash": "28acaaf1f341da54d008c34fc0532e01fd9f37db6effb050a2eb5d9801e14f41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b742ee52a27d85b5171793f2a3697090cce7352ed06ffe9726d103b5c87345d"} -2023-12-15T23:20:02.027Z INFO initializing dbft {"height": 4466, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:02.028Z debug frostfs-node/morph.go:229 new block {"index": 4465} -2023-12-15T23:20:02.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4465, "blockHeight": 4465, "took": "10.372766ms"} -2023-12-15T23:20:03.026Z INFO sending PrepareRequest {"height": 4466, "view": 0} -2023-12-15T23:20:03.027Z INFO sending Commit {"height": 4466, "view": 0} -2023-12-15T23:20:03.027Z INFO approving block {"height": 4466, "hash": "fb6fceb65574616b5a69fc50fc6d3912c9799d6cd6eb224746078c69a4b60528", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28acaaf1f341da54d008c34fc0532e01fd9f37db6effb050a2eb5d9801e14f41"} -2023-12-15T23:20:03.029Z INFO initializing dbft {"height": 4467, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:03.030Z debug frostfs-node/morph.go:229 new block {"index": 4466} -2023-12-15T23:20:03.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4466, "blockHeight": 4466, "took": "6.932034ms"} -2023-12-15T23:20:04.028Z INFO sending PrepareRequest {"height": 4467, "view": 0} -2023-12-15T23:20:04.029Z INFO sending Commit {"height": 4467, "view": 0} -2023-12-15T23:20:04.029Z INFO approving block {"height": 4467, "hash": "ff6d1c68079bbfefeb71d488a3fa125e60cd8b5ea74e816b3507e6b77e8a3237", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb6fceb65574616b5a69fc50fc6d3912c9799d6cd6eb224746078c69a4b60528"} -2023-12-15T23:20:04.031Z INFO initializing dbft {"height": 4468, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:04.031Z debug frostfs-node/morph.go:229 new block {"index": 4467} -2023-12-15T23:20:04.034Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:20:04.036Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:20:04.036Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:20:04.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4467, "blockHeight": 4467, "took": "6.551161ms"} -2023-12-15T23:20:05.030Z INFO sending PrepareRequest {"height": 4468, "view": 0} -2023-12-15T23:20:05.030Z INFO sending Commit {"height": 4468, "view": 0} -2023-12-15T23:20:05.031Z INFO approving block {"height": 4468, "hash": "2d2f691480deb73889898bd35b14504c0a13212821a0bc148fc5e31b2c557ae1", "tx_count": 2, "merkle": "8b05f6e5b50c3f11aa718465cf100bf644d00edc5581a062cd4420989b4813ff", "prev": "ff6d1c68079bbfefeb71d488a3fa125e60cd8b5ea74e816b3507e6b77e8a3237"} -2023-12-15T23:20:05.032Z INFO runtime log {"tx": "768fe3e07faed5ef37570f0418bf3bdcb12dbe145a105f8600f3e69dd99c059d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:20:05.032Z INFO runtime log {"tx": "768fe3e07faed5ef37570f0418bf3bdcb12dbe145a105f8600f3e69dd99c059d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:20:05.033Z INFO initializing dbft {"height": 4469, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:05.034Z debug frostfs-node/morph.go:229 new block {"index": 4468} -2023-12-15T23:20:05.152Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 4468, "blockHeight": 4468, "took": "8.974842ms"} -2023-12-15T23:20:06.032Z INFO sending PrepareRequest {"height": 4469, "view": 0} -2023-12-15T23:20:06.033Z INFO sending Commit {"height": 4469, "view": 0} -2023-12-15T23:20:06.033Z INFO approving block {"height": 4469, "hash": "60e202d472da619a9a8e04cfd8475900122774bf3fa3989f110e359afaeedfd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d2f691480deb73889898bd35b14504c0a13212821a0bc148fc5e31b2c557ae1"} -2023-12-15T23:20:06.035Z INFO initializing dbft {"height": 4470, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:06.036Z debug frostfs-node/morph.go:229 new block {"index": 4469} -2023-12-15T23:20:06.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4469, "blockHeight": 4469, "took": "7.379884ms"} -2023-12-15T23:20:07.034Z INFO sending PrepareRequest {"height": 4470, "view": 0} -2023-12-15T23:20:07.035Z INFO sending Commit {"height": 4470, "view": 0} -2023-12-15T23:20:07.035Z INFO approving block {"height": 4470, "hash": "495b21c6e31b75ebb0cca409be485f18da7fe4b2e1be0bb6314ba1eb4811fac8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60e202d472da619a9a8e04cfd8475900122774bf3fa3989f110e359afaeedfd4"} -2023-12-15T23:20:07.036Z INFO initializing dbft {"height": 4471, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:07.037Z debug frostfs-node/morph.go:229 new block {"index": 4470} -2023-12-15T23:20:07.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4470, "blockHeight": 4470, "took": "6.796858ms"} -2023-12-15T23:20:08.037Z INFO sending PrepareRequest {"height": 4471, "view": 0} -2023-12-15T23:20:08.037Z INFO sending Commit {"height": 4471, "view": 0} -2023-12-15T23:20:08.037Z INFO approving block {"height": 4471, "hash": "a6cbac4b7c87f2624a90721b77afe70a9a365b69d5eb0a6fc3bd5acd1df89370", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "495b21c6e31b75ebb0cca409be485f18da7fe4b2e1be0bb6314ba1eb4811fac8"} -2023-12-15T23:20:08.039Z INFO initializing dbft {"height": 4472, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:08.039Z debug frostfs-node/morph.go:229 new block {"index": 4471} -2023-12-15T23:20:08.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4471, "blockHeight": 4471, "took": "6.360015ms"} -2023-12-15T23:20:09.039Z INFO sending PrepareRequest {"height": 4472, "view": 0} -2023-12-15T23:20:09.039Z INFO sending Commit {"height": 4472, "view": 0} -2023-12-15T23:20:09.039Z INFO approving block {"height": 4472, "hash": "a1dc1bb4a04dcaddffceaf598861046c3e4e7d1c2fcf7a15ed5f2811da5e29a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6cbac4b7c87f2624a90721b77afe70a9a365b69d5eb0a6fc3bd5acd1df89370"} -2023-12-15T23:20:09.041Z INFO initializing dbft {"height": 4473, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:09.042Z debug frostfs-node/morph.go:229 new block {"index": 4472} -2023-12-15T23:20:09.155Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4472, "blockHeight": 4472, "took": "6.86256ms"} -2023-12-15T23:20:10.041Z INFO sending PrepareRequest {"height": 4473, "view": 0} -2023-12-15T23:20:10.041Z INFO sending Commit {"height": 4473, "view": 0} -2023-12-15T23:20:10.042Z INFO approving block {"height": 4473, "hash": "b06d4dd87cc96d05f0271356c7fc6ea64043b9f8468c225fa29dcc9dec39427a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1dc1bb4a04dcaddffceaf598861046c3e4e7d1c2fcf7a15ed5f2811da5e29a1"} -2023-12-15T23:20:10.043Z INFO initializing dbft {"height": 4474, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:10.044Z debug frostfs-node/morph.go:229 new block {"index": 4473} -2023-12-15T23:20:10.154Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4473, "blockHeight": 4473, "took": "4.902262ms"} -2023-12-15T23:20:11.043Z INFO sending PrepareRequest {"height": 4474, "view": 0} -2023-12-15T23:20:11.043Z INFO sending Commit {"height": 4474, "view": 0} -2023-12-15T23:20:11.044Z INFO approving block {"height": 4474, "hash": "fafde330c12bb6ff60db29a0166a7478927535e63be3eca3ccb9dbb752d6c8ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b06d4dd87cc96d05f0271356c7fc6ea64043b9f8468c225fa29dcc9dec39427a"} -2023-12-15T23:20:11.046Z INFO initializing dbft {"height": 4475, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:11.047Z debug frostfs-node/morph.go:229 new block {"index": 4474} -2023-12-15T23:20:11.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4474, "blockHeight": 4474, "took": "11.233187ms"} -2023-12-15T23:20:12.045Z INFO sending PrepareRequest {"height": 4475, "view": 0} -2023-12-15T23:20:12.045Z INFO sending Commit {"height": 4475, "view": 0} -2023-12-15T23:20:12.045Z INFO approving block {"height": 4475, "hash": "e7e614aaeae1519ff4f9d68ddd3ce9f3accc8b78e087671402fd67e030373cc9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fafde330c12bb6ff60db29a0166a7478927535e63be3eca3ccb9dbb752d6c8ce"} -2023-12-15T23:20:12.047Z INFO initializing dbft {"height": 4476, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:12.048Z debug frostfs-node/morph.go:229 new block {"index": 4475} -2023-12-15T23:20:12.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4475, "blockHeight": 4475, "took": "7.522539ms"} -2023-12-15T23:20:13.047Z INFO sending PrepareRequest {"height": 4476, "view": 0} -2023-12-15T23:20:13.047Z INFO sending Commit {"height": 4476, "view": 0} -2023-12-15T23:20:13.047Z INFO approving block {"height": 4476, "hash": "1074fe61656021d6bcb6b8fd8b10b4a99ac3b56a3d0df9ceef5cc84c963c6a1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7e614aaeae1519ff4f9d68ddd3ce9f3accc8b78e087671402fd67e030373cc9"} -2023-12-15T23:20:13.049Z INFO initializing dbft {"height": 4477, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:13.050Z debug frostfs-node/morph.go:229 new block {"index": 4476} -2023-12-15T23:20:13.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4476, "blockHeight": 4476, "took": "6.866595ms"} -2023-12-15T23:20:14.048Z INFO sending PrepareRequest {"height": 4477, "view": 0} -2023-12-15T23:20:14.049Z INFO sending Commit {"height": 4477, "view": 0} -2023-12-15T23:20:14.049Z INFO approving block {"height": 4477, "hash": "c46c37140069f499f9ef45fe9462b43385756f64a7315b55a812b2c285d3fe66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1074fe61656021d6bcb6b8fd8b10b4a99ac3b56a3d0df9ceef5cc84c963c6a1b"} -2023-12-15T23:20:14.052Z INFO initializing dbft {"height": 4478, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:14.053Z debug frostfs-node/morph.go:229 new block {"index": 4477} -2023-12-15T23:20:14.160Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4477, "blockHeight": 4477, "took": "6.914631ms"} -2023-12-15T23:20:15.050Z INFO sending PrepareRequest {"height": 4478, "view": 0} -2023-12-15T23:20:15.051Z INFO sending Commit {"height": 4478, "view": 0} -2023-12-15T23:20:15.051Z INFO approving block {"height": 4478, "hash": "43c92071a0c829472e5869715fcc6a2a6489344b03ba76e23f8ed18b5043050f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c46c37140069f499f9ef45fe9462b43385756f64a7315b55a812b2c285d3fe66"} -2023-12-15T23:20:15.052Z INFO initializing dbft {"height": 4479, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:15.053Z debug frostfs-node/morph.go:229 new block {"index": 4478} -2023-12-15T23:20:15.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4478, "blockHeight": 4478, "took": "5.84269ms"} -2023-12-15T23:20:16.052Z INFO sending PrepareRequest {"height": 4479, "view": 0} -2023-12-15T23:20:16.053Z INFO sending Commit {"height": 4479, "view": 0} -2023-12-15T23:20:16.053Z INFO approving block {"height": 4479, "hash": "e8f083ce660097ded77e8865dd583d300eecca91d453da3a76053027a2f27fae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43c92071a0c829472e5869715fcc6a2a6489344b03ba76e23f8ed18b5043050f"} -2023-12-15T23:20:16.054Z INFO initializing dbft {"height": 4480, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:16.056Z debug frostfs-node/morph.go:229 new block {"index": 4479} -2023-12-15T23:20:16.160Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4479, "blockHeight": 4479, "took": "5.371426ms"} -2023-12-15T23:20:17.054Z INFO sending PrepareRequest {"height": 4480, "view": 0} -2023-12-15T23:20:17.054Z INFO sending Commit {"height": 4480, "view": 0} -2023-12-15T23:20:17.055Z INFO approving block {"height": 4480, "hash": "ef4350a395ceb3f7cca1a80acb0762186b109a3a70ed6e4bbae08e6ade29a3ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8f083ce660097ded77e8865dd583d300eecca91d453da3a76053027a2f27fae"} -2023-12-15T23:20:17.056Z INFO initializing dbft {"height": 4481, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:17.057Z debug frostfs-node/morph.go:229 new block {"index": 4480} -2023-12-15T23:20:17.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4480, "blockHeight": 4480, "took": "5.1523ms"} -2023-12-15T23:20:18.057Z INFO sending PrepareRequest {"height": 4481, "view": 0} -2023-12-15T23:20:18.057Z INFO sending Commit {"height": 4481, "view": 0} -2023-12-15T23:20:18.057Z INFO approving block {"height": 4481, "hash": "91b2f68782c627b3776079c9d609841d7cbbe030b810ab8155b3f93b4e359e50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef4350a395ceb3f7cca1a80acb0762186b109a3a70ed6e4bbae08e6ade29a3ef"} -2023-12-15T23:20:18.059Z INFO initializing dbft {"height": 4482, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:18.060Z debug frostfs-node/morph.go:229 new block {"index": 4481} -2023-12-15T23:20:18.164Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4481, "blockHeight": 4481, "took": "7.218115ms"} -2023-12-15T23:20:19.059Z INFO sending PrepareRequest {"height": 4482, "view": 0} -2023-12-15T23:20:19.059Z INFO sending Commit {"height": 4482, "view": 0} -2023-12-15T23:20:19.060Z INFO approving block {"height": 4482, "hash": "2ffca31a32f09709cb3973c067988935e12221ec42b2443b5494b2078ff48c39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91b2f68782c627b3776079c9d609841d7cbbe030b810ab8155b3f93b4e359e50"} -2023-12-15T23:20:19.062Z INFO initializing dbft {"height": 4483, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:19.063Z debug frostfs-node/morph.go:229 new block {"index": 4482} -2023-12-15T23:20:19.165Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4482, "blockHeight": 4482, "took": "7.161804ms"} -2023-12-15T23:20:20.061Z INFO sending PrepareRequest {"height": 4483, "view": 0} -2023-12-15T23:20:20.062Z INFO sending Commit {"height": 4483, "view": 0} -2023-12-15T23:20:20.062Z INFO approving block {"height": 4483, "hash": "19b29ce332449a757bb45d902dca337ee506b8caa707d3fbfefa570d9ad875d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ffca31a32f09709cb3973c067988935e12221ec42b2443b5494b2078ff48c39"} -2023-12-15T23:20:20.064Z INFO initializing dbft {"height": 4484, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:20.065Z debug frostfs-node/morph.go:229 new block {"index": 4483} -2023-12-15T23:20:20.166Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4483, "blockHeight": 4483, "took": "6.819532ms"} -2023-12-15T23:20:21.064Z INFO sending PrepareRequest {"height": 4484, "view": 0} -2023-12-15T23:20:21.064Z INFO sending Commit {"height": 4484, "view": 0} -2023-12-15T23:20:21.065Z INFO approving block {"height": 4484, "hash": "5263bda671b930e2c0c8714191ddff15b679cccdde3199739997d37e05a5b9df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19b29ce332449a757bb45d902dca337ee506b8caa707d3fbfefa570d9ad875d0"} -2023-12-15T23:20:21.066Z INFO initializing dbft {"height": 4485, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:21.068Z debug frostfs-node/morph.go:229 new block {"index": 4484} -2023-12-15T23:20:21.167Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4484, "blockHeight": 4484, "took": "7.49133ms"} -2023-12-15T23:20:22.066Z INFO sending PrepareRequest {"height": 4485, "view": 0} -2023-12-15T23:20:22.066Z INFO sending Commit {"height": 4485, "view": 0} -2023-12-15T23:20:22.066Z INFO approving block {"height": 4485, "hash": "39f2d7be5e14cb89375250e941fe3438ae2e40d152bf01eaf2f153b9a72912f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5263bda671b930e2c0c8714191ddff15b679cccdde3199739997d37e05a5b9df"} -2023-12-15T23:20:22.068Z INFO initializing dbft {"height": 4486, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:22.069Z debug frostfs-node/morph.go:229 new block {"index": 4485} -2023-12-15T23:20:22.166Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4485, "blockHeight": 4485, "took": "5.105766ms"} -2023-12-15T23:20:23.068Z INFO sending PrepareRequest {"height": 4486, "view": 0} -2023-12-15T23:20:23.069Z INFO sending Commit {"height": 4486, "view": 0} -2023-12-15T23:20:23.070Z INFO approving block {"height": 4486, "hash": "be1071c01a5cd64c5c448147f2195d714af811ecc89c2760b8ed3b3e99e94bb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39f2d7be5e14cb89375250e941fe3438ae2e40d152bf01eaf2f153b9a72912f7"} -2023-12-15T23:20:23.072Z INFO initializing dbft {"height": 4487, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:23.073Z debug frostfs-node/morph.go:229 new block {"index": 4486} -2023-12-15T23:20:23.168Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4486, "blockHeight": 4486, "took": "6.717092ms"} -2023-12-15T23:20:24.071Z INFO sending PrepareRequest {"height": 4487, "view": 0} -2023-12-15T23:20:24.071Z INFO sending Commit {"height": 4487, "view": 0} -2023-12-15T23:20:24.071Z INFO approving block {"height": 4487, "hash": "47a19058d774690702c40762bae1923730934f2bc2452581ec683c33a7651506", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be1071c01a5cd64c5c448147f2195d714af811ecc89c2760b8ed3b3e99e94bb7"} -2023-12-15T23:20:24.073Z INFO initializing dbft {"height": 4488, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:24.074Z debug frostfs-node/morph.go:229 new block {"index": 4487} -2023-12-15T23:20:24.169Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4487, "blockHeight": 4487, "took": "6.485673ms"} -2023-12-15T23:20:25.073Z INFO sending PrepareRequest {"height": 4488, "view": 0} -2023-12-15T23:20:25.074Z INFO sending Commit {"height": 4488, "view": 0} -2023-12-15T23:20:25.074Z INFO approving block {"height": 4488, "hash": "13a61bb1454c73e465dacc9b253c167798b1af77df6a014e217604f1574bfc3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47a19058d774690702c40762bae1923730934f2bc2452581ec683c33a7651506"} -2023-12-15T23:20:25.076Z INFO initializing dbft {"height": 4489, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:25.076Z debug frostfs-node/morph.go:229 new block {"index": 4488} -2023-12-15T23:20:25.170Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4488, "blockHeight": 4488, "took": "6.501059ms"} -2023-12-15T23:20:26.075Z INFO sending PrepareRequest {"height": 4489, "view": 0} -2023-12-15T23:20:26.075Z INFO sending Commit {"height": 4489, "view": 0} -2023-12-15T23:20:26.076Z INFO approving block {"height": 4489, "hash": "2d9561c7b3f83af9ac1f797281f6dc8ea1f3f93bcfa09a87682c2fe729e4f3e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13a61bb1454c73e465dacc9b253c167798b1af77df6a014e217604f1574bfc3a"} -2023-12-15T23:20:26.077Z INFO initializing dbft {"height": 4490, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:26.078Z debug frostfs-node/morph.go:229 new block {"index": 4489} -2023-12-15T23:20:26.170Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4489, "blockHeight": 4489, "took": "5.215665ms"} -2023-12-15T23:20:27.077Z INFO sending PrepareRequest {"height": 4490, "view": 0} -2023-12-15T23:20:27.078Z INFO sending Commit {"height": 4490, "view": 0} -2023-12-15T23:20:27.078Z INFO approving block {"height": 4490, "hash": "4cd0ed5ac0b733f89b9924acc0f6580dcfb745ec2b916f534698d30cc9e9e8f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d9561c7b3f83af9ac1f797281f6dc8ea1f3f93bcfa09a87682c2fe729e4f3e5"} -2023-12-15T23:20:27.080Z INFO initializing dbft {"height": 4491, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:27.082Z debug frostfs-node/morph.go:229 new block {"index": 4490} -2023-12-15T23:20:27.174Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4490, "blockHeight": 4490, "took": "8.438619ms"} -2023-12-15T23:20:28.080Z INFO sending PrepareRequest {"height": 4491, "view": 0} -2023-12-15T23:20:28.080Z INFO sending Commit {"height": 4491, "view": 0} -2023-12-15T23:20:28.081Z INFO approving block {"height": 4491, "hash": "b1a139637eb6d6fbe133e8a7a147b424f529266c6c574dc65f199d37d36166b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cd0ed5ac0b733f89b9924acc0f6580dcfb745ec2b916f534698d30cc9e9e8f6"} -2023-12-15T23:20:28.082Z INFO initializing dbft {"height": 4492, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:28.083Z debug frostfs-node/morph.go:229 new block {"index": 4491} -2023-12-15T23:20:28.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4491, "blockHeight": 4491, "took": "5.753248ms"} -2023-12-15T23:20:29.082Z INFO sending PrepareRequest {"height": 4492, "view": 0} -2023-12-15T23:20:29.082Z INFO sending Commit {"height": 4492, "view": 0} -2023-12-15T23:20:29.083Z INFO approving block {"height": 4492, "hash": "7da8327dc2424771f444b1481a036c2f0b607a42686ba74ae7800ba4a969b218", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1a139637eb6d6fbe133e8a7a147b424f529266c6c574dc65f199d37d36166b3"} -2023-12-15T23:20:29.084Z INFO initializing dbft {"height": 4493, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:29.085Z debug frostfs-node/morph.go:229 new block {"index": 4492} -2023-12-15T23:20:29.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4492, "blockHeight": 4492, "took": "12.771102ms"} -2023-12-15T23:20:30.084Z INFO sending PrepareRequest {"height": 4493, "view": 0} -2023-12-15T23:20:30.085Z INFO sending Commit {"height": 4493, "view": 0} -2023-12-15T23:20:30.085Z INFO approving block {"height": 4493, "hash": "9d2bf288741fe8e20b60ae3f5b4148235a3380e91a00599e1a727fa6db2ead7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7da8327dc2424771f444b1481a036c2f0b607a42686ba74ae7800ba4a969b218"} -2023-12-15T23:20:30.087Z INFO initializing dbft {"height": 4494, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:30.088Z debug frostfs-node/morph.go:229 new block {"index": 4493} -2023-12-15T23:20:30.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4493, "blockHeight": 4493, "took": "11.120299ms"} -2023-12-15T23:20:31.087Z INFO sending PrepareRequest {"height": 4494, "view": 0} -2023-12-15T23:20:31.087Z INFO sending Commit {"height": 4494, "view": 0} -2023-12-15T23:20:31.087Z INFO approving block {"height": 4494, "hash": "542734075d35582aa41031d632a074dadccfacc1378cfd4c6942316b250b52da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d2bf288741fe8e20b60ae3f5b4148235a3380e91a00599e1a727fa6db2ead7c"} -2023-12-15T23:20:31.090Z INFO initializing dbft {"height": 4495, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:31.091Z debug frostfs-node/morph.go:229 new block {"index": 4494} -2023-12-15T23:20:31.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4494, "blockHeight": 4494, "took": "6.989704ms"} -2023-12-15T23:20:32.088Z INFO sending PrepareRequest {"height": 4495, "view": 0} -2023-12-15T23:20:32.089Z INFO sending Commit {"height": 4495, "view": 0} -2023-12-15T23:20:32.089Z INFO approving block {"height": 4495, "hash": "f0daec58f929a2ffcb9e7dace74f755d45684e4d2ed407f494520377f443f960", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "542734075d35582aa41031d632a074dadccfacc1378cfd4c6942316b250b52da"} -2023-12-15T23:20:32.091Z INFO initializing dbft {"height": 4496, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:32.092Z debug frostfs-node/morph.go:229 new block {"index": 4495} -2023-12-15T23:20:32.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4495, "blockHeight": 4495, "took": "9.849037ms"} -2023-12-15T23:20:33.091Z INFO sending PrepareRequest {"height": 4496, "view": 0} -2023-12-15T23:20:33.091Z INFO sending Commit {"height": 4496, "view": 0} -2023-12-15T23:20:33.091Z INFO approving block {"height": 4496, "hash": "7620401b897c96ec588448e83e6c03a81ae49ce79b11374d428b0847654ce77d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0daec58f929a2ffcb9e7dace74f755d45684e4d2ed407f494520377f443f960"} -2023-12-15T23:20:33.093Z INFO initializing dbft {"height": 4497, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:33.094Z debug frostfs-node/morph.go:229 new block {"index": 4496} -2023-12-15T23:20:33.180Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4496, "blockHeight": 4496, "took": "7.015085ms"} -2023-12-15T23:20:34.093Z INFO sending PrepareRequest {"height": 4497, "view": 0} -2023-12-15T23:20:34.093Z INFO sending Commit {"height": 4497, "view": 0} -2023-12-15T23:20:34.094Z INFO approving block {"height": 4497, "hash": "aba9ab4031e55b282be445bc39e28f57bfa0454c8fe59625908527cc7a34b9c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7620401b897c96ec588448e83e6c03a81ae49ce79b11374d428b0847654ce77d"} -2023-12-15T23:20:34.095Z INFO initializing dbft {"height": 4498, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:34.096Z debug frostfs-node/morph.go:229 new block {"index": 4497} -2023-12-15T23:20:34.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4497, "blockHeight": 4497, "took": "7.41389ms"} -2023-12-15T23:20:35.095Z INFO sending PrepareRequest {"height": 4498, "view": 0} -2023-12-15T23:20:35.095Z INFO sending Commit {"height": 4498, "view": 0} -2023-12-15T23:20:35.095Z INFO approving block {"height": 4498, "hash": "61fd70dd0c3b96f13c7578bbffdc5101f121c0844d48758226c015e6c16c15c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aba9ab4031e55b282be445bc39e28f57bfa0454c8fe59625908527cc7a34b9c3"} -2023-12-15T23:20:35.097Z INFO initializing dbft {"height": 4499, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:35.099Z debug frostfs-node/morph.go:229 new block {"index": 4498} -2023-12-15T23:20:35.182Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4498, "blockHeight": 4498, "took": "6.922982ms"} -2023-12-15T23:20:36.097Z INFO sending PrepareRequest {"height": 4499, "view": 0} -2023-12-15T23:20:36.097Z INFO sending Commit {"height": 4499, "view": 0} -2023-12-15T23:20:36.098Z INFO approving block {"height": 4499, "hash": "13905d9523f16ace1412917f58290e472d2ca79a1009f327be9977fcd09e72ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61fd70dd0c3b96f13c7578bbffdc5101f121c0844d48758226c015e6c16c15c0"} -2023-12-15T23:20:36.100Z INFO initializing dbft {"height": 4500, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:36.101Z debug frostfs-node/morph.go:229 new block {"index": 4499} -2023-12-15T23:20:36.183Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4499, "blockHeight": 4499, "took": "6.901284ms"} -2023-12-15T23:20:37.099Z INFO sending PrepareRequest {"height": 4500, "view": 0} -2023-12-15T23:20:37.100Z INFO sending Commit {"height": 4500, "view": 0} -2023-12-15T23:20:37.100Z INFO approving block {"height": 4500, "hash": "c2fa5cba0711005d5df09b759e29fb9c1f61252d3ec0cd923ffbc0e2652ef184", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13905d9523f16ace1412917f58290e472d2ca79a1009f327be9977fcd09e72ba"} -2023-12-15T23:20:37.102Z INFO initializing dbft {"height": 4501, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:37.102Z debug frostfs-node/morph.go:229 new block {"index": 4500} -2023-12-15T23:20:37.184Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4500, "blockHeight": 4500, "took": "6.642363ms"} -2023-12-15T23:20:38.101Z INFO sending PrepareRequest {"height": 4501, "view": 0} -2023-12-15T23:20:38.102Z INFO sending Commit {"height": 4501, "view": 0} -2023-12-15T23:20:38.102Z INFO approving block {"height": 4501, "hash": "c77cc9494bb98a76d5c810b00f83fc59abfd8fe78580f26e9aaa676bfa1cf4e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2fa5cba0711005d5df09b759e29fb9c1f61252d3ec0cd923ffbc0e2652ef184"} -2023-12-15T23:20:38.103Z INFO initializing dbft {"height": 4502, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:38.105Z debug frostfs-node/morph.go:229 new block {"index": 4501} -2023-12-15T23:20:38.189Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4501, "blockHeight": 4501, "took": "10.371565ms"} -2023-12-15T23:20:39.103Z INFO sending PrepareRequest {"height": 4502, "view": 0} -2023-12-15T23:20:39.104Z INFO sending Commit {"height": 4502, "view": 0} -2023-12-15T23:20:39.105Z INFO approving block {"height": 4502, "hash": "081f177240a1a5aafa8667b3ec7681b792dd129122ba84138e8a94827642bdab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c77cc9494bb98a76d5c810b00f83fc59abfd8fe78580f26e9aaa676bfa1cf4e2"} -2023-12-15T23:20:39.107Z INFO initializing dbft {"height": 4503, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:39.107Z debug frostfs-node/morph.go:229 new block {"index": 4502} -2023-12-15T23:20:39.187Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4502, "blockHeight": 4502, "took": "7.113037ms"} -2023-12-15T23:20:40.106Z INFO sending PrepareRequest {"height": 4503, "view": 0} -2023-12-15T23:20:40.107Z INFO sending Commit {"height": 4503, "view": 0} -2023-12-15T23:20:40.107Z INFO approving block {"height": 4503, "hash": "21431c4c2451c94170b55da1775090add44821f2fe372c3d48fb3598b70ad6d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "081f177240a1a5aafa8667b3ec7681b792dd129122ba84138e8a94827642bdab"} -2023-12-15T23:20:40.109Z INFO initializing dbft {"height": 4504, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:40.110Z debug frostfs-node/morph.go:229 new block {"index": 4503} -2023-12-15T23:20:40.188Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4503, "blockHeight": 4503, "took": "6.988154ms"} -2023-12-15T23:20:41.108Z INFO sending PrepareRequest {"height": 4504, "view": 0} -2023-12-15T23:20:41.108Z INFO sending Commit {"height": 4504, "view": 0} -2023-12-15T23:20:41.109Z INFO approving block {"height": 4504, "hash": "8bcbd0defdc4347d3c0a24491b4f31221bf2504f1bfef1da1eed6a8d8a85c36c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21431c4c2451c94170b55da1775090add44821f2fe372c3d48fb3598b70ad6d1"} -2023-12-15T23:20:41.110Z INFO initializing dbft {"height": 4505, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:41.112Z debug frostfs-node/morph.go:229 new block {"index": 4504} -2023-12-15T23:20:41.195Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4504, "blockHeight": 4504, "took": "12.724121ms"} -2023-12-15T23:20:42.110Z INFO sending PrepareRequest {"height": 4505, "view": 0} -2023-12-15T23:20:42.110Z INFO sending Commit {"height": 4505, "view": 0} -2023-12-15T23:20:42.111Z INFO approving block {"height": 4505, "hash": "eecd6ecde809c83e4c7f508a87e6a8f1950ba0bb2eb94898362906cfd69fd675", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bcbd0defdc4347d3c0a24491b4f31221bf2504f1bfef1da1eed6a8d8a85c36c"} -2023-12-15T23:20:42.112Z INFO initializing dbft {"height": 4506, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:42.113Z debug frostfs-node/morph.go:229 new block {"index": 4505} -2023-12-15T23:20:42.191Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4505, "blockHeight": 4505, "took": "7.704156ms"} -2023-12-15T23:20:43.111Z INFO sending PrepareRequest {"height": 4506, "view": 0} -2023-12-15T23:20:43.112Z INFO sending Commit {"height": 4506, "view": 0} -2023-12-15T23:20:43.112Z INFO approving block {"height": 4506, "hash": "f177da802153f4c65bd1ca51af25cff46f95408ec351d6bbc11efb79a889f6d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eecd6ecde809c83e4c7f508a87e6a8f1950ba0bb2eb94898362906cfd69fd675"} -2023-12-15T23:20:43.114Z INFO initializing dbft {"height": 4507, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:43.115Z debug frostfs-node/morph.go:229 new block {"index": 4506} -2023-12-15T23:20:43.192Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4506, "blockHeight": 4506, "took": "7.947121ms"} -2023-12-15T23:20:44.114Z INFO sending PrepareRequest {"height": 4507, "view": 0} -2023-12-15T23:20:44.114Z INFO sending Commit {"height": 4507, "view": 0} -2023-12-15T23:20:44.114Z INFO approving block {"height": 4507, "hash": "6dc9e5949a142633304f3ec874de81232847138498ce307d27f89c750e62b1bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f177da802153f4c65bd1ca51af25cff46f95408ec351d6bbc11efb79a889f6d0"} -2023-12-15T23:20:44.116Z INFO initializing dbft {"height": 4508, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:44.117Z debug frostfs-node/morph.go:229 new block {"index": 4507} -2023-12-15T23:20:44.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4507, "blockHeight": 4507, "took": "9.842516ms"} -2023-12-15T23:20:45.116Z INFO sending PrepareRequest {"height": 4508, "view": 0} -2023-12-15T23:20:45.116Z INFO sending Commit {"height": 4508, "view": 0} -2023-12-15T23:20:45.116Z INFO approving block {"height": 4508, "hash": "e30fe97ff2160dedebfc8b75dffadaa55e6c1880f85c10eb3ad469a695614154", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dc9e5949a142633304f3ec874de81232847138498ce307d27f89c750e62b1bd"} -2023-12-15T23:20:45.118Z INFO initializing dbft {"height": 4509, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:45.119Z debug frostfs-node/morph.go:229 new block {"index": 4508} -2023-12-15T23:20:45.194Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4508, "blockHeight": 4508, "took": "7.056036ms"} -2023-12-15T23:20:46.118Z INFO sending PrepareRequest {"height": 4509, "view": 0} -2023-12-15T23:20:46.118Z INFO sending Commit {"height": 4509, "view": 0} -2023-12-15T23:20:46.119Z INFO approving block {"height": 4509, "hash": "154ac0f10cfae36afac6acfa34a1c4e79fa39a5cee9c8a7b413a76fcd596bb4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e30fe97ff2160dedebfc8b75dffadaa55e6c1880f85c10eb3ad469a695614154"} -2023-12-15T23:20:46.121Z INFO initializing dbft {"height": 4510, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:46.121Z debug frostfs-node/morph.go:229 new block {"index": 4509} -2023-12-15T23:20:46.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4509, "blockHeight": 4509, "took": "8.423845ms"} -2023-12-15T23:20:47.121Z INFO sending PrepareRequest {"height": 4510, "view": 0} -2023-12-15T23:20:47.121Z INFO sending Commit {"height": 4510, "view": 0} -2023-12-15T23:20:47.121Z INFO approving block {"height": 4510, "hash": "a8ce1b6bc167551cd902f5d1d15efb790420a57a7ff9fb1a07e4adcef8819884", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "154ac0f10cfae36afac6acfa34a1c4e79fa39a5cee9c8a7b413a76fcd596bb4e"} -2023-12-15T23:20:47.123Z INFO initializing dbft {"height": 4511, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:47.124Z debug frostfs-node/morph.go:229 new block {"index": 4510} -2023-12-15T23:20:47.195Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4510, "blockHeight": 4510, "took": "6.493859ms"} -2023-12-15T23:20:48.123Z INFO sending PrepareRequest {"height": 4511, "view": 0} -2023-12-15T23:20:48.123Z INFO sending Commit {"height": 4511, "view": 0} -2023-12-15T23:20:48.123Z INFO approving block {"height": 4511, "hash": "1ac0bfca8209ce4ad8e71f7478f4bd3a5f72330e7ed8ff5f4ce331fb1d31cabb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8ce1b6bc167551cd902f5d1d15efb790420a57a7ff9fb1a07e4adcef8819884"} -2023-12-15T23:20:48.125Z INFO initializing dbft {"height": 4512, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:48.126Z debug frostfs-node/morph.go:229 new block {"index": 4511} -2023-12-15T23:20:48.197Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4511, "blockHeight": 4511, "took": "7.001367ms"} -2023-12-15T23:20:49.125Z INFO sending PrepareRequest {"height": 4512, "view": 0} -2023-12-15T23:20:49.125Z INFO sending Commit {"height": 4512, "view": 0} -2023-12-15T23:20:49.126Z INFO approving block {"height": 4512, "hash": "80cfa4730c772aba0e5201b09b139f32e6822413ed90d7b1f00b95ba374f825e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ac0bfca8209ce4ad8e71f7478f4bd3a5f72330e7ed8ff5f4ce331fb1d31cabb"} -2023-12-15T23:20:49.127Z INFO initializing dbft {"height": 4513, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:49.128Z debug frostfs-node/morph.go:229 new block {"index": 4512} -2023-12-15T23:20:49.201Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4512, "blockHeight": 4512, "took": "9.781649ms"} -2023-12-15T23:20:50.127Z INFO sending PrepareRequest {"height": 4513, "view": 0} -2023-12-15T23:20:50.127Z INFO sending Commit {"height": 4513, "view": 0} -2023-12-15T23:20:50.127Z INFO approving block {"height": 4513, "hash": "8942e21c4216c496b1aedb3ad3161c2e4549b52c1cb85b181c7c74f2a0f39fd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80cfa4730c772aba0e5201b09b139f32e6822413ed90d7b1f00b95ba374f825e"} -2023-12-15T23:20:50.129Z INFO initializing dbft {"height": 4514, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:50.130Z debug frostfs-node/morph.go:229 new block {"index": 4513} -2023-12-15T23:20:50.201Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4513, "blockHeight": 4513, "took": "9.326865ms"} -2023-12-15T23:20:51.129Z INFO sending PrepareRequest {"height": 4514, "view": 0} -2023-12-15T23:20:51.129Z INFO sending Commit {"height": 4514, "view": 0} -2023-12-15T23:20:51.130Z INFO approving block {"height": 4514, "hash": "88728d30986bae52a85c6ec159561ab48a59d751c4286a85073dba9ee1fd8e9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8942e21c4216c496b1aedb3ad3161c2e4549b52c1cb85b181c7c74f2a0f39fd8"} -2023-12-15T23:20:51.131Z INFO initializing dbft {"height": 4515, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:51.132Z debug frostfs-node/morph.go:229 new block {"index": 4514} -2023-12-15T23:20:51.199Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4514, "blockHeight": 4514, "took": "5.493192ms"} -2023-12-15T23:20:52.131Z INFO sending PrepareRequest {"height": 4515, "view": 0} -2023-12-15T23:20:52.131Z INFO sending Commit {"height": 4515, "view": 0} -2023-12-15T23:20:52.131Z INFO approving block {"height": 4515, "hash": "22f11d9f1aada6636751fb65aca35fea49716a10b371090f4b558bf388807ab4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88728d30986bae52a85c6ec159561ab48a59d751c4286a85073dba9ee1fd8e9b"} -2023-12-15T23:20:52.132Z INFO initializing dbft {"height": 4516, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:52.133Z debug frostfs-node/morph.go:229 new block {"index": 4515} -2023-12-15T23:20:52.199Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4515, "blockHeight": 4515, "took": "5.753799ms"} -2023-12-15T23:20:53.132Z INFO sending PrepareRequest {"height": 4516, "view": 0} -2023-12-15T23:20:53.133Z INFO sending Commit {"height": 4516, "view": 0} -2023-12-15T23:20:53.133Z INFO approving block {"height": 4516, "hash": "367c32bdae1e871b59d7d9b462afa000d4963df4cf37c92c24494c96383787e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22f11d9f1aada6636751fb65aca35fea49716a10b371090f4b558bf388807ab4"} -2023-12-15T23:20:53.135Z INFO initializing dbft {"height": 4517, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:53.136Z debug frostfs-node/morph.go:229 new block {"index": 4516} -2023-12-15T23:20:53.202Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4516, "blockHeight": 4516, "took": "7.897565ms"} -2023-12-15T23:20:54.134Z INFO sending PrepareRequest {"height": 4517, "view": 0} -2023-12-15T23:20:54.135Z INFO sending Commit {"height": 4517, "view": 0} -2023-12-15T23:20:54.135Z INFO approving block {"height": 4517, "hash": "10d394b8c07da25988fcbd0810377fbf8c41b23c00d80746898a5e198b56772c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "367c32bdae1e871b59d7d9b462afa000d4963df4cf37c92c24494c96383787e4"} -2023-12-15T23:20:54.136Z INFO initializing dbft {"height": 4518, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:54.137Z debug frostfs-node/morph.go:229 new block {"index": 4517} -2023-12-15T23:20:54.139Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:20:54.145Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:20:54.145Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:20:54.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4517, "blockHeight": 4517, "took": "7.378418ms"} -2023-12-15T23:20:55.137Z INFO sending PrepareRequest {"height": 4518, "view": 0} -2023-12-15T23:20:55.137Z INFO sending Commit {"height": 4518, "view": 0} -2023-12-15T23:20:55.138Z INFO approving block {"height": 4518, "hash": "e00114a78fddafe17c2b2a63403b5c12eb0aa37f5c88db5678b39161da2380e6", "tx_count": 2, "merkle": "86132eb7e561d72609da47cb956f1653e477288391cf197ed9d957b1903e9796", "prev": "10d394b8c07da25988fcbd0810377fbf8c41b23c00d80746898a5e198b56772c"} -2023-12-15T23:20:55.139Z INFO runtime log {"tx": "93c95084c44e97dad1af08fd1cba2a0170e45b90cddd6b1289e7d7aceeb96ce6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:20:55.140Z INFO runtime log {"tx": "93c95084c44e97dad1af08fd1cba2a0170e45b90cddd6b1289e7d7aceeb96ce6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:20:55.142Z INFO initializing dbft {"height": 4519, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:55.145Z debug frostfs-node/morph.go:229 new block {"index": 4518} -2023-12-15T23:20:55.154Z info settlement/calls.go:106 start basic income distribution {"epoch": 19} -2023-12-15T23:20:55.158Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 19, "iteration": 2, "error": "no data for 1 iteration in 19 epoch for consumers's trusts"} -2023-12-15T23:20:55.207Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4518, "blockHeight": 4518, "took": "10.508922ms"} -2023-12-15T23:20:56.139Z INFO sending PrepareRequest {"height": 4519, "view": 0} -2023-12-15T23:20:56.139Z INFO sending Commit {"height": 4519, "view": 0} -2023-12-15T23:20:56.140Z INFO approving block {"height": 4519, "hash": "da95a471a8c14f6e5ab071748ceb1b741c591299642ae7602bafdaeec1ad4fc3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e00114a78fddafe17c2b2a63403b5c12eb0aa37f5c88db5678b39161da2380e6"} -2023-12-15T23:20:56.142Z INFO initializing dbft {"height": 4520, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:56.142Z debug frostfs-node/morph.go:229 new block {"index": 4519} -2023-12-15T23:20:56.205Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4519, "blockHeight": 4519, "took": "7.321848ms"} -2023-12-15T23:20:57.141Z INFO sending PrepareRequest {"height": 4520, "view": 0} -2023-12-15T23:20:57.141Z INFO sending Commit {"height": 4520, "view": 0} -2023-12-15T23:20:57.141Z INFO approving block {"height": 4520, "hash": "9826374557316f659bb3fc33ff644ae2a2658cf04411cdcff39cf6971fea9b05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da95a471a8c14f6e5ab071748ceb1b741c591299642ae7602bafdaeec1ad4fc3"} -2023-12-15T23:20:57.143Z INFO initializing dbft {"height": 4521, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:57.144Z debug frostfs-node/morph.go:229 new block {"index": 4520} -2023-12-15T23:20:57.206Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4520, "blockHeight": 4520, "took": "7.32856ms"} -2023-12-15T23:20:58.143Z INFO sending PrepareRequest {"height": 4521, "view": 0} -2023-12-15T23:20:58.143Z INFO sending Commit {"height": 4521, "view": 0} -2023-12-15T23:20:58.144Z INFO approving block {"height": 4521, "hash": "f39670ee6b1374e485045cffb3180c98b2587cd9706662dd32058fd388a680b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9826374557316f659bb3fc33ff644ae2a2658cf04411cdcff39cf6971fea9b05"} -2023-12-15T23:20:58.146Z INFO initializing dbft {"height": 4522, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:58.147Z debug frostfs-node/morph.go:229 new block {"index": 4521} -2023-12-15T23:20:58.207Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4521, "blockHeight": 4521, "took": "7.629857ms"} -2023-12-15T23:20:59.145Z INFO sending PrepareRequest {"height": 4522, "view": 0} -2023-12-15T23:20:59.146Z INFO sending Commit {"height": 4522, "view": 0} -2023-12-15T23:20:59.147Z INFO approving block {"height": 4522, "hash": "2ba0f03a486fc6800df6d75e71f5794d7f766e6c9de39384f02bb5a40a9878b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f39670ee6b1374e485045cffb3180c98b2587cd9706662dd32058fd388a680b5"} -2023-12-15T23:20:59.149Z INFO initializing dbft {"height": 4523, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:20:59.150Z debug frostfs-node/morph.go:229 new block {"index": 4522} -2023-12-15T23:20:59.209Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4522, "blockHeight": 4522, "took": "8.682131ms"} -2023-12-15T23:21:00.149Z INFO sending PrepareRequest {"height": 4523, "view": 0} -2023-12-15T23:21:00.149Z INFO sending Commit {"height": 4523, "view": 0} -2023-12-15T23:21:00.149Z INFO approving block {"height": 4523, "hash": "c884cce2a81abf34a5055ab1dc7848f494d1ad859b3b635f3b0acd19920934bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ba0f03a486fc6800df6d75e71f5794d7f766e6c9de39384f02bb5a40a9878b8"} -2023-12-15T23:21:00.151Z INFO initializing dbft {"height": 4524, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:00.152Z debug frostfs-node/morph.go:229 new block {"index": 4523} -2023-12-15T23:21:00.208Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4523, "blockHeight": 4523, "took": "6.284123ms"} -2023-12-15T23:21:01.151Z INFO sending PrepareRequest {"height": 4524, "view": 0} -2023-12-15T23:21:01.151Z INFO sending Commit {"height": 4524, "view": 0} -2023-12-15T23:21:01.151Z INFO approving block {"height": 4524, "hash": "d3454533ed4580a82cba1935595ceddd0f50ebbf3b7e02968464990187275477", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c884cce2a81abf34a5055ab1dc7848f494d1ad859b3b635f3b0acd19920934bb"} -2023-12-15T23:21:01.153Z INFO initializing dbft {"height": 4525, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:01.153Z debug frostfs-node/morph.go:229 new block {"index": 4524} -2023-12-15T23:21:01.209Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4524, "blockHeight": 4524, "took": "6.661688ms"} -2023-12-15T23:21:02.152Z INFO sending PrepareRequest {"height": 4525, "view": 0} -2023-12-15T23:21:02.153Z INFO sending Commit {"height": 4525, "view": 0} -2023-12-15T23:21:02.153Z INFO approving block {"height": 4525, "hash": "300b52d3c1ceb61956f2df9c8a9b9de422af68350d25180493713852e0023253", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3454533ed4580a82cba1935595ceddd0f50ebbf3b7e02968464990187275477"} -2023-12-15T23:21:02.155Z INFO initializing dbft {"height": 4526, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:02.155Z debug frostfs-node/morph.go:229 new block {"index": 4525} -2023-12-15T23:21:02.209Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4525, "blockHeight": 4525, "took": "5.976512ms"} -2023-12-15T23:21:03.154Z INFO sending PrepareRequest {"height": 4526, "view": 0} -2023-12-15T23:21:03.155Z INFO sending Commit {"height": 4526, "view": 0} -2023-12-15T23:21:03.155Z INFO approving block {"height": 4526, "hash": "5418ec19b338665dc3922fa091d7df39ae8580b51d8c22bbfbc4a90ca91501c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "300b52d3c1ceb61956f2df9c8a9b9de422af68350d25180493713852e0023253"} -2023-12-15T23:21:03.157Z INFO initializing dbft {"height": 4527, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:03.158Z debug frostfs-node/morph.go:229 new block {"index": 4526} -2023-12-15T23:21:03.212Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4526, "blockHeight": 4526, "took": "7.629318ms"} -2023-12-15T23:21:04.156Z INFO sending PrepareRequest {"height": 4527, "view": 0} -2023-12-15T23:21:04.157Z INFO sending Commit {"height": 4527, "view": 0} -2023-12-15T23:21:04.157Z INFO approving block {"height": 4527, "hash": "d59fd53148812426a9f97d168bc9a79aa81cc24955ffdcc02cf1ffaafed544a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5418ec19b338665dc3922fa091d7df39ae8580b51d8c22bbfbc4a90ca91501c5"} -2023-12-15T23:21:04.159Z INFO initializing dbft {"height": 4528, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:04.160Z debug frostfs-node/morph.go:229 new block {"index": 4527} -2023-12-15T23:21:04.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4527, "blockHeight": 4527, "took": "7.711998ms"} -2023-12-15T23:21:05.158Z INFO sending PrepareRequest {"height": 4528, "view": 0} -2023-12-15T23:21:05.159Z INFO sending Commit {"height": 4528, "view": 0} -2023-12-15T23:21:05.159Z INFO approving block {"height": 4528, "hash": "b67333d840e68e876bd7b69cc4c945c8292d52ac90adafc8cf928401978a2364", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d59fd53148812426a9f97d168bc9a79aa81cc24955ffdcc02cf1ffaafed544a0"} -2023-12-15T23:21:05.161Z INFO initializing dbft {"height": 4529, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:05.162Z debug frostfs-node/morph.go:229 new block {"index": 4528} -2023-12-15T23:21:05.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4528, "blockHeight": 4528, "took": "6.683595ms"} -2023-12-15T23:21:06.161Z INFO sending PrepareRequest {"height": 4529, "view": 0} -2023-12-15T23:21:06.161Z INFO sending Commit {"height": 4529, "view": 0} -2023-12-15T23:21:06.161Z INFO approving block {"height": 4529, "hash": "a909bed3ba48c9b47767a587acdff98583fb03c24c536441a4763a3c4839f502", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b67333d840e68e876bd7b69cc4c945c8292d52ac90adafc8cf928401978a2364"} -2023-12-15T23:21:06.163Z INFO initializing dbft {"height": 4530, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:06.163Z debug frostfs-node/morph.go:229 new block {"index": 4529} -2023-12-15T23:21:06.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4529, "blockHeight": 4529, "took": "6.52152ms"} -2023-12-15T23:21:07.163Z INFO sending PrepareRequest {"height": 4530, "view": 0} -2023-12-15T23:21:07.164Z INFO sending Commit {"height": 4530, "view": 0} -2023-12-15T23:21:07.165Z INFO approving block {"height": 4530, "hash": "c0719618a23f42c4089b877a2689d5820487f823242bb0b9f7bfb2e1050d84d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a909bed3ba48c9b47767a587acdff98583fb03c24c536441a4763a3c4839f502"} -2023-12-15T23:21:07.166Z INFO initializing dbft {"height": 4531, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:07.167Z debug frostfs-node/morph.go:229 new block {"index": 4530} -2023-12-15T23:21:07.214Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4530, "blockHeight": 4530, "took": "6.649021ms"} -2023-12-15T23:21:08.166Z INFO sending PrepareRequest {"height": 4531, "view": 0} -2023-12-15T23:21:08.167Z INFO sending Commit {"height": 4531, "view": 0} -2023-12-15T23:21:08.167Z INFO approving block {"height": 4531, "hash": "092e2b8b9c11e1cd13e2c068be203f81f025384319eec62bc19afce1dbab0fdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0719618a23f42c4089b877a2689d5820487f823242bb0b9f7bfb2e1050d84d1"} -2023-12-15T23:21:08.168Z INFO initializing dbft {"height": 4532, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:08.170Z debug frostfs-node/morph.go:229 new block {"index": 4531} -2023-12-15T23:21:08.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4531, "blockHeight": 4531, "took": "8.360071ms"} -2023-12-15T23:21:09.168Z INFO sending PrepareRequest {"height": 4532, "view": 0} -2023-12-15T23:21:09.169Z INFO sending Commit {"height": 4532, "view": 0} -2023-12-15T23:21:09.169Z INFO approving block {"height": 4532, "hash": "7ddb041d12b29ab7c48f1345adbef10656bc9877f5c3d019c83b3e11d35556d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "092e2b8b9c11e1cd13e2c068be203f81f025384319eec62bc19afce1dbab0fdf"} -2023-12-15T23:21:09.171Z INFO initializing dbft {"height": 4533, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:09.172Z debug frostfs-node/morph.go:229 new block {"index": 4532} -2023-12-15T23:21:09.216Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4532, "blockHeight": 4532, "took": "6.934982ms"} -2023-12-15T23:21:10.170Z INFO sending PrepareRequest {"height": 4533, "view": 0} -2023-12-15T23:21:10.170Z INFO sending Commit {"height": 4533, "view": 0} -2023-12-15T23:21:10.170Z INFO approving block {"height": 4533, "hash": "6e01011aca7f09a32beefc61f9703365141e7e498ebbf4843011046975e1ee4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ddb041d12b29ab7c48f1345adbef10656bc9877f5c3d019c83b3e11d35556d9"} -2023-12-15T23:21:10.172Z INFO initializing dbft {"height": 4534, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:10.173Z debug frostfs-node/morph.go:229 new block {"index": 4533} -2023-12-15T23:21:10.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4533, "blockHeight": 4533, "took": "7.187679ms"} -2023-12-15T23:21:11.172Z INFO sending PrepareRequest {"height": 4534, "view": 0} -2023-12-15T23:21:11.172Z INFO sending Commit {"height": 4534, "view": 0} -2023-12-15T23:21:11.173Z INFO approving block {"height": 4534, "hash": "57fb3c7485b897af72eb76a51589d5e2ac52f909d1a8447dde214ff0f25d3c2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e01011aca7f09a32beefc61f9703365141e7e498ebbf4843011046975e1ee4d"} -2023-12-15T23:21:11.174Z INFO initializing dbft {"height": 4535, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:11.175Z debug frostfs-node/morph.go:229 new block {"index": 4534} -2023-12-15T23:21:11.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4534, "blockHeight": 4534, "took": "6.90106ms"} -2023-12-15T23:21:12.174Z INFO sending PrepareRequest {"height": 4535, "view": 0} -2023-12-15T23:21:12.174Z INFO sending Commit {"height": 4535, "view": 0} -2023-12-15T23:21:12.175Z INFO approving block {"height": 4535, "hash": "cd907868a8aec4b794b3ceaf725335d3011b18d16ed2825173256f6518ec9f98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57fb3c7485b897af72eb76a51589d5e2ac52f909d1a8447dde214ff0f25d3c2f"} -2023-12-15T23:21:12.177Z INFO initializing dbft {"height": 4536, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:12.178Z debug frostfs-node/morph.go:229 new block {"index": 4535} -2023-12-15T23:21:12.222Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4535, "blockHeight": 4535, "took": "10.674127ms"} -2023-12-15T23:21:13.176Z INFO sending PrepareRequest {"height": 4536, "view": 0} -2023-12-15T23:21:13.176Z INFO sending Commit {"height": 4536, "view": 0} -2023-12-15T23:21:13.177Z INFO approving block {"height": 4536, "hash": "1b89e037954100c42b001292ed8f0515e1ff314f969fc1ce29db3cbe51adc803", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd907868a8aec4b794b3ceaf725335d3011b18d16ed2825173256f6518ec9f98"} -2023-12-15T23:21:13.178Z INFO initializing dbft {"height": 4537, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:13.179Z debug frostfs-node/morph.go:229 new block {"index": 4536} -2023-12-15T23:21:13.223Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4536, "blockHeight": 4536, "took": "10.158692ms"} -2023-12-15T23:21:14.177Z INFO sending PrepareRequest {"height": 4537, "view": 0} -2023-12-15T23:21:14.178Z INFO sending Commit {"height": 4537, "view": 0} -2023-12-15T23:21:14.178Z INFO approving block {"height": 4537, "hash": "dac26aa8f6e4f2e80917913cd9dc2ef705a845b460dc753d8393dcf7a27a42f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b89e037954100c42b001292ed8f0515e1ff314f969fc1ce29db3cbe51adc803"} -2023-12-15T23:21:14.180Z INFO initializing dbft {"height": 4538, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:14.180Z debug frostfs-node/morph.go:229 new block {"index": 4537} -2023-12-15T23:21:14.221Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4537, "blockHeight": 4537, "took": "7.326155ms"} -2023-12-15T23:21:15.179Z INFO sending PrepareRequest {"height": 4538, "view": 0} -2023-12-15T23:21:15.179Z INFO sending Commit {"height": 4538, "view": 0} -2023-12-15T23:21:15.180Z INFO approving block {"height": 4538, "hash": "bd4d354078f76573e68e724a0f4ccb4de0b2c98285b6e05cfc523c901ad9de74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dac26aa8f6e4f2e80917913cd9dc2ef705a845b460dc753d8393dcf7a27a42f4"} -2023-12-15T23:21:15.182Z INFO initializing dbft {"height": 4539, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:15.183Z debug frostfs-node/morph.go:229 new block {"index": 4538} -2023-12-15T23:21:15.221Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4538, "blockHeight": 4538, "took": "7.467518ms"} -2023-12-15T23:21:16.181Z INFO sending PrepareRequest {"height": 4539, "view": 0} -2023-12-15T23:21:16.181Z INFO sending Commit {"height": 4539, "view": 0} -2023-12-15T23:21:16.182Z INFO approving block {"height": 4539, "hash": "5ccb45ebac14730e189cf403c47c3332cd7fef8157533b8fef58883e2ac8551a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd4d354078f76573e68e724a0f4ccb4de0b2c98285b6e05cfc523c901ad9de74"} -2023-12-15T23:21:16.183Z INFO initializing dbft {"height": 4540, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:16.184Z debug frostfs-node/morph.go:229 new block {"index": 4539} -2023-12-15T23:21:16.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4539, "blockHeight": 4539, "took": "14.655352ms"} -2023-12-15T23:21:17.183Z INFO sending PrepareRequest {"height": 4540, "view": 0} -2023-12-15T23:21:17.183Z INFO sending Commit {"height": 4540, "view": 0} -2023-12-15T23:21:17.184Z INFO approving block {"height": 4540, "hash": "1ecc9f0b88fd00fbd0d79ac3e303e5c040ec9b3790f07426b49c40cb2930afe7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ccb45ebac14730e189cf403c47c3332cd7fef8157533b8fef58883e2ac8551a"} -2023-12-15T23:21:17.185Z INFO initializing dbft {"height": 4541, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:17.186Z debug frostfs-node/morph.go:229 new block {"index": 4540} -2023-12-15T23:21:17.223Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4540, "blockHeight": 4540, "took": "6.52356ms"} -2023-12-15T23:21:18.185Z INFO sending PrepareRequest {"height": 4541, "view": 0} -2023-12-15T23:21:18.186Z INFO sending Commit {"height": 4541, "view": 0} -2023-12-15T23:21:18.186Z INFO approving block {"height": 4541, "hash": "b3fcae759657c641abd303f1bdab0af3184f040ea2fafb038ba72d571803cf6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ecc9f0b88fd00fbd0d79ac3e303e5c040ec9b3790f07426b49c40cb2930afe7"} -2023-12-15T23:21:18.188Z INFO initializing dbft {"height": 4542, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:18.189Z debug frostfs-node/morph.go:229 new block {"index": 4541} -2023-12-15T23:21:18.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4541, "blockHeight": 4541, "took": "8.816214ms"} -2023-12-15T23:21:19.187Z INFO sending PrepareRequest {"height": 4542, "view": 0} -2023-12-15T23:21:19.188Z INFO sending Commit {"height": 4542, "view": 0} -2023-12-15T23:21:19.188Z INFO approving block {"height": 4542, "hash": "fbd8bc9b0790b213621c66c782e996b258ee4bcfcb8cbc417908fb9e2d061653", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3fcae759657c641abd303f1bdab0af3184f040ea2fafb038ba72d571803cf6e"} -2023-12-15T23:21:19.190Z INFO initializing dbft {"height": 4543, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:19.192Z debug frostfs-node/morph.go:229 new block {"index": 4542} -2023-12-15T23:21:19.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4542, "blockHeight": 4542, "took": "7.820973ms"} -2023-12-15T23:21:20.189Z INFO sending PrepareRequest {"height": 4543, "view": 0} -2023-12-15T23:21:20.190Z INFO sending Commit {"height": 4543, "view": 0} -2023-12-15T23:21:20.190Z INFO approving block {"height": 4543, "hash": "356ac828e87bc01b2cabaa442c934f19094531c6a0745a1c692e2f4afe671613", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbd8bc9b0790b213621c66c782e996b258ee4bcfcb8cbc417908fb9e2d061653"} -2023-12-15T23:21:20.191Z INFO initializing dbft {"height": 4544, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:20.192Z debug frostfs-node/morph.go:229 new block {"index": 4543} -2023-12-15T23:21:20.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4543, "blockHeight": 4543, "took": "8.691097ms"} -2023-12-15T23:21:21.191Z INFO sending PrepareRequest {"height": 4544, "view": 0} -2023-12-15T23:21:21.191Z INFO sending Commit {"height": 4544, "view": 0} -2023-12-15T23:21:21.192Z INFO approving block {"height": 4544, "hash": "744b08f2beacd6b01480805da390b7a7f23934e1d184808ca1bf66906c57f0ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "356ac828e87bc01b2cabaa442c934f19094531c6a0745a1c692e2f4afe671613"} -2023-12-15T23:21:21.193Z INFO initializing dbft {"height": 4545, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:21.194Z debug frostfs-node/morph.go:229 new block {"index": 4544} -2023-12-15T23:21:21.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4544, "blockHeight": 4544, "took": "7.918553ms"} -2023-12-15T23:21:22.193Z INFO sending PrepareRequest {"height": 4545, "view": 0} -2023-12-15T23:21:22.193Z INFO sending Commit {"height": 4545, "view": 0} -2023-12-15T23:21:22.194Z INFO approving block {"height": 4545, "hash": "a3b4ee0bf9d56a9db62920a7a2223e39c313b116655fc67ba03dfce1b0f91ce6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "744b08f2beacd6b01480805da390b7a7f23934e1d184808ca1bf66906c57f0ca"} -2023-12-15T23:21:22.195Z INFO initializing dbft {"height": 4546, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:22.196Z debug frostfs-node/morph.go:229 new block {"index": 4545} -2023-12-15T23:21:22.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4545, "blockHeight": 4545, "took": "8.893741ms"} -2023-12-15T23:21:23.195Z INFO sending PrepareRequest {"height": 4546, "view": 0} -2023-12-15T23:21:23.195Z INFO sending Commit {"height": 4546, "view": 0} -2023-12-15T23:21:23.196Z INFO approving block {"height": 4546, "hash": "729ffd26f5d00955a91026cfe14771fad6f677bfab6e575281a0e11980816f25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3b4ee0bf9d56a9db62920a7a2223e39c313b116655fc67ba03dfce1b0f91ce6"} -2023-12-15T23:21:23.197Z INFO initializing dbft {"height": 4547, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:23.198Z debug frostfs-node/morph.go:229 new block {"index": 4546} -2023-12-15T23:21:23.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4546, "blockHeight": 4546, "took": "5.614994ms"} -2023-12-15T23:21:24.197Z INFO sending PrepareRequest {"height": 4547, "view": 0} -2023-12-15T23:21:24.197Z INFO sending Commit {"height": 4547, "view": 0} -2023-12-15T23:21:24.198Z INFO approving block {"height": 4547, "hash": "71ccd520fae32bc7eda91b67cf6ae5f1a8fb96be13199f4ccba747c8beea8958", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "729ffd26f5d00955a91026cfe14771fad6f677bfab6e575281a0e11980816f25"} -2023-12-15T23:21:24.199Z INFO initializing dbft {"height": 4548, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:24.200Z debug frostfs-node/morph.go:229 new block {"index": 4547} -2023-12-15T23:21:24.231Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4547, "blockHeight": 4547, "took": "7.392928ms"} -2023-12-15T23:21:25.199Z INFO sending PrepareRequest {"height": 4548, "view": 0} -2023-12-15T23:21:25.199Z INFO sending Commit {"height": 4548, "view": 0} -2023-12-15T23:21:25.200Z INFO approving block {"height": 4548, "hash": "b83ece51f1f253fd78e648f605d0ab07e5703496d0bf8316d4f523805f086729", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71ccd520fae32bc7eda91b67cf6ae5f1a8fb96be13199f4ccba747c8beea8958"} -2023-12-15T23:21:25.202Z INFO initializing dbft {"height": 4549, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:25.203Z debug frostfs-node/morph.go:229 new block {"index": 4548} -2023-12-15T23:21:25.231Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4548, "blockHeight": 4548, "took": "6.775821ms"} -2023-12-15T23:21:26.201Z INFO sending PrepareRequest {"height": 4549, "view": 0} -2023-12-15T23:21:26.202Z INFO sending Commit {"height": 4549, "view": 0} -2023-12-15T23:21:26.202Z INFO approving block {"height": 4549, "hash": "a6678819c5fe9fb93ca35a94adf31ebd6a9e9cfa222ec989e3d957eb6b5af28f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b83ece51f1f253fd78e648f605d0ab07e5703496d0bf8316d4f523805f086729"} -2023-12-15T23:21:26.204Z INFO initializing dbft {"height": 4550, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:26.205Z debug frostfs-node/morph.go:229 new block {"index": 4549} -2023-12-15T23:21:26.232Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4549, "blockHeight": 4549, "took": "6.458558ms"} -2023-12-15T23:21:27.203Z INFO sending PrepareRequest {"height": 4550, "view": 0} -2023-12-15T23:21:27.204Z INFO sending Commit {"height": 4550, "view": 0} -2023-12-15T23:21:27.204Z INFO approving block {"height": 4550, "hash": "3559919d3f07738619d97cc9edeb499e3cb317eadee0f0d9273a980d11c8cefd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6678819c5fe9fb93ca35a94adf31ebd6a9e9cfa222ec989e3d957eb6b5af28f"} -2023-12-15T23:21:27.205Z INFO initializing dbft {"height": 4551, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:27.205Z debug frostfs-node/morph.go:229 new block {"index": 4550} -2023-12-15T23:21:27.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4550, "blockHeight": 4550, "took": "7.289743ms"} -2023-12-15T23:21:28.205Z INFO sending PrepareRequest {"height": 4551, "view": 0} -2023-12-15T23:21:28.205Z INFO sending Commit {"height": 4551, "view": 0} -2023-12-15T23:21:28.206Z INFO approving block {"height": 4551, "hash": "94fc6c8cbbbd2144d18e2e1adb40fa5ecca936af8c5cebcc6a0cab65a1e37ab4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3559919d3f07738619d97cc9edeb499e3cb317eadee0f0d9273a980d11c8cefd"} -2023-12-15T23:21:28.208Z INFO initializing dbft {"height": 4552, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:28.209Z debug frostfs-node/morph.go:229 new block {"index": 4551} -2023-12-15T23:21:28.235Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4551, "blockHeight": 4551, "took": "7.67507ms"} -2023-12-15T23:21:29.208Z INFO sending PrepareRequest {"height": 4552, "view": 0} -2023-12-15T23:21:29.208Z INFO sending Commit {"height": 4552, "view": 0} -2023-12-15T23:21:29.208Z INFO approving block {"height": 4552, "hash": "dbc179bb7663a23fda1b8ca310f8ad0c952bb1c821d72b16df553f3a25b0ab63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94fc6c8cbbbd2144d18e2e1adb40fa5ecca936af8c5cebcc6a0cab65a1e37ab4"} -2023-12-15T23:21:29.210Z INFO initializing dbft {"height": 4553, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:29.211Z debug frostfs-node/morph.go:229 new block {"index": 4552} -2023-12-15T23:21:29.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4552, "blockHeight": 4552, "took": "7.475971ms"} -2023-12-15T23:21:30.210Z INFO sending PrepareRequest {"height": 4553, "view": 0} -2023-12-15T23:21:30.210Z INFO sending Commit {"height": 4553, "view": 0} -2023-12-15T23:21:30.211Z INFO approving block {"height": 4553, "hash": "262ac75976f4f9f9d232e211453f3cc689035528b31ba87aef37c5be4266ec4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbc179bb7663a23fda1b8ca310f8ad0c952bb1c821d72b16df553f3a25b0ab63"} -2023-12-15T23:21:30.213Z INFO initializing dbft {"height": 4554, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:30.214Z debug frostfs-node/morph.go:229 new block {"index": 4553} -2023-12-15T23:21:30.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4553, "blockHeight": 4553, "took": "13.227279ms"} -2023-12-15T23:21:31.212Z INFO sending PrepareRequest {"height": 4554, "view": 0} -2023-12-15T23:21:31.212Z INFO sending Commit {"height": 4554, "view": 0} -2023-12-15T23:21:31.212Z INFO approving block {"height": 4554, "hash": "7d05efcf6dc9dc33ba1cb28cab87b9e39ea753d449491d84b1684f7531cfeb51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "262ac75976f4f9f9d232e211453f3cc689035528b31ba87aef37c5be4266ec4d"} -2023-12-15T23:21:31.214Z INFO initializing dbft {"height": 4555, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:31.215Z debug frostfs-node/morph.go:229 new block {"index": 4554} -2023-12-15T23:21:31.244Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4554, "blockHeight": 4554, "took": "13.24457ms"} -2023-12-15T23:21:32.214Z INFO sending PrepareRequest {"height": 4555, "view": 0} -2023-12-15T23:21:32.214Z INFO sending Commit {"height": 4555, "view": 0} -2023-12-15T23:21:32.215Z INFO approving block {"height": 4555, "hash": "19d2345210008585f6074a17dfa7602da6af9bae3ccf6e6a8694353860cc7105", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d05efcf6dc9dc33ba1cb28cab87b9e39ea753d449491d84b1684f7531cfeb51"} -2023-12-15T23:21:32.216Z INFO initializing dbft {"height": 4556, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:32.217Z debug frostfs-node/morph.go:229 new block {"index": 4555} -2023-12-15T23:21:32.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4555, "blockHeight": 4555, "took": "14.270937ms"} -2023-12-15T23:21:33.216Z INFO sending PrepareRequest {"height": 4556, "view": 0} -2023-12-15T23:21:33.216Z INFO sending Commit {"height": 4556, "view": 0} -2023-12-15T23:21:33.217Z INFO approving block {"height": 4556, "hash": "ce6232ce2e00032000bd21b90b9ffac250f43656656ea62b85f5da723dbf2a9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19d2345210008585f6074a17dfa7602da6af9bae3ccf6e6a8694353860cc7105"} -2023-12-15T23:21:33.218Z INFO initializing dbft {"height": 4557, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:33.219Z debug frostfs-node/morph.go:229 new block {"index": 4556} -2023-12-15T23:21:33.238Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4556, "blockHeight": 4556, "took": "5.201538ms"} -2023-12-15T23:21:34.218Z INFO sending PrepareRequest {"height": 4557, "view": 0} -2023-12-15T23:21:34.218Z INFO sending Commit {"height": 4557, "view": 0} -2023-12-15T23:21:34.218Z INFO approving block {"height": 4557, "hash": "785d06242710968d79c600bbf896b690a9bb25da1737f1b195c71703fc8d4b2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce6232ce2e00032000bd21b90b9ffac250f43656656ea62b85f5da723dbf2a9e"} -2023-12-15T23:21:34.220Z INFO initializing dbft {"height": 4558, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:34.220Z debug frostfs-node/morph.go:229 new block {"index": 4557} -2023-12-15T23:21:34.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4557, "blockHeight": 4557, "took": "6.728297ms"} -2023-12-15T23:21:35.220Z INFO sending PrepareRequest {"height": 4558, "view": 0} -2023-12-15T23:21:35.220Z INFO sending Commit {"height": 4558, "view": 0} -2023-12-15T23:21:35.221Z INFO approving block {"height": 4558, "hash": "5b6d6db32d0114ece17c9a8546964e5f73bb9f6ae1de976546d63528d53b3e6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "785d06242710968d79c600bbf896b690a9bb25da1737f1b195c71703fc8d4b2e"} -2023-12-15T23:21:35.222Z INFO initializing dbft {"height": 4559, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:35.223Z debug frostfs-node/morph.go:229 new block {"index": 4558} -2023-12-15T23:21:35.245Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4558, "blockHeight": 4558, "took": "9.979021ms"} -2023-12-15T23:21:36.222Z INFO sending PrepareRequest {"height": 4559, "view": 0} -2023-12-15T23:21:36.222Z INFO sending Commit {"height": 4559, "view": 0} -2023-12-15T23:21:36.222Z INFO approving block {"height": 4559, "hash": "ce8d13b68781c8d61aa6ec98a803a127ef54d06ba568d5ccbb8a0a7c97bb6bf0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b6d6db32d0114ece17c9a8546964e5f73bb9f6ae1de976546d63528d53b3e6b"} -2023-12-15T23:21:36.224Z INFO initializing dbft {"height": 4560, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:36.225Z debug frostfs-node/morph.go:229 new block {"index": 4559} -2023-12-15T23:21:36.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4559, "blockHeight": 4559, "took": "10.538746ms"} -2023-12-15T23:21:37.224Z INFO sending PrepareRequest {"height": 4560, "view": 0} -2023-12-15T23:21:37.224Z INFO sending Commit {"height": 4560, "view": 0} -2023-12-15T23:21:37.224Z INFO approving block {"height": 4560, "hash": "d7791fd34b7c777c027bdcba0f7ee236eb0b312e36e0fb227d53aa0655622b37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce8d13b68781c8d61aa6ec98a803a127ef54d06ba568d5ccbb8a0a7c97bb6bf0"} -2023-12-15T23:21:37.226Z INFO initializing dbft {"height": 4561, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:37.226Z debug frostfs-node/morph.go:229 new block {"index": 4560} -2023-12-15T23:21:37.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4560, "blockHeight": 4560, "took": "5.894641ms"} -2023-12-15T23:21:38.225Z INFO sending PrepareRequest {"height": 4561, "view": 0} -2023-12-15T23:21:38.226Z INFO sending Commit {"height": 4561, "view": 0} -2023-12-15T23:21:38.226Z INFO approving block {"height": 4561, "hash": "5e93fa50644372ca3115f01e29a0f6d7d5a3a4272e1acc1377ee5852186e1f01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7791fd34b7c777c027bdcba0f7ee236eb0b312e36e0fb227d53aa0655622b37"} -2023-12-15T23:21:38.227Z INFO initializing dbft {"height": 4562, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:38.228Z debug frostfs-node/morph.go:229 new block {"index": 4561} -2023-12-15T23:21:38.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4561, "blockHeight": 4561, "took": "6.388976ms"} -2023-12-15T23:21:39.227Z INFO sending PrepareRequest {"height": 4562, "view": 0} -2023-12-15T23:21:39.227Z INFO sending Commit {"height": 4562, "view": 0} -2023-12-15T23:21:39.228Z INFO approving block {"height": 4562, "hash": "bb4c7869a33be6fc896a22a2a08d09470cbf1548e01572dced15b92c151fc643", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e93fa50644372ca3115f01e29a0f6d7d5a3a4272e1acc1377ee5852186e1f01"} -2023-12-15T23:21:39.230Z INFO initializing dbft {"height": 4563, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:39.230Z debug frostfs-node/morph.go:229 new block {"index": 4562} -2023-12-15T23:21:39.245Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4562, "blockHeight": 4562, "took": "6.697155ms"} -2023-12-15T23:21:40.229Z INFO sending PrepareRequest {"height": 4563, "view": 0} -2023-12-15T23:21:40.229Z INFO sending Commit {"height": 4563, "view": 0} -2023-12-15T23:21:40.230Z INFO approving block {"height": 4563, "hash": "304dbee47b048ab0e8001165f67f402d12a26afe7819da43534e934aa9cae439", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb4c7869a33be6fc896a22a2a08d09470cbf1548e01572dced15b92c151fc643"} -2023-12-15T23:21:40.232Z INFO initializing dbft {"height": 4564, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:40.233Z debug frostfs-node/morph.go:229 new block {"index": 4563} -2023-12-15T23:21:40.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4563, "blockHeight": 4563, "took": "9.648101ms"} -2023-12-15T23:21:41.232Z INFO sending PrepareRequest {"height": 4564, "view": 0} -2023-12-15T23:21:41.232Z INFO sending Commit {"height": 4564, "view": 0} -2023-12-15T23:21:41.233Z INFO approving block {"height": 4564, "hash": "a4d3e88507138a94cbd70714aa4ffccba0a865ea07eb61521bc10a70a6f4e5e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "304dbee47b048ab0e8001165f67f402d12a26afe7819da43534e934aa9cae439"} -2023-12-15T23:21:41.234Z INFO initializing dbft {"height": 4565, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:41.235Z debug frostfs-node/morph.go:229 new block {"index": 4564} -2023-12-15T23:21:41.250Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4564, "blockHeight": 4564, "took": "9.170447ms"} -2023-12-15T23:21:42.234Z INFO sending PrepareRequest {"height": 4565, "view": 0} -2023-12-15T23:21:42.234Z INFO sending Commit {"height": 4565, "view": 0} -2023-12-15T23:21:42.234Z INFO approving block {"height": 4565, "hash": "2247f70c3643f2217a27711892d829ce5e08985b4eb4c67c9aa469b6158b6b8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4d3e88507138a94cbd70714aa4ffccba0a865ea07eb61521bc10a70a6f4e5e9"} -2023-12-15T23:21:42.235Z INFO initializing dbft {"height": 4566, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:42.236Z debug frostfs-node/morph.go:229 new block {"index": 4565} -2023-12-15T23:21:42.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4565, "blockHeight": 4565, "took": "7.034575ms"} -2023-12-15T23:21:43.235Z INFO sending PrepareRequest {"height": 4566, "view": 0} -2023-12-15T23:21:43.236Z INFO sending Commit {"height": 4566, "view": 0} -2023-12-15T23:21:43.236Z INFO approving block {"height": 4566, "hash": "b720592e52e2624855f4f941a8a01598dd060d9ef101d4f0bdc848a4e330ae13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2247f70c3643f2217a27711892d829ce5e08985b4eb4c67c9aa469b6158b6b8c"} -2023-12-15T23:21:43.239Z INFO initializing dbft {"height": 4567, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:43.239Z debug frostfs-node/morph.go:229 new block {"index": 4566} -2023-12-15T23:21:43.254Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4566, "blockHeight": 4566, "took": "10.863013ms"} -2023-12-15T23:21:44.238Z INFO sending PrepareRequest {"height": 4567, "view": 0} -2023-12-15T23:21:44.238Z INFO sending Commit {"height": 4567, "view": 0} -2023-12-15T23:21:44.238Z INFO approving block {"height": 4567, "hash": "0a4b02ff09651fac4323ec28e3978bd1c9804dfe46c6d233f9639a49480323c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b720592e52e2624855f4f941a8a01598dd060d9ef101d4f0bdc848a4e330ae13"} -2023-12-15T23:21:44.240Z INFO initializing dbft {"height": 4568, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:44.241Z debug frostfs-node/morph.go:229 new block {"index": 4567} -2023-12-15T23:21:44.243Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:21:44.249Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:21:44.249Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:21:44.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4567, "blockHeight": 4567, "took": "6.730721ms"} -2023-12-15T23:21:45.240Z INFO sending PrepareRequest {"height": 4568, "view": 0} -2023-12-15T23:21:45.240Z INFO sending Commit {"height": 4568, "view": 0} -2023-12-15T23:21:45.240Z INFO approving block {"height": 4568, "hash": "96b5f0a268e195e135637742f2434670e4db1a3d2197c7fd7378348973c27b48", "tx_count": 2, "merkle": "bc17aac28a69fee7b575db2b42de4253285e5141f6f2bb53ef4306ba1a6045d9", "prev": "0a4b02ff09651fac4323ec28e3978bd1c9804dfe46c6d233f9639a49480323c9"} -2023-12-15T23:21:45.241Z INFO runtime log {"tx": "baea099ec06227a9a8a801a7f4047c6057d7eb25636a0d51479777ed02c3324d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:21:45.241Z INFO runtime log {"tx": "baea099ec06227a9a8a801a7f4047c6057d7eb25636a0d51479777ed02c3324d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:21:45.243Z INFO initializing dbft {"height": 4569, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:45.244Z debug frostfs-node/morph.go:229 new block {"index": 4568} -2023-12-15T23:21:45.256Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4568, "blockHeight": 4568, "took": "12.130987ms"} -2023-12-15T23:21:46.241Z INFO sending PrepareRequest {"height": 4569, "view": 0} -2023-12-15T23:21:46.242Z INFO sending Commit {"height": 4569, "view": 0} -2023-12-15T23:21:46.242Z INFO approving block {"height": 4569, "hash": "6c0ab10d754ee445b95768f714360e58839354eecac1f2a6ae864675490b9bf8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96b5f0a268e195e135637742f2434670e4db1a3d2197c7fd7378348973c27b48"} -2023-12-15T23:21:46.243Z INFO initializing dbft {"height": 4570, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:46.244Z debug frostfs-node/morph.go:229 new block {"index": 4569} -2023-12-15T23:21:46.252Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4569, "blockHeight": 4569, "took": "6.299427ms"} -2023-12-15T23:21:47.243Z INFO sending PrepareRequest {"height": 4570, "view": 0} -2023-12-15T23:21:47.243Z INFO sending Commit {"height": 4570, "view": 0} -2023-12-15T23:21:47.244Z INFO approving block {"height": 4570, "hash": "438acc2ff9d4b218d4482e85939fd46e6b1eb4ff7a939fbc38bc3a8e529be93e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c0ab10d754ee445b95768f714360e58839354eecac1f2a6ae864675490b9bf8"} -2023-12-15T23:21:47.245Z INFO initializing dbft {"height": 4571, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:47.246Z debug frostfs-node/morph.go:229 new block {"index": 4570} -2023-12-15T23:21:47.252Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4570, "blockHeight": 4570, "took": "5.968404ms"} -2023-12-15T23:21:48.245Z INFO sending PrepareRequest {"height": 4571, "view": 0} -2023-12-15T23:21:48.245Z INFO sending Commit {"height": 4571, "view": 0} -2023-12-15T23:21:48.245Z INFO approving block {"height": 4571, "hash": "024b9604c522b5a4bb0a7611837a0053e643e27bd4003b2bfad453cbe082569f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "438acc2ff9d4b218d4482e85939fd46e6b1eb4ff7a939fbc38bc3a8e529be93e"} -2023-12-15T23:21:48.247Z INFO initializing dbft {"height": 4572, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:48.248Z debug frostfs-node/morph.go:229 new block {"index": 4571} -2023-12-15T23:21:48.253Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4571, "blockHeight": 4571, "took": "6.462984ms"} -2023-12-15T23:21:49.247Z INFO sending PrepareRequest {"height": 4572, "view": 0} -2023-12-15T23:21:49.247Z INFO sending Commit {"height": 4572, "view": 0} -2023-12-15T23:21:49.248Z INFO approving block {"height": 4572, "hash": "2e8bee871c03a21ab6daed59f0f944be76dcf608bc89dd3f4b0ec70fadee6289", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "024b9604c522b5a4bb0a7611837a0053e643e27bd4003b2bfad453cbe082569f"} -2023-12-15T23:21:49.250Z INFO initializing dbft {"height": 4573, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:49.250Z debug frostfs-node/morph.go:229 new block {"index": 4572} -2023-12-15T23:21:50.249Z INFO sending PrepareRequest {"height": 4573, "view": 0} -2023-12-15T23:21:50.249Z INFO sending Commit {"height": 4573, "view": 0} -2023-12-15T23:21:50.250Z INFO approving block {"height": 4573, "hash": "460ef457c49820111ac55debc886b885558d2a2fbb35635161baa73dbf0d4e2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e8bee871c03a21ab6daed59f0f944be76dcf608bc89dd3f4b0ec70fadee6289"} -2023-12-15T23:21:50.252Z INFO initializing dbft {"height": 4574, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:50.253Z debug frostfs-node/morph.go:229 new block {"index": 4573} -2023-12-15T23:21:50.255Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4572, "blockHeight": 4572, "took": "6.560257ms"} -2023-12-15T23:21:51.252Z INFO sending PrepareRequest {"height": 4574, "view": 0} -2023-12-15T23:21:51.252Z INFO sending Commit {"height": 4574, "view": 0} -2023-12-15T23:21:51.253Z INFO approving block {"height": 4574, "hash": "83c803e90a242526cd978ddad51ebcec1f4308dd720bae841e2cd3df5e8464e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "460ef457c49820111ac55debc886b885558d2a2fbb35635161baa73dbf0d4e2b"} -2023-12-15T23:21:51.255Z INFO initializing dbft {"height": 4575, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:51.256Z debug frostfs-node/morph.go:229 new block {"index": 4574} -2023-12-15T23:21:51.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4573, "blockHeight": 4573, "took": "7.976758ms"} -2023-12-15T23:21:52.254Z INFO sending PrepareRequest {"height": 4575, "view": 0} -2023-12-15T23:21:52.255Z INFO sending Commit {"height": 4575, "view": 0} -2023-12-15T23:21:52.255Z INFO approving block {"height": 4575, "hash": "fd33ac20718375e6f806750a907036b961f6c8ff96598a10f7fb4ba4825865e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83c803e90a242526cd978ddad51ebcec1f4308dd720bae841e2cd3df5e8464e3"} -2023-12-15T23:21:52.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4574, "blockHeight": 4574, "took": "6.813673ms"} -2023-12-15T23:21:52.257Z INFO initializing dbft {"height": 4576, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:52.259Z debug frostfs-node/morph.go:229 new block {"index": 4575} -2023-12-15T23:21:53.256Z INFO sending PrepareRequest {"height": 4576, "view": 0} -2023-12-15T23:21:53.257Z INFO sending Commit {"height": 4576, "view": 0} -2023-12-15T23:21:53.257Z INFO approving block {"height": 4576, "hash": "32d0293dbb5ad2d57dff71350c66dda09c27d085154e14d6e3491d9dd1787214", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd33ac20718375e6f806750a907036b961f6c8ff96598a10f7fb4ba4825865e7"} -2023-12-15T23:21:53.258Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4575, "blockHeight": 4575, "took": "6.307487ms"} -2023-12-15T23:21:53.258Z INFO initializing dbft {"height": 4577, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:53.259Z debug frostfs-node/morph.go:229 new block {"index": 4576} -2023-12-15T23:21:54.258Z INFO sending PrepareRequest {"height": 4577, "view": 0} -2023-12-15T23:21:54.259Z INFO sending Commit {"height": 4577, "view": 0} -2023-12-15T23:21:54.259Z INFO approving block {"height": 4577, "hash": "550749e3c024d47f457c0a0cf9e8cde28928dd21b21a6a9444dbee820057a673", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32d0293dbb5ad2d57dff71350c66dda09c27d085154e14d6e3491d9dd1787214"} -2023-12-15T23:21:54.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4576, "blockHeight": 4576, "took": "7.242881ms"} -2023-12-15T23:21:54.261Z INFO initializing dbft {"height": 4578, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:54.262Z debug frostfs-node/morph.go:229 new block {"index": 4577} -2023-12-15T23:21:55.260Z INFO sending PrepareRequest {"height": 4578, "view": 0} -2023-12-15T23:21:55.260Z INFO sending Commit {"height": 4578, "view": 0} -2023-12-15T23:21:55.260Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4577, "blockHeight": 4577, "took": "6.915972ms"} -2023-12-15T23:21:55.261Z INFO approving block {"height": 4578, "hash": "87ea282bfe06dc4921ec6e33b24dca4601c4fae76e2e2a742581afddf75949bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "550749e3c024d47f457c0a0cf9e8cde28928dd21b21a6a9444dbee820057a673"} -2023-12-15T23:21:55.263Z INFO initializing dbft {"height": 4579, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:55.264Z debug frostfs-node/morph.go:229 new block {"index": 4578} -2023-12-15T23:21:55.267Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:21:55.269Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 19, "iteration": 3, "error": "no data for 2 iteration in 19 epoch for consumers's trusts"} -2023-12-15T23:21:55.271Z INFO runtime log {"tx": "2b8f8d2f439c43e3bb3763bfc287436dededaad7b175f68817e113866e2bccf9", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:21:56.262Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4578, "blockHeight": 4578, "took": "7.017416ms"} -2023-12-15T23:21:56.262Z INFO sending PrepareRequest {"height": 4579, "view": 0} -2023-12-15T23:21:56.262Z INFO sending Commit {"height": 4579, "view": 0} -2023-12-15T23:21:56.263Z INFO approving block {"height": 4579, "hash": "311f53c12c3e7e145d61b7c3e31d86971e6d9e8d9d1e0257fdc40cc9f360335b", "tx_count": 1, "merkle": "3994ea2b8e34936d8889fdbed5a01493926fa1abfc4640adcfe3f6742416827e", "prev": "87ea282bfe06dc4921ec6e33b24dca4601c4fae76e2e2a742581afddf75949bc"} -2023-12-15T23:21:56.264Z INFO runtime log {"tx": "7e82162474f6e3cfad4046fcaba16f929314a0d5befd89886d93348e2bea9439", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:21:56.267Z INFO initializing dbft {"height": 4580, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:56.268Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 21} -2023-12-15T23:21:56.268Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:21:56.268Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 21} -2023-12-15T23:21:56.268Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 21} -2023-12-15T23:21:56.268Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 21} -2023-12-15T23:21:56.268Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:21:56.268Z debug controller/calls.go:95 starting to report local trust values {"epoch": 20} -2023-12-15T23:21:56.268Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 20} -2023-12-15T23:21:56.268Z debug frostfs-node/morph.go:229 new block {"index": 4579} -2023-12-15T23:21:56.269Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 21} -2023-12-15T23:21:56.274Z debug controller/calls.go:146 reporting successfully finished {"epoch": 20} -2023-12-15T23:21:56.274Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 20} -2023-12-15T23:21:56.275Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:21:56.279Z info client/notary.go:214 notary deposit invoke {"amount": 5277789973, "expire_at": 4294967295, "vub": 4582, "tx_hash": "b65a0258b46f690bcbb38be7810ee47809a4a9f0e7451846ac2ea24bab723d15"} -2023-12-15T23:21:56.282Z INFO runtime log {"tx": "74dbb2d38a506cd90d802005ff90dc4b00dda35686d24ddce3b60df07369d4ea", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:21:56.302Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:21:56.302Z info audit/handlers.go:13 new round of audit {"epoch": 21} -2023-12-15T23:21:56.302Z info settlement/calls.go:26 new audit settlement event {"epoch": 21} -2023-12-15T23:21:56.302Z info settlement/handlers.go:14 process audit settlements {"epoch": 21} -2023-12-15T23:21:56.302Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 21} -2023-12-15T23:21:56.305Z info settlement/handlers.go:18 audit processing finished {"epoch": 21} -2023-12-15T23:21:56.307Z info audit/process.go:39 select containers for audit {"epoch": 21, "amount": 0} -2023-12-15T23:21:56.312Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 4582, "tx_hash": "97e2016b6e50e5cc1c92b3684c74525d84dfb6366a1b7bb255a1e008be80428d"} -2023-12-15T23:21:57.263Z INFO sending PrepareRequest {"height": 4580, "view": 0} -2023-12-15T23:21:57.264Z INFO sending Commit {"height": 4580, "view": 0} -2023-12-15T23:21:57.264Z INFO approving block {"height": 4580, "hash": "e9d23157c8f6ef20c5c0618a0755169324590de8928d24b515457fcd05a1aad1", "tx_count": 3, "merkle": "b9b4a650e43022c025814867146dbcfa2f203dc748e64b04dc154d346f8c5913", "prev": "311f53c12c3e7e145d61b7c3e31d86971e6d9e8d9d1e0257fdc40cc9f360335b"} -2023-12-15T23:21:57.266Z INFO runtime log {"tx": "362a7ac4882e1ce28cf76cda30cc1fe30710e0f0dd525104d28549d81e0cdda3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:21:57.268Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 4579, "blockHeight": 4579, "took": "12.381676ms"} -2023-12-15T23:21:57.270Z INFO initializing dbft {"height": 4581, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:57.271Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 20} -2023-12-15T23:21:57.272Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 20} -2023-12-15T23:21:57.272Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 20} -2023-12-15T23:21:57.272Z debug frostfs-node/morph.go:229 new block {"index": 4580} -2023-12-15T23:21:58.265Z INFO sending PrepareRequest {"height": 4581, "view": 0} -2023-12-15T23:21:58.265Z INFO sending Commit {"height": 4581, "view": 0} -2023-12-15T23:21:58.265Z INFO approving block {"height": 4581, "hash": "fe3c20ea25af33d47ebc8df1a74b0ba1d42a6954dc6d5c6787a1aa8246006297", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9d23157c8f6ef20c5c0618a0755169324590de8928d24b515457fcd05a1aad1"} -2023-12-15T23:21:58.267Z INFO initializing dbft {"height": 4582, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:58.267Z INFO persisted to disk {"blocks": 1, "keys": 58, "headerHeight": 4580, "blockHeight": 4580, "took": "10.042658ms"} -2023-12-15T23:21:58.268Z debug frostfs-node/morph.go:229 new block {"index": 4581} -2023-12-15T23:21:59.263Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4581, "blockHeight": 4581, "took": "5.771698ms"} -2023-12-15T23:21:59.266Z INFO sending PrepareRequest {"height": 4582, "view": 0} -2023-12-15T23:21:59.266Z INFO sending Commit {"height": 4582, "view": 0} -2023-12-15T23:21:59.266Z INFO approving block {"height": 4582, "hash": "045fbd63b22e69491d21b5c775e67fc84860173d2f0bbd0dd682bab0bed9c81b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe3c20ea25af33d47ebc8df1a74b0ba1d42a6954dc6d5c6787a1aa8246006297"} -2023-12-15T23:21:59.268Z INFO initializing dbft {"height": 4583, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:21:59.268Z debug frostfs-node/morph.go:229 new block {"index": 4582} -2023-12-15T23:22:00.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4582, "blockHeight": 4582, "took": "6.82241ms"} -2023-12-15T23:22:00.267Z INFO sending PrepareRequest {"height": 4583, "view": 0} -2023-12-15T23:22:00.267Z INFO sending Commit {"height": 4583, "view": 0} -2023-12-15T23:22:00.268Z INFO approving block {"height": 4583, "hash": "fbabf5f1573c514b16a3ddb2c446084b0282ac3a0b4b599375e803e933ae35df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "045fbd63b22e69491d21b5c775e67fc84860173d2f0bbd0dd682bab0bed9c81b"} -2023-12-15T23:22:00.270Z INFO initializing dbft {"height": 4584, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:00.271Z debug frostfs-node/morph.go:229 new block {"index": 4583} -2023-12-15T23:22:01.264Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4583, "blockHeight": 4583, "took": "4.980011ms"} -2023-12-15T23:22:01.269Z INFO sending PrepareRequest {"height": 4584, "view": 0} -2023-12-15T23:22:01.269Z INFO sending Commit {"height": 4584, "view": 0} -2023-12-15T23:22:01.269Z INFO approving block {"height": 4584, "hash": "66cca4cb77c89484810cbae9b68dea5132cfbc3c5641d0f9e3db7e22ca35e2bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbabf5f1573c514b16a3ddb2c446084b0282ac3a0b4b599375e803e933ae35df"} -2023-12-15T23:22:01.270Z INFO initializing dbft {"height": 4585, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:01.271Z debug frostfs-node/morph.go:229 new block {"index": 4584} -2023-12-15T23:22:02.266Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4584, "blockHeight": 4584, "took": "6.279744ms"} -2023-12-15T23:22:02.270Z INFO sending PrepareRequest {"height": 4585, "view": 0} -2023-12-15T23:22:02.270Z INFO sending Commit {"height": 4585, "view": 0} -2023-12-15T23:22:02.271Z INFO approving block {"height": 4585, "hash": "0852298fcf46fb14a3ac7c67bbc2553e5cb1f5625893dec240dcc6e061955f28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66cca4cb77c89484810cbae9b68dea5132cfbc3c5641d0f9e3db7e22ca35e2bf"} -2023-12-15T23:22:02.273Z INFO initializing dbft {"height": 4586, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:02.273Z debug frostfs-node/morph.go:229 new block {"index": 4585} -2023-12-15T23:22:03.267Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4585, "blockHeight": 4585, "took": "6.300095ms"} -2023-12-15T23:22:03.272Z INFO sending PrepareRequest {"height": 4586, "view": 0} -2023-12-15T23:22:03.273Z INFO sending Commit {"height": 4586, "view": 0} -2023-12-15T23:22:03.273Z INFO approving block {"height": 4586, "hash": "25e1bff6b4fd888a82d1d92cb797c1c925ffe3405a16d28c2702a16ae05f2120", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0852298fcf46fb14a3ac7c67bbc2553e5cb1f5625893dec240dcc6e061955f28"} -2023-12-15T23:22:03.275Z INFO initializing dbft {"height": 4587, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:03.275Z debug frostfs-node/morph.go:229 new block {"index": 4586} -2023-12-15T23:22:04.268Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4586, "blockHeight": 4586, "took": "5.989636ms"} -2023-12-15T23:22:04.274Z INFO sending PrepareRequest {"height": 4587, "view": 0} -2023-12-15T23:22:04.275Z INFO sending Commit {"height": 4587, "view": 0} -2023-12-15T23:22:04.275Z INFO approving block {"height": 4587, "hash": "ad4e3955f05221e06544079e6e989639601648d16447a412dc862b7f4311276e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25e1bff6b4fd888a82d1d92cb797c1c925ffe3405a16d28c2702a16ae05f2120"} -2023-12-15T23:22:04.276Z INFO initializing dbft {"height": 4588, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:04.277Z debug frostfs-node/morph.go:229 new block {"index": 4587} -2023-12-15T23:22:05.270Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4587, "blockHeight": 4587, "took": "6.372867ms"} -2023-12-15T23:22:05.276Z INFO sending PrepareRequest {"height": 4588, "view": 0} -2023-12-15T23:22:05.276Z INFO sending Commit {"height": 4588, "view": 0} -2023-12-15T23:22:05.277Z INFO approving block {"height": 4588, "hash": "b935d0509a05b0a44fc9935ff2b94f3d1ff46bce87b1a39c4f3c72eb1930caf8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad4e3955f05221e06544079e6e989639601648d16447a412dc862b7f4311276e"} -2023-12-15T23:22:05.279Z INFO initializing dbft {"height": 4589, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:05.280Z debug frostfs-node/morph.go:229 new block {"index": 4588} -2023-12-15T23:22:06.271Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4588, "blockHeight": 4588, "took": "7.447694ms"} -2023-12-15T23:22:06.278Z INFO sending PrepareRequest {"height": 4589, "view": 0} -2023-12-15T23:22:06.279Z INFO sending Commit {"height": 4589, "view": 0} -2023-12-15T23:22:06.279Z INFO approving block {"height": 4589, "hash": "5ad898faeffa1c7709623832626689660de2940188091df079cd8ddde4fc44b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b935d0509a05b0a44fc9935ff2b94f3d1ff46bce87b1a39c4f3c72eb1930caf8"} -2023-12-15T23:22:06.281Z INFO initializing dbft {"height": 4590, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:06.282Z debug frostfs-node/morph.go:229 new block {"index": 4589} -2023-12-15T23:22:07.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4589, "blockHeight": 4589, "took": "7.493896ms"} -2023-12-15T23:22:07.281Z INFO sending PrepareRequest {"height": 4590, "view": 0} -2023-12-15T23:22:07.281Z INFO sending Commit {"height": 4590, "view": 0} -2023-12-15T23:22:07.281Z INFO approving block {"height": 4590, "hash": "27cd1a4e6e41ef9762c52e349965d9c944e6a19f100f2b99279bc86688b0aead", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ad898faeffa1c7709623832626689660de2940188091df079cd8ddde4fc44b6"} -2023-12-15T23:22:07.283Z INFO initializing dbft {"height": 4591, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:07.284Z debug frostfs-node/morph.go:229 new block {"index": 4590} -2023-12-15T23:22:08.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4590, "blockHeight": 4590, "took": "6.473419ms"} -2023-12-15T23:22:08.282Z INFO sending PrepareRequest {"height": 4591, "view": 0} -2023-12-15T23:22:08.282Z INFO sending Commit {"height": 4591, "view": 0} -2023-12-15T23:22:08.283Z INFO approving block {"height": 4591, "hash": "dc57a4ba7fd07087463a09027d4e636787e409fb30da17ca28a8db4f00d60b5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27cd1a4e6e41ef9762c52e349965d9c944e6a19f100f2b99279bc86688b0aead"} -2023-12-15T23:22:08.284Z INFO initializing dbft {"height": 4592, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:08.285Z debug frostfs-node/morph.go:229 new block {"index": 4591} -2023-12-15T23:22:09.273Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4591, "blockHeight": 4591, "took": "6.542149ms"} -2023-12-15T23:22:09.284Z INFO sending PrepareRequest {"height": 4592, "view": 0} -2023-12-15T23:22:09.284Z INFO sending Commit {"height": 4592, "view": 0} -2023-12-15T23:22:09.284Z INFO approving block {"height": 4592, "hash": "3b6e2210bafaca00e23108c4aff8d4662ba3f794a86456cba7bc74c3a7296f00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc57a4ba7fd07087463a09027d4e636787e409fb30da17ca28a8db4f00d60b5c"} -2023-12-15T23:22:09.285Z INFO initializing dbft {"height": 4593, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:09.286Z debug frostfs-node/morph.go:229 new block {"index": 4592} -2023-12-15T23:22:10.274Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4592, "blockHeight": 4592, "took": "6.38076ms"} -2023-12-15T23:22:10.286Z INFO sending PrepareRequest {"height": 4593, "view": 0} -2023-12-15T23:22:10.286Z INFO sending Commit {"height": 4593, "view": 0} -2023-12-15T23:22:10.286Z INFO approving block {"height": 4593, "hash": "2419143fd4f49e2f8f680fcc848ddbe4c9116a7060bff72e2fe69aef6f8b9660", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b6e2210bafaca00e23108c4aff8d4662ba3f794a86456cba7bc74c3a7296f00"} -2023-12-15T23:22:10.287Z INFO initializing dbft {"height": 4594, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:10.288Z debug frostfs-node/morph.go:229 new block {"index": 4593} -2023-12-15T23:22:11.277Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4593, "blockHeight": 4593, "took": "8.624464ms"} -2023-12-15T23:22:11.288Z INFO sending PrepareRequest {"height": 4594, "view": 0} -2023-12-15T23:22:11.288Z INFO sending Commit {"height": 4594, "view": 0} -2023-12-15T23:22:11.288Z INFO approving block {"height": 4594, "hash": "0d9d00811adc0bd70bcf56c43cfee52e9ba2a8339dedb782c1cb15575a29c178", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2419143fd4f49e2f8f680fcc848ddbe4c9116a7060bff72e2fe69aef6f8b9660"} -2023-12-15T23:22:11.290Z INFO initializing dbft {"height": 4595, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:11.292Z debug frostfs-node/morph.go:229 new block {"index": 4594} -2023-12-15T23:22:12.275Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4594, "blockHeight": 4594, "took": "5.313798ms"} -2023-12-15T23:22:12.290Z INFO sending PrepareRequest {"height": 4595, "view": 0} -2023-12-15T23:22:12.290Z INFO sending Commit {"height": 4595, "view": 0} -2023-12-15T23:22:12.290Z INFO approving block {"height": 4595, "hash": "f61888dbfca7134f33a7d4b45b61f803bf97a35717eaf49c95fd22cfd5c4d9cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d9d00811adc0bd70bcf56c43cfee52e9ba2a8339dedb782c1cb15575a29c178"} -2023-12-15T23:22:12.292Z INFO initializing dbft {"height": 4596, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:12.293Z debug frostfs-node/morph.go:229 new block {"index": 4595} -2023-12-15T23:22:13.276Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4595, "blockHeight": 4595, "took": "6.499237ms"} -2023-12-15T23:22:13.291Z INFO sending PrepareRequest {"height": 4596, "view": 0} -2023-12-15T23:22:13.292Z INFO sending Commit {"height": 4596, "view": 0} -2023-12-15T23:22:13.292Z INFO approving block {"height": 4596, "hash": "d7fda0e4e5871db59278d41b348887e5eaddc6fb6ed61c86a8ab804cfd28c92e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f61888dbfca7134f33a7d4b45b61f803bf97a35717eaf49c95fd22cfd5c4d9cd"} -2023-12-15T23:22:13.294Z INFO initializing dbft {"height": 4597, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:13.294Z debug frostfs-node/morph.go:229 new block {"index": 4596} -2023-12-15T23:22:14.276Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4596, "blockHeight": 4596, "took": "5.604654ms"} -2023-12-15T23:22:14.293Z INFO sending PrepareRequest {"height": 4597, "view": 0} -2023-12-15T23:22:14.294Z INFO sending Commit {"height": 4597, "view": 0} -2023-12-15T23:22:14.294Z INFO approving block {"height": 4597, "hash": "a55d0fb605dbf459650312d6c6bffdc5536f12740773ce4df78547f02780e443", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7fda0e4e5871db59278d41b348887e5eaddc6fb6ed61c86a8ab804cfd28c92e"} -2023-12-15T23:22:14.297Z INFO initializing dbft {"height": 4598, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:14.298Z debug frostfs-node/morph.go:229 new block {"index": 4597} -2023-12-15T23:22:15.277Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4597, "blockHeight": 4597, "took": "5.171633ms"} -2023-12-15T23:22:15.296Z INFO sending PrepareRequest {"height": 4598, "view": 0} -2023-12-15T23:22:15.296Z INFO sending Commit {"height": 4598, "view": 0} -2023-12-15T23:22:15.297Z INFO approving block {"height": 4598, "hash": "d50951c8c09794e8c174b9dc53fc687e201f9bface2751431d48038bb8a1a829", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a55d0fb605dbf459650312d6c6bffdc5536f12740773ce4df78547f02780e443"} -2023-12-15T23:22:15.298Z INFO initializing dbft {"height": 4599, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:15.299Z debug frostfs-node/morph.go:229 new block {"index": 4598} -2023-12-15T23:22:16.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4598, "blockHeight": 4598, "took": "6.033884ms"} -2023-12-15T23:22:16.298Z INFO sending PrepareRequest {"height": 4599, "view": 0} -2023-12-15T23:22:16.298Z INFO sending Commit {"height": 4599, "view": 0} -2023-12-15T23:22:16.299Z INFO approving block {"height": 4599, "hash": "81cb6a64821acd345a8fbc796f59d93556acb1535da684ca130b905b132ac800", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d50951c8c09794e8c174b9dc53fc687e201f9bface2751431d48038bb8a1a829"} -2023-12-15T23:22:16.300Z INFO initializing dbft {"height": 4600, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:16.301Z debug frostfs-node/morph.go:229 new block {"index": 4599} -2023-12-15T23:22:17.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4599, "blockHeight": 4599, "took": "5.109991ms"} -2023-12-15T23:22:17.300Z INFO sending PrepareRequest {"height": 4600, "view": 0} -2023-12-15T23:22:17.301Z INFO sending Commit {"height": 4600, "view": 0} -2023-12-15T23:22:17.301Z INFO approving block {"height": 4600, "hash": "de2d84b775ec68a1da9514685dc9952e9f61c328e335dcfe386573a360e60157", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81cb6a64821acd345a8fbc796f59d93556acb1535da684ca130b905b132ac800"} -2023-12-15T23:22:17.303Z INFO initializing dbft {"height": 4601, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:17.303Z debug frostfs-node/morph.go:229 new block {"index": 4600} -2023-12-15T23:22:18.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4600, "blockHeight": 4600, "took": "5.768648ms"} -2023-12-15T23:22:18.302Z INFO sending PrepareRequest {"height": 4601, "view": 0} -2023-12-15T23:22:18.302Z INFO sending Commit {"height": 4601, "view": 0} -2023-12-15T23:22:18.303Z INFO approving block {"height": 4601, "hash": "cbe7249664bf35580b570189f2266fe05946fa6c08582dfdf6d7bc83880bc443", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de2d84b775ec68a1da9514685dc9952e9f61c328e335dcfe386573a360e60157"} -2023-12-15T23:22:18.304Z INFO initializing dbft {"height": 4602, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:18.305Z debug frostfs-node/morph.go:229 new block {"index": 4601} -2023-12-15T23:22:19.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4601, "blockHeight": 4601, "took": "7.280692ms"} -2023-12-15T23:22:19.304Z INFO sending PrepareRequest {"height": 4602, "view": 0} -2023-12-15T23:22:19.305Z INFO sending Commit {"height": 4602, "view": 0} -2023-12-15T23:22:19.305Z INFO approving block {"height": 4602, "hash": "fbde0919bb7ec72a745588c94795f768f242da521c579c215759602b3592a6f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbe7249664bf35580b570189f2266fe05946fa6c08582dfdf6d7bc83880bc443"} -2023-12-15T23:22:19.307Z INFO initializing dbft {"height": 4603, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:19.308Z debug frostfs-node/morph.go:229 new block {"index": 4602} -2023-12-15T23:22:20.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4602, "blockHeight": 4602, "took": "7.453974ms"} -2023-12-15T23:22:20.307Z INFO sending PrepareRequest {"height": 4603, "view": 0} -2023-12-15T23:22:20.307Z INFO sending Commit {"height": 4603, "view": 0} -2023-12-15T23:22:20.308Z INFO approving block {"height": 4603, "hash": "6fd36abd32abce802b53fb003f8a3c629d91a1667ada8ef77d1f8a8732438e59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbde0919bb7ec72a745588c94795f768f242da521c579c215759602b3592a6f2"} -2023-12-15T23:22:20.311Z INFO initializing dbft {"height": 4604, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:20.311Z debug frostfs-node/morph.go:229 new block {"index": 4603} -2023-12-15T23:22:21.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4603, "blockHeight": 4603, "took": "6.374963ms"} -2023-12-15T23:22:21.310Z INFO sending PrepareRequest {"height": 4604, "view": 0} -2023-12-15T23:22:21.310Z INFO sending Commit {"height": 4604, "view": 0} -2023-12-15T23:22:21.310Z INFO approving block {"height": 4604, "hash": "3e005e7f6b1e038f46359a38ad0940cd3365482c92f9b4f63177f543b030ef79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fd36abd32abce802b53fb003f8a3c629d91a1667ada8ef77d1f8a8732438e59"} -2023-12-15T23:22:21.311Z INFO initializing dbft {"height": 4605, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:21.312Z debug frostfs-node/morph.go:229 new block {"index": 4604} -2023-12-15T23:22:22.285Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4604, "blockHeight": 4604, "took": "7.194297ms"} -2023-12-15T23:22:22.311Z INFO sending PrepareRequest {"height": 4605, "view": 0} -2023-12-15T23:22:22.311Z INFO sending Commit {"height": 4605, "view": 0} -2023-12-15T23:22:22.312Z INFO approving block {"height": 4605, "hash": "23c9c6cba23162329bcd0990d6e8db144af9878ca282c54d0e19117ec5c7b038", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e005e7f6b1e038f46359a38ad0940cd3365482c92f9b4f63177f543b030ef79"} -2023-12-15T23:22:22.313Z INFO initializing dbft {"height": 4606, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:22.314Z debug frostfs-node/morph.go:229 new block {"index": 4605} -2023-12-15T23:22:23.287Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4605, "blockHeight": 4605, "took": "7.899922ms"} -2023-12-15T23:22:23.313Z INFO sending PrepareRequest {"height": 4606, "view": 0} -2023-12-15T23:22:23.314Z INFO sending Commit {"height": 4606, "view": 0} -2023-12-15T23:22:23.314Z INFO approving block {"height": 4606, "hash": "3df1c8fabad4de7d8d3d5d5b904aba6d81a88db703de7f4db27b80dd428a18db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23c9c6cba23162329bcd0990d6e8db144af9878ca282c54d0e19117ec5c7b038"} -2023-12-15T23:22:23.316Z INFO initializing dbft {"height": 4607, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:23.317Z debug frostfs-node/morph.go:229 new block {"index": 4606} -2023-12-15T23:22:24.288Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4606, "blockHeight": 4606, "took": "8.149564ms"} -2023-12-15T23:22:24.316Z INFO sending PrepareRequest {"height": 4607, "view": 0} -2023-12-15T23:22:24.316Z INFO sending Commit {"height": 4607, "view": 0} -2023-12-15T23:22:24.317Z INFO approving block {"height": 4607, "hash": "1409dbaaa92b6e710e2966a39eefb296d06dab2e2c907762cc96299ce27c9e39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3df1c8fabad4de7d8d3d5d5b904aba6d81a88db703de7f4db27b80dd428a18db"} -2023-12-15T23:22:24.319Z INFO initializing dbft {"height": 4608, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:24.320Z debug frostfs-node/morph.go:229 new block {"index": 4607} -2023-12-15T23:22:25.291Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4607, "blockHeight": 4607, "took": "9.766537ms"} -2023-12-15T23:22:25.319Z INFO sending PrepareRequest {"height": 4608, "view": 0} -2023-12-15T23:22:25.319Z INFO sending Commit {"height": 4608, "view": 0} -2023-12-15T23:22:25.320Z INFO approving block {"height": 4608, "hash": "610e765bd2c9467dfab088b2886e3b69cebc78c2686e5ee779c6f90d47ae3296", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1409dbaaa92b6e710e2966a39eefb296d06dab2e2c907762cc96299ce27c9e39"} -2023-12-15T23:22:25.322Z INFO initializing dbft {"height": 4609, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:25.323Z debug frostfs-node/morph.go:229 new block {"index": 4608} -2023-12-15T23:22:26.288Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4608, "blockHeight": 4608, "took": "5.47984ms"} -2023-12-15T23:22:26.321Z INFO sending PrepareRequest {"height": 4609, "view": 0} -2023-12-15T23:22:26.322Z INFO sending Commit {"height": 4609, "view": 0} -2023-12-15T23:22:26.322Z INFO approving block {"height": 4609, "hash": "5caec04f72d23d6de96caa3ab8c17f909693e3a5d0b3426c6526de9d7585963b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "610e765bd2c9467dfab088b2886e3b69cebc78c2686e5ee779c6f90d47ae3296"} -2023-12-15T23:22:26.323Z INFO initializing dbft {"height": 4610, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:26.324Z debug frostfs-node/morph.go:229 new block {"index": 4609} -2023-12-15T23:22:27.289Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4609, "blockHeight": 4609, "took": "5.406637ms"} -2023-12-15T23:22:27.323Z INFO sending PrepareRequest {"height": 4610, "view": 0} -2023-12-15T23:22:27.323Z INFO sending Commit {"height": 4610, "view": 0} -2023-12-15T23:22:27.324Z INFO approving block {"height": 4610, "hash": "5d228c2c51e103ac4a253734aa2e3de3fec9aa7ccdfee495bf719ef62afd74db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5caec04f72d23d6de96caa3ab8c17f909693e3a5d0b3426c6526de9d7585963b"} -2023-12-15T23:22:27.325Z INFO initializing dbft {"height": 4611, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:27.325Z debug frostfs-node/morph.go:229 new block {"index": 4610} -2023-12-15T23:22:28.296Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4610, "blockHeight": 4610, "took": "11.725997ms"} -2023-12-15T23:22:28.326Z INFO sending PrepareRequest {"height": 4611, "view": 0} -2023-12-15T23:22:28.326Z INFO sending Commit {"height": 4611, "view": 0} -2023-12-15T23:22:28.327Z INFO approving block {"height": 4611, "hash": "aa6bf28810500aeb722b713cfeb5164219d1647283915fbfb49fdf9be9e82e3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d228c2c51e103ac4a253734aa2e3de3fec9aa7ccdfee495bf719ef62afd74db"} -2023-12-15T23:22:28.329Z INFO initializing dbft {"height": 4612, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:28.330Z debug frostfs-node/morph.go:229 new block {"index": 4611} -2023-12-15T23:22:29.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4611, "blockHeight": 4611, "took": "6.745294ms"} -2023-12-15T23:22:29.328Z INFO sending PrepareRequest {"height": 4612, "view": 0} -2023-12-15T23:22:29.328Z INFO sending Commit {"height": 4612, "view": 0} -2023-12-15T23:22:29.329Z INFO approving block {"height": 4612, "hash": "0b82c12d85d07de87b272fbe7c9fe423021e29800b37d7b6e1c031b9d6db13f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa6bf28810500aeb722b713cfeb5164219d1647283915fbfb49fdf9be9e82e3e"} -2023-12-15T23:22:29.330Z INFO initializing dbft {"height": 4613, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:29.331Z debug frostfs-node/morph.go:229 new block {"index": 4612} -2023-12-15T23:22:30.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4612, "blockHeight": 4612, "took": "6.915012ms"} -2023-12-15T23:22:30.330Z INFO sending PrepareRequest {"height": 4613, "view": 0} -2023-12-15T23:22:30.330Z INFO sending Commit {"height": 4613, "view": 0} -2023-12-15T23:22:30.331Z INFO approving block {"height": 4613, "hash": "466a5ccf24fb0aabb26566755ba19f903b234dfc1dbfbca4e7e837a93a4cc165", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b82c12d85d07de87b272fbe7c9fe423021e29800b37d7b6e1c031b9d6db13f6"} -2023-12-15T23:22:30.332Z INFO initializing dbft {"height": 4614, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:30.334Z debug frostfs-node/morph.go:229 new block {"index": 4613} -2023-12-15T23:22:31.293Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4613, "blockHeight": 4613, "took": "6.626498ms"} -2023-12-15T23:22:31.332Z INFO sending PrepareRequest {"height": 4614, "view": 0} -2023-12-15T23:22:31.332Z INFO sending Commit {"height": 4614, "view": 0} -2023-12-15T23:22:31.333Z INFO approving block {"height": 4614, "hash": "a8f65080ca655a570028fea0a301cc60ff599701761712ba4d2d487be3e93a10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "466a5ccf24fb0aabb26566755ba19f903b234dfc1dbfbca4e7e837a93a4cc165"} -2023-12-15T23:22:31.335Z INFO initializing dbft {"height": 4615, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:31.336Z debug frostfs-node/morph.go:229 new block {"index": 4614} -2023-12-15T23:22:32.294Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4614, "blockHeight": 4614, "took": "6.777358ms"} -2023-12-15T23:22:32.334Z INFO sending PrepareRequest {"height": 4615, "view": 0} -2023-12-15T23:22:32.334Z INFO sending Commit {"height": 4615, "view": 0} -2023-12-15T23:22:32.335Z INFO approving block {"height": 4615, "hash": "41dc8584e6d0165946c4a51c339f07bfd094ff48421c2fc9ea59c5e0be35cf29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8f65080ca655a570028fea0a301cc60ff599701761712ba4d2d487be3e93a10"} -2023-12-15T23:22:32.337Z INFO initializing dbft {"height": 4616, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:32.338Z debug frostfs-node/morph.go:229 new block {"index": 4615} -2023-12-15T23:22:33.295Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4615, "blockHeight": 4615, "took": "7.105673ms"} -2023-12-15T23:22:33.337Z INFO sending PrepareRequest {"height": 4616, "view": 0} -2023-12-15T23:22:33.338Z INFO sending Commit {"height": 4616, "view": 0} -2023-12-15T23:22:33.339Z INFO approving block {"height": 4616, "hash": "220a68323649bf058662e487ec1235f9cc0016b020e0a03032748a7b40b2bf5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41dc8584e6d0165946c4a51c339f07bfd094ff48421c2fc9ea59c5e0be35cf29"} -2023-12-15T23:22:33.342Z INFO initializing dbft {"height": 4617, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:33.344Z debug frostfs-node/morph.go:229 new block {"index": 4616} -2023-12-15T23:22:34.297Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4616, "blockHeight": 4616, "took": "7.697665ms"} -2023-12-15T23:22:34.340Z INFO sending PrepareRequest {"height": 4617, "view": 0} -2023-12-15T23:22:34.340Z INFO sending Commit {"height": 4617, "view": 0} -2023-12-15T23:22:34.340Z INFO approving block {"height": 4617, "hash": "e378435d9be456fc9f018f9eba5b229958b1e4e61ba2db79ab258f96e3f0884c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "220a68323649bf058662e487ec1235f9cc0016b020e0a03032748a7b40b2bf5e"} -2023-12-15T23:22:34.341Z INFO initializing dbft {"height": 4618, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:34.342Z debug frostfs-node/morph.go:229 new block {"index": 4617} -2023-12-15T23:22:34.345Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:22:34.349Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:22:34.349Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:22:35.297Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4617, "blockHeight": 4617, "took": "6.641827ms"} -2023-12-15T23:22:35.341Z INFO sending PrepareRequest {"height": 4618, "view": 0} -2023-12-15T23:22:35.342Z INFO sending Commit {"height": 4618, "view": 0} -2023-12-15T23:22:35.342Z INFO approving block {"height": 4618, "hash": "ba7f442347f4616cbc6867149f974aeaf97f4aabd113f2afda987f5a13e9c9b7", "tx_count": 2, "merkle": "e4744991e183a0d59da199f8287b55be34ab765165ce1f2f36c10b1b2edb9b2b", "prev": "e378435d9be456fc9f018f9eba5b229958b1e4e61ba2db79ab258f96e3f0884c"} -2023-12-15T23:22:35.344Z INFO runtime log {"tx": "126777eb055ff262a8c84f2e3c51fd341bfa3e134e59b175dfc62f39556ca5c2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:22:35.344Z INFO runtime log {"tx": "126777eb055ff262a8c84f2e3c51fd341bfa3e134e59b175dfc62f39556ca5c2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:22:35.345Z INFO initializing dbft {"height": 4619, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:35.346Z debug frostfs-node/morph.go:229 new block {"index": 4618} -2023-12-15T23:22:36.306Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4618, "blockHeight": 4618, "took": "15.248874ms"} -2023-12-15T23:22:36.344Z INFO sending PrepareRequest {"height": 4619, "view": 0} -2023-12-15T23:22:36.344Z INFO sending Commit {"height": 4619, "view": 0} -2023-12-15T23:22:36.345Z INFO approving block {"height": 4619, "hash": "c9790be0a9f99db9ccacf10f237375c0d2abc8346c5bdbb33c736dfcd0e9632d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba7f442347f4616cbc6867149f974aeaf97f4aabd113f2afda987f5a13e9c9b7"} -2023-12-15T23:22:36.346Z INFO initializing dbft {"height": 4620, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:36.347Z debug frostfs-node/morph.go:229 new block {"index": 4619} -2023-12-15T23:22:37.298Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4619, "blockHeight": 4619, "took": "6.238483ms"} -2023-12-15T23:22:37.346Z INFO sending PrepareRequest {"height": 4620, "view": 0} -2023-12-15T23:22:37.346Z INFO sending Commit {"height": 4620, "view": 0} -2023-12-15T23:22:37.346Z INFO approving block {"height": 4620, "hash": "3d31e2ae43d9fe373a14b315f57b22963a99abb55fa1fc8a4297a81500921bdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9790be0a9f99db9ccacf10f237375c0d2abc8346c5bdbb33c736dfcd0e9632d"} -2023-12-15T23:22:37.348Z INFO initializing dbft {"height": 4621, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:37.348Z debug frostfs-node/morph.go:229 new block {"index": 4620} -2023-12-15T23:22:38.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4620, "blockHeight": 4620, "took": "9.468573ms"} -2023-12-15T23:22:38.348Z INFO sending PrepareRequest {"height": 4621, "view": 0} -2023-12-15T23:22:38.348Z INFO sending Commit {"height": 4621, "view": 0} -2023-12-15T23:22:38.349Z INFO approving block {"height": 4621, "hash": "101386c719bc2687f7b1c4f6cd983dde9f2c66ba40dd6969efaa0ee029ba32b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d31e2ae43d9fe373a14b315f57b22963a99abb55fa1fc8a4297a81500921bdf"} -2023-12-15T23:22:38.352Z INFO initializing dbft {"height": 4622, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:38.353Z debug frostfs-node/morph.go:229 new block {"index": 4621} -2023-12-15T23:22:39.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4621, "blockHeight": 4621, "took": "8.112346ms"} -2023-12-15T23:22:39.350Z INFO sending PrepareRequest {"height": 4622, "view": 0} -2023-12-15T23:22:39.351Z INFO sending Commit {"height": 4622, "view": 0} -2023-12-15T23:22:39.351Z INFO approving block {"height": 4622, "hash": "5a52f4530c52d37fd2d3ac8be869636c8f4843c23f60ec9f77f793332d53c897", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "101386c719bc2687f7b1c4f6cd983dde9f2c66ba40dd6969efaa0ee029ba32b0"} -2023-12-15T23:22:39.353Z INFO initializing dbft {"height": 4623, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:39.354Z debug frostfs-node/morph.go:229 new block {"index": 4622} -2023-12-15T23:22:40.301Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4622, "blockHeight": 4622, "took": "6.49064ms"} -2023-12-15T23:22:40.352Z INFO sending PrepareRequest {"height": 4623, "view": 0} -2023-12-15T23:22:40.352Z INFO sending Commit {"height": 4623, "view": 0} -2023-12-15T23:22:40.353Z INFO approving block {"height": 4623, "hash": "6f5e47d50ebb349828b0bd64b4987e7e9a0c3eb3eee802f59bfbffcb1bccec7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a52f4530c52d37fd2d3ac8be869636c8f4843c23f60ec9f77f793332d53c897"} -2023-12-15T23:22:40.355Z INFO initializing dbft {"height": 4624, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:40.355Z debug frostfs-node/morph.go:229 new block {"index": 4623} -2023-12-15T23:22:41.303Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4623, "blockHeight": 4623, "took": "7.172364ms"} -2023-12-15T23:22:41.355Z INFO sending PrepareRequest {"height": 4624, "view": 0} -2023-12-15T23:22:41.355Z INFO sending Commit {"height": 4624, "view": 0} -2023-12-15T23:22:41.355Z INFO approving block {"height": 4624, "hash": "63a90113a287e1cece6bafdd138e79561c8cd4633c490531840ad29b246eb76b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f5e47d50ebb349828b0bd64b4987e7e9a0c3eb3eee802f59bfbffcb1bccec7d"} -2023-12-15T23:22:41.356Z INFO initializing dbft {"height": 4625, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:41.357Z debug frostfs-node/morph.go:229 new block {"index": 4624} -2023-12-15T23:22:42.307Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4624, "blockHeight": 4624, "took": "10.820431ms"} -2023-12-15T23:22:42.357Z INFO sending PrepareRequest {"height": 4625, "view": 0} -2023-12-15T23:22:42.358Z INFO sending Commit {"height": 4625, "view": 0} -2023-12-15T23:22:42.359Z INFO approving block {"height": 4625, "hash": "c434f1fb6b3d2405dbbd9b227be3f5967d497ab0d718feb9d42dbddaea17e7e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63a90113a287e1cece6bafdd138e79561c8cd4633c490531840ad29b246eb76b"} -2023-12-15T23:22:42.361Z INFO initializing dbft {"height": 4626, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:42.362Z debug frostfs-node/morph.go:229 new block {"index": 4625} -2023-12-15T23:22:43.303Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4625, "blockHeight": 4625, "took": "5.66759ms"} -2023-12-15T23:22:43.360Z INFO sending PrepareRequest {"height": 4626, "view": 0} -2023-12-15T23:22:43.361Z INFO sending Commit {"height": 4626, "view": 0} -2023-12-15T23:22:43.361Z INFO approving block {"height": 4626, "hash": "23facd14472b8e75379a7b4ffdeb8972cd090903c68c8113759adda9330b6f4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c434f1fb6b3d2405dbbd9b227be3f5967d497ab0d718feb9d42dbddaea17e7e1"} -2023-12-15T23:22:43.362Z INFO initializing dbft {"height": 4627, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:43.363Z debug frostfs-node/morph.go:229 new block {"index": 4626} -2023-12-15T23:22:44.306Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4626, "blockHeight": 4626, "took": "7.906659ms"} -2023-12-15T23:22:44.362Z INFO sending PrepareRequest {"height": 4627, "view": 0} -2023-12-15T23:22:44.362Z INFO sending Commit {"height": 4627, "view": 0} -2023-12-15T23:22:44.362Z INFO approving block {"height": 4627, "hash": "8c9f316026a9fb4b545b22aa8e439385bc6ef726dfc7436cfbbf7c8940980130", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23facd14472b8e75379a7b4ffdeb8972cd090903c68c8113759adda9330b6f4b"} -2023-12-15T23:22:44.364Z INFO initializing dbft {"height": 4628, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:44.365Z debug frostfs-node/morph.go:229 new block {"index": 4627} -2023-12-15T23:22:45.306Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4627, "blockHeight": 4627, "took": "6.598443ms"} -2023-12-15T23:22:45.364Z INFO sending PrepareRequest {"height": 4628, "view": 0} -2023-12-15T23:22:45.364Z INFO sending Commit {"height": 4628, "view": 0} -2023-12-15T23:22:45.364Z INFO approving block {"height": 4628, "hash": "cc51eb790f481572b3b0def6391099963906130f91f414af27fcd1156ea0b662", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c9f316026a9fb4b545b22aa8e439385bc6ef726dfc7436cfbbf7c8940980130"} -2023-12-15T23:22:45.366Z INFO initializing dbft {"height": 4629, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:45.367Z debug frostfs-node/morph.go:229 new block {"index": 4628} -2023-12-15T23:22:46.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4628, "blockHeight": 4628, "took": "7.418388ms"} -2023-12-15T23:22:46.366Z INFO sending PrepareRequest {"height": 4629, "view": 0} -2023-12-15T23:22:46.366Z INFO sending Commit {"height": 4629, "view": 0} -2023-12-15T23:22:46.367Z INFO approving block {"height": 4629, "hash": "9c94a4ffbd59b4861c1b41c299eee7456489d970c505416400e84327b35146c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc51eb790f481572b3b0def6391099963906130f91f414af27fcd1156ea0b662"} -2023-12-15T23:22:46.369Z INFO initializing dbft {"height": 4630, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:46.370Z debug frostfs-node/morph.go:229 new block {"index": 4629} -2023-12-15T23:22:47.314Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4629, "blockHeight": 4629, "took": "12.449862ms"} -2023-12-15T23:22:47.368Z INFO sending PrepareRequest {"height": 4630, "view": 0} -2023-12-15T23:22:47.368Z INFO sending Commit {"height": 4630, "view": 0} -2023-12-15T23:22:47.368Z INFO approving block {"height": 4630, "hash": "f4451dd0da68ecfff2790351e9c669301318ce86f6a7180cb9cd4862dece49b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c94a4ffbd59b4861c1b41c299eee7456489d970c505416400e84327b35146c3"} -2023-12-15T23:22:47.370Z INFO initializing dbft {"height": 4631, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:47.371Z debug frostfs-node/morph.go:229 new block {"index": 4630} -2023-12-15T23:22:48.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4630, "blockHeight": 4630, "took": "5.659244ms"} -2023-12-15T23:22:48.370Z INFO sending PrepareRequest {"height": 4631, "view": 0} -2023-12-15T23:22:48.370Z INFO sending Commit {"height": 4631, "view": 0} -2023-12-15T23:22:48.370Z INFO approving block {"height": 4631, "hash": "0dbf02de4d6902a7ae55e7588dd9ec16fb84b204271b588f7bd7b176c6f356f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4451dd0da68ecfff2790351e9c669301318ce86f6a7180cb9cd4862dece49b8"} -2023-12-15T23:22:48.371Z INFO initializing dbft {"height": 4632, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:48.372Z debug frostfs-node/morph.go:229 new block {"index": 4631} -2023-12-15T23:22:49.309Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4631, "blockHeight": 4631, "took": "5.704356ms"} -2023-12-15T23:22:49.372Z INFO sending PrepareRequest {"height": 4632, "view": 0} -2023-12-15T23:22:49.372Z INFO sending Commit {"height": 4632, "view": 0} -2023-12-15T23:22:49.372Z INFO approving block {"height": 4632, "hash": "7c5df656536f48d33c6deb53b74f59074dc78ca500e17a6ea22806b3cfd18721", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0dbf02de4d6902a7ae55e7588dd9ec16fb84b204271b588f7bd7b176c6f356f7"} -2023-12-15T23:22:49.375Z INFO initializing dbft {"height": 4633, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:49.376Z debug frostfs-node/morph.go:229 new block {"index": 4632} -2023-12-15T23:22:50.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4632, "blockHeight": 4632, "took": "6.706439ms"} -2023-12-15T23:22:50.374Z INFO sending PrepareRequest {"height": 4633, "view": 0} -2023-12-15T23:22:50.374Z INFO sending Commit {"height": 4633, "view": 0} -2023-12-15T23:22:50.374Z INFO approving block {"height": 4633, "hash": "96f568648ae3acbe7877cb3a19f96398d27d8f3c27deb1d4f0da0b8a8ef5032f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c5df656536f48d33c6deb53b74f59074dc78ca500e17a6ea22806b3cfd18721"} -2023-12-15T23:22:50.376Z INFO initializing dbft {"height": 4634, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:50.377Z debug frostfs-node/morph.go:229 new block {"index": 4633} -2023-12-15T23:22:51.312Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4633, "blockHeight": 4633, "took": "6.324435ms"} -2023-12-15T23:22:51.375Z INFO sending PrepareRequest {"height": 4634, "view": 0} -2023-12-15T23:22:51.375Z INFO sending Commit {"height": 4634, "view": 0} -2023-12-15T23:22:51.376Z INFO approving block {"height": 4634, "hash": "bb831ecf7b6b01939aa55307c2741c9b5f9f4172419ad0f6b63c0b88dcd0c31a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96f568648ae3acbe7877cb3a19f96398d27d8f3c27deb1d4f0da0b8a8ef5032f"} -2023-12-15T23:22:51.377Z INFO initializing dbft {"height": 4635, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:51.378Z debug frostfs-node/morph.go:229 new block {"index": 4634} -2023-12-15T23:22:52.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4634, "blockHeight": 4634, "took": "5.179583ms"} -2023-12-15T23:22:52.377Z INFO sending PrepareRequest {"height": 4635, "view": 0} -2023-12-15T23:22:52.377Z INFO sending Commit {"height": 4635, "view": 0} -2023-12-15T23:22:52.378Z INFO approving block {"height": 4635, "hash": "73aa4aad6c2ddc1d56611ff467fc7102a37ef54464fe9ac3c3f027a392d1a99d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb831ecf7b6b01939aa55307c2741c9b5f9f4172419ad0f6b63c0b88dcd0c31a"} -2023-12-15T23:22:52.379Z INFO initializing dbft {"height": 4636, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:52.379Z debug frostfs-node/morph.go:229 new block {"index": 4635} -2023-12-15T23:22:53.314Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4635, "blockHeight": 4635, "took": "6.900691ms"} -2023-12-15T23:22:53.380Z INFO sending PrepareRequest {"height": 4636, "view": 0} -2023-12-15T23:22:53.380Z INFO sending Commit {"height": 4636, "view": 0} -2023-12-15T23:22:53.381Z INFO approving block {"height": 4636, "hash": "2f59d83cde33114f80c842be64a6f413b595db832dc48e19f08e49397379da8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73aa4aad6c2ddc1d56611ff467fc7102a37ef54464fe9ac3c3f027a392d1a99d"} -2023-12-15T23:22:53.383Z INFO initializing dbft {"height": 4637, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:53.384Z debug frostfs-node/morph.go:229 new block {"index": 4636} -2023-12-15T23:22:54.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4636, "blockHeight": 4636, "took": "8.685725ms"} -2023-12-15T23:22:54.382Z INFO sending PrepareRequest {"height": 4637, "view": 0} -2023-12-15T23:22:54.383Z INFO sending Commit {"height": 4637, "view": 0} -2023-12-15T23:22:54.383Z INFO approving block {"height": 4637, "hash": "b3530eea77795fa657522fbe5bfa725db34da5c5be76d632f0d0eefd35a5d047", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f59d83cde33114f80c842be64a6f413b595db832dc48e19f08e49397379da8a"} -2023-12-15T23:22:54.385Z INFO initializing dbft {"height": 4638, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:54.385Z debug frostfs-node/morph.go:229 new block {"index": 4637} -2023-12-15T23:22:55.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4637, "blockHeight": 4637, "took": "8.330776ms"} -2023-12-15T23:22:55.384Z INFO sending PrepareRequest {"height": 4638, "view": 0} -2023-12-15T23:22:55.384Z INFO sending Commit {"height": 4638, "view": 0} -2023-12-15T23:22:55.384Z INFO approving block {"height": 4638, "hash": "6383db0af62d1a5f0866aeef6742b7d1da9f750e6bb35c49ad34e2e6e30b9487", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3530eea77795fa657522fbe5bfa725db34da5c5be76d632f0d0eefd35a5d047"} -2023-12-15T23:22:55.386Z INFO initializing dbft {"height": 4639, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:55.387Z debug frostfs-node/morph.go:229 new block {"index": 4638} -2023-12-15T23:22:56.320Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4638, "blockHeight": 4638, "took": "9.998338ms"} -2023-12-15T23:22:56.386Z INFO sending PrepareRequest {"height": 4639, "view": 0} -2023-12-15T23:22:56.387Z INFO sending Commit {"height": 4639, "view": 0} -2023-12-15T23:22:56.387Z INFO approving block {"height": 4639, "hash": "360aeb966e8264cd70816d18ab7d66cf95501b1cc85812c84c11fad1c85a5e36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6383db0af62d1a5f0866aeef6742b7d1da9f750e6bb35c49ad34e2e6e30b9487"} -2023-12-15T23:22:56.389Z INFO initializing dbft {"height": 4640, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:56.390Z debug frostfs-node/morph.go:229 new block {"index": 4639} -2023-12-15T23:22:56.397Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 20 epoch for daughters"} -2023-12-15T23:22:56.400Z INFO runtime log {"tx": "0fa18f079d86ca7bce59c0e1362cd383066bf42b4a0a976f3df5aa636880a72b", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:22:57.319Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4639, "blockHeight": 4639, "took": "8.211391ms"} -2023-12-15T23:22:57.389Z INFO sending PrepareRequest {"height": 4640, "view": 0} -2023-12-15T23:22:57.389Z INFO sending Commit {"height": 4640, "view": 0} -2023-12-15T23:22:57.389Z INFO approving block {"height": 4640, "hash": "c52f91fa84453e35cbfb3afea63903b56c19c4804ed5f52c569dfa4da43a21fe", "tx_count": 1, "merkle": "134d7f9e89740f46c552befd9f77d857e7efd702fa0f6e4fbe87bfe832c9dd02", "prev": "360aeb966e8264cd70816d18ab7d66cf95501b1cc85812c84c11fad1c85a5e36"} -2023-12-15T23:22:57.390Z INFO runtime log {"tx": "02ddc932e8bf87be4f6e0ffa02d7efe757d8779ffdbe52c5460f74899e7f4d13", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:22:57.391Z INFO initializing dbft {"height": 4641, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:57.392Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 20} -2023-12-15T23:22:57.392Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 20} -2023-12-15T23:22:57.393Z debug frostfs-node/morph.go:229 new block {"index": 4640} -2023-12-15T23:22:58.320Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 4640, "blockHeight": 4640, "took": "7.840121ms"} -2023-12-15T23:22:58.391Z INFO sending PrepareRequest {"height": 4641, "view": 0} -2023-12-15T23:22:58.391Z INFO sending Commit {"height": 4641, "view": 0} -2023-12-15T23:22:58.391Z INFO approving block {"height": 4641, "hash": "7ea415d0a49b0f2fc8e9a0ac465a5c6b25f99f4327ecfee7eff837f86fa5fd50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c52f91fa84453e35cbfb3afea63903b56c19c4804ed5f52c569dfa4da43a21fe"} -2023-12-15T23:22:58.392Z INFO initializing dbft {"height": 4642, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:58.393Z debug frostfs-node/morph.go:229 new block {"index": 4641} -2023-12-15T23:22:59.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4641, "blockHeight": 4641, "took": "7.296053ms"} -2023-12-15T23:22:59.393Z INFO sending PrepareRequest {"height": 4642, "view": 0} -2023-12-15T23:22:59.394Z INFO sending Commit {"height": 4642, "view": 0} -2023-12-15T23:22:59.394Z INFO approving block {"height": 4642, "hash": "a772cff8de9b03cf63340d6c42bbeae14f6a4b7c5a11e178f920e18128525b82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ea415d0a49b0f2fc8e9a0ac465a5c6b25f99f4327ecfee7eff837f86fa5fd50"} -2023-12-15T23:22:59.395Z INFO initializing dbft {"height": 4643, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:22:59.396Z debug frostfs-node/morph.go:229 new block {"index": 4642} -2023-12-15T23:23:00.320Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4642, "blockHeight": 4642, "took": "5.876571ms"} -2023-12-15T23:23:00.396Z INFO sending PrepareRequest {"height": 4643, "view": 0} -2023-12-15T23:23:00.396Z INFO sending Commit {"height": 4643, "view": 0} -2023-12-15T23:23:00.396Z INFO approving block {"height": 4643, "hash": "f7e279178d30c2ef77a13a47be08d8371920ee10fa2e199145a032708c401b05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a772cff8de9b03cf63340d6c42bbeae14f6a4b7c5a11e178f920e18128525b82"} -2023-12-15T23:23:00.397Z INFO initializing dbft {"height": 4644, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:00.398Z debug frostfs-node/morph.go:229 new block {"index": 4643} -2023-12-15T23:23:01.323Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4643, "blockHeight": 4643, "took": "8.041262ms"} -2023-12-15T23:23:01.397Z INFO sending PrepareRequest {"height": 4644, "view": 0} -2023-12-15T23:23:01.397Z INFO sending Commit {"height": 4644, "view": 0} -2023-12-15T23:23:01.398Z INFO approving block {"height": 4644, "hash": "56d5649a0530a2cebaa0fe986f9470aef4325cf5e8cd1ba39f4913f5978de4a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7e279178d30c2ef77a13a47be08d8371920ee10fa2e199145a032708c401b05"} -2023-12-15T23:23:01.399Z INFO initializing dbft {"height": 4645, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:01.400Z debug frostfs-node/morph.go:229 new block {"index": 4644} -2023-12-15T23:23:02.323Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4644, "blockHeight": 4644, "took": "6.313894ms"} -2023-12-15T23:23:02.398Z INFO sending PrepareRequest {"height": 4645, "view": 0} -2023-12-15T23:23:02.399Z INFO sending Commit {"height": 4645, "view": 0} -2023-12-15T23:23:02.399Z INFO approving block {"height": 4645, "hash": "616c04f9e50d42a61ee50eb070712fdac8d2555ec1dd0d60b772e763d1617811", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56d5649a0530a2cebaa0fe986f9470aef4325cf5e8cd1ba39f4913f5978de4a0"} -2023-12-15T23:23:02.400Z INFO initializing dbft {"height": 4646, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:02.401Z debug frostfs-node/morph.go:229 new block {"index": 4645} -2023-12-15T23:23:03.323Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4645, "blockHeight": 4645, "took": "6.041874ms"} -2023-12-15T23:23:03.400Z INFO sending PrepareRequest {"height": 4646, "view": 0} -2023-12-15T23:23:03.401Z INFO sending Commit {"height": 4646, "view": 0} -2023-12-15T23:23:03.401Z INFO approving block {"height": 4646, "hash": "ee5a0e4bd4180c963230a674aeff88825f051147247c92c045ff262a769e563a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "616c04f9e50d42a61ee50eb070712fdac8d2555ec1dd0d60b772e763d1617811"} -2023-12-15T23:23:03.403Z INFO initializing dbft {"height": 4647, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:03.404Z debug frostfs-node/morph.go:229 new block {"index": 4646} -2023-12-15T23:23:04.324Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4646, "blockHeight": 4646, "took": "5.653525ms"} -2023-12-15T23:23:04.402Z INFO sending PrepareRequest {"height": 4647, "view": 0} -2023-12-15T23:23:04.403Z INFO sending Commit {"height": 4647, "view": 0} -2023-12-15T23:23:04.403Z INFO approving block {"height": 4647, "hash": "4ce88a843ad28f68e040b7e520b118f4b659c358bab0e668fa5a006db107c9d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee5a0e4bd4180c963230a674aeff88825f051147247c92c045ff262a769e563a"} -2023-12-15T23:23:04.404Z INFO initializing dbft {"height": 4648, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:04.405Z debug frostfs-node/morph.go:229 new block {"index": 4647} -2023-12-15T23:23:05.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4647, "blockHeight": 4647, "took": "6.536902ms"} -2023-12-15T23:23:05.405Z INFO sending PrepareRequest {"height": 4648, "view": 0} -2023-12-15T23:23:05.405Z INFO sending Commit {"height": 4648, "view": 0} -2023-12-15T23:23:05.405Z INFO approving block {"height": 4648, "hash": "1547a2d90b950fb5ccec4d4324042f5ceacb5539e895ca5a7cd3d98d18e97f56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ce88a843ad28f68e040b7e520b118f4b659c358bab0e668fa5a006db107c9d4"} -2023-12-15T23:23:05.407Z INFO initializing dbft {"height": 4649, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:05.408Z debug frostfs-node/morph.go:229 new block {"index": 4648} -2023-12-15T23:23:06.328Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4648, "blockHeight": 4648, "took": "7.725273ms"} -2023-12-15T23:23:06.406Z INFO sending PrepareRequest {"height": 4649, "view": 0} -2023-12-15T23:23:06.406Z INFO sending Commit {"height": 4649, "view": 0} -2023-12-15T23:23:06.407Z INFO approving block {"height": 4649, "hash": "cb39528e74fcf2abfb2142cf7e69f5ff7d6ef1d870e369534545284241dfd745", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1547a2d90b950fb5ccec4d4324042f5ceacb5539e895ca5a7cd3d98d18e97f56"} -2023-12-15T23:23:06.408Z INFO initializing dbft {"height": 4650, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:06.409Z debug frostfs-node/morph.go:229 new block {"index": 4649} -2023-12-15T23:23:07.332Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4649, "blockHeight": 4649, "took": "10.986846ms"} -2023-12-15T23:23:07.408Z INFO sending PrepareRequest {"height": 4650, "view": 0} -2023-12-15T23:23:07.408Z INFO sending Commit {"height": 4650, "view": 0} -2023-12-15T23:23:07.409Z INFO approving block {"height": 4650, "hash": "397c47f9c58fa1b8ab37ca1029e2b22acb11e57cc2a2cbdec845e8f73cf8553a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb39528e74fcf2abfb2142cf7e69f5ff7d6ef1d870e369534545284241dfd745"} -2023-12-15T23:23:07.410Z INFO initializing dbft {"height": 4651, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:07.411Z debug frostfs-node/morph.go:229 new block {"index": 4650} -2023-12-15T23:23:08.331Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4650, "blockHeight": 4650, "took": "5.626363ms"} -2023-12-15T23:23:08.410Z INFO sending PrepareRequest {"height": 4651, "view": 0} -2023-12-15T23:23:08.411Z INFO sending Commit {"height": 4651, "view": 0} -2023-12-15T23:23:08.411Z INFO approving block {"height": 4651, "hash": "db5697e377fffb35b42519eb561e667740285fb4abf291b2042dd56019e833d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "397c47f9c58fa1b8ab37ca1029e2b22acb11e57cc2a2cbdec845e8f73cf8553a"} -2023-12-15T23:23:08.414Z INFO initializing dbft {"height": 4652, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:08.415Z debug frostfs-node/morph.go:229 new block {"index": 4651} -2023-12-15T23:23:09.337Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4651, "blockHeight": 4651, "took": "11.336573ms"} -2023-12-15T23:23:09.413Z INFO sending PrepareRequest {"height": 4652, "view": 0} -2023-12-15T23:23:09.414Z INFO sending Commit {"height": 4652, "view": 0} -2023-12-15T23:23:09.414Z INFO approving block {"height": 4652, "hash": "db6319f1597b443d69b15dfa8a1f028fa5e01329d7606a7c02632d1c5c141452", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db5697e377fffb35b42519eb561e667740285fb4abf291b2042dd56019e833d3"} -2023-12-15T23:23:09.416Z INFO initializing dbft {"height": 4653, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:09.417Z debug frostfs-node/morph.go:229 new block {"index": 4652} -2023-12-15T23:23:10.332Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4652, "blockHeight": 4652, "took": "5.656745ms"} -2023-12-15T23:23:10.415Z INFO sending PrepareRequest {"height": 4653, "view": 0} -2023-12-15T23:23:10.415Z INFO sending Commit {"height": 4653, "view": 0} -2023-12-15T23:23:10.415Z INFO approving block {"height": 4653, "hash": "53f9b5c1b93f0b354511fb88cde4bbff4877508732f708f5e67a142b4b6a1e6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db6319f1597b443d69b15dfa8a1f028fa5e01329d7606a7c02632d1c5c141452"} -2023-12-15T23:23:10.417Z INFO initializing dbft {"height": 4654, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:10.418Z debug frostfs-node/morph.go:229 new block {"index": 4653} -2023-12-15T23:23:11.333Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4653, "blockHeight": 4653, "took": "5.10924ms"} -2023-12-15T23:23:11.417Z INFO sending PrepareRequest {"height": 4654, "view": 0} -2023-12-15T23:23:11.417Z INFO sending Commit {"height": 4654, "view": 0} -2023-12-15T23:23:11.418Z INFO approving block {"height": 4654, "hash": "d71cac5c727b6991e0cad26d8daa9c52dfe14983f8849b3eb1f458772a8b0c3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53f9b5c1b93f0b354511fb88cde4bbff4877508732f708f5e67a142b4b6a1e6b"} -2023-12-15T23:23:11.419Z INFO initializing dbft {"height": 4655, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:11.420Z debug frostfs-node/morph.go:229 new block {"index": 4654} -2023-12-15T23:23:12.338Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4654, "blockHeight": 4654, "took": "10.013152ms"} -2023-12-15T23:23:12.419Z INFO sending PrepareRequest {"height": 4655, "view": 0} -2023-12-15T23:23:12.419Z INFO sending Commit {"height": 4655, "view": 0} -2023-12-15T23:23:12.420Z INFO approving block {"height": 4655, "hash": "d29691bcd0d43ed35a1ea119ba9b170f3f629a216d8e7ed6f6afbc314a5977e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d71cac5c727b6991e0cad26d8daa9c52dfe14983f8849b3eb1f458772a8b0c3b"} -2023-12-15T23:23:12.421Z INFO initializing dbft {"height": 4656, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:12.422Z debug frostfs-node/morph.go:229 new block {"index": 4655} -2023-12-15T23:23:13.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4655, "blockHeight": 4655, "took": "9.831014ms"} -2023-12-15T23:23:13.421Z INFO sending PrepareRequest {"height": 4656, "view": 0} -2023-12-15T23:23:13.421Z INFO sending Commit {"height": 4656, "view": 0} -2023-12-15T23:23:13.422Z INFO approving block {"height": 4656, "hash": "bc023d17ebb56c7d0d4edca97828358709cc3efcd84f0aa1af74084323f5f16a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d29691bcd0d43ed35a1ea119ba9b170f3f629a216d8e7ed6f6afbc314a5977e9"} -2023-12-15T23:23:13.423Z INFO initializing dbft {"height": 4657, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:13.424Z debug frostfs-node/morph.go:229 new block {"index": 4656} -2023-12-15T23:23:14.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4656, "blockHeight": 4656, "took": "10.350191ms"} -2023-12-15T23:23:14.423Z INFO sending PrepareRequest {"height": 4657, "view": 0} -2023-12-15T23:23:14.424Z INFO sending Commit {"height": 4657, "view": 0} -2023-12-15T23:23:14.424Z INFO approving block {"height": 4657, "hash": "34332cf887ee93a60ad459fc06511a3f82c8f55c37ff12821f5248f9dbc87d1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc023d17ebb56c7d0d4edca97828358709cc3efcd84f0aa1af74084323f5f16a"} -2023-12-15T23:23:14.426Z INFO initializing dbft {"height": 4658, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:14.426Z debug frostfs-node/morph.go:229 new block {"index": 4657} -2023-12-15T23:23:15.339Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4657, "blockHeight": 4657, "took": "8.487818ms"} -2023-12-15T23:23:15.425Z INFO sending PrepareRequest {"height": 4658, "view": 0} -2023-12-15T23:23:15.426Z INFO sending Commit {"height": 4658, "view": 0} -2023-12-15T23:23:15.426Z INFO approving block {"height": 4658, "hash": "ae63344e84c3b316beac1f8249fb835edf2df1534e55cf99a7b7150d773c1f02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34332cf887ee93a60ad459fc06511a3f82c8f55c37ff12821f5248f9dbc87d1c"} -2023-12-15T23:23:15.427Z INFO initializing dbft {"height": 4659, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:15.428Z debug frostfs-node/morph.go:229 new block {"index": 4658} -2023-12-15T23:23:16.339Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4658, "blockHeight": 4658, "took": "6.750649ms"} -2023-12-15T23:23:16.427Z INFO sending PrepareRequest {"height": 4659, "view": 0} -2023-12-15T23:23:16.428Z INFO sending Commit {"height": 4659, "view": 0} -2023-12-15T23:23:16.428Z INFO approving block {"height": 4659, "hash": "10b0f03215d3a5d102aac1e72b5c99226a409ce9b3abf91eaf39a9e5678951c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae63344e84c3b316beac1f8249fb835edf2df1534e55cf99a7b7150d773c1f02"} -2023-12-15T23:23:16.430Z INFO initializing dbft {"height": 4660, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:16.431Z debug frostfs-node/morph.go:229 new block {"index": 4659} -2023-12-15T23:23:17.342Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4659, "blockHeight": 4659, "took": "8.951216ms"} -2023-12-15T23:23:17.429Z INFO sending PrepareRequest {"height": 4660, "view": 0} -2023-12-15T23:23:17.430Z INFO sending Commit {"height": 4660, "view": 0} -2023-12-15T23:23:17.430Z INFO approving block {"height": 4660, "hash": "2a1387dedbc4fad84f1e0956fccbcf235832c375802c86fcd537d93bbdec52bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10b0f03215d3a5d102aac1e72b5c99226a409ce9b3abf91eaf39a9e5678951c8"} -2023-12-15T23:23:17.431Z INFO initializing dbft {"height": 4661, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:17.432Z debug frostfs-node/morph.go:229 new block {"index": 4660} -2023-12-15T23:23:18.344Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4660, "blockHeight": 4660, "took": "10.448227ms"} -2023-12-15T23:23:18.431Z INFO sending PrepareRequest {"height": 4661, "view": 0} -2023-12-15T23:23:18.432Z INFO sending Commit {"height": 4661, "view": 0} -2023-12-15T23:23:18.432Z INFO approving block {"height": 4661, "hash": "b9cc2b46cde60ca2c7e50e68f33052f6d64c890d8fd4ff6f7dc9881936cf6010", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a1387dedbc4fad84f1e0956fccbcf235832c375802c86fcd537d93bbdec52bc"} -2023-12-15T23:23:18.435Z INFO initializing dbft {"height": 4662, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:18.436Z debug frostfs-node/morph.go:229 new block {"index": 4661} -2023-12-15T23:23:19.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4661, "blockHeight": 4661, "took": "5.778639ms"} -2023-12-15T23:23:19.433Z INFO sending PrepareRequest {"height": 4662, "view": 0} -2023-12-15T23:23:19.433Z INFO sending Commit {"height": 4662, "view": 0} -2023-12-15T23:23:19.433Z INFO approving block {"height": 4662, "hash": "ab3dbd1afc858dd41e3346da4235ff565319403ea3535c96bb4e35ab9b8aa362", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9cc2b46cde60ca2c7e50e68f33052f6d64c890d8fd4ff6f7dc9881936cf6010"} -2023-12-15T23:23:19.435Z INFO initializing dbft {"height": 4663, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:19.435Z debug frostfs-node/morph.go:229 new block {"index": 4662} -2023-12-15T23:23:20.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4662, "blockHeight": 4662, "took": "10.027758ms"} -2023-12-15T23:23:20.435Z INFO sending PrepareRequest {"height": 4663, "view": 0} -2023-12-15T23:23:20.435Z INFO sending Commit {"height": 4663, "view": 0} -2023-12-15T23:23:20.435Z INFO approving block {"height": 4663, "hash": "4698e184b39677b1cb8e81fbaee9f070d516630ddc7b21c5a7f56686f0bab2db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab3dbd1afc858dd41e3346da4235ff565319403ea3535c96bb4e35ab9b8aa362"} -2023-12-15T23:23:20.437Z INFO initializing dbft {"height": 4664, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:20.437Z debug frostfs-node/morph.go:229 new block {"index": 4663} -2023-12-15T23:23:21.343Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4663, "blockHeight": 4663, "took": "6.33169ms"} -2023-12-15T23:23:21.437Z INFO sending PrepareRequest {"height": 4664, "view": 0} -2023-12-15T23:23:21.438Z INFO sending Commit {"height": 4664, "view": 0} -2023-12-15T23:23:21.438Z INFO approving block {"height": 4664, "hash": "3bc087fe6970b21003056c62c41eed891944638a41cd0262a4f95317b9bdcbf0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4698e184b39677b1cb8e81fbaee9f070d516630ddc7b21c5a7f56686f0bab2db"} -2023-12-15T23:23:21.440Z INFO initializing dbft {"height": 4665, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:21.441Z debug frostfs-node/morph.go:229 new block {"index": 4664} -2023-12-15T23:23:22.345Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4664, "blockHeight": 4664, "took": "6.999235ms"} -2023-12-15T23:23:22.440Z INFO sending PrepareRequest {"height": 4665, "view": 0} -2023-12-15T23:23:22.440Z INFO sending Commit {"height": 4665, "view": 0} -2023-12-15T23:23:22.440Z INFO approving block {"height": 4665, "hash": "7b1f41c7545cce94d68df728e724788c4cb47d085ebc5e59e3b6bfd5089cc67a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bc087fe6970b21003056c62c41eed891944638a41cd0262a4f95317b9bdcbf0"} -2023-12-15T23:23:22.441Z INFO initializing dbft {"height": 4666, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:22.443Z debug frostfs-node/morph.go:229 new block {"index": 4665} -2023-12-15T23:23:23.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4665, "blockHeight": 4665, "took": "8.740836ms"} -2023-12-15T23:23:23.442Z INFO sending PrepareRequest {"height": 4666, "view": 0} -2023-12-15T23:23:23.442Z INFO sending Commit {"height": 4666, "view": 0} -2023-12-15T23:23:23.442Z INFO approving block {"height": 4666, "hash": "dfe2cf0f7612e98edfe1fd3f736f77987e246332be6f1296eb9db7d3d09e9f70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b1f41c7545cce94d68df728e724788c4cb47d085ebc5e59e3b6bfd5089cc67a"} -2023-12-15T23:23:23.443Z INFO initializing dbft {"height": 4667, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:23.444Z debug frostfs-node/morph.go:229 new block {"index": 4666} -2023-12-15T23:23:24.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4666, "blockHeight": 4666, "took": "6.404871ms"} -2023-12-15T23:23:24.443Z INFO sending PrepareRequest {"height": 4667, "view": 0} -2023-12-15T23:23:24.444Z INFO sending Commit {"height": 4667, "view": 0} -2023-12-15T23:23:24.444Z INFO approving block {"height": 4667, "hash": "b538fa9d0be3e70e8cfea5678a1eca400000b38944a9377357e020b1fb0e5473", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfe2cf0f7612e98edfe1fd3f736f77987e246332be6f1296eb9db7d3d09e9f70"} -2023-12-15T23:23:24.446Z INFO initializing dbft {"height": 4668, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:24.446Z debug frostfs-node/morph.go:229 new block {"index": 4667} -2023-12-15T23:23:24.450Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:23:24.455Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:23:24.455Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:23:25.345Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4667, "blockHeight": 4667, "took": "4.699579ms"} -2023-12-15T23:23:25.446Z INFO sending PrepareRequest {"height": 4668, "view": 0} -2023-12-15T23:23:25.446Z INFO sending Commit {"height": 4668, "view": 0} -2023-12-15T23:23:25.446Z INFO approving block {"height": 4668, "hash": "2fdecd5f47cab8277ef9511aabbb4d6308a5034efe3fc1f71aba621102874e6a", "tx_count": 2, "merkle": "58f6cc8ccbff2e4439bfd8e6e393f7b37382646acefd76a75667952d8813495e", "prev": "b538fa9d0be3e70e8cfea5678a1eca400000b38944a9377357e020b1fb0e5473"} -2023-12-15T23:23:25.448Z INFO runtime log {"tx": "3a8a98bf95ce68f58b4481280d6bbd9b4c795171af0277b88c433f398658d22c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:23:25.448Z INFO runtime log {"tx": "3a8a98bf95ce68f58b4481280d6bbd9b4c795171af0277b88c433f398658d22c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:23:25.450Z INFO initializing dbft {"height": 4669, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:25.451Z debug frostfs-node/morph.go:229 new block {"index": 4668} -2023-12-15T23:23:26.354Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4668, "blockHeight": 4668, "took": "12.138242ms"} -2023-12-15T23:23:26.448Z INFO sending PrepareRequest {"height": 4669, "view": 0} -2023-12-15T23:23:26.448Z INFO sending Commit {"height": 4669, "view": 0} -2023-12-15T23:23:26.448Z INFO approving block {"height": 4669, "hash": "ca02d48ee90a443dac4aa6779e74015b299cd2ab494e8589886f35b122f7473f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fdecd5f47cab8277ef9511aabbb4d6308a5034efe3fc1f71aba621102874e6a"} -2023-12-15T23:23:26.450Z INFO initializing dbft {"height": 4670, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:26.450Z debug frostfs-node/morph.go:229 new block {"index": 4669} -2023-12-15T23:23:27.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4669, "blockHeight": 4669, "took": "9.822596ms"} -2023-12-15T23:23:27.450Z INFO sending PrepareRequest {"height": 4670, "view": 0} -2023-12-15T23:23:27.450Z INFO sending Commit {"height": 4670, "view": 0} -2023-12-15T23:23:27.450Z INFO approving block {"height": 4670, "hash": "41c0f9a7cec5223c46ff70a97a21e45ecc18ebb1a6fefa17e91027dd7bff9176", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca02d48ee90a443dac4aa6779e74015b299cd2ab494e8589886f35b122f7473f"} -2023-12-15T23:23:27.452Z INFO initializing dbft {"height": 4671, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:27.453Z debug frostfs-node/morph.go:229 new block {"index": 4670} -2023-12-15T23:23:28.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4670, "blockHeight": 4670, "took": "5.602827ms"} -2023-12-15T23:23:28.452Z INFO sending PrepareRequest {"height": 4671, "view": 0} -2023-12-15T23:23:28.452Z INFO sending Commit {"height": 4671, "view": 0} -2023-12-15T23:23:28.452Z INFO approving block {"height": 4671, "hash": "47d85f952c74765f01a006dd98b7293d69767edd76bfc373de336a37e410809f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41c0f9a7cec5223c46ff70a97a21e45ecc18ebb1a6fefa17e91027dd7bff9176"} -2023-12-15T23:23:28.454Z INFO initializing dbft {"height": 4672, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:28.455Z debug frostfs-node/morph.go:229 new block {"index": 4671} -2023-12-15T23:23:29.352Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4671, "blockHeight": 4671, "took": "6.874812ms"} -2023-12-15T23:23:29.454Z INFO sending PrepareRequest {"height": 4672, "view": 0} -2023-12-15T23:23:29.455Z INFO sending Commit {"height": 4672, "view": 0} -2023-12-15T23:23:29.455Z INFO approving block {"height": 4672, "hash": "9f03a9a73cacbe1729b76db7457bab349a6713863c806591d03b07affba4e337", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47d85f952c74765f01a006dd98b7293d69767edd76bfc373de336a37e410809f"} -2023-12-15T23:23:29.458Z INFO initializing dbft {"height": 4673, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:29.458Z debug frostfs-node/morph.go:229 new block {"index": 4672} -2023-12-15T23:23:30.354Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4672, "blockHeight": 4672, "took": "7.811968ms"} -2023-12-15T23:23:30.456Z INFO sending PrepareRequest {"height": 4673, "view": 0} -2023-12-15T23:23:30.456Z INFO sending Commit {"height": 4673, "view": 0} -2023-12-15T23:23:30.456Z INFO approving block {"height": 4673, "hash": "f84fd0c820a9cac9a815dbaec76c1a4b7a1fecfc9e75cd57ae70eaa71307ff88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f03a9a73cacbe1729b76db7457bab349a6713863c806591d03b07affba4e337"} -2023-12-15T23:23:30.457Z INFO initializing dbft {"height": 4674, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:30.458Z debug frostfs-node/morph.go:229 new block {"index": 4673} -2023-12-15T23:23:31.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4673, "blockHeight": 4673, "took": "6.808383ms"} -2023-12-15T23:23:31.457Z INFO sending PrepareRequest {"height": 4674, "view": 0} -2023-12-15T23:23:31.457Z INFO sending Commit {"height": 4674, "view": 0} -2023-12-15T23:23:31.458Z INFO approving block {"height": 4674, "hash": "327d1ef7ec6eaed0a0bd5791eca3beae8f094655005e8f5dfa183d8f4fe36639", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f84fd0c820a9cac9a815dbaec76c1a4b7a1fecfc9e75cd57ae70eaa71307ff88"} -2023-12-15T23:23:31.459Z INFO initializing dbft {"height": 4675, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:31.460Z debug frostfs-node/morph.go:229 new block {"index": 4674} -2023-12-15T23:23:32.355Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4674, "blockHeight": 4674, "took": "8.167316ms"} -2023-12-15T23:23:32.459Z INFO sending PrepareRequest {"height": 4675, "view": 0} -2023-12-15T23:23:32.459Z INFO sending Commit {"height": 4675, "view": 0} -2023-12-15T23:23:32.460Z INFO approving block {"height": 4675, "hash": "98954eaff35b9df8ccd49f39720da407d179c4aeb0f3bd3853f07a3f48d944f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "327d1ef7ec6eaed0a0bd5791eca3beae8f094655005e8f5dfa183d8f4fe36639"} -2023-12-15T23:23:32.461Z INFO initializing dbft {"height": 4676, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:32.462Z debug frostfs-node/morph.go:229 new block {"index": 4675} -2023-12-15T23:23:33.354Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4675, "blockHeight": 4675, "took": "5.930667ms"} -2023-12-15T23:23:33.461Z INFO sending PrepareRequest {"height": 4676, "view": 0} -2023-12-15T23:23:33.461Z INFO sending Commit {"height": 4676, "view": 0} -2023-12-15T23:23:33.461Z INFO approving block {"height": 4676, "hash": "4ae35b3b7b989e4c3f6eeeebc6ec77d4c788d33e1ebdbd63f027953aa5c3b052", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98954eaff35b9df8ccd49f39720da407d179c4aeb0f3bd3853f07a3f48d944f1"} -2023-12-15T23:23:33.463Z INFO initializing dbft {"height": 4677, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:33.464Z debug frostfs-node/morph.go:229 new block {"index": 4676} -2023-12-15T23:23:34.356Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4676, "blockHeight": 4676, "took": "7.278869ms"} -2023-12-15T23:23:34.462Z INFO sending PrepareRequest {"height": 4677, "view": 0} -2023-12-15T23:23:34.463Z INFO sending Commit {"height": 4677, "view": 0} -2023-12-15T23:23:34.463Z INFO approving block {"height": 4677, "hash": "838b3153346467312b7ebb8f0372231b9f00b9906c96042e1daf77130638c07a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ae35b3b7b989e4c3f6eeeebc6ec77d4c788d33e1ebdbd63f027953aa5c3b052"} -2023-12-15T23:23:34.464Z INFO initializing dbft {"height": 4678, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:34.465Z debug frostfs-node/morph.go:229 new block {"index": 4677} -2023-12-15T23:23:35.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4677, "blockHeight": 4677, "took": "7.506429ms"} -2023-12-15T23:23:35.464Z INFO sending PrepareRequest {"height": 4678, "view": 0} -2023-12-15T23:23:35.464Z INFO sending Commit {"height": 4678, "view": 0} -2023-12-15T23:23:35.464Z INFO approving block {"height": 4678, "hash": "8440ee0b08b37e62b148ea3bea5af1c1a006f9a6b7b29765325e409ab1f5bfb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "838b3153346467312b7ebb8f0372231b9f00b9906c96042e1daf77130638c07a"} -2023-12-15T23:23:35.465Z INFO initializing dbft {"height": 4679, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:35.466Z debug frostfs-node/morph.go:229 new block {"index": 4678} -2023-12-15T23:23:36.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4678, "blockHeight": 4678, "took": "6.433508ms"} -2023-12-15T23:23:36.465Z INFO sending PrepareRequest {"height": 4679, "view": 0} -2023-12-15T23:23:36.466Z INFO sending Commit {"height": 4679, "view": 0} -2023-12-15T23:23:36.466Z INFO approving block {"height": 4679, "hash": "b70ebb46d28a3a883139fad1aa6edb8b474cf7e95b240bea5093db305cac0445", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8440ee0b08b37e62b148ea3bea5af1c1a006f9a6b7b29765325e409ab1f5bfb1"} -2023-12-15T23:23:36.467Z INFO initializing dbft {"height": 4680, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:36.468Z debug frostfs-node/morph.go:229 new block {"index": 4679} -2023-12-15T23:23:37.357Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4679, "blockHeight": 4679, "took": "5.547462ms"} -2023-12-15T23:23:37.467Z INFO sending PrepareRequest {"height": 4680, "view": 0} -2023-12-15T23:23:37.467Z INFO sending Commit {"height": 4680, "view": 0} -2023-12-15T23:23:37.467Z INFO approving block {"height": 4680, "hash": "42288646528166570c6b89feefc4fdec7dfb8b8360e30b8f92e475d5d8289087", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b70ebb46d28a3a883139fad1aa6edb8b474cf7e95b240bea5093db305cac0445"} -2023-12-15T23:23:37.469Z INFO initializing dbft {"height": 4681, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:37.470Z debug frostfs-node/morph.go:229 new block {"index": 4680} -2023-12-15T23:23:38.357Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4680, "blockHeight": 4680, "took": "4.753808ms"} -2023-12-15T23:23:38.469Z INFO sending PrepareRequest {"height": 4681, "view": 0} -2023-12-15T23:23:38.469Z INFO sending Commit {"height": 4681, "view": 0} -2023-12-15T23:23:38.470Z INFO approving block {"height": 4681, "hash": "5554e44cb6536dbc01972ea4d60e23e95e3938e9dad363bc3e19d95dd4cefe2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42288646528166570c6b89feefc4fdec7dfb8b8360e30b8f92e475d5d8289087"} -2023-12-15T23:23:38.472Z INFO initializing dbft {"height": 4682, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:38.472Z debug frostfs-node/morph.go:229 new block {"index": 4681} -2023-12-15T23:23:39.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4681, "blockHeight": 4681, "took": "5.643514ms"} -2023-12-15T23:23:39.471Z INFO sending PrepareRequest {"height": 4682, "view": 0} -2023-12-15T23:23:39.471Z INFO sending Commit {"height": 4682, "view": 0} -2023-12-15T23:23:39.471Z INFO approving block {"height": 4682, "hash": "1c7d868f961b86faf0643e86ffa32896535f92dec5f2e4dc29112a0003863207", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5554e44cb6536dbc01972ea4d60e23e95e3938e9dad363bc3e19d95dd4cefe2e"} -2023-12-15T23:23:39.472Z INFO initializing dbft {"height": 4683, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:39.473Z debug frostfs-node/morph.go:229 new block {"index": 4682} -2023-12-15T23:23:40.361Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4682, "blockHeight": 4682, "took": "7.144329ms"} -2023-12-15T23:23:40.472Z INFO sending PrepareRequest {"height": 4683, "view": 0} -2023-12-15T23:23:40.472Z INFO sending Commit {"height": 4683, "view": 0} -2023-12-15T23:23:40.473Z INFO approving block {"height": 4683, "hash": "7548dbfcb6d675499c76d35f0c5a7222971b01142fa379df5d4a91b5ec7bce9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c7d868f961b86faf0643e86ffa32896535f92dec5f2e4dc29112a0003863207"} -2023-12-15T23:23:40.474Z INFO initializing dbft {"height": 4684, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:40.475Z debug frostfs-node/morph.go:229 new block {"index": 4683} -2023-12-15T23:23:41.360Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4683, "blockHeight": 4683, "took": "4.932264ms"} -2023-12-15T23:23:41.474Z INFO sending PrepareRequest {"height": 4684, "view": 0} -2023-12-15T23:23:41.474Z INFO sending Commit {"height": 4684, "view": 0} -2023-12-15T23:23:41.475Z INFO approving block {"height": 4684, "hash": "911a5727232cc89441b6398223e9a4ffb7b265ce0883144b7f33c8cc8df00c1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7548dbfcb6d675499c76d35f0c5a7222971b01142fa379df5d4a91b5ec7bce9d"} -2023-12-15T23:23:41.476Z INFO initializing dbft {"height": 4685, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:41.477Z debug frostfs-node/morph.go:229 new block {"index": 4684} -2023-12-15T23:23:42.364Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4684, "blockHeight": 4684, "took": "8.474187ms"} -2023-12-15T23:23:42.476Z INFO sending PrepareRequest {"height": 4685, "view": 0} -2023-12-15T23:23:42.476Z INFO sending Commit {"height": 4685, "view": 0} -2023-12-15T23:23:42.477Z INFO approving block {"height": 4685, "hash": "0ba5a2b73d00dd338b68a4777c21edc78b5370e03f6fc29069d4ea77e9ec5f94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "911a5727232cc89441b6398223e9a4ffb7b265ce0883144b7f33c8cc8df00c1e"} -2023-12-15T23:23:42.478Z INFO initializing dbft {"height": 4686, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:42.479Z debug frostfs-node/morph.go:229 new block {"index": 4685} -2023-12-15T23:23:43.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4685, "blockHeight": 4685, "took": "5.463332ms"} -2023-12-15T23:23:43.477Z INFO sending PrepareRequest {"height": 4686, "view": 0} -2023-12-15T23:23:43.478Z INFO sending Commit {"height": 4686, "view": 0} -2023-12-15T23:23:43.478Z INFO approving block {"height": 4686, "hash": "5ddec223116fd7640dfc99fc150ba54312910a923c02db7d1658b847bb80fc59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ba5a2b73d00dd338b68a4777c21edc78b5370e03f6fc29069d4ea77e9ec5f94"} -2023-12-15T23:23:43.479Z INFO initializing dbft {"height": 4687, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:43.480Z debug frostfs-node/morph.go:229 new block {"index": 4686} -2023-12-15T23:23:44.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4686, "blockHeight": 4686, "took": "5.401307ms"} -2023-12-15T23:23:44.479Z INFO sending PrepareRequest {"height": 4687, "view": 0} -2023-12-15T23:23:44.480Z INFO sending Commit {"height": 4687, "view": 0} -2023-12-15T23:23:44.480Z INFO approving block {"height": 4687, "hash": "95f99694a890c09ba4c534c4877b7e4410459fbec0f9b97de0e328672f3e5cd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ddec223116fd7640dfc99fc150ba54312910a923c02db7d1658b847bb80fc59"} -2023-12-15T23:23:44.481Z INFO initializing dbft {"height": 4688, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:44.482Z debug frostfs-node/morph.go:229 new block {"index": 4687} -2023-12-15T23:23:45.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4687, "blockHeight": 4687, "took": "6.505861ms"} -2023-12-15T23:23:45.481Z INFO sending PrepareRequest {"height": 4688, "view": 0} -2023-12-15T23:23:45.481Z INFO sending Commit {"height": 4688, "view": 0} -2023-12-15T23:23:45.482Z INFO approving block {"height": 4688, "hash": "0173e76105cf511d40752562374fdf3fa269f8f40120cf66f6500a7bac762a24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95f99694a890c09ba4c534c4877b7e4410459fbec0f9b97de0e328672f3e5cd6"} -2023-12-15T23:23:45.483Z INFO initializing dbft {"height": 4689, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:45.484Z debug frostfs-node/morph.go:229 new block {"index": 4688} -2023-12-15T23:23:46.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4688, "blockHeight": 4688, "took": "6.258637ms"} -2023-12-15T23:23:46.483Z INFO sending PrepareRequest {"height": 4689, "view": 0} -2023-12-15T23:23:46.483Z INFO sending Commit {"height": 4689, "view": 0} -2023-12-15T23:23:46.484Z INFO approving block {"height": 4689, "hash": "e4e3feb250a0bcf864cc57dfddbeaba9a1e436f382baa04fbd39f6bbaa778dc9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0173e76105cf511d40752562374fdf3fa269f8f40120cf66f6500a7bac762a24"} -2023-12-15T23:23:46.485Z INFO initializing dbft {"height": 4690, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:46.486Z debug frostfs-node/morph.go:229 new block {"index": 4689} -2023-12-15T23:23:47.366Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4689, "blockHeight": 4689, "took": "5.803064ms"} -2023-12-15T23:23:47.485Z INFO sending PrepareRequest {"height": 4690, "view": 0} -2023-12-15T23:23:47.486Z INFO sending Commit {"height": 4690, "view": 0} -2023-12-15T23:23:47.486Z INFO approving block {"height": 4690, "hash": "ea5511ae8343218a5a62172f1748f024b4e19646bb8aa469fbeceb3bd714b27c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4e3feb250a0bcf864cc57dfddbeaba9a1e436f382baa04fbd39f6bbaa778dc9"} -2023-12-15T23:23:47.488Z INFO initializing dbft {"height": 4691, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:47.489Z debug frostfs-node/morph.go:229 new block {"index": 4690} -2023-12-15T23:23:48.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4690, "blockHeight": 4690, "took": "6.288803ms"} -2023-12-15T23:23:48.487Z INFO sending PrepareRequest {"height": 4691, "view": 0} -2023-12-15T23:23:48.487Z INFO sending Commit {"height": 4691, "view": 0} -2023-12-15T23:23:48.488Z INFO approving block {"height": 4691, "hash": "00201c651f47f79bef9cac5259a315ef3a99fd7af2cd47850844d52b3aee17fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea5511ae8343218a5a62172f1748f024b4e19646bb8aa469fbeceb3bd714b27c"} -2023-12-15T23:23:48.489Z INFO initializing dbft {"height": 4692, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:48.490Z debug frostfs-node/morph.go:229 new block {"index": 4691} -2023-12-15T23:23:49.370Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4691, "blockHeight": 4691, "took": "8.408166ms"} -2023-12-15T23:23:49.489Z INFO sending PrepareRequest {"height": 4692, "view": 0} -2023-12-15T23:23:49.489Z INFO sending Commit {"height": 4692, "view": 0} -2023-12-15T23:23:49.490Z INFO approving block {"height": 4692, "hash": "eb07fdc6cb2521f69b0fb2f7e0ff93b08ad3872971bdd177a65e8a4bf5fb22b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00201c651f47f79bef9cac5259a315ef3a99fd7af2cd47850844d52b3aee17fd"} -2023-12-15T23:23:49.491Z INFO initializing dbft {"height": 4693, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:49.492Z debug frostfs-node/morph.go:229 new block {"index": 4692} -2023-12-15T23:23:50.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4692, "blockHeight": 4692, "took": "9.830999ms"} -2023-12-15T23:23:50.491Z INFO sending PrepareRequest {"height": 4693, "view": 0} -2023-12-15T23:23:50.492Z INFO sending Commit {"height": 4693, "view": 0} -2023-12-15T23:23:50.492Z INFO approving block {"height": 4693, "hash": "d6b662fa8b40385a1c2d56665fda96e9454cbcc12dc6e91c673e9da2c0ddb981", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb07fdc6cb2521f69b0fb2f7e0ff93b08ad3872971bdd177a65e8a4bf5fb22b0"} -2023-12-15T23:23:50.493Z INFO initializing dbft {"height": 4694, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:50.495Z debug frostfs-node/morph.go:229 new block {"index": 4693} -2023-12-15T23:23:51.370Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4693, "blockHeight": 4693, "took": "6.458269ms"} -2023-12-15T23:23:51.493Z INFO sending PrepareRequest {"height": 4694, "view": 0} -2023-12-15T23:23:51.494Z INFO sending Commit {"height": 4694, "view": 0} -2023-12-15T23:23:51.494Z INFO approving block {"height": 4694, "hash": "4777b8cf34850b72832a514507e597670bbd920a309e2273c6b859f8e6c97913", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6b662fa8b40385a1c2d56665fda96e9454cbcc12dc6e91c673e9da2c0ddb981"} -2023-12-15T23:23:51.496Z INFO initializing dbft {"height": 4695, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:51.497Z debug frostfs-node/morph.go:229 new block {"index": 4694} -2023-12-15T23:23:52.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4694, "blockHeight": 4694, "took": "7.761598ms"} -2023-12-15T23:23:52.495Z INFO sending PrepareRequest {"height": 4695, "view": 0} -2023-12-15T23:23:52.495Z INFO sending Commit {"height": 4695, "view": 0} -2023-12-15T23:23:52.496Z INFO approving block {"height": 4695, "hash": "fbe432f5490cc2799bcceae0be0524a4ec1a19a5f4c306d6ef886511162049bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4777b8cf34850b72832a514507e597670bbd920a309e2273c6b859f8e6c97913"} -2023-12-15T23:23:52.497Z INFO initializing dbft {"height": 4696, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:52.498Z debug frostfs-node/morph.go:229 new block {"index": 4695} -2023-12-15T23:23:53.371Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4695, "blockHeight": 4695, "took": "6.27625ms"} -2023-12-15T23:23:53.497Z INFO sending PrepareRequest {"height": 4696, "view": 0} -2023-12-15T23:23:53.497Z INFO sending Commit {"height": 4696, "view": 0} -2023-12-15T23:23:53.497Z INFO approving block {"height": 4696, "hash": "4b835a1b2fcf8219a8a98e8860eaf80162496fb2b9b4e2e9b0f6831e47382ebe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbe432f5490cc2799bcceae0be0524a4ec1a19a5f4c306d6ef886511162049bf"} -2023-12-15T23:23:53.499Z INFO initializing dbft {"height": 4697, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:53.499Z debug frostfs-node/morph.go:229 new block {"index": 4696} -2023-12-15T23:23:54.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4696, "blockHeight": 4696, "took": "6.453528ms"} -2023-12-15T23:23:54.499Z INFO sending PrepareRequest {"height": 4697, "view": 0} -2023-12-15T23:23:54.499Z INFO sending Commit {"height": 4697, "view": 0} -2023-12-15T23:23:54.499Z INFO approving block {"height": 4697, "hash": "71892e1e75706c592ecbbbfdc984ebcdb5bd34e90121788e854e6147f6c332f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b835a1b2fcf8219a8a98e8860eaf80162496fb2b9b4e2e9b0f6831e47382ebe"} -2023-12-15T23:23:54.501Z INFO initializing dbft {"height": 4698, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:54.502Z debug frostfs-node/morph.go:229 new block {"index": 4697} -2023-12-15T23:23:55.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4697, "blockHeight": 4697, "took": "5.079786ms"} -2023-12-15T23:23:55.501Z INFO sending PrepareRequest {"height": 4698, "view": 0} -2023-12-15T23:23:55.501Z INFO sending Commit {"height": 4698, "view": 0} -2023-12-15T23:23:55.502Z INFO approving block {"height": 4698, "hash": "4a818716d6f6b4f85392a7d03618d665bb0cd718235237354bfaa88ae17a7d29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71892e1e75706c592ecbbbfdc984ebcdb5bd34e90121788e854e6147f6c332f3"} -2023-12-15T23:23:55.503Z INFO initializing dbft {"height": 4699, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:55.504Z debug frostfs-node/morph.go:229 new block {"index": 4698} -2023-12-15T23:23:56.374Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4698, "blockHeight": 4698, "took": "6.384758ms"} -2023-12-15T23:23:56.503Z INFO sending PrepareRequest {"height": 4699, "view": 0} -2023-12-15T23:23:56.503Z INFO sending Commit {"height": 4699, "view": 0} -2023-12-15T23:23:56.504Z INFO approving block {"height": 4699, "hash": "f535003261892ac94299ed7db8d0edc9d9ae5361aaf1fe9f89e2ee2020bd96c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a818716d6f6b4f85392a7d03618d665bb0cd718235237354bfaa88ae17a7d29"} -2023-12-15T23:23:56.505Z INFO initializing dbft {"height": 4700, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:56.506Z debug frostfs-node/morph.go:229 new block {"index": 4699} -2023-12-15T23:23:56.510Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 20, "iteration": 1, "error": "no data for 0 iteration in 20 epoch for consumers's trusts"} -2023-12-15T23:23:56.511Z info settlement/calls.go:61 start basic income collection {"epoch": 20} -2023-12-15T23:23:57.377Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4699, "blockHeight": 4699, "took": "9.340962ms"} -2023-12-15T23:23:57.506Z INFO sending PrepareRequest {"height": 4700, "view": 0} -2023-12-15T23:23:57.507Z INFO sending Commit {"height": 4700, "view": 0} -2023-12-15T23:23:57.507Z INFO approving block {"height": 4700, "hash": "dbaa7b406d383fa150c7953e6efefcdd263cba00bf03786856772d013ac89ef5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f535003261892ac94299ed7db8d0edc9d9ae5361aaf1fe9f89e2ee2020bd96c8"} -2023-12-15T23:23:57.511Z INFO initializing dbft {"height": 4701, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:57.512Z debug frostfs-node/morph.go:229 new block {"index": 4700} -2023-12-15T23:23:58.379Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4700, "blockHeight": 4700, "took": "10.226148ms"} -2023-12-15T23:23:58.508Z INFO sending PrepareRequest {"height": 4701, "view": 0} -2023-12-15T23:23:58.509Z INFO sending Commit {"height": 4701, "view": 0} -2023-12-15T23:23:58.509Z INFO approving block {"height": 4701, "hash": "86e0284db529bbfe76eb598f9e1aa2d46f4f833f4221de498d275a87dbac99f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbaa7b406d383fa150c7953e6efefcdd263cba00bf03786856772d013ac89ef5"} -2023-12-15T23:23:58.511Z INFO initializing dbft {"height": 4702, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:58.512Z debug frostfs-node/morph.go:229 new block {"index": 4701} -2023-12-15T23:23:59.377Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4701, "blockHeight": 4701, "took": "6.836679ms"} -2023-12-15T23:23:59.510Z INFO sending PrepareRequest {"height": 4702, "view": 0} -2023-12-15T23:23:59.510Z INFO sending Commit {"height": 4702, "view": 0} -2023-12-15T23:23:59.511Z INFO approving block {"height": 4702, "hash": "c40aa5723481bb886ff0aecf262c81c3e368225e73b04496cc72edd41cab37e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86e0284db529bbfe76eb598f9e1aa2d46f4f833f4221de498d275a87dbac99f1"} -2023-12-15T23:23:59.512Z INFO initializing dbft {"height": 4703, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:23:59.513Z debug frostfs-node/morph.go:229 new block {"index": 4702} -2023-12-15T23:24:00.379Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4702, "blockHeight": 4702, "took": "7.653995ms"} -2023-12-15T23:24:00.512Z INFO sending PrepareRequest {"height": 4703, "view": 0} -2023-12-15T23:24:00.512Z INFO sending Commit {"height": 4703, "view": 0} -2023-12-15T23:24:00.513Z INFO approving block {"height": 4703, "hash": "ac72277b72dbb42bdea90b320ae97ecaa9cc5a1e749f3d23ea22c2c41f5483f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c40aa5723481bb886ff0aecf262c81c3e368225e73b04496cc72edd41cab37e5"} -2023-12-15T23:24:00.514Z INFO initializing dbft {"height": 4704, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:00.515Z debug frostfs-node/morph.go:229 new block {"index": 4703} -2023-12-15T23:24:01.379Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4703, "blockHeight": 4703, "took": "7.132318ms"} -2023-12-15T23:24:01.514Z INFO sending PrepareRequest {"height": 4704, "view": 0} -2023-12-15T23:24:01.514Z INFO sending Commit {"height": 4704, "view": 0} -2023-12-15T23:24:01.514Z INFO approving block {"height": 4704, "hash": "d7297ecb2908412c2779e36640e4f998b6028989aca81e22f41a21c82405f6a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac72277b72dbb42bdea90b320ae97ecaa9cc5a1e749f3d23ea22c2c41f5483f7"} -2023-12-15T23:24:01.516Z INFO initializing dbft {"height": 4705, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:01.516Z debug frostfs-node/morph.go:229 new block {"index": 4704} -2023-12-15T23:24:02.378Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4704, "blockHeight": 4704, "took": "5.81313ms"} -2023-12-15T23:24:02.516Z INFO sending PrepareRequest {"height": 4705, "view": 0} -2023-12-15T23:24:02.516Z INFO sending Commit {"height": 4705, "view": 0} -2023-12-15T23:24:02.517Z INFO approving block {"height": 4705, "hash": "71324e0508106d387e3b9f432264a88d8becb7158526f7ecb964ee6751c34e0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7297ecb2908412c2779e36640e4f998b6028989aca81e22f41a21c82405f6a4"} -2023-12-15T23:24:02.518Z INFO initializing dbft {"height": 4706, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:02.519Z debug frostfs-node/morph.go:229 new block {"index": 4705} -2023-12-15T23:24:03.379Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4705, "blockHeight": 4705, "took": "6.583622ms"} -2023-12-15T23:24:03.518Z INFO sending PrepareRequest {"height": 4706, "view": 0} -2023-12-15T23:24:03.519Z INFO sending Commit {"height": 4706, "view": 0} -2023-12-15T23:24:03.519Z INFO approving block {"height": 4706, "hash": "075e6d723dcd0cfb0050ceee97ae6e3f2308ff78548bb6d34831b511b47eef29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71324e0508106d387e3b9f432264a88d8becb7158526f7ecb964ee6751c34e0f"} -2023-12-15T23:24:03.521Z INFO initializing dbft {"height": 4707, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:03.521Z debug frostfs-node/morph.go:229 new block {"index": 4706} -2023-12-15T23:24:04.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4706, "blockHeight": 4706, "took": "6.851999ms"} -2023-12-15T23:24:04.520Z INFO sending PrepareRequest {"height": 4707, "view": 0} -2023-12-15T23:24:04.520Z INFO sending Commit {"height": 4707, "view": 0} -2023-12-15T23:24:04.521Z INFO approving block {"height": 4707, "hash": "31e041c55f0bf5f3274b548b5ae272824092c06af5a1c71e57fd120009c59e61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "075e6d723dcd0cfb0050ceee97ae6e3f2308ff78548bb6d34831b511b47eef29"} -2023-12-15T23:24:04.522Z INFO initializing dbft {"height": 4708, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:04.523Z debug frostfs-node/morph.go:229 new block {"index": 4707} -2023-12-15T23:24:05.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4707, "blockHeight": 4707, "took": "6.203207ms"} -2023-12-15T23:24:05.522Z INFO sending PrepareRequest {"height": 4708, "view": 0} -2023-12-15T23:24:05.522Z INFO sending Commit {"height": 4708, "view": 0} -2023-12-15T23:24:05.522Z INFO approving block {"height": 4708, "hash": "752cb2defcb7b79f5d3056999e73b34b210af262219af47fd8e8a5e1c747ba9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31e041c55f0bf5f3274b548b5ae272824092c06af5a1c71e57fd120009c59e61"} -2023-12-15T23:24:05.524Z INFO initializing dbft {"height": 4709, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:05.524Z debug frostfs-node/morph.go:229 new block {"index": 4708} -2023-12-15T23:24:06.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4708, "blockHeight": 4708, "took": "5.709536ms"} -2023-12-15T23:24:06.524Z INFO sending PrepareRequest {"height": 4709, "view": 0} -2023-12-15T23:24:06.524Z INFO sending Commit {"height": 4709, "view": 0} -2023-12-15T23:24:06.525Z INFO approving block {"height": 4709, "hash": "48bf201ac5144d535879e5535a342d5510dd883980cebe3fe09147f7d7af39d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "752cb2defcb7b79f5d3056999e73b34b210af262219af47fd8e8a5e1c747ba9d"} -2023-12-15T23:24:06.526Z INFO initializing dbft {"height": 4710, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:06.527Z debug frostfs-node/morph.go:229 new block {"index": 4709} -2023-12-15T23:24:07.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4709, "blockHeight": 4709, "took": "9.665626ms"} -2023-12-15T23:24:07.526Z INFO sending PrepareRequest {"height": 4710, "view": 0} -2023-12-15T23:24:07.526Z INFO sending Commit {"height": 4710, "view": 0} -2023-12-15T23:24:07.526Z INFO approving block {"height": 4710, "hash": "0494fb8e05e09788b9cbe5e0968610a4b276edadbad9ed037e3247bdf023649f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48bf201ac5144d535879e5535a342d5510dd883980cebe3fe09147f7d7af39d5"} -2023-12-15T23:24:07.527Z INFO initializing dbft {"height": 4711, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:07.528Z debug frostfs-node/morph.go:229 new block {"index": 4710} -2023-12-15T23:24:08.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4710, "blockHeight": 4710, "took": "9.821146ms"} -2023-12-15T23:24:08.528Z INFO sending PrepareRequest {"height": 4711, "view": 0} -2023-12-15T23:24:08.528Z INFO sending Commit {"height": 4711, "view": 0} -2023-12-15T23:24:08.528Z INFO approving block {"height": 4711, "hash": "88807137b57a683e7287d5638d658807dacc27112bcf6f50aa43841bdede9bf8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0494fb8e05e09788b9cbe5e0968610a4b276edadbad9ed037e3247bdf023649f"} -2023-12-15T23:24:08.529Z INFO initializing dbft {"height": 4712, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:08.530Z debug frostfs-node/morph.go:229 new block {"index": 4711} -2023-12-15T23:24:09.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4711, "blockHeight": 4711, "took": "7.803387ms"} -2023-12-15T23:24:09.529Z INFO sending PrepareRequest {"height": 4712, "view": 0} -2023-12-15T23:24:09.530Z INFO sending Commit {"height": 4712, "view": 0} -2023-12-15T23:24:09.530Z INFO approving block {"height": 4712, "hash": "b8871566ba18cc085cc53cc38ca60ce980fb9856ea31f4b9b4425dbfb4a04b91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88807137b57a683e7287d5638d658807dacc27112bcf6f50aa43841bdede9bf8"} -2023-12-15T23:24:09.531Z INFO initializing dbft {"height": 4713, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:09.532Z debug frostfs-node/morph.go:229 new block {"index": 4712} -2023-12-15T23:24:10.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4712, "blockHeight": 4712, "took": "7.414695ms"} -2023-12-15T23:24:10.532Z INFO sending PrepareRequest {"height": 4713, "view": 0} -2023-12-15T23:24:10.532Z INFO sending Commit {"height": 4713, "view": 0} -2023-12-15T23:24:10.532Z INFO approving block {"height": 4713, "hash": "238028e6e08712f43eeab586779fe4be8710e9a2a20477f2175321f695a114bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8871566ba18cc085cc53cc38ca60ce980fb9856ea31f4b9b4425dbfb4a04b91"} -2023-12-15T23:24:10.534Z INFO initializing dbft {"height": 4714, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:10.534Z debug frostfs-node/morph.go:229 new block {"index": 4713} -2023-12-15T23:24:11.390Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4713, "blockHeight": 4713, "took": "9.622756ms"} -2023-12-15T23:24:11.533Z INFO sending PrepareRequest {"height": 4714, "view": 0} -2023-12-15T23:24:11.534Z INFO sending Commit {"height": 4714, "view": 0} -2023-12-15T23:24:11.534Z INFO approving block {"height": 4714, "hash": "21f2c5caff8c74a443c4beff2025a56a29a99a2f8b895116a15d9272e2ad1d72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "238028e6e08712f43eeab586779fe4be8710e9a2a20477f2175321f695a114bf"} -2023-12-15T23:24:11.535Z INFO initializing dbft {"height": 4715, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:11.536Z debug frostfs-node/morph.go:229 new block {"index": 4714} -2023-12-15T23:24:12.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4714, "blockHeight": 4714, "took": "6.062483ms"} -2023-12-15T23:24:12.535Z INFO sending PrepareRequest {"height": 4715, "view": 0} -2023-12-15T23:24:12.536Z INFO sending Commit {"height": 4715, "view": 0} -2023-12-15T23:24:12.536Z INFO approving block {"height": 4715, "hash": "de225106d3ca36f058118509f72f027fe6fa383bb390ecb364ee696595502c61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21f2c5caff8c74a443c4beff2025a56a29a99a2f8b895116a15d9272e2ad1d72"} -2023-12-15T23:24:12.538Z INFO initializing dbft {"height": 4716, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:12.539Z debug frostfs-node/morph.go:229 new block {"index": 4715} -2023-12-15T23:24:13.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4715, "blockHeight": 4715, "took": "5.53797ms"} -2023-12-15T23:24:13.538Z INFO sending PrepareRequest {"height": 4716, "view": 0} -2023-12-15T23:24:13.538Z INFO sending Commit {"height": 4716, "view": 0} -2023-12-15T23:24:13.539Z INFO approving block {"height": 4716, "hash": "f60aa22d43af9b91af845bf6942528220a9283741c7b3453853c464867a2d034", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de225106d3ca36f058118509f72f027fe6fa383bb390ecb364ee696595502c61"} -2023-12-15T23:24:13.540Z INFO initializing dbft {"height": 4717, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:13.541Z debug frostfs-node/morph.go:229 new block {"index": 4716} -2023-12-15T23:24:14.393Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4716, "blockHeight": 4716, "took": "10.824726ms"} -2023-12-15T23:24:14.540Z INFO sending PrepareRequest {"height": 4717, "view": 0} -2023-12-15T23:24:14.540Z INFO sending Commit {"height": 4717, "view": 0} -2023-12-15T23:24:14.541Z INFO approving block {"height": 4717, "hash": "14888d191c1346c998ba957ea86e09131f01c21c829e3237db3dcab89c87a31a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f60aa22d43af9b91af845bf6942528220a9283741c7b3453853c464867a2d034"} -2023-12-15T23:24:14.543Z INFO initializing dbft {"height": 4718, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:14.544Z debug frostfs-node/morph.go:229 new block {"index": 4717} -2023-12-15T23:24:14.548Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:24:14.553Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:24:14.553Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:24:15.390Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4717, "blockHeight": 4717, "took": "7.146068ms"} -2023-12-15T23:24:15.542Z INFO sending PrepareRequest {"height": 4718, "view": 0} -2023-12-15T23:24:15.542Z INFO sending Commit {"height": 4718, "view": 0} -2023-12-15T23:24:15.543Z INFO approving block {"height": 4718, "hash": "147de15f459ecdf67b173645bff4ce4ad04bb416c3b8d4f04d2daeb3b7bb8412", "tx_count": 2, "merkle": "fbc9f96d6e11660c29e22266a794ee4b3fb5168b94572d03e5d36a67f8910ec8", "prev": "14888d191c1346c998ba957ea86e09131f01c21c829e3237db3dcab89c87a31a"} -2023-12-15T23:24:15.544Z INFO runtime log {"tx": "06330b2682f06d4b137e1bb091f0183f54c1b16bfacab7e4662f64b8502c602a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:24:15.544Z INFO runtime log {"tx": "06330b2682f06d4b137e1bb091f0183f54c1b16bfacab7e4662f64b8502c602a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:24:15.546Z INFO initializing dbft {"height": 4719, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:15.547Z debug frostfs-node/morph.go:229 new block {"index": 4718} -2023-12-15T23:24:16.396Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4718, "blockHeight": 4718, "took": "11.714292ms"} -2023-12-15T23:24:16.544Z INFO sending PrepareRequest {"height": 4719, "view": 0} -2023-12-15T23:24:16.544Z INFO sending Commit {"height": 4719, "view": 0} -2023-12-15T23:24:16.545Z INFO approving block {"height": 4719, "hash": "5bdef1cda2e0af911fa6be8ad6ba32625175944e9ebfead792ba65bede47c6cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "147de15f459ecdf67b173645bff4ce4ad04bb416c3b8d4f04d2daeb3b7bb8412"} -2023-12-15T23:24:16.546Z INFO initializing dbft {"height": 4720, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:16.547Z debug frostfs-node/morph.go:229 new block {"index": 4719} -2023-12-15T23:24:17.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4719, "blockHeight": 4719, "took": "6.690988ms"} -2023-12-15T23:24:17.546Z INFO sending PrepareRequest {"height": 4720, "view": 0} -2023-12-15T23:24:17.546Z INFO sending Commit {"height": 4720, "view": 0} -2023-12-15T23:24:17.546Z INFO approving block {"height": 4720, "hash": "fbf3514dabf254751a65d2ce2319c82040422d3c2584b735ae5cfa73f92dea63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5bdef1cda2e0af911fa6be8ad6ba32625175944e9ebfead792ba65bede47c6cc"} -2023-12-15T23:24:17.548Z INFO initializing dbft {"height": 4721, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:17.549Z debug frostfs-node/morph.go:229 new block {"index": 4720} -2023-12-15T23:24:18.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4720, "blockHeight": 4720, "took": "6.647615ms"} -2023-12-15T23:24:18.548Z INFO sending PrepareRequest {"height": 4721, "view": 0} -2023-12-15T23:24:18.548Z INFO sending Commit {"height": 4721, "view": 0} -2023-12-15T23:24:18.548Z INFO approving block {"height": 4721, "hash": "1496461d2a9dc69a6b083fb2a55ff6b816ebb1cae348019a20ba6afba751b7fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbf3514dabf254751a65d2ce2319c82040422d3c2584b735ae5cfa73f92dea63"} -2023-12-15T23:24:18.550Z INFO initializing dbft {"height": 4722, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:18.551Z debug frostfs-node/morph.go:229 new block {"index": 4721} -2023-12-15T23:24:19.393Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4721, "blockHeight": 4721, "took": "6.10882ms"} -2023-12-15T23:24:19.550Z INFO sending PrepareRequest {"height": 4722, "view": 0} -2023-12-15T23:24:19.550Z INFO sending Commit {"height": 4722, "view": 0} -2023-12-15T23:24:19.551Z INFO approving block {"height": 4722, "hash": "1f9459c9b1c132d8c45de869f866c32899df8e79f1d9236b2e5bbc3d38481bdd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1496461d2a9dc69a6b083fb2a55ff6b816ebb1cae348019a20ba6afba751b7fd"} -2023-12-15T23:24:19.553Z INFO initializing dbft {"height": 4723, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:19.553Z debug frostfs-node/morph.go:229 new block {"index": 4722} -2023-12-15T23:24:20.394Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4722, "blockHeight": 4722, "took": "6.761718ms"} -2023-12-15T23:24:20.552Z INFO sending PrepareRequest {"height": 4723, "view": 0} -2023-12-15T23:24:20.552Z INFO sending Commit {"height": 4723, "view": 0} -2023-12-15T23:24:20.553Z INFO approving block {"height": 4723, "hash": "9b4ce71d3bf0c97cdc2193a410c08be153b33e3a6faf648a4e3831e69b2d7fd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f9459c9b1c132d8c45de869f866c32899df8e79f1d9236b2e5bbc3d38481bdd"} -2023-12-15T23:24:20.554Z INFO initializing dbft {"height": 4724, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:20.555Z debug frostfs-node/morph.go:229 new block {"index": 4723} -2023-12-15T23:24:21.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4723, "blockHeight": 4723, "took": "6.122833ms"} -2023-12-15T23:24:21.554Z INFO sending PrepareRequest {"height": 4724, "view": 0} -2023-12-15T23:24:21.554Z INFO sending Commit {"height": 4724, "view": 0} -2023-12-15T23:24:21.554Z INFO approving block {"height": 4724, "hash": "34eee7ebee4a5da0c1b98ffa336daeaaaa9febe7696dcb2c8b3e89597d80f40d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b4ce71d3bf0c97cdc2193a410c08be153b33e3a6faf648a4e3831e69b2d7fd1"} -2023-12-15T23:24:21.556Z INFO initializing dbft {"height": 4725, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:21.557Z debug frostfs-node/morph.go:229 new block {"index": 4724} -2023-12-15T23:24:22.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4724, "blockHeight": 4724, "took": "6.822144ms"} -2023-12-15T23:24:22.556Z INFO sending PrepareRequest {"height": 4725, "view": 0} -2023-12-15T23:24:22.556Z INFO sending Commit {"height": 4725, "view": 0} -2023-12-15T23:24:22.557Z INFO approving block {"height": 4725, "hash": "6eddfc35d714762562a1b4471e5118ebc56f4e854e8b6bb3264abaa9a501b57c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34eee7ebee4a5da0c1b98ffa336daeaaaa9febe7696dcb2c8b3e89597d80f40d"} -2023-12-15T23:24:22.558Z INFO initializing dbft {"height": 4726, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:22.559Z debug frostfs-node/morph.go:229 new block {"index": 4725} -2023-12-15T23:24:23.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4725, "blockHeight": 4725, "took": "9.097089ms"} -2023-12-15T23:24:23.558Z INFO sending PrepareRequest {"height": 4726, "view": 0} -2023-12-15T23:24:23.558Z INFO sending Commit {"height": 4726, "view": 0} -2023-12-15T23:24:23.558Z INFO approving block {"height": 4726, "hash": "73d7611b82a05be8446b16f335d69bd1af65787a53079a8190be23eeffae04c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6eddfc35d714762562a1b4471e5118ebc56f4e854e8b6bb3264abaa9a501b57c"} -2023-12-15T23:24:23.559Z INFO initializing dbft {"height": 4727, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:23.560Z debug frostfs-node/morph.go:229 new block {"index": 4726} -2023-12-15T23:24:24.397Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4726, "blockHeight": 4726, "took": "6.201685ms"} -2023-12-15T23:24:24.560Z INFO sending PrepareRequest {"height": 4727, "view": 0} -2023-12-15T23:24:24.560Z INFO sending Commit {"height": 4727, "view": 0} -2023-12-15T23:24:24.560Z INFO approving block {"height": 4727, "hash": "881e26f8ce2cd1b2f08997a668725c8c8fb0bfd80998f50885e85d7f17566acb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73d7611b82a05be8446b16f335d69bd1af65787a53079a8190be23eeffae04c8"} -2023-12-15T23:24:24.562Z INFO initializing dbft {"height": 4728, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:24.563Z debug frostfs-node/morph.go:229 new block {"index": 4727} -2023-12-15T23:24:25.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4727, "blockHeight": 4727, "took": "7.687985ms"} -2023-12-15T23:24:25.562Z INFO sending PrepareRequest {"height": 4728, "view": 0} -2023-12-15T23:24:25.562Z INFO sending Commit {"height": 4728, "view": 0} -2023-12-15T23:24:25.562Z INFO approving block {"height": 4728, "hash": "b9004071e5b1468d7c537b0c0959a8b360d9234fe946947f59316e458c8c5752", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "881e26f8ce2cd1b2f08997a668725c8c8fb0bfd80998f50885e85d7f17566acb"} -2023-12-15T23:24:25.563Z INFO initializing dbft {"height": 4729, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:25.564Z debug frostfs-node/morph.go:229 new block {"index": 4728} -2023-12-15T23:24:26.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4728, "blockHeight": 4728, "took": "5.184332ms"} -2023-12-15T23:24:26.563Z INFO sending PrepareRequest {"height": 4729, "view": 0} -2023-12-15T23:24:26.563Z INFO sending Commit {"height": 4729, "view": 0} -2023-12-15T23:24:26.563Z INFO approving block {"height": 4729, "hash": "96cd44703d0ab1d979b5047652949860176578fa09bf3bd018abdbff92f80e9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9004071e5b1468d7c537b0c0959a8b360d9234fe946947f59316e458c8c5752"} -2023-12-15T23:24:26.565Z INFO initializing dbft {"height": 4730, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:26.566Z debug frostfs-node/morph.go:229 new block {"index": 4729} -2023-12-15T23:24:27.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4729, "blockHeight": 4729, "took": "5.765467ms"} -2023-12-15T23:24:27.565Z INFO sending PrepareRequest {"height": 4730, "view": 0} -2023-12-15T23:24:27.565Z INFO sending Commit {"height": 4730, "view": 0} -2023-12-15T23:24:27.565Z INFO approving block {"height": 4730, "hash": "c31d93bd3ed49bfa068e7918b600dfe2b0f93872534dc01bac6344a3f320c66d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96cd44703d0ab1d979b5047652949860176578fa09bf3bd018abdbff92f80e9d"} -2023-12-15T23:24:27.567Z INFO initializing dbft {"height": 4731, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:27.568Z debug frostfs-node/morph.go:229 new block {"index": 4730} -2023-12-15T23:24:28.402Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4730, "blockHeight": 4730, "took": "6.857464ms"} -2023-12-15T23:24:28.566Z INFO sending PrepareRequest {"height": 4731, "view": 0} -2023-12-15T23:24:28.566Z INFO sending Commit {"height": 4731, "view": 0} -2023-12-15T23:24:28.567Z INFO approving block {"height": 4731, "hash": "5db0f07e7935fa594d14d4d8fd664303478383e04ab5269b31dc62bdd607724c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c31d93bd3ed49bfa068e7918b600dfe2b0f93872534dc01bac6344a3f320c66d"} -2023-12-15T23:24:28.568Z INFO initializing dbft {"height": 4732, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:28.569Z debug frostfs-node/morph.go:229 new block {"index": 4731} -2023-12-15T23:24:29.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4731, "blockHeight": 4731, "took": "5.801559ms"} -2023-12-15T23:24:29.568Z INFO sending PrepareRequest {"height": 4732, "view": 0} -2023-12-15T23:24:29.568Z INFO sending Commit {"height": 4732, "view": 0} -2023-12-15T23:24:29.568Z INFO approving block {"height": 4732, "hash": "a8d23a644707ae0fed9d572c0b95a51dfec89263295aaec5cf00d59a5711a9d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5db0f07e7935fa594d14d4d8fd664303478383e04ab5269b31dc62bdd607724c"} -2023-12-15T23:24:29.571Z INFO initializing dbft {"height": 4733, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:29.571Z debug frostfs-node/morph.go:229 new block {"index": 4732} -2023-12-15T23:24:30.407Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4732, "blockHeight": 4732, "took": "10.700016ms"} -2023-12-15T23:24:30.570Z INFO sending PrepareRequest {"height": 4733, "view": 0} -2023-12-15T23:24:30.570Z INFO sending Commit {"height": 4733, "view": 0} -2023-12-15T23:24:30.570Z INFO approving block {"height": 4733, "hash": "6a11cc146a24dc08d2635becde182d08312db419f3a4f32db83925f141cad870", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8d23a644707ae0fed9d572c0b95a51dfec89263295aaec5cf00d59a5711a9d3"} -2023-12-15T23:24:30.572Z INFO initializing dbft {"height": 4734, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:30.572Z debug frostfs-node/morph.go:229 new block {"index": 4733} -2023-12-15T23:24:31.402Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4733, "blockHeight": 4733, "took": "5.48999ms"} -2023-12-15T23:24:31.571Z INFO sending PrepareRequest {"height": 4734, "view": 0} -2023-12-15T23:24:31.571Z INFO sending Commit {"height": 4734, "view": 0} -2023-12-15T23:24:31.572Z INFO approving block {"height": 4734, "hash": "06c17f9a766f71d99212cb215081923be19bc769a3dc4c38ecd912526113cfca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a11cc146a24dc08d2635becde182d08312db419f3a4f32db83925f141cad870"} -2023-12-15T23:24:31.574Z INFO initializing dbft {"height": 4735, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:31.575Z debug frostfs-node/morph.go:229 new block {"index": 4734} -2023-12-15T23:24:32.408Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4734, "blockHeight": 4734, "took": "10.482487ms"} -2023-12-15T23:24:32.573Z INFO sending PrepareRequest {"height": 4735, "view": 0} -2023-12-15T23:24:32.573Z INFO sending Commit {"height": 4735, "view": 0} -2023-12-15T23:24:32.574Z INFO approving block {"height": 4735, "hash": "e8f25e0bac01be75c25514524289ae94c1342fdf77e5c40235dc5cec22802e11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06c17f9a766f71d99212cb215081923be19bc769a3dc4c38ecd912526113cfca"} -2023-12-15T23:24:32.576Z INFO initializing dbft {"height": 4736, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:32.578Z debug frostfs-node/morph.go:229 new block {"index": 4735} -2023-12-15T23:24:33.406Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4735, "blockHeight": 4735, "took": "6.846849ms"} -2023-12-15T23:24:33.575Z INFO sending PrepareRequest {"height": 4736, "view": 0} -2023-12-15T23:24:33.576Z INFO sending Commit {"height": 4736, "view": 0} -2023-12-15T23:24:33.576Z INFO approving block {"height": 4736, "hash": "61e228efb05d8f8a78de7cea25b58a414c6d08ae8c21e7290a56ea9f8e9c4066", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8f25e0bac01be75c25514524289ae94c1342fdf77e5c40235dc5cec22802e11"} -2023-12-15T23:24:33.578Z INFO initializing dbft {"height": 4737, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:33.579Z debug frostfs-node/morph.go:229 new block {"index": 4736} -2023-12-15T23:24:34.407Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4736, "blockHeight": 4736, "took": "7.058765ms"} -2023-12-15T23:24:34.577Z INFO sending PrepareRequest {"height": 4737, "view": 0} -2023-12-15T23:24:34.577Z INFO sending Commit {"height": 4737, "view": 0} -2023-12-15T23:24:34.577Z INFO approving block {"height": 4737, "hash": "c207b3b814f2d474a1693905c186f738146040878251331b067b421464936926", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61e228efb05d8f8a78de7cea25b58a414c6d08ae8c21e7290a56ea9f8e9c4066"} -2023-12-15T23:24:34.579Z INFO initializing dbft {"height": 4738, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:34.579Z debug frostfs-node/morph.go:229 new block {"index": 4737} -2023-12-15T23:24:35.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4737, "blockHeight": 4737, "took": "4.762928ms"} -2023-12-15T23:24:35.579Z INFO sending PrepareRequest {"height": 4738, "view": 0} -2023-12-15T23:24:35.579Z INFO sending Commit {"height": 4738, "view": 0} -2023-12-15T23:24:35.580Z INFO approving block {"height": 4738, "hash": "9c8b2ca2c3e83fab3d4ad9ff4e8133a90bf2c08b618edd74b12983f1ea71d67b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c207b3b814f2d474a1693905c186f738146040878251331b067b421464936926"} -2023-12-15T23:24:35.581Z INFO initializing dbft {"height": 4739, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:35.582Z debug frostfs-node/morph.go:229 new block {"index": 4738} -2023-12-15T23:24:36.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4738, "blockHeight": 4738, "took": "7.629032ms"} -2023-12-15T23:24:36.581Z INFO sending PrepareRequest {"height": 4739, "view": 0} -2023-12-15T23:24:36.581Z INFO sending Commit {"height": 4739, "view": 0} -2023-12-15T23:24:36.582Z INFO approving block {"height": 4739, "hash": "c28093474507e1bba1e989d40e7f14ac46a0c6965bee9466aed660107207aedd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c8b2ca2c3e83fab3d4ad9ff4e8133a90bf2c08b618edd74b12983f1ea71d67b"} -2023-12-15T23:24:36.583Z INFO initializing dbft {"height": 4740, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:36.584Z debug frostfs-node/morph.go:229 new block {"index": 4739} -2023-12-15T23:24:37.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4739, "blockHeight": 4739, "took": "6.643423ms"} -2023-12-15T23:24:37.583Z INFO sending PrepareRequest {"height": 4740, "view": 0} -2023-12-15T23:24:37.583Z INFO sending Commit {"height": 4740, "view": 0} -2023-12-15T23:24:37.583Z INFO approving block {"height": 4740, "hash": "c932d4f89653f6f3223c07e7788d9e6a7f590d87f08c6acb6a3958d5e9772d1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c28093474507e1bba1e989d40e7f14ac46a0c6965bee9466aed660107207aedd"} -2023-12-15T23:24:37.584Z INFO initializing dbft {"height": 4741, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:37.585Z debug frostfs-node/morph.go:229 new block {"index": 4740} -2023-12-15T23:24:38.411Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4740, "blockHeight": 4740, "took": "7.731235ms"} -2023-12-15T23:24:38.585Z INFO sending PrepareRequest {"height": 4741, "view": 0} -2023-12-15T23:24:38.585Z INFO sending Commit {"height": 4741, "view": 0} -2023-12-15T23:24:38.586Z INFO approving block {"height": 4741, "hash": "8c358913307a0b34960b145304659a00b6d6e29dd1c383a80f95c50f69e3ea96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c932d4f89653f6f3223c07e7788d9e6a7f590d87f08c6acb6a3958d5e9772d1c"} -2023-12-15T23:24:38.587Z INFO initializing dbft {"height": 4742, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:38.588Z debug frostfs-node/morph.go:229 new block {"index": 4741} -2023-12-15T23:24:39.411Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4741, "blockHeight": 4741, "took": "6.841239ms"} -2023-12-15T23:24:39.587Z INFO sending PrepareRequest {"height": 4742, "view": 0} -2023-12-15T23:24:39.587Z INFO sending Commit {"height": 4742, "view": 0} -2023-12-15T23:24:39.588Z INFO approving block {"height": 4742, "hash": "9e05526c14c7cddff7d800f9abbf34da745678eef5d37342515a20e46d5a698f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c358913307a0b34960b145304659a00b6d6e29dd1c383a80f95c50f69e3ea96"} -2023-12-15T23:24:39.589Z INFO initializing dbft {"height": 4743, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:39.590Z debug frostfs-node/morph.go:229 new block {"index": 4742} -2023-12-15T23:24:40.413Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4742, "blockHeight": 4742, "took": "7.453887ms"} -2023-12-15T23:24:40.589Z INFO sending PrepareRequest {"height": 4743, "view": 0} -2023-12-15T23:24:40.590Z INFO sending Commit {"height": 4743, "view": 0} -2023-12-15T23:24:40.590Z INFO approving block {"height": 4743, "hash": "081d36c49105dc935057e5c618d8318ffd947cf681d25909cf99dcdbdf664452", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e05526c14c7cddff7d800f9abbf34da745678eef5d37342515a20e46d5a698f"} -2023-12-15T23:24:40.592Z INFO initializing dbft {"height": 4744, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:40.593Z debug frostfs-node/morph.go:229 new block {"index": 4743} -2023-12-15T23:24:41.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4743, "blockHeight": 4743, "took": "5.545142ms"} -2023-12-15T23:24:41.591Z INFO sending PrepareRequest {"height": 4744, "view": 0} -2023-12-15T23:24:41.591Z INFO sending Commit {"height": 4744, "view": 0} -2023-12-15T23:24:41.592Z INFO approving block {"height": 4744, "hash": "1d2da5ab85e57bbb79ec96f882175e4e360c7405ff31d3537ac96e2a17021079", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "081d36c49105dc935057e5c618d8318ffd947cf681d25909cf99dcdbdf664452"} -2023-12-15T23:24:41.593Z INFO initializing dbft {"height": 4745, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:41.594Z debug frostfs-node/morph.go:229 new block {"index": 4744} -2023-12-15T23:24:42.414Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4744, "blockHeight": 4744, "took": "6.429822ms"} -2023-12-15T23:24:42.593Z INFO sending PrepareRequest {"height": 4745, "view": 0} -2023-12-15T23:24:42.593Z INFO sending Commit {"height": 4745, "view": 0} -2023-12-15T23:24:42.594Z INFO approving block {"height": 4745, "hash": "c40baecea002546ac18e1b60ec0bf2d4a916c24d2ae55e1b18af42d53c602cb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d2da5ab85e57bbb79ec96f882175e4e360c7405ff31d3537ac96e2a17021079"} -2023-12-15T23:24:42.595Z INFO initializing dbft {"height": 4746, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:42.596Z debug frostfs-node/morph.go:229 new block {"index": 4745} -2023-12-15T23:24:43.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4745, "blockHeight": 4745, "took": "6.645275ms"} -2023-12-15T23:24:43.595Z INFO sending PrepareRequest {"height": 4746, "view": 0} -2023-12-15T23:24:43.595Z INFO sending Commit {"height": 4746, "view": 0} -2023-12-15T23:24:43.595Z INFO approving block {"height": 4746, "hash": "6cdceb2730d1dfba0f06484005aee5c19be2c17ad73a2200818a6c41efce1f34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c40baecea002546ac18e1b60ec0bf2d4a916c24d2ae55e1b18af42d53c602cb0"} -2023-12-15T23:24:43.597Z INFO initializing dbft {"height": 4747, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:43.598Z debug frostfs-node/morph.go:229 new block {"index": 4746} -2023-12-15T23:24:44.416Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4746, "blockHeight": 4746, "took": "6.817849ms"} -2023-12-15T23:24:44.597Z INFO sending PrepareRequest {"height": 4747, "view": 0} -2023-12-15T23:24:44.597Z INFO sending Commit {"height": 4747, "view": 0} -2023-12-15T23:24:44.597Z INFO approving block {"height": 4747, "hash": "a48d234bc7208b6f6b822531149a2da317c5059a86d532194c0ef2fe58df7e70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cdceb2730d1dfba0f06484005aee5c19be2c17ad73a2200818a6c41efce1f34"} -2023-12-15T23:24:44.599Z INFO initializing dbft {"height": 4748, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:44.600Z debug frostfs-node/morph.go:229 new block {"index": 4747} -2023-12-15T23:24:45.417Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4747, "blockHeight": 4747, "took": "7.118163ms"} -2023-12-15T23:24:45.598Z INFO sending PrepareRequest {"height": 4748, "view": 0} -2023-12-15T23:24:45.598Z INFO sending Commit {"height": 4748, "view": 0} -2023-12-15T23:24:45.599Z INFO approving block {"height": 4748, "hash": "51d461fcf7eaff9e9d38a3a3919166cdcd8c3f9a2e9a2098059217fc2e3eb462", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a48d234bc7208b6f6b822531149a2da317c5059a86d532194c0ef2fe58df7e70"} -2023-12-15T23:24:45.600Z INFO initializing dbft {"height": 4749, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:45.601Z debug frostfs-node/morph.go:229 new block {"index": 4748} -2023-12-15T23:24:46.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4748, "blockHeight": 4748, "took": "12.520726ms"} -2023-12-15T23:24:46.600Z INFO sending PrepareRequest {"height": 4749, "view": 0} -2023-12-15T23:24:46.600Z INFO sending Commit {"height": 4749, "view": 0} -2023-12-15T23:24:46.601Z INFO approving block {"height": 4749, "hash": "8d9a0184e04f099bf4ebfaeb0141f54bf031b75ec8203cb6c7d1e17292ef0497", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51d461fcf7eaff9e9d38a3a3919166cdcd8c3f9a2e9a2098059217fc2e3eb462"} -2023-12-15T23:24:46.602Z INFO initializing dbft {"height": 4750, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:46.603Z debug frostfs-node/morph.go:229 new block {"index": 4749} -2023-12-15T23:24:47.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4749, "blockHeight": 4749, "took": "4.677657ms"} -2023-12-15T23:24:47.601Z INFO sending PrepareRequest {"height": 4750, "view": 0} -2023-12-15T23:24:47.602Z INFO sending Commit {"height": 4750, "view": 0} -2023-12-15T23:24:47.602Z INFO approving block {"height": 4750, "hash": "cac470ef3f42a0de9e70dee6ad75e5ac058c74c3e64372964ca33b3ebe65ce05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d9a0184e04f099bf4ebfaeb0141f54bf031b75ec8203cb6c7d1e17292ef0497"} -2023-12-15T23:24:47.604Z INFO initializing dbft {"height": 4751, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:47.604Z debug frostfs-node/morph.go:229 new block {"index": 4750} -2023-12-15T23:24:48.417Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4750, "blockHeight": 4750, "took": "5.432358ms"} -2023-12-15T23:24:48.603Z INFO sending PrepareRequest {"height": 4751, "view": 0} -2023-12-15T23:24:48.603Z INFO sending Commit {"height": 4751, "view": 0} -2023-12-15T23:24:48.604Z INFO approving block {"height": 4751, "hash": "bc29a60c7f7edd66af670db5ae6d80b25bb7ae14f55de7c82ed64535413c9008", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cac470ef3f42a0de9e70dee6ad75e5ac058c74c3e64372964ca33b3ebe65ce05"} -2023-12-15T23:24:48.605Z INFO initializing dbft {"height": 4752, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:48.606Z debug frostfs-node/morph.go:229 new block {"index": 4751} -2023-12-15T23:24:49.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4751, "blockHeight": 4751, "took": "8.675565ms"} -2023-12-15T23:24:49.605Z INFO sending PrepareRequest {"height": 4752, "view": 0} -2023-12-15T23:24:49.605Z INFO sending Commit {"height": 4752, "view": 0} -2023-12-15T23:24:49.605Z INFO approving block {"height": 4752, "hash": "f71fd986147cfa2a66c846a2cf313bc76aab3f3240f45d4cab2ef21e7f129ce3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc29a60c7f7edd66af670db5ae6d80b25bb7ae14f55de7c82ed64535413c9008"} -2023-12-15T23:24:49.607Z INFO initializing dbft {"height": 4753, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:49.608Z debug frostfs-node/morph.go:229 new block {"index": 4752} -2023-12-15T23:24:50.420Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4752, "blockHeight": 4752, "took": "6.483909ms"} -2023-12-15T23:24:50.607Z INFO sending PrepareRequest {"height": 4753, "view": 0} -2023-12-15T23:24:50.607Z INFO sending Commit {"height": 4753, "view": 0} -2023-12-15T23:24:50.608Z INFO approving block {"height": 4753, "hash": "cb74889ee5aa30e2f190cd52a396c377b7abf01983dc4ab4bdeff1a80fe034e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f71fd986147cfa2a66c846a2cf313bc76aab3f3240f45d4cab2ef21e7f129ce3"} -2023-12-15T23:24:50.609Z INFO initializing dbft {"height": 4754, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:50.610Z debug frostfs-node/morph.go:229 new block {"index": 4753} -2023-12-15T23:24:51.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4753, "blockHeight": 4753, "took": "6.573851ms"} -2023-12-15T23:24:51.609Z INFO sending PrepareRequest {"height": 4754, "view": 0} -2023-12-15T23:24:51.610Z INFO sending Commit {"height": 4754, "view": 0} -2023-12-15T23:24:51.611Z INFO approving block {"height": 4754, "hash": "88f2671309c2f589dc546ed713d9931631eeebf71ff58812dc684a9c28f36381", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb74889ee5aa30e2f190cd52a396c377b7abf01983dc4ab4bdeff1a80fe034e8"} -2023-12-15T23:24:51.612Z INFO initializing dbft {"height": 4755, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:51.613Z debug frostfs-node/morph.go:229 new block {"index": 4754} -2023-12-15T23:24:52.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4754, "blockHeight": 4754, "took": "6.413497ms"} -2023-12-15T23:24:52.612Z INFO sending PrepareRequest {"height": 4755, "view": 0} -2023-12-15T23:24:52.612Z INFO sending Commit {"height": 4755, "view": 0} -2023-12-15T23:24:52.612Z INFO approving block {"height": 4755, "hash": "db7102a712da4318a2d68a5e10d031e3cd997f894e8bfdd43cdac309a51a5e5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88f2671309c2f589dc546ed713d9931631eeebf71ff58812dc684a9c28f36381"} -2023-12-15T23:24:52.614Z INFO initializing dbft {"height": 4756, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:52.614Z debug frostfs-node/morph.go:229 new block {"index": 4755} -2023-12-15T23:24:53.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4755, "blockHeight": 4755, "took": "7.409318ms"} -2023-12-15T23:24:53.613Z INFO sending PrepareRequest {"height": 4756, "view": 0} -2023-12-15T23:24:53.614Z INFO sending Commit {"height": 4756, "view": 0} -2023-12-15T23:24:53.614Z INFO approving block {"height": 4756, "hash": "4de23db50e965f5f7c966cd77908619f84e466e595ab39773afedb4b78aef671", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db7102a712da4318a2d68a5e10d031e3cd997f894e8bfdd43cdac309a51a5e5c"} -2023-12-15T23:24:53.616Z INFO initializing dbft {"height": 4757, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:53.617Z debug frostfs-node/morph.go:229 new block {"index": 4756} -2023-12-15T23:24:54.424Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4756, "blockHeight": 4756, "took": "7.80415ms"} -2023-12-15T23:24:54.615Z INFO sending PrepareRequest {"height": 4757, "view": 0} -2023-12-15T23:24:54.616Z INFO sending Commit {"height": 4757, "view": 0} -2023-12-15T23:24:54.616Z INFO approving block {"height": 4757, "hash": "d7a0abd4ab6e24200ce032eab4b322e19aef4bf51e1c74122abc5267c43a1d2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4de23db50e965f5f7c966cd77908619f84e466e595ab39773afedb4b78aef671"} -2023-12-15T23:24:54.617Z INFO initializing dbft {"height": 4758, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:54.618Z debug frostfs-node/morph.go:229 new block {"index": 4757} -2023-12-15T23:24:55.424Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4757, "blockHeight": 4757, "took": "6.970926ms"} -2023-12-15T23:24:55.617Z INFO sending PrepareRequest {"height": 4758, "view": 0} -2023-12-15T23:24:55.618Z INFO sending Commit {"height": 4758, "view": 0} -2023-12-15T23:24:55.618Z INFO approving block {"height": 4758, "hash": "3f482fb7b5d79f9a53915be9fe00eea3a4fcf6904e1bef9404949b317e8a2752", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7a0abd4ab6e24200ce032eab4b322e19aef4bf51e1c74122abc5267c43a1d2b"} -2023-12-15T23:24:55.620Z INFO initializing dbft {"height": 4759, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:55.621Z debug frostfs-node/morph.go:229 new block {"index": 4758} -2023-12-15T23:24:56.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4758, "blockHeight": 4758, "took": "5.265394ms"} -2023-12-15T23:24:56.620Z INFO sending PrepareRequest {"height": 4759, "view": 0} -2023-12-15T23:24:56.620Z INFO sending Commit {"height": 4759, "view": 0} -2023-12-15T23:24:56.621Z INFO approving block {"height": 4759, "hash": "a798b5c28e0b74b6b08c4968325c03d9fffd0962bf866a8e4d64f01e1c09532e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f482fb7b5d79f9a53915be9fe00eea3a4fcf6904e1bef9404949b317e8a2752"} -2023-12-15T23:24:56.622Z INFO initializing dbft {"height": 4760, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:56.623Z debug frostfs-node/morph.go:229 new block {"index": 4759} -2023-12-15T23:24:56.629Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 20, "iteration": 2, "error": "no data for 1 iteration in 20 epoch for consumers's trusts"} -2023-12-15T23:24:56.630Z info settlement/calls.go:106 start basic income distribution {"epoch": 20} -2023-12-15T23:24:57.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4759, "blockHeight": 4759, "took": "6.149409ms"} -2023-12-15T23:24:57.621Z INFO sending PrepareRequest {"height": 4760, "view": 0} -2023-12-15T23:24:57.622Z INFO sending Commit {"height": 4760, "view": 0} -2023-12-15T23:24:57.622Z INFO approving block {"height": 4760, "hash": "cacca913edecd30f3c7160e6627586f248256c0de55ffe1361568fad30d76ed1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a798b5c28e0b74b6b08c4968325c03d9fffd0962bf866a8e4d64f01e1c09532e"} -2023-12-15T23:24:57.623Z INFO initializing dbft {"height": 4761, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:57.624Z debug frostfs-node/morph.go:229 new block {"index": 4760} -2023-12-15T23:24:58.426Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4760, "blockHeight": 4760, "took": "6.561982ms"} -2023-12-15T23:24:58.624Z INFO sending PrepareRequest {"height": 4761, "view": 0} -2023-12-15T23:24:58.624Z INFO sending Commit {"height": 4761, "view": 0} -2023-12-15T23:24:58.624Z INFO approving block {"height": 4761, "hash": "35c304a5d821ce4c5e912c5371aa17dfa5beab258c2125e041b36296677689a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cacca913edecd30f3c7160e6627586f248256c0de55ffe1361568fad30d76ed1"} -2023-12-15T23:24:58.626Z INFO initializing dbft {"height": 4762, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:58.627Z debug frostfs-node/morph.go:229 new block {"index": 4761} -2023-12-15T23:24:59.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4761, "blockHeight": 4761, "took": "6.393886ms"} -2023-12-15T23:24:59.625Z INFO sending PrepareRequest {"height": 4762, "view": 0} -2023-12-15T23:24:59.625Z INFO sending Commit {"height": 4762, "view": 0} -2023-12-15T23:24:59.626Z INFO approving block {"height": 4762, "hash": "4d825bfcdd7a1a3d215b9bcebf8122fdf6b90ffd9588e01fe9da4958f72ae8f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35c304a5d821ce4c5e912c5371aa17dfa5beab258c2125e041b36296677689a9"} -2023-12-15T23:24:59.627Z INFO initializing dbft {"height": 4763, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:24:59.628Z debug frostfs-node/morph.go:229 new block {"index": 4762} -2023-12-15T23:25:00.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4762, "blockHeight": 4762, "took": "6.20575ms"} -2023-12-15T23:25:00.627Z INFO sending PrepareRequest {"height": 4763, "view": 0} -2023-12-15T23:25:00.627Z INFO sending Commit {"height": 4763, "view": 0} -2023-12-15T23:25:00.628Z INFO approving block {"height": 4763, "hash": "00226b84b692de008f9114b99826350c5e5af81ab0f165af5221dc6049a21c07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d825bfcdd7a1a3d215b9bcebf8122fdf6b90ffd9588e01fe9da4958f72ae8f6"} -2023-12-15T23:25:00.629Z INFO initializing dbft {"height": 4764, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:00.630Z debug frostfs-node/morph.go:229 new block {"index": 4763} -2023-12-15T23:25:01.428Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4763, "blockHeight": 4763, "took": "6.270603ms"} -2023-12-15T23:25:01.630Z INFO sending PrepareRequest {"height": 4764, "view": 0} -2023-12-15T23:25:01.631Z INFO sending Commit {"height": 4764, "view": 0} -2023-12-15T23:25:01.631Z INFO approving block {"height": 4764, "hash": "56f1ad91285c19991d4b69e2020c85c80a3230cdaad2ce4c3ba3c0246c96e66a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00226b84b692de008f9114b99826350c5e5af81ab0f165af5221dc6049a21c07"} -2023-12-15T23:25:01.634Z INFO initializing dbft {"height": 4765, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:01.635Z debug frostfs-node/morph.go:229 new block {"index": 4764} -2023-12-15T23:25:02.430Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4764, "blockHeight": 4764, "took": "6.559271ms"} -2023-12-15T23:25:02.633Z INFO sending PrepareRequest {"height": 4765, "view": 0} -2023-12-15T23:25:02.633Z INFO sending Commit {"height": 4765, "view": 0} -2023-12-15T23:25:02.633Z INFO approving block {"height": 4765, "hash": "314499b6cb5f2265223000d926021bca9757b7f308a643d97c081ddef05fc9a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56f1ad91285c19991d4b69e2020c85c80a3230cdaad2ce4c3ba3c0246c96e66a"} -2023-12-15T23:25:02.635Z INFO initializing dbft {"height": 4766, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:02.636Z debug frostfs-node/morph.go:229 new block {"index": 4765} -2023-12-15T23:25:03.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4765, "blockHeight": 4765, "took": "5.912462ms"} -2023-12-15T23:25:03.635Z INFO sending PrepareRequest {"height": 4766, "view": 0} -2023-12-15T23:25:03.635Z INFO sending Commit {"height": 4766, "view": 0} -2023-12-15T23:25:03.636Z INFO approving block {"height": 4766, "hash": "6f2ca23d7c02424a0facb0a55e386a3a1e3bc7a9a35885de425056d0d04d675f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "314499b6cb5f2265223000d926021bca9757b7f308a643d97c081ddef05fc9a3"} -2023-12-15T23:25:03.637Z INFO initializing dbft {"height": 4767, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:03.638Z debug frostfs-node/morph.go:229 new block {"index": 4766} -2023-12-15T23:25:04.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4766, "blockHeight": 4766, "took": "6.550911ms"} -2023-12-15T23:25:04.637Z INFO sending PrepareRequest {"height": 4767, "view": 0} -2023-12-15T23:25:04.637Z INFO sending Commit {"height": 4767, "view": 0} -2023-12-15T23:25:04.637Z INFO approving block {"height": 4767, "hash": "e9d68db91e12c1028db210d9a91739f08ad375ccf5bf3bb0c3f368dc39099ad5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f2ca23d7c02424a0facb0a55e386a3a1e3bc7a9a35885de425056d0d04d675f"} -2023-12-15T23:25:04.638Z INFO initializing dbft {"height": 4768, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:04.639Z debug frostfs-node/morph.go:229 new block {"index": 4767} -2023-12-15T23:25:04.642Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:25:04.643Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:25:04.643Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:25:05.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4767, "blockHeight": 4767, "took": "6.96575ms"} -2023-12-15T23:25:05.639Z INFO sending PrepareRequest {"height": 4768, "view": 0} -2023-12-15T23:25:05.639Z INFO sending Commit {"height": 4768, "view": 0} -2023-12-15T23:25:05.640Z INFO approving block {"height": 4768, "hash": "f970886f7dd26b894f5af07e89ead1d35179c6180263c87b3a8779c6994fa098", "tx_count": 2, "merkle": "b31affff99bd5fa42e70437f696c5e149a92691f6d0aee81ccd001f5e19a0f49", "prev": "e9d68db91e12c1028db210d9a91739f08ad375ccf5bf3bb0c3f368dc39099ad5"} -2023-12-15T23:25:05.641Z INFO runtime log {"tx": "8e83542d1b631f9864de24508db1dd314f2f6b39855ffe689f034b7cbace81ad", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:25:05.641Z INFO runtime log {"tx": "8e83542d1b631f9864de24508db1dd314f2f6b39855ffe689f034b7cbace81ad", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:25:05.642Z INFO initializing dbft {"height": 4769, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:05.644Z debug frostfs-node/morph.go:229 new block {"index": 4768} -2023-12-15T23:25:06.435Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4768, "blockHeight": 4768, "took": "8.555689ms"} -2023-12-15T23:25:06.640Z INFO sending PrepareRequest {"height": 4769, "view": 0} -2023-12-15T23:25:06.641Z INFO sending Commit {"height": 4769, "view": 0} -2023-12-15T23:25:06.641Z INFO approving block {"height": 4769, "hash": "697c25080e36c79a2f525260b84af8a5667cf21a241806e9fdc8e45cd7e4fd65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f970886f7dd26b894f5af07e89ead1d35179c6180263c87b3a8779c6994fa098"} -2023-12-15T23:25:06.643Z INFO initializing dbft {"height": 4770, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:06.644Z debug frostfs-node/morph.go:229 new block {"index": 4769} -2023-12-15T23:25:07.434Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4769, "blockHeight": 4769, "took": "6.91765ms"} -2023-12-15T23:25:07.643Z INFO sending PrepareRequest {"height": 4770, "view": 0} -2023-12-15T23:25:07.643Z INFO sending Commit {"height": 4770, "view": 0} -2023-12-15T23:25:07.643Z INFO approving block {"height": 4770, "hash": "718ea4d01bb6cf8c2a42cba1e416edf7c4a957b402bcb262e1a154af318ea8d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "697c25080e36c79a2f525260b84af8a5667cf21a241806e9fdc8e45cd7e4fd65"} -2023-12-15T23:25:07.645Z INFO initializing dbft {"height": 4771, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:07.645Z debug frostfs-node/morph.go:229 new block {"index": 4770} -2023-12-15T23:25:08.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4770, "blockHeight": 4770, "took": "7.670465ms"} -2023-12-15T23:25:08.644Z INFO sending PrepareRequest {"height": 4771, "view": 0} -2023-12-15T23:25:08.645Z INFO sending Commit {"height": 4771, "view": 0} -2023-12-15T23:25:08.645Z INFO approving block {"height": 4771, "hash": "eb303b993254c5f0610b931886c54ff805eb76414e749961a4643365801dd8fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "718ea4d01bb6cf8c2a42cba1e416edf7c4a957b402bcb262e1a154af318ea8d7"} -2023-12-15T23:25:08.646Z INFO initializing dbft {"height": 4772, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:08.647Z debug frostfs-node/morph.go:229 new block {"index": 4771} -2023-12-15T23:25:09.434Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4771, "blockHeight": 4771, "took": "4.75929ms"} -2023-12-15T23:25:09.646Z INFO sending PrepareRequest {"height": 4772, "view": 0} -2023-12-15T23:25:09.647Z INFO sending Commit {"height": 4772, "view": 0} -2023-12-15T23:25:09.647Z INFO approving block {"height": 4772, "hash": "4312446fdf494fe3d54342deec8dea23815cf2c0c4673df9228b14a51c63b10e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb303b993254c5f0610b931886c54ff805eb76414e749961a4643365801dd8fd"} -2023-12-15T23:25:09.648Z INFO initializing dbft {"height": 4773, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:09.650Z debug frostfs-node/morph.go:229 new block {"index": 4772} -2023-12-15T23:25:10.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4772, "blockHeight": 4772, "took": "7.209991ms"} -2023-12-15T23:25:10.648Z INFO sending PrepareRequest {"height": 4773, "view": 0} -2023-12-15T23:25:10.649Z INFO sending Commit {"height": 4773, "view": 0} -2023-12-15T23:25:10.649Z INFO approving block {"height": 4773, "hash": "36d7fcd3e93b71f069a987a5a5f424ccb2da9e4fcc709948ebf75323124bdcfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4312446fdf494fe3d54342deec8dea23815cf2c0c4673df9228b14a51c63b10e"} -2023-12-15T23:25:10.651Z INFO initializing dbft {"height": 4774, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:10.652Z debug frostfs-node/morph.go:229 new block {"index": 4773} -2023-12-15T23:25:11.438Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4773, "blockHeight": 4773, "took": "6.787864ms"} -2023-12-15T23:25:11.651Z INFO sending PrepareRequest {"height": 4774, "view": 0} -2023-12-15T23:25:11.651Z INFO sending Commit {"height": 4774, "view": 0} -2023-12-15T23:25:11.651Z INFO approving block {"height": 4774, "hash": "08c511f386d1f8f57c1325aaea8d18c322e30a04a02b85fa5158f18d1c78b4c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36d7fcd3e93b71f069a987a5a5f424ccb2da9e4fcc709948ebf75323124bdcfd"} -2023-12-15T23:25:11.653Z INFO initializing dbft {"height": 4775, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:11.654Z debug frostfs-node/morph.go:229 new block {"index": 4774} -2023-12-15T23:25:12.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4774, "blockHeight": 4774, "took": "4.968326ms"} -2023-12-15T23:25:12.652Z INFO sending PrepareRequest {"height": 4775, "view": 0} -2023-12-15T23:25:12.653Z INFO sending Commit {"height": 4775, "view": 0} -2023-12-15T23:25:12.653Z INFO approving block {"height": 4775, "hash": "5acae251508a2f91012461c1d3613965e53aa933db91f3e3919fa63918b6406a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08c511f386d1f8f57c1325aaea8d18c322e30a04a02b85fa5158f18d1c78b4c4"} -2023-12-15T23:25:12.655Z INFO initializing dbft {"height": 4776, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:12.655Z debug frostfs-node/morph.go:229 new block {"index": 4775} -2023-12-15T23:25:13.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4775, "blockHeight": 4775, "took": "7.676546ms"} -2023-12-15T23:25:13.654Z INFO sending PrepareRequest {"height": 4776, "view": 0} -2023-12-15T23:25:13.654Z INFO sending Commit {"height": 4776, "view": 0} -2023-12-15T23:25:13.654Z INFO approving block {"height": 4776, "hash": "ed9428858b507cb943fb84215f39f8c357b50a3f3083ae6fc947857ae71607c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5acae251508a2f91012461c1d3613965e53aa933db91f3e3919fa63918b6406a"} -2023-12-15T23:25:13.656Z INFO initializing dbft {"height": 4777, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:13.656Z debug frostfs-node/morph.go:229 new block {"index": 4776} -2023-12-15T23:25:14.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4776, "blockHeight": 4776, "took": "8.901944ms"} -2023-12-15T23:25:14.656Z INFO sending PrepareRequest {"height": 4777, "view": 0} -2023-12-15T23:25:14.656Z INFO sending Commit {"height": 4777, "view": 0} -2023-12-15T23:25:14.657Z INFO approving block {"height": 4777, "hash": "f09e500e890366cfb41215bb33f5a0b3cb5d8df84433bafd9b594ceb35edf063", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed9428858b507cb943fb84215f39f8c357b50a3f3083ae6fc947857ae71607c7"} -2023-12-15T23:25:14.658Z INFO initializing dbft {"height": 4778, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:14.659Z debug frostfs-node/morph.go:229 new block {"index": 4777} -2023-12-15T23:25:15.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4777, "blockHeight": 4777, "took": "10.844287ms"} -2023-12-15T23:25:15.659Z INFO sending PrepareRequest {"height": 4778, "view": 0} -2023-12-15T23:25:15.660Z INFO sending Commit {"height": 4778, "view": 0} -2023-12-15T23:25:15.660Z INFO approving block {"height": 4778, "hash": "98fcaa2b1e3416c1fdd0b0279510839deb35c7c3c171a644680b602684b842c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f09e500e890366cfb41215bb33f5a0b3cb5d8df84433bafd9b594ceb35edf063"} -2023-12-15T23:25:15.661Z INFO initializing dbft {"height": 4779, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:15.662Z debug frostfs-node/morph.go:229 new block {"index": 4778} -2023-12-15T23:25:16.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4778, "blockHeight": 4778, "took": "7.79925ms"} -2023-12-15T23:25:16.662Z INFO sending PrepareRequest {"height": 4779, "view": 0} -2023-12-15T23:25:16.662Z INFO sending Commit {"height": 4779, "view": 0} -2023-12-15T23:25:16.663Z INFO approving block {"height": 4779, "hash": "c9b14d073b2580ee36c001987d7308d64fa9c574b5cf0f0cb71e29a219aea544", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98fcaa2b1e3416c1fdd0b0279510839deb35c7c3c171a644680b602684b842c4"} -2023-12-15T23:25:16.664Z INFO initializing dbft {"height": 4780, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:16.665Z debug frostfs-node/morph.go:229 new block {"index": 4779} -2023-12-15T23:25:17.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4779, "blockHeight": 4779, "took": "6.920028ms"} -2023-12-15T23:25:17.664Z INFO sending PrepareRequest {"height": 4780, "view": 0} -2023-12-15T23:25:17.664Z INFO sending Commit {"height": 4780, "view": 0} -2023-12-15T23:25:17.664Z INFO approving block {"height": 4780, "hash": "5ce2e735561f76f7e8e556cd4c7bb3ade307963b0e359076c2e484bb8c2a0863", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9b14d073b2580ee36c001987d7308d64fa9c574b5cf0f0cb71e29a219aea544"} -2023-12-15T23:25:17.666Z INFO initializing dbft {"height": 4781, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:17.667Z debug frostfs-node/morph.go:229 new block {"index": 4780} -2023-12-15T23:25:18.443Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4780, "blockHeight": 4780, "took": "5.769402ms"} -2023-12-15T23:25:18.665Z INFO sending PrepareRequest {"height": 4781, "view": 0} -2023-12-15T23:25:18.666Z INFO sending Commit {"height": 4781, "view": 0} -2023-12-15T23:25:18.666Z INFO approving block {"height": 4781, "hash": "9c7fa6670cb780bad16b859f0793e3bfd2f1413834081c555323f6fec924b5ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ce2e735561f76f7e8e556cd4c7bb3ade307963b0e359076c2e484bb8c2a0863"} -2023-12-15T23:25:18.667Z INFO initializing dbft {"height": 4782, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:18.668Z debug frostfs-node/morph.go:229 new block {"index": 4781} -2023-12-15T23:25:19.445Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4781, "blockHeight": 4781, "took": "6.894854ms"} -2023-12-15T23:25:19.667Z INFO sending PrepareRequest {"height": 4782, "view": 0} -2023-12-15T23:25:19.667Z INFO sending Commit {"height": 4782, "view": 0} -2023-12-15T23:25:19.667Z INFO approving block {"height": 4782, "hash": "a485b1c00259365c70f0ee5eace0bcb6d524da7bd1d35091a977c83c667bbccc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c7fa6670cb780bad16b859f0793e3bfd2f1413834081c555323f6fec924b5ab"} -2023-12-15T23:25:19.669Z INFO initializing dbft {"height": 4783, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:19.670Z debug frostfs-node/morph.go:229 new block {"index": 4782} -2023-12-15T23:25:20.445Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4782, "blockHeight": 4782, "took": "6.211388ms"} -2023-12-15T23:25:20.669Z INFO sending PrepareRequest {"height": 4783, "view": 0} -2023-12-15T23:25:20.669Z INFO sending Commit {"height": 4783, "view": 0} -2023-12-15T23:25:20.669Z INFO approving block {"height": 4783, "hash": "b6abf093ed6df1cf7fda4b5854109025b62431ac85f4734b2ca3614e09bf8401", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a485b1c00259365c70f0ee5eace0bcb6d524da7bd1d35091a977c83c667bbccc"} -2023-12-15T23:25:20.670Z INFO initializing dbft {"height": 4784, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:20.671Z debug frostfs-node/morph.go:229 new block {"index": 4783} -2023-12-15T23:25:21.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4783, "blockHeight": 4783, "took": "10.25531ms"} -2023-12-15T23:25:21.670Z INFO sending PrepareRequest {"height": 4784, "view": 0} -2023-12-15T23:25:21.670Z INFO sending Commit {"height": 4784, "view": 0} -2023-12-15T23:25:21.670Z INFO approving block {"height": 4784, "hash": "4fd671c5b72352f6c28768ec1fe73e37a6b4dd2627d5352fd6f55b3a08d9c338", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6abf093ed6df1cf7fda4b5854109025b62431ac85f4734b2ca3614e09bf8401"} -2023-12-15T23:25:21.671Z INFO initializing dbft {"height": 4785, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:21.672Z debug frostfs-node/morph.go:229 new block {"index": 4784} -2023-12-15T23:25:22.445Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4784, "blockHeight": 4784, "took": "4.500101ms"} -2023-12-15T23:25:22.671Z INFO sending PrepareRequest {"height": 4785, "view": 0} -2023-12-15T23:25:22.671Z INFO sending Commit {"height": 4785, "view": 0} -2023-12-15T23:25:22.672Z INFO approving block {"height": 4785, "hash": "120808281bffe9fe9b9a8d8e22cad3598784d0e72766e64bcaa34f207e1400ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fd671c5b72352f6c28768ec1fe73e37a6b4dd2627d5352fd6f55b3a08d9c338"} -2023-12-15T23:25:22.673Z INFO initializing dbft {"height": 4786, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:22.674Z debug frostfs-node/morph.go:229 new block {"index": 4785} -2023-12-15T23:25:23.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4785, "blockHeight": 4785, "took": "4.893445ms"} -2023-12-15T23:25:23.673Z INFO sending PrepareRequest {"height": 4786, "view": 0} -2023-12-15T23:25:23.673Z INFO sending Commit {"height": 4786, "view": 0} -2023-12-15T23:25:23.673Z INFO approving block {"height": 4786, "hash": "5301da2f15f4472f69ea4e179c024954d9a28039732e69427ac289dd4fe4ef62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "120808281bffe9fe9b9a8d8e22cad3598784d0e72766e64bcaa34f207e1400ae"} -2023-12-15T23:25:23.674Z INFO initializing dbft {"height": 4787, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:23.675Z debug frostfs-node/morph.go:229 new block {"index": 4786} -2023-12-15T23:25:24.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4786, "blockHeight": 4786, "took": "8.503331ms"} -2023-12-15T23:25:24.675Z INFO sending PrepareRequest {"height": 4787, "view": 0} -2023-12-15T23:25:24.675Z INFO sending Commit {"height": 4787, "view": 0} -2023-12-15T23:25:24.676Z INFO approving block {"height": 4787, "hash": "14c30f9e51e0f15a8dcf4f575c08187f45fef3e6fe7b0d9867c6f0c854462759", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5301da2f15f4472f69ea4e179c024954d9a28039732e69427ac289dd4fe4ef62"} -2023-12-15T23:25:24.677Z INFO initializing dbft {"height": 4788, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:24.678Z debug frostfs-node/morph.go:229 new block {"index": 4787} -2023-12-15T23:25:25.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4787, "blockHeight": 4787, "took": "6.054417ms"} -2023-12-15T23:25:25.677Z INFO sending PrepareRequest {"height": 4788, "view": 0} -2023-12-15T23:25:25.677Z INFO sending Commit {"height": 4788, "view": 0} -2023-12-15T23:25:25.678Z INFO approving block {"height": 4788, "hash": "6c0555c56c14eff52ec44f79b2d908add364ac24b95f4c26d50d9643c5f7d7ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14c30f9e51e0f15a8dcf4f575c08187f45fef3e6fe7b0d9867c6f0c854462759"} -2023-12-15T23:25:25.679Z INFO initializing dbft {"height": 4789, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:25.680Z debug frostfs-node/morph.go:229 new block {"index": 4788} -2023-12-15T23:25:26.451Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4788, "blockHeight": 4788, "took": "7.057374ms"} -2023-12-15T23:25:26.679Z INFO sending PrepareRequest {"height": 4789, "view": 0} -2023-12-15T23:25:26.679Z INFO sending Commit {"height": 4789, "view": 0} -2023-12-15T23:25:26.680Z INFO approving block {"height": 4789, "hash": "3237e3ffa015c6141b4ab097bfb96464687bab4dc42cd803c00b368ec83ada36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c0555c56c14eff52ec44f79b2d908add364ac24b95f4c26d50d9643c5f7d7ae"} -2023-12-15T23:25:26.681Z INFO initializing dbft {"height": 4790, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:26.682Z debug frostfs-node/morph.go:229 new block {"index": 4789} -2023-12-15T23:25:27.453Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4789, "blockHeight": 4789, "took": "8.724445ms"} -2023-12-15T23:25:27.681Z INFO sending PrepareRequest {"height": 4790, "view": 0} -2023-12-15T23:25:27.681Z INFO sending Commit {"height": 4790, "view": 0} -2023-12-15T23:25:27.681Z INFO approving block {"height": 4790, "hash": "cce7b644982e1bd7c44fc8565b1a14b1fcb7ece24f9c826df904094b68b9f8f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3237e3ffa015c6141b4ab097bfb96464687bab4dc42cd803c00b368ec83ada36"} -2023-12-15T23:25:27.683Z INFO initializing dbft {"height": 4791, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:27.684Z debug frostfs-node/morph.go:229 new block {"index": 4790} -2023-12-15T23:25:28.453Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4790, "blockHeight": 4790, "took": "7.737998ms"} -2023-12-15T23:25:28.683Z INFO sending PrepareRequest {"height": 4791, "view": 0} -2023-12-15T23:25:28.683Z INFO sending Commit {"height": 4791, "view": 0} -2023-12-15T23:25:28.683Z INFO approving block {"height": 4791, "hash": "30dddf316a0f9bbd9b603a16731a46f3e8847eaa191d5a778b2091051528032c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cce7b644982e1bd7c44fc8565b1a14b1fcb7ece24f9c826df904094b68b9f8f1"} -2023-12-15T23:25:28.685Z INFO initializing dbft {"height": 4792, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:28.686Z debug frostfs-node/morph.go:229 new block {"index": 4791} -2023-12-15T23:25:29.453Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4791, "blockHeight": 4791, "took": "5.990186ms"} -2023-12-15T23:25:29.684Z INFO sending PrepareRequest {"height": 4792, "view": 0} -2023-12-15T23:25:29.684Z INFO sending Commit {"height": 4792, "view": 0} -2023-12-15T23:25:29.685Z INFO approving block {"height": 4792, "hash": "a4f3945445b995b5ea6e2ebb0ee28507d7e15d55f16a94f8cb74d371a07fa8e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30dddf316a0f9bbd9b603a16731a46f3e8847eaa191d5a778b2091051528032c"} -2023-12-15T23:25:29.686Z INFO initializing dbft {"height": 4793, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:29.687Z debug frostfs-node/morph.go:229 new block {"index": 4792} -2023-12-15T23:25:30.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4792, "blockHeight": 4792, "took": "8.358208ms"} -2023-12-15T23:25:30.686Z INFO sending PrepareRequest {"height": 4793, "view": 0} -2023-12-15T23:25:30.686Z INFO sending Commit {"height": 4793, "view": 0} -2023-12-15T23:25:30.686Z INFO approving block {"height": 4793, "hash": "857085537fa1e2427895e5928c5bf712c0ef9c8bba6efc06c3caf811a1341c8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4f3945445b995b5ea6e2ebb0ee28507d7e15d55f16a94f8cb74d371a07fa8e7"} -2023-12-15T23:25:30.689Z INFO initializing dbft {"height": 4794, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:30.690Z debug frostfs-node/morph.go:229 new block {"index": 4793} -2023-12-15T23:25:31.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4793, "blockHeight": 4793, "took": "7.890002ms"} -2023-12-15T23:25:31.688Z INFO sending PrepareRequest {"height": 4794, "view": 0} -2023-12-15T23:25:31.688Z INFO sending Commit {"height": 4794, "view": 0} -2023-12-15T23:25:31.688Z INFO approving block {"height": 4794, "hash": "2b974a405f95cc2ed9bfc77c33396f2a76d3b963b320dc456d250df4d0b09b45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "857085537fa1e2427895e5928c5bf712c0ef9c8bba6efc06c3caf811a1341c8c"} -2023-12-15T23:25:31.691Z INFO initializing dbft {"height": 4795, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:31.692Z debug frostfs-node/morph.go:229 new block {"index": 4794} -2023-12-15T23:25:32.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4794, "blockHeight": 4794, "took": "7.071438ms"} -2023-12-15T23:25:32.689Z INFO sending PrepareRequest {"height": 4795, "view": 0} -2023-12-15T23:25:32.690Z INFO sending Commit {"height": 4795, "view": 0} -2023-12-15T23:25:32.690Z INFO approving block {"height": 4795, "hash": "7bdf4d7f9a149251d2c96713ce60bde34a8c91b778ad47d499b38d185aa08732", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b974a405f95cc2ed9bfc77c33396f2a76d3b963b320dc456d250df4d0b09b45"} -2023-12-15T23:25:32.691Z INFO initializing dbft {"height": 4796, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:32.692Z debug frostfs-node/morph.go:229 new block {"index": 4795} -2023-12-15T23:25:33.457Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4795, "blockHeight": 4795, "took": "6.89482ms"} -2023-12-15T23:25:33.691Z INFO sending PrepareRequest {"height": 4796, "view": 0} -2023-12-15T23:25:33.692Z INFO sending Commit {"height": 4796, "view": 0} -2023-12-15T23:25:33.692Z INFO approving block {"height": 4796, "hash": "4d33983e651a8f4f89bdb34db418d4ed77cbf81baf72fac5e2da90df41075631", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bdf4d7f9a149251d2c96713ce60bde34a8c91b778ad47d499b38d185aa08732"} -2023-12-15T23:25:33.694Z INFO initializing dbft {"height": 4797, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:33.695Z debug frostfs-node/morph.go:229 new block {"index": 4796} -2023-12-15T23:25:34.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4796, "blockHeight": 4796, "took": "6.812801ms"} -2023-12-15T23:25:34.693Z INFO sending PrepareRequest {"height": 4797, "view": 0} -2023-12-15T23:25:34.693Z INFO sending Commit {"height": 4797, "view": 0} -2023-12-15T23:25:34.694Z INFO approving block {"height": 4797, "hash": "dc7b1c34b320c89f1957a4c350a0a4179f8e79a4ef972662bb1d82cd7abae720", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d33983e651a8f4f89bdb34db418d4ed77cbf81baf72fac5e2da90df41075631"} -2023-12-15T23:25:34.695Z INFO initializing dbft {"height": 4798, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:34.696Z debug frostfs-node/morph.go:229 new block {"index": 4797} -2023-12-15T23:25:35.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4797, "blockHeight": 4797, "took": "9.231795ms"} -2023-12-15T23:25:35.695Z INFO sending PrepareRequest {"height": 4798, "view": 0} -2023-12-15T23:25:35.695Z INFO sending Commit {"height": 4798, "view": 0} -2023-12-15T23:25:35.695Z INFO approving block {"height": 4798, "hash": "d16a096e624fdc8c90d3fcaa878970040e80bc3e17131cff03215c5556306a44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc7b1c34b320c89f1957a4c350a0a4179f8e79a4ef972662bb1d82cd7abae720"} -2023-12-15T23:25:35.697Z INFO initializing dbft {"height": 4799, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:35.698Z debug frostfs-node/morph.go:229 new block {"index": 4798} -2023-12-15T23:25:36.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4798, "blockHeight": 4798, "took": "5.65297ms"} -2023-12-15T23:25:36.697Z INFO sending PrepareRequest {"height": 4799, "view": 0} -2023-12-15T23:25:36.697Z INFO sending Commit {"height": 4799, "view": 0} -2023-12-15T23:25:36.697Z INFO approving block {"height": 4799, "hash": "5b6c24f734677001310a34e628d1469b014778b86862c8972cc6a3f7cb1a2df3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d16a096e624fdc8c90d3fcaa878970040e80bc3e17131cff03215c5556306a44"} -2023-12-15T23:25:36.698Z INFO initializing dbft {"height": 4800, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:36.700Z debug frostfs-node/morph.go:229 new block {"index": 4799} -2023-12-15T23:25:37.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4799, "blockHeight": 4799, "took": "5.722546ms"} -2023-12-15T23:25:37.699Z INFO sending PrepareRequest {"height": 4800, "view": 0} -2023-12-15T23:25:37.699Z INFO sending Commit {"height": 4800, "view": 0} -2023-12-15T23:25:37.700Z INFO approving block {"height": 4800, "hash": "c827e6d558918b1cf79b3d9d69538f93b95e8a2c0391b50c2e539ccce1d0396f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b6c24f734677001310a34e628d1469b014778b86862c8972cc6a3f7cb1a2df3"} -2023-12-15T23:25:37.701Z INFO initializing dbft {"height": 4801, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:37.703Z debug frostfs-node/morph.go:229 new block {"index": 4800} -2023-12-15T23:25:38.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4800, "blockHeight": 4800, "took": "6.36448ms"} -2023-12-15T23:25:38.702Z INFO sending PrepareRequest {"height": 4801, "view": 0} -2023-12-15T23:25:38.702Z INFO sending Commit {"height": 4801, "view": 0} -2023-12-15T23:25:38.702Z INFO approving block {"height": 4801, "hash": "ce50f1bb10c6f219a3de6a867222790bfcd6187c53b0101041d432de7cecd78b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c827e6d558918b1cf79b3d9d69538f93b95e8a2c0391b50c2e539ccce1d0396f"} -2023-12-15T23:25:38.704Z INFO initializing dbft {"height": 4802, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:38.705Z debug frostfs-node/morph.go:229 new block {"index": 4801} -2023-12-15T23:25:39.465Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4801, "blockHeight": 4801, "took": "10.187097ms"} -2023-12-15T23:25:39.704Z INFO sending PrepareRequest {"height": 4802, "view": 0} -2023-12-15T23:25:39.704Z INFO sending Commit {"height": 4802, "view": 0} -2023-12-15T23:25:39.704Z INFO approving block {"height": 4802, "hash": "6f10b9705066a7f952a0ebfb1d7cdc94d37e719b6a2cfa3aebf66a45e1ce6ab7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce50f1bb10c6f219a3de6a867222790bfcd6187c53b0101041d432de7cecd78b"} -2023-12-15T23:25:39.706Z INFO initializing dbft {"height": 4803, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:39.707Z debug frostfs-node/morph.go:229 new block {"index": 4802} -2023-12-15T23:25:40.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4802, "blockHeight": 4802, "took": "6.965842ms"} -2023-12-15T23:25:40.705Z INFO sending PrepareRequest {"height": 4803, "view": 0} -2023-12-15T23:25:40.705Z INFO sending Commit {"height": 4803, "view": 0} -2023-12-15T23:25:40.706Z INFO approving block {"height": 4803, "hash": "41395a31710da0fb5b28895600a54268462f028d83a983ab6b019c05896ad8df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f10b9705066a7f952a0ebfb1d7cdc94d37e719b6a2cfa3aebf66a45e1ce6ab7"} -2023-12-15T23:25:40.707Z INFO initializing dbft {"height": 4804, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:40.709Z debug frostfs-node/morph.go:229 new block {"index": 4803} -2023-12-15T23:25:41.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4803, "blockHeight": 4803, "took": "7.320103ms"} -2023-12-15T23:25:41.707Z INFO sending PrepareRequest {"height": 4804, "view": 0} -2023-12-15T23:25:41.707Z INFO sending Commit {"height": 4804, "view": 0} -2023-12-15T23:25:41.707Z INFO approving block {"height": 4804, "hash": "7168e0369499060de07728cfc0a7da0dbdf2d183b417f889ddb065a14b743fed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41395a31710da0fb5b28895600a54268462f028d83a983ab6b019c05896ad8df"} -2023-12-15T23:25:41.708Z INFO initializing dbft {"height": 4805, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:41.710Z debug frostfs-node/morph.go:229 new block {"index": 4804} -2023-12-15T23:25:42.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4804, "blockHeight": 4804, "took": "5.219289ms"} -2023-12-15T23:25:42.709Z INFO sending PrepareRequest {"height": 4805, "view": 0} -2023-12-15T23:25:42.709Z INFO sending Commit {"height": 4805, "view": 0} -2023-12-15T23:25:42.709Z INFO approving block {"height": 4805, "hash": "ad87d0b7233dd3cc232613b19177b6661fd24e8f77487ac854f72d25640988ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7168e0369499060de07728cfc0a7da0dbdf2d183b417f889ddb065a14b743fed"} -2023-12-15T23:25:42.711Z INFO initializing dbft {"height": 4806, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:42.712Z debug frostfs-node/morph.go:229 new block {"index": 4805} -2023-12-15T23:25:43.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4805, "blockHeight": 4805, "took": "5.061395ms"} -2023-12-15T23:25:43.710Z INFO sending PrepareRequest {"height": 4806, "view": 0} -2023-12-15T23:25:43.711Z INFO sending Commit {"height": 4806, "view": 0} -2023-12-15T23:25:43.711Z INFO approving block {"height": 4806, "hash": "1993dee5a51300f7a7ab108afb49c14f1b29a1d5158c06282a4fcbe8f1b98058", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad87d0b7233dd3cc232613b19177b6661fd24e8f77487ac854f72d25640988ac"} -2023-12-15T23:25:43.713Z INFO initializing dbft {"height": 4807, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:43.714Z debug frostfs-node/morph.go:229 new block {"index": 4806} -2023-12-15T23:25:44.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4806, "blockHeight": 4806, "took": "10.759146ms"} -2023-12-15T23:25:44.712Z INFO sending PrepareRequest {"height": 4807, "view": 0} -2023-12-15T23:25:44.712Z INFO sending Commit {"height": 4807, "view": 0} -2023-12-15T23:25:44.713Z INFO approving block {"height": 4807, "hash": "1640182d246c864cae7f3987a297599d1bb64b2d5fffda67b25df195b5bcdda5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1993dee5a51300f7a7ab108afb49c14f1b29a1d5158c06282a4fcbe8f1b98058"} -2023-12-15T23:25:44.714Z INFO initializing dbft {"height": 4808, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:44.715Z debug frostfs-node/morph.go:229 new block {"index": 4807} -2023-12-15T23:25:45.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4807, "blockHeight": 4807, "took": "10.574677ms"} -2023-12-15T23:25:45.714Z INFO sending PrepareRequest {"height": 4808, "view": 0} -2023-12-15T23:25:45.714Z INFO sending Commit {"height": 4808, "view": 0} -2023-12-15T23:25:45.714Z INFO approving block {"height": 4808, "hash": "10e07760b4e0a588150e8aff3410c60c44100f54be7dba683e6cbb703c76226c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1640182d246c864cae7f3987a297599d1bb64b2d5fffda67b25df195b5bcdda5"} -2023-12-15T23:25:45.716Z INFO initializing dbft {"height": 4809, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:45.717Z debug frostfs-node/morph.go:229 new block {"index": 4808} -2023-12-15T23:25:46.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4808, "blockHeight": 4808, "took": "9.414916ms"} -2023-12-15T23:25:46.715Z INFO sending PrepareRequest {"height": 4809, "view": 0} -2023-12-15T23:25:46.716Z INFO sending Commit {"height": 4809, "view": 0} -2023-12-15T23:25:46.716Z INFO approving block {"height": 4809, "hash": "a09ba7641906eef520891aa6315a9031cedc455a1f05d550195b76117082d347", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10e07760b4e0a588150e8aff3410c60c44100f54be7dba683e6cbb703c76226c"} -2023-12-15T23:25:46.718Z INFO initializing dbft {"height": 4810, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:46.719Z debug frostfs-node/morph.go:229 new block {"index": 4809} -2023-12-15T23:25:47.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4809, "blockHeight": 4809, "took": "6.875242ms"} -2023-12-15T23:25:47.717Z INFO sending PrepareRequest {"height": 4810, "view": 0} -2023-12-15T23:25:47.717Z INFO sending Commit {"height": 4810, "view": 0} -2023-12-15T23:25:47.718Z INFO approving block {"height": 4810, "hash": "ccbf1956869cab5522b07b6e41f0832c6c60ca59f2940d1fa3e04355727cea05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a09ba7641906eef520891aa6315a9031cedc455a1f05d550195b76117082d347"} -2023-12-15T23:25:47.720Z INFO initializing dbft {"height": 4811, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:47.721Z debug frostfs-node/morph.go:229 new block {"index": 4810} -2023-12-15T23:25:48.469Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4810, "blockHeight": 4810, "took": "6.131869ms"} -2023-12-15T23:25:48.718Z INFO sending PrepareRequest {"height": 4811, "view": 0} -2023-12-15T23:25:48.719Z INFO sending Commit {"height": 4811, "view": 0} -2023-12-15T23:25:48.719Z INFO approving block {"height": 4811, "hash": "fea078423cf2e6a709ffdb09c19de3a6e63db63c0d5cd737e8921f1ebc2dce28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ccbf1956869cab5522b07b6e41f0832c6c60ca59f2940d1fa3e04355727cea05"} -2023-12-15T23:25:48.721Z INFO initializing dbft {"height": 4812, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:48.721Z debug frostfs-node/morph.go:229 new block {"index": 4811} -2023-12-15T23:25:49.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4811, "blockHeight": 4811, "took": "5.556413ms"} -2023-12-15T23:25:49.720Z INFO sending PrepareRequest {"height": 4812, "view": 0} -2023-12-15T23:25:49.720Z INFO sending Commit {"height": 4812, "view": 0} -2023-12-15T23:25:49.721Z INFO approving block {"height": 4812, "hash": "8b20e1533c85ecef077cea06076ca4d7a72e880a63515ae2eba11f7e2361e4cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fea078423cf2e6a709ffdb09c19de3a6e63db63c0d5cd737e8921f1ebc2dce28"} -2023-12-15T23:25:49.722Z INFO initializing dbft {"height": 4813, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:49.723Z debug frostfs-node/morph.go:229 new block {"index": 4812} -2023-12-15T23:25:50.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4812, "blockHeight": 4812, "took": "7.497308ms"} -2023-12-15T23:25:50.722Z INFO sending PrepareRequest {"height": 4813, "view": 0} -2023-12-15T23:25:50.722Z INFO sending Commit {"height": 4813, "view": 0} -2023-12-15T23:25:50.723Z INFO approving block {"height": 4813, "hash": "0e15389d78614d1f4f9403daef9087d87730e8612bf03d3f3db9016eb19be6de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b20e1533c85ecef077cea06076ca4d7a72e880a63515ae2eba11f7e2361e4cf"} -2023-12-15T23:25:50.724Z INFO initializing dbft {"height": 4814, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:50.725Z debug frostfs-node/morph.go:229 new block {"index": 4813} -2023-12-15T23:25:51.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4813, "blockHeight": 4813, "took": "7.550233ms"} -2023-12-15T23:25:51.723Z INFO sending PrepareRequest {"height": 4814, "view": 0} -2023-12-15T23:25:51.724Z INFO sending Commit {"height": 4814, "view": 0} -2023-12-15T23:25:51.724Z INFO approving block {"height": 4814, "hash": "b5cd39f1f6fd42d4b5da9d396f047fe2391de93b98fbb6382cec28187397f12b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e15389d78614d1f4f9403daef9087d87730e8612bf03d3f3db9016eb19be6de"} -2023-12-15T23:25:51.725Z INFO initializing dbft {"height": 4815, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:51.726Z debug frostfs-node/morph.go:229 new block {"index": 4814} -2023-12-15T23:25:52.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4814, "blockHeight": 4814, "took": "8.112622ms"} -2023-12-15T23:25:52.725Z INFO sending PrepareRequest {"height": 4815, "view": 0} -2023-12-15T23:25:52.725Z INFO sending Commit {"height": 4815, "view": 0} -2023-12-15T23:25:52.725Z INFO approving block {"height": 4815, "hash": "834c1e8fb7df6aa543ccfa968a434817cc4c2d9ad60986d94bcf32d3276f30a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5cd39f1f6fd42d4b5da9d396f047fe2391de93b98fbb6382cec28187397f12b"} -2023-12-15T23:25:52.727Z INFO initializing dbft {"height": 4816, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:52.728Z debug frostfs-node/morph.go:229 new block {"index": 4815} -2023-12-15T23:25:53.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4815, "blockHeight": 4815, "took": "7.254244ms"} -2023-12-15T23:25:53.726Z INFO sending PrepareRequest {"height": 4816, "view": 0} -2023-12-15T23:25:53.726Z INFO sending Commit {"height": 4816, "view": 0} -2023-12-15T23:25:53.727Z INFO approving block {"height": 4816, "hash": "4cb5721f39769d18962af9149e3f92ddb193ffc18a950d966eeb7a2318e45e54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "834c1e8fb7df6aa543ccfa968a434817cc4c2d9ad60986d94bcf32d3276f30a2"} -2023-12-15T23:25:53.728Z INFO initializing dbft {"height": 4817, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:53.730Z debug frostfs-node/morph.go:229 new block {"index": 4816} -2023-12-15T23:25:54.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4816, "blockHeight": 4816, "took": "6.48586ms"} -2023-12-15T23:25:54.728Z INFO sending PrepareRequest {"height": 4817, "view": 0} -2023-12-15T23:25:54.728Z INFO sending Commit {"height": 4817, "view": 0} -2023-12-15T23:25:54.729Z INFO approving block {"height": 4817, "hash": "ed42af525d0422627a393a59dc6985451439cb266458816492ba065b22b09403", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cb5721f39769d18962af9149e3f92ddb193ffc18a950d966eeb7a2318e45e54"} -2023-12-15T23:25:54.731Z INFO initializing dbft {"height": 4818, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:54.731Z debug frostfs-node/morph.go:229 new block {"index": 4817} -2023-12-15T23:25:54.735Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:25:54.739Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:25:54.739Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:25:55.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4817, "blockHeight": 4817, "took": "7.135339ms"} -2023-12-15T23:25:55.731Z INFO sending PrepareRequest {"height": 4818, "view": 0} -2023-12-15T23:25:55.731Z INFO sending Commit {"height": 4818, "view": 0} -2023-12-15T23:25:55.731Z INFO approving block {"height": 4818, "hash": "bfe9b5fda8bb7e5ed31890a95cb8ac04302003a00f739e98078c050a205e1dd9", "tx_count": 2, "merkle": "9b7315b53f6a5d968a318f52c0249dd8a6181a8b180c85439370e58fc40d00bc", "prev": "ed42af525d0422627a393a59dc6985451439cb266458816492ba065b22b09403"} -2023-12-15T23:25:55.733Z INFO runtime log {"tx": "d500ed5c5e12a215db38d5481038e4c7df43455bf2b35c1930040e7d0e820047", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:25:55.733Z INFO runtime log {"tx": "d500ed5c5e12a215db38d5481038e4c7df43455bf2b35c1930040e7d0e820047", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:25:55.735Z INFO initializing dbft {"height": 4819, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:55.736Z debug frostfs-node/morph.go:229 new block {"index": 4818} -2023-12-15T23:25:56.478Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4818, "blockHeight": 4818, "took": "10.908521ms"} -2023-12-15T23:25:56.733Z INFO sending PrepareRequest {"height": 4819, "view": 0} -2023-12-15T23:25:56.733Z INFO sending Commit {"height": 4819, "view": 0} -2023-12-15T23:25:56.734Z INFO approving block {"height": 4819, "hash": "ebccebbdbc5396e1150d4b0a227ff0de7f18bdc2f5174d3ade04e823fb1b8073", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfe9b5fda8bb7e5ed31890a95cb8ac04302003a00f739e98078c050a205e1dd9"} -2023-12-15T23:25:56.735Z INFO initializing dbft {"height": 4820, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:56.736Z debug frostfs-node/morph.go:229 new block {"index": 4819} -2023-12-15T23:25:56.740Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:25:56.742Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 20, "iteration": 3, "error": "no data for 2 iteration in 20 epoch for consumers's trusts"} -2023-12-15T23:25:56.743Z INFO runtime log {"tx": "5a8c9caee0c719361d5c352fe9bb057ea1e01c6c3cc1f55567ac42315e45ebc5", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:25:57.475Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4819, "blockHeight": 4819, "took": "6.81764ms"} -2023-12-15T23:25:57.735Z INFO sending PrepareRequest {"height": 4820, "view": 0} -2023-12-15T23:25:57.735Z INFO sending Commit {"height": 4820, "view": 0} -2023-12-15T23:25:57.736Z INFO approving block {"height": 4820, "hash": "64e96711fd8f3e6c052e50ff7352c214dffc6975cbea30968613ed35597e2b36", "tx_count": 1, "merkle": "f665a40bf87308fb1461c48aee6e8504103ceecef122737e8fbba702dd544613", "prev": "ebccebbdbc5396e1150d4b0a227ff0de7f18bdc2f5174d3ade04e823fb1b8073"} -2023-12-15T23:25:57.737Z INFO runtime log {"tx": "134654dd02a7bb8f7e7322f1ceee3c1004856eee8ac46114fb0873f80ba465f6", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:25:57.740Z INFO initializing dbft {"height": 4821, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:57.741Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 22} -2023-12-15T23:25:57.741Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:25:57.741Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:25:57.741Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 22} -2023-12-15T23:25:57.741Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 22} -2023-12-15T23:25:57.741Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 22} -2023-12-15T23:25:57.741Z debug controller/calls.go:95 starting to report local trust values {"epoch": 21} -2023-12-15T23:25:57.742Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 21} -2023-12-15T23:25:57.742Z debug frostfs-node/morph.go:229 new block {"index": 4820} -2023-12-15T23:25:57.742Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T23:25:57.742Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 22} -2023-12-15T23:25:57.746Z debug controller/calls.go:146 reporting successfully finished {"epoch": 21} -2023-12-15T23:25:57.747Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 21} -2023-12-15T23:25:57.748Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:25:57.750Z INFO runtime log {"tx": "f36d95ba122216342ff68c3c742901626523b44761df3cd07423e8f4bf3b80e4", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:25:57.753Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 4823, "tx_hash": "1acde9916a382a0794072a0f1a452253611b1333e72261f1f825d1f0cef5b1c3"} -2023-12-15T23:25:57.769Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:25:57.769Z info audit/handlers.go:13 new round of audit {"epoch": 22} -2023-12-15T23:25:57.769Z info settlement/calls.go:26 new audit settlement event {"epoch": 22} -2023-12-15T23:25:57.770Z info settlement/handlers.go:14 process audit settlements {"epoch": 22} -2023-12-15T23:25:57.770Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 22} -2023-12-15T23:25:57.771Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 4900, "fallback_valid_for": 40, "tx_hash": "f1ddfcbc234a61838e3e4532ebf887ba62605f7855917e19721359ac65caa12d"} -2023-12-15T23:25:57.773Z info settlement/handlers.go:18 audit processing finished {"epoch": 22} -2023-12-15T23:25:57.775Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T23:25:57.775Z info audit/process.go:39 select containers for audit {"epoch": 22, "amount": 0} -2023-12-15T23:25:57.783Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 4823, "tx_hash": "b6a2bf40be761731f7bf13c5ca0e745e038f8fef3486cf2bbcff6f21953c2ebe"} -2023-12-15T23:25:58.480Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 4820, "blockHeight": 4820, "took": "10.685828ms"} -2023-12-15T23:25:58.737Z INFO sending PrepareRequest {"height": 4821, "view": 0} -2023-12-15T23:25:58.737Z INFO sending Commit {"height": 4821, "view": 0} -2023-12-15T23:25:58.737Z INFO approving block {"height": 4821, "hash": "29eb5fe0af2b71f527d1ab6ad02d06daabbe81a6b362a135c3c0a409447ec231", "tx_count": 3, "merkle": "29a87d3891b325aec96ffda5d939ce5ddd0e4b6c9c38f3ef20e19be7158ebe05", "prev": "64e96711fd8f3e6c052e50ff7352c214dffc6975cbea30968613ed35597e2b36"} -2023-12-15T23:25:58.738Z INFO runtime log {"tx": "d41e7da26f9eefab4b6d20f9e84cb7dc2035a6f6213defd1ec3690b3c85e6efa", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:25:58.740Z INFO initializing dbft {"height": 4822, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:58.741Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 21} -2023-12-15T23:25:58.741Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 21} -2023-12-15T23:25:58.741Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 21} -2023-12-15T23:25:58.743Z debug frostfs-node/morph.go:229 new block {"index": 4821} -2023-12-15T23:25:59.482Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 4821, "blockHeight": 4821, "took": "11.764435ms"} -2023-12-15T23:25:59.739Z INFO sending PrepareRequest {"height": 4822, "view": 0} -2023-12-15T23:25:59.739Z INFO sending Commit {"height": 4822, "view": 0} -2023-12-15T23:25:59.740Z INFO approving block {"height": 4822, "hash": "796fb1a5b9f447692204af1542e3221efd888cc9fbd4bea8126571bac3bf0572", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29eb5fe0af2b71f527d1ab6ad02d06daabbe81a6b362a135c3c0a409447ec231"} -2023-12-15T23:25:59.742Z INFO initializing dbft {"height": 4823, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:25:59.742Z debug frostfs-node/morph.go:229 new block {"index": 4822} -2023-12-15T23:26:00.479Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4822, "blockHeight": 4822, "took": "7.047907ms"} -2023-12-15T23:26:00.741Z INFO sending PrepareRequest {"height": 4823, "view": 0} -2023-12-15T23:26:00.741Z INFO sending Commit {"height": 4823, "view": 0} -2023-12-15T23:26:00.741Z INFO approving block {"height": 4823, "hash": "2df092c0a8b4e0bebc0f78a290d664008926b3a82797d03e65f3eb021466fb6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "796fb1a5b9f447692204af1542e3221efd888cc9fbd4bea8126571bac3bf0572"} -2023-12-15T23:26:00.743Z INFO initializing dbft {"height": 4824, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:00.745Z debug frostfs-node/morph.go:229 new block {"index": 4823} -2023-12-15T23:26:01.479Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4823, "blockHeight": 4823, "took": "6.181982ms"} -2023-12-15T23:26:01.743Z INFO sending PrepareRequest {"height": 4824, "view": 0} -2023-12-15T23:26:01.743Z INFO sending Commit {"height": 4824, "view": 0} -2023-12-15T23:26:01.744Z INFO approving block {"height": 4824, "hash": "8b544c63d988cf99fd199be09b41532f5186d060784a3b331a136426350e30b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2df092c0a8b4e0bebc0f78a290d664008926b3a82797d03e65f3eb021466fb6f"} -2023-12-15T23:26:01.746Z INFO initializing dbft {"height": 4825, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:01.747Z debug frostfs-node/morph.go:229 new block {"index": 4824} -2023-12-15T23:26:02.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4824, "blockHeight": 4824, "took": "7.17972ms"} -2023-12-15T23:26:02.745Z INFO sending PrepareRequest {"height": 4825, "view": 0} -2023-12-15T23:26:02.746Z INFO sending Commit {"height": 4825, "view": 0} -2023-12-15T23:26:02.746Z INFO approving block {"height": 4825, "hash": "1fc64cc85e7cc2b7c9e9a53624a929a3af9f99756118268f7e26fec9e7fbeb58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b544c63d988cf99fd199be09b41532f5186d060784a3b331a136426350e30b0"} -2023-12-15T23:26:02.748Z INFO initializing dbft {"height": 4826, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:02.749Z debug frostfs-node/morph.go:229 new block {"index": 4825} -2023-12-15T23:26:03.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4825, "blockHeight": 4825, "took": "6.55034ms"} -2023-12-15T23:26:03.747Z INFO sending PrepareRequest {"height": 4826, "view": 0} -2023-12-15T23:26:03.748Z INFO sending Commit {"height": 4826, "view": 0} -2023-12-15T23:26:03.748Z INFO approving block {"height": 4826, "hash": "2d5bec4a6e2c920110f2b6d054c0d2141620ff6435d0f7ab0cbfdc80d2697972", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1fc64cc85e7cc2b7c9e9a53624a929a3af9f99756118268f7e26fec9e7fbeb58"} -2023-12-15T23:26:03.750Z INFO initializing dbft {"height": 4827, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:03.751Z debug frostfs-node/morph.go:229 new block {"index": 4826} -2023-12-15T23:26:04.483Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4826, "blockHeight": 4826, "took": "6.752218ms"} -2023-12-15T23:26:04.749Z INFO sending PrepareRequest {"height": 4827, "view": 0} -2023-12-15T23:26:04.750Z INFO sending Commit {"height": 4827, "view": 0} -2023-12-15T23:26:04.750Z INFO approving block {"height": 4827, "hash": "49c4d22c434351b89fffa02f60dc95570367046cb87138c6696ed4955a914cef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d5bec4a6e2c920110f2b6d054c0d2141620ff6435d0f7ab0cbfdc80d2697972"} -2023-12-15T23:26:04.752Z INFO initializing dbft {"height": 4828, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:04.753Z debug frostfs-node/morph.go:229 new block {"index": 4827} -2023-12-15T23:26:05.483Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4827, "blockHeight": 4827, "took": "6.48629ms"} -2023-12-15T23:26:05.751Z INFO sending PrepareRequest {"height": 4828, "view": 0} -2023-12-15T23:26:05.751Z INFO sending Commit {"height": 4828, "view": 0} -2023-12-15T23:26:05.752Z INFO approving block {"height": 4828, "hash": "73dbfdc184c7ba4e9f7abfb81bb97c8b7563050e2573fb91b04d5042da496f41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49c4d22c434351b89fffa02f60dc95570367046cb87138c6696ed4955a914cef"} -2023-12-15T23:26:05.754Z INFO initializing dbft {"height": 4829, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:05.755Z debug frostfs-node/morph.go:229 new block {"index": 4828} -2023-12-15T23:26:06.485Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4828, "blockHeight": 4828, "took": "6.928644ms"} -2023-12-15T23:26:06.754Z INFO sending PrepareRequest {"height": 4829, "view": 0} -2023-12-15T23:26:06.755Z INFO sending Commit {"height": 4829, "view": 0} -2023-12-15T23:26:06.755Z INFO approving block {"height": 4829, "hash": "c6fbfc7d43389a59b60a2eb209d9f0cd4fd3044c88022ce41af4e856578fb36a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73dbfdc184c7ba4e9f7abfb81bb97c8b7563050e2573fb91b04d5042da496f41"} -2023-12-15T23:26:06.757Z INFO initializing dbft {"height": 4830, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:06.758Z debug frostfs-node/morph.go:229 new block {"index": 4829} -2023-12-15T23:26:07.484Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4829, "blockHeight": 4829, "took": "5.491181ms"} -2023-12-15T23:26:07.756Z INFO sending PrepareRequest {"height": 4830, "view": 0} -2023-12-15T23:26:07.756Z INFO sending Commit {"height": 4830, "view": 0} -2023-12-15T23:26:07.757Z INFO approving block {"height": 4830, "hash": "a4c0e8cd0b71bc29ca94b75454f2baae5b0ef8551cf8ca8695fec562b4952fd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6fbfc7d43389a59b60a2eb209d9f0cd4fd3044c88022ce41af4e856578fb36a"} -2023-12-15T23:26:07.758Z INFO initializing dbft {"height": 4831, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:07.759Z debug frostfs-node/morph.go:229 new block {"index": 4830} -2023-12-15T23:26:08.486Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4830, "blockHeight": 4830, "took": "6.439098ms"} -2023-12-15T23:26:08.757Z INFO sending PrepareRequest {"height": 4831, "view": 0} -2023-12-15T23:26:08.758Z INFO sending Commit {"height": 4831, "view": 0} -2023-12-15T23:26:08.758Z INFO approving block {"height": 4831, "hash": "0ac7bdf37979f14585f7700e33bd8cabc7b1c14a31e7ab76a8b408e4084095eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4c0e8cd0b71bc29ca94b75454f2baae5b0ef8551cf8ca8695fec562b4952fd6"} -2023-12-15T23:26:08.760Z INFO initializing dbft {"height": 4832, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:08.761Z debug frostfs-node/morph.go:229 new block {"index": 4831} -2023-12-15T23:26:09.486Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4831, "blockHeight": 4831, "took": "5.876182ms"} -2023-12-15T23:26:09.759Z INFO sending PrepareRequest {"height": 4832, "view": 0} -2023-12-15T23:26:09.759Z INFO sending Commit {"height": 4832, "view": 0} -2023-12-15T23:26:09.760Z INFO approving block {"height": 4832, "hash": "54d077d1669b922bd618980eb8468c77476ffb83461661261c01e371980c34e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ac7bdf37979f14585f7700e33bd8cabc7b1c14a31e7ab76a8b408e4084095eb"} -2023-12-15T23:26:09.762Z INFO initializing dbft {"height": 4833, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:09.762Z debug frostfs-node/morph.go:229 new block {"index": 4832} -2023-12-15T23:26:10.487Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4832, "blockHeight": 4832, "took": "6.303474ms"} -2023-12-15T23:26:10.761Z INFO sending PrepareRequest {"height": 4833, "view": 0} -2023-12-15T23:26:10.761Z INFO sending Commit {"height": 4833, "view": 0} -2023-12-15T23:26:10.762Z INFO approving block {"height": 4833, "hash": "021909840a4d24f43a157f1cdb80d8bcf454e5a17f7b6cb0a664aa7fe334c31c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54d077d1669b922bd618980eb8468c77476ffb83461661261c01e371980c34e2"} -2023-12-15T23:26:10.765Z INFO initializing dbft {"height": 4834, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:10.766Z debug frostfs-node/morph.go:229 new block {"index": 4833} -2023-12-15T23:26:11.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4833, "blockHeight": 4833, "took": "6.452549ms"} -2023-12-15T23:26:11.763Z INFO sending PrepareRequest {"height": 4834, "view": 0} -2023-12-15T23:26:11.764Z INFO sending Commit {"height": 4834, "view": 0} -2023-12-15T23:26:11.764Z INFO approving block {"height": 4834, "hash": "b415e907e3f701a863c6ad3eb6c70ab0007163e491e093dd78f0b5573b0967a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "021909840a4d24f43a157f1cdb80d8bcf454e5a17f7b6cb0a664aa7fe334c31c"} -2023-12-15T23:26:11.766Z INFO initializing dbft {"height": 4835, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:11.767Z debug frostfs-node/morph.go:229 new block {"index": 4834} -2023-12-15T23:26:12.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4834, "blockHeight": 4834, "took": "6.13953ms"} -2023-12-15T23:26:12.765Z INFO sending PrepareRequest {"height": 4835, "view": 0} -2023-12-15T23:26:12.766Z INFO sending Commit {"height": 4835, "view": 0} -2023-12-15T23:26:12.766Z INFO approving block {"height": 4835, "hash": "e066352778603236cd59f97ad5d0c8b1a02ed795511d887367a427d857ad39de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b415e907e3f701a863c6ad3eb6c70ab0007163e491e093dd78f0b5573b0967a6"} -2023-12-15T23:26:12.768Z INFO initializing dbft {"height": 4836, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:12.769Z debug frostfs-node/morph.go:229 new block {"index": 4835} -2023-12-15T23:26:13.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4835, "blockHeight": 4835, "took": "6.82205ms"} -2023-12-15T23:26:13.767Z INFO sending PrepareRequest {"height": 4836, "view": 0} -2023-12-15T23:26:13.767Z INFO sending Commit {"height": 4836, "view": 0} -2023-12-15T23:26:13.767Z INFO approving block {"height": 4836, "hash": "75ccb31f219bb36795432019deb99640d2a1f26e14a25c08a43627c3598c589f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e066352778603236cd59f97ad5d0c8b1a02ed795511d887367a427d857ad39de"} -2023-12-15T23:26:13.768Z INFO initializing dbft {"height": 4837, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:13.769Z debug frostfs-node/morph.go:229 new block {"index": 4836} -2023-12-15T23:26:14.491Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4836, "blockHeight": 4836, "took": "7.439258ms"} -2023-12-15T23:26:14.769Z INFO sending PrepareRequest {"height": 4837, "view": 0} -2023-12-15T23:26:14.769Z INFO sending Commit {"height": 4837, "view": 0} -2023-12-15T23:26:14.769Z INFO approving block {"height": 4837, "hash": "3f3c9ec9d0bb9c05c09788e59f38b6c7648e85d22e9da9e8bf1d9df85b487783", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75ccb31f219bb36795432019deb99640d2a1f26e14a25c08a43627c3598c589f"} -2023-12-15T23:26:14.771Z INFO initializing dbft {"height": 4838, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:14.771Z debug frostfs-node/morph.go:229 new block {"index": 4837} -2023-12-15T23:26:15.491Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4837, "blockHeight": 4837, "took": "6.713446ms"} -2023-12-15T23:26:15.770Z INFO sending PrepareRequest {"height": 4838, "view": 0} -2023-12-15T23:26:15.771Z INFO sending Commit {"height": 4838, "view": 0} -2023-12-15T23:26:15.771Z INFO approving block {"height": 4838, "hash": "cba34b52c8b3fc0393c1a24a749c945558728c2d1e6fe52e4ed81e7b2e572405", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f3c9ec9d0bb9c05c09788e59f38b6c7648e85d22e9da9e8bf1d9df85b487783"} -2023-12-15T23:26:15.773Z INFO initializing dbft {"height": 4839, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:15.774Z debug frostfs-node/morph.go:229 new block {"index": 4838} -2023-12-15T23:26:16.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4838, "blockHeight": 4838, "took": "6.984834ms"} -2023-12-15T23:26:16.772Z INFO sending PrepareRequest {"height": 4839, "view": 0} -2023-12-15T23:26:16.772Z INFO sending Commit {"height": 4839, "view": 0} -2023-12-15T23:26:16.773Z INFO approving block {"height": 4839, "hash": "1d718d1d366d77bae6b98d06a70f5f12e07c08aa42450045b85b14e2f332ccc2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cba34b52c8b3fc0393c1a24a749c945558728c2d1e6fe52e4ed81e7b2e572405"} -2023-12-15T23:26:16.775Z INFO initializing dbft {"height": 4840, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:16.775Z debug frostfs-node/morph.go:229 new block {"index": 4839} -2023-12-15T23:26:17.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4839, "blockHeight": 4839, "took": "6.798289ms"} -2023-12-15T23:26:17.774Z INFO sending PrepareRequest {"height": 4840, "view": 0} -2023-12-15T23:26:17.774Z INFO sending Commit {"height": 4840, "view": 0} -2023-12-15T23:26:17.774Z INFO approving block {"height": 4840, "hash": "3dcf8fd2d51a861bf7394247cce545e5d55c2e6b68d58aed0df6f1a0a5c0ee3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d718d1d366d77bae6b98d06a70f5f12e07c08aa42450045b85b14e2f332ccc2"} -2023-12-15T23:26:17.776Z INFO initializing dbft {"height": 4841, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:17.777Z debug frostfs-node/morph.go:229 new block {"index": 4840} -2023-12-15T23:26:18.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4840, "blockHeight": 4840, "took": "5.872372ms"} -2023-12-15T23:26:18.775Z INFO sending PrepareRequest {"height": 4841, "view": 0} -2023-12-15T23:26:18.775Z INFO sending Commit {"height": 4841, "view": 0} -2023-12-15T23:26:18.776Z INFO approving block {"height": 4841, "hash": "bd15b4bb628215319034da5ec37d65540d0700fde225b868809db660b521121c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3dcf8fd2d51a861bf7394247cce545e5d55c2e6b68d58aed0df6f1a0a5c0ee3e"} -2023-12-15T23:26:18.778Z INFO initializing dbft {"height": 4842, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:18.779Z debug frostfs-node/morph.go:229 new block {"index": 4841} -2023-12-15T23:26:19.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4841, "blockHeight": 4841, "took": "6.809409ms"} -2023-12-15T23:26:19.777Z INFO sending PrepareRequest {"height": 4842, "view": 0} -2023-12-15T23:26:19.777Z INFO sending Commit {"height": 4842, "view": 0} -2023-12-15T23:26:19.778Z INFO approving block {"height": 4842, "hash": "2315bb4ba165bbad626c2411c9524d094d882a50c07e83c7ba4af4ff4cbbce89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd15b4bb628215319034da5ec37d65540d0700fde225b868809db660b521121c"} -2023-12-15T23:26:19.780Z INFO initializing dbft {"height": 4843, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:19.780Z debug frostfs-node/morph.go:229 new block {"index": 4842} -2023-12-15T23:26:20.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4842, "blockHeight": 4842, "took": "7.222579ms"} -2023-12-15T23:26:20.778Z INFO sending PrepareRequest {"height": 4843, "view": 0} -2023-12-15T23:26:20.779Z INFO sending Commit {"height": 4843, "view": 0} -2023-12-15T23:26:20.779Z INFO approving block {"height": 4843, "hash": "e7b6a85d4dbbf351b6506ef9e7405363418a66d65daf896200580d3c2c4c63dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2315bb4ba165bbad626c2411c9524d094d882a50c07e83c7ba4af4ff4cbbce89"} -2023-12-15T23:26:20.781Z INFO initializing dbft {"height": 4844, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:20.782Z debug frostfs-node/morph.go:229 new block {"index": 4843} -2023-12-15T23:26:21.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4843, "blockHeight": 4843, "took": "6.699587ms"} -2023-12-15T23:26:21.781Z INFO sending PrepareRequest {"height": 4844, "view": 0} -2023-12-15T23:26:21.781Z INFO sending Commit {"height": 4844, "view": 0} -2023-12-15T23:26:21.782Z INFO approving block {"height": 4844, "hash": "a1824524f27b8a7129ad3129c7c4179b580871e115895b132b870ed502ccd71a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7b6a85d4dbbf351b6506ef9e7405363418a66d65daf896200580d3c2c4c63dd"} -2023-12-15T23:26:21.783Z INFO initializing dbft {"height": 4845, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:21.784Z debug frostfs-node/morph.go:229 new block {"index": 4844} -2023-12-15T23:26:22.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4844, "blockHeight": 4844, "took": "7.067448ms"} -2023-12-15T23:26:22.783Z INFO sending PrepareRequest {"height": 4845, "view": 0} -2023-12-15T23:26:22.783Z INFO sending Commit {"height": 4845, "view": 0} -2023-12-15T23:26:22.784Z INFO approving block {"height": 4845, "hash": "3dc71c735cf8119d0917ba5f985cb13769e24ec0b01e851042e2ec0341337ffd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1824524f27b8a7129ad3129c7c4179b580871e115895b132b870ed502ccd71a"} -2023-12-15T23:26:22.786Z INFO initializing dbft {"height": 4846, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:22.787Z debug frostfs-node/morph.go:229 new block {"index": 4845} -2023-12-15T23:26:23.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4845, "blockHeight": 4845, "took": "6.616924ms"} -2023-12-15T23:26:23.785Z INFO sending PrepareRequest {"height": 4846, "view": 0} -2023-12-15T23:26:23.785Z INFO sending Commit {"height": 4846, "view": 0} -2023-12-15T23:26:23.786Z INFO approving block {"height": 4846, "hash": "ee67eb8f7f0a8851e6e4b7a9ef1e28ebcfdc0b29dd77386b2daf30880464247f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3dc71c735cf8119d0917ba5f985cb13769e24ec0b01e851042e2ec0341337ffd"} -2023-12-15T23:26:23.788Z INFO initializing dbft {"height": 4847, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:23.789Z debug frostfs-node/morph.go:229 new block {"index": 4846} -2023-12-15T23:26:24.500Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4846, "blockHeight": 4846, "took": "6.969935ms"} -2023-12-15T23:26:24.787Z INFO sending PrepareRequest {"height": 4847, "view": 0} -2023-12-15T23:26:24.787Z INFO sending Commit {"height": 4847, "view": 0} -2023-12-15T23:26:24.788Z INFO approving block {"height": 4847, "hash": "e7efc3c30ee9293d62fb9a9ba79151718f5153e9ea073ffa29ac143546453847", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee67eb8f7f0a8851e6e4b7a9ef1e28ebcfdc0b29dd77386b2daf30880464247f"} -2023-12-15T23:26:24.790Z INFO initializing dbft {"height": 4848, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:24.790Z debug frostfs-node/morph.go:229 new block {"index": 4847} -2023-12-15T23:26:25.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4847, "blockHeight": 4847, "took": "7.581884ms"} -2023-12-15T23:26:25.789Z INFO sending PrepareRequest {"height": 4848, "view": 0} -2023-12-15T23:26:25.789Z INFO sending Commit {"height": 4848, "view": 0} -2023-12-15T23:26:25.789Z INFO approving block {"height": 4848, "hash": "2fa5beb7683a27d232628be09a087eb8004387b9b861cf6ef1a4824b39312560", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7efc3c30ee9293d62fb9a9ba79151718f5153e9ea073ffa29ac143546453847"} -2023-12-15T23:26:25.791Z INFO initializing dbft {"height": 4849, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:25.792Z debug frostfs-node/morph.go:229 new block {"index": 4848} -2023-12-15T23:26:26.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4848, "blockHeight": 4848, "took": "6.744261ms"} -2023-12-15T23:26:26.791Z INFO sending PrepareRequest {"height": 4849, "view": 0} -2023-12-15T23:26:26.791Z INFO sending Commit {"height": 4849, "view": 0} -2023-12-15T23:26:26.792Z INFO approving block {"height": 4849, "hash": "648e5a6659ecc88123f050edd27cefb969a848e1e596766deec93ee704ef87bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fa5beb7683a27d232628be09a087eb8004387b9b861cf6ef1a4824b39312560"} -2023-12-15T23:26:26.793Z INFO initializing dbft {"height": 4850, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:26.794Z debug frostfs-node/morph.go:229 new block {"index": 4849} -2023-12-15T23:26:27.502Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4849, "blockHeight": 4849, "took": "6.5769ms"} -2023-12-15T23:26:27.793Z INFO sending PrepareRequest {"height": 4850, "view": 0} -2023-12-15T23:26:27.793Z INFO sending Commit {"height": 4850, "view": 0} -2023-12-15T23:26:27.794Z INFO approving block {"height": 4850, "hash": "c2ddbc069dd0b40f601e3cb7bf92975721ddb04c3c12f091d7defb018ae989a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "648e5a6659ecc88123f050edd27cefb969a848e1e596766deec93ee704ef87bc"} -2023-12-15T23:26:27.796Z INFO initializing dbft {"height": 4851, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:27.797Z debug frostfs-node/morph.go:229 new block {"index": 4850} -2023-12-15T23:26:28.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4850, "blockHeight": 4850, "took": "11.655265ms"} -2023-12-15T23:26:28.795Z INFO sending PrepareRequest {"height": 4851, "view": 0} -2023-12-15T23:26:28.796Z INFO sending Commit {"height": 4851, "view": 0} -2023-12-15T23:26:28.796Z INFO approving block {"height": 4851, "hash": "235b66f039a033c04b5920ac1d17fb70daf6673decb51761d7da8debfb8a1fa4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2ddbc069dd0b40f601e3cb7bf92975721ddb04c3c12f091d7defb018ae989a2"} -2023-12-15T23:26:28.799Z INFO initializing dbft {"height": 4852, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:28.799Z debug frostfs-node/morph.go:229 new block {"index": 4851} -2023-12-15T23:26:29.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4851, "blockHeight": 4851, "took": "5.685322ms"} -2023-12-15T23:26:29.797Z INFO sending PrepareRequest {"height": 4852, "view": 0} -2023-12-15T23:26:29.797Z INFO sending Commit {"height": 4852, "view": 0} -2023-12-15T23:26:29.798Z INFO approving block {"height": 4852, "hash": "0a2ace0fbeadcaaf67e0bfaf8b8f67d35cc1ee22d19f4aa8a4f19411400a1aa4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "235b66f039a033c04b5920ac1d17fb70daf6673decb51761d7da8debfb8a1fa4"} -2023-12-15T23:26:29.800Z INFO initializing dbft {"height": 4853, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:29.801Z debug frostfs-node/morph.go:229 new block {"index": 4852} -2023-12-15T23:26:30.510Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4852, "blockHeight": 4852, "took": "11.369493ms"} -2023-12-15T23:26:30.799Z INFO sending PrepareRequest {"height": 4853, "view": 0} -2023-12-15T23:26:30.799Z INFO sending Commit {"height": 4853, "view": 0} -2023-12-15T23:26:30.800Z INFO approving block {"height": 4853, "hash": "2037194b0bc8b07033f5afe6ff5036e221dc5f5f581ab707fa6d9dc425f057b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a2ace0fbeadcaaf67e0bfaf8b8f67d35cc1ee22d19f4aa8a4f19411400a1aa4"} -2023-12-15T23:26:30.802Z INFO initializing dbft {"height": 4854, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:30.802Z debug frostfs-node/morph.go:229 new block {"index": 4853} -2023-12-15T23:26:31.507Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4853, "blockHeight": 4853, "took": "7.382587ms"} -2023-12-15T23:26:31.801Z INFO sending PrepareRequest {"height": 4854, "view": 0} -2023-12-15T23:26:31.801Z INFO sending Commit {"height": 4854, "view": 0} -2023-12-15T23:26:31.801Z INFO approving block {"height": 4854, "hash": "96b88ba4fc66addefb33063f6b20b172e0ca322f1b05a2560958dd00d09a3d6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2037194b0bc8b07033f5afe6ff5036e221dc5f5f581ab707fa6d9dc425f057b2"} -2023-12-15T23:26:31.804Z INFO initializing dbft {"height": 4855, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:31.805Z debug frostfs-node/morph.go:229 new block {"index": 4854} -2023-12-15T23:26:32.509Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4854, "blockHeight": 4854, "took": "8.522415ms"} -2023-12-15T23:26:32.803Z INFO sending PrepareRequest {"height": 4855, "view": 0} -2023-12-15T23:26:32.803Z INFO sending Commit {"height": 4855, "view": 0} -2023-12-15T23:26:32.804Z INFO approving block {"height": 4855, "hash": "5776090a7f6333005705373cba0d586c88e803378f1f86143147b3e59bba6d60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96b88ba4fc66addefb33063f6b20b172e0ca322f1b05a2560958dd00d09a3d6e"} -2023-12-15T23:26:32.806Z INFO initializing dbft {"height": 4856, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:32.807Z debug frostfs-node/morph.go:229 new block {"index": 4855} -2023-12-15T23:26:33.507Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4855, "blockHeight": 4855, "took": "5.733377ms"} -2023-12-15T23:26:33.805Z INFO sending PrepareRequest {"height": 4856, "view": 0} -2023-12-15T23:26:33.805Z INFO sending Commit {"height": 4856, "view": 0} -2023-12-15T23:26:33.805Z INFO approving block {"height": 4856, "hash": "27f3054a5b39ddc923c7af857a300926150e3b9e5a36b599bc9c87e9ecb0e328", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5776090a7f6333005705373cba0d586c88e803378f1f86143147b3e59bba6d60"} -2023-12-15T23:26:33.807Z INFO initializing dbft {"height": 4857, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:33.808Z debug frostfs-node/morph.go:229 new block {"index": 4856} -2023-12-15T23:26:34.509Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4856, "blockHeight": 4856, "took": "7.186761ms"} -2023-12-15T23:26:34.807Z INFO sending PrepareRequest {"height": 4857, "view": 0} -2023-12-15T23:26:34.807Z INFO sending Commit {"height": 4857, "view": 0} -2023-12-15T23:26:34.808Z INFO approving block {"height": 4857, "hash": "7b320597002be5c3bbabe9254a6583c81ae22cb765075888d906fd9c8eaf20ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27f3054a5b39ddc923c7af857a300926150e3b9e5a36b599bc9c87e9ecb0e328"} -2023-12-15T23:26:34.810Z INFO initializing dbft {"height": 4858, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:34.810Z debug frostfs-node/morph.go:229 new block {"index": 4857} -2023-12-15T23:26:35.510Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4857, "blockHeight": 4857, "took": "6.610572ms"} -2023-12-15T23:26:35.809Z INFO sending PrepareRequest {"height": 4858, "view": 0} -2023-12-15T23:26:35.809Z INFO sending Commit {"height": 4858, "view": 0} -2023-12-15T23:26:35.810Z INFO approving block {"height": 4858, "hash": "2301c3c15b30114f27ea7bc57784920df835d01065290c3b795762127277a105", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b320597002be5c3bbabe9254a6583c81ae22cb765075888d906fd9c8eaf20ff"} -2023-12-15T23:26:35.812Z INFO initializing dbft {"height": 4859, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:35.813Z debug frostfs-node/morph.go:229 new block {"index": 4858} -2023-12-15T23:26:36.515Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4858, "blockHeight": 4858, "took": "10.155636ms"} -2023-12-15T23:26:36.811Z INFO sending PrepareRequest {"height": 4859, "view": 0} -2023-12-15T23:26:36.812Z INFO sending Commit {"height": 4859, "view": 0} -2023-12-15T23:26:36.812Z INFO approving block {"height": 4859, "hash": "d3cabc7a860eb9cb375bdcba9b63246fe28c1cc950ddacc0a33384573289fa63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2301c3c15b30114f27ea7bc57784920df835d01065290c3b795762127277a105"} -2023-12-15T23:26:36.814Z INFO initializing dbft {"height": 4860, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:36.815Z debug frostfs-node/morph.go:229 new block {"index": 4859} -2023-12-15T23:26:37.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4859, "blockHeight": 4859, "took": "10.30489ms"} -2023-12-15T23:26:37.814Z INFO sending PrepareRequest {"height": 4860, "view": 0} -2023-12-15T23:26:37.814Z INFO sending Commit {"height": 4860, "view": 0} -2023-12-15T23:26:37.815Z INFO approving block {"height": 4860, "hash": "d27c9bffdf025cc36646f740e9bbd3dff9eaff8b2042a2405fbf40b63d1740f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3cabc7a860eb9cb375bdcba9b63246fe28c1cc950ddacc0a33384573289fa63"} -2023-12-15T23:26:37.817Z INFO initializing dbft {"height": 4861, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:37.818Z debug frostfs-node/morph.go:229 new block {"index": 4860} -2023-12-15T23:26:38.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4860, "blockHeight": 4860, "took": "6.541332ms"} -2023-12-15T23:26:38.816Z INFO sending PrepareRequest {"height": 4861, "view": 0} -2023-12-15T23:26:38.816Z INFO sending Commit {"height": 4861, "view": 0} -2023-12-15T23:26:38.817Z INFO approving block {"height": 4861, "hash": "d0778dd83f49274741dc271f6f0e45719a1e755f83059a4e6a368b56cb2632cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d27c9bffdf025cc36646f740e9bbd3dff9eaff8b2042a2405fbf40b63d1740f2"} -2023-12-15T23:26:38.819Z INFO initializing dbft {"height": 4862, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:38.820Z debug frostfs-node/morph.go:229 new block {"index": 4861} -2023-12-15T23:26:39.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4861, "blockHeight": 4861, "took": "9.599509ms"} -2023-12-15T23:26:39.818Z INFO sending PrepareRequest {"height": 4862, "view": 0} -2023-12-15T23:26:39.819Z INFO sending Commit {"height": 4862, "view": 0} -2023-12-15T23:26:39.819Z INFO approving block {"height": 4862, "hash": "1c5721073c31b24580607da0926836b4830ed06993ffb0fdfd4c8ebc28c76a70", "tx_count": 1, "merkle": "51b1300868b30e04807bb4f2ee9d4b4c25f68414e1531ac6cf3d030130c74f7b", "prev": "d0778dd83f49274741dc271f6f0e45719a1e755f83059a4e6a368b56cb2632cd"} -2023-12-15T23:26:39.821Z INFO initializing dbft {"height": 4863, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:39.823Z debug frostfs-node/morph.go:229 new block {"index": 4862} -2023-12-15T23:26:39.827Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T23:26:40.519Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 4862, "blockHeight": 4862, "took": "10.428684ms"} -2023-12-15T23:26:40.821Z INFO sending PrepareRequest {"height": 4863, "view": 0} -2023-12-15T23:26:40.821Z INFO sending Commit {"height": 4863, "view": 0} -2023-12-15T23:26:40.821Z INFO approving block {"height": 4863, "hash": "595b2f0bb647b6a0504109f5efa0f44b6460a80f93ee4f3d65a1c1c8d5bafe42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c5721073c31b24580607da0926836b4830ed06993ffb0fdfd4c8ebc28c76a70"} -2023-12-15T23:26:40.823Z INFO initializing dbft {"height": 4864, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:40.823Z debug frostfs-node/morph.go:229 new block {"index": 4863} -2023-12-15T23:26:41.517Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 4863, "blockHeight": 4863, "took": "6.976236ms"} -2023-12-15T23:26:41.823Z INFO sending PrepareRequest {"height": 4864, "view": 0} -2023-12-15T23:26:41.823Z INFO sending Commit {"height": 4864, "view": 0} -2023-12-15T23:26:41.824Z INFO approving block {"height": 4864, "hash": "dba173cb9fd6c94ce8fbaca8cdff4ba060ce7f545ff8474a941f349ed7380279", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "595b2f0bb647b6a0504109f5efa0f44b6460a80f93ee4f3d65a1c1c8d5bafe42"} -2023-12-15T23:26:41.825Z INFO initializing dbft {"height": 4865, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:41.826Z debug frostfs-node/morph.go:229 new block {"index": 4864} -2023-12-15T23:26:42.522Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4864, "blockHeight": 4864, "took": "11.200239ms"} -2023-12-15T23:26:42.825Z INFO sending PrepareRequest {"height": 4865, "view": 0} -2023-12-15T23:26:42.826Z INFO sending Commit {"height": 4865, "view": 0} -2023-12-15T23:26:42.826Z INFO approving block {"height": 4865, "hash": "2e80040321042498e973641aee7620b84b6732f25974966356462ce801355f0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dba173cb9fd6c94ce8fbaca8cdff4ba060ce7f545ff8474a941f349ed7380279"} -2023-12-15T23:26:42.827Z INFO initializing dbft {"height": 4866, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:42.829Z debug frostfs-node/morph.go:229 new block {"index": 4865} -2023-12-15T23:26:43.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4865, "blockHeight": 4865, "took": "6.210913ms"} -2023-12-15T23:26:43.827Z INFO sending PrepareRequest {"height": 4866, "view": 0} -2023-12-15T23:26:43.828Z INFO sending Commit {"height": 4866, "view": 0} -2023-12-15T23:26:43.828Z INFO approving block {"height": 4866, "hash": "f060d703eacb2f274ff41e66b64a3e8894380e434aa8b7de2393ad2da3ab6ac8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e80040321042498e973641aee7620b84b6732f25974966356462ce801355f0b"} -2023-12-15T23:26:43.830Z INFO initializing dbft {"height": 4867, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:43.831Z debug frostfs-node/morph.go:229 new block {"index": 4866} -2023-12-15T23:26:44.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4866, "blockHeight": 4866, "took": "6.991226ms"} -2023-12-15T23:26:44.829Z INFO sending PrepareRequest {"height": 4867, "view": 0} -2023-12-15T23:26:44.830Z INFO sending Commit {"height": 4867, "view": 0} -2023-12-15T23:26:44.830Z INFO approving block {"height": 4867, "hash": "33d7feacb4cf294d859e70f8a50bf61c724c9bec4ea7ad81054ad7b3e5143c10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f060d703eacb2f274ff41e66b64a3e8894380e434aa8b7de2393ad2da3ab6ac8"} -2023-12-15T23:26:44.831Z INFO initializing dbft {"height": 4868, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:44.832Z debug frostfs-node/morph.go:229 new block {"index": 4867} -2023-12-15T23:26:44.836Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:26:44.841Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:26:44.842Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:26:45.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4867, "blockHeight": 4867, "took": "6.078462ms"} -2023-12-15T23:26:45.831Z INFO sending PrepareRequest {"height": 4868, "view": 0} -2023-12-15T23:26:45.831Z INFO sending Commit {"height": 4868, "view": 0} -2023-12-15T23:26:45.832Z INFO approving block {"height": 4868, "hash": "924160c30cfd252963758ebcf5ea375e1854827ce6298b1afe9c368e2fe5632d", "tx_count": 2, "merkle": "086050d1b731e9f0fdbb1ba12e81ac8ce4c7a4264f75e8c6466b6a5919934d34", "prev": "33d7feacb4cf294d859e70f8a50bf61c724c9bec4ea7ad81054ad7b3e5143c10"} -2023-12-15T23:26:45.833Z INFO runtime log {"tx": "56c44474532e07a70a73d2b3e4f02379b81b50aa199ca9ae208bffb19a86235a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:26:45.833Z INFO runtime log {"tx": "56c44474532e07a70a73d2b3e4f02379b81b50aa199ca9ae208bffb19a86235a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:26:45.834Z INFO initializing dbft {"height": 4869, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:45.835Z debug frostfs-node/morph.go:229 new block {"index": 4868} -2023-12-15T23:26:46.524Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4868, "blockHeight": 4868, "took": "10.96658ms"} -2023-12-15T23:26:46.833Z INFO sending PrepareRequest {"height": 4869, "view": 0} -2023-12-15T23:26:46.833Z INFO sending Commit {"height": 4869, "view": 0} -2023-12-15T23:26:46.833Z INFO approving block {"height": 4869, "hash": "6fcb94568fe91e14ae69060d297ff128045bef37e10b81f7dfd9d3afc8f75e52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "924160c30cfd252963758ebcf5ea375e1854827ce6298b1afe9c368e2fe5632d"} -2023-12-15T23:26:46.835Z INFO initializing dbft {"height": 4870, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:46.836Z debug frostfs-node/morph.go:229 new block {"index": 4869} -2023-12-15T23:26:47.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4869, "blockHeight": 4869, "took": "7.113439ms"} -2023-12-15T23:26:47.834Z INFO sending PrepareRequest {"height": 4870, "view": 0} -2023-12-15T23:26:47.835Z INFO sending Commit {"height": 4870, "view": 0} -2023-12-15T23:26:47.835Z INFO approving block {"height": 4870, "hash": "566c734e7cc79cd01648a4388041ad7e827beb8251f17564aa56b86106842f5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fcb94568fe91e14ae69060d297ff128045bef37e10b81f7dfd9d3afc8f75e52"} -2023-12-15T23:26:47.837Z INFO initializing dbft {"height": 4871, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:47.837Z debug frostfs-node/morph.go:229 new block {"index": 4870} -2023-12-15T23:26:48.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4870, "blockHeight": 4870, "took": "6.658525ms"} -2023-12-15T23:26:48.836Z INFO sending PrepareRequest {"height": 4871, "view": 0} -2023-12-15T23:26:48.836Z INFO sending Commit {"height": 4871, "view": 0} -2023-12-15T23:26:48.836Z INFO approving block {"height": 4871, "hash": "c3b28943343f4e77e93835c1cb2a3cec8189f1870b3669f5bce643d4876a5813", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "566c734e7cc79cd01648a4388041ad7e827beb8251f17564aa56b86106842f5c"} -2023-12-15T23:26:48.838Z INFO initializing dbft {"height": 4872, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:48.838Z debug frostfs-node/morph.go:229 new block {"index": 4871} -2023-12-15T23:26:49.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4871, "blockHeight": 4871, "took": "6.218881ms"} -2023-12-15T23:26:49.837Z INFO sending PrepareRequest {"height": 4872, "view": 0} -2023-12-15T23:26:49.837Z INFO sending Commit {"height": 4872, "view": 0} -2023-12-15T23:26:49.838Z INFO approving block {"height": 4872, "hash": "db265b62f82c7adcfe5f9d4c970e620e8ca87de3f49c17472179e2c6c4f8cc11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3b28943343f4e77e93835c1cb2a3cec8189f1870b3669f5bce643d4876a5813"} -2023-12-15T23:26:49.840Z INFO initializing dbft {"height": 4873, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:49.841Z debug frostfs-node/morph.go:229 new block {"index": 4872} -2023-12-15T23:26:50.520Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4872, "blockHeight": 4872, "took": "4.550793ms"} -2023-12-15T23:26:50.839Z INFO sending PrepareRequest {"height": 4873, "view": 0} -2023-12-15T23:26:50.840Z INFO sending Commit {"height": 4873, "view": 0} -2023-12-15T23:26:50.840Z INFO approving block {"height": 4873, "hash": "f6b157b1b5f8fecd0351472d58ca4ca9e08fc5df6993ac776532681f595b6459", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db265b62f82c7adcfe5f9d4c970e620e8ca87de3f49c17472179e2c6c4f8cc11"} -2023-12-15T23:26:50.842Z INFO initializing dbft {"height": 4874, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:50.842Z debug frostfs-node/morph.go:229 new block {"index": 4873} -2023-12-15T23:26:51.523Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4873, "blockHeight": 4873, "took": "7.276754ms"} -2023-12-15T23:26:51.842Z INFO sending PrepareRequest {"height": 4874, "view": 0} -2023-12-15T23:26:51.842Z INFO sending Commit {"height": 4874, "view": 0} -2023-12-15T23:26:51.842Z INFO approving block {"height": 4874, "hash": "ae59a55372b733e53f31a04294c412985173110ea0ed95a3bb6a22f569c0cfbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6b157b1b5f8fecd0351472d58ca4ca9e08fc5df6993ac776532681f595b6459"} -2023-12-15T23:26:51.844Z INFO initializing dbft {"height": 4875, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:51.845Z debug frostfs-node/morph.go:229 new block {"index": 4874} -2023-12-15T23:26:52.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4874, "blockHeight": 4874, "took": "6.893552ms"} -2023-12-15T23:26:52.844Z INFO sending PrepareRequest {"height": 4875, "view": 0} -2023-12-15T23:26:52.844Z INFO sending Commit {"height": 4875, "view": 0} -2023-12-15T23:26:52.844Z INFO approving block {"height": 4875, "hash": "61eb28b986b8f3d897d06a52f04a5e713ece454c324282bb68114df67b91a291", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae59a55372b733e53f31a04294c412985173110ea0ed95a3bb6a22f569c0cfbe"} -2023-12-15T23:26:52.846Z INFO initializing dbft {"height": 4876, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:52.847Z debug frostfs-node/morph.go:229 new block {"index": 4875} -2023-12-15T23:26:53.523Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4875, "blockHeight": 4875, "took": "5.973305ms"} -2023-12-15T23:26:53.846Z INFO sending PrepareRequest {"height": 4876, "view": 0} -2023-12-15T23:26:53.846Z INFO sending Commit {"height": 4876, "view": 0} -2023-12-15T23:26:53.847Z INFO approving block {"height": 4876, "hash": "1f1bd3c0c9d485f5ee350c3655ba8a32538cce8e58751f8603174ce74d5734c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61eb28b986b8f3d897d06a52f04a5e713ece454c324282bb68114df67b91a291"} -2023-12-15T23:26:53.848Z INFO initializing dbft {"height": 4877, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:53.849Z debug frostfs-node/morph.go:229 new block {"index": 4876} -2023-12-15T23:26:54.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4876, "blockHeight": 4876, "took": "7.18431ms"} -2023-12-15T23:26:54.848Z INFO sending PrepareRequest {"height": 4877, "view": 0} -2023-12-15T23:26:54.848Z INFO sending Commit {"height": 4877, "view": 0} -2023-12-15T23:26:54.849Z INFO approving block {"height": 4877, "hash": "bb347b57a2a6b65b8f86a2442bab115d3671cc2f8e0d931acd27ddedd6b10615", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f1bd3c0c9d485f5ee350c3655ba8a32538cce8e58751f8603174ce74d5734c8"} -2023-12-15T23:26:54.850Z INFO initializing dbft {"height": 4878, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:54.851Z debug frostfs-node/morph.go:229 new block {"index": 4877} -2023-12-15T23:26:55.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4877, "blockHeight": 4877, "took": "6.326115ms"} -2023-12-15T23:26:55.850Z INFO sending PrepareRequest {"height": 4878, "view": 0} -2023-12-15T23:26:55.850Z INFO sending Commit {"height": 4878, "view": 0} -2023-12-15T23:26:55.850Z INFO approving block {"height": 4878, "hash": "e400eb453624a6097c6efb88756029ac52b68fbbdc0f8f0a44afa1b83585a70d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb347b57a2a6b65b8f86a2442bab115d3671cc2f8e0d931acd27ddedd6b10615"} -2023-12-15T23:26:55.852Z INFO initializing dbft {"height": 4879, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:55.853Z debug frostfs-node/morph.go:229 new block {"index": 4878} -2023-12-15T23:26:56.527Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4878, "blockHeight": 4878, "took": "6.447952ms"} -2023-12-15T23:26:56.852Z INFO sending PrepareRequest {"height": 4879, "view": 0} -2023-12-15T23:26:56.852Z INFO sending Commit {"height": 4879, "view": 0} -2023-12-15T23:26:56.852Z INFO approving block {"height": 4879, "hash": "18a6a363ba2ec80bf5cb366ac53fddedb96a6a9e8b44e9c6ffb3a32710b97cbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e400eb453624a6097c6efb88756029ac52b68fbbdc0f8f0a44afa1b83585a70d"} -2023-12-15T23:26:56.853Z INFO initializing dbft {"height": 4880, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:56.854Z debug frostfs-node/morph.go:229 new block {"index": 4879} -2023-12-15T23:26:57.527Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4879, "blockHeight": 4879, "took": "5.404833ms"} -2023-12-15T23:26:57.853Z INFO sending PrepareRequest {"height": 4880, "view": 0} -2023-12-15T23:26:57.853Z INFO sending Commit {"height": 4880, "view": 0} -2023-12-15T23:26:57.854Z INFO approving block {"height": 4880, "hash": "f2668df33409e5f1a475f75408f1846626630022347048ea3b40154a2b66ef8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18a6a363ba2ec80bf5cb366ac53fddedb96a6a9e8b44e9c6ffb3a32710b97cbc"} -2023-12-15T23:26:57.856Z INFO initializing dbft {"height": 4881, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:57.856Z debug frostfs-node/morph.go:229 new block {"index": 4880} -2023-12-15T23:26:57.864Z INFO runtime log {"tx": "677b86c8ab9f14b5651e10d75ecd5f6701278e7eb0bca4208a9c361b3fe26567", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:26:57.866Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 21 epoch for daughters"} -2023-12-15T23:26:58.530Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4880, "blockHeight": 4880, "took": "7.277656ms"} -2023-12-15T23:26:58.856Z INFO sending PrepareRequest {"height": 4881, "view": 0} -2023-12-15T23:26:58.856Z INFO sending Commit {"height": 4881, "view": 0} -2023-12-15T23:26:58.857Z INFO approving block {"height": 4881, "hash": "a3341531e3fee0ec36184c3864c577fe666c342c35ba79cda403b946bb5d84f6", "tx_count": 1, "merkle": "9e6f64646f2a70bfa13367e615357d67d89c3cc555aad599432e790289eac8bf", "prev": "f2668df33409e5f1a475f75408f1846626630022347048ea3b40154a2b66ef8f"} -2023-12-15T23:26:58.858Z INFO runtime log {"tx": "bfc8ea8902792e4399d5aa55c53c9cd8677d3515e66733a1bf702a6f64646f9e", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:26:58.860Z INFO initializing dbft {"height": 4882, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:58.861Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 21} -2023-12-15T23:26:58.861Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 21} -2023-12-15T23:26:58.863Z debug frostfs-node/morph.go:229 new block {"index": 4881} -2023-12-15T23:26:59.532Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 4881, "blockHeight": 4881, "took": "8.887704ms"} -2023-12-15T23:26:59.858Z INFO sending PrepareRequest {"height": 4882, "view": 0} -2023-12-15T23:26:59.858Z INFO sending Commit {"height": 4882, "view": 0} -2023-12-15T23:26:59.859Z INFO approving block {"height": 4882, "hash": "147c28de135195019e0ed77a4f67ad1b96a10a16235a474c006ed1bbf636298a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3341531e3fee0ec36184c3864c577fe666c342c35ba79cda403b946bb5d84f6"} -2023-12-15T23:26:59.861Z INFO initializing dbft {"height": 4883, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:26:59.862Z debug frostfs-node/morph.go:229 new block {"index": 4882} -2023-12-15T23:27:00.531Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4882, "blockHeight": 4882, "took": "6.652415ms"} -2023-12-15T23:27:00.860Z INFO sending PrepareRequest {"height": 4883, "view": 0} -2023-12-15T23:27:00.861Z INFO sending Commit {"height": 4883, "view": 0} -2023-12-15T23:27:00.861Z INFO approving block {"height": 4883, "hash": "81f0a7b358d70f089a41d4db810d2e6f8f5a02bdefb3dfc0d8680cac2725dbb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "147c28de135195019e0ed77a4f67ad1b96a10a16235a474c006ed1bbf636298a"} -2023-12-15T23:27:00.863Z INFO initializing dbft {"height": 4884, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:00.864Z debug frostfs-node/morph.go:229 new block {"index": 4883} -2023-12-15T23:27:01.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4883, "blockHeight": 4883, "took": "6.657626ms"} -2023-12-15T23:27:01.862Z INFO sending PrepareRequest {"height": 4884, "view": 0} -2023-12-15T23:27:01.862Z INFO sending Commit {"height": 4884, "view": 0} -2023-12-15T23:27:01.863Z INFO approving block {"height": 4884, "hash": "66d670b4eb116660aecebb852b7e463bb87213cb2750cf88a44885418c4da6f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81f0a7b358d70f089a41d4db810d2e6f8f5a02bdefb3dfc0d8680cac2725dbb5"} -2023-12-15T23:27:01.864Z INFO initializing dbft {"height": 4885, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:01.865Z debug frostfs-node/morph.go:229 new block {"index": 4884} -2023-12-15T23:27:02.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4884, "blockHeight": 4884, "took": "6.82219ms"} -2023-12-15T23:27:02.864Z INFO sending PrepareRequest {"height": 4885, "view": 0} -2023-12-15T23:27:02.864Z INFO sending Commit {"height": 4885, "view": 0} -2023-12-15T23:27:02.864Z INFO approving block {"height": 4885, "hash": "6f116d30715649f5e4050b18d67e5685f6b2faa8a3c2a216cc412659722108f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66d670b4eb116660aecebb852b7e463bb87213cb2750cf88a44885418c4da6f9"} -2023-12-15T23:27:02.866Z INFO initializing dbft {"height": 4886, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:02.867Z debug frostfs-node/morph.go:229 new block {"index": 4885} -2023-12-15T23:27:03.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4885, "blockHeight": 4885, "took": "6.052268ms"} -2023-12-15T23:27:03.866Z INFO sending PrepareRequest {"height": 4886, "view": 0} -2023-12-15T23:27:03.866Z INFO sending Commit {"height": 4886, "view": 0} -2023-12-15T23:27:03.867Z INFO approving block {"height": 4886, "hash": "8f72df8f403cd42e1dd64c6955b86a56af45489b98e311d6b233be64ef14399b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f116d30715649f5e4050b18d67e5685f6b2faa8a3c2a216cc412659722108f0"} -2023-12-15T23:27:03.868Z INFO initializing dbft {"height": 4887, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:03.869Z debug frostfs-node/morph.go:229 new block {"index": 4886} -2023-12-15T23:27:04.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4886, "blockHeight": 4886, "took": "5.937113ms"} -2023-12-15T23:27:04.868Z INFO sending PrepareRequest {"height": 4887, "view": 0} -2023-12-15T23:27:04.868Z INFO sending Commit {"height": 4887, "view": 0} -2023-12-15T23:27:04.869Z INFO approving block {"height": 4887, "hash": "8bdab35d5653a54b1029276d2c1dd4824e80fe65c349e8d9300d89e5ae773114", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f72df8f403cd42e1dd64c6955b86a56af45489b98e311d6b233be64ef14399b"} -2023-12-15T23:27:04.870Z INFO initializing dbft {"height": 4888, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:04.871Z debug frostfs-node/morph.go:229 new block {"index": 4887} -2023-12-15T23:27:05.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4887, "blockHeight": 4887, "took": "6.070597ms"} -2023-12-15T23:27:05.870Z INFO sending PrepareRequest {"height": 4888, "view": 0} -2023-12-15T23:27:05.870Z INFO sending Commit {"height": 4888, "view": 0} -2023-12-15T23:27:05.870Z INFO approving block {"height": 4888, "hash": "206206320d374e89add5fb3fd90497139e1d65a240a02ed82724298ed5c509b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bdab35d5653a54b1029276d2c1dd4824e80fe65c349e8d9300d89e5ae773114"} -2023-12-15T23:27:05.872Z INFO initializing dbft {"height": 4889, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:05.873Z debug frostfs-node/morph.go:229 new block {"index": 4888} -2023-12-15T23:27:06.537Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4888, "blockHeight": 4888, "took": "6.697236ms"} -2023-12-15T23:27:06.872Z INFO sending PrepareRequest {"height": 4889, "view": 0} -2023-12-15T23:27:06.872Z INFO sending Commit {"height": 4889, "view": 0} -2023-12-15T23:27:06.873Z INFO approving block {"height": 4889, "hash": "5ecc0faff754d0f6f080041322e06482e0c81c43bf40b87ee7f32f335d095b8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "206206320d374e89add5fb3fd90497139e1d65a240a02ed82724298ed5c509b5"} -2023-12-15T23:27:06.874Z INFO initializing dbft {"height": 4890, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:06.875Z debug frostfs-node/morph.go:229 new block {"index": 4889} -2023-12-15T23:27:07.540Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4889, "blockHeight": 4889, "took": "8.608907ms"} -2023-12-15T23:27:07.875Z INFO sending PrepareRequest {"height": 4890, "view": 0} -2023-12-15T23:27:07.875Z INFO sending Commit {"height": 4890, "view": 0} -2023-12-15T23:27:07.876Z INFO approving block {"height": 4890, "hash": "9f1effbfb1f30da152a31dcffdae87308dc319282c3348747d83f9fb69bb0ca9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ecc0faff754d0f6f080041322e06482e0c81c43bf40b87ee7f32f335d095b8b"} -2023-12-15T23:27:07.878Z INFO initializing dbft {"height": 4891, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:07.879Z debug frostfs-node/morph.go:229 new block {"index": 4890} -2023-12-15T23:27:08.539Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4890, "blockHeight": 4890, "took": "6.885691ms"} -2023-12-15T23:27:08.877Z INFO sending PrepareRequest {"height": 4891, "view": 0} -2023-12-15T23:27:08.878Z INFO sending Commit {"height": 4891, "view": 0} -2023-12-15T23:27:08.878Z INFO approving block {"height": 4891, "hash": "cd700caa9af6e44022d0638c5804f7160f1b19b4b53d87414c22a00442b75b3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f1effbfb1f30da152a31dcffdae87308dc319282c3348747d83f9fb69bb0ca9"} -2023-12-15T23:27:08.880Z INFO initializing dbft {"height": 4892, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:08.881Z debug frostfs-node/morph.go:229 new block {"index": 4891} -2023-12-15T23:27:09.539Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4891, "blockHeight": 4891, "took": "6.148524ms"} -2023-12-15T23:27:09.880Z INFO sending PrepareRequest {"height": 4892, "view": 0} -2023-12-15T23:27:09.880Z INFO sending Commit {"height": 4892, "view": 0} -2023-12-15T23:27:09.880Z INFO approving block {"height": 4892, "hash": "48847e2e215e4c13765ddd3ad1adb7b63e2382b5cca339b7cfc8cc5c7ea5dc07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd700caa9af6e44022d0638c5804f7160f1b19b4b53d87414c22a00442b75b3e"} -2023-12-15T23:27:09.882Z INFO initializing dbft {"height": 4893, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:09.883Z debug frostfs-node/morph.go:229 new block {"index": 4892} -2023-12-15T23:27:10.538Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4892, "blockHeight": 4892, "took": "5.051957ms"} -2023-12-15T23:27:10.882Z INFO sending PrepareRequest {"height": 4893, "view": 0} -2023-12-15T23:27:10.882Z INFO sending Commit {"height": 4893, "view": 0} -2023-12-15T23:27:10.883Z INFO approving block {"height": 4893, "hash": "104da89fee713a77f58c705c9c40fa387cac22129c686923f4c8dc9d71b0e733", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48847e2e215e4c13765ddd3ad1adb7b63e2382b5cca339b7cfc8cc5c7ea5dc07"} -2023-12-15T23:27:10.884Z INFO initializing dbft {"height": 4894, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:10.885Z debug frostfs-node/morph.go:229 new block {"index": 4893} -2023-12-15T23:27:11.542Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4893, "blockHeight": 4893, "took": "7.337976ms"} -2023-12-15T23:27:11.884Z INFO sending PrepareRequest {"height": 4894, "view": 0} -2023-12-15T23:27:11.884Z INFO sending Commit {"height": 4894, "view": 0} -2023-12-15T23:27:11.885Z INFO approving block {"height": 4894, "hash": "a7586298134f56ac7a71e98ca7d1ee4358dabdfd15c1c75b9934d56d6dfcd7b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "104da89fee713a77f58c705c9c40fa387cac22129c686923f4c8dc9d71b0e733"} -2023-12-15T23:27:11.886Z INFO initializing dbft {"height": 4895, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:11.887Z debug frostfs-node/morph.go:229 new block {"index": 4894} -2023-12-15T23:27:12.544Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4894, "blockHeight": 4894, "took": "8.690944ms"} -2023-12-15T23:27:12.886Z INFO sending PrepareRequest {"height": 4895, "view": 0} -2023-12-15T23:27:12.886Z INFO sending Commit {"height": 4895, "view": 0} -2023-12-15T23:27:12.887Z INFO approving block {"height": 4895, "hash": "278427ce2b878cbe56a5f1f909db1097073ce84e368aaa8f90408f5d1c0f2787", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7586298134f56ac7a71e98ca7d1ee4358dabdfd15c1c75b9934d56d6dfcd7b9"} -2023-12-15T23:27:12.888Z INFO initializing dbft {"height": 4896, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:12.890Z debug frostfs-node/morph.go:229 new block {"index": 4895} -2023-12-15T23:27:13.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4895, "blockHeight": 4895, "took": "6.702127ms"} -2023-12-15T23:27:13.888Z INFO sending PrepareRequest {"height": 4896, "view": 0} -2023-12-15T23:27:13.888Z INFO sending Commit {"height": 4896, "view": 0} -2023-12-15T23:27:13.888Z INFO approving block {"height": 4896, "hash": "c19d71130188b63238175ec335241adf6aa921b0a63a09bcf42afe1d06a97db8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "278427ce2b878cbe56a5f1f909db1097073ce84e368aaa8f90408f5d1c0f2787"} -2023-12-15T23:27:13.891Z INFO initializing dbft {"height": 4897, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:13.892Z debug frostfs-node/morph.go:229 new block {"index": 4896} -2023-12-15T23:27:14.545Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4896, "blockHeight": 4896, "took": "7.148563ms"} -2023-12-15T23:27:14.890Z INFO sending PrepareRequest {"height": 4897, "view": 0} -2023-12-15T23:27:14.890Z INFO sending Commit {"height": 4897, "view": 0} -2023-12-15T23:27:14.891Z INFO approving block {"height": 4897, "hash": "e23208ecdf2c1294d596b6ba00066508fbe4b718eda7a6b58c5d7804ad593884", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c19d71130188b63238175ec335241adf6aa921b0a63a09bcf42afe1d06a97db8"} -2023-12-15T23:27:14.892Z INFO initializing dbft {"height": 4898, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:14.893Z debug frostfs-node/morph.go:229 new block {"index": 4897} -2023-12-15T23:27:15.544Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4897, "blockHeight": 4897, "took": "5.137981ms"} -2023-12-15T23:27:15.892Z INFO sending PrepareRequest {"height": 4898, "view": 0} -2023-12-15T23:27:15.892Z INFO sending Commit {"height": 4898, "view": 0} -2023-12-15T23:27:15.892Z INFO approving block {"height": 4898, "hash": "95935c2ee255cfb10488110f4c23e49b2e80641bb2cefc95c592c673f45ee82e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e23208ecdf2c1294d596b6ba00066508fbe4b718eda7a6b58c5d7804ad593884"} -2023-12-15T23:27:15.894Z INFO initializing dbft {"height": 4899, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:15.895Z debug frostfs-node/morph.go:229 new block {"index": 4898} -2023-12-15T23:27:16.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4898, "blockHeight": 4898, "took": "6.624113ms"} -2023-12-15T23:27:16.894Z INFO sending PrepareRequest {"height": 4899, "view": 0} -2023-12-15T23:27:16.894Z INFO sending Commit {"height": 4899, "view": 0} -2023-12-15T23:27:16.895Z INFO approving block {"height": 4899, "hash": "fab053f58cb1f242acaefb850decf6738f6779463806ad0ace057ad2ea6a1ea1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95935c2ee255cfb10488110f4c23e49b2e80641bb2cefc95c592c673f45ee82e"} -2023-12-15T23:27:16.896Z INFO initializing dbft {"height": 4900, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:16.897Z debug frostfs-node/morph.go:229 new block {"index": 4899} -2023-12-15T23:27:17.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4899, "blockHeight": 4899, "took": "9.165987ms"} -2023-12-15T23:27:17.896Z INFO sending PrepareRequest {"height": 4900, "view": 0} -2023-12-15T23:27:17.896Z INFO sending Commit {"height": 4900, "view": 0} -2023-12-15T23:27:17.897Z INFO approving block {"height": 4900, "hash": "dcd2b4b912c25689ce61d4e29127ed598ff430849f4cda351ba782636642b6c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fab053f58cb1f242acaefb850decf6738f6779463806ad0ace057ad2ea6a1ea1"} -2023-12-15T23:27:17.899Z INFO initializing dbft {"height": 4901, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:17.899Z debug frostfs-node/morph.go:229 new block {"index": 4900} -2023-12-15T23:27:18.549Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4900, "blockHeight": 4900, "took": "7.074556ms"} -2023-12-15T23:27:18.898Z INFO sending PrepareRequest {"height": 4901, "view": 0} -2023-12-15T23:27:18.898Z INFO sending Commit {"height": 4901, "view": 0} -2023-12-15T23:27:18.898Z INFO approving block {"height": 4901, "hash": "cf57976fc281fc308f47c4c1b0661236ddd20f6accd03f413fee738bd769835e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcd2b4b912c25689ce61d4e29127ed598ff430849f4cda351ba782636642b6c4"} -2023-12-15T23:27:18.900Z INFO initializing dbft {"height": 4902, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:18.901Z debug frostfs-node/morph.go:229 new block {"index": 4901} -2023-12-15T23:27:19.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4901, "blockHeight": 4901, "took": "7.628613ms"} -2023-12-15T23:27:19.900Z INFO sending PrepareRequest {"height": 4902, "view": 0} -2023-12-15T23:27:19.900Z INFO sending Commit {"height": 4902, "view": 0} -2023-12-15T23:27:19.900Z INFO approving block {"height": 4902, "hash": "c5432101cf6d3836be7548d1706663925f80de85868d764535c76a9d1f62a97a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf57976fc281fc308f47c4c1b0661236ddd20f6accd03f413fee738bd769835e"} -2023-12-15T23:27:19.902Z INFO initializing dbft {"height": 4903, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:19.903Z debug frostfs-node/morph.go:229 new block {"index": 4902} -2023-12-15T23:27:20.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4902, "blockHeight": 4902, "took": "7.053026ms"} -2023-12-15T23:27:20.902Z INFO sending PrepareRequest {"height": 4903, "view": 0} -2023-12-15T23:27:20.902Z INFO sending Commit {"height": 4903, "view": 0} -2023-12-15T23:27:20.902Z INFO approving block {"height": 4903, "hash": "72a2f432094ac74afc26bba13e43fec8a211abb460b2829e16712a630039ba05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5432101cf6d3836be7548d1706663925f80de85868d764535c76a9d1f62a97a"} -2023-12-15T23:27:20.904Z INFO initializing dbft {"height": 4904, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:20.905Z debug frostfs-node/morph.go:229 new block {"index": 4903} -2023-12-15T23:27:21.551Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4903, "blockHeight": 4903, "took": "6.661647ms"} -2023-12-15T23:27:21.903Z INFO sending PrepareRequest {"height": 4904, "view": 0} -2023-12-15T23:27:21.903Z INFO sending Commit {"height": 4904, "view": 0} -2023-12-15T23:27:21.903Z INFO approving block {"height": 4904, "hash": "e8016c0bb13387171c59a15d961ef7f8c9c740f50a6a21258ee02d5ddafc3309", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72a2f432094ac74afc26bba13e43fec8a211abb460b2829e16712a630039ba05"} -2023-12-15T23:27:21.905Z INFO initializing dbft {"height": 4905, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:21.906Z debug frostfs-node/morph.go:229 new block {"index": 4904} -2023-12-15T23:27:22.557Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4904, "blockHeight": 4904, "took": "11.821154ms"} -2023-12-15T23:27:22.905Z INFO sending PrepareRequest {"height": 4905, "view": 0} -2023-12-15T23:27:22.906Z INFO sending Commit {"height": 4905, "view": 0} -2023-12-15T23:27:22.906Z INFO approving block {"height": 4905, "hash": "3b67592a72548c505764db0e58c9af0c14778054da246cc09c63427f0eb3fcd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8016c0bb13387171c59a15d961ef7f8c9c740f50a6a21258ee02d5ddafc3309"} -2023-12-15T23:27:22.908Z INFO initializing dbft {"height": 4906, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:22.908Z debug frostfs-node/morph.go:229 new block {"index": 4905} -2023-12-15T23:27:23.560Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4905, "blockHeight": 4905, "took": "13.909119ms"} -2023-12-15T23:27:23.908Z INFO sending PrepareRequest {"height": 4906, "view": 0} -2023-12-15T23:27:23.908Z INFO sending Commit {"height": 4906, "view": 0} -2023-12-15T23:27:23.908Z INFO approving block {"height": 4906, "hash": "7735e6da03f8ed845f3900dc1883aca61bbf727e17ba96b32d3bc2a46bac5ea3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b67592a72548c505764db0e58c9af0c14778054da246cc09c63427f0eb3fcd8"} -2023-12-15T23:27:23.910Z INFO initializing dbft {"height": 4907, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:23.910Z debug frostfs-node/morph.go:229 new block {"index": 4906} -2023-12-15T23:27:24.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4906, "blockHeight": 4906, "took": "7.557878ms"} -2023-12-15T23:27:24.909Z INFO sending PrepareRequest {"height": 4907, "view": 0} -2023-12-15T23:27:24.910Z INFO sending Commit {"height": 4907, "view": 0} -2023-12-15T23:27:24.910Z INFO approving block {"height": 4907, "hash": "e5ba490ae90fd2f0cd6e4b225cf8bac7bb07c4a254fd98bd53c563542c54eea2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7735e6da03f8ed845f3900dc1883aca61bbf727e17ba96b32d3bc2a46bac5ea3"} -2023-12-15T23:27:24.911Z INFO initializing dbft {"height": 4908, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:24.912Z debug frostfs-node/morph.go:229 new block {"index": 4907} -2023-12-15T23:27:25.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4907, "blockHeight": 4907, "took": "7.047145ms"} -2023-12-15T23:27:25.911Z INFO sending PrepareRequest {"height": 4908, "view": 0} -2023-12-15T23:27:25.911Z INFO sending Commit {"height": 4908, "view": 0} -2023-12-15T23:27:25.912Z INFO approving block {"height": 4908, "hash": "f049f18b7cfe53ae671667c415b5406dbc1b79dd0ae42e47bb5dee626d9469e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5ba490ae90fd2f0cd6e4b225cf8bac7bb07c4a254fd98bd53c563542c54eea2"} -2023-12-15T23:27:25.913Z INFO initializing dbft {"height": 4909, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:25.914Z debug frostfs-node/morph.go:229 new block {"index": 4908} -2023-12-15T23:27:26.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4908, "blockHeight": 4908, "took": "6.904681ms"} -2023-12-15T23:27:26.913Z INFO sending PrepareRequest {"height": 4909, "view": 0} -2023-12-15T23:27:26.913Z INFO sending Commit {"height": 4909, "view": 0} -2023-12-15T23:27:26.913Z INFO approving block {"height": 4909, "hash": "0da01e3e35cbe48522f7084b4ebd229c2be7148590034bf8585148c755f015a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f049f18b7cfe53ae671667c415b5406dbc1b79dd0ae42e47bb5dee626d9469e8"} -2023-12-15T23:27:26.915Z INFO initializing dbft {"height": 4910, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:26.916Z debug frostfs-node/morph.go:229 new block {"index": 4909} -2023-12-15T23:27:27.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4909, "blockHeight": 4909, "took": "6.595143ms"} -2023-12-15T23:27:27.914Z INFO sending PrepareRequest {"height": 4910, "view": 0} -2023-12-15T23:27:27.915Z INFO sending Commit {"height": 4910, "view": 0} -2023-12-15T23:27:27.915Z INFO approving block {"height": 4910, "hash": "8d2b1b5237b3999f9f261112fe91ee07d90e3abaafdde670c4466835f199b0df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0da01e3e35cbe48522f7084b4ebd229c2be7148590034bf8585148c755f015a5"} -2023-12-15T23:27:27.917Z INFO initializing dbft {"height": 4911, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:27.917Z debug frostfs-node/morph.go:229 new block {"index": 4910} -2023-12-15T23:27:28.559Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4910, "blockHeight": 4910, "took": "9.24311ms"} -2023-12-15T23:27:28.916Z INFO sending PrepareRequest {"height": 4911, "view": 0} -2023-12-15T23:27:28.917Z INFO sending Commit {"height": 4911, "view": 0} -2023-12-15T23:27:28.917Z INFO approving block {"height": 4911, "hash": "85b2c727e79ccd8262cde8fdbfd78c4bf8511733adf71ee0ca717e8f46852e0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d2b1b5237b3999f9f261112fe91ee07d90e3abaafdde670c4466835f199b0df"} -2023-12-15T23:27:28.919Z INFO initializing dbft {"height": 4912, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:28.920Z debug frostfs-node/morph.go:229 new block {"index": 4911} -2023-12-15T23:27:29.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4911, "blockHeight": 4911, "took": "10.686119ms"} -2023-12-15T23:27:29.920Z INFO sending PrepareRequest {"height": 4912, "view": 0} -2023-12-15T23:27:29.920Z INFO sending Commit {"height": 4912, "view": 0} -2023-12-15T23:27:29.921Z INFO approving block {"height": 4912, "hash": "083ef9033982b1f8058108a9c0c0f685ff0c4971deec37e9585ebfdaaa4f1126", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85b2c727e79ccd8262cde8fdbfd78c4bf8511733adf71ee0ca717e8f46852e0a"} -2023-12-15T23:27:29.924Z INFO initializing dbft {"height": 4913, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:29.925Z debug frostfs-node/morph.go:229 new block {"index": 4912} -2023-12-15T23:27:30.557Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4912, "blockHeight": 4912, "took": "5.766222ms"} -2023-12-15T23:27:30.922Z INFO sending PrepareRequest {"height": 4913, "view": 0} -2023-12-15T23:27:30.923Z INFO sending Commit {"height": 4913, "view": 0} -2023-12-15T23:27:30.923Z INFO approving block {"height": 4913, "hash": "ae5a991b841e30ceb0a9affd962cfddefc3009ef8747ada53a0b34831124520e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "083ef9033982b1f8058108a9c0c0f685ff0c4971deec37e9585ebfdaaa4f1126"} -2023-12-15T23:27:30.924Z INFO initializing dbft {"height": 4914, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:30.925Z debug frostfs-node/morph.go:229 new block {"index": 4913} -2023-12-15T23:27:31.559Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4913, "blockHeight": 4913, "took": "7.265989ms"} -2023-12-15T23:27:31.924Z INFO sending PrepareRequest {"height": 4914, "view": 0} -2023-12-15T23:27:31.925Z INFO sending Commit {"height": 4914, "view": 0} -2023-12-15T23:27:31.925Z INFO approving block {"height": 4914, "hash": "555ce3affb845017427c983205385679fccd09fd2e548849f9b428917dfd8211", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae5a991b841e30ceb0a9affd962cfddefc3009ef8747ada53a0b34831124520e"} -2023-12-15T23:27:31.926Z INFO initializing dbft {"height": 4915, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:31.927Z debug frostfs-node/morph.go:229 new block {"index": 4914} -2023-12-15T23:27:32.571Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4914, "blockHeight": 4914, "took": "18.243743ms"} -2023-12-15T23:27:32.927Z INFO sending PrepareRequest {"height": 4915, "view": 0} -2023-12-15T23:27:32.927Z INFO sending Commit {"height": 4915, "view": 0} -2023-12-15T23:27:32.927Z INFO approving block {"height": 4915, "hash": "e17493465f79fc09b9c86863e7388b4cfa3c325e196b72e7c4132d3f7a146f05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "555ce3affb845017427c983205385679fccd09fd2e548849f9b428917dfd8211"} -2023-12-15T23:27:32.929Z INFO initializing dbft {"height": 4916, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:32.930Z debug frostfs-node/morph.go:229 new block {"index": 4915} -2023-12-15T23:27:33.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4915, "blockHeight": 4915, "took": "7.845169ms"} -2023-12-15T23:27:33.928Z INFO sending PrepareRequest {"height": 4916, "view": 0} -2023-12-15T23:27:33.929Z INFO sending Commit {"height": 4916, "view": 0} -2023-12-15T23:27:33.929Z INFO approving block {"height": 4916, "hash": "70ac2fde056cd8b12527e3714895c8ed4c98bf30a07fcfe05f0b4eb9ca3b707a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e17493465f79fc09b9c86863e7388b4cfa3c325e196b72e7c4132d3f7a146f05"} -2023-12-15T23:27:33.930Z INFO initializing dbft {"height": 4917, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:33.931Z debug frostfs-node/morph.go:229 new block {"index": 4916} -2023-12-15T23:27:34.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4916, "blockHeight": 4916, "took": "7.531111ms"} -2023-12-15T23:27:34.930Z INFO sending PrepareRequest {"height": 4917, "view": 0} -2023-12-15T23:27:34.930Z INFO sending Commit {"height": 4917, "view": 0} -2023-12-15T23:27:34.931Z INFO approving block {"height": 4917, "hash": "f6522517a4c9cc9f770fc3f6ee7e4396fd399b734bcc49934b0f571352807ab1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70ac2fde056cd8b12527e3714895c8ed4c98bf30a07fcfe05f0b4eb9ca3b707a"} -2023-12-15T23:27:34.936Z INFO initializing dbft {"height": 4918, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:34.938Z debug frostfs-node/morph.go:229 new block {"index": 4917} -2023-12-15T23:27:34.942Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:27:34.950Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:27:34.950Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:27:35.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4917, "blockHeight": 4917, "took": "6.359146ms"} -2023-12-15T23:27:35.932Z INFO sending PrepareRequest {"height": 4918, "view": 0} -2023-12-15T23:27:35.932Z INFO sending Commit {"height": 4918, "view": 0} -2023-12-15T23:27:35.932Z INFO approving block {"height": 4918, "hash": "fc99738b575af01d0b1bc738a7d8afa45eb5e0571caecb97f2d9cd0237c1b2ec", "tx_count": 2, "merkle": "329ca7d742f04f5d1df5f8cb6fdbca2913eba9bc25eb0b08629fb2ac5d7be51d", "prev": "f6522517a4c9cc9f770fc3f6ee7e4396fd399b734bcc49934b0f571352807ab1"} -2023-12-15T23:27:35.933Z INFO runtime log {"tx": "48ed11302bd3b1daef690531363d0fa67eb07d4d0315d0d34a77ac513dd6e03e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:27:35.933Z INFO runtime log {"tx": "48ed11302bd3b1daef690531363d0fa67eb07d4d0315d0d34a77ac513dd6e03e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:27:35.934Z INFO initializing dbft {"height": 4919, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:35.935Z debug frostfs-node/morph.go:229 new block {"index": 4918} -2023-12-15T23:27:36.568Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 4918, "blockHeight": 4918, "took": "12.276257ms"} -2023-12-15T23:27:36.933Z INFO sending PrepareRequest {"height": 4919, "view": 0} -2023-12-15T23:27:36.933Z INFO sending Commit {"height": 4919, "view": 0} -2023-12-15T23:27:36.933Z INFO approving block {"height": 4919, "hash": "f2c03c9b00edb04793c7d5c02c1b56be1b4703ad415b250b425bdef117ac97da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc99738b575af01d0b1bc738a7d8afa45eb5e0571caecb97f2d9cd0237c1b2ec"} -2023-12-15T23:27:36.935Z INFO initializing dbft {"height": 4920, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:36.936Z debug frostfs-node/morph.go:229 new block {"index": 4919} -2023-12-15T23:27:37.562Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4919, "blockHeight": 4919, "took": "6.153059ms"} -2023-12-15T23:27:37.935Z INFO sending PrepareRequest {"height": 4920, "view": 0} -2023-12-15T23:27:37.935Z INFO sending Commit {"height": 4920, "view": 0} -2023-12-15T23:27:37.936Z INFO approving block {"height": 4920, "hash": "db7083845451c6046fb58cd586aecdad9e6e93548f10b078ef948dffb66e6b5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2c03c9b00edb04793c7d5c02c1b56be1b4703ad415b250b425bdef117ac97da"} -2023-12-15T23:27:37.937Z INFO initializing dbft {"height": 4921, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:37.938Z debug frostfs-node/morph.go:229 new block {"index": 4920} -2023-12-15T23:27:38.564Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4920, "blockHeight": 4920, "took": "6.385971ms"} -2023-12-15T23:27:38.937Z INFO sending PrepareRequest {"height": 4921, "view": 0} -2023-12-15T23:27:38.937Z INFO sending Commit {"height": 4921, "view": 0} -2023-12-15T23:27:38.938Z INFO approving block {"height": 4921, "hash": "c4ae951041eb4d2c5517b884e0207be3c9146dde8da9aa7465e35cd4f22d10ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db7083845451c6046fb58cd586aecdad9e6e93548f10b078ef948dffb66e6b5d"} -2023-12-15T23:27:38.940Z INFO initializing dbft {"height": 4922, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:38.941Z debug frostfs-node/morph.go:229 new block {"index": 4921} -2023-12-15T23:27:39.563Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4921, "blockHeight": 4921, "took": "5.16375ms"} -2023-12-15T23:27:39.940Z INFO sending PrepareRequest {"height": 4922, "view": 0} -2023-12-15T23:27:39.940Z INFO sending Commit {"height": 4922, "view": 0} -2023-12-15T23:27:39.940Z INFO approving block {"height": 4922, "hash": "a97bc94b489e464c37a40077d99c8f0b5e496f06ae74e58d4e8df9e59becd729", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4ae951041eb4d2c5517b884e0207be3c9146dde8da9aa7465e35cd4f22d10ee"} -2023-12-15T23:27:39.942Z INFO initializing dbft {"height": 4923, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:39.943Z debug frostfs-node/morph.go:229 new block {"index": 4922} -2023-12-15T23:27:40.566Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4922, "blockHeight": 4922, "took": "6.816027ms"} -2023-12-15T23:27:40.942Z INFO sending PrepareRequest {"height": 4923, "view": 0} -2023-12-15T23:27:40.942Z INFO sending Commit {"height": 4923, "view": 0} -2023-12-15T23:27:40.942Z INFO approving block {"height": 4923, "hash": "982a0050232d0f11534c2eb43b0f36e76a6b89e2d1f62e83d43ee0de81867091", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a97bc94b489e464c37a40077d99c8f0b5e496f06ae74e58d4e8df9e59becd729"} -2023-12-15T23:27:40.944Z INFO initializing dbft {"height": 4924, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:40.945Z debug frostfs-node/morph.go:229 new block {"index": 4923} -2023-12-15T23:27:41.566Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4923, "blockHeight": 4923, "took": "6.333484ms"} -2023-12-15T23:27:41.943Z INFO sending PrepareRequest {"height": 4924, "view": 0} -2023-12-15T23:27:41.944Z INFO sending Commit {"height": 4924, "view": 0} -2023-12-15T23:27:41.944Z INFO approving block {"height": 4924, "hash": "7799d243b40a10194d6457997a8bd81ac8f4d4d3600ca2395b7a25044ee6c409", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "982a0050232d0f11534c2eb43b0f36e76a6b89e2d1f62e83d43ee0de81867091"} -2023-12-15T23:27:41.946Z INFO initializing dbft {"height": 4925, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:41.947Z debug frostfs-node/morph.go:229 new block {"index": 4924} -2023-12-15T23:27:42.568Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4924, "blockHeight": 4924, "took": "7.020624ms"} -2023-12-15T23:27:42.945Z INFO sending PrepareRequest {"height": 4925, "view": 0} -2023-12-15T23:27:42.945Z INFO sending Commit {"height": 4925, "view": 0} -2023-12-15T23:27:42.946Z INFO approving block {"height": 4925, "hash": "d2d7c1c923ac7e1f2cf641b7b963df4b236a249e9e8c666365065788db654f3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7799d243b40a10194d6457997a8bd81ac8f4d4d3600ca2395b7a25044ee6c409"} -2023-12-15T23:27:42.947Z INFO initializing dbft {"height": 4926, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:42.948Z debug frostfs-node/morph.go:229 new block {"index": 4925} -2023-12-15T23:27:43.569Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4925, "blockHeight": 4925, "took": "7.105939ms"} -2023-12-15T23:27:43.947Z INFO sending PrepareRequest {"height": 4926, "view": 0} -2023-12-15T23:27:43.947Z INFO sending Commit {"height": 4926, "view": 0} -2023-12-15T23:27:43.948Z INFO approving block {"height": 4926, "hash": "4a501f482b8a9a6a1d0ff66f6847647d84fe60a107148f916590eb41f16489b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2d7c1c923ac7e1f2cf641b7b963df4b236a249e9e8c666365065788db654f3e"} -2023-12-15T23:27:43.949Z INFO initializing dbft {"height": 4927, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:43.950Z debug frostfs-node/morph.go:229 new block {"index": 4926} -2023-12-15T23:27:44.569Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4926, "blockHeight": 4926, "took": "7.206381ms"} -2023-12-15T23:27:44.949Z INFO sending PrepareRequest {"height": 4927, "view": 0} -2023-12-15T23:27:44.949Z INFO sending Commit {"height": 4927, "view": 0} -2023-12-15T23:27:44.950Z INFO approving block {"height": 4927, "hash": "edac8d541a8c677849aa9d8ccd52c708f0b9a8462edc25f6bcf6df980fab125e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a501f482b8a9a6a1d0ff66f6847647d84fe60a107148f916590eb41f16489b4"} -2023-12-15T23:27:44.951Z INFO initializing dbft {"height": 4928, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:44.952Z debug frostfs-node/morph.go:229 new block {"index": 4927} -2023-12-15T23:27:45.570Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4927, "blockHeight": 4927, "took": "7.734057ms"} -2023-12-15T23:27:45.951Z INFO sending PrepareRequest {"height": 4928, "view": 0} -2023-12-15T23:27:45.951Z INFO sending Commit {"height": 4928, "view": 0} -2023-12-15T23:27:45.952Z INFO approving block {"height": 4928, "hash": "8132e6b90d8fe6eb0ae56240824677ac3a5ff7800619fd70b1d92630eeaedd48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edac8d541a8c677849aa9d8ccd52c708f0b9a8462edc25f6bcf6df980fab125e"} -2023-12-15T23:27:45.953Z INFO initializing dbft {"height": 4929, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:45.954Z debug frostfs-node/morph.go:229 new block {"index": 4928} -2023-12-15T23:27:46.570Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4928, "blockHeight": 4928, "took": "6.913373ms"} -2023-12-15T23:27:46.953Z INFO sending PrepareRequest {"height": 4929, "view": 0} -2023-12-15T23:27:46.953Z INFO sending Commit {"height": 4929, "view": 0} -2023-12-15T23:27:46.954Z INFO approving block {"height": 4929, "hash": "bd419d83f4d41e4b31901b336b36af53fd6706294d77fa6c85e5449855ca908b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8132e6b90d8fe6eb0ae56240824677ac3a5ff7800619fd70b1d92630eeaedd48"} -2023-12-15T23:27:46.956Z INFO initializing dbft {"height": 4930, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:46.957Z debug frostfs-node/morph.go:229 new block {"index": 4929} -2023-12-15T23:27:47.570Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4929, "blockHeight": 4929, "took": "6.114009ms"} -2023-12-15T23:27:47.955Z INFO sending PrepareRequest {"height": 4930, "view": 0} -2023-12-15T23:27:47.955Z INFO sending Commit {"height": 4930, "view": 0} -2023-12-15T23:27:47.956Z INFO approving block {"height": 4930, "hash": "85e3f8707e7cff8e07f857b4c7c98aae99b20a9af40e4d28250576126e941fa1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd419d83f4d41e4b31901b336b36af53fd6706294d77fa6c85e5449855ca908b"} -2023-12-15T23:27:47.957Z INFO initializing dbft {"height": 4931, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:47.958Z debug frostfs-node/morph.go:229 new block {"index": 4930} -2023-12-15T23:27:48.574Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4930, "blockHeight": 4930, "took": "8.194215ms"} -2023-12-15T23:27:48.957Z INFO sending PrepareRequest {"height": 4931, "view": 0} -2023-12-15T23:27:48.957Z INFO sending Commit {"height": 4931, "view": 0} -2023-12-15T23:27:48.957Z INFO approving block {"height": 4931, "hash": "1c0135e5588da2180515da34c1e8f72ec4835e84bc565533079abde06749b265", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85e3f8707e7cff8e07f857b4c7c98aae99b20a9af40e4d28250576126e941fa1"} -2023-12-15T23:27:48.959Z INFO initializing dbft {"height": 4932, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:48.960Z debug frostfs-node/morph.go:229 new block {"index": 4931} -2023-12-15T23:27:49.574Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4931, "blockHeight": 4931, "took": "7.311073ms"} -2023-12-15T23:27:49.959Z INFO sending PrepareRequest {"height": 4932, "view": 0} -2023-12-15T23:27:49.959Z INFO sending Commit {"height": 4932, "view": 0} -2023-12-15T23:27:49.959Z INFO approving block {"height": 4932, "hash": "c2d066744ad56b41887f4cb74672f2fafd22466b800810cbe21eec553309f3b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c0135e5588da2180515da34c1e8f72ec4835e84bc565533079abde06749b265"} -2023-12-15T23:27:49.961Z INFO initializing dbft {"height": 4933, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:49.961Z debug frostfs-node/morph.go:229 new block {"index": 4932} -2023-12-15T23:27:50.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4932, "blockHeight": 4932, "took": "8.254208ms"} -2023-12-15T23:27:50.961Z INFO sending PrepareRequest {"height": 4933, "view": 0} -2023-12-15T23:27:50.961Z INFO sending Commit {"height": 4933, "view": 0} -2023-12-15T23:27:50.961Z INFO approving block {"height": 4933, "hash": "a0f3dacb751ce239f8154512b83f61a298fc1883fcf485b4513dfbda52ac99aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2d066744ad56b41887f4cb74672f2fafd22466b800810cbe21eec553309f3b8"} -2023-12-15T23:27:50.963Z INFO initializing dbft {"height": 4934, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:50.963Z debug frostfs-node/morph.go:229 new block {"index": 4933} -2023-12-15T23:27:51.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4933, "blockHeight": 4933, "took": "7.132668ms"} -2023-12-15T23:27:51.963Z INFO sending PrepareRequest {"height": 4934, "view": 0} -2023-12-15T23:27:51.963Z INFO sending Commit {"height": 4934, "view": 0} -2023-12-15T23:27:51.963Z INFO approving block {"height": 4934, "hash": "2536508a26949c4ab72bf21d9181a319e3d5111d43210017dd72aec734466764", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0f3dacb751ce239f8154512b83f61a298fc1883fcf485b4513dfbda52ac99aa"} -2023-12-15T23:27:51.965Z INFO initializing dbft {"height": 4935, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:51.966Z debug frostfs-node/morph.go:229 new block {"index": 4934} -2023-12-15T23:27:52.576Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4934, "blockHeight": 4934, "took": "6.695586ms"} -2023-12-15T23:27:52.964Z INFO sending PrepareRequest {"height": 4935, "view": 0} -2023-12-15T23:27:52.965Z INFO sending Commit {"height": 4935, "view": 0} -2023-12-15T23:27:52.965Z INFO approving block {"height": 4935, "hash": "bab7485575174ae9faba2f47a6ea6580ae82f7ac856379286837135c75d563ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2536508a26949c4ab72bf21d9181a319e3d5111d43210017dd72aec734466764"} -2023-12-15T23:27:52.967Z INFO initializing dbft {"height": 4936, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:52.967Z debug frostfs-node/morph.go:229 new block {"index": 4935} -2023-12-15T23:27:53.576Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4935, "blockHeight": 4935, "took": "5.862802ms"} -2023-12-15T23:27:53.966Z INFO sending PrepareRequest {"height": 4936, "view": 0} -2023-12-15T23:27:53.966Z INFO sending Commit {"height": 4936, "view": 0} -2023-12-15T23:27:53.967Z INFO approving block {"height": 4936, "hash": "25594636d408a34e21b2538dec1549a35df79113dda9704960e773c8b135ce4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bab7485575174ae9faba2f47a6ea6580ae82f7ac856379286837135c75d563ab"} -2023-12-15T23:27:53.968Z INFO initializing dbft {"height": 4937, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:53.969Z debug frostfs-node/morph.go:229 new block {"index": 4936} -2023-12-15T23:27:54.577Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4936, "blockHeight": 4936, "took": "6.470071ms"} -2023-12-15T23:27:54.968Z INFO sending PrepareRequest {"height": 4937, "view": 0} -2023-12-15T23:27:54.968Z INFO sending Commit {"height": 4937, "view": 0} -2023-12-15T23:27:54.969Z INFO approving block {"height": 4937, "hash": "b39ba154bfa6c9f22d5e0c94cc04bef80ca4449020d5049836e6381185f1bd8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25594636d408a34e21b2538dec1549a35df79113dda9704960e773c8b135ce4e"} -2023-12-15T23:27:54.970Z INFO initializing dbft {"height": 4938, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:54.971Z debug frostfs-node/morph.go:229 new block {"index": 4937} -2023-12-15T23:27:55.578Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4937, "blockHeight": 4937, "took": "6.153339ms"} -2023-12-15T23:27:55.970Z INFO sending PrepareRequest {"height": 4938, "view": 0} -2023-12-15T23:27:55.970Z INFO sending Commit {"height": 4938, "view": 0} -2023-12-15T23:27:55.971Z INFO approving block {"height": 4938, "hash": "9decca4d14f69e35e3cef52806ee0b2c77a11c89194306cb99a1cd53abb9489e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b39ba154bfa6c9f22d5e0c94cc04bef80ca4449020d5049836e6381185f1bd8d"} -2023-12-15T23:27:55.972Z INFO initializing dbft {"height": 4939, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:55.973Z debug frostfs-node/morph.go:229 new block {"index": 4938} -2023-12-15T23:27:56.582Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4938, "blockHeight": 4938, "took": "9.995102ms"} -2023-12-15T23:27:56.972Z INFO sending PrepareRequest {"height": 4939, "view": 0} -2023-12-15T23:27:56.972Z INFO sending Commit {"height": 4939, "view": 0} -2023-12-15T23:27:56.973Z INFO approving block {"height": 4939, "hash": "1ab1439fbfa11f87227611f3eb03475a9d8b40b9499631b86a8be8c7b4f85dd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9decca4d14f69e35e3cef52806ee0b2c77a11c89194306cb99a1cd53abb9489e"} -2023-12-15T23:27:56.974Z INFO initializing dbft {"height": 4940, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:56.974Z debug frostfs-node/morph.go:229 new block {"index": 4939} -2023-12-15T23:27:57.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4939, "blockHeight": 4939, "took": "9.521486ms"} -2023-12-15T23:27:57.974Z INFO sending PrepareRequest {"height": 4940, "view": 0} -2023-12-15T23:27:57.974Z INFO sending Commit {"height": 4940, "view": 0} -2023-12-15T23:27:57.975Z INFO approving block {"height": 4940, "hash": "073e08be8f50a329afc17427f98ddc6482de7b57a1c4c0d9cdb829ce9c039727", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ab1439fbfa11f87227611f3eb03475a9d8b40b9499631b86a8be8c7b4f85dd7"} -2023-12-15T23:27:57.976Z INFO initializing dbft {"height": 4941, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:57.977Z debug frostfs-node/morph.go:229 new block {"index": 4940} -2023-12-15T23:27:57.982Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 21, "iteration": 1, "error": "no data for 0 iteration in 21 epoch for consumers's trusts"} -2023-12-15T23:27:57.984Z info settlement/calls.go:61 start basic income collection {"epoch": 21} -2023-12-15T23:27:58.586Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4940, "blockHeight": 4940, "took": "11.672241ms"} -2023-12-15T23:27:58.976Z INFO sending PrepareRequest {"height": 4941, "view": 0} -2023-12-15T23:27:58.976Z INFO sending Commit {"height": 4941, "view": 0} -2023-12-15T23:27:58.977Z INFO approving block {"height": 4941, "hash": "bb94e8367dd846db86c25ad3603ec405003f1034d6c4878fed27892b11c347f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "073e08be8f50a329afc17427f98ddc6482de7b57a1c4c0d9cdb829ce9c039727"} -2023-12-15T23:27:58.978Z INFO initializing dbft {"height": 4942, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:58.979Z debug frostfs-node/morph.go:229 new block {"index": 4941} -2023-12-15T23:27:59.586Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4941, "blockHeight": 4941, "took": "10.02677ms"} -2023-12-15T23:27:59.978Z INFO sending PrepareRequest {"height": 4942, "view": 0} -2023-12-15T23:27:59.978Z INFO sending Commit {"height": 4942, "view": 0} -2023-12-15T23:27:59.978Z INFO approving block {"height": 4942, "hash": "b74d275662e95e956130f986f1d4777de67ded0a8615406d97129cb7d8877cf8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb94e8367dd846db86c25ad3603ec405003f1034d6c4878fed27892b11c347f0"} -2023-12-15T23:27:59.979Z INFO initializing dbft {"height": 4943, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:27:59.980Z debug frostfs-node/morph.go:229 new block {"index": 4942} -2023-12-15T23:28:00.584Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4942, "blockHeight": 4942, "took": "7.830527ms"} -2023-12-15T23:28:00.980Z INFO sending PrepareRequest {"height": 4943, "view": 0} -2023-12-15T23:28:00.980Z INFO sending Commit {"height": 4943, "view": 0} -2023-12-15T23:28:00.980Z INFO approving block {"height": 4943, "hash": "0ae46c45016e6944fa0a4164a020d62f4c842ab4f58ccb06aea4372014207cde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b74d275662e95e956130f986f1d4777de67ded0a8615406d97129cb7d8877cf8"} -2023-12-15T23:28:00.981Z INFO initializing dbft {"height": 4944, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:00.982Z debug frostfs-node/morph.go:229 new block {"index": 4943} -2023-12-15T23:28:01.585Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4943, "blockHeight": 4943, "took": "8.06862ms"} -2023-12-15T23:28:01.982Z INFO sending PrepareRequest {"height": 4944, "view": 0} -2023-12-15T23:28:01.982Z INFO sending Commit {"height": 4944, "view": 0} -2023-12-15T23:28:01.982Z INFO approving block {"height": 4944, "hash": "d7aaaf49e6cbfa12ebeb7ae3cde7034b1070d2738eb94f66b377d2002ba47b77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ae46c45016e6944fa0a4164a020d62f4c842ab4f58ccb06aea4372014207cde"} -2023-12-15T23:28:01.983Z INFO initializing dbft {"height": 4945, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:01.984Z debug frostfs-node/morph.go:229 new block {"index": 4944} -2023-12-15T23:28:02.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4944, "blockHeight": 4944, "took": "10.739244ms"} -2023-12-15T23:28:02.983Z INFO sending PrepareRequest {"height": 4945, "view": 0} -2023-12-15T23:28:02.984Z INFO sending Commit {"height": 4945, "view": 0} -2023-12-15T23:28:02.984Z INFO approving block {"height": 4945, "hash": "e1ca186e12b778d89fadb39b5678815d71fcb156c5db8eef4bc100bd6edc9461", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7aaaf49e6cbfa12ebeb7ae3cde7034b1070d2738eb94f66b377d2002ba47b77"} -2023-12-15T23:28:02.986Z INFO initializing dbft {"height": 4946, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:02.987Z debug frostfs-node/morph.go:229 new block {"index": 4945} -2023-12-15T23:28:03.587Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4945, "blockHeight": 4945, "took": "7.285523ms"} -2023-12-15T23:28:03.985Z INFO sending PrepareRequest {"height": 4946, "view": 0} -2023-12-15T23:28:03.985Z INFO sending Commit {"height": 4946, "view": 0} -2023-12-15T23:28:03.986Z INFO approving block {"height": 4946, "hash": "c71dab942b4011755cd923c7c95ed3bbdb036c96a3270ff4260a6b89bfc273ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1ca186e12b778d89fadb39b5678815d71fcb156c5db8eef4bc100bd6edc9461"} -2023-12-15T23:28:03.987Z INFO initializing dbft {"height": 4947, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:03.988Z debug frostfs-node/morph.go:229 new block {"index": 4946} -2023-12-15T23:28:04.587Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4946, "blockHeight": 4946, "took": "6.881167ms"} -2023-12-15T23:28:04.987Z INFO sending PrepareRequest {"height": 4947, "view": 0} -2023-12-15T23:28:04.987Z INFO sending Commit {"height": 4947, "view": 0} -2023-12-15T23:28:04.987Z INFO approving block {"height": 4947, "hash": "cbc74e360a2f731afa9b5222af86d2f2c4ddecd4380a7634b67316b82e3ce514", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c71dab942b4011755cd923c7c95ed3bbdb036c96a3270ff4260a6b89bfc273ae"} -2023-12-15T23:28:04.989Z INFO initializing dbft {"height": 4948, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:04.990Z debug frostfs-node/morph.go:229 new block {"index": 4947} -2023-12-15T23:28:05.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4947, "blockHeight": 4947, "took": "7.655134ms"} -2023-12-15T23:28:05.989Z INFO sending PrepareRequest {"height": 4948, "view": 0} -2023-12-15T23:28:05.989Z INFO sending Commit {"height": 4948, "view": 0} -2023-12-15T23:28:05.990Z INFO approving block {"height": 4948, "hash": "7cfea3ecc848e2a5c62ec3e47754e919568baef0a8d3e180e4869b34ccb7d49b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbc74e360a2f731afa9b5222af86d2f2c4ddecd4380a7634b67316b82e3ce514"} -2023-12-15T23:28:05.991Z INFO initializing dbft {"height": 4949, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:05.992Z debug frostfs-node/morph.go:229 new block {"index": 4948} -2023-12-15T23:28:06.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4948, "blockHeight": 4948, "took": "6.196621ms"} -2023-12-15T23:28:06.991Z INFO sending PrepareRequest {"height": 4949, "view": 0} -2023-12-15T23:28:06.991Z INFO sending Commit {"height": 4949, "view": 0} -2023-12-15T23:28:06.991Z INFO approving block {"height": 4949, "hash": "859d2bcbb15667114b370fa29906c78e7c656d37873f81f1d238448eb7fd4f6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cfea3ecc848e2a5c62ec3e47754e919568baef0a8d3e180e4869b34ccb7d49b"} -2023-12-15T23:28:06.993Z INFO initializing dbft {"height": 4950, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:06.994Z debug frostfs-node/morph.go:229 new block {"index": 4949} -2023-12-15T23:28:07.591Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4949, "blockHeight": 4949, "took": "6.361084ms"} -2023-12-15T23:28:07.993Z INFO sending PrepareRequest {"height": 4950, "view": 0} -2023-12-15T23:28:07.993Z INFO sending Commit {"height": 4950, "view": 0} -2023-12-15T23:28:07.994Z INFO approving block {"height": 4950, "hash": "cb40951af48b792eb39d9540362c6fdd59e479fc033db4077fa18103a3bac28b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "859d2bcbb15667114b370fa29906c78e7c656d37873f81f1d238448eb7fd4f6d"} -2023-12-15T23:28:07.995Z INFO initializing dbft {"height": 4951, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:07.996Z debug frostfs-node/morph.go:229 new block {"index": 4950} -2023-12-15T23:28:08.592Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4950, "blockHeight": 4950, "took": "6.419117ms"} -2023-12-15T23:28:08.996Z INFO sending PrepareRequest {"height": 4951, "view": 0} -2023-12-15T23:28:08.996Z INFO sending Commit {"height": 4951, "view": 0} -2023-12-15T23:28:08.997Z INFO approving block {"height": 4951, "hash": "b2a1ea74f35badfd93149760fc23df3b53cee7b1def18154d52d5985f9404312", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb40951af48b792eb39d9540362c6fdd59e479fc033db4077fa18103a3bac28b"} -2023-12-15T23:28:08.998Z INFO initializing dbft {"height": 4952, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:08.999Z debug frostfs-node/morph.go:229 new block {"index": 4951} -2023-12-15T23:28:09.593Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4951, "blockHeight": 4951, "took": "6.284953ms"} -2023-12-15T23:28:09.998Z INFO sending PrepareRequest {"height": 4952, "view": 0} -2023-12-15T23:28:09.999Z INFO sending Commit {"height": 4952, "view": 0} -2023-12-15T23:28:09.999Z INFO approving block {"height": 4952, "hash": "c04a5d2fe9d930d93e639e7cb85df06388768e08431e9a8c636a023807b0e95a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2a1ea74f35badfd93149760fc23df3b53cee7b1def18154d52d5985f9404312"} -2023-12-15T23:28:10.000Z INFO initializing dbft {"height": 4953, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:10.001Z debug frostfs-node/morph.go:229 new block {"index": 4952} -2023-12-15T23:28:10.594Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4952, "blockHeight": 4952, "took": "7.072736ms"} -2023-12-15T23:28:11.000Z INFO sending PrepareRequest {"height": 4953, "view": 0} -2023-12-15T23:28:11.000Z INFO sending Commit {"height": 4953, "view": 0} -2023-12-15T23:28:11.001Z INFO approving block {"height": 4953, "hash": "a88bf48f70fa19277dd1d37061e10cc5b9fcc44adecf8d4724f5942939075abb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c04a5d2fe9d930d93e639e7cb85df06388768e08431e9a8c636a023807b0e95a"} -2023-12-15T23:28:11.002Z INFO initializing dbft {"height": 4954, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:11.003Z debug frostfs-node/morph.go:229 new block {"index": 4953} -2023-12-15T23:28:11.598Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4953, "blockHeight": 4953, "took": "10.464948ms"} -2023-12-15T23:28:12.002Z INFO sending PrepareRequest {"height": 4954, "view": 0} -2023-12-15T23:28:12.003Z INFO sending Commit {"height": 4954, "view": 0} -2023-12-15T23:28:12.003Z INFO approving block {"height": 4954, "hash": "ae717eabdeb259d9905d0ff6474106fb68be339c15da1744df20801355f57956", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a88bf48f70fa19277dd1d37061e10cc5b9fcc44adecf8d4724f5942939075abb"} -2023-12-15T23:28:12.004Z INFO initializing dbft {"height": 4955, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:12.005Z debug frostfs-node/morph.go:229 new block {"index": 4954} -2023-12-15T23:28:12.594Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4954, "blockHeight": 4954, "took": "5.47156ms"} -2023-12-15T23:28:13.004Z INFO sending PrepareRequest {"height": 4955, "view": 0} -2023-12-15T23:28:13.004Z INFO sending Commit {"height": 4955, "view": 0} -2023-12-15T23:28:13.005Z INFO approving block {"height": 4955, "hash": "d401d1712c715e67cfc28672f892dd32a053ce20d82c8915c60b1ca043a1c014", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae717eabdeb259d9905d0ff6474106fb68be339c15da1744df20801355f57956"} -2023-12-15T23:28:13.007Z INFO initializing dbft {"height": 4956, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:13.007Z debug frostfs-node/morph.go:229 new block {"index": 4955} -2023-12-15T23:28:13.596Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4955, "blockHeight": 4955, "took": "6.501809ms"} -2023-12-15T23:28:14.005Z INFO sending PrepareRequest {"height": 4956, "view": 0} -2023-12-15T23:28:14.006Z INFO sending Commit {"height": 4956, "view": 0} -2023-12-15T23:28:14.006Z INFO approving block {"height": 4956, "hash": "e0856e2a68ab8538cee8d37968b61ce8321a585b05a885723b868376b3272f6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d401d1712c715e67cfc28672f892dd32a053ce20d82c8915c60b1ca043a1c014"} -2023-12-15T23:28:14.008Z INFO initializing dbft {"height": 4957, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:14.009Z debug frostfs-node/morph.go:229 new block {"index": 4956} -2023-12-15T23:28:14.597Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4956, "blockHeight": 4956, "took": "6.479589ms"} -2023-12-15T23:28:15.008Z INFO sending PrepareRequest {"height": 4957, "view": 0} -2023-12-15T23:28:15.008Z INFO sending Commit {"height": 4957, "view": 0} -2023-12-15T23:28:15.008Z INFO approving block {"height": 4957, "hash": "424414e9110d289ad40cb8481ad41968183209c643449e040b69a9a14630530e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0856e2a68ab8538cee8d37968b61ce8321a585b05a885723b868376b3272f6a"} -2023-12-15T23:28:15.009Z INFO initializing dbft {"height": 4958, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:15.011Z debug frostfs-node/morph.go:229 new block {"index": 4957} -2023-12-15T23:28:15.598Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4957, "blockHeight": 4957, "took": "6.557892ms"} -2023-12-15T23:28:16.010Z INFO sending PrepareRequest {"height": 4958, "view": 0} -2023-12-15T23:28:16.010Z INFO sending Commit {"height": 4958, "view": 0} -2023-12-15T23:28:16.011Z INFO approving block {"height": 4958, "hash": "de2f4fb8564b779ffeb189f3c8b9e914ad8e0c1c3e52fa4ed44329c489f608ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "424414e9110d289ad40cb8481ad41968183209c643449e040b69a9a14630530e"} -2023-12-15T23:28:16.012Z INFO initializing dbft {"height": 4959, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:16.013Z debug frostfs-node/morph.go:229 new block {"index": 4958} -2023-12-15T23:28:16.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4958, "blockHeight": 4958, "took": "14.880048ms"} -2023-12-15T23:28:17.012Z INFO sending PrepareRequest {"height": 4959, "view": 0} -2023-12-15T23:28:17.012Z INFO sending Commit {"height": 4959, "view": 0} -2023-12-15T23:28:17.013Z INFO approving block {"height": 4959, "hash": "6b6bc4241d40a134179db86871beb4ad04c7303ef43a318e9e065cce3186c613", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de2f4fb8564b779ffeb189f3c8b9e914ad8e0c1c3e52fa4ed44329c489f608ee"} -2023-12-15T23:28:17.018Z INFO initializing dbft {"height": 4960, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:17.019Z debug frostfs-node/morph.go:229 new block {"index": 4959} -2023-12-15T23:28:17.600Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4959, "blockHeight": 4959, "took": "6.617825ms"} -2023-12-15T23:28:18.014Z INFO sending PrepareRequest {"height": 4960, "view": 0} -2023-12-15T23:28:18.014Z INFO sending Commit {"height": 4960, "view": 0} -2023-12-15T23:28:18.014Z INFO approving block {"height": 4960, "hash": "17b7fa6c9c8b758ce54859578cccdc2a34a3948cc1d0fbfbc8c3109f24765694", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b6bc4241d40a134179db86871beb4ad04c7303ef43a318e9e065cce3186c613"} -2023-12-15T23:28:18.016Z INFO initializing dbft {"height": 4961, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:18.017Z debug frostfs-node/morph.go:229 new block {"index": 4960} -2023-12-15T23:28:18.601Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4960, "blockHeight": 4960, "took": "6.696675ms"} -2023-12-15T23:28:19.015Z INFO sending PrepareRequest {"height": 4961, "view": 0} -2023-12-15T23:28:19.016Z INFO sending Commit {"height": 4961, "view": 0} -2023-12-15T23:28:19.016Z INFO approving block {"height": 4961, "hash": "a422850986796196b914660e02454aeb8336a71aacc514422cc7d978ebec5fd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17b7fa6c9c8b758ce54859578cccdc2a34a3948cc1d0fbfbc8c3109f24765694"} -2023-12-15T23:28:19.018Z INFO initializing dbft {"height": 4962, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:19.018Z debug frostfs-node/morph.go:229 new block {"index": 4961} -2023-12-15T23:28:19.605Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4961, "blockHeight": 4961, "took": "10.026262ms"} -2023-12-15T23:28:20.017Z INFO sending PrepareRequest {"height": 4962, "view": 0} -2023-12-15T23:28:20.017Z INFO sending Commit {"height": 4962, "view": 0} -2023-12-15T23:28:20.018Z INFO approving block {"height": 4962, "hash": "9514a40c9490a352bd628db479ca7c4b86ed49277c2c22dafcce0979e15e56f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a422850986796196b914660e02454aeb8336a71aacc514422cc7d978ebec5fd4"} -2023-12-15T23:28:20.020Z INFO initializing dbft {"height": 4963, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:20.020Z debug frostfs-node/morph.go:229 new block {"index": 4962} -2023-12-15T23:28:20.602Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4962, "blockHeight": 4962, "took": "6.374856ms"} -2023-12-15T23:28:21.019Z INFO sending PrepareRequest {"height": 4963, "view": 0} -2023-12-15T23:28:21.019Z INFO sending Commit {"height": 4963, "view": 0} -2023-12-15T23:28:21.020Z INFO approving block {"height": 4963, "hash": "bf90e3869f7421a7c573350d42e56ec7c99848e4d3a7308f5c381fa92a1a7c4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9514a40c9490a352bd628db479ca7c4b86ed49277c2c22dafcce0979e15e56f5"} -2023-12-15T23:28:21.021Z INFO initializing dbft {"height": 4964, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:21.022Z debug frostfs-node/morph.go:229 new block {"index": 4963} -2023-12-15T23:28:21.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4963, "blockHeight": 4963, "took": "10.286139ms"} -2023-12-15T23:28:22.021Z INFO sending PrepareRequest {"height": 4964, "view": 0} -2023-12-15T23:28:22.021Z INFO sending Commit {"height": 4964, "view": 0} -2023-12-15T23:28:22.021Z INFO approving block {"height": 4964, "hash": "8145e8c684331ba4cfe9240a891050edf2896c40240605cc6e2b764bc9fd0743", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf90e3869f7421a7c573350d42e56ec7c99848e4d3a7308f5c381fa92a1a7c4b"} -2023-12-15T23:28:22.023Z INFO initializing dbft {"height": 4965, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:22.023Z debug frostfs-node/morph.go:229 new block {"index": 4964} -2023-12-15T23:28:22.603Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4964, "blockHeight": 4964, "took": "5.703216ms"} -2023-12-15T23:28:23.023Z INFO sending PrepareRequest {"height": 4965, "view": 0} -2023-12-15T23:28:23.023Z INFO sending Commit {"height": 4965, "view": 0} -2023-12-15T23:28:23.023Z INFO approving block {"height": 4965, "hash": "5c7aa93851e70d56e4373028f40cc126ea132fbbf99a02157b0f12a13bf79ff3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8145e8c684331ba4cfe9240a891050edf2896c40240605cc6e2b764bc9fd0743"} -2023-12-15T23:28:23.025Z INFO initializing dbft {"height": 4966, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:23.026Z debug frostfs-node/morph.go:229 new block {"index": 4965} -2023-12-15T23:28:23.608Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4965, "blockHeight": 4965, "took": "9.493098ms"} -2023-12-15T23:28:24.025Z INFO sending PrepareRequest {"height": 4966, "view": 0} -2023-12-15T23:28:24.025Z INFO sending Commit {"height": 4966, "view": 0} -2023-12-15T23:28:24.026Z INFO approving block {"height": 4966, "hash": "ff9108925e0974a317443a13081484869457d6d989c9bc949411ffb93cd2e4d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c7aa93851e70d56e4373028f40cc126ea132fbbf99a02157b0f12a13bf79ff3"} -2023-12-15T23:28:24.027Z INFO initializing dbft {"height": 4967, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:24.028Z debug frostfs-node/morph.go:229 new block {"index": 4966} -2023-12-15T23:28:24.606Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4966, "blockHeight": 4966, "took": "7.188629ms"} -2023-12-15T23:28:25.027Z INFO sending PrepareRequest {"height": 4967, "view": 0} -2023-12-15T23:28:25.027Z INFO sending Commit {"height": 4967, "view": 0} -2023-12-15T23:28:25.028Z INFO approving block {"height": 4967, "hash": "6a9442923335d01ef687b2ba1c57430fd9e254a339898cb7b7f2df1df4103d18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff9108925e0974a317443a13081484869457d6d989c9bc949411ffb93cd2e4d7"} -2023-12-15T23:28:25.029Z INFO initializing dbft {"height": 4968, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:25.030Z debug frostfs-node/morph.go:229 new block {"index": 4967} -2023-12-15T23:28:25.034Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:28:25.039Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:28:25.039Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:28:25.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4967, "blockHeight": 4967, "took": "7.19206ms"} -2023-12-15T23:28:26.030Z INFO sending PrepareRequest {"height": 4968, "view": 0} -2023-12-15T23:28:26.030Z INFO sending Commit {"height": 4968, "view": 0} -2023-12-15T23:28:26.030Z INFO approving block {"height": 4968, "hash": "e72a7ce8beb00d37bda59aa581946d4995152daa4dd7bfc193ef926fa9f02a2e", "tx_count": 2, "merkle": "dac88ecc39135d9efa7a8b8f6b892f22c37869c2bff4006ab24b8afa688549d9", "prev": "6a9442923335d01ef687b2ba1c57430fd9e254a339898cb7b7f2df1df4103d18"} -2023-12-15T23:28:26.031Z INFO runtime log {"tx": "c645a9dfa1a09875b791968c09abdbd0114f4e4f79b5e37679f5ce53e6c3328e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:28:26.031Z INFO runtime log {"tx": "c645a9dfa1a09875b791968c09abdbd0114f4e4f79b5e37679f5ce53e6c3328e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:28:26.033Z INFO initializing dbft {"height": 4969, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:26.035Z debug frostfs-node/morph.go:229 new block {"index": 4968} -2023-12-15T23:28:26.610Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 4968, "blockHeight": 4968, "took": "9.090794ms"} -2023-12-15T23:28:27.032Z INFO sending PrepareRequest {"height": 4969, "view": 0} -2023-12-15T23:28:27.032Z INFO sending Commit {"height": 4969, "view": 0} -2023-12-15T23:28:27.033Z INFO approving block {"height": 4969, "hash": "a4fbe6fe67b96b77e7b6b0807211bfcff1f7a483dc4a8c0400e9dea6e9238594", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e72a7ce8beb00d37bda59aa581946d4995152daa4dd7bfc193ef926fa9f02a2e"} -2023-12-15T23:28:27.034Z INFO initializing dbft {"height": 4970, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:27.035Z debug frostfs-node/morph.go:229 new block {"index": 4969} -2023-12-15T23:28:27.609Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4969, "blockHeight": 4969, "took": "7.150168ms"} -2023-12-15T23:28:28.034Z INFO sending PrepareRequest {"height": 4970, "view": 0} -2023-12-15T23:28:28.034Z INFO sending Commit {"height": 4970, "view": 0} -2023-12-15T23:28:28.034Z INFO approving block {"height": 4970, "hash": "388775d58c913215f46d54227f1a5729a6f5b5b0ac5186d8eaabf1025a022c81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4fbe6fe67b96b77e7b6b0807211bfcff1f7a483dc4a8c0400e9dea6e9238594"} -2023-12-15T23:28:28.036Z INFO initializing dbft {"height": 4971, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:28.037Z debug frostfs-node/morph.go:229 new block {"index": 4970} -2023-12-15T23:28:28.609Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4970, "blockHeight": 4970, "took": "6.43876ms"} -2023-12-15T23:28:29.036Z INFO sending PrepareRequest {"height": 4971, "view": 0} -2023-12-15T23:28:29.036Z INFO sending Commit {"height": 4971, "view": 0} -2023-12-15T23:28:29.037Z INFO approving block {"height": 4971, "hash": "ffd0223eb95407eb00dd3f0555f3e4cb235cd6e8a6be46901864ed59b273d836", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "388775d58c913215f46d54227f1a5729a6f5b5b0ac5186d8eaabf1025a022c81"} -2023-12-15T23:28:29.038Z INFO initializing dbft {"height": 4972, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:29.039Z debug frostfs-node/morph.go:229 new block {"index": 4971} -2023-12-15T23:28:29.610Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4971, "blockHeight": 4971, "took": "6.597719ms"} -2023-12-15T23:28:30.038Z INFO sending PrepareRequest {"height": 4972, "view": 0} -2023-12-15T23:28:30.038Z INFO sending Commit {"height": 4972, "view": 0} -2023-12-15T23:28:30.038Z INFO approving block {"height": 4972, "hash": "923a512a80663228e6a279e540355c2f252fb5d0edc191c6f0be960d35308388", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffd0223eb95407eb00dd3f0555f3e4cb235cd6e8a6be46901864ed59b273d836"} -2023-12-15T23:28:30.040Z INFO initializing dbft {"height": 4973, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:30.041Z debug frostfs-node/morph.go:229 new block {"index": 4972} -2023-12-15T23:28:30.611Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4972, "blockHeight": 4972, "took": "6.742759ms"} -2023-12-15T23:28:31.040Z INFO sending PrepareRequest {"height": 4973, "view": 0} -2023-12-15T23:28:31.040Z INFO sending Commit {"height": 4973, "view": 0} -2023-12-15T23:28:31.040Z INFO approving block {"height": 4973, "hash": "183ab8741f537349adc00ba789c9f344a654e6440d4e39521826d1c6ed03547a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "923a512a80663228e6a279e540355c2f252fb5d0edc191c6f0be960d35308388"} -2023-12-15T23:28:31.042Z INFO initializing dbft {"height": 4974, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:31.043Z debug frostfs-node/morph.go:229 new block {"index": 4973} -2023-12-15T23:28:31.612Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4973, "blockHeight": 4973, "took": "6.249072ms"} -2023-12-15T23:28:32.042Z INFO sending PrepareRequest {"height": 4974, "view": 0} -2023-12-15T23:28:32.042Z INFO sending Commit {"height": 4974, "view": 0} -2023-12-15T23:28:32.042Z INFO approving block {"height": 4974, "hash": "072f06134e81eb39a0d475a0286d76d9a57ce5ceecbdfa884f468d0e36ab5b0c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "183ab8741f537349adc00ba789c9f344a654e6440d4e39521826d1c6ed03547a"} -2023-12-15T23:28:32.044Z INFO initializing dbft {"height": 4975, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:32.045Z debug frostfs-node/morph.go:229 new block {"index": 4974} -2023-12-15T23:28:32.618Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4974, "blockHeight": 4974, "took": "11.832443ms"} -2023-12-15T23:28:33.043Z INFO sending PrepareRequest {"height": 4975, "view": 0} -2023-12-15T23:28:33.044Z INFO sending Commit {"height": 4975, "view": 0} -2023-12-15T23:28:33.044Z INFO approving block {"height": 4975, "hash": "a902b41dbc4dfb0a52f84d09591d200852cd54a81e6ff01f8922dc29161d63ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "072f06134e81eb39a0d475a0286d76d9a57ce5ceecbdfa884f468d0e36ab5b0c"} -2023-12-15T23:28:33.046Z INFO initializing dbft {"height": 4976, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:33.046Z debug frostfs-node/morph.go:229 new block {"index": 4975} -2023-12-15T23:28:33.614Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4975, "blockHeight": 4975, "took": "7.753525ms"} -2023-12-15T23:28:34.045Z INFO sending PrepareRequest {"height": 4976, "view": 0} -2023-12-15T23:28:34.045Z INFO sending Commit {"height": 4976, "view": 0} -2023-12-15T23:28:34.046Z INFO approving block {"height": 4976, "hash": "4237fd98dd2b2ad5a2db88e323798161f14a50485f8e3bc3730f2f329ef80d7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a902b41dbc4dfb0a52f84d09591d200852cd54a81e6ff01f8922dc29161d63ba"} -2023-12-15T23:28:34.048Z INFO initializing dbft {"height": 4977, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:34.049Z debug frostfs-node/morph.go:229 new block {"index": 4976} -2023-12-15T23:28:34.615Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4976, "blockHeight": 4976, "took": "6.714065ms"} -2023-12-15T23:28:35.047Z INFO sending PrepareRequest {"height": 4977, "view": 0} -2023-12-15T23:28:35.048Z INFO sending Commit {"height": 4977, "view": 0} -2023-12-15T23:28:35.048Z INFO approving block {"height": 4977, "hash": "042da1d705fd9215007528e1d38a2543efb2af4b7d52f2541c780c513bf303ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4237fd98dd2b2ad5a2db88e323798161f14a50485f8e3bc3730f2f329ef80d7b"} -2023-12-15T23:28:35.050Z INFO initializing dbft {"height": 4978, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:35.050Z debug frostfs-node/morph.go:229 new block {"index": 4977} -2023-12-15T23:28:35.617Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4977, "blockHeight": 4977, "took": "8.055652ms"} -2023-12-15T23:28:36.050Z INFO sending PrepareRequest {"height": 4978, "view": 0} -2023-12-15T23:28:36.050Z INFO sending Commit {"height": 4978, "view": 0} -2023-12-15T23:28:36.050Z INFO approving block {"height": 4978, "hash": "6c98146c13ea4e1f5c80f0f43314b874798ee82afb4a270540b097a5ce9d44a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "042da1d705fd9215007528e1d38a2543efb2af4b7d52f2541c780c513bf303ed"} -2023-12-15T23:28:36.052Z INFO initializing dbft {"height": 4979, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:36.053Z debug frostfs-node/morph.go:229 new block {"index": 4978} -2023-12-15T23:28:36.616Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4978, "blockHeight": 4978, "took": "6.250182ms"} -2023-12-15T23:28:37.051Z INFO sending PrepareRequest {"height": 4979, "view": 0} -2023-12-15T23:28:37.051Z INFO sending Commit {"height": 4979, "view": 0} -2023-12-15T23:28:37.052Z INFO approving block {"height": 4979, "hash": "5f15170fcd501cd290ab931ae62acc46b38b427108a350c001b4a067cc7c5649", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c98146c13ea4e1f5c80f0f43314b874798ee82afb4a270540b097a5ce9d44a5"} -2023-12-15T23:28:37.053Z INFO initializing dbft {"height": 4980, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:37.054Z debug frostfs-node/morph.go:229 new block {"index": 4979} -2023-12-15T23:28:37.617Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4979, "blockHeight": 4979, "took": "6.52364ms"} -2023-12-15T23:28:38.053Z INFO sending PrepareRequest {"height": 4980, "view": 0} -2023-12-15T23:28:38.053Z INFO sending Commit {"height": 4980, "view": 0} -2023-12-15T23:28:38.053Z INFO approving block {"height": 4980, "hash": "129d228f1f9516f40b6bd55a05c8ffe3aed14e64797628080138751801e62f2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f15170fcd501cd290ab931ae62acc46b38b427108a350c001b4a067cc7c5649"} -2023-12-15T23:28:38.055Z INFO initializing dbft {"height": 4981, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:38.056Z debug frostfs-node/morph.go:229 new block {"index": 4980} -2023-12-15T23:28:38.619Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4980, "blockHeight": 4980, "took": "7.845868ms"} -2023-12-15T23:28:39.054Z INFO sending PrepareRequest {"height": 4981, "view": 0} -2023-12-15T23:28:39.055Z INFO sending Commit {"height": 4981, "view": 0} -2023-12-15T23:28:39.055Z INFO approving block {"height": 4981, "hash": "613ccf4316ed27b2268dc5d52e813f28773567839d37f6d6c207f9012c92a345", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "129d228f1f9516f40b6bd55a05c8ffe3aed14e64797628080138751801e62f2c"} -2023-12-15T23:28:39.057Z INFO initializing dbft {"height": 4982, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:39.058Z debug frostfs-node/morph.go:229 new block {"index": 4981} -2023-12-15T23:28:39.619Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4981, "blockHeight": 4981, "took": "6.182062ms"} -2023-12-15T23:28:40.057Z INFO sending PrepareRequest {"height": 4982, "view": 0} -2023-12-15T23:28:40.057Z INFO sending Commit {"height": 4982, "view": 0} -2023-12-15T23:28:40.059Z INFO approving block {"height": 4982, "hash": "fa93599cbfb6b0aafb8019519efe6159c9e4868b4138aaf62294eadeb6ac5c7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "613ccf4316ed27b2268dc5d52e813f28773567839d37f6d6c207f9012c92a345"} -2023-12-15T23:28:40.062Z INFO initializing dbft {"height": 4983, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:40.064Z debug frostfs-node/morph.go:229 new block {"index": 4982} -2023-12-15T23:28:40.621Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4982, "blockHeight": 4982, "took": "7.537251ms"} -2023-12-15T23:28:41.060Z INFO sending PrepareRequest {"height": 4983, "view": 0} -2023-12-15T23:28:41.060Z INFO sending Commit {"height": 4983, "view": 0} -2023-12-15T23:28:41.060Z INFO approving block {"height": 4983, "hash": "a9fc57de71eb6300da8535225e079802e7fcc814acdc0ed3c0809356575e782e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa93599cbfb6b0aafb8019519efe6159c9e4868b4138aaf62294eadeb6ac5c7a"} -2023-12-15T23:28:41.062Z INFO initializing dbft {"height": 4984, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:41.063Z debug frostfs-node/morph.go:229 new block {"index": 4983} -2023-12-15T23:28:41.619Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4983, "blockHeight": 4983, "took": "5.083417ms"} -2023-12-15T23:28:42.062Z INFO sending PrepareRequest {"height": 4984, "view": 0} -2023-12-15T23:28:42.062Z INFO sending Commit {"height": 4984, "view": 0} -2023-12-15T23:28:42.062Z INFO approving block {"height": 4984, "hash": "a203b4623116ed54bfa0b38cb172f820dffaa4818565272ae5737abe0652a3c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9fc57de71eb6300da8535225e079802e7fcc814acdc0ed3c0809356575e782e"} -2023-12-15T23:28:42.065Z INFO initializing dbft {"height": 4985, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:42.066Z debug frostfs-node/morph.go:229 new block {"index": 4984} -2023-12-15T23:28:42.621Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4984, "blockHeight": 4984, "took": "6.09825ms"} -2023-12-15T23:28:43.063Z INFO sending PrepareRequest {"height": 4985, "view": 0} -2023-12-15T23:28:43.064Z INFO sending Commit {"height": 4985, "view": 0} -2023-12-15T23:28:43.064Z INFO approving block {"height": 4985, "hash": "bf50200e124467afc89e25768d26cb02ed6c54fa2ed75fa31620a095eae9f45e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a203b4623116ed54bfa0b38cb172f820dffaa4818565272ae5737abe0652a3c9"} -2023-12-15T23:28:43.066Z INFO initializing dbft {"height": 4986, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:43.066Z debug frostfs-node/morph.go:229 new block {"index": 4985} -2023-12-15T23:28:43.622Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4985, "blockHeight": 4985, "took": "5.757143ms"} -2023-12-15T23:28:44.065Z INFO sending PrepareRequest {"height": 4986, "view": 0} -2023-12-15T23:28:44.065Z INFO sending Commit {"height": 4986, "view": 0} -2023-12-15T23:28:44.066Z INFO approving block {"height": 4986, "hash": "d5e717dc9e8a8bfecd7d52837460dc045280a739435b1ced5b366284d1e878b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf50200e124467afc89e25768d26cb02ed6c54fa2ed75fa31620a095eae9f45e"} -2023-12-15T23:28:44.068Z INFO initializing dbft {"height": 4987, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:44.069Z debug frostfs-node/morph.go:229 new block {"index": 4986} -2023-12-15T23:28:44.623Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4986, "blockHeight": 4986, "took": "6.129708ms"} -2023-12-15T23:28:45.067Z INFO sending PrepareRequest {"height": 4987, "view": 0} -2023-12-15T23:28:45.067Z INFO sending Commit {"height": 4987, "view": 0} -2023-12-15T23:28:45.068Z INFO approving block {"height": 4987, "hash": "9e99b4017b8ad634039c2e2c557151c820e0e9405c331c63fb0fa1442104a7d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5e717dc9e8a8bfecd7d52837460dc045280a739435b1ced5b366284d1e878b5"} -2023-12-15T23:28:45.070Z INFO initializing dbft {"height": 4988, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:45.071Z debug frostfs-node/morph.go:229 new block {"index": 4987} -2023-12-15T23:28:45.624Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4987, "blockHeight": 4987, "took": "6.224631ms"} -2023-12-15T23:28:46.069Z INFO sending PrepareRequest {"height": 4988, "view": 0} -2023-12-15T23:28:46.070Z INFO sending Commit {"height": 4988, "view": 0} -2023-12-15T23:28:46.070Z INFO approving block {"height": 4988, "hash": "02b7638aaaf1e06b55baf9101671b15d4fb118043996a17e8201abe02e65a816", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e99b4017b8ad634039c2e2c557151c820e0e9405c331c63fb0fa1442104a7d7"} -2023-12-15T23:28:46.072Z INFO initializing dbft {"height": 4989, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:46.072Z debug frostfs-node/morph.go:229 new block {"index": 4988} -2023-12-15T23:28:46.626Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4988, "blockHeight": 4988, "took": "6.857259ms"} -2023-12-15T23:28:47.071Z INFO sending PrepareRequest {"height": 4989, "view": 0} -2023-12-15T23:28:47.071Z INFO sending Commit {"height": 4989, "view": 0} -2023-12-15T23:28:47.072Z INFO approving block {"height": 4989, "hash": "5c6bd461150f4012669b3e83c0e067b333c65cae19a67b0280a66bb881d2023b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02b7638aaaf1e06b55baf9101671b15d4fb118043996a17e8201abe02e65a816"} -2023-12-15T23:28:47.073Z INFO initializing dbft {"height": 4990, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:47.074Z debug frostfs-node/morph.go:229 new block {"index": 4989} -2023-12-15T23:28:47.627Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4989, "blockHeight": 4989, "took": "6.545707ms"} -2023-12-15T23:28:48.073Z INFO sending PrepareRequest {"height": 4990, "view": 0} -2023-12-15T23:28:48.073Z INFO sending Commit {"height": 4990, "view": 0} -2023-12-15T23:28:48.073Z INFO approving block {"height": 4990, "hash": "d62e3a4d7fe1f5683ed66374032cde173dcc4ed240d83d4994f7cc1f67d3f2b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c6bd461150f4012669b3e83c0e067b333c65cae19a67b0280a66bb881d2023b"} -2023-12-15T23:28:48.075Z INFO initializing dbft {"height": 4991, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:48.076Z debug frostfs-node/morph.go:229 new block {"index": 4990} -2023-12-15T23:28:48.631Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4990, "blockHeight": 4990, "took": "10.10324ms"} -2023-12-15T23:28:49.074Z INFO sending PrepareRequest {"height": 4991, "view": 0} -2023-12-15T23:28:49.075Z INFO sending Commit {"height": 4991, "view": 0} -2023-12-15T23:28:49.075Z INFO approving block {"height": 4991, "hash": "e187889cda71bc4d74b208f431d58fe3ae3f15069de47caba3e7c400f6bdc5d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d62e3a4d7fe1f5683ed66374032cde173dcc4ed240d83d4994f7cc1f67d3f2b4"} -2023-12-15T23:28:49.077Z INFO initializing dbft {"height": 4992, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:49.078Z debug frostfs-node/morph.go:229 new block {"index": 4991} -2023-12-15T23:28:49.631Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4991, "blockHeight": 4991, "took": "9.895954ms"} -2023-12-15T23:28:50.077Z INFO sending PrepareRequest {"height": 4992, "view": 0} -2023-12-15T23:28:50.077Z INFO sending Commit {"height": 4992, "view": 0} -2023-12-15T23:28:50.077Z INFO approving block {"height": 4992, "hash": "c336a5f7071aeac61148ffe58e3179b13d3d1239f72e2ac039903543450dd14f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e187889cda71bc4d74b208f431d58fe3ae3f15069de47caba3e7c400f6bdc5d5"} -2023-12-15T23:28:50.079Z INFO initializing dbft {"height": 4993, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:50.080Z debug frostfs-node/morph.go:229 new block {"index": 4992} -2023-12-15T23:28:50.631Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4992, "blockHeight": 4992, "took": "8.926465ms"} -2023-12-15T23:28:51.078Z INFO sending PrepareRequest {"height": 4993, "view": 0} -2023-12-15T23:28:51.079Z INFO sending Commit {"height": 4993, "view": 0} -2023-12-15T23:28:51.079Z INFO approving block {"height": 4993, "hash": "928781c7c331c52c2c51a0177f0201b63eb423d6cdd7ca5a261a2a025a754b3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c336a5f7071aeac61148ffe58e3179b13d3d1239f72e2ac039903543450dd14f"} -2023-12-15T23:28:51.080Z INFO initializing dbft {"height": 4994, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:51.081Z debug frostfs-node/morph.go:229 new block {"index": 4993} -2023-12-15T23:28:51.630Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4993, "blockHeight": 4993, "took": "7.095714ms"} -2023-12-15T23:28:52.080Z INFO sending PrepareRequest {"height": 4994, "view": 0} -2023-12-15T23:28:52.081Z INFO sending Commit {"height": 4994, "view": 0} -2023-12-15T23:28:52.081Z INFO approving block {"height": 4994, "hash": "39a734f8a697456f96e5270d0f701bdc7d091ae0b6001b8491e55650e3a218c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "928781c7c331c52c2c51a0177f0201b63eb423d6cdd7ca5a261a2a025a754b3c"} -2023-12-15T23:28:52.082Z INFO initializing dbft {"height": 4995, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:52.083Z debug frostfs-node/morph.go:229 new block {"index": 4994} -2023-12-15T23:28:52.633Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4994, "blockHeight": 4994, "took": "9.385841ms"} -2023-12-15T23:28:53.082Z INFO sending PrepareRequest {"height": 4995, "view": 0} -2023-12-15T23:28:53.082Z INFO sending Commit {"height": 4995, "view": 0} -2023-12-15T23:28:53.083Z INFO approving block {"height": 4995, "hash": "a07e19f7545ce8d2c9fe2f200cb80de494d6929e647137f413cdbf8a61678392", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39a734f8a697456f96e5270d0f701bdc7d091ae0b6001b8491e55650e3a218c9"} -2023-12-15T23:28:53.084Z INFO initializing dbft {"height": 4996, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:53.085Z debug frostfs-node/morph.go:229 new block {"index": 4995} -2023-12-15T23:28:53.631Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4995, "blockHeight": 4995, "took": "6.188862ms"} -2023-12-15T23:28:54.084Z INFO sending PrepareRequest {"height": 4996, "view": 0} -2023-12-15T23:28:54.084Z INFO sending Commit {"height": 4996, "view": 0} -2023-12-15T23:28:54.084Z INFO approving block {"height": 4996, "hash": "38938cf9625cea6cb330fd3d0d016aceee08c39b759b54eec62c9511e177b668", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a07e19f7545ce8d2c9fe2f200cb80de494d6929e647137f413cdbf8a61678392"} -2023-12-15T23:28:54.086Z INFO initializing dbft {"height": 4997, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:54.087Z debug frostfs-node/morph.go:229 new block {"index": 4996} -2023-12-15T23:28:54.632Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4996, "blockHeight": 4996, "took": "6.574622ms"} -2023-12-15T23:28:55.086Z INFO sending PrepareRequest {"height": 4997, "view": 0} -2023-12-15T23:28:55.086Z INFO sending Commit {"height": 4997, "view": 0} -2023-12-15T23:28:55.086Z INFO approving block {"height": 4997, "hash": "b6970220ecf615c2a8cb64f3f9af0f0f0dc7d18b62f0e2b25a81c200ad03eacf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38938cf9625cea6cb330fd3d0d016aceee08c39b759b54eec62c9511e177b668"} -2023-12-15T23:28:55.088Z INFO initializing dbft {"height": 4998, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:55.089Z debug frostfs-node/morph.go:229 new block {"index": 4997} -2023-12-15T23:28:55.632Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4997, "blockHeight": 4997, "took": "6.524418ms"} -2023-12-15T23:28:56.089Z INFO sending PrepareRequest {"height": 4998, "view": 0} -2023-12-15T23:28:56.089Z INFO sending Commit {"height": 4998, "view": 0} -2023-12-15T23:28:56.090Z INFO approving block {"height": 4998, "hash": "03a09a7d6f209bb00f2cb9245533bce180eee383ff35be380e67038120d7048e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6970220ecf615c2a8cb64f3f9af0f0f0dc7d18b62f0e2b25a81c200ad03eacf"} -2023-12-15T23:28:56.091Z INFO initializing dbft {"height": 4999, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:56.092Z debug frostfs-node/morph.go:229 new block {"index": 4998} -2023-12-15T23:28:56.634Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4998, "blockHeight": 4998, "took": "6.775339ms"} -2023-12-15T23:28:57.091Z INFO sending PrepareRequest {"height": 4999, "view": 0} -2023-12-15T23:28:57.091Z INFO sending Commit {"height": 4999, "view": 0} -2023-12-15T23:28:57.091Z INFO approving block {"height": 4999, "hash": "4452ba9749ca553b7aacb091cf32864a96cd0ecdcd36aaa1be1ebbadd36bc32c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03a09a7d6f209bb00f2cb9245533bce180eee383ff35be380e67038120d7048e"} -2023-12-15T23:28:57.093Z INFO initializing dbft {"height": 5000, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:57.094Z debug frostfs-node/morph.go:229 new block {"index": 4999} -2023-12-15T23:28:57.634Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 4999, "blockHeight": 4999, "took": "6.659036ms"} -2023-12-15T23:28:58.093Z INFO sending PrepareRequest {"height": 5000, "view": 0} -2023-12-15T23:28:58.093Z INFO sending Commit {"height": 5000, "view": 0} -2023-12-15T23:28:58.093Z INFO approving block {"height": 5000, "hash": "5164358fdcf3fc738caa24760499745ea48e4db4551f515dec7a8e7946b8eb60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4452ba9749ca553b7aacb091cf32864a96cd0ecdcd36aaa1be1ebbadd36bc32c"} -2023-12-15T23:28:58.095Z INFO initializing dbft {"height": 5001, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:58.095Z debug frostfs-node/morph.go:229 new block {"index": 5000} -2023-12-15T23:28:58.099Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 21, "iteration": 2, "error": "no data for 1 iteration in 21 epoch for consumers's trusts"} -2023-12-15T23:28:58.101Z info settlement/calls.go:106 start basic income distribution {"epoch": 21} -2023-12-15T23:28:58.635Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5000, "blockHeight": 5000, "took": "7.334346ms"} -2023-12-15T23:28:59.094Z INFO sending PrepareRequest {"height": 5001, "view": 0} -2023-12-15T23:28:59.095Z INFO sending Commit {"height": 5001, "view": 0} -2023-12-15T23:28:59.095Z INFO approving block {"height": 5001, "hash": "466464cc93182353f6c0dd579fa7a6318312766798b73aa1fbb27a373ac6c616", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5164358fdcf3fc738caa24760499745ea48e4db4551f515dec7a8e7946b8eb60"} -2023-12-15T23:28:59.096Z INFO initializing dbft {"height": 5002, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:28:59.097Z debug frostfs-node/morph.go:229 new block {"index": 5001} -2023-12-15T23:28:59.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5001, "blockHeight": 5001, "took": "6.986243ms"} -2023-12-15T23:29:00.096Z INFO sending PrepareRequest {"height": 5002, "view": 0} -2023-12-15T23:29:00.097Z INFO sending Commit {"height": 5002, "view": 0} -2023-12-15T23:29:00.097Z INFO approving block {"height": 5002, "hash": "d0adf59fe40b9025b5fc341117b9f4a237f8bf932931101d99b81f7a8cbff341", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "466464cc93182353f6c0dd579fa7a6318312766798b73aa1fbb27a373ac6c616"} -2023-12-15T23:29:00.101Z INFO initializing dbft {"height": 5003, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:00.102Z debug frostfs-node/morph.go:229 new block {"index": 5002} -2023-12-15T23:29:00.637Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5002, "blockHeight": 5002, "took": "7.125958ms"} -2023-12-15T23:29:01.099Z INFO sending PrepareRequest {"height": 5003, "view": 0} -2023-12-15T23:29:01.099Z INFO sending Commit {"height": 5003, "view": 0} -2023-12-15T23:29:01.099Z INFO approving block {"height": 5003, "hash": "4e6ee8e311221771b933e7a2d03cc885f731e1487d232b4536267edf617fe05e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0adf59fe40b9025b5fc341117b9f4a237f8bf932931101d99b81f7a8cbff341"} -2023-12-15T23:29:01.101Z INFO initializing dbft {"height": 5004, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:01.102Z debug frostfs-node/morph.go:229 new block {"index": 5003} -2023-12-15T23:29:01.637Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5003, "blockHeight": 5003, "took": "5.974785ms"} -2023-12-15T23:29:02.101Z INFO sending PrepareRequest {"height": 5004, "view": 0} -2023-12-15T23:29:02.101Z INFO sending Commit {"height": 5004, "view": 0} -2023-12-15T23:29:02.102Z INFO approving block {"height": 5004, "hash": "0e89ac30792680b1cc43c368247c0f929fc9e87677beefb9e3bc8b4b05ef0cec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e6ee8e311221771b933e7a2d03cc885f731e1487d232b4536267edf617fe05e"} -2023-12-15T23:29:02.103Z INFO initializing dbft {"height": 5005, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:02.104Z debug frostfs-node/morph.go:229 new block {"index": 5004} -2023-12-15T23:29:02.639Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5004, "blockHeight": 5004, "took": "6.365416ms"} -2023-12-15T23:29:03.103Z INFO sending PrepareRequest {"height": 5005, "view": 0} -2023-12-15T23:29:03.103Z INFO sending Commit {"height": 5005, "view": 0} -2023-12-15T23:29:03.103Z INFO approving block {"height": 5005, "hash": "b1dbf2b5a1c8bf9b57d673e8d84eb8421d4462400506728f381f42415c676da4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e89ac30792680b1cc43c368247c0f929fc9e87677beefb9e3bc8b4b05ef0cec"} -2023-12-15T23:29:03.105Z INFO initializing dbft {"height": 5006, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:03.106Z debug frostfs-node/morph.go:229 new block {"index": 5005} -2023-12-15T23:29:03.640Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5005, "blockHeight": 5005, "took": "6.449978ms"} -2023-12-15T23:29:04.104Z INFO sending PrepareRequest {"height": 5006, "view": 0} -2023-12-15T23:29:04.105Z INFO sending Commit {"height": 5006, "view": 0} -2023-12-15T23:29:04.106Z INFO approving block {"height": 5006, "hash": "57399875f57b5b99c774b49ba21133581d7a037006686fdce7a2d2cdc8f79890", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1dbf2b5a1c8bf9b57d673e8d84eb8421d4462400506728f381f42415c676da4"} -2023-12-15T23:29:04.107Z INFO initializing dbft {"height": 5007, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:04.108Z debug frostfs-node/morph.go:229 new block {"index": 5006} -2023-12-15T23:29:04.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5006, "blockHeight": 5006, "took": "9.544359ms"} -2023-12-15T23:29:05.107Z INFO sending PrepareRequest {"height": 5007, "view": 0} -2023-12-15T23:29:05.107Z INFO sending Commit {"height": 5007, "view": 0} -2023-12-15T23:29:05.107Z INFO approving block {"height": 5007, "hash": "0fd08257c9b04139d6824b305d225565b36f1ee499d73f4d62335225fc742aac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57399875f57b5b99c774b49ba21133581d7a037006686fdce7a2d2cdc8f79890"} -2023-12-15T23:29:05.109Z INFO initializing dbft {"height": 5008, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:05.110Z debug frostfs-node/morph.go:229 new block {"index": 5007} -2023-12-15T23:29:05.641Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5007, "blockHeight": 5007, "took": "6.140749ms"} -2023-12-15T23:29:06.109Z INFO sending PrepareRequest {"height": 5008, "view": 0} -2023-12-15T23:29:06.109Z INFO sending Commit {"height": 5008, "view": 0} -2023-12-15T23:29:06.110Z INFO approving block {"height": 5008, "hash": "abe7c20398f110a180c2daff4effb768f13be37c5e16b27aadbcbb192e5d2c15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fd08257c9b04139d6824b305d225565b36f1ee499d73f4d62335225fc742aac"} -2023-12-15T23:29:06.111Z INFO initializing dbft {"height": 5009, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:06.112Z debug frostfs-node/morph.go:229 new block {"index": 5008} -2023-12-15T23:29:06.642Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5008, "blockHeight": 5008, "took": "6.121148ms"} -2023-12-15T23:29:07.111Z INFO sending PrepareRequest {"height": 5009, "view": 0} -2023-12-15T23:29:07.111Z INFO sending Commit {"height": 5009, "view": 0} -2023-12-15T23:29:07.111Z INFO approving block {"height": 5009, "hash": "e713119e7aab017de4a65855ec321fe425a822bc5f744f362da5a45d0c6aa8e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abe7c20398f110a180c2daff4effb768f13be37c5e16b27aadbcbb192e5d2c15"} -2023-12-15T23:29:07.113Z INFO initializing dbft {"height": 5010, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:07.114Z debug frostfs-node/morph.go:229 new block {"index": 5009} -2023-12-15T23:29:07.646Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5009, "blockHeight": 5009, "took": "8.641562ms"} -2023-12-15T23:29:08.112Z INFO sending PrepareRequest {"height": 5010, "view": 0} -2023-12-15T23:29:08.113Z INFO sending Commit {"height": 5010, "view": 0} -2023-12-15T23:29:08.113Z INFO approving block {"height": 5010, "hash": "32dd12b8de418663d636a0e6473aa95305b115b032bab85e83a607c2b01ec2f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e713119e7aab017de4a65855ec321fe425a822bc5f744f362da5a45d0c6aa8e7"} -2023-12-15T23:29:08.114Z INFO initializing dbft {"height": 5011, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:08.115Z debug frostfs-node/morph.go:229 new block {"index": 5010} -2023-12-15T23:29:08.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5010, "blockHeight": 5010, "took": "6.476259ms"} -2023-12-15T23:29:09.114Z INFO sending PrepareRequest {"height": 5011, "view": 0} -2023-12-15T23:29:09.114Z INFO sending Commit {"height": 5011, "view": 0} -2023-12-15T23:29:09.115Z INFO approving block {"height": 5011, "hash": "e34fd35de7e64dc45227a052d0851c604d2571eadff2d97852c2042bd60ec87f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32dd12b8de418663d636a0e6473aa95305b115b032bab85e83a607c2b01ec2f7"} -2023-12-15T23:29:09.116Z INFO initializing dbft {"height": 5012, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:09.117Z debug frostfs-node/morph.go:229 new block {"index": 5011} -2023-12-15T23:29:09.647Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5011, "blockHeight": 5011, "took": "8.255811ms"} -2023-12-15T23:29:10.117Z INFO sending PrepareRequest {"height": 5012, "view": 0} -2023-12-15T23:29:10.117Z INFO sending Commit {"height": 5012, "view": 0} -2023-12-15T23:29:10.117Z INFO approving block {"height": 5012, "hash": "531add39663c9805c0d100b2c4b801753cd69054a1053005f5453699845565f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e34fd35de7e64dc45227a052d0851c604d2571eadff2d97852c2042bd60ec87f"} -2023-12-15T23:29:10.119Z INFO initializing dbft {"height": 5013, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:10.120Z debug frostfs-node/morph.go:229 new block {"index": 5012} -2023-12-15T23:29:10.646Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5012, "blockHeight": 5012, "took": "6.573872ms"} -2023-12-15T23:29:11.119Z INFO sending PrepareRequest {"height": 5013, "view": 0} -2023-12-15T23:29:11.120Z INFO sending Commit {"height": 5013, "view": 0} -2023-12-15T23:29:11.120Z INFO approving block {"height": 5013, "hash": "84665f308df793120ca22b7bf149efafefbcf11acf451fd6c57cef4abb1af82b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "531add39663c9805c0d100b2c4b801753cd69054a1053005f5453699845565f7"} -2023-12-15T23:29:11.122Z INFO initializing dbft {"height": 5014, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:11.122Z debug frostfs-node/morph.go:229 new block {"index": 5013} -2023-12-15T23:29:11.650Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5013, "blockHeight": 5013, "took": "9.710604ms"} -2023-12-15T23:29:12.121Z INFO sending PrepareRequest {"height": 5014, "view": 0} -2023-12-15T23:29:12.122Z INFO sending Commit {"height": 5014, "view": 0} -2023-12-15T23:29:12.122Z INFO approving block {"height": 5014, "hash": "bbc5a22b68a94ee8f4cb8e41d4fd03eb89424c985773d53aef831a908aad52f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84665f308df793120ca22b7bf149efafefbcf11acf451fd6c57cef4abb1af82b"} -2023-12-15T23:29:12.124Z INFO initializing dbft {"height": 5015, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:12.125Z debug frostfs-node/morph.go:229 new block {"index": 5014} -2023-12-15T23:29:12.648Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5014, "blockHeight": 5014, "took": "6.358985ms"} -2023-12-15T23:29:13.123Z INFO sending PrepareRequest {"height": 5015, "view": 0} -2023-12-15T23:29:13.123Z INFO sending Commit {"height": 5015, "view": 0} -2023-12-15T23:29:13.124Z INFO approving block {"height": 5015, "hash": "9816840894bca3bde26bd2bca074574f0cf6057794e0e0d591f90f07c39a3a8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbc5a22b68a94ee8f4cb8e41d4fd03eb89424c985773d53aef831a908aad52f6"} -2023-12-15T23:29:13.126Z INFO initializing dbft {"height": 5016, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:13.126Z debug frostfs-node/morph.go:229 new block {"index": 5015} -2023-12-15T23:29:13.650Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5015, "blockHeight": 5015, "took": "6.868981ms"} -2023-12-15T23:29:14.125Z INFO sending PrepareRequest {"height": 5016, "view": 0} -2023-12-15T23:29:14.125Z INFO sending Commit {"height": 5016, "view": 0} -2023-12-15T23:29:14.126Z INFO approving block {"height": 5016, "hash": "87f42cdd00ddb664bcdb2f94af3168dd8f4f899a1b046b265324e806587e8e9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9816840894bca3bde26bd2bca074574f0cf6057794e0e0d591f90f07c39a3a8f"} -2023-12-15T23:29:14.127Z INFO initializing dbft {"height": 5017, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:14.128Z debug frostfs-node/morph.go:229 new block {"index": 5016} -2023-12-15T23:29:14.652Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5016, "blockHeight": 5016, "took": "8.355346ms"} -2023-12-15T23:29:15.127Z INFO sending PrepareRequest {"height": 5017, "view": 0} -2023-12-15T23:29:15.127Z INFO sending Commit {"height": 5017, "view": 0} -2023-12-15T23:29:15.128Z INFO approving block {"height": 5017, "hash": "69f1f3e4d51b39ccfff9aba4a8338798b3386682c3b18d376663b5377ec41cfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87f42cdd00ddb664bcdb2f94af3168dd8f4f899a1b046b265324e806587e8e9e"} -2023-12-15T23:29:15.129Z INFO initializing dbft {"height": 5018, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:15.130Z debug frostfs-node/morph.go:229 new block {"index": 5017} -2023-12-15T23:29:15.134Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:29:15.139Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:29:15.139Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:29:15.651Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5017, "blockHeight": 5017, "took": "6.256312ms"} -2023-12-15T23:29:16.129Z INFO sending PrepareRequest {"height": 5018, "view": 0} -2023-12-15T23:29:16.129Z INFO sending Commit {"height": 5018, "view": 0} -2023-12-15T23:29:16.130Z INFO approving block {"height": 5018, "hash": "04e8dd24bb5241190477eb22acedafff05d766982af66269ec6714436fb3fe04", "tx_count": 2, "merkle": "aa72fabc00628efcbfcffacbe6c231f7574df3787e0aab378d866869e1a18998", "prev": "69f1f3e4d51b39ccfff9aba4a8338798b3386682c3b18d376663b5377ec41cfe"} -2023-12-15T23:29:16.131Z INFO runtime log {"tx": "93caeb10786e59efe7e3b42f335ba83b22f76757d3c37d70b6215b4665557392", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:29:16.131Z INFO runtime log {"tx": "93caeb10786e59efe7e3b42f335ba83b22f76757d3c37d70b6215b4665557392", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:29:16.133Z INFO initializing dbft {"height": 5019, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:16.134Z debug frostfs-node/morph.go:229 new block {"index": 5018} -2023-12-15T23:29:16.657Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5018, "blockHeight": 5018, "took": "10.31188ms"} -2023-12-15T23:29:17.131Z INFO sending PrepareRequest {"height": 5019, "view": 0} -2023-12-15T23:29:17.131Z INFO sending Commit {"height": 5019, "view": 0} -2023-12-15T23:29:17.132Z INFO approving block {"height": 5019, "hash": "812eea7c55bd4193fcf8b89cc45c4bcd502cb4a90b6fdb6c4af51b869707e9fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04e8dd24bb5241190477eb22acedafff05d766982af66269ec6714436fb3fe04"} -2023-12-15T23:29:17.133Z INFO initializing dbft {"height": 5020, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:17.134Z debug frostfs-node/morph.go:229 new block {"index": 5019} -2023-12-15T23:29:17.654Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5019, "blockHeight": 5019, "took": "6.374869ms"} -2023-12-15T23:29:18.133Z INFO sending PrepareRequest {"height": 5020, "view": 0} -2023-12-15T23:29:18.133Z INFO sending Commit {"height": 5020, "view": 0} -2023-12-15T23:29:18.134Z INFO approving block {"height": 5020, "hash": "0b073454c8e5f40e3f9f1d12da862af8f812aca6b9afe78c1fca48aa57f4a158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "812eea7c55bd4193fcf8b89cc45c4bcd502cb4a90b6fdb6c4af51b869707e9fb"} -2023-12-15T23:29:18.136Z INFO initializing dbft {"height": 5021, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:18.136Z debug frostfs-node/morph.go:229 new block {"index": 5020} -2023-12-15T23:29:18.655Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5020, "blockHeight": 5020, "took": "6.716337ms"} -2023-12-15T23:29:19.135Z INFO sending PrepareRequest {"height": 5021, "view": 0} -2023-12-15T23:29:19.135Z INFO sending Commit {"height": 5021, "view": 0} -2023-12-15T23:29:19.136Z INFO approving block {"height": 5021, "hash": "5efa077234623319c064127abff4c38f70c2da506e99869086bfa05c0d75e4bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b073454c8e5f40e3f9f1d12da862af8f812aca6b9afe78c1fca48aa57f4a158"} -2023-12-15T23:29:19.137Z INFO initializing dbft {"height": 5022, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:19.138Z debug frostfs-node/morph.go:229 new block {"index": 5021} -2023-12-15T23:29:19.657Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5021, "blockHeight": 5021, "took": "7.337724ms"} -2023-12-15T23:29:20.137Z INFO sending PrepareRequest {"height": 5022, "view": 0} -2023-12-15T23:29:20.138Z INFO sending Commit {"height": 5022, "view": 0} -2023-12-15T23:29:20.138Z INFO approving block {"height": 5022, "hash": "7ad82f788e80762df130695ecf3360695f6503ba1bba495505a6a0c757cc1542", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5efa077234623319c064127abff4c38f70c2da506e99869086bfa05c0d75e4bb"} -2023-12-15T23:29:20.140Z INFO initializing dbft {"height": 5023, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:20.140Z debug frostfs-node/morph.go:229 new block {"index": 5022} -2023-12-15T23:29:20.657Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5022, "blockHeight": 5022, "took": "7.078346ms"} -2023-12-15T23:29:21.140Z INFO sending PrepareRequest {"height": 5023, "view": 0} -2023-12-15T23:29:21.140Z INFO sending Commit {"height": 5023, "view": 0} -2023-12-15T23:29:21.140Z INFO approving block {"height": 5023, "hash": "238194df699a8d58160433b532b765176393bb09fd9c67b9203fa97123eddf79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ad82f788e80762df130695ecf3360695f6503ba1bba495505a6a0c757cc1542"} -2023-12-15T23:29:21.142Z INFO initializing dbft {"height": 5024, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:21.143Z debug frostfs-node/morph.go:229 new block {"index": 5023} -2023-12-15T23:29:21.656Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5023, "blockHeight": 5023, "took": "6.247642ms"} -2023-12-15T23:29:22.142Z INFO sending PrepareRequest {"height": 5024, "view": 0} -2023-12-15T23:29:22.142Z INFO sending Commit {"height": 5024, "view": 0} -2023-12-15T23:29:22.143Z INFO approving block {"height": 5024, "hash": "69a0f5ab0b47b82533b7ee3f29e8fb07594b1d85f9f8fd0dc1a1117b6d908598", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "238194df699a8d58160433b532b765176393bb09fd9c67b9203fa97123eddf79"} -2023-12-15T23:29:22.144Z INFO initializing dbft {"height": 5025, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:22.145Z debug frostfs-node/morph.go:229 new block {"index": 5024} -2023-12-15T23:29:22.657Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5024, "blockHeight": 5024, "took": "5.502281ms"} -2023-12-15T23:29:23.144Z INFO sending PrepareRequest {"height": 5025, "view": 0} -2023-12-15T23:29:23.144Z INFO sending Commit {"height": 5025, "view": 0} -2023-12-15T23:29:23.145Z INFO approving block {"height": 5025, "hash": "023778d3d255973df82c7b51f896adc86da15ef26b2575696f3605c04fbb942b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69a0f5ab0b47b82533b7ee3f29e8fb07594b1d85f9f8fd0dc1a1117b6d908598"} -2023-12-15T23:29:23.146Z INFO initializing dbft {"height": 5026, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:23.147Z debug frostfs-node/morph.go:229 new block {"index": 5025} -2023-12-15T23:29:23.661Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5025, "blockHeight": 5025, "took": "7.999452ms"} -2023-12-15T23:29:24.147Z INFO sending PrepareRequest {"height": 5026, "view": 0} -2023-12-15T23:29:24.147Z INFO sending Commit {"height": 5026, "view": 0} -2023-12-15T23:29:24.147Z INFO approving block {"height": 5026, "hash": "ad0aae8f61a255a47aafe7b475c09d5e77a5cc3e1900e4715be6f77fca1f5844", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "023778d3d255973df82c7b51f896adc86da15ef26b2575696f3605c04fbb942b"} -2023-12-15T23:29:24.149Z INFO initializing dbft {"height": 5027, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:24.149Z debug frostfs-node/morph.go:229 new block {"index": 5026} -2023-12-15T23:29:24.661Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5026, "blockHeight": 5026, "took": "6.565852ms"} -2023-12-15T23:29:25.148Z INFO sending PrepareRequest {"height": 5027, "view": 0} -2023-12-15T23:29:25.149Z INFO sending Commit {"height": 5027, "view": 0} -2023-12-15T23:29:25.149Z INFO approving block {"height": 5027, "hash": "2eaf009f1aad6a07a0cbdc5aec80c7dc31a1c6b825afe7535117d97f1affa6dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad0aae8f61a255a47aafe7b475c09d5e77a5cc3e1900e4715be6f77fca1f5844"} -2023-12-15T23:29:25.151Z INFO initializing dbft {"height": 5028, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:25.152Z debug frostfs-node/morph.go:229 new block {"index": 5027} -2023-12-15T23:29:25.660Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5027, "blockHeight": 5027, "took": "4.994966ms"} -2023-12-15T23:29:26.151Z INFO sending PrepareRequest {"height": 5028, "view": 0} -2023-12-15T23:29:26.151Z INFO sending Commit {"height": 5028, "view": 0} -2023-12-15T23:29:26.151Z INFO approving block {"height": 5028, "hash": "52d5d50d18e3443ef0fd6b971884b7f04e2d77f4c2634df57cc0b6756431cba2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2eaf009f1aad6a07a0cbdc5aec80c7dc31a1c6b825afe7535117d97f1affa6dc"} -2023-12-15T23:29:26.153Z INFO initializing dbft {"height": 5029, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:26.154Z debug frostfs-node/morph.go:229 new block {"index": 5028} -2023-12-15T23:29:26.663Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5028, "blockHeight": 5028, "took": "7.509453ms"} -2023-12-15T23:29:27.153Z INFO sending PrepareRequest {"height": 5029, "view": 0} -2023-12-15T23:29:27.153Z INFO sending Commit {"height": 5029, "view": 0} -2023-12-15T23:29:27.153Z INFO approving block {"height": 5029, "hash": "cb394c52c842b63afdbc0e5e65cddda3b126323cc1d91080609233f27d657d0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52d5d50d18e3443ef0fd6b971884b7f04e2d77f4c2634df57cc0b6756431cba2"} -2023-12-15T23:29:27.155Z INFO initializing dbft {"height": 5030, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:27.156Z debug frostfs-node/morph.go:229 new block {"index": 5029} -2023-12-15T23:29:27.663Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5029, "blockHeight": 5029, "took": "7.006915ms"} -2023-12-15T23:29:28.154Z INFO sending PrepareRequest {"height": 5030, "view": 0} -2023-12-15T23:29:28.155Z INFO sending Commit {"height": 5030, "view": 0} -2023-12-15T23:29:28.155Z INFO approving block {"height": 5030, "hash": "b8977ee785186173ccdf4ca1ca9c2d9667bf6ffe35b296d5407c9573b4860632", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb394c52c842b63afdbc0e5e65cddda3b126323cc1d91080609233f27d657d0a"} -2023-12-15T23:29:28.156Z INFO initializing dbft {"height": 5031, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:28.157Z debug frostfs-node/morph.go:229 new block {"index": 5030} -2023-12-15T23:29:28.664Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5030, "blockHeight": 5030, "took": "6.448259ms"} -2023-12-15T23:29:29.157Z INFO sending PrepareRequest {"height": 5031, "view": 0} -2023-12-15T23:29:29.157Z INFO sending Commit {"height": 5031, "view": 0} -2023-12-15T23:29:29.157Z INFO approving block {"height": 5031, "hash": "d577b2637eccd24632a9fc92900e1680531b85dd502ab435a317911094a6d1ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8977ee785186173ccdf4ca1ca9c2d9667bf6ffe35b296d5407c9573b4860632"} -2023-12-15T23:29:29.159Z INFO initializing dbft {"height": 5032, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:29.159Z debug frostfs-node/morph.go:229 new block {"index": 5031} -2023-12-15T23:29:29.664Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5031, "blockHeight": 5031, "took": "6.421588ms"} -2023-12-15T23:29:30.159Z INFO sending PrepareRequest {"height": 5032, "view": 0} -2023-12-15T23:29:30.159Z INFO sending Commit {"height": 5032, "view": 0} -2023-12-15T23:29:30.159Z INFO approving block {"height": 5032, "hash": "374d75eebb941e3905b02a4ac2e028fb45beefb66fea7c9d00003e1894898895", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d577b2637eccd24632a9fc92900e1680531b85dd502ab435a317911094a6d1ea"} -2023-12-15T23:29:30.161Z INFO initializing dbft {"height": 5033, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:30.162Z debug frostfs-node/morph.go:229 new block {"index": 5032} -2023-12-15T23:29:30.665Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5032, "blockHeight": 5032, "took": "6.578764ms"} -2023-12-15T23:29:31.160Z INFO sending PrepareRequest {"height": 5033, "view": 0} -2023-12-15T23:29:31.161Z INFO sending Commit {"height": 5033, "view": 0} -2023-12-15T23:29:31.161Z INFO approving block {"height": 5033, "hash": "bb5249dd520b715c3f39a29bf1b8e2298d6b7271dc095440e91ca792c1d91888", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "374d75eebb941e3905b02a4ac2e028fb45beefb66fea7c9d00003e1894898895"} -2023-12-15T23:29:31.163Z INFO initializing dbft {"height": 5034, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:31.164Z debug frostfs-node/morph.go:229 new block {"index": 5033} -2023-12-15T23:29:31.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5033, "blockHeight": 5033, "took": "8.396696ms"} -2023-12-15T23:29:32.163Z INFO sending PrepareRequest {"height": 5034, "view": 0} -2023-12-15T23:29:32.163Z INFO sending Commit {"height": 5034, "view": 0} -2023-12-15T23:29:32.163Z INFO approving block {"height": 5034, "hash": "a8b76e746b870f0455ee7397693f09caaeb923f40db8c80536d2bf54a94fa19a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb5249dd520b715c3f39a29bf1b8e2298d6b7271dc095440e91ca792c1d91888"} -2023-12-15T23:29:32.165Z INFO initializing dbft {"height": 5035, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:32.165Z debug frostfs-node/morph.go:229 new block {"index": 5034} -2023-12-15T23:29:32.667Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5034, "blockHeight": 5034, "took": "6.248913ms"} -2023-12-15T23:29:33.164Z INFO sending PrepareRequest {"height": 5035, "view": 0} -2023-12-15T23:29:33.164Z INFO sending Commit {"height": 5035, "view": 0} -2023-12-15T23:29:33.165Z INFO approving block {"height": 5035, "hash": "195141f0ec45d1905ed98fda3f0a43a59a6728ed66ac6894883ddf06ec5e23b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8b76e746b870f0455ee7397693f09caaeb923f40db8c80536d2bf54a94fa19a"} -2023-12-15T23:29:33.166Z INFO initializing dbft {"height": 5036, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:33.167Z debug frostfs-node/morph.go:229 new block {"index": 5035} -2023-12-15T23:29:33.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5035, "blockHeight": 5035, "took": "6.454628ms"} -2023-12-15T23:29:34.166Z INFO sending PrepareRequest {"height": 5036, "view": 0} -2023-12-15T23:29:34.166Z INFO sending Commit {"height": 5036, "view": 0} -2023-12-15T23:29:34.167Z INFO approving block {"height": 5036, "hash": "a93352e271f9f4b270b4057c348e876347dd39ba6c0644d499eb27bdb17c0f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "195141f0ec45d1905ed98fda3f0a43a59a6728ed66ac6894883ddf06ec5e23b4"} -2023-12-15T23:29:34.168Z INFO initializing dbft {"height": 5037, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:34.169Z debug frostfs-node/morph.go:229 new block {"index": 5036} -2023-12-15T23:29:34.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5036, "blockHeight": 5036, "took": "6.264683ms"} -2023-12-15T23:29:35.168Z INFO sending PrepareRequest {"height": 5037, "view": 0} -2023-12-15T23:29:35.168Z INFO sending Commit {"height": 5037, "view": 0} -2023-12-15T23:29:35.168Z INFO approving block {"height": 5037, "hash": "5bfdc601fe343062ff9f1dfa2f1bac3c393577c0b6ae341403e3ab479843ca05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a93352e271f9f4b270b4057c348e876347dd39ba6c0644d499eb27bdb17c0f8b"} -2023-12-15T23:29:35.170Z INFO initializing dbft {"height": 5038, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:35.171Z debug frostfs-node/morph.go:229 new block {"index": 5037} -2023-12-15T23:29:35.673Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5037, "blockHeight": 5037, "took": "9.733644ms"} -2023-12-15T23:29:36.170Z INFO sending PrepareRequest {"height": 5038, "view": 0} -2023-12-15T23:29:36.170Z INFO sending Commit {"height": 5038, "view": 0} -2023-12-15T23:29:36.170Z INFO approving block {"height": 5038, "hash": "318b22207076e4d10eee6e0c2e0e4bf797769a6379b64360021770168577a426", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5bfdc601fe343062ff9f1dfa2f1bac3c393577c0b6ae341403e3ab479843ca05"} -2023-12-15T23:29:36.172Z INFO initializing dbft {"height": 5039, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:36.172Z debug frostfs-node/morph.go:229 new block {"index": 5038} -2023-12-15T23:29:36.673Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5038, "blockHeight": 5038, "took": "9.025913ms"} -2023-12-15T23:29:37.171Z INFO sending PrepareRequest {"height": 5039, "view": 0} -2023-12-15T23:29:37.172Z INFO sending Commit {"height": 5039, "view": 0} -2023-12-15T23:29:37.172Z INFO approving block {"height": 5039, "hash": "9bf01706c53ad7bc4187ec5044492c72f456ca3d7d508ab1f4895b5e2586c71d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "318b22207076e4d10eee6e0c2e0e4bf797769a6379b64360021770168577a426"} -2023-12-15T23:29:37.173Z INFO initializing dbft {"height": 5040, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:37.174Z debug frostfs-node/morph.go:229 new block {"index": 5039} -2023-12-15T23:29:37.674Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5039, "blockHeight": 5039, "took": "9.341433ms"} -2023-12-15T23:29:38.173Z INFO sending PrepareRequest {"height": 5040, "view": 0} -2023-12-15T23:29:38.173Z INFO sending Commit {"height": 5040, "view": 0} -2023-12-15T23:29:38.174Z INFO approving block {"height": 5040, "hash": "6380d1ea872f8366b5eee9000157f41dac54a4029ac692a4811bce227ee10567", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9bf01706c53ad7bc4187ec5044492c72f456ca3d7d508ab1f4895b5e2586c71d"} -2023-12-15T23:29:38.175Z INFO initializing dbft {"height": 5041, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:38.176Z debug frostfs-node/morph.go:229 new block {"index": 5040} -2023-12-15T23:29:38.677Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5040, "blockHeight": 5040, "took": "10.403963ms"} -2023-12-15T23:29:39.175Z INFO sending PrepareRequest {"height": 5041, "view": 0} -2023-12-15T23:29:39.176Z INFO sending Commit {"height": 5041, "view": 0} -2023-12-15T23:29:39.176Z INFO approving block {"height": 5041, "hash": "9b322a6cb4fd125fceca3db71e69a53331bfe76e0576ede43c00bfecc36f7de0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6380d1ea872f8366b5eee9000157f41dac54a4029ac692a4811bce227ee10567"} -2023-12-15T23:29:39.178Z INFO initializing dbft {"height": 5042, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:39.179Z debug frostfs-node/morph.go:229 new block {"index": 5041} -2023-12-15T23:29:39.676Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5041, "blockHeight": 5041, "took": "8.185198ms"} -2023-12-15T23:29:40.178Z INFO sending PrepareRequest {"height": 5042, "view": 0} -2023-12-15T23:29:40.178Z INFO sending Commit {"height": 5042, "view": 0} -2023-12-15T23:29:40.178Z INFO approving block {"height": 5042, "hash": "1196884068cb14333cf7ced06c7d06a38f3d9304d9666149eb99caf9e87e607b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b322a6cb4fd125fceca3db71e69a53331bfe76e0576ede43c00bfecc36f7de0"} -2023-12-15T23:29:40.180Z INFO initializing dbft {"height": 5043, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:40.181Z debug frostfs-node/morph.go:229 new block {"index": 5042} -2023-12-15T23:29:40.676Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5042, "blockHeight": 5042, "took": "7.066998ms"} -2023-12-15T23:29:41.180Z INFO sending PrepareRequest {"height": 5043, "view": 0} -2023-12-15T23:29:41.180Z INFO sending Commit {"height": 5043, "view": 0} -2023-12-15T23:29:41.181Z INFO approving block {"height": 5043, "hash": "61149f97076f74dd3e4a3251aa4d15ab08600cb2c9843e181d6c870765777350", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1196884068cb14333cf7ced06c7d06a38f3d9304d9666149eb99caf9e87e607b"} -2023-12-15T23:29:41.182Z INFO initializing dbft {"height": 5044, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:41.183Z debug frostfs-node/morph.go:229 new block {"index": 5043} -2023-12-15T23:29:41.680Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5043, "blockHeight": 5043, "took": "9.726504ms"} -2023-12-15T23:29:42.181Z INFO sending PrepareRequest {"height": 5044, "view": 0} -2023-12-15T23:29:42.182Z INFO sending Commit {"height": 5044, "view": 0} -2023-12-15T23:29:42.182Z INFO approving block {"height": 5044, "hash": "9c8e7708c01af8b699512b9ab659e1a23f751fa53b18c327a1e7e80f4d012d8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61149f97076f74dd3e4a3251aa4d15ab08600cb2c9843e181d6c870765777350"} -2023-12-15T23:29:42.184Z INFO initializing dbft {"height": 5045, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:42.184Z debug frostfs-node/morph.go:229 new block {"index": 5044} -2023-12-15T23:29:42.677Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5044, "blockHeight": 5044, "took": "6.514731ms"} -2023-12-15T23:29:43.183Z INFO sending PrepareRequest {"height": 5045, "view": 0} -2023-12-15T23:29:43.183Z INFO sending Commit {"height": 5045, "view": 0} -2023-12-15T23:29:43.184Z INFO approving block {"height": 5045, "hash": "4b7ff20707ce160beec4da97bc2760ad99451274882cc9649303beda01b9b591", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c8e7708c01af8b699512b9ab659e1a23f751fa53b18c327a1e7e80f4d012d8f"} -2023-12-15T23:29:43.185Z INFO initializing dbft {"height": 5046, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:43.186Z debug frostfs-node/morph.go:229 new block {"index": 5045} -2023-12-15T23:29:43.675Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5045, "blockHeight": 5045, "took": "4.12974ms"} -2023-12-15T23:29:44.185Z INFO sending PrepareRequest {"height": 5046, "view": 0} -2023-12-15T23:29:44.185Z INFO sending Commit {"height": 5046, "view": 0} -2023-12-15T23:29:44.186Z INFO approving block {"height": 5046, "hash": "dfa570e5d2f122a69398458f5d5a32481517667fc3f42cd008c559ff12b38d7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b7ff20707ce160beec4da97bc2760ad99451274882cc9649303beda01b9b591"} -2023-12-15T23:29:44.187Z INFO initializing dbft {"height": 5047, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:44.188Z debug frostfs-node/morph.go:229 new block {"index": 5046} -2023-12-15T23:29:44.679Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5046, "blockHeight": 5046, "took": "6.86401ms"} -2023-12-15T23:29:45.187Z INFO sending PrepareRequest {"height": 5047, "view": 0} -2023-12-15T23:29:45.187Z INFO sending Commit {"height": 5047, "view": 0} -2023-12-15T23:29:45.187Z INFO approving block {"height": 5047, "hash": "dcdf30915c890d9569fbb1a830c55a4d9b936706a349d8fddfd5e0cfd4fa9a8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfa570e5d2f122a69398458f5d5a32481517667fc3f42cd008c559ff12b38d7c"} -2023-12-15T23:29:45.189Z INFO initializing dbft {"height": 5048, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:45.190Z debug frostfs-node/morph.go:229 new block {"index": 5047} -2023-12-15T23:29:45.683Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5047, "blockHeight": 5047, "took": "10.622425ms"} -2023-12-15T23:29:46.189Z INFO sending PrepareRequest {"height": 5048, "view": 0} -2023-12-15T23:29:46.190Z INFO sending Commit {"height": 5048, "view": 0} -2023-12-15T23:29:46.190Z INFO approving block {"height": 5048, "hash": "a0215bb4781f495769c3f9d4324e01fe651e14928237e664e7bcc7654d52dc4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcdf30915c890d9569fbb1a830c55a4d9b936706a349d8fddfd5e0cfd4fa9a8b"} -2023-12-15T23:29:46.191Z INFO initializing dbft {"height": 5049, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:46.192Z debug frostfs-node/morph.go:229 new block {"index": 5048} -2023-12-15T23:29:46.685Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5048, "blockHeight": 5048, "took": "11.038829ms"} -2023-12-15T23:29:47.191Z INFO sending PrepareRequest {"height": 5049, "view": 0} -2023-12-15T23:29:47.191Z INFO sending Commit {"height": 5049, "view": 0} -2023-12-15T23:29:47.192Z INFO approving block {"height": 5049, "hash": "f18f40dbe47a03aa77a91c7c72fb3964c49ae95556cf6fe54d30ac266bd15793", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0215bb4781f495769c3f9d4324e01fe651e14928237e664e7bcc7654d52dc4d"} -2023-12-15T23:29:47.193Z INFO initializing dbft {"height": 5050, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:47.194Z debug frostfs-node/morph.go:229 new block {"index": 5049} -2023-12-15T23:29:47.682Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5049, "blockHeight": 5049, "took": "7.555234ms"} -2023-12-15T23:29:48.193Z INFO sending PrepareRequest {"height": 5050, "view": 0} -2023-12-15T23:29:48.193Z INFO sending Commit {"height": 5050, "view": 0} -2023-12-15T23:29:48.194Z INFO approving block {"height": 5050, "hash": "a4c76b8d51da538fb06a831489cebb4956147c157f2dc3c721da1ef2ee0fb81d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f18f40dbe47a03aa77a91c7c72fb3964c49ae95556cf6fe54d30ac266bd15793"} -2023-12-15T23:29:48.195Z INFO initializing dbft {"height": 5051, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:48.196Z debug frostfs-node/morph.go:229 new block {"index": 5050} -2023-12-15T23:29:48.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5050, "blockHeight": 5050, "took": "9.123407ms"} -2023-12-15T23:29:49.195Z INFO sending PrepareRequest {"height": 5051, "view": 0} -2023-12-15T23:29:49.195Z INFO sending Commit {"height": 5051, "view": 0} -2023-12-15T23:29:49.196Z INFO approving block {"height": 5051, "hash": "982de1b57a554b5a8c0d8a7bad00fa559ded8ee97abb7dae04a4d86d545db4d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4c76b8d51da538fb06a831489cebb4956147c157f2dc3c721da1ef2ee0fb81d"} -2023-12-15T23:29:49.197Z INFO initializing dbft {"height": 5052, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:49.198Z debug frostfs-node/morph.go:229 new block {"index": 5051} -2023-12-15T23:29:49.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5051, "blockHeight": 5051, "took": "8.533999ms"} -2023-12-15T23:29:50.197Z INFO sending PrepareRequest {"height": 5052, "view": 0} -2023-12-15T23:29:50.198Z INFO sending Commit {"height": 5052, "view": 0} -2023-12-15T23:29:50.198Z INFO approving block {"height": 5052, "hash": "fbd1aab0dd80d8c950f088062d1bb7770edda8c6c8900a1263726e73ebd12851", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "982de1b57a554b5a8c0d8a7bad00fa559ded8ee97abb7dae04a4d86d545db4d6"} -2023-12-15T23:29:50.200Z INFO initializing dbft {"height": 5053, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:50.200Z debug frostfs-node/morph.go:229 new block {"index": 5052} -2023-12-15T23:29:50.685Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5052, "blockHeight": 5052, "took": "9.350175ms"} -2023-12-15T23:29:51.199Z INFO sending PrepareRequest {"height": 5053, "view": 0} -2023-12-15T23:29:51.199Z INFO sending Commit {"height": 5053, "view": 0} -2023-12-15T23:29:51.200Z INFO approving block {"height": 5053, "hash": "221c254160ff7d0a9b81a20d4577dfde13f293871adf0d29eb0e00853e34088c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbd1aab0dd80d8c950f088062d1bb7770edda8c6c8900a1263726e73ebd12851"} -2023-12-15T23:29:51.201Z INFO initializing dbft {"height": 5054, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:51.202Z debug frostfs-node/morph.go:229 new block {"index": 5053} -2023-12-15T23:29:51.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5053, "blockHeight": 5053, "took": "6.685386ms"} -2023-12-15T23:29:52.201Z INFO sending PrepareRequest {"height": 5054, "view": 0} -2023-12-15T23:29:52.201Z INFO sending Commit {"height": 5054, "view": 0} -2023-12-15T23:29:52.202Z INFO approving block {"height": 5054, "hash": "8f9c9b243ac71325cf3c0891dd8ca599146daf614347151a323eecbc6f7c4c39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "221c254160ff7d0a9b81a20d4577dfde13f293871adf0d29eb0e00853e34088c"} -2023-12-15T23:29:52.203Z INFO initializing dbft {"height": 5055, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:52.204Z debug frostfs-node/morph.go:229 new block {"index": 5054} -2023-12-15T23:29:52.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5054, "blockHeight": 5054, "took": "6.516404ms"} -2023-12-15T23:29:53.203Z INFO sending PrepareRequest {"height": 5055, "view": 0} -2023-12-15T23:29:53.203Z INFO sending Commit {"height": 5055, "view": 0} -2023-12-15T23:29:53.204Z INFO approving block {"height": 5055, "hash": "6d74320c46762d0597079cc7887ce8599b5aecfce90318cb375693aca332c5ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f9c9b243ac71325cf3c0891dd8ca599146daf614347151a323eecbc6f7c4c39"} -2023-12-15T23:29:53.205Z INFO initializing dbft {"height": 5056, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:53.206Z debug frostfs-node/morph.go:229 new block {"index": 5055} -2023-12-15T23:29:53.688Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5055, "blockHeight": 5055, "took": "9.924479ms"} -2023-12-15T23:29:54.205Z INFO sending PrepareRequest {"height": 5056, "view": 0} -2023-12-15T23:29:54.205Z INFO sending Commit {"height": 5056, "view": 0} -2023-12-15T23:29:54.206Z INFO approving block {"height": 5056, "hash": "29e66b6baf815ce899cb42e4c32de688e5bb614aaaf8a486f83fc476ab76ce8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d74320c46762d0597079cc7887ce8599b5aecfce90318cb375693aca332c5ed"} -2023-12-15T23:29:54.208Z INFO initializing dbft {"height": 5057, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:54.208Z debug frostfs-node/morph.go:229 new block {"index": 5056} -2023-12-15T23:29:54.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5056, "blockHeight": 5056, "took": "6.433887ms"} -2023-12-15T23:29:55.207Z INFO sending PrepareRequest {"height": 5057, "view": 0} -2023-12-15T23:29:55.207Z INFO sending Commit {"height": 5057, "view": 0} -2023-12-15T23:29:55.208Z INFO approving block {"height": 5057, "hash": "8355b3b0c7167bb2fdf8dc4f35062472ddad48fbafbb9a5d02d4b55b51482b9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29e66b6baf815ce899cb42e4c32de688e5bb614aaaf8a486f83fc476ab76ce8f"} -2023-12-15T23:29:55.210Z INFO initializing dbft {"height": 5058, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:55.211Z debug frostfs-node/morph.go:229 new block {"index": 5057} -2023-12-15T23:29:55.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5057, "blockHeight": 5057, "took": "6.296113ms"} -2023-12-15T23:29:56.209Z INFO sending PrepareRequest {"height": 5058, "view": 0} -2023-12-15T23:29:56.210Z INFO sending Commit {"height": 5058, "view": 0} -2023-12-15T23:29:56.210Z INFO approving block {"height": 5058, "hash": "4e1c9fca4777a77a13423ef851ff9f4d52f1d3715013beab3361091e815d45f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8355b3b0c7167bb2fdf8dc4f35062472ddad48fbafbb9a5d02d4b55b51482b9d"} -2023-12-15T23:29:56.212Z INFO initializing dbft {"height": 5059, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:56.212Z debug frostfs-node/morph.go:229 new block {"index": 5058} -2023-12-15T23:29:56.688Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5058, "blockHeight": 5058, "took": "7.014894ms"} -2023-12-15T23:29:57.211Z INFO sending PrepareRequest {"height": 5059, "view": 0} -2023-12-15T23:29:57.211Z INFO sending Commit {"height": 5059, "view": 0} -2023-12-15T23:29:57.212Z INFO approving block {"height": 5059, "hash": "b117af25d105bc3a724837b426df0f82c9d54ace4e5324b976881e22a465f3a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e1c9fca4777a77a13423ef851ff9f4d52f1d3715013beab3361091e815d45f7"} -2023-12-15T23:29:57.213Z INFO initializing dbft {"height": 5060, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:57.214Z debug frostfs-node/morph.go:229 new block {"index": 5059} -2023-12-15T23:29:57.693Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5059, "blockHeight": 5059, "took": "10.190558ms"} -2023-12-15T23:29:58.213Z INFO sending PrepareRequest {"height": 5060, "view": 0} -2023-12-15T23:29:58.213Z INFO sending Commit {"height": 5060, "view": 0} -2023-12-15T23:29:58.214Z INFO approving block {"height": 5060, "hash": "6548ef35713a986a0f3e376932c0f40cbf696f136483cd7b17fb7315966f7ec1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b117af25d105bc3a724837b426df0f82c9d54ace4e5324b976881e22a465f3a1"} -2023-12-15T23:29:58.215Z INFO initializing dbft {"height": 5061, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:58.218Z debug frostfs-node/morph.go:229 new block {"index": 5060} -2023-12-15T23:29:58.219Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:29:58.225Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 21, "iteration": 3, "error": "no data for 2 iteration in 21 epoch for consumers's trusts"} -2023-12-15T23:29:58.228Z INFO runtime log {"tx": "b3a04788907e118b4833f9034a7e2276057fcc0b3c15f014f19b80b37ac5bfe9", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:29:58.690Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5060, "blockHeight": 5060, "took": "6.569293ms"} -2023-12-15T23:29:59.215Z INFO sending PrepareRequest {"height": 5061, "view": 0} -2023-12-15T23:29:59.216Z INFO sending Commit {"height": 5061, "view": 0} -2023-12-15T23:29:59.216Z INFO approving block {"height": 5061, "hash": "819781f6cd1ee1856dcb873bf49af20195af0bb257c87ae39e20776f7b6ac5eb", "tx_count": 1, "merkle": "6d1af3b1f261dc49ca5cbfdfb6d61999831d2c136820fc78b15e57b185262ada", "prev": "6548ef35713a986a0f3e376932c0f40cbf696f136483cd7b17fb7315966f7ec1"} -2023-12-15T23:29:59.218Z INFO runtime log {"tx": "da2a2685b1575eb178fc2068132c1d839919d6b6dfbf5cca49dc61f2b1f31a6d", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:29:59.220Z INFO initializing dbft {"height": 5062, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:29:59.221Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 23} -2023-12-15T23:29:59.221Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 23} -2023-12-15T23:29:59.222Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:29:59.222Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:29:59.222Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 23} -2023-12-15T23:29:59.222Z debug controller/calls.go:95 starting to report local trust values {"epoch": 22} -2023-12-15T23:29:59.222Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 23} -2023-12-15T23:29:59.222Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 22} -2023-12-15T23:29:59.222Z debug frostfs-node/morph.go:229 new block {"index": 5061} -2023-12-15T23:29:59.222Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 23} -2023-12-15T23:29:59.228Z debug controller/calls.go:146 reporting successfully finished {"epoch": 22} -2023-12-15T23:29:59.228Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 22} -2023-12-15T23:29:59.229Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:29:59.231Z INFO runtime log {"tx": "05fa161362dac5528a0613519b0573fa2b0d7c582c8e164621c510714237391f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:29:59.234Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 5064, "tx_hash": "1fde6ec73a31ead29329e4529c703f25ce12cb8273609a3faf3b7e02525f7a8c"} -2023-12-15T23:29:59.245Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:29:59.245Z info audit/handlers.go:13 new round of audit {"epoch": 23} -2023-12-15T23:29:59.245Z info settlement/calls.go:26 new audit settlement event {"epoch": 23} -2023-12-15T23:29:59.245Z info settlement/handlers.go:14 process audit settlements {"epoch": 23} -2023-12-15T23:29:59.245Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 23} -2023-12-15T23:29:59.247Z info settlement/handlers.go:18 audit processing finished {"epoch": 23} -2023-12-15T23:29:59.250Z info audit/process.go:39 select containers for audit {"epoch": 23, "amount": 0} -2023-12-15T23:29:59.254Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 5064, "tx_hash": "d824dde790bb0b7ddac38e03ebab15f0be45da8b6a0140b7ffc0d954a888ecc9"} -2023-12-15T23:29:59.696Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 5061, "blockHeight": 5061, "took": "11.235368ms"} -2023-12-15T23:30:00.218Z INFO sending PrepareRequest {"height": 5062, "view": 0} -2023-12-15T23:30:00.218Z INFO sending Commit {"height": 5062, "view": 0} -2023-12-15T23:30:00.218Z INFO approving block {"height": 5062, "hash": "bf4d034a8bb7e6a0401b7ba7b7fed660ea3bf6c064a1c9e279cd48770a0fb9bc", "tx_count": 3, "merkle": "96695e6a9bfd84caf46d8b5e4339cdd199275b865a57efe659b54d08da6621bb", "prev": "819781f6cd1ee1856dcb873bf49af20195af0bb257c87ae39e20776f7b6ac5eb"} -2023-12-15T23:30:00.219Z INFO runtime log {"tx": "8d52a234c841ccd669db091b3e14878bd7d1d3adf1639f569b928db9a04d1e0f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:30:00.221Z INFO initializing dbft {"height": 5063, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:00.222Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 22} -2023-12-15T23:30:00.223Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 22} -2023-12-15T23:30:00.223Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 22} -2023-12-15T23:30:00.223Z debug frostfs-node/morph.go:229 new block {"index": 5062} -2023-12-15T23:30:00.697Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 5062, "blockHeight": 5062, "took": "11.831847ms"} -2023-12-15T23:30:01.219Z INFO sending PrepareRequest {"height": 5063, "view": 0} -2023-12-15T23:30:01.220Z INFO sending Commit {"height": 5063, "view": 0} -2023-12-15T23:30:01.220Z INFO approving block {"height": 5063, "hash": "545660f2e07d43ad0f093e93c6233a52bc6f0201f4cf8b5c92b3dcaafa7b3d8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf4d034a8bb7e6a0401b7ba7b7fed660ea3bf6c064a1c9e279cd48770a0fb9bc"} -2023-12-15T23:30:01.221Z INFO initializing dbft {"height": 5064, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:01.222Z debug frostfs-node/morph.go:229 new block {"index": 5063} -2023-12-15T23:30:01.692Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5063, "blockHeight": 5063, "took": "5.716326ms"} -2023-12-15T23:30:02.222Z INFO sending PrepareRequest {"height": 5064, "view": 0} -2023-12-15T23:30:02.222Z INFO sending Commit {"height": 5064, "view": 0} -2023-12-15T23:30:02.223Z INFO approving block {"height": 5064, "hash": "7884d3f9a7025ad863a6d5d1c6311ca6f012c86c29b7f8092ca66ff84ca31e0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "545660f2e07d43ad0f093e93c6233a52bc6f0201f4cf8b5c92b3dcaafa7b3d8d"} -2023-12-15T23:30:02.224Z INFO initializing dbft {"height": 5065, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:02.225Z debug frostfs-node/morph.go:229 new block {"index": 5064} -2023-12-15T23:30:02.694Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5064, "blockHeight": 5064, "took": "6.958469ms"} -2023-12-15T23:30:03.223Z INFO sending PrepareRequest {"height": 5065, "view": 0} -2023-12-15T23:30:03.224Z INFO sending Commit {"height": 5065, "view": 0} -2023-12-15T23:30:03.224Z INFO approving block {"height": 5065, "hash": "54b4a3b505f722b5ca50ccd13ea9790e7b1b2c82b942e57164ad470a7e129e1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7884d3f9a7025ad863a6d5d1c6311ca6f012c86c29b7f8092ca66ff84ca31e0e"} -2023-12-15T23:30:03.226Z INFO initializing dbft {"height": 5066, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:03.226Z debug frostfs-node/morph.go:229 new block {"index": 5065} -2023-12-15T23:30:03.695Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5065, "blockHeight": 5065, "took": "6.597983ms"} -2023-12-15T23:30:04.226Z INFO sending PrepareRequest {"height": 5066, "view": 0} -2023-12-15T23:30:04.226Z INFO sending Commit {"height": 5066, "view": 0} -2023-12-15T23:30:04.226Z INFO approving block {"height": 5066, "hash": "f1a0398e4296fb18ce968ae41345db3868a4588a83c208bf213fc35a2f392c1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54b4a3b505f722b5ca50ccd13ea9790e7b1b2c82b942e57164ad470a7e129e1d"} -2023-12-15T23:30:04.228Z INFO initializing dbft {"height": 5067, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:04.229Z debug frostfs-node/morph.go:229 new block {"index": 5066} -2023-12-15T23:30:04.696Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5066, "blockHeight": 5066, "took": "6.027211ms"} -2023-12-15T23:30:05.227Z INFO sending PrepareRequest {"height": 5067, "view": 0} -2023-12-15T23:30:05.228Z INFO sending Commit {"height": 5067, "view": 0} -2023-12-15T23:30:05.228Z INFO approving block {"height": 5067, "hash": "6a6e25d4026556aa2fa589bbeeb4cdf3d89a96dfb9a74d59b8cf8f23567acf5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1a0398e4296fb18ce968ae41345db3868a4588a83c208bf213fc35a2f392c1a"} -2023-12-15T23:30:05.229Z INFO initializing dbft {"height": 5068, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:05.230Z debug frostfs-node/morph.go:229 new block {"index": 5067} -2023-12-15T23:30:05.234Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:30:05.235Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:30:05.235Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:30:05.697Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5067, "blockHeight": 5067, "took": "6.251752ms"} -2023-12-15T23:30:06.229Z INFO sending PrepareRequest {"height": 5068, "view": 0} -2023-12-15T23:30:06.230Z INFO sending Commit {"height": 5068, "view": 0} -2023-12-15T23:30:06.230Z INFO approving block {"height": 5068, "hash": "3181bba0538e3c9c970092afdd0f6423732aa9ed959770b51a14f6e736725422", "tx_count": 2, "merkle": "935caffc97d5eb58d46ff61880a42a9fae138b18e35b362e2488db8e8283d78c", "prev": "6a6e25d4026556aa2fa589bbeeb4cdf3d89a96dfb9a74d59b8cf8f23567acf5c"} -2023-12-15T23:30:06.231Z INFO runtime log {"tx": "2daf88fb535fdb5ab1c5ec9b74ae83cc20f730f43be74918eebb0eb57f83e31b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:30:06.231Z INFO runtime log {"tx": "2daf88fb535fdb5ab1c5ec9b74ae83cc20f730f43be74918eebb0eb57f83e31b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:30:06.234Z INFO initializing dbft {"height": 5069, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:06.235Z debug frostfs-node/morph.go:229 new block {"index": 5068} -2023-12-15T23:30:06.700Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5068, "blockHeight": 5068, "took": "8.611621ms"} -2023-12-15T23:30:07.232Z INFO sending PrepareRequest {"height": 5069, "view": 0} -2023-12-15T23:30:07.232Z INFO sending Commit {"height": 5069, "view": 0} -2023-12-15T23:30:07.232Z INFO approving block {"height": 5069, "hash": "0a4cd1647fa5156f23505032119e9434263f20fefc2d9ef0dedb7ec412ade705", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3181bba0538e3c9c970092afdd0f6423732aa9ed959770b51a14f6e736725422"} -2023-12-15T23:30:07.234Z INFO initializing dbft {"height": 5070, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:07.235Z debug frostfs-node/morph.go:229 new block {"index": 5069} -2023-12-15T23:30:07.699Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5069, "blockHeight": 5069, "took": "6.930452ms"} -2023-12-15T23:30:08.234Z INFO sending PrepareRequest {"height": 5070, "view": 0} -2023-12-15T23:30:08.234Z INFO sending Commit {"height": 5070, "view": 0} -2023-12-15T23:30:08.234Z INFO approving block {"height": 5070, "hash": "a1e751ab72c35d93ae5d40b2db9bb6eb3d1a6c446bfa0abd3f3a6d04c3f77e61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a4cd1647fa5156f23505032119e9434263f20fefc2d9ef0dedb7ec412ade705"} -2023-12-15T23:30:08.236Z INFO initializing dbft {"height": 5071, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:08.237Z debug frostfs-node/morph.go:229 new block {"index": 5070} -2023-12-15T23:30:08.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5070, "blockHeight": 5070, "took": "7.16956ms"} -2023-12-15T23:30:09.235Z INFO sending PrepareRequest {"height": 5071, "view": 0} -2023-12-15T23:30:09.236Z INFO sending Commit {"height": 5071, "view": 0} -2023-12-15T23:30:09.236Z INFO approving block {"height": 5071, "hash": "ad2a58412085e11ae772a3ca514e119b1ecb3235fa174b181f3b7a642aeeac20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1e751ab72c35d93ae5d40b2db9bb6eb3d1a6c446bfa0abd3f3a6d04c3f77e61"} -2023-12-15T23:30:09.238Z INFO initializing dbft {"height": 5072, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:09.238Z debug frostfs-node/morph.go:229 new block {"index": 5071} -2023-12-15T23:30:09.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5071, "blockHeight": 5071, "took": "6.360987ms"} -2023-12-15T23:30:10.237Z INFO sending PrepareRequest {"height": 5072, "view": 0} -2023-12-15T23:30:10.237Z INFO sending Commit {"height": 5072, "view": 0} -2023-12-15T23:30:10.238Z INFO approving block {"height": 5072, "hash": "c52914e0612d41dfeaf4eaf2ea04858c166cde6a53ec1a2d9131592148c652c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad2a58412085e11ae772a3ca514e119b1ecb3235fa174b181f3b7a642aeeac20"} -2023-12-15T23:30:10.239Z INFO initializing dbft {"height": 5073, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:10.240Z debug frostfs-node/morph.go:229 new block {"index": 5072} -2023-12-15T23:30:10.702Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5072, "blockHeight": 5072, "took": "6.501189ms"} -2023-12-15T23:30:11.239Z INFO sending PrepareRequest {"height": 5073, "view": 0} -2023-12-15T23:30:11.239Z INFO sending Commit {"height": 5073, "view": 0} -2023-12-15T23:30:11.240Z INFO approving block {"height": 5073, "hash": "0118936a282eb723411c8b7c04b040d574839a1da247f5bb5c3b3664577c0fb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c52914e0612d41dfeaf4eaf2ea04858c166cde6a53ec1a2d9131592148c652c0"} -2023-12-15T23:30:11.242Z INFO initializing dbft {"height": 5074, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:11.243Z debug frostfs-node/morph.go:229 new block {"index": 5073} -2023-12-15T23:30:11.702Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5073, "blockHeight": 5073, "took": "6.172441ms"} -2023-12-15T23:30:12.241Z INFO sending PrepareRequest {"height": 5074, "view": 0} -2023-12-15T23:30:12.241Z INFO sending Commit {"height": 5074, "view": 0} -2023-12-15T23:30:12.242Z INFO approving block {"height": 5074, "hash": "09748ce597a2736d7f367138e3f52a5f03b0f8d79b28279b004a22b7c04fda98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0118936a282eb723411c8b7c04b040d574839a1da247f5bb5c3b3664577c0fb6"} -2023-12-15T23:30:12.243Z INFO initializing dbft {"height": 5075, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:12.244Z debug frostfs-node/morph.go:229 new block {"index": 5074} -2023-12-15T23:30:12.703Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5074, "blockHeight": 5074, "took": "6.332375ms"} -2023-12-15T23:30:13.243Z INFO sending PrepareRequest {"height": 5075, "view": 0} -2023-12-15T23:30:13.243Z INFO sending Commit {"height": 5075, "view": 0} -2023-12-15T23:30:13.244Z INFO approving block {"height": 5075, "hash": "becd5993465b1669c106b698faa8fdacd61e0af1003ea21548702cdde0982749", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09748ce597a2736d7f367138e3f52a5f03b0f8d79b28279b004a22b7c04fda98"} -2023-12-15T23:30:13.246Z INFO initializing dbft {"height": 5076, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:13.246Z debug frostfs-node/morph.go:229 new block {"index": 5075} -2023-12-15T23:30:13.705Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5075, "blockHeight": 5075, "took": "6.942033ms"} -2023-12-15T23:30:14.245Z INFO sending PrepareRequest {"height": 5076, "view": 0} -2023-12-15T23:30:14.245Z INFO sending Commit {"height": 5076, "view": 0} -2023-12-15T23:30:14.246Z INFO approving block {"height": 5076, "hash": "d0e15e6656d0940bfd55e8c16d8374d7a8305cd02fea0d88ccfd1a93341a40ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "becd5993465b1669c106b698faa8fdacd61e0af1003ea21548702cdde0982749"} -2023-12-15T23:30:14.247Z INFO initializing dbft {"height": 5077, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:14.248Z debug frostfs-node/morph.go:229 new block {"index": 5076} -2023-12-15T23:30:14.704Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5076, "blockHeight": 5076, "took": "5.771558ms"} -2023-12-15T23:30:15.247Z INFO sending PrepareRequest {"height": 5077, "view": 0} -2023-12-15T23:30:15.247Z INFO sending Commit {"height": 5077, "view": 0} -2023-12-15T23:30:15.248Z INFO approving block {"height": 5077, "hash": "356997d3de9c901de5a0f5826f00a894c06c7c69c43f5454da447d192b22e0d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0e15e6656d0940bfd55e8c16d8374d7a8305cd02fea0d88ccfd1a93341a40ef"} -2023-12-15T23:30:15.249Z INFO initializing dbft {"height": 5078, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:15.250Z debug frostfs-node/morph.go:229 new block {"index": 5077} -2023-12-15T23:30:15.707Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5077, "blockHeight": 5077, "took": "6.931413ms"} -2023-12-15T23:30:16.249Z INFO sending PrepareRequest {"height": 5078, "view": 0} -2023-12-15T23:30:16.249Z INFO sending Commit {"height": 5078, "view": 0} -2023-12-15T23:30:16.250Z INFO approving block {"height": 5078, "hash": "d45c08144070daae98a592d97259b2b40af50f9e7dd844f414fe1f69d3c15dc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "356997d3de9c901de5a0f5826f00a894c06c7c69c43f5454da447d192b22e0d8"} -2023-12-15T23:30:16.251Z INFO initializing dbft {"height": 5079, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:16.252Z debug frostfs-node/morph.go:229 new block {"index": 5078} -2023-12-15T23:30:16.707Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5078, "blockHeight": 5078, "took": "6.603643ms"} -2023-12-15T23:30:17.251Z INFO sending PrepareRequest {"height": 5079, "view": 0} -2023-12-15T23:30:17.252Z INFO sending Commit {"height": 5079, "view": 0} -2023-12-15T23:30:17.252Z INFO approving block {"height": 5079, "hash": "3c23f44d673d990646ced8fbedc0fbedef3972d8c4385408f2e2d7702c475f3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d45c08144070daae98a592d97259b2b40af50f9e7dd844f414fe1f69d3c15dc4"} -2023-12-15T23:30:17.253Z INFO initializing dbft {"height": 5080, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:17.254Z debug frostfs-node/morph.go:229 new block {"index": 5079} -2023-12-15T23:30:17.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5079, "blockHeight": 5079, "took": "6.994944ms"} -2023-12-15T23:30:18.253Z INFO sending PrepareRequest {"height": 5080, "view": 0} -2023-12-15T23:30:18.254Z INFO sending Commit {"height": 5080, "view": 0} -2023-12-15T23:30:18.254Z INFO approving block {"height": 5080, "hash": "c0bc6ef12e74433745c8788f032e8a9ae9294d73b713ff6920d13c4c25e09d6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c23f44d673d990646ced8fbedc0fbedef3972d8c4385408f2e2d7702c475f3c"} -2023-12-15T23:30:18.256Z INFO initializing dbft {"height": 5081, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:18.256Z debug frostfs-node/morph.go:229 new block {"index": 5080} -2023-12-15T23:30:18.711Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5080, "blockHeight": 5080, "took": "8.366604ms"} -2023-12-15T23:30:19.255Z INFO sending PrepareRequest {"height": 5081, "view": 0} -2023-12-15T23:30:19.256Z INFO sending Commit {"height": 5081, "view": 0} -2023-12-15T23:30:19.256Z INFO approving block {"height": 5081, "hash": "c5907395fce65c7014200043e9d444d248247ed59f870fad2d49bc50f71c3623", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0bc6ef12e74433745c8788f032e8a9ae9294d73b713ff6920d13c4c25e09d6b"} -2023-12-15T23:30:19.258Z INFO initializing dbft {"height": 5082, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:19.259Z debug frostfs-node/morph.go:229 new block {"index": 5081} -2023-12-15T23:30:19.711Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5081, "blockHeight": 5081, "took": "6.965544ms"} -2023-12-15T23:30:20.258Z INFO sending PrepareRequest {"height": 5082, "view": 0} -2023-12-15T23:30:20.258Z INFO sending Commit {"height": 5082, "view": 0} -2023-12-15T23:30:20.258Z INFO approving block {"height": 5082, "hash": "0e08b519fd643bee49afcaef10d53056562adcb3429b0872e3e9f82808aff378", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5907395fce65c7014200043e9d444d248247ed59f870fad2d49bc50f71c3623"} -2023-12-15T23:30:20.260Z INFO initializing dbft {"height": 5083, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:20.260Z debug frostfs-node/morph.go:229 new block {"index": 5082} -2023-12-15T23:30:20.710Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5082, "blockHeight": 5082, "took": "6.124348ms"} -2023-12-15T23:30:21.259Z INFO sending PrepareRequest {"height": 5083, "view": 0} -2023-12-15T23:30:21.260Z INFO sending Commit {"height": 5083, "view": 0} -2023-12-15T23:30:21.260Z INFO approving block {"height": 5083, "hash": "70b46a52c63924c60f0fa39d894893caa41792f654abcb5d2f0fd7c93888306b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e08b519fd643bee49afcaef10d53056562adcb3429b0872e3e9f82808aff378"} -2023-12-15T23:30:21.262Z INFO initializing dbft {"height": 5084, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:21.263Z debug frostfs-node/morph.go:229 new block {"index": 5083} -2023-12-15T23:30:21.712Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5083, "blockHeight": 5083, "took": "6.891638ms"} -2023-12-15T23:30:22.261Z INFO sending PrepareRequest {"height": 5084, "view": 0} -2023-12-15T23:30:22.262Z INFO sending Commit {"height": 5084, "view": 0} -2023-12-15T23:30:22.262Z INFO approving block {"height": 5084, "hash": "4185972489e8cb5c7281dbe9def0bbd2d51c47f25363d259d6c95b2980556c0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70b46a52c63924c60f0fa39d894893caa41792f654abcb5d2f0fd7c93888306b"} -2023-12-15T23:30:22.263Z INFO initializing dbft {"height": 5085, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:22.264Z debug frostfs-node/morph.go:229 new block {"index": 5084} -2023-12-15T23:30:22.712Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5084, "blockHeight": 5084, "took": "6.048487ms"} -2023-12-15T23:30:23.263Z INFO sending PrepareRequest {"height": 5085, "view": 0} -2023-12-15T23:30:23.263Z INFO sending Commit {"height": 5085, "view": 0} -2023-12-15T23:30:23.264Z INFO approving block {"height": 5085, "hash": "ca9ae1843d11c926a0bf4b5b3ae0171b95c91d93745aea2317507b31fd02241c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4185972489e8cb5c7281dbe9def0bbd2d51c47f25363d259d6c95b2980556c0d"} -2023-12-15T23:30:23.265Z INFO initializing dbft {"height": 5086, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:23.266Z debug frostfs-node/morph.go:229 new block {"index": 5085} -2023-12-15T23:30:23.714Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5085, "blockHeight": 5085, "took": "7.447216ms"} -2023-12-15T23:30:24.265Z INFO sending PrepareRequest {"height": 5086, "view": 0} -2023-12-15T23:30:24.266Z INFO sending Commit {"height": 5086, "view": 0} -2023-12-15T23:30:24.266Z INFO approving block {"height": 5086, "hash": "041779c3eb7f4f6842cd1941847e6ac39c77188c473b2af743dcd1d537889ba7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca9ae1843d11c926a0bf4b5b3ae0171b95c91d93745aea2317507b31fd02241c"} -2023-12-15T23:30:24.267Z INFO initializing dbft {"height": 5087, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:24.268Z debug frostfs-node/morph.go:229 new block {"index": 5086} -2023-12-15T23:30:24.715Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5086, "blockHeight": 5086, "took": "6.961124ms"} -2023-12-15T23:30:25.268Z INFO sending PrepareRequest {"height": 5087, "view": 0} -2023-12-15T23:30:25.268Z INFO sending Commit {"height": 5087, "view": 0} -2023-12-15T23:30:25.268Z INFO approving block {"height": 5087, "hash": "a470145f646498d5ffe0831aa7a574335eda5e84650f3d6bdb4659026e2cb67e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "041779c3eb7f4f6842cd1941847e6ac39c77188c473b2af743dcd1d537889ba7"} -2023-12-15T23:30:25.270Z INFO initializing dbft {"height": 5088, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:25.271Z debug frostfs-node/morph.go:229 new block {"index": 5087} -2023-12-15T23:30:25.716Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5087, "blockHeight": 5087, "took": "6.710583ms"} -2023-12-15T23:30:26.269Z INFO sending PrepareRequest {"height": 5088, "view": 0} -2023-12-15T23:30:26.270Z INFO sending Commit {"height": 5088, "view": 0} -2023-12-15T23:30:26.270Z INFO approving block {"height": 5088, "hash": "e00620feb2ef069ef3e783b0ca3cbf9a4fabea682b50445e37b37247b21ac615", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a470145f646498d5ffe0831aa7a574335eda5e84650f3d6bdb4659026e2cb67e"} -2023-12-15T23:30:26.271Z INFO initializing dbft {"height": 5089, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:26.272Z debug frostfs-node/morph.go:229 new block {"index": 5088} -2023-12-15T23:30:26.717Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5088, "blockHeight": 5088, "took": "6.007685ms"} -2023-12-15T23:30:27.271Z INFO sending PrepareRequest {"height": 5089, "view": 0} -2023-12-15T23:30:27.271Z INFO sending Commit {"height": 5089, "view": 0} -2023-12-15T23:30:27.271Z INFO approving block {"height": 5089, "hash": "331e311fb8820e69c6237c492ea753ca5b0c45b21c98e11ee9bd58fc15848ac7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e00620feb2ef069ef3e783b0ca3cbf9a4fabea682b50445e37b37247b21ac615"} -2023-12-15T23:30:27.273Z INFO initializing dbft {"height": 5090, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:27.274Z debug frostfs-node/morph.go:229 new block {"index": 5089} -2023-12-15T23:30:27.718Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5089, "blockHeight": 5089, "took": "6.138359ms"} -2023-12-15T23:30:28.272Z INFO sending PrepareRequest {"height": 5090, "view": 0} -2023-12-15T23:30:28.273Z INFO sending Commit {"height": 5090, "view": 0} -2023-12-15T23:30:28.273Z INFO approving block {"height": 5090, "hash": "a0eedabc6e32cbbdcf35337a37697fe8b4f17da3ebba961ca306d1935f7765a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "331e311fb8820e69c6237c492ea753ca5b0c45b21c98e11ee9bd58fc15848ac7"} -2023-12-15T23:30:28.275Z INFO initializing dbft {"height": 5091, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:28.276Z debug frostfs-node/morph.go:229 new block {"index": 5090} -2023-12-15T23:30:28.719Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5090, "blockHeight": 5090, "took": "6.543824ms"} -2023-12-15T23:30:29.274Z INFO sending PrepareRequest {"height": 5091, "view": 0} -2023-12-15T23:30:29.274Z INFO sending Commit {"height": 5091, "view": 0} -2023-12-15T23:30:29.275Z INFO approving block {"height": 5091, "hash": "a4594dbfa65c635ad3644089f6c8b4c98855d33a327e8eedd8b9aab743951ebf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0eedabc6e32cbbdcf35337a37697fe8b4f17da3ebba961ca306d1935f7765a3"} -2023-12-15T23:30:29.276Z INFO initializing dbft {"height": 5092, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:29.277Z debug frostfs-node/morph.go:229 new block {"index": 5091} -2023-12-15T23:30:29.720Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5091, "blockHeight": 5091, "took": "6.576632ms"} -2023-12-15T23:30:30.276Z INFO sending PrepareRequest {"height": 5092, "view": 0} -2023-12-15T23:30:30.276Z INFO sending Commit {"height": 5092, "view": 0} -2023-12-15T23:30:30.277Z INFO approving block {"height": 5092, "hash": "86df88f61eb751dde0a2d9b7b6a47d212fe960b8f5fa29d15f54f30a5cdaa47d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4594dbfa65c635ad3644089f6c8b4c98855d33a327e8eedd8b9aab743951ebf"} -2023-12-15T23:30:30.278Z INFO initializing dbft {"height": 5093, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:30.279Z debug frostfs-node/morph.go:229 new block {"index": 5092} -2023-12-15T23:30:30.723Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5092, "blockHeight": 5092, "took": "8.604533ms"} -2023-12-15T23:30:31.278Z INFO sending PrepareRequest {"height": 5093, "view": 0} -2023-12-15T23:30:31.278Z INFO sending Commit {"height": 5093, "view": 0} -2023-12-15T23:30:31.278Z INFO approving block {"height": 5093, "hash": "3f1b95fc4dc47026c6dafb068f4366f90b267999c6ac8bd70d2736bd0064b472", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86df88f61eb751dde0a2d9b7b6a47d212fe960b8f5fa29d15f54f30a5cdaa47d"} -2023-12-15T23:30:31.279Z INFO initializing dbft {"height": 5094, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:31.281Z debug frostfs-node/morph.go:229 new block {"index": 5093} -2023-12-15T23:30:31.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5093, "blockHeight": 5093, "took": "6.788659ms"} -2023-12-15T23:30:32.279Z INFO sending PrepareRequest {"height": 5094, "view": 0} -2023-12-15T23:30:32.280Z INFO sending Commit {"height": 5094, "view": 0} -2023-12-15T23:30:32.280Z INFO approving block {"height": 5094, "hash": "47bf9be801e1c5a62d39252d6919e952fbb5c1319a7f359e30f1ad5e9d471d4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f1b95fc4dc47026c6dafb068f4366f90b267999c6ac8bd70d2736bd0064b472"} -2023-12-15T23:30:32.282Z INFO initializing dbft {"height": 5095, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:32.283Z debug frostfs-node/morph.go:229 new block {"index": 5094} -2023-12-15T23:30:32.725Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5094, "blockHeight": 5094, "took": "9.286475ms"} -2023-12-15T23:30:33.281Z INFO sending PrepareRequest {"height": 5095, "view": 0} -2023-12-15T23:30:33.281Z INFO sending Commit {"height": 5095, "view": 0} -2023-12-15T23:30:33.282Z INFO approving block {"height": 5095, "hash": "43a75a3fc12e3fef0170cae96e3ac44127711071cec79bff7d16a0e27b6234b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47bf9be801e1c5a62d39252d6919e952fbb5c1319a7f359e30f1ad5e9d471d4f"} -2023-12-15T23:30:33.283Z INFO initializing dbft {"height": 5096, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:33.284Z debug frostfs-node/morph.go:229 new block {"index": 5095} -2023-12-15T23:30:33.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5095, "blockHeight": 5095, "took": "6.145129ms"} -2023-12-15T23:30:34.283Z INFO sending PrepareRequest {"height": 5096, "view": 0} -2023-12-15T23:30:34.283Z INFO sending Commit {"height": 5096, "view": 0} -2023-12-15T23:30:34.283Z INFO approving block {"height": 5096, "hash": "d25aea9e8d19a957247beb504befac498436783c5bf04f3f93378ea965a61c2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43a75a3fc12e3fef0170cae96e3ac44127711071cec79bff7d16a0e27b6234b1"} -2023-12-15T23:30:34.285Z INFO initializing dbft {"height": 5097, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:34.286Z debug frostfs-node/morph.go:229 new block {"index": 5096} -2023-12-15T23:30:34.728Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5096, "blockHeight": 5096, "took": "10.877943ms"} -2023-12-15T23:30:35.284Z INFO sending PrepareRequest {"height": 5097, "view": 0} -2023-12-15T23:30:35.285Z INFO sending Commit {"height": 5097, "view": 0} -2023-12-15T23:30:35.285Z INFO approving block {"height": 5097, "hash": "39c80091f7c02e277ee653caae7f825619fa11b5bcb5585c8a5ea960a9dee925", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d25aea9e8d19a957247beb504befac498436783c5bf04f3f93378ea965a61c2e"} -2023-12-15T23:30:35.286Z INFO initializing dbft {"height": 5098, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:35.287Z debug frostfs-node/morph.go:229 new block {"index": 5097} -2023-12-15T23:30:35.728Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5097, "blockHeight": 5097, "took": "10.527618ms"} -2023-12-15T23:30:36.286Z INFO sending PrepareRequest {"height": 5098, "view": 0} -2023-12-15T23:30:36.287Z INFO sending Commit {"height": 5098, "view": 0} -2023-12-15T23:30:36.287Z INFO approving block {"height": 5098, "hash": "d8a4469501ef609c3498cb92a2c619d2c61a2709e56d645e8f6eb1083a0e685c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39c80091f7c02e277ee653caae7f825619fa11b5bcb5585c8a5ea960a9dee925"} -2023-12-15T23:30:36.289Z INFO initializing dbft {"height": 5099, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:36.289Z debug frostfs-node/morph.go:229 new block {"index": 5098} -2023-12-15T23:30:36.730Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5098, "blockHeight": 5098, "took": "9.95903ms"} -2023-12-15T23:30:37.288Z INFO sending PrepareRequest {"height": 5099, "view": 0} -2023-12-15T23:30:37.288Z INFO sending Commit {"height": 5099, "view": 0} -2023-12-15T23:30:37.289Z INFO approving block {"height": 5099, "hash": "641c127a83125a792ee3c9e35c119def6eecf3b7be638a98aa8d1fe805484792", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8a4469501ef609c3498cb92a2c619d2c61a2709e56d645e8f6eb1083a0e685c"} -2023-12-15T23:30:37.291Z INFO initializing dbft {"height": 5100, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:37.291Z debug frostfs-node/morph.go:229 new block {"index": 5099} -2023-12-15T23:30:37.727Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5099, "blockHeight": 5099, "took": "6.063546ms"} -2023-12-15T23:30:38.290Z INFO sending PrepareRequest {"height": 5100, "view": 0} -2023-12-15T23:30:38.291Z INFO sending Commit {"height": 5100, "view": 0} -2023-12-15T23:30:38.291Z INFO approving block {"height": 5100, "hash": "51c0e78051e08dff83c883f84c81b5b49004e7e3e28c0e85ebb04ad58b0f818f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "641c127a83125a792ee3c9e35c119def6eecf3b7be638a98aa8d1fe805484792"} -2023-12-15T23:30:38.292Z INFO initializing dbft {"height": 5101, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:38.293Z debug frostfs-node/morph.go:229 new block {"index": 5100} -2023-12-15T23:30:38.728Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5100, "blockHeight": 5100, "took": "6.348576ms"} -2023-12-15T23:30:39.292Z INFO sending PrepareRequest {"height": 5101, "view": 0} -2023-12-15T23:30:39.293Z INFO sending Commit {"height": 5101, "view": 0} -2023-12-15T23:30:39.293Z INFO approving block {"height": 5101, "hash": "b5671347c402c21d2f868baad1060130ba6c84e3fb25bac8e0fb2feb15e9d245", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51c0e78051e08dff83c883f84c81b5b49004e7e3e28c0e85ebb04ad58b0f818f"} -2023-12-15T23:30:39.294Z INFO initializing dbft {"height": 5102, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:39.295Z debug frostfs-node/morph.go:229 new block {"index": 5101} -2023-12-15T23:30:39.731Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5101, "blockHeight": 5101, "took": "7.969212ms"} -2023-12-15T23:30:40.294Z INFO sending PrepareRequest {"height": 5102, "view": 0} -2023-12-15T23:30:40.294Z INFO sending Commit {"height": 5102, "view": 0} -2023-12-15T23:30:40.294Z INFO approving block {"height": 5102, "hash": "eeff21c3eb86dd7fbf2298030ede77be075f8872eded034506bf0ef0b3f85573", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5671347c402c21d2f868baad1060130ba6c84e3fb25bac8e0fb2feb15e9d245"} -2023-12-15T23:30:40.296Z INFO initializing dbft {"height": 5103, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:40.297Z debug frostfs-node/morph.go:229 new block {"index": 5102} -2023-12-15T23:30:40.733Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5102, "blockHeight": 5102, "took": "8.008206ms"} -2023-12-15T23:30:41.295Z INFO sending PrepareRequest {"height": 5103, "view": 0} -2023-12-15T23:30:41.296Z INFO sending Commit {"height": 5103, "view": 0} -2023-12-15T23:30:41.296Z INFO approving block {"height": 5103, "hash": "9403d695f277d2fcf0e42c77da17b277cd7a970c5dceca4052687a2a3e6c9d81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eeff21c3eb86dd7fbf2298030ede77be075f8872eded034506bf0ef0b3f85573"} -2023-12-15T23:30:41.298Z INFO initializing dbft {"height": 5104, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:41.298Z debug frostfs-node/morph.go:229 new block {"index": 5103} -2023-12-15T23:30:41.736Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5103, "blockHeight": 5103, "took": "10.383897ms"} -2023-12-15T23:30:42.298Z INFO sending PrepareRequest {"height": 5104, "view": 0} -2023-12-15T23:30:42.298Z INFO sending Commit {"height": 5104, "view": 0} -2023-12-15T23:30:42.298Z INFO approving block {"height": 5104, "hash": "3b9dd770636c19396284b8789f8378048d7ded800ae968e47ce224a1621f69c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9403d695f277d2fcf0e42c77da17b277cd7a970c5dceca4052687a2a3e6c9d81"} -2023-12-15T23:30:42.300Z INFO initializing dbft {"height": 5105, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:42.301Z debug frostfs-node/morph.go:229 new block {"index": 5104} -2023-12-15T23:30:42.732Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5104, "blockHeight": 5104, "took": "5.691226ms"} -2023-12-15T23:30:43.299Z INFO sending PrepareRequest {"height": 5105, "view": 0} -2023-12-15T23:30:43.300Z INFO sending Commit {"height": 5105, "view": 0} -2023-12-15T23:30:43.300Z INFO approving block {"height": 5105, "hash": "ea6dbb73c692ba8e72387bf1b1444e09f148f2a7d872a7f00aeb29d5f25d63a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b9dd770636c19396284b8789f8378048d7ded800ae968e47ce224a1621f69c2"} -2023-12-15T23:30:43.302Z INFO initializing dbft {"height": 5106, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:43.302Z debug frostfs-node/morph.go:229 new block {"index": 5105} -2023-12-15T23:30:43.734Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5105, "blockHeight": 5105, "took": "7.096835ms"} -2023-12-15T23:30:44.301Z INFO sending PrepareRequest {"height": 5106, "view": 0} -2023-12-15T23:30:44.301Z INFO sending Commit {"height": 5106, "view": 0} -2023-12-15T23:30:44.302Z INFO approving block {"height": 5106, "hash": "33b5e306718e2a320b7249c45544fdc3f70ba0a2ac04ad24319964c97644c631", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea6dbb73c692ba8e72387bf1b1444e09f148f2a7d872a7f00aeb29d5f25d63a2"} -2023-12-15T23:30:44.303Z INFO initializing dbft {"height": 5107, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:44.304Z debug frostfs-node/morph.go:229 new block {"index": 5106} -2023-12-15T23:30:44.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5106, "blockHeight": 5106, "took": "9.894689ms"} -2023-12-15T23:30:45.303Z INFO sending PrepareRequest {"height": 5107, "view": 0} -2023-12-15T23:30:45.303Z INFO sending Commit {"height": 5107, "view": 0} -2023-12-15T23:30:45.304Z INFO approving block {"height": 5107, "hash": "ee54a9b4e57284ad93e5ba4fa31a8bc3990e8584e34cd1b1623432dfdeb5c9ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33b5e306718e2a320b7249c45544fdc3f70ba0a2ac04ad24319964c97644c631"} -2023-12-15T23:30:45.305Z INFO initializing dbft {"height": 5108, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:45.306Z debug frostfs-node/morph.go:229 new block {"index": 5107} -2023-12-15T23:30:45.735Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5107, "blockHeight": 5107, "took": "6.372768ms"} -2023-12-15T23:30:46.304Z INFO sending PrepareRequest {"height": 5108, "view": 0} -2023-12-15T23:30:46.305Z INFO sending Commit {"height": 5108, "view": 0} -2023-12-15T23:30:46.305Z INFO approving block {"height": 5108, "hash": "9650b80fbe57951c09eae6035144f98f3e51f6bcaec309d897e0f91f1761434a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee54a9b4e57284ad93e5ba4fa31a8bc3990e8584e34cd1b1623432dfdeb5c9ff"} -2023-12-15T23:30:46.307Z INFO initializing dbft {"height": 5109, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:46.308Z debug frostfs-node/morph.go:229 new block {"index": 5108} -2023-12-15T23:30:46.736Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5108, "blockHeight": 5108, "took": "6.522331ms"} -2023-12-15T23:30:47.307Z INFO sending PrepareRequest {"height": 5109, "view": 0} -2023-12-15T23:30:47.307Z INFO sending Commit {"height": 5109, "view": 0} -2023-12-15T23:30:47.307Z INFO approving block {"height": 5109, "hash": "83eb28d72de518e73b20331f2625a81c44c366c477f03e73924215f5db2219c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9650b80fbe57951c09eae6035144f98f3e51f6bcaec309d897e0f91f1761434a"} -2023-12-15T23:30:47.309Z INFO initializing dbft {"height": 5110, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:47.310Z debug frostfs-node/morph.go:229 new block {"index": 5109} -2023-12-15T23:30:47.737Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5109, "blockHeight": 5109, "took": "6.4286ms"} -2023-12-15T23:30:48.308Z INFO sending PrepareRequest {"height": 5110, "view": 0} -2023-12-15T23:30:48.309Z INFO sending Commit {"height": 5110, "view": 0} -2023-12-15T23:30:48.309Z INFO approving block {"height": 5110, "hash": "cebbb9bf1ca603a91bf6c8252cb968fa88f390e869df033e7f9a08c6fc472944", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83eb28d72de518e73b20331f2625a81c44c366c477f03e73924215f5db2219c6"} -2023-12-15T23:30:48.312Z INFO initializing dbft {"height": 5111, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:48.313Z debug frostfs-node/morph.go:229 new block {"index": 5110} -2023-12-15T23:30:48.739Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5110, "blockHeight": 5110, "took": "7.90059ms"} -2023-12-15T23:30:49.311Z INFO sending PrepareRequest {"height": 5111, "view": 0} -2023-12-15T23:30:49.312Z INFO sending Commit {"height": 5111, "view": 0} -2023-12-15T23:30:49.312Z INFO approving block {"height": 5111, "hash": "c556c497a91a335c4f44c567f44256dae264717fe503b53e37deea9ca4622cef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cebbb9bf1ca603a91bf6c8252cb968fa88f390e869df033e7f9a08c6fc472944"} -2023-12-15T23:30:49.314Z INFO initializing dbft {"height": 5112, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:49.314Z debug frostfs-node/morph.go:229 new block {"index": 5111} -2023-12-15T23:30:49.746Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5111, "blockHeight": 5111, "took": "12.723349ms"} -2023-12-15T23:30:50.314Z INFO sending PrepareRequest {"height": 5112, "view": 0} -2023-12-15T23:30:50.314Z INFO sending Commit {"height": 5112, "view": 0} -2023-12-15T23:30:50.315Z INFO approving block {"height": 5112, "hash": "2a377ccb1226c5f6d1d7f1cb74e270f96c5c8fd470032e61b2b8eab61d6a7dc8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c556c497a91a335c4f44c567f44256dae264717fe503b53e37deea9ca4622cef"} -2023-12-15T23:30:50.317Z INFO initializing dbft {"height": 5113, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:50.317Z debug frostfs-node/morph.go:229 new block {"index": 5112} -2023-12-15T23:30:50.740Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5112, "blockHeight": 5112, "took": "6.301845ms"} -2023-12-15T23:30:51.316Z INFO sending PrepareRequest {"height": 5113, "view": 0} -2023-12-15T23:30:51.316Z INFO sending Commit {"height": 5113, "view": 0} -2023-12-15T23:30:51.317Z INFO approving block {"height": 5113, "hash": "fda34d96db2f4cc1eda02ca6bd9327852f8f50a1597d65e453b492167d18ecea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a377ccb1226c5f6d1d7f1cb74e270f96c5c8fd470032e61b2b8eab61d6a7dc8"} -2023-12-15T23:30:51.319Z INFO initializing dbft {"height": 5114, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:51.320Z debug frostfs-node/morph.go:229 new block {"index": 5113} -2023-12-15T23:30:51.740Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5113, "blockHeight": 5113, "took": "6.067403ms"} -2023-12-15T23:30:52.318Z INFO sending PrepareRequest {"height": 5114, "view": 0} -2023-12-15T23:30:52.318Z INFO sending Commit {"height": 5114, "view": 0} -2023-12-15T23:30:52.319Z INFO approving block {"height": 5114, "hash": "ec3e37cf328c117e0e3f1ea7235f3488bab26f98026dce92ca4e8e34eeb3023d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fda34d96db2f4cc1eda02ca6bd9327852f8f50a1597d65e453b492167d18ecea"} -2023-12-15T23:30:52.320Z INFO initializing dbft {"height": 5115, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:52.321Z debug frostfs-node/morph.go:229 new block {"index": 5114} -2023-12-15T23:30:52.744Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5114, "blockHeight": 5114, "took": "9.307057ms"} -2023-12-15T23:30:53.320Z INFO sending PrepareRequest {"height": 5115, "view": 0} -2023-12-15T23:30:53.320Z INFO sending Commit {"height": 5115, "view": 0} -2023-12-15T23:30:53.320Z INFO approving block {"height": 5115, "hash": "715486884234287d47331f41fb03eb95845f1a8bd02cdf8b79222e86bab89448", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec3e37cf328c117e0e3f1ea7235f3488bab26f98026dce92ca4e8e34eeb3023d"} -2023-12-15T23:30:53.321Z INFO initializing dbft {"height": 5116, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:53.322Z debug frostfs-node/morph.go:229 new block {"index": 5115} -2023-12-15T23:30:53.742Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5115, "blockHeight": 5115, "took": "6.647994ms"} -2023-12-15T23:30:54.321Z INFO sending PrepareRequest {"height": 5116, "view": 0} -2023-12-15T23:30:54.321Z INFO sending Commit {"height": 5116, "view": 0} -2023-12-15T23:30:54.322Z INFO approving block {"height": 5116, "hash": "9eddc58e7a9def36e4ededfecc1591374128085df7fab74c846b3df79aaa5829", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "715486884234287d47331f41fb03eb95845f1a8bd02cdf8b79222e86bab89448"} -2023-12-15T23:30:54.324Z INFO initializing dbft {"height": 5117, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:54.324Z debug frostfs-node/morph.go:229 new block {"index": 5116} -2023-12-15T23:30:54.742Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5116, "blockHeight": 5116, "took": "5.1446ms"} -2023-12-15T23:30:55.323Z INFO sending PrepareRequest {"height": 5117, "view": 0} -2023-12-15T23:30:55.324Z INFO sending Commit {"height": 5117, "view": 0} -2023-12-15T23:30:55.324Z INFO approving block {"height": 5117, "hash": "4a30e0aa9355f6d0bb55d455a3f9c317aed8ae8784f1833ce216f7cdb61453a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9eddc58e7a9def36e4ededfecc1591374128085df7fab74c846b3df79aaa5829"} -2023-12-15T23:30:55.325Z INFO initializing dbft {"height": 5118, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:55.326Z debug frostfs-node/morph.go:229 new block {"index": 5117} -2023-12-15T23:30:55.329Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:30:55.333Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:30:55.333Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:30:55.745Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5117, "blockHeight": 5117, "took": "7.885442ms"} -2023-12-15T23:30:56.326Z INFO sending PrepareRequest {"height": 5118, "view": 0} -2023-12-15T23:30:56.326Z INFO sending Commit {"height": 5118, "view": 0} -2023-12-15T23:30:56.326Z INFO approving block {"height": 5118, "hash": "19e04e74208d37971d2f7db0625e3dff2f72e13316b2b8677fcc1f3eac448730", "tx_count": 2, "merkle": "b5b44d41d4e376ec6a4088354e6951bf8c0418853479724ec9b5af396960fab7", "prev": "4a30e0aa9355f6d0bb55d455a3f9c317aed8ae8784f1833ce216f7cdb61453a7"} -2023-12-15T23:30:56.327Z INFO runtime log {"tx": "feb8396aeae7fafdc20925a612faa65951b27cfc2ca3db5518d987ba32499314", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:30:56.328Z INFO runtime log {"tx": "feb8396aeae7fafdc20925a612faa65951b27cfc2ca3db5518d987ba32499314", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:30:56.329Z INFO initializing dbft {"height": 5119, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:56.330Z debug frostfs-node/morph.go:229 new block {"index": 5118} -2023-12-15T23:30:56.746Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5118, "blockHeight": 5118, "took": "7.893646ms"} -2023-12-15T23:30:57.328Z INFO sending PrepareRequest {"height": 5119, "view": 0} -2023-12-15T23:30:57.328Z INFO sending Commit {"height": 5119, "view": 0} -2023-12-15T23:30:57.328Z INFO approving block {"height": 5119, "hash": "c6d2f4fde6514c06f6053d5e80049858333304fec887f4d36400991bb2e7722f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19e04e74208d37971d2f7db0625e3dff2f72e13316b2b8677fcc1f3eac448730"} -2023-12-15T23:30:57.330Z INFO initializing dbft {"height": 5120, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:57.331Z debug frostfs-node/morph.go:229 new block {"index": 5119} -2023-12-15T23:30:57.744Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 5119, "blockHeight": 5119, "took": "5.393639ms"} -2023-12-15T23:30:58.329Z INFO sending PrepareRequest {"height": 5120, "view": 0} -2023-12-15T23:30:58.329Z INFO sending Commit {"height": 5120, "view": 0} -2023-12-15T23:30:58.330Z INFO approving block {"height": 5120, "hash": "0e1aa7cb85302ba2b71d74fab0c637767e9172cfd3c1ada22ef26ea55d1eda40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6d2f4fde6514c06f6053d5e80049858333304fec887f4d36400991bb2e7722f"} -2023-12-15T23:30:58.331Z INFO initializing dbft {"height": 5121, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:58.332Z debug frostfs-node/morph.go:229 new block {"index": 5120} -2023-12-15T23:30:58.748Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5120, "blockHeight": 5120, "took": "9.479754ms"} -2023-12-15T23:30:59.331Z INFO sending PrepareRequest {"height": 5121, "view": 0} -2023-12-15T23:30:59.332Z INFO sending Commit {"height": 5121, "view": 0} -2023-12-15T23:30:59.332Z INFO approving block {"height": 5121, "hash": "2972837696cf43077c87017083dcc7b5ee6fdacbf8edec0f4bf601bb037ecce3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e1aa7cb85302ba2b71d74fab0c637767e9172cfd3c1ada22ef26ea55d1eda40"} -2023-12-15T23:30:59.334Z INFO initializing dbft {"height": 5122, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:30:59.334Z debug frostfs-node/morph.go:229 new block {"index": 5121} -2023-12-15T23:30:59.341Z INFO runtime log {"tx": "b718cc19f7a371282abe8d95312aa5ac74e144c38b6530f5d38070e108cde3cc", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:30:59.341Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 22 epoch for daughters"} -2023-12-15T23:30:59.747Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5121, "blockHeight": 5121, "took": "8.001165ms"} -2023-12-15T23:31:00.333Z INFO sending PrepareRequest {"height": 5122, "view": 0} -2023-12-15T23:31:00.333Z INFO sending Commit {"height": 5122, "view": 0} -2023-12-15T23:31:00.334Z INFO approving block {"height": 5122, "hash": "8b80a6dec5ceb4bab143be1051c5826ab84e7e6b9bd2fca2c5174391fd7cd554", "tx_count": 1, "merkle": "a37739fea5c09e91942454a9dce9011ade3c4a2237b66755b760db0e6053539a", "prev": "2972837696cf43077c87017083dcc7b5ee6fdacbf8edec0f4bf601bb037ecce3"} -2023-12-15T23:31:00.335Z INFO runtime log {"tx": "9a5353600edb60b75567b637224a3cde1a01e9dca9542494919ec0a5fe3977a3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:31:00.336Z INFO initializing dbft {"height": 5123, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:00.336Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 22} -2023-12-15T23:31:00.337Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 22} -2023-12-15T23:31:00.337Z debug frostfs-node/morph.go:229 new block {"index": 5122} -2023-12-15T23:31:00.747Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 5122, "blockHeight": 5122, "took": "7.060307ms"} -2023-12-15T23:31:01.335Z INFO sending PrepareRequest {"height": 5123, "view": 0} -2023-12-15T23:31:01.335Z INFO sending Commit {"height": 5123, "view": 0} -2023-12-15T23:31:01.336Z INFO approving block {"height": 5123, "hash": "66826adf1d5bf32f8557e49654c8eaaa476737355a03210f554aa4f8f2dfcf8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b80a6dec5ceb4bab143be1051c5826ab84e7e6b9bd2fca2c5174391fd7cd554"} -2023-12-15T23:31:01.337Z INFO initializing dbft {"height": 5124, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:01.338Z debug frostfs-node/morph.go:229 new block {"index": 5123} -2023-12-15T23:31:01.747Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5123, "blockHeight": 5123, "took": "5.644217ms"} -2023-12-15T23:31:02.337Z INFO sending PrepareRequest {"height": 5124, "view": 0} -2023-12-15T23:31:02.337Z INFO sending Commit {"height": 5124, "view": 0} -2023-12-15T23:31:02.338Z INFO approving block {"height": 5124, "hash": "faa7d6d810e4a019f549ad6cd6a341d8c0260f5a863fb542c879316c46ef38f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66826adf1d5bf32f8557e49654c8eaaa476737355a03210f554aa4f8f2dfcf8d"} -2023-12-15T23:31:02.339Z INFO initializing dbft {"height": 5125, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:02.340Z debug frostfs-node/morph.go:229 new block {"index": 5124} -2023-12-15T23:31:02.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5124, "blockHeight": 5124, "took": "7.246468ms"} -2023-12-15T23:31:03.339Z INFO sending PrepareRequest {"height": 5125, "view": 0} -2023-12-15T23:31:03.339Z INFO sending Commit {"height": 5125, "view": 0} -2023-12-15T23:31:03.339Z INFO approving block {"height": 5125, "hash": "e7b4515210d0ee5fbb287faedc586e19db754291e8fcb2b71f5e89e6b07e8b4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "faa7d6d810e4a019f549ad6cd6a341d8c0260f5a863fb542c879316c46ef38f4"} -2023-12-15T23:31:03.341Z INFO initializing dbft {"height": 5126, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:03.342Z debug frostfs-node/morph.go:229 new block {"index": 5125} -2023-12-15T23:31:03.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5125, "blockHeight": 5125, "took": "5.900442ms"} -2023-12-15T23:31:04.341Z INFO sending PrepareRequest {"height": 5126, "view": 0} -2023-12-15T23:31:04.341Z INFO sending Commit {"height": 5126, "view": 0} -2023-12-15T23:31:04.342Z INFO approving block {"height": 5126, "hash": "6f6a65a4c394ab370a172ccaeee2cd6d8f764a83b79cd36550716dbeeadfe139", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7b4515210d0ee5fbb287faedc586e19db754291e8fcb2b71f5e89e6b07e8b4f"} -2023-12-15T23:31:04.343Z INFO initializing dbft {"height": 5127, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:04.344Z debug frostfs-node/morph.go:229 new block {"index": 5126} -2023-12-15T23:31:04.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5126, "blockHeight": 5126, "took": "7.215436ms"} -2023-12-15T23:31:05.343Z INFO sending PrepareRequest {"height": 5127, "view": 0} -2023-12-15T23:31:05.343Z INFO sending Commit {"height": 5127, "view": 0} -2023-12-15T23:31:05.344Z INFO approving block {"height": 5127, "hash": "ba977700dd7b3a6e6e88347e1bb6930a0e53b6bcc3eeccb1153fb412549ea346", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f6a65a4c394ab370a172ccaeee2cd6d8f764a83b79cd36550716dbeeadfe139"} -2023-12-15T23:31:05.345Z INFO initializing dbft {"height": 5128, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:05.346Z debug frostfs-node/morph.go:229 new block {"index": 5127} -2023-12-15T23:31:05.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5127, "blockHeight": 5127, "took": "6.800514ms"} -2023-12-15T23:31:06.346Z INFO sending PrepareRequest {"height": 5128, "view": 0} -2023-12-15T23:31:06.346Z INFO sending Commit {"height": 5128, "view": 0} -2023-12-15T23:31:06.346Z INFO approving block {"height": 5128, "hash": "24462cfb19a249b068af46e5c59c112b9a8eeab2ca46ce124ac783e396eb281c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba977700dd7b3a6e6e88347e1bb6930a0e53b6bcc3eeccb1153fb412549ea346"} -2023-12-15T23:31:06.347Z INFO initializing dbft {"height": 5129, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:06.348Z debug frostfs-node/morph.go:229 new block {"index": 5128} -2023-12-15T23:31:06.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5128, "blockHeight": 5128, "took": "6.546056ms"} -2023-12-15T23:31:07.348Z INFO sending PrepareRequest {"height": 5129, "view": 0} -2023-12-15T23:31:07.348Z INFO sending Commit {"height": 5129, "view": 0} -2023-12-15T23:31:07.349Z INFO approving block {"height": 5129, "hash": "6202bc350a9d83e756f97fd78012b061d36cd995a085707a99d5af86c3d6c8a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24462cfb19a249b068af46e5c59c112b9a8eeab2ca46ce124ac783e396eb281c"} -2023-12-15T23:31:07.350Z INFO initializing dbft {"height": 5130, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:07.351Z debug frostfs-node/morph.go:229 new block {"index": 5129} -2023-12-15T23:31:07.753Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5129, "blockHeight": 5129, "took": "6.805006ms"} -2023-12-15T23:31:08.350Z INFO sending PrepareRequest {"height": 5130, "view": 0} -2023-12-15T23:31:08.350Z INFO sending Commit {"height": 5130, "view": 0} -2023-12-15T23:31:08.350Z INFO approving block {"height": 5130, "hash": "aea566f88ce2bcd90b8cda92f8f71e7e1fda53351412ac53604396643d01bf07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6202bc350a9d83e756f97fd78012b061d36cd995a085707a99d5af86c3d6c8a0"} -2023-12-15T23:31:08.352Z INFO initializing dbft {"height": 5131, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:08.353Z debug frostfs-node/morph.go:229 new block {"index": 5130} -2023-12-15T23:31:08.754Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5130, "blockHeight": 5130, "took": "6.751386ms"} -2023-12-15T23:31:09.351Z INFO sending PrepareRequest {"height": 5131, "view": 0} -2023-12-15T23:31:09.351Z INFO sending Commit {"height": 5131, "view": 0} -2023-12-15T23:31:09.352Z INFO approving block {"height": 5131, "hash": "4d34ba79f019129dbcbae058f52935d0b61031eee4e3842692d9bb652befc095", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aea566f88ce2bcd90b8cda92f8f71e7e1fda53351412ac53604396643d01bf07"} -2023-12-15T23:31:09.353Z INFO initializing dbft {"height": 5132, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:09.354Z debug frostfs-node/morph.go:229 new block {"index": 5131} -2023-12-15T23:31:09.755Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5131, "blockHeight": 5131, "took": "6.42207ms"} -2023-12-15T23:31:10.353Z INFO sending PrepareRequest {"height": 5132, "view": 0} -2023-12-15T23:31:10.353Z INFO sending Commit {"height": 5132, "view": 0} -2023-12-15T23:31:10.353Z INFO approving block {"height": 5132, "hash": "f2d9c353061afcc6775548015b253ccb98323662c1b263103cc82e33be90f68c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d34ba79f019129dbcbae058f52935d0b61031eee4e3842692d9bb652befc095"} -2023-12-15T23:31:10.355Z INFO initializing dbft {"height": 5133, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:10.356Z debug frostfs-node/morph.go:229 new block {"index": 5132} -2023-12-15T23:31:10.755Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5132, "blockHeight": 5132, "took": "6.298928ms"} -2023-12-15T23:31:11.355Z INFO sending PrepareRequest {"height": 5133, "view": 0} -2023-12-15T23:31:11.356Z INFO sending Commit {"height": 5133, "view": 0} -2023-12-15T23:31:11.356Z INFO approving block {"height": 5133, "hash": "73fe9fec075918d474a921136efcd9863a5bec1766ab142a37b556fb7538e07f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2d9c353061afcc6775548015b253ccb98323662c1b263103cc82e33be90f68c"} -2023-12-15T23:31:11.358Z INFO initializing dbft {"height": 5134, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:11.359Z debug frostfs-node/morph.go:229 new block {"index": 5133} -2023-12-15T23:31:11.757Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5133, "blockHeight": 5133, "took": "6.745917ms"} -2023-12-15T23:31:12.357Z INFO sending PrepareRequest {"height": 5134, "view": 0} -2023-12-15T23:31:12.358Z INFO sending Commit {"height": 5134, "view": 0} -2023-12-15T23:31:12.358Z INFO approving block {"height": 5134, "hash": "b426b64452472496b72123d9dc0218c5d3c74a6b2933a7d2d488ac3eefc31ab0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73fe9fec075918d474a921136efcd9863a5bec1766ab142a37b556fb7538e07f"} -2023-12-15T23:31:12.360Z INFO initializing dbft {"height": 5135, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:12.361Z debug frostfs-node/morph.go:229 new block {"index": 5134} -2023-12-15T23:31:12.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5134, "blockHeight": 5134, "took": "5.045977ms"} -2023-12-15T23:31:13.359Z INFO sending PrepareRequest {"height": 5135, "view": 0} -2023-12-15T23:31:13.360Z INFO sending Commit {"height": 5135, "view": 0} -2023-12-15T23:31:13.360Z INFO approving block {"height": 5135, "hash": "15219e2004064c68c17b90ea85816f6b1f86606404d66d4d35fcdb7c1a9d17d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b426b64452472496b72123d9dc0218c5d3c74a6b2933a7d2d488ac3eefc31ab0"} -2023-12-15T23:31:13.362Z INFO initializing dbft {"height": 5136, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:13.363Z debug frostfs-node/morph.go:229 new block {"index": 5135} -2023-12-15T23:31:13.759Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5135, "blockHeight": 5135, "took": "6.787687ms"} -2023-12-15T23:31:14.361Z INFO sending PrepareRequest {"height": 5136, "view": 0} -2023-12-15T23:31:14.361Z INFO sending Commit {"height": 5136, "view": 0} -2023-12-15T23:31:14.362Z INFO approving block {"height": 5136, "hash": "e1caf238e105a29e4ceaf5b560cf6d578b458e88b0a91663c07853bce0bc992d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15219e2004064c68c17b90ea85816f6b1f86606404d66d4d35fcdb7c1a9d17d4"} -2023-12-15T23:31:14.363Z INFO initializing dbft {"height": 5137, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:14.364Z debug frostfs-node/morph.go:229 new block {"index": 5136} -2023-12-15T23:31:14.760Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5136, "blockHeight": 5136, "took": "6.345997ms"} -2023-12-15T23:31:15.363Z INFO sending PrepareRequest {"height": 5137, "view": 0} -2023-12-15T23:31:15.363Z INFO sending Commit {"height": 5137, "view": 0} -2023-12-15T23:31:15.364Z INFO approving block {"height": 5137, "hash": "96068cbde225884dd8aabf8d6fa3b849677ea90e0dcf25d4591e9fd1ca6dd636", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1caf238e105a29e4ceaf5b560cf6d578b458e88b0a91663c07853bce0bc992d"} -2023-12-15T23:31:15.365Z INFO initializing dbft {"height": 5138, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:15.366Z debug frostfs-node/morph.go:229 new block {"index": 5137} -2023-12-15T23:31:15.760Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5137, "blockHeight": 5137, "took": "5.538161ms"} -2023-12-15T23:31:16.365Z INFO sending PrepareRequest {"height": 5138, "view": 0} -2023-12-15T23:31:16.365Z INFO sending Commit {"height": 5138, "view": 0} -2023-12-15T23:31:16.366Z INFO approving block {"height": 5138, "hash": "a10ce557b541981cfbb7054dd7df7c13cb4b2180d5a5e2383582f44b32b23022", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96068cbde225884dd8aabf8d6fa3b849677ea90e0dcf25d4591e9fd1ca6dd636"} -2023-12-15T23:31:16.367Z INFO initializing dbft {"height": 5139, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:16.368Z debug frostfs-node/morph.go:229 new block {"index": 5138} -2023-12-15T23:31:16.764Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5138, "blockHeight": 5138, "took": "8.554166ms"} -2023-12-15T23:31:17.367Z INFO sending PrepareRequest {"height": 5139, "view": 0} -2023-12-15T23:31:17.367Z INFO sending Commit {"height": 5139, "view": 0} -2023-12-15T23:31:17.368Z INFO approving block {"height": 5139, "hash": "afa5b14d54a3d7b8c1e0a3d90aff82151f88ca298187f570e4352833081458ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a10ce557b541981cfbb7054dd7df7c13cb4b2180d5a5e2383582f44b32b23022"} -2023-12-15T23:31:17.369Z INFO initializing dbft {"height": 5140, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:17.370Z debug frostfs-node/morph.go:229 new block {"index": 5139} -2023-12-15T23:31:17.763Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5139, "blockHeight": 5139, "took": "6.963733ms"} -2023-12-15T23:31:18.369Z INFO sending PrepareRequest {"height": 5140, "view": 0} -2023-12-15T23:31:18.369Z INFO sending Commit {"height": 5140, "view": 0} -2023-12-15T23:31:18.370Z INFO approving block {"height": 5140, "hash": "3fc3d9f6ca808578f05fe9684b0b48fffff6a7343aa7aede1ec56d975c381a59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afa5b14d54a3d7b8c1e0a3d90aff82151f88ca298187f570e4352833081458ae"} -2023-12-15T23:31:18.371Z INFO initializing dbft {"height": 5141, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:18.372Z debug frostfs-node/morph.go:229 new block {"index": 5140} -2023-12-15T23:31:18.764Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5140, "blockHeight": 5140, "took": "7.260748ms"} -2023-12-15T23:31:19.371Z INFO sending PrepareRequest {"height": 5141, "view": 0} -2023-12-15T23:31:19.371Z INFO sending Commit {"height": 5141, "view": 0} -2023-12-15T23:31:19.372Z INFO approving block {"height": 5141, "hash": "fb9185e32a22f5189d6c592b54d974baa23fe0b9919078b06ae625abff049c71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3fc3d9f6ca808578f05fe9684b0b48fffff6a7343aa7aede1ec56d975c381a59"} -2023-12-15T23:31:19.373Z INFO initializing dbft {"height": 5142, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:19.374Z debug frostfs-node/morph.go:229 new block {"index": 5141} -2023-12-15T23:31:19.767Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5141, "blockHeight": 5141, "took": "10.129675ms"} -2023-12-15T23:31:20.373Z INFO sending PrepareRequest {"height": 5142, "view": 0} -2023-12-15T23:31:20.374Z INFO sending Commit {"height": 5142, "view": 0} -2023-12-15T23:31:20.374Z INFO approving block {"height": 5142, "hash": "879f60eda46a3293580f3ee1eef670801ff3b218606f5abfe57afb2f39b765db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb9185e32a22f5189d6c592b54d974baa23fe0b9919078b06ae625abff049c71"} -2023-12-15T23:31:20.375Z INFO initializing dbft {"height": 5143, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:20.376Z debug frostfs-node/morph.go:229 new block {"index": 5142} -2023-12-15T23:31:20.767Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5142, "blockHeight": 5142, "took": "9.255716ms"} -2023-12-15T23:31:21.376Z INFO sending PrepareRequest {"height": 5143, "view": 0} -2023-12-15T23:31:21.376Z INFO sending Commit {"height": 5143, "view": 0} -2023-12-15T23:31:21.376Z INFO approving block {"height": 5143, "hash": "baff204533835dc8a7f52ed0fef998e7b0da0ae00971edeaf2d12364640f94e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "879f60eda46a3293580f3ee1eef670801ff3b218606f5abfe57afb2f39b765db"} -2023-12-15T23:31:21.378Z INFO initializing dbft {"height": 5144, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:21.378Z debug frostfs-node/morph.go:229 new block {"index": 5143} -2023-12-15T23:31:21.765Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5143, "blockHeight": 5143, "took": "7.136473ms"} -2023-12-15T23:31:22.378Z INFO sending PrepareRequest {"height": 5144, "view": 0} -2023-12-15T23:31:22.378Z INFO sending Commit {"height": 5144, "view": 0} -2023-12-15T23:31:22.378Z INFO approving block {"height": 5144, "hash": "63d9a4453ad1d8d191676d17edb4c081b6ac65f0b1027bc44d40db629bc5fda9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "baff204533835dc8a7f52ed0fef998e7b0da0ae00971edeaf2d12364640f94e6"} -2023-12-15T23:31:22.380Z INFO initializing dbft {"height": 5145, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:22.381Z debug frostfs-node/morph.go:229 new block {"index": 5144} -2023-12-15T23:31:22.765Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5144, "blockHeight": 5144, "took": "6.193134ms"} -2023-12-15T23:31:23.379Z INFO sending PrepareRequest {"height": 5145, "view": 0} -2023-12-15T23:31:23.379Z INFO sending Commit {"height": 5145, "view": 0} -2023-12-15T23:31:23.380Z INFO approving block {"height": 5145, "hash": "1e1aecd80e74b701ad0180c16ee83087f849f9069c76fd27048f908f164b05b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63d9a4453ad1d8d191676d17edb4c081b6ac65f0b1027bc44d40db629bc5fda9"} -2023-12-15T23:31:23.381Z INFO initializing dbft {"height": 5146, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:23.382Z debug frostfs-node/morph.go:229 new block {"index": 5145} -2023-12-15T23:31:23.769Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5145, "blockHeight": 5145, "took": "9.152304ms"} -2023-12-15T23:31:24.381Z INFO sending PrepareRequest {"height": 5146, "view": 0} -2023-12-15T23:31:24.382Z INFO sending Commit {"height": 5146, "view": 0} -2023-12-15T23:31:24.383Z INFO approving block {"height": 5146, "hash": "d90cfee6af4ca770b2dbf0d2e04f1fe05476fbf052a7293747276542b7b43909", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e1aecd80e74b701ad0180c16ee83087f849f9069c76fd27048f908f164b05b6"} -2023-12-15T23:31:24.385Z INFO initializing dbft {"height": 5147, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:24.386Z debug frostfs-node/morph.go:229 new block {"index": 5146} -2023-12-15T23:31:24.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5146, "blockHeight": 5146, "took": "10.571046ms"} -2023-12-15T23:31:25.384Z INFO sending PrepareRequest {"height": 5147, "view": 0} -2023-12-15T23:31:25.384Z INFO sending Commit {"height": 5147, "view": 0} -2023-12-15T23:31:25.384Z INFO approving block {"height": 5147, "hash": "81b7bdfa60623da2f3abcec9c8ab0e7b2683b253b7461f1aaefc3abb045885e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d90cfee6af4ca770b2dbf0d2e04f1fe05476fbf052a7293747276542b7b43909"} -2023-12-15T23:31:25.386Z INFO initializing dbft {"height": 5148, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:25.387Z debug frostfs-node/morph.go:229 new block {"index": 5147} -2023-12-15T23:31:25.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5147, "blockHeight": 5147, "took": "9.476404ms"} -2023-12-15T23:31:26.386Z INFO sending PrepareRequest {"height": 5148, "view": 0} -2023-12-15T23:31:26.386Z INFO sending Commit {"height": 5148, "view": 0} -2023-12-15T23:31:26.386Z INFO approving block {"height": 5148, "hash": "dec8cc2fdb8488b44e91aa2e23383def91c29616995384b537400852f106808f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81b7bdfa60623da2f3abcec9c8ab0e7b2683b253b7461f1aaefc3abb045885e4"} -2023-12-15T23:31:26.388Z INFO initializing dbft {"height": 5149, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:26.389Z debug frostfs-node/morph.go:229 new block {"index": 5148} -2023-12-15T23:31:26.768Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5148, "blockHeight": 5148, "took": "6.298274ms"} -2023-12-15T23:31:27.387Z INFO sending PrepareRequest {"height": 5149, "view": 0} -2023-12-15T23:31:27.388Z INFO sending Commit {"height": 5149, "view": 0} -2023-12-15T23:31:27.388Z INFO approving block {"height": 5149, "hash": "ecf71d32f3425127b643517456c9e55c34acb4f0f82c741480a56510e9f507d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dec8cc2fdb8488b44e91aa2e23383def91c29616995384b537400852f106808f"} -2023-12-15T23:31:27.389Z INFO initializing dbft {"height": 5150, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:27.390Z debug frostfs-node/morph.go:229 new block {"index": 5149} -2023-12-15T23:31:27.773Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5149, "blockHeight": 5149, "took": "9.971041ms"} -2023-12-15T23:31:28.389Z INFO sending PrepareRequest {"height": 5150, "view": 0} -2023-12-15T23:31:28.389Z INFO sending Commit {"height": 5150, "view": 0} -2023-12-15T23:31:28.389Z INFO approving block {"height": 5150, "hash": "91ca161e770f415ca608fd114323bdfc3d5311b50df2c94c9fcbcb477d5e4d8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecf71d32f3425127b643517456c9e55c34acb4f0f82c741480a56510e9f507d5"} -2023-12-15T23:31:28.391Z INFO initializing dbft {"height": 5151, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:28.392Z debug frostfs-node/morph.go:229 new block {"index": 5150} -2023-12-15T23:31:28.770Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5150, "blockHeight": 5150, "took": "5.705728ms"} -2023-12-15T23:31:29.390Z INFO sending PrepareRequest {"height": 5151, "view": 0} -2023-12-15T23:31:29.391Z INFO sending Commit {"height": 5151, "view": 0} -2023-12-15T23:31:29.391Z INFO approving block {"height": 5151, "hash": "e9a0d38964a94ef5b36449ccdd772af4ee50b42c08220184fcf5fc69e3070374", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91ca161e770f415ca608fd114323bdfc3d5311b50df2c94c9fcbcb477d5e4d8c"} -2023-12-15T23:31:29.393Z INFO initializing dbft {"height": 5152, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:29.394Z debug frostfs-node/morph.go:229 new block {"index": 5151} -2023-12-15T23:31:29.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5151, "blockHeight": 5151, "took": "6.187851ms"} -2023-12-15T23:31:30.392Z INFO sending PrepareRequest {"height": 5152, "view": 0} -2023-12-15T23:31:30.393Z INFO sending Commit {"height": 5152, "view": 0} -2023-12-15T23:31:30.393Z INFO approving block {"height": 5152, "hash": "e9b9e404381087103ec93b0f600fe59cbbb69e62021c78ffc036cde283e11cc9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9a0d38964a94ef5b36449ccdd772af4ee50b42c08220184fcf5fc69e3070374"} -2023-12-15T23:31:30.395Z INFO initializing dbft {"height": 5153, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:30.396Z debug frostfs-node/morph.go:229 new block {"index": 5152} -2023-12-15T23:31:30.772Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5152, "blockHeight": 5152, "took": "6.834449ms"} -2023-12-15T23:31:31.394Z INFO sending PrepareRequest {"height": 5153, "view": 0} -2023-12-15T23:31:31.394Z INFO sending Commit {"height": 5153, "view": 0} -2023-12-15T23:31:31.395Z INFO approving block {"height": 5153, "hash": "6fa5427a43b480d58a0f783e47aec14a90c08b2f6b53c8fc1a9c3f6d5afc4c60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9b9e404381087103ec93b0f600fe59cbbb69e62021c78ffc036cde283e11cc9"} -2023-12-15T23:31:31.396Z INFO initializing dbft {"height": 5154, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:31.397Z debug frostfs-node/morph.go:229 new block {"index": 5153} -2023-12-15T23:31:31.774Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5153, "blockHeight": 5153, "took": "7.394935ms"} -2023-12-15T23:31:32.396Z INFO sending PrepareRequest {"height": 5154, "view": 0} -2023-12-15T23:31:32.396Z INFO sending Commit {"height": 5154, "view": 0} -2023-12-15T23:31:32.396Z INFO approving block {"height": 5154, "hash": "a816a50ae755a85876b4b8484ee5b6ef4fa5a8d73b38e09befa74934098748a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fa5427a43b480d58a0f783e47aec14a90c08b2f6b53c8fc1a9c3f6d5afc4c60"} -2023-12-15T23:31:32.398Z INFO initializing dbft {"height": 5155, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:32.398Z debug frostfs-node/morph.go:229 new block {"index": 5154} -2023-12-15T23:31:32.773Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5154, "blockHeight": 5154, "took": "6.277823ms"} -2023-12-15T23:31:33.397Z INFO sending PrepareRequest {"height": 5155, "view": 0} -2023-12-15T23:31:33.398Z INFO sending Commit {"height": 5155, "view": 0} -2023-12-15T23:31:33.398Z INFO approving block {"height": 5155, "hash": "c9bc2703a26ace251089889f47df01ae1ca88faa76a7a86e5128da18f6104af3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a816a50ae755a85876b4b8484ee5b6ef4fa5a8d73b38e09befa74934098748a8"} -2023-12-15T23:31:33.400Z INFO initializing dbft {"height": 5156, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:33.400Z debug frostfs-node/morph.go:229 new block {"index": 5155} -2023-12-15T23:31:33.776Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5155, "blockHeight": 5155, "took": "7.351394ms"} -2023-12-15T23:31:34.400Z INFO sending PrepareRequest {"height": 5156, "view": 0} -2023-12-15T23:31:34.400Z INFO sending Commit {"height": 5156, "view": 0} -2023-12-15T23:31:34.400Z INFO approving block {"height": 5156, "hash": "73ba43509bd31ac4c5e384afca4cede22642381134c3b68a3548725b3c6c1cef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9bc2703a26ace251089889f47df01ae1ca88faa76a7a86e5128da18f6104af3"} -2023-12-15T23:31:34.402Z INFO initializing dbft {"height": 5157, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:34.403Z debug frostfs-node/morph.go:229 new block {"index": 5156} -2023-12-15T23:31:34.778Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5156, "blockHeight": 5156, "took": "9.735525ms"} -2023-12-15T23:31:35.401Z INFO sending PrepareRequest {"height": 5157, "view": 0} -2023-12-15T23:31:35.402Z INFO sending Commit {"height": 5157, "view": 0} -2023-12-15T23:31:35.402Z INFO approving block {"height": 5157, "hash": "0d0d32d84efcb52bef2007290fedb4e1a3fd547e67f702f6c572b9526fa62e45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73ba43509bd31ac4c5e384afca4cede22642381134c3b68a3548725b3c6c1cef"} -2023-12-15T23:31:35.404Z INFO initializing dbft {"height": 5158, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:35.406Z debug frostfs-node/morph.go:229 new block {"index": 5157} -2023-12-15T23:31:35.780Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5157, "blockHeight": 5157, "took": "10.869475ms"} -2023-12-15T23:31:36.403Z INFO sending PrepareRequest {"height": 5158, "view": 0} -2023-12-15T23:31:36.404Z INFO sending Commit {"height": 5158, "view": 0} -2023-12-15T23:31:36.404Z INFO approving block {"height": 5158, "hash": "b6b7447e21a8a97288d9b8294208e56ce8a7df72aaf981655a22f3216410763f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d0d32d84efcb52bef2007290fedb4e1a3fd547e67f702f6c572b9526fa62e45"} -2023-12-15T23:31:36.405Z INFO initializing dbft {"height": 5159, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:36.406Z debug frostfs-node/morph.go:229 new block {"index": 5158} -2023-12-15T23:31:36.780Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5158, "blockHeight": 5158, "took": "9.805797ms"} -2023-12-15T23:31:37.406Z INFO sending PrepareRequest {"height": 5159, "view": 0} -2023-12-15T23:31:37.406Z INFO sending Commit {"height": 5159, "view": 0} -2023-12-15T23:31:37.406Z INFO approving block {"height": 5159, "hash": "949e15ab5fbfa0451fc170d56b8140dde30e0153fe1d2bf9b591e873b73d32a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6b7447e21a8a97288d9b8294208e56ce8a7df72aaf981655a22f3216410763f"} -2023-12-15T23:31:37.408Z INFO initializing dbft {"height": 5160, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:37.408Z debug frostfs-node/morph.go:229 new block {"index": 5159} -2023-12-15T23:31:37.781Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5159, "blockHeight": 5159, "took": "9.671504ms"} -2023-12-15T23:31:38.408Z INFO sending PrepareRequest {"height": 5160, "view": 0} -2023-12-15T23:31:38.408Z INFO sending Commit {"height": 5160, "view": 0} -2023-12-15T23:31:38.408Z INFO approving block {"height": 5160, "hash": "ba4291eab52bddf08e9ede77c65da668cbfa996bc054853b28066951cc25cb95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "949e15ab5fbfa0451fc170d56b8140dde30e0153fe1d2bf9b591e873b73d32a0"} -2023-12-15T23:31:38.409Z INFO initializing dbft {"height": 5161, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:38.410Z debug frostfs-node/morph.go:229 new block {"index": 5160} -2023-12-15T23:31:38.782Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5160, "blockHeight": 5160, "took": "9.259401ms"} -2023-12-15T23:31:39.409Z INFO sending PrepareRequest {"height": 5161, "view": 0} -2023-12-15T23:31:39.410Z INFO sending Commit {"height": 5161, "view": 0} -2023-12-15T23:31:39.410Z INFO approving block {"height": 5161, "hash": "87011d064069d1254060eb29d9c226c91de4b8141b37940a80ed90508717160f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba4291eab52bddf08e9ede77c65da668cbfa996bc054853b28066951cc25cb95"} -2023-12-15T23:31:39.412Z INFO initializing dbft {"height": 5162, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:39.412Z debug frostfs-node/morph.go:229 new block {"index": 5161} -2023-12-15T23:31:39.779Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5161, "blockHeight": 5161, "took": "6.252372ms"} -2023-12-15T23:31:40.411Z INFO sending PrepareRequest {"height": 5162, "view": 0} -2023-12-15T23:31:40.411Z INFO sending Commit {"height": 5162, "view": 0} -2023-12-15T23:31:40.412Z INFO approving block {"height": 5162, "hash": "6bf4d224367a027d04e2ab4ac9cafa12f00d0e438a9facc2402ac401cce6bb81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87011d064069d1254060eb29d9c226c91de4b8141b37940a80ed90508717160f"} -2023-12-15T23:31:40.413Z INFO initializing dbft {"height": 5163, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:40.414Z debug frostfs-node/morph.go:229 new block {"index": 5162} -2023-12-15T23:31:40.780Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5162, "blockHeight": 5162, "took": "6.339676ms"} -2023-12-15T23:31:41.412Z INFO sending PrepareRequest {"height": 5163, "view": 0} -2023-12-15T23:31:41.413Z INFO sending Commit {"height": 5163, "view": 0} -2023-12-15T23:31:41.413Z INFO approving block {"height": 5163, "hash": "d1f57a0ca16d367501f41dbf9e7f3dba320efecf13586925ebfdb153300be4d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bf4d224367a027d04e2ab4ac9cafa12f00d0e438a9facc2402ac401cce6bb81"} -2023-12-15T23:31:41.415Z INFO initializing dbft {"height": 5164, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:41.415Z debug frostfs-node/morph.go:229 new block {"index": 5163} -2023-12-15T23:31:41.781Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5163, "blockHeight": 5163, "took": "6.598303ms"} -2023-12-15T23:31:42.414Z INFO sending PrepareRequest {"height": 5164, "view": 0} -2023-12-15T23:31:42.414Z INFO sending Commit {"height": 5164, "view": 0} -2023-12-15T23:31:42.415Z INFO approving block {"height": 5164, "hash": "154b6a926d9d02137c53b333dbcf00ac4a6d1e5533f24bc8a795e410f0b3926b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1f57a0ca16d367501f41dbf9e7f3dba320efecf13586925ebfdb153300be4d1"} -2023-12-15T23:31:42.416Z INFO initializing dbft {"height": 5165, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:42.417Z debug frostfs-node/morph.go:229 new block {"index": 5164} -2023-12-15T23:31:42.781Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5164, "blockHeight": 5164, "took": "5.976006ms"} -2023-12-15T23:31:43.416Z INFO sending PrepareRequest {"height": 5165, "view": 0} -2023-12-15T23:31:43.416Z INFO sending Commit {"height": 5165, "view": 0} -2023-12-15T23:31:43.417Z INFO approving block {"height": 5165, "hash": "42a73071a98a679295ca8e384d6f956acdbb679405efc147bd83876a80ad3b5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "154b6a926d9d02137c53b333dbcf00ac4a6d1e5533f24bc8a795e410f0b3926b"} -2023-12-15T23:31:43.418Z INFO initializing dbft {"height": 5166, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:43.419Z debug frostfs-node/morph.go:229 new block {"index": 5165} -2023-12-15T23:31:43.783Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5165, "blockHeight": 5165, "took": "6.818081ms"} -2023-12-15T23:31:44.418Z INFO sending PrepareRequest {"height": 5166, "view": 0} -2023-12-15T23:31:44.418Z INFO sending Commit {"height": 5166, "view": 0} -2023-12-15T23:31:44.418Z INFO approving block {"height": 5166, "hash": "a23c5122b0b2ba9ccc532d7bee1425f7e46004d60a732b32dc39870e74854868", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42a73071a98a679295ca8e384d6f956acdbb679405efc147bd83876a80ad3b5e"} -2023-12-15T23:31:44.420Z INFO initializing dbft {"height": 5167, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:44.421Z debug frostfs-node/morph.go:229 new block {"index": 5166} -2023-12-15T23:31:44.785Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5166, "blockHeight": 5166, "took": "6.979822ms"} -2023-12-15T23:31:45.419Z INFO sending PrepareRequest {"height": 5167, "view": 0} -2023-12-15T23:31:45.419Z INFO sending Commit {"height": 5167, "view": 0} -2023-12-15T23:31:45.420Z INFO approving block {"height": 5167, "hash": "989814248f77dd2f582a7006597333f6bdab4abfcf0c1e9a60696e7400142eb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a23c5122b0b2ba9ccc532d7bee1425f7e46004d60a732b32dc39870e74854868"} -2023-12-15T23:31:45.421Z INFO initializing dbft {"height": 5168, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:45.421Z debug frostfs-node/morph.go:229 new block {"index": 5167} -2023-12-15T23:31:45.424Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:31:45.428Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:31:45.428Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:31:45.789Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5167, "blockHeight": 5167, "took": "10.281237ms"} -2023-12-15T23:31:46.421Z INFO sending PrepareRequest {"height": 5168, "view": 0} -2023-12-15T23:31:46.422Z INFO sending Commit {"height": 5168, "view": 0} -2023-12-15T23:31:46.422Z INFO approving block {"height": 5168, "hash": "ad608430d130ae1a9ce6ce182cce1cc263a1f89bbde27bf5ec8f749adb5cc0b2", "tx_count": 2, "merkle": "d4ccec7a0683c1e23bccc215c023acc7df96fc658c1fc30aa7c13150c5f50787", "prev": "989814248f77dd2f582a7006597333f6bdab4abfcf0c1e9a60696e7400142eb1"} -2023-12-15T23:31:46.424Z INFO runtime log {"tx": "f542d624d042eafd8edf9b52983bab8148841b44206a1b3e7dfab67d006dcca0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:31:46.424Z INFO runtime log {"tx": "f542d624d042eafd8edf9b52983bab8148841b44206a1b3e7dfab67d006dcca0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:31:46.425Z INFO initializing dbft {"height": 5169, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:46.427Z debug frostfs-node/morph.go:229 new block {"index": 5168} -2023-12-15T23:31:46.791Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5168, "blockHeight": 5168, "took": "10.700208ms"} -2023-12-15T23:31:47.423Z INFO sending PrepareRequest {"height": 5169, "view": 0} -2023-12-15T23:31:47.424Z INFO sending Commit {"height": 5169, "view": 0} -2023-12-15T23:31:47.424Z INFO approving block {"height": 5169, "hash": "c88a37a71708b587ccbaf9705c1e5592c4d517e363e5a7e101118a6a3f791365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad608430d130ae1a9ce6ce182cce1cc263a1f89bbde27bf5ec8f749adb5cc0b2"} -2023-12-15T23:31:47.427Z INFO initializing dbft {"height": 5170, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:47.427Z debug frostfs-node/morph.go:229 new block {"index": 5169} -2023-12-15T23:31:47.787Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5169, "blockHeight": 5169, "took": "6.082899ms"} -2023-12-15T23:31:48.426Z INFO sending PrepareRequest {"height": 5170, "view": 0} -2023-12-15T23:31:48.426Z INFO sending Commit {"height": 5170, "view": 0} -2023-12-15T23:31:48.426Z INFO approving block {"height": 5170, "hash": "3e618664fda3e21b707420715fcb46aa8318fc16baddb89d871366fc26aa9dd2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c88a37a71708b587ccbaf9705c1e5592c4d517e363e5a7e101118a6a3f791365"} -2023-12-15T23:31:48.428Z INFO initializing dbft {"height": 5171, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:48.429Z debug frostfs-node/morph.go:229 new block {"index": 5170} -2023-12-15T23:31:48.788Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5170, "blockHeight": 5170, "took": "6.23409ms"} -2023-12-15T23:31:49.428Z INFO sending PrepareRequest {"height": 5171, "view": 0} -2023-12-15T23:31:49.428Z INFO sending Commit {"height": 5171, "view": 0} -2023-12-15T23:31:49.429Z INFO approving block {"height": 5171, "hash": "288ed5a794a69727b768c82c6210f1e2d6fe36872a5ffd152c6b63f5ec125883", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e618664fda3e21b707420715fcb46aa8318fc16baddb89d871366fc26aa9dd2"} -2023-12-15T23:31:49.431Z INFO initializing dbft {"height": 5172, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:49.432Z debug frostfs-node/morph.go:229 new block {"index": 5171} -2023-12-15T23:31:49.790Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5171, "blockHeight": 5171, "took": "7.67458ms"} -2023-12-15T23:31:50.430Z INFO sending PrepareRequest {"height": 5172, "view": 0} -2023-12-15T23:31:50.430Z INFO sending Commit {"height": 5172, "view": 0} -2023-12-15T23:31:50.430Z INFO approving block {"height": 5172, "hash": "cec60ce9716fcd261a48811a97d6d8078002c998bf71c76070d029c4ce12eb25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "288ed5a794a69727b768c82c6210f1e2d6fe36872a5ffd152c6b63f5ec125883"} -2023-12-15T23:31:50.432Z INFO initializing dbft {"height": 5173, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:50.433Z debug frostfs-node/morph.go:229 new block {"index": 5172} -2023-12-15T23:31:50.789Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5172, "blockHeight": 5172, "took": "6.236541ms"} -2023-12-15T23:31:51.432Z INFO sending PrepareRequest {"height": 5173, "view": 0} -2023-12-15T23:31:51.432Z INFO sending Commit {"height": 5173, "view": 0} -2023-12-15T23:31:51.433Z INFO approving block {"height": 5173, "hash": "78d79314110f8f4f29d3a05ed452aff78c808eacbc13ff1252713ff662d7b81d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cec60ce9716fcd261a48811a97d6d8078002c998bf71c76070d029c4ce12eb25"} -2023-12-15T23:31:51.434Z INFO initializing dbft {"height": 5174, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:51.435Z debug frostfs-node/morph.go:229 new block {"index": 5173} -2023-12-15T23:31:51.789Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5173, "blockHeight": 5173, "took": "5.647564ms"} -2023-12-15T23:31:52.434Z INFO sending PrepareRequest {"height": 5174, "view": 0} -2023-12-15T23:31:52.434Z INFO sending Commit {"height": 5174, "view": 0} -2023-12-15T23:31:52.434Z INFO approving block {"height": 5174, "hash": "35cc0cf8de2623eaece70411ec8b2a58c203ecd144fa86829be956c3753b2574", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78d79314110f8f4f29d3a05ed452aff78c808eacbc13ff1252713ff662d7b81d"} -2023-12-15T23:31:52.436Z INFO initializing dbft {"height": 5175, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:52.437Z debug frostfs-node/morph.go:229 new block {"index": 5174} -2023-12-15T23:31:52.788Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5174, "blockHeight": 5174, "took": "4.433308ms"} -2023-12-15T23:31:53.435Z INFO sending PrepareRequest {"height": 5175, "view": 0} -2023-12-15T23:31:53.436Z INFO sending Commit {"height": 5175, "view": 0} -2023-12-15T23:31:53.436Z INFO approving block {"height": 5175, "hash": "de7fb78c7a02838fc5ae51f06a9a08c2e104805d06a9a5e9a5ed7926e29ea070", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35cc0cf8de2623eaece70411ec8b2a58c203ecd144fa86829be956c3753b2574"} -2023-12-15T23:31:53.438Z INFO initializing dbft {"height": 5176, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:53.438Z debug frostfs-node/morph.go:229 new block {"index": 5175} -2023-12-15T23:31:53.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5175, "blockHeight": 5175, "took": "6.844375ms"} -2023-12-15T23:31:54.438Z INFO sending PrepareRequest {"height": 5176, "view": 0} -2023-12-15T23:31:54.438Z INFO sending Commit {"height": 5176, "view": 0} -2023-12-15T23:31:54.438Z INFO approving block {"height": 5176, "hash": "528ffe726b598eb40649394743bd9a6f1271113d0e2fe2abc15c89e1141d4bc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de7fb78c7a02838fc5ae51f06a9a08c2e104805d06a9a5e9a5ed7926e29ea070"} -2023-12-15T23:31:54.440Z INFO initializing dbft {"height": 5177, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:54.440Z debug frostfs-node/morph.go:229 new block {"index": 5176} -2023-12-15T23:31:54.793Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5176, "blockHeight": 5176, "took": "7.426856ms"} -2023-12-15T23:31:55.439Z INFO sending PrepareRequest {"height": 5177, "view": 0} -2023-12-15T23:31:55.440Z INFO sending Commit {"height": 5177, "view": 0} -2023-12-15T23:31:55.440Z INFO approving block {"height": 5177, "hash": "41da5ab1ea5365236a631983f1c55d16179e3c493dd55fa34616abf7e9fc75ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "528ffe726b598eb40649394743bd9a6f1271113d0e2fe2abc15c89e1141d4bc1"} -2023-12-15T23:31:55.442Z INFO initializing dbft {"height": 5178, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:55.443Z debug frostfs-node/morph.go:229 new block {"index": 5177} -2023-12-15T23:31:55.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5177, "blockHeight": 5177, "took": "7.496825ms"} -2023-12-15T23:31:56.441Z INFO sending PrepareRequest {"height": 5178, "view": 0} -2023-12-15T23:31:56.441Z INFO sending Commit {"height": 5178, "view": 0} -2023-12-15T23:31:56.442Z INFO approving block {"height": 5178, "hash": "392ff685643f1400473e8bc95b9b9c09ff2d1b7ec850fcbedd054ea957ba6dc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41da5ab1ea5365236a631983f1c55d16179e3c493dd55fa34616abf7e9fc75ed"} -2023-12-15T23:31:56.443Z INFO initializing dbft {"height": 5179, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:56.444Z debug frostfs-node/morph.go:229 new block {"index": 5178} -2023-12-15T23:31:56.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5178, "blockHeight": 5178, "took": "6.134399ms"} -2023-12-15T23:31:57.443Z INFO sending PrepareRequest {"height": 5179, "view": 0} -2023-12-15T23:31:57.443Z INFO sending Commit {"height": 5179, "view": 0} -2023-12-15T23:31:57.443Z INFO approving block {"height": 5179, "hash": "6b4e5119ebef2397ac2bafa917ea0f701ec23d582a50a06c60a2f66a73984260", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "392ff685643f1400473e8bc95b9b9c09ff2d1b7ec850fcbedd054ea957ba6dc1"} -2023-12-15T23:31:57.445Z INFO initializing dbft {"height": 5180, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:57.445Z debug frostfs-node/morph.go:229 new block {"index": 5179} -2023-12-15T23:31:57.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5179, "blockHeight": 5179, "took": "5.957748ms"} -2023-12-15T23:31:58.444Z INFO sending PrepareRequest {"height": 5180, "view": 0} -2023-12-15T23:31:58.445Z INFO sending Commit {"height": 5180, "view": 0} -2023-12-15T23:31:58.445Z INFO approving block {"height": 5180, "hash": "bbfc6602e37d14c7c9645155191711ece0aab615b08359f96bb0ccf80931cd48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b4e5119ebef2397ac2bafa917ea0f701ec23d582a50a06c60a2f66a73984260"} -2023-12-15T23:31:58.447Z INFO initializing dbft {"height": 5181, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:58.447Z debug frostfs-node/morph.go:229 new block {"index": 5180} -2023-12-15T23:31:58.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5180, "blockHeight": 5180, "took": "5.655576ms"} -2023-12-15T23:31:59.446Z INFO sending PrepareRequest {"height": 5181, "view": 0} -2023-12-15T23:31:59.447Z INFO sending Commit {"height": 5181, "view": 0} -2023-12-15T23:31:59.447Z INFO approving block {"height": 5181, "hash": "b90cc8eac65258120c4cb7bbfb82df1e0fdb09719de8205c9ae7b4a3e2a30fba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbfc6602e37d14c7c9645155191711ece0aab615b08359f96bb0ccf80931cd48"} -2023-12-15T23:31:59.448Z INFO initializing dbft {"height": 5182, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:31:59.449Z debug frostfs-node/morph.go:229 new block {"index": 5181} -2023-12-15T23:31:59.453Z info settlement/calls.go:61 start basic income collection {"epoch": 22} -2023-12-15T23:31:59.455Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 22, "iteration": 1, "error": "no data for 0 iteration in 22 epoch for consumers's trusts"} -2023-12-15T23:31:59.797Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5181, "blockHeight": 5181, "took": "6.711101ms"} -2023-12-15T23:32:00.448Z INFO sending PrepareRequest {"height": 5182, "view": 0} -2023-12-15T23:32:00.449Z INFO sending Commit {"height": 5182, "view": 0} -2023-12-15T23:32:00.449Z INFO approving block {"height": 5182, "hash": "4bf8916b48a150ff685efe7b4a3d0e076a832efbdfe5e00f7f0c00804d23cf05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b90cc8eac65258120c4cb7bbfb82df1e0fdb09719de8205c9ae7b4a3e2a30fba"} -2023-12-15T23:32:00.451Z INFO initializing dbft {"height": 5183, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:00.452Z debug frostfs-node/morph.go:229 new block {"index": 5182} -2023-12-15T23:32:00.800Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5182, "blockHeight": 5182, "took": "8.768453ms"} -2023-12-15T23:32:01.450Z INFO sending PrepareRequest {"height": 5183, "view": 0} -2023-12-15T23:32:01.451Z INFO sending Commit {"height": 5183, "view": 0} -2023-12-15T23:32:01.451Z INFO approving block {"height": 5183, "hash": "66d4d86a7ac521d2faf27bff790a0b01cdfb4c2b0ae5928a807f6a3c58189819", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bf8916b48a150ff685efe7b4a3d0e076a832efbdfe5e00f7f0c00804d23cf05"} -2023-12-15T23:32:01.453Z INFO initializing dbft {"height": 5184, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:01.453Z debug frostfs-node/morph.go:229 new block {"index": 5183} -2023-12-15T23:32:01.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5183, "blockHeight": 5183, "took": "8.944281ms"} -2023-12-15T23:32:02.452Z INFO sending PrepareRequest {"height": 5184, "view": 0} -2023-12-15T23:32:02.453Z INFO sending Commit {"height": 5184, "view": 0} -2023-12-15T23:32:02.453Z INFO approving block {"height": 5184, "hash": "645ea4e674ea73ebb768292a7479329ddfee1abd83875c6c43c65662edb973fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66d4d86a7ac521d2faf27bff790a0b01cdfb4c2b0ae5928a807f6a3c58189819"} -2023-12-15T23:32:02.455Z INFO initializing dbft {"height": 5185, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:02.456Z debug frostfs-node/morph.go:229 new block {"index": 5184} -2023-12-15T23:32:02.799Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5184, "blockHeight": 5184, "took": "6.19054ms"} -2023-12-15T23:32:03.454Z INFO sending PrepareRequest {"height": 5185, "view": 0} -2023-12-15T23:32:03.454Z INFO sending Commit {"height": 5185, "view": 0} -2023-12-15T23:32:03.455Z INFO approving block {"height": 5185, "hash": "db0af9cca1a5d2b530ada6f3bc4352dd730de7076f86eb853b98d12e48cf3890", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "645ea4e674ea73ebb768292a7479329ddfee1abd83875c6c43c65662edb973fc"} -2023-12-15T23:32:03.456Z INFO initializing dbft {"height": 5186, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:03.457Z debug frostfs-node/morph.go:229 new block {"index": 5185} -2023-12-15T23:32:03.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5185, "blockHeight": 5185, "took": "6.962002ms"} -2023-12-15T23:32:04.457Z INFO sending PrepareRequest {"height": 5186, "view": 0} -2023-12-15T23:32:04.457Z INFO sending Commit {"height": 5186, "view": 0} -2023-12-15T23:32:04.457Z INFO approving block {"height": 5186, "hash": "1c12feb7e4f42956d4ce47308b536bb96415204b204ccafd1ecc5ca9aa0723ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db0af9cca1a5d2b530ada6f3bc4352dd730de7076f86eb853b98d12e48cf3890"} -2023-12-15T23:32:04.459Z INFO initializing dbft {"height": 5187, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:04.460Z debug frostfs-node/morph.go:229 new block {"index": 5186} -2023-12-15T23:32:04.802Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5186, "blockHeight": 5186, "took": "6.583891ms"} -2023-12-15T23:32:05.459Z INFO sending PrepareRequest {"height": 5187, "view": 0} -2023-12-15T23:32:05.459Z INFO sending Commit {"height": 5187, "view": 0} -2023-12-15T23:32:05.459Z INFO approving block {"height": 5187, "hash": "d99c8f32ea3448888df221f5109b0e152990026311b1c1bb6eaabd25c2c1bc30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c12feb7e4f42956d4ce47308b536bb96415204b204ccafd1ecc5ca9aa0723ad"} -2023-12-15T23:32:05.461Z INFO initializing dbft {"height": 5188, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:05.462Z debug frostfs-node/morph.go:229 new block {"index": 5187} -2023-12-15T23:32:05.803Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5187, "blockHeight": 5187, "took": "6.896561ms"} -2023-12-15T23:32:06.461Z INFO sending PrepareRequest {"height": 5188, "view": 0} -2023-12-15T23:32:06.461Z INFO sending Commit {"height": 5188, "view": 0} -2023-12-15T23:32:06.462Z INFO approving block {"height": 5188, "hash": "b10175c24bf10bdff5ec0e2ce695cf096a18681bd6d23c1551cb6e57d6b793e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d99c8f32ea3448888df221f5109b0e152990026311b1c1bb6eaabd25c2c1bc30"} -2023-12-15T23:32:06.463Z INFO initializing dbft {"height": 5189, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:06.464Z debug frostfs-node/morph.go:229 new block {"index": 5188} -2023-12-15T23:32:06.803Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5188, "blockHeight": 5188, "took": "6.638393ms"} -2023-12-15T23:32:07.463Z INFO sending PrepareRequest {"height": 5189, "view": 0} -2023-12-15T23:32:07.463Z INFO sending Commit {"height": 5189, "view": 0} -2023-12-15T23:32:07.464Z INFO approving block {"height": 5189, "hash": "d91aac2ea2a5660651ecf68dfed6b40386a3ee7b502564b63c7bfdb419115157", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b10175c24bf10bdff5ec0e2ce695cf096a18681bd6d23c1551cb6e57d6b793e5"} -2023-12-15T23:32:07.466Z INFO initializing dbft {"height": 5190, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:07.467Z debug frostfs-node/morph.go:229 new block {"index": 5189} -2023-12-15T23:32:07.804Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5189, "blockHeight": 5189, "took": "6.88132ms"} -2023-12-15T23:32:08.466Z INFO sending PrepareRequest {"height": 5190, "view": 0} -2023-12-15T23:32:08.467Z INFO sending Commit {"height": 5190, "view": 0} -2023-12-15T23:32:08.467Z INFO approving block {"height": 5190, "hash": "24b10dc8b5b978f1283380a6edfbe95a9c02e430128f816f5280c640e6aee9b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d91aac2ea2a5660651ecf68dfed6b40386a3ee7b502564b63c7bfdb419115157"} -2023-12-15T23:32:08.469Z INFO initializing dbft {"height": 5191, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:08.469Z debug frostfs-node/morph.go:229 new block {"index": 5190} -2023-12-15T23:32:08.807Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5190, "blockHeight": 5190, "took": "9.853267ms"} -2023-12-15T23:32:09.468Z INFO sending PrepareRequest {"height": 5191, "view": 0} -2023-12-15T23:32:09.469Z INFO sending Commit {"height": 5191, "view": 0} -2023-12-15T23:32:09.469Z INFO approving block {"height": 5191, "hash": "df8e07aac2e6700abfe6034ec50af7000d1e647c90e378f4de2b53df3a84319a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24b10dc8b5b978f1283380a6edfbe95a9c02e430128f816f5280c640e6aee9b9"} -2023-12-15T23:32:09.470Z INFO initializing dbft {"height": 5192, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:09.471Z debug frostfs-node/morph.go:229 new block {"index": 5191} -2023-12-15T23:32:09.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5191, "blockHeight": 5191, "took": "7.045962ms"} -2023-12-15T23:32:10.470Z INFO sending PrepareRequest {"height": 5192, "view": 0} -2023-12-15T23:32:10.471Z INFO sending Commit {"height": 5192, "view": 0} -2023-12-15T23:32:10.471Z INFO approving block {"height": 5192, "hash": "4f2151186e9ee329f093801b44b2e33efd9785f91207008a9b51161a6d59d236", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df8e07aac2e6700abfe6034ec50af7000d1e647c90e378f4de2b53df3a84319a"} -2023-12-15T23:32:10.473Z INFO initializing dbft {"height": 5193, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:10.473Z debug frostfs-node/morph.go:229 new block {"index": 5192} -2023-12-15T23:32:10.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5192, "blockHeight": 5192, "took": "6.609962ms"} -2023-12-15T23:32:11.473Z INFO sending PrepareRequest {"height": 5193, "view": 0} -2023-12-15T23:32:11.473Z INFO sending Commit {"height": 5193, "view": 0} -2023-12-15T23:32:11.473Z INFO approving block {"height": 5193, "hash": "0c0b9a0cbed893150a815a9b72acee6a0293aa606f4d2bad3bdd0148571afe33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f2151186e9ee329f093801b44b2e33efd9785f91207008a9b51161a6d59d236"} -2023-12-15T23:32:11.475Z INFO initializing dbft {"height": 5194, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:11.476Z debug frostfs-node/morph.go:229 new block {"index": 5193} -2023-12-15T23:32:11.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5193, "blockHeight": 5193, "took": "5.629594ms"} -2023-12-15T23:32:12.475Z INFO sending PrepareRequest {"height": 5194, "view": 0} -2023-12-15T23:32:12.475Z INFO sending Commit {"height": 5194, "view": 0} -2023-12-15T23:32:12.475Z INFO approving block {"height": 5194, "hash": "0a95c3a164e3d9c31612209d4d91489ee015489a5df1d2ef0db9b8f99be71128", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c0b9a0cbed893150a815a9b72acee6a0293aa606f4d2bad3bdd0148571afe33"} -2023-12-15T23:32:12.477Z INFO initializing dbft {"height": 5195, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:12.478Z debug frostfs-node/morph.go:229 new block {"index": 5194} -2023-12-15T23:32:12.808Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5194, "blockHeight": 5194, "took": "6.806596ms"} -2023-12-15T23:32:13.476Z INFO sending PrepareRequest {"height": 5195, "view": 0} -2023-12-15T23:32:13.476Z INFO sending Commit {"height": 5195, "view": 0} -2023-12-15T23:32:13.477Z INFO approving block {"height": 5195, "hash": "29aba143d077b0c8aa57d11fa2e38cc2c561db7204d6efd07968fe971c74be76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a95c3a164e3d9c31612209d4d91489ee015489a5df1d2ef0db9b8f99be71128"} -2023-12-15T23:32:13.478Z INFO initializing dbft {"height": 5196, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:13.479Z debug frostfs-node/morph.go:229 new block {"index": 5195} -2023-12-15T23:32:13.811Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5195, "blockHeight": 5195, "took": "8.573993ms"} -2023-12-15T23:32:14.478Z INFO sending PrepareRequest {"height": 5196, "view": 0} -2023-12-15T23:32:14.478Z INFO sending Commit {"height": 5196, "view": 0} -2023-12-15T23:32:14.478Z INFO approving block {"height": 5196, "hash": "9210ccecb8d7afbe315a2ec877401f44fa3fc0c164f5282412bad5f46bceb775", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29aba143d077b0c8aa57d11fa2e38cc2c561db7204d6efd07968fe971c74be76"} -2023-12-15T23:32:14.480Z INFO initializing dbft {"height": 5197, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:14.481Z debug frostfs-node/morph.go:229 new block {"index": 5196} -2023-12-15T23:32:14.809Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5196, "blockHeight": 5196, "took": "6.16931ms"} -2023-12-15T23:32:15.480Z INFO sending PrepareRequest {"height": 5197, "view": 0} -2023-12-15T23:32:15.480Z INFO sending Commit {"height": 5197, "view": 0} -2023-12-15T23:32:15.481Z INFO approving block {"height": 5197, "hash": "726da4857d243ed6b744bfbf3d5dad62d75b84e421d2e19b44334490d46e5caa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9210ccecb8d7afbe315a2ec877401f44fa3fc0c164f5282412bad5f46bceb775"} -2023-12-15T23:32:15.482Z INFO initializing dbft {"height": 5198, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:15.483Z debug frostfs-node/morph.go:229 new block {"index": 5197} -2023-12-15T23:32:15.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5197, "blockHeight": 5197, "took": "10.180296ms"} -2023-12-15T23:32:16.482Z INFO sending PrepareRequest {"height": 5198, "view": 0} -2023-12-15T23:32:16.482Z INFO sending Commit {"height": 5198, "view": 0} -2023-12-15T23:32:16.483Z INFO approving block {"height": 5198, "hash": "48deb62e2774a4c2ef1e58dc5480595bfcebdfa917a7109f31213d9aaa15ffbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "726da4857d243ed6b744bfbf3d5dad62d75b84e421d2e19b44334490d46e5caa"} -2023-12-15T23:32:16.485Z INFO initializing dbft {"height": 5199, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:16.485Z debug frostfs-node/morph.go:229 new block {"index": 5198} -2023-12-15T23:32:16.817Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5198, "blockHeight": 5198, "took": "12.36967ms"} -2023-12-15T23:32:17.484Z INFO sending PrepareRequest {"height": 5199, "view": 0} -2023-12-15T23:32:17.485Z INFO sending Commit {"height": 5199, "view": 0} -2023-12-15T23:32:17.485Z INFO approving block {"height": 5199, "hash": "a8663a2df89bf2c71330affdb8a88d1a6f565593d4d1cafc7bbc9a8c6ef9114b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48deb62e2774a4c2ef1e58dc5480595bfcebdfa917a7109f31213d9aaa15ffbe"} -2023-12-15T23:32:17.487Z INFO initializing dbft {"height": 5200, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:17.487Z debug frostfs-node/morph.go:229 new block {"index": 5199} -2023-12-15T23:32:17.813Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5199, "blockHeight": 5199, "took": "7.323413ms"} -2023-12-15T23:32:18.487Z INFO sending PrepareRequest {"height": 5200, "view": 0} -2023-12-15T23:32:18.487Z INFO sending Commit {"height": 5200, "view": 0} -2023-12-15T23:32:18.487Z INFO approving block {"height": 5200, "hash": "53ce7733adf7617a15a6d3bfe083e95019c2edeeab8580d210bc84b28d938e4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8663a2df89bf2c71330affdb8a88d1a6f565593d4d1cafc7bbc9a8c6ef9114b"} -2023-12-15T23:32:18.489Z INFO initializing dbft {"height": 5201, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:18.490Z debug frostfs-node/morph.go:229 new block {"index": 5200} -2023-12-15T23:32:18.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5200, "blockHeight": 5200, "took": "7.148488ms"} -2023-12-15T23:32:19.488Z INFO sending PrepareRequest {"height": 5201, "view": 0} -2023-12-15T23:32:19.488Z INFO sending Commit {"height": 5201, "view": 0} -2023-12-15T23:32:19.489Z INFO approving block {"height": 5201, "hash": "d4885e2f7ab52bf8ed97d978d9d806cd7ea6e900bcfd59a4ae45b35ea94b20aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53ce7733adf7617a15a6d3bfe083e95019c2edeeab8580d210bc84b28d938e4a"} -2023-12-15T23:32:19.491Z INFO initializing dbft {"height": 5202, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:19.492Z debug frostfs-node/morph.go:229 new block {"index": 5201} -2023-12-15T23:32:19.815Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5201, "blockHeight": 5201, "took": "7.679433ms"} -2023-12-15T23:32:20.490Z INFO sending PrepareRequest {"height": 5202, "view": 0} -2023-12-15T23:32:20.491Z INFO sending Commit {"height": 5202, "view": 0} -2023-12-15T23:32:20.491Z INFO approving block {"height": 5202, "hash": "b6bd7f1a41aac511726781346f5ce53442957dab08fb49af8da83677b47c6eae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4885e2f7ab52bf8ed97d978d9d806cd7ea6e900bcfd59a4ae45b35ea94b20aa"} -2023-12-15T23:32:20.492Z INFO initializing dbft {"height": 5203, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:20.493Z debug frostfs-node/morph.go:229 new block {"index": 5202} -2023-12-15T23:32:20.817Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5202, "blockHeight": 5202, "took": "7.530439ms"} -2023-12-15T23:32:21.492Z INFO sending PrepareRequest {"height": 5203, "view": 0} -2023-12-15T23:32:21.492Z INFO sending Commit {"height": 5203, "view": 0} -2023-12-15T23:32:21.493Z INFO approving block {"height": 5203, "hash": "a7271196b05274532ec3493260cf943233644c285f68da15ec5e728272ed4486", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6bd7f1a41aac511726781346f5ce53442957dab08fb49af8da83677b47c6eae"} -2023-12-15T23:32:21.494Z INFO initializing dbft {"height": 5204, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:21.495Z debug frostfs-node/morph.go:229 new block {"index": 5203} -2023-12-15T23:32:21.816Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5203, "blockHeight": 5203, "took": "6.940952ms"} -2023-12-15T23:32:22.494Z INFO sending PrepareRequest {"height": 5204, "view": 0} -2023-12-15T23:32:22.495Z INFO sending Commit {"height": 5204, "view": 0} -2023-12-15T23:32:22.495Z INFO approving block {"height": 5204, "hash": "07b4b6a08cfc8a60d41924b0fd633a45af67fb5849819660a35e594cffc759a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7271196b05274532ec3493260cf943233644c285f68da15ec5e728272ed4486"} -2023-12-15T23:32:22.497Z INFO initializing dbft {"height": 5205, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:22.498Z debug frostfs-node/morph.go:229 new block {"index": 5204} -2023-12-15T23:32:22.818Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5204, "blockHeight": 5204, "took": "7.46384ms"} -2023-12-15T23:32:23.497Z INFO sending PrepareRequest {"height": 5205, "view": 0} -2023-12-15T23:32:23.497Z INFO sending Commit {"height": 5205, "view": 0} -2023-12-15T23:32:23.497Z INFO approving block {"height": 5205, "hash": "bdd6ed53c6a99677a2a07018d821efbec650592e5faec5760e6cff4bee394934", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07b4b6a08cfc8a60d41924b0fd633a45af67fb5849819660a35e594cffc759a8"} -2023-12-15T23:32:23.499Z INFO initializing dbft {"height": 5206, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:23.499Z debug frostfs-node/morph.go:229 new block {"index": 5205} -2023-12-15T23:32:23.819Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5205, "blockHeight": 5205, "took": "7.418496ms"} -2023-12-15T23:32:24.498Z INFO sending PrepareRequest {"height": 5206, "view": 0} -2023-12-15T23:32:24.499Z INFO sending Commit {"height": 5206, "view": 0} -2023-12-15T23:32:24.499Z INFO approving block {"height": 5206, "hash": "1ecd855192d30dbd736678c466801437b723513862fc0a88638e0f4eadc44d0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdd6ed53c6a99677a2a07018d821efbec650592e5faec5760e6cff4bee394934"} -2023-12-15T23:32:24.500Z INFO initializing dbft {"height": 5207, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:24.501Z debug frostfs-node/morph.go:229 new block {"index": 5206} -2023-12-15T23:32:24.822Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5206, "blockHeight": 5206, "took": "9.591259ms"} -2023-12-15T23:32:25.500Z INFO sending PrepareRequest {"height": 5207, "view": 0} -2023-12-15T23:32:25.500Z INFO sending Commit {"height": 5207, "view": 0} -2023-12-15T23:32:25.501Z INFO approving block {"height": 5207, "hash": "ed604651df35f13823d07492bbb8165b2e5fd2de6e5456bd4d89b102a09256cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ecd855192d30dbd736678c466801437b723513862fc0a88638e0f4eadc44d0e"} -2023-12-15T23:32:25.503Z INFO initializing dbft {"height": 5208, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:25.504Z debug frostfs-node/morph.go:229 new block {"index": 5207} -2023-12-15T23:32:25.821Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5207, "blockHeight": 5207, "took": "7.185009ms"} -2023-12-15T23:32:26.502Z INFO sending PrepareRequest {"height": 5208, "view": 0} -2023-12-15T23:32:26.502Z INFO sending Commit {"height": 5208, "view": 0} -2023-12-15T23:32:26.503Z INFO approving block {"height": 5208, "hash": "2a54846b9ad927e179a6bc6e022279fed1bfcc291bde8bfcdca58646424cc083", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed604651df35f13823d07492bbb8165b2e5fd2de6e5456bd4d89b102a09256cf"} -2023-12-15T23:32:26.506Z INFO initializing dbft {"height": 5209, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:26.507Z debug frostfs-node/morph.go:229 new block {"index": 5208} -2023-12-15T23:32:26.825Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5208, "blockHeight": 5208, "took": "10.639879ms"} -2023-12-15T23:32:27.504Z INFO sending PrepareRequest {"height": 5209, "view": 0} -2023-12-15T23:32:27.504Z INFO sending Commit {"height": 5209, "view": 0} -2023-12-15T23:32:27.505Z INFO approving block {"height": 5209, "hash": "9dd143c89813fa0d276b647d09e1bd44d219fb5cdd887be2de70e7190b14db71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a54846b9ad927e179a6bc6e022279fed1bfcc291bde8bfcdca58646424cc083"} -2023-12-15T23:32:27.506Z INFO initializing dbft {"height": 5210, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:27.507Z debug frostfs-node/morph.go:229 new block {"index": 5209} -2023-12-15T23:32:27.825Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5209, "blockHeight": 5209, "took": "9.384493ms"} -2023-12-15T23:32:28.506Z INFO sending PrepareRequest {"height": 5210, "view": 0} -2023-12-15T23:32:28.507Z INFO sending Commit {"height": 5210, "view": 0} -2023-12-15T23:32:28.507Z INFO approving block {"height": 5210, "hash": "1a765c7c59388478e98d18967af4efaf2584f109b8fc985553cd470ac22c704f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9dd143c89813fa0d276b647d09e1bd44d219fb5cdd887be2de70e7190b14db71"} -2023-12-15T23:32:28.509Z INFO initializing dbft {"height": 5211, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:28.510Z debug frostfs-node/morph.go:229 new block {"index": 5210} -2023-12-15T23:32:28.826Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5210, "blockHeight": 5210, "took": "10.334781ms"} -2023-12-15T23:32:29.510Z INFO sending PrepareRequest {"height": 5211, "view": 0} -2023-12-15T23:32:29.511Z INFO sending Commit {"height": 5211, "view": 0} -2023-12-15T23:32:29.511Z INFO approving block {"height": 5211, "hash": "06b1507bd2a1c86beb5bbbdbdbd9006d2687597c1e889bb9d7dccb4904ffddc8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a765c7c59388478e98d18967af4efaf2584f109b8fc985553cd470ac22c704f"} -2023-12-15T23:32:29.513Z INFO initializing dbft {"height": 5212, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:29.514Z debug frostfs-node/morph.go:229 new block {"index": 5211} -2023-12-15T23:32:29.823Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5211, "blockHeight": 5211, "took": "6.114888ms"} -2023-12-15T23:32:30.512Z INFO sending PrepareRequest {"height": 5212, "view": 0} -2023-12-15T23:32:30.513Z INFO sending Commit {"height": 5212, "view": 0} -2023-12-15T23:32:30.513Z INFO approving block {"height": 5212, "hash": "0e192b974c71af54b86aaff006fef47931634844a73a96012a2bce85ad233833", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06b1507bd2a1c86beb5bbbdbdbd9006d2687597c1e889bb9d7dccb4904ffddc8"} -2023-12-15T23:32:30.515Z INFO initializing dbft {"height": 5213, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:30.515Z debug frostfs-node/morph.go:229 new block {"index": 5212} -2023-12-15T23:32:30.824Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5212, "blockHeight": 5212, "took": "6.220154ms"} -2023-12-15T23:32:31.515Z INFO sending PrepareRequest {"height": 5213, "view": 0} -2023-12-15T23:32:31.515Z INFO sending Commit {"height": 5213, "view": 0} -2023-12-15T23:32:31.515Z INFO approving block {"height": 5213, "hash": "ae8fdfd73fd344f6ab8353f9b1ca1e028ce1dc3070cde9abf2fe47900e4284d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e192b974c71af54b86aaff006fef47931634844a73a96012a2bce85ad233833"} -2023-12-15T23:32:31.517Z INFO initializing dbft {"height": 5214, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:31.518Z debug frostfs-node/morph.go:229 new block {"index": 5213} -2023-12-15T23:32:31.828Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5213, "blockHeight": 5213, "took": "10.215458ms"} -2023-12-15T23:32:32.517Z INFO sending PrepareRequest {"height": 5214, "view": 0} -2023-12-15T23:32:32.517Z INFO sending Commit {"height": 5214, "view": 0} -2023-12-15T23:32:32.517Z INFO approving block {"height": 5214, "hash": "f867c61d53d5ad46d848063602b25e9522a40bf2134219ddf8d498cf49353a59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae8fdfd73fd344f6ab8353f9b1ca1e028ce1dc3070cde9abf2fe47900e4284d1"} -2023-12-15T23:32:32.519Z INFO initializing dbft {"height": 5215, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:32.520Z debug frostfs-node/morph.go:229 new block {"index": 5214} -2023-12-15T23:32:32.829Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5214, "blockHeight": 5214, "took": "10.240848ms"} -2023-12-15T23:32:33.518Z INFO sending PrepareRequest {"height": 5215, "view": 0} -2023-12-15T23:32:33.519Z INFO sending Commit {"height": 5215, "view": 0} -2023-12-15T23:32:33.519Z INFO approving block {"height": 5215, "hash": "ee54f0ea40c080d90fb147a0798d747a37d86c0286ba6b35c6f2faae151ceb31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f867c61d53d5ad46d848063602b25e9522a40bf2134219ddf8d498cf49353a59"} -2023-12-15T23:32:33.520Z INFO initializing dbft {"height": 5216, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:33.521Z debug frostfs-node/morph.go:229 new block {"index": 5215} -2023-12-15T23:32:33.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5215, "blockHeight": 5215, "took": "14.948013ms"} -2023-12-15T23:32:34.520Z INFO sending PrepareRequest {"height": 5216, "view": 0} -2023-12-15T23:32:34.521Z INFO sending Commit {"height": 5216, "view": 0} -2023-12-15T23:32:34.521Z INFO approving block {"height": 5216, "hash": "52e91b994fbe61fe68885a49dfa3c1e5868da165bf732445e3afdb3d9434c6be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee54f0ea40c080d90fb147a0798d747a37d86c0286ba6b35c6f2faae151ceb31"} -2023-12-15T23:32:34.522Z INFO initializing dbft {"height": 5217, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:34.523Z debug frostfs-node/morph.go:229 new block {"index": 5216} -2023-12-15T23:32:34.831Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5216, "blockHeight": 5216, "took": "10.216498ms"} -2023-12-15T23:32:35.522Z INFO sending PrepareRequest {"height": 5217, "view": 0} -2023-12-15T23:32:35.522Z INFO sending Commit {"height": 5217, "view": 0} -2023-12-15T23:32:35.523Z INFO approving block {"height": 5217, "hash": "c682d0f04779ca1a90b9cafeb5595f443d3fc93afce057666fc29594439d5474", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52e91b994fbe61fe68885a49dfa3c1e5868da165bf732445e3afdb3d9434c6be"} -2023-12-15T23:32:35.524Z INFO initializing dbft {"height": 5218, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:35.525Z debug frostfs-node/morph.go:229 new block {"index": 5217} -2023-12-15T23:32:35.529Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:32:35.536Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:32:35.536Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:32:35.830Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5217, "blockHeight": 5217, "took": "7.820088ms"} -2023-12-15T23:32:36.525Z INFO sending PrepareRequest {"height": 5218, "view": 0} -2023-12-15T23:32:36.525Z INFO sending Commit {"height": 5218, "view": 0} -2023-12-15T23:32:36.525Z INFO approving block {"height": 5218, "hash": "2ee4a9d00654fbb00c3004860b0627944c094ef3b6d0244afabc3049eda68894", "tx_count": 2, "merkle": "97a340335639bf6bb1c1a956b031e4cd07ddfffc76d4089dadd0bf1b43b04063", "prev": "c682d0f04779ca1a90b9cafeb5595f443d3fc93afce057666fc29594439d5474"} -2023-12-15T23:32:36.526Z INFO runtime log {"tx": "cc6bfe5cd2a5eed6db70b900a437f28a03ce13285b0b1c2ee6d811041867524b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:32:36.527Z INFO runtime log {"tx": "cc6bfe5cd2a5eed6db70b900a437f28a03ce13285b0b1c2ee6d811041867524b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:32:36.528Z INFO initializing dbft {"height": 5219, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:36.529Z debug frostfs-node/morph.go:229 new block {"index": 5218} -2023-12-15T23:32:36.833Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5218, "blockHeight": 5218, "took": "10.99546ms"} -2023-12-15T23:32:37.526Z INFO sending PrepareRequest {"height": 5219, "view": 0} -2023-12-15T23:32:37.526Z INFO sending Commit {"height": 5219, "view": 0} -2023-12-15T23:32:37.527Z INFO approving block {"height": 5219, "hash": "72b5cd09dab19e36d39f52ed9408e4f4cbdd5a0b491aee6d73946116be54bdeb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ee4a9d00654fbb00c3004860b0627944c094ef3b6d0244afabc3049eda68894"} -2023-12-15T23:32:37.528Z INFO initializing dbft {"height": 5220, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:37.529Z debug frostfs-node/morph.go:229 new block {"index": 5219} -2023-12-15T23:32:37.830Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5219, "blockHeight": 5219, "took": "6.890828ms"} -2023-12-15T23:32:38.528Z INFO sending PrepareRequest {"height": 5220, "view": 0} -2023-12-15T23:32:38.529Z INFO sending Commit {"height": 5220, "view": 0} -2023-12-15T23:32:38.529Z INFO approving block {"height": 5220, "hash": "07f887e0e3629d9d450863a709a31e83fa1cf9ad23296c63e9fc6239c91ff32d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72b5cd09dab19e36d39f52ed9408e4f4cbdd5a0b491aee6d73946116be54bdeb"} -2023-12-15T23:32:38.530Z INFO initializing dbft {"height": 5221, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:38.531Z debug frostfs-node/morph.go:229 new block {"index": 5220} -2023-12-15T23:32:38.831Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5220, "blockHeight": 5220, "took": "7.31932ms"} -2023-12-15T23:32:39.530Z INFO sending PrepareRequest {"height": 5221, "view": 0} -2023-12-15T23:32:39.531Z INFO sending Commit {"height": 5221, "view": 0} -2023-12-15T23:32:39.531Z INFO approving block {"height": 5221, "hash": "d2f81adc2e1d89ff65f27069a1213c387c94b736722792ed0b32f2faa170ae49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07f887e0e3629d9d450863a709a31e83fa1cf9ad23296c63e9fc6239c91ff32d"} -2023-12-15T23:32:39.532Z INFO initializing dbft {"height": 5222, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:39.533Z debug frostfs-node/morph.go:229 new block {"index": 5221} -2023-12-15T23:32:39.831Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5221, "blockHeight": 5221, "took": "6.983868ms"} -2023-12-15T23:32:40.532Z INFO sending PrepareRequest {"height": 5222, "view": 0} -2023-12-15T23:32:40.532Z INFO sending Commit {"height": 5222, "view": 0} -2023-12-15T23:32:40.533Z INFO approving block {"height": 5222, "hash": "cf6fdb9b4e85d1d6ff9a24666c7a021079dcb4e2cc0939f39ad6bd29777fafd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2f81adc2e1d89ff65f27069a1213c387c94b736722792ed0b32f2faa170ae49"} -2023-12-15T23:32:40.534Z INFO initializing dbft {"height": 5223, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:40.535Z debug frostfs-node/morph.go:229 new block {"index": 5222} -2023-12-15T23:32:40.832Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5222, "blockHeight": 5222, "took": "7.375764ms"} -2023-12-15T23:32:41.533Z INFO sending PrepareRequest {"height": 5223, "view": 0} -2023-12-15T23:32:41.534Z INFO sending Commit {"height": 5223, "view": 0} -2023-12-15T23:32:41.534Z INFO approving block {"height": 5223, "hash": "b8e766db6def252b850b0d83181d64cda1bc089f5c6cf8f20f0e534251e059f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf6fdb9b4e85d1d6ff9a24666c7a021079dcb4e2cc0939f39ad6bd29777fafd1"} -2023-12-15T23:32:41.536Z INFO initializing dbft {"height": 5224, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:41.536Z debug frostfs-node/morph.go:229 new block {"index": 5223} -2023-12-15T23:32:41.832Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5223, "blockHeight": 5223, "took": "7.074946ms"} -2023-12-15T23:32:42.535Z INFO sending PrepareRequest {"height": 5224, "view": 0} -2023-12-15T23:32:42.535Z INFO sending Commit {"height": 5224, "view": 0} -2023-12-15T23:32:42.536Z INFO approving block {"height": 5224, "hash": "8b2b148be09e6ba164df3b7f0d888e63d18a1e294a8feb9153794a05849a98b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8e766db6def252b850b0d83181d64cda1bc089f5c6cf8f20f0e534251e059f5"} -2023-12-15T23:32:42.537Z INFO initializing dbft {"height": 5225, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:42.538Z debug frostfs-node/morph.go:229 new block {"index": 5224} -2023-12-15T23:32:42.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5224, "blockHeight": 5224, "took": "7.209574ms"} -2023-12-15T23:32:43.536Z INFO sending PrepareRequest {"height": 5225, "view": 0} -2023-12-15T23:32:43.537Z INFO sending Commit {"height": 5225, "view": 0} -2023-12-15T23:32:43.537Z INFO approving block {"height": 5225, "hash": "d16d45c37910e0856cc86e542e79c55a0bed048726ef280e4eb8075b068a4946", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b2b148be09e6ba164df3b7f0d888e63d18a1e294a8feb9153794a05849a98b3"} -2023-12-15T23:32:43.540Z INFO initializing dbft {"height": 5226, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:43.541Z debug frostfs-node/morph.go:229 new block {"index": 5225} -2023-12-15T23:32:43.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5225, "blockHeight": 5225, "took": "7.167469ms"} -2023-12-15T23:32:44.539Z INFO sending PrepareRequest {"height": 5226, "view": 0} -2023-12-15T23:32:44.539Z INFO sending Commit {"height": 5226, "view": 0} -2023-12-15T23:32:44.539Z INFO approving block {"height": 5226, "hash": "6de9b44185b256bc51e5527179317ea1370534b81eeb91e521051ec29a9ae58a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d16d45c37910e0856cc86e542e79c55a0bed048726ef280e4eb8075b068a4946"} -2023-12-15T23:32:44.541Z INFO initializing dbft {"height": 5227, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:44.542Z debug frostfs-node/morph.go:229 new block {"index": 5226} -2023-12-15T23:32:44.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5226, "blockHeight": 5226, "took": "6.395526ms"} -2023-12-15T23:32:45.540Z INFO sending PrepareRequest {"height": 5227, "view": 0} -2023-12-15T23:32:45.541Z INFO sending Commit {"height": 5227, "view": 0} -2023-12-15T23:32:45.541Z INFO approving block {"height": 5227, "hash": "db195b5c54c086499735243d99b7c5576571fbf13ae622362dbdc52bcf99c5bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6de9b44185b256bc51e5527179317ea1370534b81eeb91e521051ec29a9ae58a"} -2023-12-15T23:32:45.542Z INFO initializing dbft {"height": 5228, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:45.543Z debug frostfs-node/morph.go:229 new block {"index": 5227} -2023-12-15T23:32:45.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5227, "blockHeight": 5227, "took": "7.074047ms"} -2023-12-15T23:32:46.542Z INFO sending PrepareRequest {"height": 5228, "view": 0} -2023-12-15T23:32:46.543Z INFO sending Commit {"height": 5228, "view": 0} -2023-12-15T23:32:46.543Z INFO approving block {"height": 5228, "hash": "4c59edf4c11829c037db9bba9ebdf3e80f6e6a0b57e655920b8fc4c4ff557334", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db195b5c54c086499735243d99b7c5576571fbf13ae622362dbdc52bcf99c5bb"} -2023-12-15T23:32:46.545Z INFO initializing dbft {"height": 5229, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:46.545Z debug frostfs-node/morph.go:229 new block {"index": 5228} -2023-12-15T23:32:46.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5228, "blockHeight": 5228, "took": "6.358985ms"} -2023-12-15T23:32:47.545Z INFO sending PrepareRequest {"height": 5229, "view": 0} -2023-12-15T23:32:47.545Z INFO sending Commit {"height": 5229, "view": 0} -2023-12-15T23:32:47.545Z INFO approving block {"height": 5229, "hash": "53dcc5db1b09015196a4944e7493c98f2819696dbd3d8b436da13ec04d276e0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c59edf4c11829c037db9bba9ebdf3e80f6e6a0b57e655920b8fc4c4ff557334"} -2023-12-15T23:32:47.547Z INFO initializing dbft {"height": 5230, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:47.548Z debug frostfs-node/morph.go:229 new block {"index": 5229} -2023-12-15T23:32:47.839Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5229, "blockHeight": 5229, "took": "7.694862ms"} -2023-12-15T23:32:48.547Z INFO sending PrepareRequest {"height": 5230, "view": 0} -2023-12-15T23:32:48.547Z INFO sending Commit {"height": 5230, "view": 0} -2023-12-15T23:32:48.547Z INFO approving block {"height": 5230, "hash": "1f756e35e1cb8bce68762f551c71da94dd7c3b20d1392654faf05b2468fdb650", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53dcc5db1b09015196a4944e7493c98f2819696dbd3d8b436da13ec04d276e0f"} -2023-12-15T23:32:48.549Z INFO initializing dbft {"height": 5231, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:48.550Z debug frostfs-node/morph.go:229 new block {"index": 5230} -2023-12-15T23:32:48.838Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5230, "blockHeight": 5230, "took": "5.905392ms"} -2023-12-15T23:32:49.549Z INFO sending PrepareRequest {"height": 5231, "view": 0} -2023-12-15T23:32:49.549Z INFO sending Commit {"height": 5231, "view": 0} -2023-12-15T23:32:49.549Z INFO approving block {"height": 5231, "hash": "5a001c964db402974ea2af2268be8f10e3af55f7b887fbac020c56c7fd6a29cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f756e35e1cb8bce68762f551c71da94dd7c3b20d1392654faf05b2468fdb650"} -2023-12-15T23:32:49.551Z INFO initializing dbft {"height": 5232, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:49.552Z debug frostfs-node/morph.go:229 new block {"index": 5231} -2023-12-15T23:32:49.840Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5231, "blockHeight": 5231, "took": "7.018445ms"} -2023-12-15T23:32:50.551Z INFO sending PrepareRequest {"height": 5232, "view": 0} -2023-12-15T23:32:50.551Z INFO sending Commit {"height": 5232, "view": 0} -2023-12-15T23:32:50.552Z INFO approving block {"height": 5232, "hash": "bb6c4ed9cb8bddd40d5288d7cac592d4118860079df281a2b83fca25574fb238", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a001c964db402974ea2af2268be8f10e3af55f7b887fbac020c56c7fd6a29cc"} -2023-12-15T23:32:50.553Z INFO initializing dbft {"height": 5233, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:50.554Z debug frostfs-node/morph.go:229 new block {"index": 5232} -2023-12-15T23:32:50.847Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5232, "blockHeight": 5232, "took": "12.73723ms"} -2023-12-15T23:32:51.553Z INFO sending PrepareRequest {"height": 5233, "view": 0} -2023-12-15T23:32:51.554Z INFO sending Commit {"height": 5233, "view": 0} -2023-12-15T23:32:51.554Z INFO approving block {"height": 5233, "hash": "d2c80016aaa636982883a7a86fbca3d4efbef2bed9dfaa1c378091da31ec44a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb6c4ed9cb8bddd40d5288d7cac592d4118860079df281a2b83fca25574fb238"} -2023-12-15T23:32:51.556Z INFO initializing dbft {"height": 5234, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:51.556Z debug frostfs-node/morph.go:229 new block {"index": 5233} -2023-12-15T23:32:51.842Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5233, "blockHeight": 5233, "took": "6.346726ms"} -2023-12-15T23:32:52.555Z INFO sending PrepareRequest {"height": 5234, "view": 0} -2023-12-15T23:32:52.556Z INFO sending Commit {"height": 5234, "view": 0} -2023-12-15T23:32:52.556Z INFO approving block {"height": 5234, "hash": "524f1e8d795bad4a01f4a5c24a66c1f4bc1d5532e8bbfa2f313490281850f244", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2c80016aaa636982883a7a86fbca3d4efbef2bed9dfaa1c378091da31ec44a8"} -2023-12-15T23:32:52.558Z INFO initializing dbft {"height": 5235, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:52.558Z debug frostfs-node/morph.go:229 new block {"index": 5234} -2023-12-15T23:32:52.843Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5234, "blockHeight": 5234, "took": "6.421728ms"} -2023-12-15T23:32:53.558Z INFO sending PrepareRequest {"height": 5235, "view": 0} -2023-12-15T23:32:53.558Z INFO sending Commit {"height": 5235, "view": 0} -2023-12-15T23:32:53.558Z INFO approving block {"height": 5235, "hash": "ae7515bed3d58bc8b440ffce5d79fc5f9fe31fb2f1d3dffb75f62eed304601ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "524f1e8d795bad4a01f4a5c24a66c1f4bc1d5532e8bbfa2f313490281850f244"} -2023-12-15T23:32:53.560Z INFO initializing dbft {"height": 5236, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:53.561Z debug frostfs-node/morph.go:229 new block {"index": 5235} -2023-12-15T23:32:53.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5235, "blockHeight": 5235, "took": "6.565634ms"} -2023-12-15T23:32:54.560Z INFO sending PrepareRequest {"height": 5236, "view": 0} -2023-12-15T23:32:54.560Z INFO sending Commit {"height": 5236, "view": 0} -2023-12-15T23:32:54.560Z INFO approving block {"height": 5236, "hash": "89f133f6a05211bd789f1ada55489ee9487bd8fc872bd3510afcedf94d318bb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae7515bed3d58bc8b440ffce5d79fc5f9fe31fb2f1d3dffb75f62eed304601ef"} -2023-12-15T23:32:54.562Z INFO initializing dbft {"height": 5237, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:54.563Z debug frostfs-node/morph.go:229 new block {"index": 5236} -2023-12-15T23:32:54.845Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5236, "blockHeight": 5236, "took": "6.535933ms"} -2023-12-15T23:32:55.561Z INFO sending PrepareRequest {"height": 5237, "view": 0} -2023-12-15T23:32:55.561Z INFO sending Commit {"height": 5237, "view": 0} -2023-12-15T23:32:55.562Z INFO approving block {"height": 5237, "hash": "0ded51f03557eb2bf3516a58f5a20f248dee988b1072a358bba42412a18d8b35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89f133f6a05211bd789f1ada55489ee9487bd8fc872bd3510afcedf94d318bb6"} -2023-12-15T23:32:55.563Z INFO initializing dbft {"height": 5238, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:55.564Z debug frostfs-node/morph.go:229 new block {"index": 5237} -2023-12-15T23:32:55.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5237, "blockHeight": 5237, "took": "9.421435ms"} -2023-12-15T23:32:56.563Z INFO sending PrepareRequest {"height": 5238, "view": 0} -2023-12-15T23:32:56.563Z INFO sending Commit {"height": 5238, "view": 0} -2023-12-15T23:32:56.563Z INFO approving block {"height": 5238, "hash": "bb1d60e177738211f3d3678625fe11c9b9562af48e73a795cb1b8f696af6ec74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ded51f03557eb2bf3516a58f5a20f248dee988b1072a358bba42412a18d8b35"} -2023-12-15T23:32:56.565Z INFO initializing dbft {"height": 5239, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:56.565Z debug frostfs-node/morph.go:229 new block {"index": 5238} -2023-12-15T23:32:56.845Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5238, "blockHeight": 5238, "took": "5.322994ms"} -2023-12-15T23:32:57.565Z INFO sending PrepareRequest {"height": 5239, "view": 0} -2023-12-15T23:32:57.565Z INFO sending Commit {"height": 5239, "view": 0} -2023-12-15T23:32:57.565Z INFO approving block {"height": 5239, "hash": "991a20bc1145b476747d727a92442aac0642340f9a9a4ef032b8104bf1e41f46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb1d60e177738211f3d3678625fe11c9b9562af48e73a795cb1b8f696af6ec74"} -2023-12-15T23:32:57.567Z INFO initializing dbft {"height": 5240, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:57.568Z debug frostfs-node/morph.go:229 new block {"index": 5239} -2023-12-15T23:32:57.847Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5239, "blockHeight": 5239, "took": "6.347695ms"} -2023-12-15T23:32:58.566Z INFO sending PrepareRequest {"height": 5240, "view": 0} -2023-12-15T23:32:58.567Z INFO sending Commit {"height": 5240, "view": 0} -2023-12-15T23:32:58.567Z INFO approving block {"height": 5240, "hash": "14b23e84fdc317defeb2bd5ea580d5288bbe61a36a2523c080ae400c921825d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "991a20bc1145b476747d727a92442aac0642340f9a9a4ef032b8104bf1e41f46"} -2023-12-15T23:32:58.568Z INFO initializing dbft {"height": 5241, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:58.570Z debug frostfs-node/morph.go:229 new block {"index": 5240} -2023-12-15T23:32:58.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5240, "blockHeight": 5240, "took": "6.737448ms"} -2023-12-15T23:32:59.568Z INFO sending PrepareRequest {"height": 5241, "view": 0} -2023-12-15T23:32:59.568Z INFO sending Commit {"height": 5241, "view": 0} -2023-12-15T23:32:59.568Z INFO approving block {"height": 5241, "hash": "28d274b183ace1e4b21dff56678ef9392dceacf138b267dc05b341d71a8ed0da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14b23e84fdc317defeb2bd5ea580d5288bbe61a36a2523c080ae400c921825d4"} -2023-12-15T23:32:59.569Z INFO initializing dbft {"height": 5242, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:32:59.570Z debug frostfs-node/morph.go:229 new block {"index": 5241} -2023-12-15T23:32:59.574Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 22, "iteration": 2, "error": "no data for 1 iteration in 22 epoch for consumers's trusts"} -2023-12-15T23:32:59.575Z info settlement/calls.go:106 start basic income distribution {"epoch": 22} -2023-12-15T23:32:59.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5241, "blockHeight": 5241, "took": "6.413137ms"} -2023-12-15T23:33:00.570Z INFO sending PrepareRequest {"height": 5242, "view": 0} -2023-12-15T23:33:00.570Z INFO sending Commit {"height": 5242, "view": 0} -2023-12-15T23:33:00.570Z INFO approving block {"height": 5242, "hash": "d683b6bb9cfefdfbfe9be9e0d7b8017615c387730dcd00dbd9283c4ecf816e0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28d274b183ace1e4b21dff56678ef9392dceacf138b267dc05b341d71a8ed0da"} -2023-12-15T23:33:00.571Z INFO initializing dbft {"height": 5243, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:00.572Z debug frostfs-node/morph.go:229 new block {"index": 5242} -2023-12-15T23:33:00.849Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5242, "blockHeight": 5242, "took": "6.062126ms"} -2023-12-15T23:33:01.571Z INFO sending PrepareRequest {"height": 5243, "view": 0} -2023-12-15T23:33:01.571Z INFO sending Commit {"height": 5243, "view": 0} -2023-12-15T23:33:01.571Z INFO approving block {"height": 5243, "hash": "b16b5f69fe676462e63e33b800366c01848a9992c3a8a9eb3d0a21e181d336bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d683b6bb9cfefdfbfe9be9e0d7b8017615c387730dcd00dbd9283c4ecf816e0b"} -2023-12-15T23:33:01.573Z INFO initializing dbft {"height": 5244, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:01.574Z debug frostfs-node/morph.go:229 new block {"index": 5243} -2023-12-15T23:33:01.850Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5243, "blockHeight": 5243, "took": "6.549281ms"} -2023-12-15T23:33:02.572Z INFO sending PrepareRequest {"height": 5244, "view": 0} -2023-12-15T23:33:02.573Z INFO sending Commit {"height": 5244, "view": 0} -2023-12-15T23:33:02.573Z INFO approving block {"height": 5244, "hash": "2287377286b3e8234ef3ddafe6f28e1dd5b9e3a9b31547c2a7a9a2b528d3da58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b16b5f69fe676462e63e33b800366c01848a9992c3a8a9eb3d0a21e181d336bd"} -2023-12-15T23:33:02.575Z INFO initializing dbft {"height": 5245, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:02.576Z debug frostfs-node/morph.go:229 new block {"index": 5244} -2023-12-15T23:33:02.851Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5244, "blockHeight": 5244, "took": "6.4812ms"} -2023-12-15T23:33:03.575Z INFO sending PrepareRequest {"height": 5245, "view": 0} -2023-12-15T23:33:03.575Z INFO sending Commit {"height": 5245, "view": 0} -2023-12-15T23:33:03.575Z INFO approving block {"height": 5245, "hash": "9a718ab779996bf847a451a682fd7f024fb1a5e0bd34138c925b3ed45693419c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2287377286b3e8234ef3ddafe6f28e1dd5b9e3a9b31547c2a7a9a2b528d3da58"} -2023-12-15T23:33:03.577Z INFO initializing dbft {"height": 5246, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:03.578Z debug frostfs-node/morph.go:229 new block {"index": 5245} -2023-12-15T23:33:03.852Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5245, "blockHeight": 5245, "took": "6.25784ms"} -2023-12-15T23:33:04.576Z INFO sending PrepareRequest {"height": 5246, "view": 0} -2023-12-15T23:33:04.576Z INFO sending Commit {"height": 5246, "view": 0} -2023-12-15T23:33:04.577Z INFO approving block {"height": 5246, "hash": "398ef65226343443d59c4898dadd01330469d0eac1e6ed309aef9ce4a1580a96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a718ab779996bf847a451a682fd7f024fb1a5e0bd34138c925b3ed45693419c"} -2023-12-15T23:33:04.579Z INFO initializing dbft {"height": 5247, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:04.580Z debug frostfs-node/morph.go:229 new block {"index": 5246} -2023-12-15T23:33:04.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5246, "blockHeight": 5246, "took": "10.132659ms"} -2023-12-15T23:33:05.578Z INFO sending PrepareRequest {"height": 5247, "view": 0} -2023-12-15T23:33:05.578Z INFO sending Commit {"height": 5247, "view": 0} -2023-12-15T23:33:05.578Z INFO approving block {"height": 5247, "hash": "e3f414e797ea84a55e0c63ada05df3fe01d046e0efd0d7be14ab2b0327198493", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "398ef65226343443d59c4898dadd01330469d0eac1e6ed309aef9ce4a1580a96"} -2023-12-15T23:33:05.580Z INFO initializing dbft {"height": 5248, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:05.581Z debug frostfs-node/morph.go:229 new block {"index": 5247} -2023-12-15T23:33:05.852Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5247, "blockHeight": 5247, "took": "4.618865ms"} -2023-12-15T23:33:06.580Z INFO sending PrepareRequest {"height": 5248, "view": 0} -2023-12-15T23:33:06.580Z INFO sending Commit {"height": 5248, "view": 0} -2023-12-15T23:33:06.581Z INFO approving block {"height": 5248, "hash": "7cb70451f8020210fd740482533b4d2c8530427a4c985165d2bb8b6628bff24a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3f414e797ea84a55e0c63ada05df3fe01d046e0efd0d7be14ab2b0327198493"} -2023-12-15T23:33:06.582Z INFO initializing dbft {"height": 5249, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:06.583Z debug frostfs-node/morph.go:229 new block {"index": 5248} -2023-12-15T23:33:06.855Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5248, "blockHeight": 5248, "took": "6.961091ms"} -2023-12-15T23:33:07.582Z INFO sending PrepareRequest {"height": 5249, "view": 0} -2023-12-15T23:33:07.582Z INFO sending Commit {"height": 5249, "view": 0} -2023-12-15T23:33:07.583Z INFO approving block {"height": 5249, "hash": "c175a1025b54cb8b59b0bd48eb43e9136cc6068a6d3408d20750eaaacbc4575c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cb70451f8020210fd740482533b4d2c8530427a4c985165d2bb8b6628bff24a"} -2023-12-15T23:33:07.584Z INFO initializing dbft {"height": 5250, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:07.585Z debug frostfs-node/morph.go:229 new block {"index": 5249} -2023-12-15T23:33:07.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5249, "blockHeight": 5249, "took": "6.297424ms"} -2023-12-15T23:33:08.584Z INFO sending PrepareRequest {"height": 5250, "view": 0} -2023-12-15T23:33:08.585Z INFO sending Commit {"height": 5250, "view": 0} -2023-12-15T23:33:08.585Z INFO approving block {"height": 5250, "hash": "254812c4004dddaef1a2f524bfbe564f683464e3b05f870303957b096702db84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c175a1025b54cb8b59b0bd48eb43e9136cc6068a6d3408d20750eaaacbc4575c"} -2023-12-15T23:33:08.586Z INFO initializing dbft {"height": 5251, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:08.587Z debug frostfs-node/morph.go:229 new block {"index": 5250} -2023-12-15T23:33:08.858Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5250, "blockHeight": 5250, "took": "7.528645ms"} -2023-12-15T23:33:09.586Z INFO sending PrepareRequest {"height": 5251, "view": 0} -2023-12-15T23:33:09.587Z INFO sending Commit {"height": 5251, "view": 0} -2023-12-15T23:33:09.587Z INFO approving block {"height": 5251, "hash": "2367a37ea85a13d9c9712c3637b58161977693abad0370a188b487803d615df9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "254812c4004dddaef1a2f524bfbe564f683464e3b05f870303957b096702db84"} -2023-12-15T23:33:09.589Z INFO initializing dbft {"height": 5252, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:09.590Z debug frostfs-node/morph.go:229 new block {"index": 5251} -2023-12-15T23:33:09.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5251, "blockHeight": 5251, "took": "9.648321ms"} -2023-12-15T23:33:10.588Z INFO sending PrepareRequest {"height": 5252, "view": 0} -2023-12-15T23:33:10.589Z INFO sending Commit {"height": 5252, "view": 0} -2023-12-15T23:33:10.589Z INFO approving block {"height": 5252, "hash": "e5cce31d218d613729e2aca323971f479a9144a4b89457a89df656250db943f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2367a37ea85a13d9c9712c3637b58161977693abad0370a188b487803d615df9"} -2023-12-15T23:33:10.591Z INFO initializing dbft {"height": 5253, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:10.592Z debug frostfs-node/morph.go:229 new block {"index": 5252} -2023-12-15T23:33:10.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5252, "blockHeight": 5252, "took": "6.529103ms"} -2023-12-15T23:33:11.591Z INFO sending PrepareRequest {"height": 5253, "view": 0} -2023-12-15T23:33:11.591Z INFO sending Commit {"height": 5253, "view": 0} -2023-12-15T23:33:11.591Z INFO approving block {"height": 5253, "hash": "e1e6f31c832dd00a47c3dea93dc5b3f964882932675318214350a2e499bb9fd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5cce31d218d613729e2aca323971f479a9144a4b89457a89df656250db943f4"} -2023-12-15T23:33:11.593Z INFO initializing dbft {"height": 5254, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:11.594Z debug frostfs-node/morph.go:229 new block {"index": 5253} -2023-12-15T23:33:11.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5253, "blockHeight": 5253, "took": "6.968115ms"} -2023-12-15T23:33:12.593Z INFO sending PrepareRequest {"height": 5254, "view": 0} -2023-12-15T23:33:12.593Z INFO sending Commit {"height": 5254, "view": 0} -2023-12-15T23:33:12.593Z INFO approving block {"height": 5254, "hash": "3e640f631d34fe43c0411708d08e99f29fc8cf7c37b40e1783cfb502cf6db761", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1e6f31c832dd00a47c3dea93dc5b3f964882932675318214350a2e499bb9fd8"} -2023-12-15T23:33:12.595Z INFO initializing dbft {"height": 5255, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:12.596Z debug frostfs-node/morph.go:229 new block {"index": 5254} -2023-12-15T23:33:12.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5254, "blockHeight": 5254, "took": "6.364926ms"} -2023-12-15T23:33:13.595Z INFO sending PrepareRequest {"height": 5255, "view": 0} -2023-12-15T23:33:13.595Z INFO sending Commit {"height": 5255, "view": 0} -2023-12-15T23:33:13.595Z INFO approving block {"height": 5255, "hash": "a354f64001bb5884ed6ed0cf9bf2b844d27bcae56fd4e925c4659b766ace6b20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e640f631d34fe43c0411708d08e99f29fc8cf7c37b40e1783cfb502cf6db761"} -2023-12-15T23:33:13.596Z INFO initializing dbft {"height": 5256, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:13.597Z debug frostfs-node/morph.go:229 new block {"index": 5255} -2023-12-15T23:33:13.860Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5255, "blockHeight": 5255, "took": "6.534652ms"} -2023-12-15T23:33:14.597Z INFO sending PrepareRequest {"height": 5256, "view": 0} -2023-12-15T23:33:14.597Z INFO sending Commit {"height": 5256, "view": 0} -2023-12-15T23:33:14.598Z INFO approving block {"height": 5256, "hash": "db4abbe7399d9305f6efef5db19b40caa6a09918820dcadc2ff065ca716639d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a354f64001bb5884ed6ed0cf9bf2b844d27bcae56fd4e925c4659b766ace6b20"} -2023-12-15T23:33:14.599Z INFO initializing dbft {"height": 5257, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:14.600Z debug frostfs-node/morph.go:229 new block {"index": 5256} -2023-12-15T23:33:14.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5256, "blockHeight": 5256, "took": "6.540942ms"} -2023-12-15T23:33:15.600Z INFO sending PrepareRequest {"height": 5257, "view": 0} -2023-12-15T23:33:15.600Z INFO sending Commit {"height": 5257, "view": 0} -2023-12-15T23:33:15.600Z INFO approving block {"height": 5257, "hash": "34f34157d33265545ae6731cacfba514ce92b69d1ded5c27da186e7b2641f8c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db4abbe7399d9305f6efef5db19b40caa6a09918820dcadc2ff065ca716639d6"} -2023-12-15T23:33:15.602Z INFO initializing dbft {"height": 5258, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:15.602Z debug frostfs-node/morph.go:229 new block {"index": 5257} -2023-12-15T23:33:15.862Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5257, "blockHeight": 5257, "took": "6.716357ms"} -2023-12-15T23:33:16.602Z INFO sending PrepareRequest {"height": 5258, "view": 0} -2023-12-15T23:33:16.602Z INFO sending Commit {"height": 5258, "view": 0} -2023-12-15T23:33:16.602Z INFO approving block {"height": 5258, "hash": "b1e5fc59014fb6804ab9f371951112bf8799e6eea69a48c46d86f8536b35d602", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34f34157d33265545ae6731cacfba514ce92b69d1ded5c27da186e7b2641f8c1"} -2023-12-15T23:33:16.604Z INFO initializing dbft {"height": 5259, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:16.604Z debug frostfs-node/morph.go:229 new block {"index": 5258} -2023-12-15T23:33:16.862Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5258, "blockHeight": 5258, "took": "5.813407ms"} -2023-12-15T23:33:17.604Z INFO sending PrepareRequest {"height": 5259, "view": 0} -2023-12-15T23:33:17.604Z INFO sending Commit {"height": 5259, "view": 0} -2023-12-15T23:33:17.605Z INFO approving block {"height": 5259, "hash": "cf19f6240648086771278da9935b08e9b0760dd44cc2366aa765491777561248", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1e5fc59014fb6804ab9f371951112bf8799e6eea69a48c46d86f8536b35d602"} -2023-12-15T23:33:17.606Z INFO initializing dbft {"height": 5260, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:17.607Z debug frostfs-node/morph.go:229 new block {"index": 5259} -2023-12-15T23:33:17.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5259, "blockHeight": 5259, "took": "7.620423ms"} -2023-12-15T23:33:18.605Z INFO sending PrepareRequest {"height": 5260, "view": 0} -2023-12-15T23:33:18.606Z INFO sending Commit {"height": 5260, "view": 0} -2023-12-15T23:33:18.606Z INFO approving block {"height": 5260, "hash": "d900e321648c913c08136b3394528925fef781ca5a0fe7241b27435ab111f06a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf19f6240648086771278da9935b08e9b0760dd44cc2366aa765491777561248"} -2023-12-15T23:33:18.608Z INFO initializing dbft {"height": 5261, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:18.609Z debug frostfs-node/morph.go:229 new block {"index": 5260} -2023-12-15T23:33:18.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5260, "blockHeight": 5260, "took": "6.297676ms"} -2023-12-15T23:33:19.608Z INFO sending PrepareRequest {"height": 5261, "view": 0} -2023-12-15T23:33:19.608Z INFO sending Commit {"height": 5261, "view": 0} -2023-12-15T23:33:19.608Z INFO approving block {"height": 5261, "hash": "cc803d0a20b92d21efedd3b8fcbd6f669d07e1028785fa280bbc47dbdd4cc310", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d900e321648c913c08136b3394528925fef781ca5a0fe7241b27435ab111f06a"} -2023-12-15T23:33:19.610Z INFO initializing dbft {"height": 5262, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:19.611Z debug frostfs-node/morph.go:229 new block {"index": 5261} -2023-12-15T23:33:19.869Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5261, "blockHeight": 5261, "took": "9.621291ms"} -2023-12-15T23:33:20.610Z INFO sending PrepareRequest {"height": 5262, "view": 0} -2023-12-15T23:33:20.610Z INFO sending Commit {"height": 5262, "view": 0} -2023-12-15T23:33:20.610Z INFO approving block {"height": 5262, "hash": "77d4e4530e59f8aa679c6b076364989aaaf0d5cd389752138d1b3575fc6ef736", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc803d0a20b92d21efedd3b8fcbd6f669d07e1028785fa280bbc47dbdd4cc310"} -2023-12-15T23:33:20.612Z INFO initializing dbft {"height": 5263, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:20.613Z debug frostfs-node/morph.go:229 new block {"index": 5262} -2023-12-15T23:33:20.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5262, "blockHeight": 5262, "took": "11.262077ms"} -2023-12-15T23:33:21.612Z INFO sending PrepareRequest {"height": 5263, "view": 0} -2023-12-15T23:33:21.612Z INFO sending Commit {"height": 5263, "view": 0} -2023-12-15T23:33:21.613Z INFO approving block {"height": 5263, "hash": "4a4acaeb5a16a77745970d1955ac2c0ed2762928976c8e140729988c376bf6b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77d4e4530e59f8aa679c6b076364989aaaf0d5cd389752138d1b3575fc6ef736"} -2023-12-15T23:33:21.614Z INFO initializing dbft {"height": 5264, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:21.615Z debug frostfs-node/morph.go:229 new block {"index": 5263} -2023-12-15T23:33:21.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5263, "blockHeight": 5263, "took": "9.515377ms"} -2023-12-15T23:33:22.614Z INFO sending PrepareRequest {"height": 5264, "view": 0} -2023-12-15T23:33:22.615Z INFO sending Commit {"height": 5264, "view": 0} -2023-12-15T23:33:22.615Z INFO approving block {"height": 5264, "hash": "25a30c1e42e4c379c8029eb3443fdaa866f5928af495739f9de24d8867b378b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a4acaeb5a16a77745970d1955ac2c0ed2762928976c8e140729988c376bf6b2"} -2023-12-15T23:33:22.617Z INFO initializing dbft {"height": 5265, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:22.617Z debug frostfs-node/morph.go:229 new block {"index": 5264} -2023-12-15T23:33:22.869Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5264, "blockHeight": 5264, "took": "6.1694ms"} -2023-12-15T23:33:23.616Z INFO sending PrepareRequest {"height": 5265, "view": 0} -2023-12-15T23:33:23.617Z INFO sending Commit {"height": 5265, "view": 0} -2023-12-15T23:33:23.617Z INFO approving block {"height": 5265, "hash": "62fa9b5adce164b176ddcf170e12fceb7a81baca52a20cb90c61d09c6ece2fc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25a30c1e42e4c379c8029eb3443fdaa866f5928af495739f9de24d8867b378b7"} -2023-12-15T23:33:23.619Z INFO initializing dbft {"height": 5266, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:23.620Z debug frostfs-node/morph.go:229 new block {"index": 5265} -2023-12-15T23:33:23.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5265, "blockHeight": 5265, "took": "6.988994ms"} -2023-12-15T23:33:24.618Z INFO sending PrepareRequest {"height": 5266, "view": 0} -2023-12-15T23:33:24.619Z INFO sending Commit {"height": 5266, "view": 0} -2023-12-15T23:33:24.619Z INFO approving block {"height": 5266, "hash": "f893771198da621e6b266e2a860dfc407acffe263e12193240ef13ce62d60230", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62fa9b5adce164b176ddcf170e12fceb7a81baca52a20cb90c61d09c6ece2fc4"} -2023-12-15T23:33:24.621Z INFO initializing dbft {"height": 5267, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:24.621Z debug frostfs-node/morph.go:229 new block {"index": 5266} -2023-12-15T23:33:24.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5266, "blockHeight": 5266, "took": "9.447514ms"} -2023-12-15T23:33:25.620Z INFO sending PrepareRequest {"height": 5267, "view": 0} -2023-12-15T23:33:25.620Z INFO sending Commit {"height": 5267, "view": 0} -2023-12-15T23:33:25.621Z INFO approving block {"height": 5267, "hash": "c9042b9d4254d330875d7534310a07b9e7e7702e78d722ca1c88058478896de0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f893771198da621e6b266e2a860dfc407acffe263e12193240ef13ce62d60230"} -2023-12-15T23:33:25.622Z INFO initializing dbft {"height": 5268, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:25.623Z debug frostfs-node/morph.go:229 new block {"index": 5267} -2023-12-15T23:33:25.626Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:33:25.631Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:33:25.632Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:33:25.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5267, "blockHeight": 5267, "took": "8.147171ms"} -2023-12-15T23:33:26.622Z INFO sending PrepareRequest {"height": 5268, "view": 0} -2023-12-15T23:33:26.622Z INFO sending Commit {"height": 5268, "view": 0} -2023-12-15T23:33:26.623Z INFO approving block {"height": 5268, "hash": "ba9295d5038ff02e2e4bf0483ddefc2d4b0cfd354b6aeddadce84e558fcdf4e2", "tx_count": 2, "merkle": "9f9a9e5626fd8c4e0d74f7ff769e7bc80c7aee879dc6d924999d85a5433316f2", "prev": "c9042b9d4254d330875d7534310a07b9e7e7702e78d722ca1c88058478896de0"} -2023-12-15T23:33:26.624Z INFO runtime log {"tx": "98d91887976273ef715a7ccc8c6add54570df574c83e16f646e197b5f82add23", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:33:26.624Z INFO runtime log {"tx": "98d91887976273ef715a7ccc8c6add54570df574c83e16f646e197b5f82add23", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:33:26.625Z INFO initializing dbft {"height": 5269, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:26.626Z debug frostfs-node/morph.go:229 new block {"index": 5268} -2023-12-15T23:33:26.878Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5268, "blockHeight": 5268, "took": "11.013869ms"} -2023-12-15T23:33:27.624Z INFO sending PrepareRequest {"height": 5269, "view": 0} -2023-12-15T23:33:27.624Z INFO sending Commit {"height": 5269, "view": 0} -2023-12-15T23:33:27.624Z INFO approving block {"height": 5269, "hash": "045e4d0d84e28442b0df58be2ac8ccb010dd92953ad2d0aef58675c22aa33d97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba9295d5038ff02e2e4bf0483ddefc2d4b0cfd354b6aeddadce84e558fcdf4e2"} -2023-12-15T23:33:27.626Z INFO initializing dbft {"height": 5270, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:27.627Z debug frostfs-node/morph.go:229 new block {"index": 5269} -2023-12-15T23:33:27.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5269, "blockHeight": 5269, "took": "6.384307ms"} -2023-12-15T23:33:28.625Z INFO sending PrepareRequest {"height": 5270, "view": 0} -2023-12-15T23:33:28.626Z INFO sending Commit {"height": 5270, "view": 0} -2023-12-15T23:33:28.626Z INFO approving block {"height": 5270, "hash": "61405576fc7a0ef1dbbdbebf96d40e9d71a77897582f11149259da3363de77e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "045e4d0d84e28442b0df58be2ac8ccb010dd92953ad2d0aef58675c22aa33d97"} -2023-12-15T23:33:28.628Z INFO initializing dbft {"height": 5271, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:28.628Z debug frostfs-node/morph.go:229 new block {"index": 5270} -2023-12-15T23:33:28.875Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5270, "blockHeight": 5270, "took": "6.313122ms"} -2023-12-15T23:33:29.627Z INFO sending PrepareRequest {"height": 5271, "view": 0} -2023-12-15T23:33:29.627Z INFO sending Commit {"height": 5271, "view": 0} -2023-12-15T23:33:29.628Z INFO approving block {"height": 5271, "hash": "9e705bf08cdc458bfde32c23c059f8248785406001addb50817b64549c2f69ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61405576fc7a0ef1dbbdbebf96d40e9d71a77897582f11149259da3363de77e1"} -2023-12-15T23:33:29.629Z INFO initializing dbft {"height": 5272, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:29.630Z debug frostfs-node/morph.go:229 new block {"index": 5271} -2023-12-15T23:33:29.876Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5271, "blockHeight": 5271, "took": "6.848391ms"} -2023-12-15T23:33:30.629Z INFO sending PrepareRequest {"height": 5272, "view": 0} -2023-12-15T23:33:30.630Z INFO sending Commit {"height": 5272, "view": 0} -2023-12-15T23:33:30.630Z INFO approving block {"height": 5272, "hash": "ae549ec47874018ffa5ebc5798cb2c4c8d5099af55523543943647436b229b52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e705bf08cdc458bfde32c23c059f8248785406001addb50817b64549c2f69ee"} -2023-12-15T23:33:30.632Z INFO initializing dbft {"height": 5273, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:30.633Z debug frostfs-node/morph.go:229 new block {"index": 5272} -2023-12-15T23:33:30.876Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5272, "blockHeight": 5272, "took": "6.923221ms"} -2023-12-15T23:33:31.631Z INFO sending PrepareRequest {"height": 5273, "view": 0} -2023-12-15T23:33:31.631Z INFO sending Commit {"height": 5273, "view": 0} -2023-12-15T23:33:31.632Z INFO approving block {"height": 5273, "hash": "40ea89dded8434401b0280b9d146903f04e046aa8dc3ec6c7847ec0da5809787", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae549ec47874018ffa5ebc5798cb2c4c8d5099af55523543943647436b229b52"} -2023-12-15T23:33:31.633Z INFO initializing dbft {"height": 5274, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:31.634Z debug frostfs-node/morph.go:229 new block {"index": 5273} -2023-12-15T23:33:31.877Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5273, "blockHeight": 5273, "took": "6.970413ms"} -2023-12-15T23:33:32.633Z INFO sending PrepareRequest {"height": 5274, "view": 0} -2023-12-15T23:33:32.633Z INFO sending Commit {"height": 5274, "view": 0} -2023-12-15T23:33:32.633Z INFO approving block {"height": 5274, "hash": "bffe78f1ae4e288a5a9e6adfa4c17975072e06edfc65f0d0fcb2e0fe892c7a64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40ea89dded8434401b0280b9d146903f04e046aa8dc3ec6c7847ec0da5809787"} -2023-12-15T23:33:32.635Z INFO initializing dbft {"height": 5275, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:32.636Z debug frostfs-node/morph.go:229 new block {"index": 5274} -2023-12-15T23:33:32.878Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5274, "blockHeight": 5274, "took": "6.689523ms"} -2023-12-15T23:33:33.635Z INFO sending PrepareRequest {"height": 5275, "view": 0} -2023-12-15T23:33:33.635Z INFO sending Commit {"height": 5275, "view": 0} -2023-12-15T23:33:33.636Z INFO approving block {"height": 5275, "hash": "2052cd53909999d14df1f3ca34a55551216166770907a29d295f2b6fc082732d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bffe78f1ae4e288a5a9e6adfa4c17975072e06edfc65f0d0fcb2e0fe892c7a64"} -2023-12-15T23:33:33.637Z INFO initializing dbft {"height": 5276, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:33.638Z debug frostfs-node/morph.go:229 new block {"index": 5275} -2023-12-15T23:33:33.879Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5275, "blockHeight": 5275, "took": "6.698848ms"} -2023-12-15T23:33:34.637Z INFO sending PrepareRequest {"height": 5276, "view": 0} -2023-12-15T23:33:34.637Z INFO sending Commit {"height": 5276, "view": 0} -2023-12-15T23:33:34.638Z INFO approving block {"height": 5276, "hash": "1bb7a41500b6a797bbc518ca23dd2eed2c5ea79bd07a6fec76b3bd7b7e8ad278", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2052cd53909999d14df1f3ca34a55551216166770907a29d295f2b6fc082732d"} -2023-12-15T23:33:34.639Z INFO initializing dbft {"height": 5277, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:34.640Z debug frostfs-node/morph.go:229 new block {"index": 5276} -2023-12-15T23:33:34.881Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5276, "blockHeight": 5276, "took": "7.726874ms"} -2023-12-15T23:33:35.639Z INFO sending PrepareRequest {"height": 5277, "view": 0} -2023-12-15T23:33:35.640Z INFO sending Commit {"height": 5277, "view": 0} -2023-12-15T23:33:35.640Z INFO approving block {"height": 5277, "hash": "330b773ca8c2b7f06f506186592b23b2b9e4343c6726d8988ce08ba1211b224c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bb7a41500b6a797bbc518ca23dd2eed2c5ea79bd07a6fec76b3bd7b7e8ad278"} -2023-12-15T23:33:35.642Z INFO initializing dbft {"height": 5278, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:35.643Z debug frostfs-node/morph.go:229 new block {"index": 5277} -2023-12-15T23:33:35.881Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5277, "blockHeight": 5277, "took": "6.504009ms"} -2023-12-15T23:33:36.641Z INFO sending PrepareRequest {"height": 5278, "view": 0} -2023-12-15T23:33:36.642Z INFO sending Commit {"height": 5278, "view": 0} -2023-12-15T23:33:36.642Z INFO approving block {"height": 5278, "hash": "74718db197d44da548c6a84951d1b8a41b672a348407ecc0ae579e13c035547f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "330b773ca8c2b7f06f506186592b23b2b9e4343c6726d8988ce08ba1211b224c"} -2023-12-15T23:33:36.644Z INFO initializing dbft {"height": 5279, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:36.645Z debug frostfs-node/morph.go:229 new block {"index": 5278} -2023-12-15T23:33:36.885Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5278, "blockHeight": 5278, "took": "9.344438ms"} -2023-12-15T23:33:37.643Z INFO sending PrepareRequest {"height": 5279, "view": 0} -2023-12-15T23:33:37.644Z INFO sending Commit {"height": 5279, "view": 0} -2023-12-15T23:33:37.644Z INFO approving block {"height": 5279, "hash": "68d8f9274099729b06188ca3a9d3795ff515ac89fa235f0aded4588211b11a9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74718db197d44da548c6a84951d1b8a41b672a348407ecc0ae579e13c035547f"} -2023-12-15T23:33:37.645Z INFO initializing dbft {"height": 5280, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:37.646Z debug frostfs-node/morph.go:229 new block {"index": 5279} -2023-12-15T23:33:37.883Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5279, "blockHeight": 5279, "took": "6.970964ms"} -2023-12-15T23:33:38.645Z INFO sending PrepareRequest {"height": 5280, "view": 0} -2023-12-15T23:33:38.645Z INFO sending Commit {"height": 5280, "view": 0} -2023-12-15T23:33:38.646Z INFO approving block {"height": 5280, "hash": "db2379fd911c1ba34706393bf5819b35a3b9b1aa0a1a50f4971500929eb746f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68d8f9274099729b06188ca3a9d3795ff515ac89fa235f0aded4588211b11a9b"} -2023-12-15T23:33:38.648Z INFO initializing dbft {"height": 5281, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:38.649Z debug frostfs-node/morph.go:229 new block {"index": 5280} -2023-12-15T23:33:38.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5280, "blockHeight": 5280, "took": "6.664055ms"} -2023-12-15T23:33:39.647Z INFO sending PrepareRequest {"height": 5281, "view": 0} -2023-12-15T23:33:39.647Z INFO sending Commit {"height": 5281, "view": 0} -2023-12-15T23:33:39.648Z INFO approving block {"height": 5281, "hash": "7c0be1c250e4127b9ee8ba5322d94a8943ae0cf113dd2c3204e424f0c3ec075a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db2379fd911c1ba34706393bf5819b35a3b9b1aa0a1a50f4971500929eb746f6"} -2023-12-15T23:33:39.649Z INFO initializing dbft {"height": 5282, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:39.650Z debug frostfs-node/morph.go:229 new block {"index": 5281} -2023-12-15T23:33:39.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5281, "blockHeight": 5281, "took": "6.334165ms"} -2023-12-15T23:33:40.649Z INFO sending PrepareRequest {"height": 5282, "view": 0} -2023-12-15T23:33:40.650Z INFO sending Commit {"height": 5282, "view": 0} -2023-12-15T23:33:40.650Z INFO approving block {"height": 5282, "hash": "45f3cbc7203f134695bacc743f795882096aa7269c7b01695afdf1fe15f88272", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c0be1c250e4127b9ee8ba5322d94a8943ae0cf113dd2c3204e424f0c3ec075a"} -2023-12-15T23:33:40.651Z INFO initializing dbft {"height": 5283, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:40.652Z debug frostfs-node/morph.go:229 new block {"index": 5282} -2023-12-15T23:33:40.885Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5282, "blockHeight": 5282, "took": "6.393396ms"} -2023-12-15T23:33:41.651Z INFO sending PrepareRequest {"height": 5283, "view": 0} -2023-12-15T23:33:41.652Z INFO sending Commit {"height": 5283, "view": 0} -2023-12-15T23:33:41.652Z INFO approving block {"height": 5283, "hash": "9e0a037eda944814bb9a4aa252da8ca05736c852f2d460330935df7e9a31dca8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45f3cbc7203f134695bacc743f795882096aa7269c7b01695afdf1fe15f88272"} -2023-12-15T23:33:41.653Z INFO initializing dbft {"height": 5284, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:41.654Z debug frostfs-node/morph.go:229 new block {"index": 5283} -2023-12-15T23:33:41.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5283, "blockHeight": 5283, "took": "4.644895ms"} -2023-12-15T23:33:42.654Z INFO sending PrepareRequest {"height": 5284, "view": 0} -2023-12-15T23:33:42.654Z INFO sending Commit {"height": 5284, "view": 0} -2023-12-15T23:33:42.655Z INFO approving block {"height": 5284, "hash": "f68de7e8e66489ce35fe876012b6d4e82fb01da1954c5f580f4e9144164816dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e0a037eda944814bb9a4aa252da8ca05736c852f2d460330935df7e9a31dca8"} -2023-12-15T23:33:42.656Z INFO initializing dbft {"height": 5285, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:42.657Z debug frostfs-node/morph.go:229 new block {"index": 5284} -2023-12-15T23:33:42.886Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5284, "blockHeight": 5284, "took": "5.862275ms"} -2023-12-15T23:33:43.656Z INFO sending PrepareRequest {"height": 5285, "view": 0} -2023-12-15T23:33:43.656Z INFO sending Commit {"height": 5285, "view": 0} -2023-12-15T23:33:43.657Z INFO approving block {"height": 5285, "hash": "106d254fafdfdce9c4493493d771f5bfde469620f52888df7c230d6910468bc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f68de7e8e66489ce35fe876012b6d4e82fb01da1954c5f580f4e9144164816dc"} -2023-12-15T23:33:43.658Z INFO initializing dbft {"height": 5286, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:43.659Z debug frostfs-node/morph.go:229 new block {"index": 5285} -2023-12-15T23:33:43.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5285, "blockHeight": 5285, "took": "7.882509ms"} -2023-12-15T23:33:44.658Z INFO sending PrepareRequest {"height": 5286, "view": 0} -2023-12-15T23:33:44.658Z INFO sending Commit {"height": 5286, "view": 0} -2023-12-15T23:33:44.659Z INFO approving block {"height": 5286, "hash": "c743774e2aaade9e1b9864ef7b5060331120c2a0f3ea40fd851605bd6872ad00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "106d254fafdfdce9c4493493d771f5bfde469620f52888df7c230d6910468bc5"} -2023-12-15T23:33:44.660Z INFO initializing dbft {"height": 5287, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:44.661Z debug frostfs-node/morph.go:229 new block {"index": 5286} -2023-12-15T23:33:44.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5286, "blockHeight": 5286, "took": "7.259792ms"} -2023-12-15T23:33:45.660Z INFO sending PrepareRequest {"height": 5287, "view": 0} -2023-12-15T23:33:45.660Z INFO sending Commit {"height": 5287, "view": 0} -2023-12-15T23:33:45.661Z INFO approving block {"height": 5287, "hash": "604ecd1089b8f63779387606dd7dc2cb4a2f1de88c20675ffaeb4092d0b36256", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c743774e2aaade9e1b9864ef7b5060331120c2a0f3ea40fd851605bd6872ad00"} -2023-12-15T23:33:45.662Z INFO initializing dbft {"height": 5288, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:45.663Z debug frostfs-node/morph.go:229 new block {"index": 5287} -2023-12-15T23:33:45.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5287, "blockHeight": 5287, "took": "6.137389ms"} -2023-12-15T23:33:46.662Z INFO sending PrepareRequest {"height": 5288, "view": 0} -2023-12-15T23:33:46.662Z INFO sending Commit {"height": 5288, "view": 0} -2023-12-15T23:33:46.663Z INFO approving block {"height": 5288, "hash": "f6a4fd8b450e73bb4aafc543249800302083f8518a9fd0e09178e23c4003583a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "604ecd1089b8f63779387606dd7dc2cb4a2f1de88c20675ffaeb4092d0b36256"} -2023-12-15T23:33:46.664Z INFO initializing dbft {"height": 5289, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:46.665Z debug frostfs-node/morph.go:229 new block {"index": 5288} -2023-12-15T23:33:46.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5288, "blockHeight": 5288, "took": "6.422268ms"} -2023-12-15T23:33:47.664Z INFO sending PrepareRequest {"height": 5289, "view": 0} -2023-12-15T23:33:47.664Z INFO sending Commit {"height": 5289, "view": 0} -2023-12-15T23:33:47.665Z INFO approving block {"height": 5289, "hash": "2c8d9642fb656c18377ee9cdb9609f834c6f61ee705f4f77b70ee114aa088c45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6a4fd8b450e73bb4aafc543249800302083f8518a9fd0e09178e23c4003583a"} -2023-12-15T23:33:47.666Z INFO initializing dbft {"height": 5290, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:47.667Z debug frostfs-node/morph.go:229 new block {"index": 5289} -2023-12-15T23:33:47.891Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5289, "blockHeight": 5289, "took": "6.594533ms"} -2023-12-15T23:33:48.666Z INFO sending PrepareRequest {"height": 5290, "view": 0} -2023-12-15T23:33:48.667Z INFO sending Commit {"height": 5290, "view": 0} -2023-12-15T23:33:48.667Z INFO approving block {"height": 5290, "hash": "309b4bf76fa9adc8ce35216f9626d59a6c5e648d17690605e059b9f137cadf92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c8d9642fb656c18377ee9cdb9609f834c6f61ee705f4f77b70ee114aa088c45"} -2023-12-15T23:33:48.669Z INFO initializing dbft {"height": 5291, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:48.669Z debug frostfs-node/morph.go:229 new block {"index": 5290} -2023-12-15T23:33:48.895Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5290, "blockHeight": 5290, "took": "9.826467ms"} -2023-12-15T23:33:49.668Z INFO sending PrepareRequest {"height": 5291, "view": 0} -2023-12-15T23:33:49.669Z INFO sending Commit {"height": 5291, "view": 0} -2023-12-15T23:33:49.669Z INFO approving block {"height": 5291, "hash": "a275426e8fb70f45635e3622ed45e288de7fcca240861e22e09531c54bf759c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "309b4bf76fa9adc8ce35216f9626d59a6c5e648d17690605e059b9f137cadf92"} -2023-12-15T23:33:49.671Z INFO initializing dbft {"height": 5292, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:49.671Z debug frostfs-node/morph.go:229 new block {"index": 5291} -2023-12-15T23:33:49.893Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5291, "blockHeight": 5291, "took": "7.513484ms"} -2023-12-15T23:33:50.671Z INFO sending PrepareRequest {"height": 5292, "view": 0} -2023-12-15T23:33:50.671Z INFO sending Commit {"height": 5292, "view": 0} -2023-12-15T23:33:50.671Z INFO approving block {"height": 5292, "hash": "df51ceb88a35601982b396ccd6cccfe36253b33bcbc7f6bbcf2257e8486dee1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a275426e8fb70f45635e3622ed45e288de7fcca240861e22e09531c54bf759c5"} -2023-12-15T23:33:50.673Z INFO initializing dbft {"height": 5293, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:50.673Z debug frostfs-node/morph.go:229 new block {"index": 5292} -2023-12-15T23:33:50.895Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5292, "blockHeight": 5292, "took": "9.073696ms"} -2023-12-15T23:33:51.672Z INFO sending PrepareRequest {"height": 5293, "view": 0} -2023-12-15T23:33:51.672Z INFO sending Commit {"height": 5293, "view": 0} -2023-12-15T23:33:51.673Z INFO approving block {"height": 5293, "hash": "7bc2b02b3c8a0c67608e485c3ef7fabadede2ee6b6015582f4898dfb25287636", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df51ceb88a35601982b396ccd6cccfe36253b33bcbc7f6bbcf2257e8486dee1b"} -2023-12-15T23:33:51.674Z INFO initializing dbft {"height": 5294, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:51.675Z debug frostfs-node/morph.go:229 new block {"index": 5293} -2023-12-15T23:33:51.897Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5293, "blockHeight": 5293, "took": "9.822854ms"} -2023-12-15T23:33:52.674Z INFO sending PrepareRequest {"height": 5294, "view": 0} -2023-12-15T23:33:52.675Z INFO sending Commit {"height": 5294, "view": 0} -2023-12-15T23:33:52.675Z INFO approving block {"height": 5294, "hash": "6341c81d10c66fb7e23c96149944bd555eb4b01b38953a825c94016b801decea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bc2b02b3c8a0c67608e485c3ef7fabadede2ee6b6015582f4898dfb25287636"} -2023-12-15T23:33:52.676Z INFO initializing dbft {"height": 5295, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:52.677Z debug frostfs-node/morph.go:229 new block {"index": 5294} -2023-12-15T23:33:52.895Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5294, "blockHeight": 5294, "took": "6.792633ms"} -2023-12-15T23:33:53.676Z INFO sending PrepareRequest {"height": 5295, "view": 0} -2023-12-15T23:33:53.676Z INFO sending Commit {"height": 5295, "view": 0} -2023-12-15T23:33:53.677Z INFO approving block {"height": 5295, "hash": "81e232474b978eb255b22fb5545973e77d2cb07a4ab41cd071a50b95bd56cfcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6341c81d10c66fb7e23c96149944bd555eb4b01b38953a825c94016b801decea"} -2023-12-15T23:33:53.678Z INFO initializing dbft {"height": 5296, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:53.679Z debug frostfs-node/morph.go:229 new block {"index": 5295} -2023-12-15T23:33:53.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5295, "blockHeight": 5295, "took": "9.835303ms"} -2023-12-15T23:33:54.678Z INFO sending PrepareRequest {"height": 5296, "view": 0} -2023-12-15T23:33:54.679Z INFO sending Commit {"height": 5296, "view": 0} -2023-12-15T23:33:54.679Z INFO approving block {"height": 5296, "hash": "151703ac9260428b43aa29a943972ed6a4129bcf18475c329c448f10c9ef9e30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81e232474b978eb255b22fb5545973e77d2cb07a4ab41cd071a50b95bd56cfcd"} -2023-12-15T23:33:54.681Z INFO initializing dbft {"height": 5297, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:54.682Z debug frostfs-node/morph.go:229 new block {"index": 5296} -2023-12-15T23:33:54.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5296, "blockHeight": 5296, "took": "6.834341ms"} -2023-12-15T23:33:55.680Z INFO sending PrepareRequest {"height": 5297, "view": 0} -2023-12-15T23:33:55.681Z INFO sending Commit {"height": 5297, "view": 0} -2023-12-15T23:33:55.681Z INFO approving block {"height": 5297, "hash": "9650316eb5f6c5dbe1b8a98b3065c68ab2d7d043ef12bf31454d37015fddfd35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "151703ac9260428b43aa29a943972ed6a4129bcf18475c329c448f10c9ef9e30"} -2023-12-15T23:33:55.682Z INFO initializing dbft {"height": 5298, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:55.683Z debug frostfs-node/morph.go:229 new block {"index": 5297} -2023-12-15T23:33:55.901Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5297, "blockHeight": 5297, "took": "10.773206ms"} -2023-12-15T23:33:56.683Z INFO sending PrepareRequest {"height": 5298, "view": 0} -2023-12-15T23:33:56.683Z INFO sending Commit {"height": 5298, "view": 0} -2023-12-15T23:33:56.683Z INFO approving block {"height": 5298, "hash": "23c857ec59dc392a82b0199f7a6032e3e87657921e35264835404ed1e5f91d7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9650316eb5f6c5dbe1b8a98b3065c68ab2d7d043ef12bf31454d37015fddfd35"} -2023-12-15T23:33:56.684Z INFO initializing dbft {"height": 5299, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:56.685Z debug frostfs-node/morph.go:229 new block {"index": 5298} -2023-12-15T23:33:56.901Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5298, "blockHeight": 5298, "took": "9.204625ms"} -2023-12-15T23:33:57.685Z INFO sending PrepareRequest {"height": 5299, "view": 0} -2023-12-15T23:33:57.685Z INFO sending Commit {"height": 5299, "view": 0} -2023-12-15T23:33:57.685Z INFO approving block {"height": 5299, "hash": "ab1f193cc86f4ea6f38bc5fdb03b32bbdd44d32aec0d6a4eb14e9f6007822f76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23c857ec59dc392a82b0199f7a6032e3e87657921e35264835404ed1e5f91d7f"} -2023-12-15T23:33:57.687Z INFO initializing dbft {"height": 5300, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:57.688Z debug frostfs-node/morph.go:229 new block {"index": 5299} -2023-12-15T23:33:57.899Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5299, "blockHeight": 5299, "took": "5.79129ms"} -2023-12-15T23:33:58.687Z INFO sending PrepareRequest {"height": 5300, "view": 0} -2023-12-15T23:33:58.687Z INFO sending Commit {"height": 5300, "view": 0} -2023-12-15T23:33:58.688Z INFO approving block {"height": 5300, "hash": "48113a4ebdc8ad9054c3f515fc569f6c87e5c1c69555f3e84f0b5067e9bd4524", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab1f193cc86f4ea6f38bc5fdb03b32bbdd44d32aec0d6a4eb14e9f6007822f76"} -2023-12-15T23:33:58.689Z INFO initializing dbft {"height": 5301, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:58.690Z debug frostfs-node/morph.go:229 new block {"index": 5300} -2023-12-15T23:33:58.903Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5300, "blockHeight": 5300, "took": "9.095686ms"} -2023-12-15T23:33:59.689Z INFO sending PrepareRequest {"height": 5301, "view": 0} -2023-12-15T23:33:59.690Z INFO sending Commit {"height": 5301, "view": 0} -2023-12-15T23:33:59.690Z INFO approving block {"height": 5301, "hash": "22c2d3c8d863b92b6fdc8b62cb71e8ea2ca5786a8f33ce837cac189641341bdc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48113a4ebdc8ad9054c3f515fc569f6c87e5c1c69555f3e84f0b5067e9bd4524"} -2023-12-15T23:33:59.691Z INFO initializing dbft {"height": 5302, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:33:59.692Z debug frostfs-node/morph.go:229 new block {"index": 5301} -2023-12-15T23:33:59.695Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:33:59.697Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 22, "iteration": 3, "error": "no data for 2 iteration in 22 epoch for consumers's trusts"} -2023-12-15T23:33:59.702Z INFO runtime log {"tx": "4d16d649b441ed282ab44de6cb221cbfa3da7593625cc1fd7bbd1e624808ddec", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:33:59.902Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5301, "blockHeight": 5301, "took": "6.737427ms"} -2023-12-15T23:34:00.691Z INFO sending PrepareRequest {"height": 5302, "view": 0} -2023-12-15T23:34:00.692Z INFO sending Commit {"height": 5302, "view": 0} -2023-12-15T23:34:00.692Z INFO approving block {"height": 5302, "hash": "7edd136f8a68e854d3e101545286699f9ac36eec204eb4e5eb6a5f67dfaf1f3a", "tx_count": 1, "merkle": "cd4ee133eefae9b5c0d629d4752bd5d6dc229d9a072e2c0b2587dd95469f8f80", "prev": "22c2d3c8d863b92b6fdc8b62cb71e8ea2ca5786a8f33ce837cac189641341bdc"} -2023-12-15T23:34:00.693Z INFO runtime log {"tx": "808f9f4695dd87250b2c2e079a9d22dcd6d52b75d429d6c0b5e9faee33e14ecd", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:34:00.695Z INFO initializing dbft {"height": 5303, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:00.696Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 24} -2023-12-15T23:34:00.696Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 24} -2023-12-15T23:34:00.697Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:34:00.697Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T23:34:00.697Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:34:00.697Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 24} -2023-12-15T23:34:00.697Z debug controller/calls.go:95 starting to report local trust values {"epoch": 23} -2023-12-15T23:34:00.697Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 24} -2023-12-15T23:34:00.697Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 23} -2023-12-15T23:34:00.697Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 24} -2023-12-15T23:34:00.697Z debug frostfs-node/morph.go:229 new block {"index": 5302} -2023-12-15T23:34:00.701Z debug controller/calls.go:146 reporting successfully finished {"epoch": 23} -2023-12-15T23:34:00.701Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 23} -2023-12-15T23:34:00.704Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:34:00.706Z INFO runtime log {"tx": "2b52d3c3efb1e0ee83e23c63bc2a4cb01bdfbc4f21e354aba1b94be0045fd362", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:34:00.711Z info client/notary.go:214 notary deposit invoke {"amount": 5420466366, "expire_at": 4294967295, "vub": 5305, "tx_hash": "393dc4acea77dca2bc88036870c2f3422aae110ba36c54ab1b45ce3d932dbbf9"} -2023-12-15T23:34:00.721Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 5400, "fallback_valid_for": 40, "tx_hash": "add20c758427c2305661858723ca613fed53dbcc76e8bcc5033d74c2ee40919b"} -2023-12-15T23:34:00.723Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:34:00.723Z info audit/handlers.go:13 new round of audit {"epoch": 24} -2023-12-15T23:34:00.723Z info settlement/calls.go:26 new audit settlement event {"epoch": 24} -2023-12-15T23:34:00.723Z info settlement/handlers.go:14 process audit settlements {"epoch": 24} -2023-12-15T23:34:00.723Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 24} -2023-12-15T23:34:00.726Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T23:34:00.726Z info settlement/handlers.go:18 audit processing finished {"epoch": 24} -2023-12-15T23:34:00.728Z info audit/process.go:39 select containers for audit {"epoch": 24, "amount": 0} -2023-12-15T23:34:00.732Z info client/notary.go:214 notary deposit invoke {"amount": 311620475415, "expire_at": 4294967295, "vub": 5305, "tx_hash": "aaaca548cca65696c60ab5a2b209942dda596c2525d425b7ed8089c24331573c"} -2023-12-15T23:34:00.905Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 5302, "blockHeight": 5302, "took": "8.56159ms"} -2023-12-15T23:34:01.693Z INFO sending PrepareRequest {"height": 5303, "view": 0} -2023-12-15T23:34:01.693Z INFO sending Commit {"height": 5303, "view": 0} -2023-12-15T23:34:01.693Z INFO approving block {"height": 5303, "hash": "5c591c160d724707ad261738e4bed47a535108c897b98af44db0ad5a0df28d51", "tx_count": 3, "merkle": "928eb3b7d20afe7c0ebcfe8cb9e40cc425a1832eb9b0f1b5d2ef5d1e577dc05a", "prev": "7edd136f8a68e854d3e101545286699f9ac36eec204eb4e5eb6a5f67dfaf1f3a"} -2023-12-15T23:34:01.695Z INFO runtime log {"tx": "605aba27c0254de1cfcefdaf43dcab1ac567a2ac19701922a1c422a8bd14ff6b", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:34:01.700Z INFO initializing dbft {"height": 5304, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:01.701Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 23} -2023-12-15T23:34:01.702Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 23} -2023-12-15T23:34:01.702Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 23} -2023-12-15T23:34:01.702Z debug frostfs-node/morph.go:229 new block {"index": 5303} -2023-12-15T23:34:01.908Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 5303, "blockHeight": 5303, "took": "11.732691ms"} -2023-12-15T23:34:02.695Z INFO sending PrepareRequest {"height": 5304, "view": 0} -2023-12-15T23:34:02.695Z INFO sending Commit {"height": 5304, "view": 0} -2023-12-15T23:34:02.696Z INFO approving block {"height": 5304, "hash": "471b901bce36c035f486cfde3760c23c06f356243b6e48b040ff72ef054ef3ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c591c160d724707ad261738e4bed47a535108c897b98af44db0ad5a0df28d51"} -2023-12-15T23:34:02.697Z INFO initializing dbft {"height": 5305, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:02.698Z debug frostfs-node/morph.go:229 new block {"index": 5304} -2023-12-15T23:34:02.903Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5304, "blockHeight": 5304, "took": "6.334978ms"} -2023-12-15T23:34:03.697Z INFO sending PrepareRequest {"height": 5305, "view": 0} -2023-12-15T23:34:03.697Z INFO sending Commit {"height": 5305, "view": 0} -2023-12-15T23:34:03.697Z INFO approving block {"height": 5305, "hash": "43abce025a890763d24d78eb9118883d59a4c6b26faaf06f17657d9923b72c52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "471b901bce36c035f486cfde3760c23c06f356243b6e48b040ff72ef054ef3ef"} -2023-12-15T23:34:03.700Z INFO initializing dbft {"height": 5306, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:03.700Z debug frostfs-node/morph.go:229 new block {"index": 5305} -2023-12-15T23:34:03.904Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5305, "blockHeight": 5305, "took": "6.398997ms"} -2023-12-15T23:34:04.699Z INFO sending PrepareRequest {"height": 5306, "view": 0} -2023-12-15T23:34:04.699Z INFO sending Commit {"height": 5306, "view": 0} -2023-12-15T23:34:04.699Z INFO approving block {"height": 5306, "hash": "35379fab3ad8e2eb421dcc11828fa4f08bf7fb73973876cd655f3d849c2b322a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43abce025a890763d24d78eb9118883d59a4c6b26faaf06f17657d9923b72c52"} -2023-12-15T23:34:04.701Z INFO initializing dbft {"height": 5307, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:04.702Z debug frostfs-node/morph.go:229 new block {"index": 5306} -2023-12-15T23:34:04.905Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5306, "blockHeight": 5306, "took": "5.998165ms"} -2023-12-15T23:34:05.700Z INFO sending PrepareRequest {"height": 5307, "view": 0} -2023-12-15T23:34:05.700Z INFO sending Commit {"height": 5307, "view": 0} -2023-12-15T23:34:05.701Z INFO approving block {"height": 5307, "hash": "c985d0c816a5e7652cf20cf87e82221fdc6b1da7fde6d6be975e27b3eeca4a56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35379fab3ad8e2eb421dcc11828fa4f08bf7fb73973876cd655f3d849c2b322a"} -2023-12-15T23:34:05.702Z INFO initializing dbft {"height": 5308, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:05.702Z debug frostfs-node/morph.go:229 new block {"index": 5307} -2023-12-15T23:34:05.906Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5307, "blockHeight": 5307, "took": "5.754898ms"} -2023-12-15T23:34:06.702Z INFO sending PrepareRequest {"height": 5308, "view": 0} -2023-12-15T23:34:06.703Z INFO sending Commit {"height": 5308, "view": 0} -2023-12-15T23:34:06.703Z INFO approving block {"height": 5308, "hash": "698b778bab9de32d6d53299ee87aef862b6a9953aa24afdce8e4b90a2f16b79f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c985d0c816a5e7652cf20cf87e82221fdc6b1da7fde6d6be975e27b3eeca4a56"} -2023-12-15T23:34:06.704Z INFO initializing dbft {"height": 5309, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:06.705Z debug frostfs-node/morph.go:229 new block {"index": 5308} -2023-12-15T23:34:06.907Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5308, "blockHeight": 5308, "took": "5.717506ms"} -2023-12-15T23:34:07.704Z INFO sending PrepareRequest {"height": 5309, "view": 0} -2023-12-15T23:34:07.705Z INFO sending Commit {"height": 5309, "view": 0} -2023-12-15T23:34:07.705Z INFO approving block {"height": 5309, "hash": "ca38395fc17a9c5b6947e0ede6c7dc4a448d52b68c7899b7fba09bb72e6df127", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "698b778bab9de32d6d53299ee87aef862b6a9953aa24afdce8e4b90a2f16b79f"} -2023-12-15T23:34:07.707Z INFO initializing dbft {"height": 5310, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:07.708Z debug frostfs-node/morph.go:229 new block {"index": 5309} -2023-12-15T23:34:07.908Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5309, "blockHeight": 5309, "took": "6.355566ms"} -2023-12-15T23:34:08.707Z INFO sending PrepareRequest {"height": 5310, "view": 0} -2023-12-15T23:34:08.707Z INFO sending Commit {"height": 5310, "view": 0} -2023-12-15T23:34:08.707Z INFO approving block {"height": 5310, "hash": "34f2a0afaac7d6c1f0325dec0ae55b07865bc2a0ff10f0d07f064788e35faf96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca38395fc17a9c5b6947e0ede6c7dc4a448d52b68c7899b7fba09bb72e6df127"} -2023-12-15T23:34:08.709Z INFO initializing dbft {"height": 5311, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:08.709Z debug frostfs-node/morph.go:229 new block {"index": 5310} -2023-12-15T23:34:08.909Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5310, "blockHeight": 5310, "took": "7.045356ms"} -2023-12-15T23:34:09.708Z INFO sending PrepareRequest {"height": 5311, "view": 0} -2023-12-15T23:34:09.708Z INFO sending Commit {"height": 5311, "view": 0} -2023-12-15T23:34:09.708Z INFO approving block {"height": 5311, "hash": "32515cf00bac7037c6e36c9f5b68568516107340343cb948020ebc051abb8e6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34f2a0afaac7d6c1f0325dec0ae55b07865bc2a0ff10f0d07f064788e35faf96"} -2023-12-15T23:34:09.710Z INFO initializing dbft {"height": 5312, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:09.711Z debug frostfs-node/morph.go:229 new block {"index": 5311} -2023-12-15T23:34:09.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5311, "blockHeight": 5311, "took": "6.938988ms"} -2023-12-15T23:34:10.710Z INFO sending PrepareRequest {"height": 5312, "view": 0} -2023-12-15T23:34:10.710Z INFO sending Commit {"height": 5312, "view": 0} -2023-12-15T23:34:10.710Z INFO approving block {"height": 5312, "hash": "b9451654c37c000145c770bca7371e9e20f05a6dc9846f21da5b5a94f411d43c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32515cf00bac7037c6e36c9f5b68568516107340343cb948020ebc051abb8e6b"} -2023-12-15T23:34:10.712Z INFO initializing dbft {"height": 5313, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:10.713Z debug frostfs-node/morph.go:229 new block {"index": 5312} -2023-12-15T23:34:10.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5312, "blockHeight": 5312, "took": "5.82482ms"} -2023-12-15T23:34:11.711Z INFO sending PrepareRequest {"height": 5313, "view": 0} -2023-12-15T23:34:11.712Z INFO sending Commit {"height": 5313, "view": 0} -2023-12-15T23:34:11.712Z INFO approving block {"height": 5313, "hash": "169ebff4099d5c73740a64dee8a02e59764a95553c2c149f1c4c5aa818336897", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9451654c37c000145c770bca7371e9e20f05a6dc9846f21da5b5a94f411d43c"} -2023-12-15T23:34:11.714Z INFO initializing dbft {"height": 5314, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:11.715Z debug frostfs-node/morph.go:229 new block {"index": 5313} -2023-12-15T23:34:11.911Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5313, "blockHeight": 5313, "took": "5.930244ms"} -2023-12-15T23:34:12.713Z INFO sending PrepareRequest {"height": 5314, "view": 0} -2023-12-15T23:34:12.714Z INFO sending Commit {"height": 5314, "view": 0} -2023-12-15T23:34:12.714Z INFO approving block {"height": 5314, "hash": "50f61742ab15c32b2d34139964afc3b6f6b6e7116f4a691b2363d7f61eb9edd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "169ebff4099d5c73740a64dee8a02e59764a95553c2c149f1c4c5aa818336897"} -2023-12-15T23:34:12.716Z INFO initializing dbft {"height": 5315, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:12.717Z debug frostfs-node/morph.go:229 new block {"index": 5314} -2023-12-15T23:34:12.913Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5314, "blockHeight": 5314, "took": "7.355198ms"} -2023-12-15T23:34:13.715Z INFO sending PrepareRequest {"height": 5315, "view": 0} -2023-12-15T23:34:13.716Z INFO sending Commit {"height": 5315, "view": 0} -2023-12-15T23:34:13.716Z INFO approving block {"height": 5315, "hash": "1f141bc0ea0b88d1c701d3c9bfea7aed33f8d830af58e55fe53d3428f4c094ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50f61742ab15c32b2d34139964afc3b6f6b6e7116f4a691b2363d7f61eb9edd1"} -2023-12-15T23:34:13.718Z INFO initializing dbft {"height": 5316, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:13.719Z debug frostfs-node/morph.go:229 new block {"index": 5315} -2023-12-15T23:34:13.912Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5315, "blockHeight": 5315, "took": "6.397907ms"} -2023-12-15T23:34:14.717Z INFO sending PrepareRequest {"height": 5316, "view": 0} -2023-12-15T23:34:14.717Z INFO sending Commit {"height": 5316, "view": 0} -2023-12-15T23:34:14.717Z INFO approving block {"height": 5316, "hash": "6a75b3383ddd62326b312402b55af9205e94e8dd29c29feee8c3e32227bdc45b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f141bc0ea0b88d1c701d3c9bfea7aed33f8d830af58e55fe53d3428f4c094ae"} -2023-12-15T23:34:14.719Z INFO initializing dbft {"height": 5317, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:14.721Z debug frostfs-node/morph.go:229 new block {"index": 5316} -2023-12-15T23:34:14.914Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5316, "blockHeight": 5316, "took": "6.996263ms"} -2023-12-15T23:34:15.718Z INFO sending PrepareRequest {"height": 5317, "view": 0} -2023-12-15T23:34:15.718Z INFO sending Commit {"height": 5317, "view": 0} -2023-12-15T23:34:15.719Z INFO approving block {"height": 5317, "hash": "3bf46ff68a299e63d8d406c429e138b8b94c0cdf5ef9ea04afc0939894a66b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a75b3383ddd62326b312402b55af9205e94e8dd29c29feee8c3e32227bdc45b"} -2023-12-15T23:34:15.721Z INFO initializing dbft {"height": 5318, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:15.722Z debug frostfs-node/morph.go:229 new block {"index": 5317} -2023-12-15T23:34:15.725Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:34:15.730Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:34:15.730Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:34:15.914Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5317, "blockHeight": 5317, "took": "6.837059ms"} -2023-12-15T23:34:16.720Z INFO sending PrepareRequest {"height": 5318, "view": 0} -2023-12-15T23:34:16.720Z INFO sending Commit {"height": 5318, "view": 0} -2023-12-15T23:34:16.721Z INFO approving block {"height": 5318, "hash": "9b6c03dc1a7a04be242a763c936dd0025a0220a9ef8cb62879522df61332e0ad", "tx_count": 2, "merkle": "a1ea7dcb1223d1b3a5348c3f5f202436d2090953c442fc112b92bf72b23c021b", "prev": "3bf46ff68a299e63d8d406c429e138b8b94c0cdf5ef9ea04afc0939894a66b39"} -2023-12-15T23:34:16.722Z INFO runtime log {"tx": "70bc8d815c0696ca9665b2578df68b6f04015965d9149c1c0e64f528b71a0776", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:34:16.722Z INFO runtime log {"tx": "70bc8d815c0696ca9665b2578df68b6f04015965d9149c1c0e64f528b71a0776", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:34:16.724Z INFO initializing dbft {"height": 5319, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:16.726Z debug frostfs-node/morph.go:229 new block {"index": 5318} -2023-12-15T23:34:16.918Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5318, "blockHeight": 5318, "took": "9.949868ms"} -2023-12-15T23:34:17.722Z INFO sending PrepareRequest {"height": 5319, "view": 0} -2023-12-15T23:34:17.722Z INFO sending Commit {"height": 5319, "view": 0} -2023-12-15T23:34:17.722Z INFO approving block {"height": 5319, "hash": "85ab90221c832d5681a8cabeffe9646daa87c433f5b88f4b77c5740f8124c7d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b6c03dc1a7a04be242a763c936dd0025a0220a9ef8cb62879522df61332e0ad"} -2023-12-15T23:34:17.724Z INFO initializing dbft {"height": 5320, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:17.725Z debug frostfs-node/morph.go:229 new block {"index": 5319} -2023-12-15T23:34:17.914Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5319, "blockHeight": 5319, "took": "4.865122ms"} -2023-12-15T23:34:18.724Z INFO sending PrepareRequest {"height": 5320, "view": 0} -2023-12-15T23:34:18.724Z INFO sending Commit {"height": 5320, "view": 0} -2023-12-15T23:34:18.724Z INFO approving block {"height": 5320, "hash": "d6ada01eecf9c7ea726404799bc3522848ac0446c5cf11da4721db20e25c96a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85ab90221c832d5681a8cabeffe9646daa87c433f5b88f4b77c5740f8124c7d7"} -2023-12-15T23:34:18.727Z INFO initializing dbft {"height": 5321, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:18.727Z debug frostfs-node/morph.go:229 new block {"index": 5320} -2023-12-15T23:34:18.916Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5320, "blockHeight": 5320, "took": "5.793599ms"} -2023-12-15T23:34:19.726Z INFO sending PrepareRequest {"height": 5321, "view": 0} -2023-12-15T23:34:19.726Z INFO sending Commit {"height": 5321, "view": 0} -2023-12-15T23:34:19.727Z INFO approving block {"height": 5321, "hash": "c940d298fc82e9ea2f10b1f38a639d0801fddf0e06869f88224054807b15380e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6ada01eecf9c7ea726404799bc3522848ac0446c5cf11da4721db20e25c96a2"} -2023-12-15T23:34:19.729Z INFO initializing dbft {"height": 5322, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:19.730Z debug frostfs-node/morph.go:229 new block {"index": 5321} -2023-12-15T23:34:19.917Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5321, "blockHeight": 5321, "took": "6.19626ms"} -2023-12-15T23:34:20.728Z INFO sending PrepareRequest {"height": 5322, "view": 0} -2023-12-15T23:34:20.728Z INFO sending Commit {"height": 5322, "view": 0} -2023-12-15T23:34:20.729Z INFO approving block {"height": 5322, "hash": "b286ed52a9da876c87b7883174a29dc9161daf9ad40e8277e6eec7ed8b86ab2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c940d298fc82e9ea2f10b1f38a639d0801fddf0e06869f88224054807b15380e"} -2023-12-15T23:34:20.731Z INFO initializing dbft {"height": 5323, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:20.731Z debug frostfs-node/morph.go:229 new block {"index": 5322} -2023-12-15T23:34:20.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5322, "blockHeight": 5322, "took": "6.998094ms"} -2023-12-15T23:34:21.730Z INFO sending PrepareRequest {"height": 5323, "view": 0} -2023-12-15T23:34:21.730Z INFO sending Commit {"height": 5323, "view": 0} -2023-12-15T23:34:21.731Z INFO approving block {"height": 5323, "hash": "d521ecfad4b0e069d5bec4cf5462527b6f91ea8d80a50e7180827d7663437233", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b286ed52a9da876c87b7883174a29dc9161daf9ad40e8277e6eec7ed8b86ab2e"} -2023-12-15T23:34:21.732Z INFO initializing dbft {"height": 5324, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:21.733Z debug frostfs-node/morph.go:229 new block {"index": 5323} -2023-12-15T23:34:21.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5323, "blockHeight": 5323, "took": "6.825172ms"} -2023-12-15T23:34:22.731Z INFO sending PrepareRequest {"height": 5324, "view": 0} -2023-12-15T23:34:22.732Z INFO sending Commit {"height": 5324, "view": 0} -2023-12-15T23:34:22.732Z INFO approving block {"height": 5324, "hash": "b498b0f1798d06abb4ed1db87a1081c3779f283fcc6a1249c545d41ea6fafa82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d521ecfad4b0e069d5bec4cf5462527b6f91ea8d80a50e7180827d7663437233"} -2023-12-15T23:34:22.734Z INFO initializing dbft {"height": 5325, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:22.735Z debug frostfs-node/morph.go:229 new block {"index": 5324} -2023-12-15T23:34:22.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5324, "blockHeight": 5324, "took": "6.037846ms"} -2023-12-15T23:34:23.733Z INFO sending PrepareRequest {"height": 5325, "view": 0} -2023-12-15T23:34:23.733Z INFO sending Commit {"height": 5325, "view": 0} -2023-12-15T23:34:23.734Z INFO approving block {"height": 5325, "hash": "3c0ac19e00186ac1ca945649124182e8b007553377d779f1364d23991827e3dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b498b0f1798d06abb4ed1db87a1081c3779f283fcc6a1249c545d41ea6fafa82"} -2023-12-15T23:34:23.735Z INFO initializing dbft {"height": 5326, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:23.736Z debug frostfs-node/morph.go:229 new block {"index": 5325} -2023-12-15T23:34:23.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5325, "blockHeight": 5325, "took": "8.703749ms"} -2023-12-15T23:34:24.735Z INFO sending PrepareRequest {"height": 5326, "view": 0} -2023-12-15T23:34:24.736Z INFO sending Commit {"height": 5326, "view": 0} -2023-12-15T23:34:24.736Z INFO approving block {"height": 5326, "hash": "8aaa1882a85a71586c02ec2d3494ad9916670a439c179d1683f742069c4b35a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c0ac19e00186ac1ca945649124182e8b007553377d779f1364d23991827e3dd"} -2023-12-15T23:34:24.738Z INFO initializing dbft {"height": 5327, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:24.739Z debug frostfs-node/morph.go:229 new block {"index": 5326} -2023-12-15T23:34:24.920Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5326, "blockHeight": 5326, "took": "6.700726ms"} -2023-12-15T23:34:25.737Z INFO sending PrepareRequest {"height": 5327, "view": 0} -2023-12-15T23:34:25.738Z INFO sending Commit {"height": 5327, "view": 0} -2023-12-15T23:34:25.738Z INFO approving block {"height": 5327, "hash": "696d092983b0e1f7d162a18d51914cfc2f603dd1e6b089361520d94306541654", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8aaa1882a85a71586c02ec2d3494ad9916670a439c179d1683f742069c4b35a1"} -2023-12-15T23:34:25.740Z INFO initializing dbft {"height": 5328, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:25.741Z debug frostfs-node/morph.go:229 new block {"index": 5327} -2023-12-15T23:34:25.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5327, "blockHeight": 5327, "took": "7.307585ms"} -2023-12-15T23:34:26.740Z INFO sending PrepareRequest {"height": 5328, "view": 0} -2023-12-15T23:34:26.740Z INFO sending Commit {"height": 5328, "view": 0} -2023-12-15T23:34:26.740Z INFO approving block {"height": 5328, "hash": "535b498b4f1028fddcc2c6823aa06b9b074a7e936ebdbd797a786229ada0cd3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "696d092983b0e1f7d162a18d51914cfc2f603dd1e6b089361520d94306541654"} -2023-12-15T23:34:26.742Z INFO initializing dbft {"height": 5329, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:26.743Z debug frostfs-node/morph.go:229 new block {"index": 5328} -2023-12-15T23:34:26.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5328, "blockHeight": 5328, "took": "6.672285ms"} -2023-12-15T23:34:27.742Z INFO sending PrepareRequest {"height": 5329, "view": 0} -2023-12-15T23:34:27.742Z INFO sending Commit {"height": 5329, "view": 0} -2023-12-15T23:34:27.742Z INFO approving block {"height": 5329, "hash": "6936e4173fc749bafa06ac683c844c0ebf1a5524791f8ea012abd6710b21688a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "535b498b4f1028fddcc2c6823aa06b9b074a7e936ebdbd797a786229ada0cd3c"} -2023-12-15T23:34:27.744Z INFO initializing dbft {"height": 5330, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:27.745Z debug frostfs-node/morph.go:229 new block {"index": 5329} -2023-12-15T23:34:27.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5329, "blockHeight": 5329, "took": "7.045075ms"} -2023-12-15T23:34:28.744Z INFO sending PrepareRequest {"height": 5330, "view": 0} -2023-12-15T23:34:28.744Z INFO sending Commit {"height": 5330, "view": 0} -2023-12-15T23:34:28.745Z INFO approving block {"height": 5330, "hash": "5359583c8d24e3bf346b1383631b4c843c34a07f8c947640b8ce75273bec3e0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6936e4173fc749bafa06ac683c844c0ebf1a5524791f8ea012abd6710b21688a"} -2023-12-15T23:34:28.746Z INFO initializing dbft {"height": 5331, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:28.747Z debug frostfs-node/morph.go:229 new block {"index": 5330} -2023-12-15T23:34:28.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5330, "blockHeight": 5330, "took": "5.79393ms"} -2023-12-15T23:34:29.746Z INFO sending PrepareRequest {"height": 5331, "view": 0} -2023-12-15T23:34:29.747Z INFO sending Commit {"height": 5331, "view": 0} -2023-12-15T23:34:29.747Z INFO approving block {"height": 5331, "hash": "18973624a58e109c3e11f6bb23182210d1b02ca36d38bdb332e35ea25f42cc0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5359583c8d24e3bf346b1383631b4c843c34a07f8c947640b8ce75273bec3e0a"} -2023-12-15T23:34:29.749Z INFO initializing dbft {"height": 5332, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:29.750Z debug frostfs-node/morph.go:229 new block {"index": 5331} -2023-12-15T23:34:29.925Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5331, "blockHeight": 5331, "took": "6.921353ms"} -2023-12-15T23:34:30.748Z INFO sending PrepareRequest {"height": 5332, "view": 0} -2023-12-15T23:34:30.749Z INFO sending Commit {"height": 5332, "view": 0} -2023-12-15T23:34:30.749Z INFO approving block {"height": 5332, "hash": "043760288f3b0763075679b10b3ed0b15050d53d54034b8701d19c17986e08c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18973624a58e109c3e11f6bb23182210d1b02ca36d38bdb332e35ea25f42cc0e"} -2023-12-15T23:34:30.751Z INFO initializing dbft {"height": 5333, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:30.752Z debug frostfs-node/morph.go:229 new block {"index": 5332} -2023-12-15T23:34:30.926Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5332, "blockHeight": 5332, "took": "6.233493ms"} -2023-12-15T23:34:31.751Z INFO sending PrepareRequest {"height": 5333, "view": 0} -2023-12-15T23:34:31.751Z INFO sending Commit {"height": 5333, "view": 0} -2023-12-15T23:34:31.752Z INFO approving block {"height": 5333, "hash": "66ab172a16d5a7f7ae7d8692dc126510388e6b864de646347ea3018fb132238a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "043760288f3b0763075679b10b3ed0b15050d53d54034b8701d19c17986e08c5"} -2023-12-15T23:34:31.755Z INFO initializing dbft {"height": 5334, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:31.756Z debug frostfs-node/morph.go:229 new block {"index": 5333} -2023-12-15T23:34:31.928Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5333, "blockHeight": 5333, "took": "7.633364ms"} -2023-12-15T23:34:32.754Z INFO sending PrepareRequest {"height": 5334, "view": 0} -2023-12-15T23:34:32.754Z INFO sending Commit {"height": 5334, "view": 0} -2023-12-15T23:34:32.754Z INFO approving block {"height": 5334, "hash": "3a6663b04c318628538e334a46193bccf76166934964ba2218bae1cf1c9432cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66ab172a16d5a7f7ae7d8692dc126510388e6b864de646347ea3018fb132238a"} -2023-12-15T23:34:32.756Z INFO initializing dbft {"height": 5335, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:32.757Z debug frostfs-node/morph.go:229 new block {"index": 5334} -2023-12-15T23:34:32.929Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5334, "blockHeight": 5334, "took": "7.112519ms"} -2023-12-15T23:34:33.756Z INFO sending PrepareRequest {"height": 5335, "view": 0} -2023-12-15T23:34:33.756Z INFO sending Commit {"height": 5335, "view": 0} -2023-12-15T23:34:33.756Z INFO approving block {"height": 5335, "hash": "122541a24ccd6b1299e6ca58847f54bbc1701a3984870a71e3d5ca9eda09cf8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a6663b04c318628538e334a46193bccf76166934964ba2218bae1cf1c9432cd"} -2023-12-15T23:34:33.758Z INFO initializing dbft {"height": 5336, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:33.759Z debug frostfs-node/morph.go:229 new block {"index": 5335} -2023-12-15T23:34:33.932Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5335, "blockHeight": 5335, "took": "9.82803ms"} -2023-12-15T23:34:34.757Z INFO sending PrepareRequest {"height": 5336, "view": 0} -2023-12-15T23:34:34.758Z INFO sending Commit {"height": 5336, "view": 0} -2023-12-15T23:34:34.758Z INFO approving block {"height": 5336, "hash": "073c1dd1fab19340aeb9f8976d9373643628e42c30b79fba08bac874f71411c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "122541a24ccd6b1299e6ca58847f54bbc1701a3984870a71e3d5ca9eda09cf8e"} -2023-12-15T23:34:34.760Z INFO initializing dbft {"height": 5337, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:34.761Z debug frostfs-node/morph.go:229 new block {"index": 5336} -2023-12-15T23:34:34.930Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5336, "blockHeight": 5336, "took": "6.485941ms"} -2023-12-15T23:34:35.759Z INFO sending PrepareRequest {"height": 5337, "view": 0} -2023-12-15T23:34:35.760Z INFO sending Commit {"height": 5337, "view": 0} -2023-12-15T23:34:35.760Z INFO approving block {"height": 5337, "hash": "20c706bede8660e98bdb93dc067572588a92e028712aa4c7d93d332285d7416c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "073c1dd1fab19340aeb9f8976d9373643628e42c30b79fba08bac874f71411c8"} -2023-12-15T23:34:35.763Z INFO initializing dbft {"height": 5338, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:35.763Z debug frostfs-node/morph.go:229 new block {"index": 5337} -2023-12-15T23:34:35.934Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5337, "blockHeight": 5337, "took": "9.467869ms"} -2023-12-15T23:34:36.761Z INFO sending PrepareRequest {"height": 5338, "view": 0} -2023-12-15T23:34:36.762Z INFO sending Commit {"height": 5338, "view": 0} -2023-12-15T23:34:36.762Z INFO approving block {"height": 5338, "hash": "40de40095902107e56ec9ff869f3525e9d208c0854df6fccaa807af215fb8556", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20c706bede8660e98bdb93dc067572588a92e028712aa4c7d93d332285d7416c"} -2023-12-15T23:34:36.764Z INFO initializing dbft {"height": 5339, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:36.765Z debug frostfs-node/morph.go:229 new block {"index": 5338} -2023-12-15T23:34:36.933Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5338, "blockHeight": 5338, "took": "7.478679ms"} -2023-12-15T23:34:37.763Z INFO sending PrepareRequest {"height": 5339, "view": 0} -2023-12-15T23:34:37.764Z INFO sending Commit {"height": 5339, "view": 0} -2023-12-15T23:34:37.764Z INFO approving block {"height": 5339, "hash": "a04aee3b32c8dd44db9b7f774feae2cec118fb36dd9a51d1886cc1f7321c4a49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40de40095902107e56ec9ff869f3525e9d208c0854df6fccaa807af215fb8556"} -2023-12-15T23:34:37.770Z INFO initializing dbft {"height": 5340, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:37.771Z debug frostfs-node/morph.go:229 new block {"index": 5339} -2023-12-15T23:34:37.937Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5339, "blockHeight": 5339, "took": "10.314993ms"} -2023-12-15T23:34:38.765Z INFO sending PrepareRequest {"height": 5340, "view": 0} -2023-12-15T23:34:38.766Z INFO sending Commit {"height": 5340, "view": 0} -2023-12-15T23:34:38.766Z INFO approving block {"height": 5340, "hash": "ce2ca9ec65e359879662bbfb767c6f0b17a9939314b34c9fb88f19eb8042d734", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a04aee3b32c8dd44db9b7f774feae2cec118fb36dd9a51d1886cc1f7321c4a49"} -2023-12-15T23:34:38.768Z INFO initializing dbft {"height": 5341, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:38.769Z debug frostfs-node/morph.go:229 new block {"index": 5340} -2023-12-15T23:34:38.934Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5340, "blockHeight": 5340, "took": "6.60882ms"} -2023-12-15T23:34:39.767Z INFO sending PrepareRequest {"height": 5341, "view": 0} -2023-12-15T23:34:39.768Z INFO sending Commit {"height": 5341, "view": 0} -2023-12-15T23:34:39.768Z INFO approving block {"height": 5341, "hash": "bdd69785e00a9033282ec164ede30009e4d87432d91e46d4ea5c5b9b155de1a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce2ca9ec65e359879662bbfb767c6f0b17a9939314b34c9fb88f19eb8042d734"} -2023-12-15T23:34:39.770Z INFO initializing dbft {"height": 5342, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:39.771Z debug frostfs-node/morph.go:229 new block {"index": 5341} -2023-12-15T23:34:39.938Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5341, "blockHeight": 5341, "took": "9.66947ms"} -2023-12-15T23:34:40.770Z INFO sending PrepareRequest {"height": 5342, "view": 0} -2023-12-15T23:34:40.770Z INFO sending Commit {"height": 5342, "view": 0} -2023-12-15T23:34:40.770Z INFO approving block {"height": 5342, "hash": "ae30c37a33175e9032df57417065f9f7908d0550d3c37af0933357caf7ca32af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdd69785e00a9033282ec164ede30009e4d87432d91e46d4ea5c5b9b155de1a7"} -2023-12-15T23:34:40.772Z INFO initializing dbft {"height": 5343, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:40.772Z debug frostfs-node/morph.go:229 new block {"index": 5342} -2023-12-15T23:34:40.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5342, "blockHeight": 5342, "took": "9.601002ms"} -2023-12-15T23:34:41.771Z INFO sending PrepareRequest {"height": 5343, "view": 0} -2023-12-15T23:34:41.772Z INFO sending Commit {"height": 5343, "view": 0} -2023-12-15T23:34:41.772Z INFO approving block {"height": 5343, "hash": "b915414ab582f40389188d8bb4001ff43c4ef161790f5b6233af39b07c84967e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae30c37a33175e9032df57417065f9f7908d0550d3c37af0933357caf7ca32af"} -2023-12-15T23:34:41.774Z INFO initializing dbft {"height": 5344, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:41.775Z debug frostfs-node/morph.go:229 new block {"index": 5343} -2023-12-15T23:34:41.937Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5343, "blockHeight": 5343, "took": "6.613433ms"} -2023-12-15T23:34:42.774Z INFO sending PrepareRequest {"height": 5344, "view": 0} -2023-12-15T23:34:42.774Z INFO sending Commit {"height": 5344, "view": 0} -2023-12-15T23:34:42.774Z INFO approving block {"height": 5344, "hash": "e8bcb2c76a9d32172a54decfb477953ce50961a16ee79bcd622006961f39f815", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b915414ab582f40389188d8bb4001ff43c4ef161790f5b6233af39b07c84967e"} -2023-12-15T23:34:42.776Z INFO initializing dbft {"height": 5345, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:42.777Z debug frostfs-node/morph.go:229 new block {"index": 5344} -2023-12-15T23:34:42.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5344, "blockHeight": 5344, "took": "6.821236ms"} -2023-12-15T23:34:43.776Z INFO sending PrepareRequest {"height": 5345, "view": 0} -2023-12-15T23:34:43.777Z INFO sending Commit {"height": 5345, "view": 0} -2023-12-15T23:34:43.777Z INFO approving block {"height": 5345, "hash": "06404b41da53f8a1e0fd355bd850a6137629d3007f31cf04e25e06d7efe1e198", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8bcb2c76a9d32172a54decfb477953ce50961a16ee79bcd622006961f39f815"} -2023-12-15T23:34:43.779Z INFO initializing dbft {"height": 5346, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:43.780Z debug frostfs-node/morph.go:229 new block {"index": 5345} -2023-12-15T23:34:43.944Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5345, "blockHeight": 5345, "took": "10.437203ms"} -2023-12-15T23:34:44.778Z INFO sending PrepareRequest {"height": 5346, "view": 0} -2023-12-15T23:34:44.779Z INFO sending Commit {"height": 5346, "view": 0} -2023-12-15T23:34:44.779Z INFO approving block {"height": 5346, "hash": "b9ce47cfc84064965525dbeb0f436ee523fb79c232ee07371936d6f0dc6b0310", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06404b41da53f8a1e0fd355bd850a6137629d3007f31cf04e25e06d7efe1e198"} -2023-12-15T23:34:44.781Z INFO initializing dbft {"height": 5347, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:44.782Z debug frostfs-node/morph.go:229 new block {"index": 5346} -2023-12-15T23:34:44.941Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5346, "blockHeight": 5346, "took": "6.461539ms"} -2023-12-15T23:34:45.780Z INFO sending PrepareRequest {"height": 5347, "view": 0} -2023-12-15T23:34:45.780Z INFO sending Commit {"height": 5347, "view": 0} -2023-12-15T23:34:45.781Z INFO approving block {"height": 5347, "hash": "7c1085b47627bbe5d7f0159bd859407daa99fe8fa06a367fc0c2eefe214c062f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9ce47cfc84064965525dbeb0f436ee523fb79c232ee07371936d6f0dc6b0310"} -2023-12-15T23:34:45.783Z INFO initializing dbft {"height": 5348, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:45.784Z debug frostfs-node/morph.go:229 new block {"index": 5347} -2023-12-15T23:34:45.942Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5347, "blockHeight": 5347, "took": "6.720447ms"} -2023-12-15T23:34:46.782Z INFO sending PrepareRequest {"height": 5348, "view": 0} -2023-12-15T23:34:46.783Z INFO sending Commit {"height": 5348, "view": 0} -2023-12-15T23:34:46.783Z INFO approving block {"height": 5348, "hash": "30f988e830ccd3596065feaf3e7cc710e62b4a0cecfe53c5a345cd1ff5a20df6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c1085b47627bbe5d7f0159bd859407daa99fe8fa06a367fc0c2eefe214c062f"} -2023-12-15T23:34:46.785Z INFO initializing dbft {"height": 5349, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:46.786Z debug frostfs-node/morph.go:229 new block {"index": 5348} -2023-12-15T23:34:46.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5348, "blockHeight": 5348, "took": "9.442207ms"} -2023-12-15T23:34:47.784Z INFO sending PrepareRequest {"height": 5349, "view": 0} -2023-12-15T23:34:47.785Z INFO sending Commit {"height": 5349, "view": 0} -2023-12-15T23:34:47.785Z INFO approving block {"height": 5349, "hash": "3aac252573fb8589a2d144176031d4ce8ef14a1ab0badeb88b0ab6a67a433519", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30f988e830ccd3596065feaf3e7cc710e62b4a0cecfe53c5a345cd1ff5a20df6"} -2023-12-15T23:34:47.787Z INFO initializing dbft {"height": 5350, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:47.788Z debug frostfs-node/morph.go:229 new block {"index": 5349} -2023-12-15T23:34:47.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5349, "blockHeight": 5349, "took": "8.38072ms"} -2023-12-15T23:34:48.787Z INFO sending PrepareRequest {"height": 5350, "view": 0} -2023-12-15T23:34:48.787Z INFO sending Commit {"height": 5350, "view": 0} -2023-12-15T23:34:48.787Z INFO approving block {"height": 5350, "hash": "d6bde603d78ae8f889190c396182e1f8d66b216d02c163b36157ad0b8e1215f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3aac252573fb8589a2d144176031d4ce8ef14a1ab0badeb88b0ab6a67a433519"} -2023-12-15T23:34:48.789Z INFO initializing dbft {"height": 5351, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:48.790Z debug frostfs-node/morph.go:229 new block {"index": 5350} -2023-12-15T23:34:48.945Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5350, "blockHeight": 5350, "took": "6.476609ms"} -2023-12-15T23:34:49.789Z INFO sending PrepareRequest {"height": 5351, "view": 0} -2023-12-15T23:34:49.789Z INFO sending Commit {"height": 5351, "view": 0} -2023-12-15T23:34:49.789Z INFO approving block {"height": 5351, "hash": "892fbf734145b8d0914be112a8c2aa251b92bed06bfb016f8b5c1d880dcfd2d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6bde603d78ae8f889190c396182e1f8d66b216d02c163b36157ad0b8e1215f6"} -2023-12-15T23:34:49.791Z INFO initializing dbft {"height": 5352, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:49.792Z debug frostfs-node/morph.go:229 new block {"index": 5351} -2023-12-15T23:34:49.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5351, "blockHeight": 5351, "took": "6.482058ms"} -2023-12-15T23:34:50.791Z INFO sending PrepareRequest {"height": 5352, "view": 0} -2023-12-15T23:34:50.791Z INFO sending Commit {"height": 5352, "view": 0} -2023-12-15T23:34:50.792Z INFO approving block {"height": 5352, "hash": "218a9ac150dbe6605f96377e87b8fd503151774567daafc30a15491b43066e2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "892fbf734145b8d0914be112a8c2aa251b92bed06bfb016f8b5c1d880dcfd2d6"} -2023-12-15T23:34:50.794Z INFO initializing dbft {"height": 5353, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:50.795Z debug frostfs-node/morph.go:229 new block {"index": 5352} -2023-12-15T23:34:50.947Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5352, "blockHeight": 5352, "took": "6.797278ms"} -2023-12-15T23:34:51.793Z INFO sending PrepareRequest {"height": 5353, "view": 0} -2023-12-15T23:34:51.793Z INFO sending Commit {"height": 5353, "view": 0} -2023-12-15T23:34:51.793Z INFO approving block {"height": 5353, "hash": "8e5321527ae298d017439f5deff2c9889ce802a5603b8489926cf10113d97b0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "218a9ac150dbe6605f96377e87b8fd503151774567daafc30a15491b43066e2f"} -2023-12-15T23:34:51.795Z INFO initializing dbft {"height": 5354, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:51.796Z debug frostfs-node/morph.go:229 new block {"index": 5353} -2023-12-15T23:34:51.947Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5353, "blockHeight": 5353, "took": "6.573331ms"} -2023-12-15T23:34:52.795Z INFO sending PrepareRequest {"height": 5354, "view": 0} -2023-12-15T23:34:52.795Z INFO sending Commit {"height": 5354, "view": 0} -2023-12-15T23:34:52.796Z INFO approving block {"height": 5354, "hash": "762fe072b854a4b9fb2e843bee49d9e387f4139ff868e662147aee60e5535d5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e5321527ae298d017439f5deff2c9889ce802a5603b8489926cf10113d97b0d"} -2023-12-15T23:34:52.797Z INFO initializing dbft {"height": 5355, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:52.798Z debug frostfs-node/morph.go:229 new block {"index": 5354} -2023-12-15T23:34:52.947Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5354, "blockHeight": 5354, "took": "6.039825ms"} -2023-12-15T23:34:53.796Z INFO sending PrepareRequest {"height": 5355, "view": 0} -2023-12-15T23:34:53.797Z INFO sending Commit {"height": 5355, "view": 0} -2023-12-15T23:34:53.797Z INFO approving block {"height": 5355, "hash": "786b8472c5b93b6a4a661aed0458e69e2e3f8e67fa35abe9306ff055e6f53a02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "762fe072b854a4b9fb2e843bee49d9e387f4139ff868e662147aee60e5535d5b"} -2023-12-15T23:34:53.800Z INFO initializing dbft {"height": 5356, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:53.800Z debug frostfs-node/morph.go:229 new block {"index": 5355} -2023-12-15T23:34:53.947Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5355, "blockHeight": 5355, "took": "6.545429ms"} -2023-12-15T23:34:54.799Z INFO sending PrepareRequest {"height": 5356, "view": 0} -2023-12-15T23:34:54.799Z INFO sending Commit {"height": 5356, "view": 0} -2023-12-15T23:34:54.800Z INFO approving block {"height": 5356, "hash": "8c9fb9701d2aab14d37b629406b3e6420c23c4da5f48e2fd091fca6e9f2eea56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "786b8472c5b93b6a4a661aed0458e69e2e3f8e67fa35abe9306ff055e6f53a02"} -2023-12-15T23:34:54.803Z INFO initializing dbft {"height": 5357, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:54.804Z debug frostfs-node/morph.go:229 new block {"index": 5356} -2023-12-15T23:34:54.948Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5356, "blockHeight": 5356, "took": "5.679235ms"} -2023-12-15T23:34:55.801Z INFO sending PrepareRequest {"height": 5357, "view": 0} -2023-12-15T23:34:55.802Z INFO sending Commit {"height": 5357, "view": 0} -2023-12-15T23:34:55.802Z INFO approving block {"height": 5357, "hash": "388370c0674122651b8ef41d29b4fde77abaea354213f57a6b7f41467912bfd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c9fb9701d2aab14d37b629406b3e6420c23c4da5f48e2fd091fca6e9f2eea56"} -2023-12-15T23:34:55.804Z INFO initializing dbft {"height": 5358, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:55.805Z debug frostfs-node/morph.go:229 new block {"index": 5357} -2023-12-15T23:34:55.952Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5357, "blockHeight": 5357, "took": "9.360242ms"} -2023-12-15T23:34:56.803Z INFO sending PrepareRequest {"height": 5358, "view": 0} -2023-12-15T23:34:56.804Z INFO sending Commit {"height": 5358, "view": 0} -2023-12-15T23:34:56.804Z INFO approving block {"height": 5358, "hash": "57eb2810580163b71359edac25e682adb3c3a922f6e9e7e1d791544479634553", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "388370c0674122651b8ef41d29b4fde77abaea354213f57a6b7f41467912bfd1"} -2023-12-15T23:34:56.806Z INFO initializing dbft {"height": 5359, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:56.807Z debug frostfs-node/morph.go:229 new block {"index": 5358} -2023-12-15T23:34:56.950Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5358, "blockHeight": 5358, "took": "6.778303ms"} -2023-12-15T23:34:57.805Z INFO sending PrepareRequest {"height": 5359, "view": 0} -2023-12-15T23:34:57.805Z INFO sending Commit {"height": 5359, "view": 0} -2023-12-15T23:34:57.806Z INFO approving block {"height": 5359, "hash": "6426d416305910efbf2e476119872a45b7b794701d49c5320bb4eb60ad07169f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57eb2810580163b71359edac25e682adb3c3a922f6e9e7e1d791544479634553"} -2023-12-15T23:34:57.808Z INFO initializing dbft {"height": 5360, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:57.809Z debug frostfs-node/morph.go:229 new block {"index": 5359} -2023-12-15T23:34:57.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5359, "blockHeight": 5359, "took": "6.275314ms"} -2023-12-15T23:34:58.807Z INFO sending PrepareRequest {"height": 5360, "view": 0} -2023-12-15T23:34:58.808Z INFO sending Commit {"height": 5360, "view": 0} -2023-12-15T23:34:58.808Z INFO approving block {"height": 5360, "hash": "0afbdc66718b9604c5df75f2d5fb470e790cd7c622553186fa6d1e7e5c326bfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6426d416305910efbf2e476119872a45b7b794701d49c5320bb4eb60ad07169f"} -2023-12-15T23:34:58.811Z INFO initializing dbft {"height": 5361, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:58.812Z debug frostfs-node/morph.go:229 new block {"index": 5360} -2023-12-15T23:34:58.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5360, "blockHeight": 5360, "took": "6.684596ms"} -2023-12-15T23:34:59.810Z INFO sending PrepareRequest {"height": 5361, "view": 0} -2023-12-15T23:34:59.810Z INFO sending Commit {"height": 5361, "view": 0} -2023-12-15T23:34:59.810Z INFO approving block {"height": 5361, "hash": "a463a48bdad6009612333a9c615d42c11b81f158a291aa69858095ecd2ba5e42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0afbdc66718b9604c5df75f2d5fb470e790cd7c622553186fa6d1e7e5c326bfc"} -2023-12-15T23:34:59.812Z INFO initializing dbft {"height": 5362, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:34:59.813Z debug frostfs-node/morph.go:229 new block {"index": 5361} -2023-12-15T23:34:59.952Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5361, "blockHeight": 5361, "took": "6.063147ms"} -2023-12-15T23:35:00.812Z INFO sending PrepareRequest {"height": 5362, "view": 0} -2023-12-15T23:35:00.813Z INFO sending Commit {"height": 5362, "view": 0} -2023-12-15T23:35:00.813Z INFO approving block {"height": 5362, "hash": "fa6e0175018ecf9258752b40f048b538b3403c7bc4e5ea199ca638fb96f0ee90", "tx_count": 1, "merkle": "0faaffebb149bf9bd2942199f4504b8b77ecad7d2e7f5597aa2b3425525902ff", "prev": "a463a48bdad6009612333a9c615d42c11b81f158a291aa69858095ecd2ba5e42"} -2023-12-15T23:35:00.816Z INFO initializing dbft {"height": 5363, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:00.817Z debug frostfs-node/morph.go:229 new block {"index": 5362} -2023-12-15T23:35:00.824Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T23:35:00.825Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 23 epoch for daughters"} -2023-12-15T23:35:00.828Z INFO runtime log {"tx": "e372abde0f3913b067030a998e87452a6b7a542fb7587a39f86bc110a97fedaa", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:35:00.958Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 5362, "blockHeight": 5362, "took": "11.069083ms"} -2023-12-15T23:35:01.815Z INFO sending PrepareRequest {"height": 5363, "view": 0} -2023-12-15T23:35:01.815Z INFO sending Commit {"height": 5363, "view": 0} -2023-12-15T23:35:01.816Z INFO approving block {"height": 5363, "hash": "da1e115a6f6c59220799c884cbfd78e728ee3f6832a3db31d672a5492fa0ea19", "tx_count": 1, "merkle": "114feb3998db1d6aa695d191dfef75961464e63f53a97bbabbb94e1009d168d1", "prev": "fa6e0175018ecf9258752b40f048b538b3403c7bc4e5ea199ca638fb96f0ee90"} -2023-12-15T23:35:01.817Z INFO runtime log {"tx": "d168d109104eb9bbba7ba9533fe664149675efdf91d195a66a1ddb9839eb4f11", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:35:01.819Z INFO initializing dbft {"height": 5364, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:01.820Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 23} -2023-12-15T23:35:01.820Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 23} -2023-12-15T23:35:01.822Z debug frostfs-node/morph.go:229 new block {"index": 5363} -2023-12-15T23:35:01.955Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 5363, "blockHeight": 5363, "took": "7.792937ms"} -2023-12-15T23:35:02.817Z INFO sending PrepareRequest {"height": 5364, "view": 0} -2023-12-15T23:35:02.817Z INFO sending Commit {"height": 5364, "view": 0} -2023-12-15T23:35:02.817Z INFO approving block {"height": 5364, "hash": "923a7e02bb3ba29f3a9cc4beb64374438889462372fc7a65b3d9de99b621a636", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da1e115a6f6c59220799c884cbfd78e728ee3f6832a3db31d672a5492fa0ea19"} -2023-12-15T23:35:02.819Z INFO initializing dbft {"height": 5365, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:02.820Z debug frostfs-node/morph.go:229 new block {"index": 5364} -2023-12-15T23:35:02.955Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5364, "blockHeight": 5364, "took": "6.444069ms"} -2023-12-15T23:35:03.819Z INFO sending PrepareRequest {"height": 5365, "view": 0} -2023-12-15T23:35:03.819Z INFO sending Commit {"height": 5365, "view": 0} -2023-12-15T23:35:03.820Z INFO approving block {"height": 5365, "hash": "cfc8490df37df92f38d40aa7073155df6ccb90ce40d6097dc961f510b332f7d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "923a7e02bb3ba29f3a9cc4beb64374438889462372fc7a65b3d9de99b621a636"} -2023-12-15T23:35:03.821Z INFO initializing dbft {"height": 5366, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:03.822Z debug frostfs-node/morph.go:229 new block {"index": 5365} -2023-12-15T23:35:03.957Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5365, "blockHeight": 5365, "took": "7.051855ms"} -2023-12-15T23:35:04.821Z INFO sending PrepareRequest {"height": 5366, "view": 0} -2023-12-15T23:35:04.822Z INFO sending Commit {"height": 5366, "view": 0} -2023-12-15T23:35:04.822Z INFO approving block {"height": 5366, "hash": "a75ff29f8fd88a276979db11dac57d15056fd0b3f03b8cbf64e7964bda466701", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfc8490df37df92f38d40aa7073155df6ccb90ce40d6097dc961f510b332f7d4"} -2023-12-15T23:35:04.824Z INFO initializing dbft {"height": 5367, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:04.824Z debug frostfs-node/morph.go:229 new block {"index": 5366} -2023-12-15T23:35:04.957Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5366, "blockHeight": 5366, "took": "7.146828ms"} -2023-12-15T23:35:05.823Z INFO sending PrepareRequest {"height": 5367, "view": 0} -2023-12-15T23:35:05.824Z INFO sending Commit {"height": 5367, "view": 0} -2023-12-15T23:35:05.824Z INFO approving block {"height": 5367, "hash": "ab5c072300104a91f775a3213e66b3d6f077cb7ca35a92245f9c5a6e6da25d5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a75ff29f8fd88a276979db11dac57d15056fd0b3f03b8cbf64e7964bda466701"} -2023-12-15T23:35:05.826Z INFO initializing dbft {"height": 5368, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:05.827Z debug frostfs-node/morph.go:229 new block {"index": 5367} -2023-12-15T23:35:05.830Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:35:05.831Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:35:05.831Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:35:05.958Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5367, "blockHeight": 5367, "took": "6.683385ms"} -2023-12-15T23:35:06.826Z INFO sending PrepareRequest {"height": 5368, "view": 0} -2023-12-15T23:35:06.826Z INFO sending Commit {"height": 5368, "view": 0} -2023-12-15T23:35:06.826Z INFO approving block {"height": 5368, "hash": "e6dc7ef0900ca219093a9048b530cefe9ac29c093ec686b29bbd22a96976cfe2", "tx_count": 2, "merkle": "63966cb2d3394ca4614da754346d6192161c1c786255f1470451622c1145681f", "prev": "ab5c072300104a91f775a3213e66b3d6f077cb7ca35a92245f9c5a6e6da25d5e"} -2023-12-15T23:35:06.828Z INFO runtime log {"tx": "29f39086f2220e9dcbb4571a2c61080b5ffaf27653c35d51696ee75e2daf5162", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:35:06.828Z INFO runtime log {"tx": "29f39086f2220e9dcbb4571a2c61080b5ffaf27653c35d51696ee75e2daf5162", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:35:06.829Z INFO initializing dbft {"height": 5369, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:06.831Z debug frostfs-node/morph.go:229 new block {"index": 5368} -2023-12-15T23:35:06.962Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 5368, "blockHeight": 5368, "took": "10.155736ms"} -2023-12-15T23:35:07.828Z INFO sending PrepareRequest {"height": 5369, "view": 0} -2023-12-15T23:35:07.828Z INFO sending Commit {"height": 5369, "view": 0} -2023-12-15T23:35:07.829Z INFO approving block {"height": 5369, "hash": "a9b37bdcc38dc3b90c8bb65ed99fd6e83f88f265636e3544fbb4ec5e198f3b71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6dc7ef0900ca219093a9048b530cefe9ac29c093ec686b29bbd22a96976cfe2"} -2023-12-15T23:35:07.830Z INFO initializing dbft {"height": 5370, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:07.831Z debug frostfs-node/morph.go:229 new block {"index": 5369} -2023-12-15T23:35:07.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5369, "blockHeight": 5369, "took": "9.569489ms"} -2023-12-15T23:35:08.830Z INFO sending PrepareRequest {"height": 5370, "view": 0} -2023-12-15T23:35:08.830Z INFO sending Commit {"height": 5370, "view": 0} -2023-12-15T23:35:08.831Z INFO approving block {"height": 5370, "hash": "b38c0c22b4a9630e3a4fca6d1c28d5e269e439d778f4a20323b1a15e157ba4e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9b37bdcc38dc3b90c8bb65ed99fd6e83f88f265636e3544fbb4ec5e198f3b71"} -2023-12-15T23:35:08.833Z INFO initializing dbft {"height": 5371, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:08.833Z debug frostfs-node/morph.go:229 new block {"index": 5370} -2023-12-15T23:35:08.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5370, "blockHeight": 5370, "took": "6.621414ms"} -2023-12-15T23:35:09.832Z INFO sending PrepareRequest {"height": 5371, "view": 0} -2023-12-15T23:35:09.833Z INFO sending Commit {"height": 5371, "view": 0} -2023-12-15T23:35:09.833Z INFO approving block {"height": 5371, "hash": "12ea6964dc47e73cad235aa77df1e84d0096d195280a4f828e02fe52c128bdda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b38c0c22b4a9630e3a4fca6d1c28d5e269e439d778f4a20323b1a15e157ba4e8"} -2023-12-15T23:35:09.835Z INFO initializing dbft {"height": 5372, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:09.836Z debug frostfs-node/morph.go:229 new block {"index": 5371} -2023-12-15T23:35:09.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5371, "blockHeight": 5371, "took": "6.904743ms"} -2023-12-15T23:35:10.834Z INFO sending PrepareRequest {"height": 5372, "view": 0} -2023-12-15T23:35:10.834Z INFO sending Commit {"height": 5372, "view": 0} -2023-12-15T23:35:10.834Z INFO approving block {"height": 5372, "hash": "10d14e0dba59fe3e54529afcf3111b012304f33eb55049b02e84c0e8d377d951", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12ea6964dc47e73cad235aa77df1e84d0096d195280a4f828e02fe52c128bdda"} -2023-12-15T23:35:10.836Z INFO initializing dbft {"height": 5373, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:10.837Z debug frostfs-node/morph.go:229 new block {"index": 5372} -2023-12-15T23:35:10.962Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5372, "blockHeight": 5372, "took": "6.539912ms"} -2023-12-15T23:35:11.836Z INFO sending PrepareRequest {"height": 5373, "view": 0} -2023-12-15T23:35:11.837Z INFO sending Commit {"height": 5373, "view": 0} -2023-12-15T23:35:11.837Z INFO approving block {"height": 5373, "hash": "581274d66473c22221e68958c1f9009af4a4f6d486b94ea06363ea3914f24671", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10d14e0dba59fe3e54529afcf3111b012304f33eb55049b02e84c0e8d377d951"} -2023-12-15T23:35:11.839Z INFO initializing dbft {"height": 5374, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:11.841Z debug frostfs-node/morph.go:229 new block {"index": 5373} -2023-12-15T23:35:11.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5373, "blockHeight": 5373, "took": "4.704937ms"} -2023-12-15T23:35:12.839Z INFO sending PrepareRequest {"height": 5374, "view": 0} -2023-12-15T23:35:12.839Z INFO sending Commit {"height": 5374, "view": 0} -2023-12-15T23:35:12.840Z INFO approving block {"height": 5374, "hash": "c7d2f5a4db2cb96d293fbd5b66d106676bd005a8ade8ea37a1b708a78243b235", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "581274d66473c22221e68958c1f9009af4a4f6d486b94ea06363ea3914f24671"} -2023-12-15T23:35:12.841Z INFO initializing dbft {"height": 5375, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:12.842Z debug frostfs-node/morph.go:229 new block {"index": 5374} -2023-12-15T23:35:12.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5374, "blockHeight": 5374, "took": "5.808637ms"} -2023-12-15T23:35:13.841Z INFO sending PrepareRequest {"height": 5375, "view": 0} -2023-12-15T23:35:13.841Z INFO sending Commit {"height": 5375, "view": 0} -2023-12-15T23:35:13.841Z INFO approving block {"height": 5375, "hash": "c91e29063fad5b405fb859eaa832442dcfda1f21df06d60595f6b847ea100642", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7d2f5a4db2cb96d293fbd5b66d106676bd005a8ade8ea37a1b708a78243b235"} -2023-12-15T23:35:13.843Z INFO initializing dbft {"height": 5376, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:13.843Z debug frostfs-node/morph.go:229 new block {"index": 5375} -2023-12-15T23:35:13.965Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 5375, "blockHeight": 5375, "took": "7.23945ms"} -2023-12-15T23:35:14.843Z INFO sending PrepareRequest {"height": 5376, "view": 0} -2023-12-15T23:35:14.843Z INFO sending Commit {"height": 5376, "view": 0} -2023-12-15T23:35:14.843Z INFO approving block {"height": 5376, "hash": "ea0cad7c4057b8c17afb013cc3cc8f0a3e544339b7d572f58e1bdfb62b7905f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c91e29063fad5b405fb859eaa832442dcfda1f21df06d60595f6b847ea100642"} -2023-12-15T23:35:14.845Z INFO initializing dbft {"height": 5377, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:14.846Z debug frostfs-node/morph.go:229 new block {"index": 5376} -2023-12-15T23:35:14.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5376, "blockHeight": 5376, "took": "9.558574ms"} -2023-12-15T23:35:15.845Z INFO sending PrepareRequest {"height": 5377, "view": 0} -2023-12-15T23:35:15.845Z INFO sending Commit {"height": 5377, "view": 0} -2023-12-15T23:35:15.846Z INFO approving block {"height": 5377, "hash": "821fbf8747ee8153aaf6079a2f6e12108f910f3a5f9ed2859e63dbc69dc07d5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea0cad7c4057b8c17afb013cc3cc8f0a3e544339b7d572f58e1bdfb62b7905f9"} -2023-12-15T23:35:15.847Z INFO initializing dbft {"height": 5378, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:15.848Z debug frostfs-node/morph.go:229 new block {"index": 5377} -2023-12-15T23:35:15.966Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5377, "blockHeight": 5377, "took": "6.385008ms"} -2023-12-15T23:35:16.847Z INFO sending PrepareRequest {"height": 5378, "view": 0} -2023-12-15T23:35:16.848Z INFO sending Commit {"height": 5378, "view": 0} -2023-12-15T23:35:16.848Z INFO approving block {"height": 5378, "hash": "f17270c126f783f7dd524454c35655f0ee0f7d4355d26bbcc8cd92f42ad7d57e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "821fbf8747ee8153aaf6079a2f6e12108f910f3a5f9ed2859e63dbc69dc07d5a"} -2023-12-15T23:35:16.849Z INFO initializing dbft {"height": 5379, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:16.850Z debug frostfs-node/morph.go:229 new block {"index": 5378} -2023-12-15T23:35:16.967Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5378, "blockHeight": 5378, "took": "5.975011ms"} -2023-12-15T23:35:17.849Z INFO sending PrepareRequest {"height": 5379, "view": 0} -2023-12-15T23:35:17.849Z INFO sending Commit {"height": 5379, "view": 0} -2023-12-15T23:35:17.850Z INFO approving block {"height": 5379, "hash": "4cab6504c1a4a1c49e3bd853e4b802e31d71cc8bf0595edfdfb2275bcf03bc9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f17270c126f783f7dd524454c35655f0ee0f7d4355d26bbcc8cd92f42ad7d57e"} -2023-12-15T23:35:17.851Z INFO initializing dbft {"height": 5380, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:17.852Z debug frostfs-node/morph.go:229 new block {"index": 5379} -2023-12-15T23:35:17.967Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5379, "blockHeight": 5379, "took": "5.197203ms"} -2023-12-15T23:35:18.851Z INFO sending PrepareRequest {"height": 5380, "view": 0} -2023-12-15T23:35:18.852Z INFO sending Commit {"height": 5380, "view": 0} -2023-12-15T23:35:18.852Z INFO approving block {"height": 5380, "hash": "2d32aefc14b168a787587c5f871e6dc07c41a734598b2812853c16c510ecdfbf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cab6504c1a4a1c49e3bd853e4b802e31d71cc8bf0595edfdfb2275bcf03bc9c"} -2023-12-15T23:35:18.854Z INFO initializing dbft {"height": 5381, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:18.855Z debug frostfs-node/morph.go:229 new block {"index": 5380} -2023-12-15T23:35:18.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5380, "blockHeight": 5380, "took": "6.026812ms"} -2023-12-15T23:35:19.854Z INFO sending PrepareRequest {"height": 5381, "view": 0} -2023-12-15T23:35:19.854Z INFO sending Commit {"height": 5381, "view": 0} -2023-12-15T23:35:19.854Z INFO approving block {"height": 5381, "hash": "cc7f52b54663e21b9b8eff2636d4bc32d8d9eb8ab87d717c02ccb24208856ff6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d32aefc14b168a787587c5f871e6dc07c41a734598b2812853c16c510ecdfbf"} -2023-12-15T23:35:19.856Z INFO initializing dbft {"height": 5382, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:19.857Z debug frostfs-node/morph.go:229 new block {"index": 5381} -2023-12-15T23:35:19.969Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5381, "blockHeight": 5381, "took": "6.065186ms"} -2023-12-15T23:35:20.856Z INFO sending PrepareRequest {"height": 5382, "view": 0} -2023-12-15T23:35:20.856Z INFO sending Commit {"height": 5382, "view": 0} -2023-12-15T23:35:20.856Z INFO approving block {"height": 5382, "hash": "5617506b623cfc25ad10c09842610a2b48a785492053bb6dda7d0fd12d62efe8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc7f52b54663e21b9b8eff2636d4bc32d8d9eb8ab87d717c02ccb24208856ff6"} -2023-12-15T23:35:20.858Z INFO initializing dbft {"height": 5383, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:20.859Z debug frostfs-node/morph.go:229 new block {"index": 5382} -2023-12-15T23:35:20.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5382, "blockHeight": 5382, "took": "5.885043ms"} -2023-12-15T23:35:21.857Z INFO sending PrepareRequest {"height": 5383, "view": 0} -2023-12-15T23:35:21.858Z INFO sending Commit {"height": 5383, "view": 0} -2023-12-15T23:35:21.858Z INFO approving block {"height": 5383, "hash": "88ca66d8e6116fdd3b1d75924e2976694e2930e75438f2a78f88c73a8cd58e69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5617506b623cfc25ad10c09842610a2b48a785492053bb6dda7d0fd12d62efe8"} -2023-12-15T23:35:21.860Z INFO initializing dbft {"height": 5384, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:21.861Z debug frostfs-node/morph.go:229 new block {"index": 5383} -2023-12-15T23:35:21.971Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5383, "blockHeight": 5383, "took": "6.11135ms"} -2023-12-15T23:35:22.859Z INFO sending PrepareRequest {"height": 5384, "view": 0} -2023-12-15T23:35:22.859Z INFO sending Commit {"height": 5384, "view": 0} -2023-12-15T23:35:22.860Z INFO approving block {"height": 5384, "hash": "d371379d85f0008662c8cbade4cdb0818d3cf36095853e5cb08cfe17cf7094fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88ca66d8e6116fdd3b1d75924e2976694e2930e75438f2a78f88c73a8cd58e69"} -2023-12-15T23:35:22.861Z INFO initializing dbft {"height": 5385, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:22.862Z debug frostfs-node/morph.go:229 new block {"index": 5384} -2023-12-15T23:35:22.972Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5384, "blockHeight": 5384, "took": "6.276003ms"} -2023-12-15T23:35:23.861Z INFO sending PrepareRequest {"height": 5385, "view": 0} -2023-12-15T23:35:23.862Z INFO sending Commit {"height": 5385, "view": 0} -2023-12-15T23:35:23.862Z INFO approving block {"height": 5385, "hash": "06e986e15137edc8f3f705b168362c2b1d7bba6274db6ae0e19db7e47423b1a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d371379d85f0008662c8cbade4cdb0818d3cf36095853e5cb08cfe17cf7094fb"} -2023-12-15T23:35:23.863Z INFO initializing dbft {"height": 5386, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:23.864Z debug frostfs-node/morph.go:229 new block {"index": 5385} -2023-12-15T23:35:23.972Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5385, "blockHeight": 5385, "took": "5.901433ms"} -2023-12-15T23:35:24.863Z INFO sending PrepareRequest {"height": 5386, "view": 0} -2023-12-15T23:35:24.863Z INFO sending Commit {"height": 5386, "view": 0} -2023-12-15T23:35:24.863Z INFO approving block {"height": 5386, "hash": "7abaa9eddfa9e6f6274474e72badd30fb5322ae5a42f36d484169a1e9b4d1875", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06e986e15137edc8f3f705b168362c2b1d7bba6274db6ae0e19db7e47423b1a4"} -2023-12-15T23:35:24.865Z INFO initializing dbft {"height": 5387, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:24.866Z debug frostfs-node/morph.go:229 new block {"index": 5386} -2023-12-15T23:35:24.973Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5386, "blockHeight": 5386, "took": "6.392038ms"} -2023-12-15T23:35:25.865Z INFO sending PrepareRequest {"height": 5387, "view": 0} -2023-12-15T23:35:25.865Z INFO sending Commit {"height": 5387, "view": 0} -2023-12-15T23:35:25.865Z INFO approving block {"height": 5387, "hash": "26001aa7ab357a59d7c544e9a68b44775a758b7cb40a2cb3bd91c2c5e89b41d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7abaa9eddfa9e6f6274474e72badd30fb5322ae5a42f36d484169a1e9b4d1875"} -2023-12-15T23:35:25.867Z INFO initializing dbft {"height": 5388, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:25.868Z debug frostfs-node/morph.go:229 new block {"index": 5387} -2023-12-15T23:35:25.973Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5387, "blockHeight": 5387, "took": "6.023858ms"} -2023-12-15T23:35:26.867Z INFO sending PrepareRequest {"height": 5388, "view": 0} -2023-12-15T23:35:26.867Z INFO sending Commit {"height": 5388, "view": 0} -2023-12-15T23:35:26.868Z INFO approving block {"height": 5388, "hash": "b6727ec0337c5039a1c7aa59c16786fbb3742fea2deddd850b6fccc993ef7896", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26001aa7ab357a59d7c544e9a68b44775a758b7cb40a2cb3bd91c2c5e89b41d2"} -2023-12-15T23:35:26.869Z INFO initializing dbft {"height": 5389, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:26.870Z debug frostfs-node/morph.go:229 new block {"index": 5388} -2023-12-15T23:35:26.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5388, "blockHeight": 5388, "took": "6.493821ms"} -2023-12-15T23:35:27.869Z INFO sending PrepareRequest {"height": 5389, "view": 0} -2023-12-15T23:35:27.869Z INFO sending Commit {"height": 5389, "view": 0} -2023-12-15T23:35:27.870Z INFO approving block {"height": 5389, "hash": "0a0ca3c7193e6e19ab89ac4cfa84e7613542a5cc2adc912d2f80eae41b5fe5ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6727ec0337c5039a1c7aa59c16786fbb3742fea2deddd850b6fccc993ef7896"} -2023-12-15T23:35:27.872Z INFO initializing dbft {"height": 5390, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:27.872Z debug frostfs-node/morph.go:229 new block {"index": 5389} -2023-12-15T23:35:27.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5389, "blockHeight": 5389, "took": "6.353875ms"} -2023-12-15T23:35:28.871Z INFO sending PrepareRequest {"height": 5390, "view": 0} -2023-12-15T23:35:28.871Z INFO sending Commit {"height": 5390, "view": 0} -2023-12-15T23:35:28.871Z INFO approving block {"height": 5390, "hash": "f744e9cc4a411d27f66a84352e2e8de020cfba18d9c9d34c5353f9d7638f0caf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a0ca3c7193e6e19ab89ac4cfa84e7613542a5cc2adc912d2f80eae41b5fe5ea"} -2023-12-15T23:35:28.873Z INFO initializing dbft {"height": 5391, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:28.873Z debug frostfs-node/morph.go:229 new block {"index": 5390} -2023-12-15T23:35:28.976Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5390, "blockHeight": 5390, "took": "6.397858ms"} -2023-12-15T23:35:29.873Z INFO sending PrepareRequest {"height": 5391, "view": 0} -2023-12-15T23:35:29.873Z INFO sending Commit {"height": 5391, "view": 0} -2023-12-15T23:35:29.874Z INFO approving block {"height": 5391, "hash": "8df055592f3c4f65159c4ec8ba0e201ab37e14af00fe3ba20c9e91bf7a8fe821", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f744e9cc4a411d27f66a84352e2e8de020cfba18d9c9d34c5353f9d7638f0caf"} -2023-12-15T23:35:29.875Z INFO initializing dbft {"height": 5392, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:29.876Z debug frostfs-node/morph.go:229 new block {"index": 5391} -2023-12-15T23:35:29.976Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5391, "blockHeight": 5391, "took": "5.662836ms"} -2023-12-15T23:35:30.875Z INFO sending PrepareRequest {"height": 5392, "view": 0} -2023-12-15T23:35:30.876Z INFO sending Commit {"height": 5392, "view": 0} -2023-12-15T23:35:30.876Z INFO approving block {"height": 5392, "hash": "5cfd984df42823e701ee40fbd0044c401461a63e09c4aad0ba583c169b5d28c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8df055592f3c4f65159c4ec8ba0e201ab37e14af00fe3ba20c9e91bf7a8fe821"} -2023-12-15T23:35:30.878Z INFO initializing dbft {"height": 5393, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:30.878Z debug frostfs-node/morph.go:229 new block {"index": 5392} -2023-12-15T23:35:30.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5392, "blockHeight": 5392, "took": "7.863211ms"} -2023-12-15T23:35:31.877Z INFO sending PrepareRequest {"height": 5393, "view": 0} -2023-12-15T23:35:31.878Z INFO sending Commit {"height": 5393, "view": 0} -2023-12-15T23:35:31.878Z INFO approving block {"height": 5393, "hash": "dadaf25d01e210b1eb3b7a7c82815cb0d11054d3909c4d7323691d95ba01df22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cfd984df42823e701ee40fbd0044c401461a63e09c4aad0ba583c169b5d28c0"} -2023-12-15T23:35:31.880Z INFO initializing dbft {"height": 5394, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:31.881Z debug frostfs-node/morph.go:229 new block {"index": 5393} -2023-12-15T23:35:31.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5393, "blockHeight": 5393, "took": "10.058765ms"} -2023-12-15T23:35:32.880Z INFO sending PrepareRequest {"height": 5394, "view": 0} -2023-12-15T23:35:32.880Z INFO sending Commit {"height": 5394, "view": 0} -2023-12-15T23:35:32.881Z INFO approving block {"height": 5394, "hash": "19b0a6379e607a58823532b516182e0a5f2c8958294d6c208f6b83290c8d000b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dadaf25d01e210b1eb3b7a7c82815cb0d11054d3909c4d7323691d95ba01df22"} -2023-12-15T23:35:32.882Z INFO initializing dbft {"height": 5395, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:32.883Z debug frostfs-node/morph.go:229 new block {"index": 5394} -2023-12-15T23:35:32.979Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5394, "blockHeight": 5394, "took": "6.926202ms"} -2023-12-15T23:35:33.882Z INFO sending PrepareRequest {"height": 5395, "view": 0} -2023-12-15T23:35:33.882Z INFO sending Commit {"height": 5395, "view": 0} -2023-12-15T23:35:33.883Z INFO approving block {"height": 5395, "hash": "1c4c01a97df10ada5cd185def71cd81a333a4f0f96f6f34745e746bc9d208147", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19b0a6379e607a58823532b516182e0a5f2c8958294d6c208f6b83290c8d000b"} -2023-12-15T23:35:33.884Z INFO initializing dbft {"height": 5396, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:33.885Z debug frostfs-node/morph.go:229 new block {"index": 5395} -2023-12-15T23:35:33.980Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5395, "blockHeight": 5395, "took": "6.340064ms"} -2023-12-15T23:35:34.885Z INFO sending PrepareRequest {"height": 5396, "view": 0} -2023-12-15T23:35:34.885Z INFO sending Commit {"height": 5396, "view": 0} -2023-12-15T23:35:34.885Z INFO approving block {"height": 5396, "hash": "72a9a1686830d60865f60caece58cf56d530eccbeea8e5f9a9698df0b345ae68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c4c01a97df10ada5cd185def71cd81a333a4f0f96f6f34745e746bc9d208147"} -2023-12-15T23:35:34.887Z INFO initializing dbft {"height": 5397, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:34.888Z debug frostfs-node/morph.go:229 new block {"index": 5396} -2023-12-15T23:35:34.980Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5396, "blockHeight": 5396, "took": "5.764328ms"} -2023-12-15T23:35:35.887Z INFO sending PrepareRequest {"height": 5397, "view": 0} -2023-12-15T23:35:35.887Z INFO sending Commit {"height": 5397, "view": 0} -2023-12-15T23:35:35.888Z INFO approving block {"height": 5397, "hash": "d8eb23fbeed14f3461d6a28870d2d497144f57c3fe76943f29332230865f4690", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72a9a1686830d60865f60caece58cf56d530eccbeea8e5f9a9698df0b345ae68"} -2023-12-15T23:35:35.889Z INFO initializing dbft {"height": 5398, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:35.890Z debug frostfs-node/morph.go:229 new block {"index": 5397} -2023-12-15T23:35:35.983Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5397, "blockHeight": 5397, "took": "8.985682ms"} -2023-12-15T23:35:36.889Z INFO sending PrepareRequest {"height": 5398, "view": 0} -2023-12-15T23:35:36.890Z INFO sending Commit {"height": 5398, "view": 0} -2023-12-15T23:35:36.890Z INFO approving block {"height": 5398, "hash": "05ccf4c3ec769e4d0277d69bb15210aed23827ff399d669623cdc2f6a1f0496a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8eb23fbeed14f3461d6a28870d2d497144f57c3fe76943f29332230865f4690"} -2023-12-15T23:35:36.892Z INFO initializing dbft {"height": 5399, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:36.892Z debug frostfs-node/morph.go:229 new block {"index": 5398} -2023-12-15T23:35:36.981Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5398, "blockHeight": 5398, "took": "5.989254ms"} -2023-12-15T23:35:37.891Z INFO sending PrepareRequest {"height": 5399, "view": 0} -2023-12-15T23:35:37.892Z INFO sending Commit {"height": 5399, "view": 0} -2023-12-15T23:35:37.892Z INFO approving block {"height": 5399, "hash": "eb1ed9f5ba9e4cd44e9da769de5d7b7b24596c5ccd691a8078fd16b3ceb81b0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05ccf4c3ec769e4d0277d69bb15210aed23827ff399d669623cdc2f6a1f0496a"} -2023-12-15T23:35:37.894Z INFO initializing dbft {"height": 5400, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:37.894Z debug frostfs-node/morph.go:229 new block {"index": 5399} -2023-12-15T23:35:37.985Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5399, "blockHeight": 5399, "took": "9.146247ms"} -2023-12-15T23:35:38.893Z INFO sending PrepareRequest {"height": 5400, "view": 0} -2023-12-15T23:35:38.893Z INFO sending Commit {"height": 5400, "view": 0} -2023-12-15T23:35:38.893Z INFO approving block {"height": 5400, "hash": "1bc7f98395125efa58ecd6274c667d92d45797264e2ad55473e0e38e00b1f8fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb1ed9f5ba9e4cd44e9da769de5d7b7b24596c5ccd691a8078fd16b3ceb81b0a"} -2023-12-15T23:35:38.895Z INFO initializing dbft {"height": 5401, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:38.896Z debug frostfs-node/morph.go:229 new block {"index": 5400} -2023-12-15T23:35:38.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5400, "blockHeight": 5400, "took": "9.237229ms"} -2023-12-15T23:35:39.894Z INFO sending PrepareRequest {"height": 5401, "view": 0} -2023-12-15T23:35:39.895Z INFO sending Commit {"height": 5401, "view": 0} -2023-12-15T23:35:39.895Z INFO approving block {"height": 5401, "hash": "42fe203753940ee0d85c3ce14b73e4ccacc4cacdc9f27c2f1f581f0e02d32307", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bc7f98395125efa58ecd6274c667d92d45797264e2ad55473e0e38e00b1f8fd"} -2023-12-15T23:35:39.897Z INFO initializing dbft {"height": 5402, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:39.898Z debug frostfs-node/morph.go:229 new block {"index": 5401} -2023-12-15T23:35:39.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5401, "blockHeight": 5401, "took": "8.904819ms"} -2023-12-15T23:35:40.897Z INFO sending PrepareRequest {"height": 5402, "view": 0} -2023-12-15T23:35:40.897Z INFO sending Commit {"height": 5402, "view": 0} -2023-12-15T23:35:40.897Z INFO approving block {"height": 5402, "hash": "f076065210c6a9602fb3ee7b4f3a31dc3b499481cbbeab17992c5d62ba922c0c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42fe203753940ee0d85c3ce14b73e4ccacc4cacdc9f27c2f1f581f0e02d32307"} -2023-12-15T23:35:40.899Z INFO initializing dbft {"height": 5403, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:40.899Z debug frostfs-node/morph.go:229 new block {"index": 5402} -2023-12-15T23:35:40.985Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5402, "blockHeight": 5402, "took": "5.897281ms"} -2023-12-15T23:35:41.898Z INFO sending PrepareRequest {"height": 5403, "view": 0} -2023-12-15T23:35:41.898Z INFO sending Commit {"height": 5403, "view": 0} -2023-12-15T23:35:41.899Z INFO approving block {"height": 5403, "hash": "06854351341dedf6d77c1708f4b341f5f1b2c5ea3fa8cf73f74ec85bc552fd17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f076065210c6a9602fb3ee7b4f3a31dc3b499481cbbeab17992c5d62ba922c0c"} -2023-12-15T23:35:41.900Z INFO initializing dbft {"height": 5404, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:41.901Z debug frostfs-node/morph.go:229 new block {"index": 5403} -2023-12-15T23:35:41.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5403, "blockHeight": 5403, "took": "6.315955ms"} -2023-12-15T23:35:42.901Z INFO sending PrepareRequest {"height": 5404, "view": 0} -2023-12-15T23:35:42.901Z INFO sending Commit {"height": 5404, "view": 0} -2023-12-15T23:35:42.902Z INFO approving block {"height": 5404, "hash": "4f29f5b75df545b221f114ff7f642a1a7b420a1ee9f5de75797e79c89fcfac25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06854351341dedf6d77c1708f4b341f5f1b2c5ea3fa8cf73f74ec85bc552fd17"} -2023-12-15T23:35:42.903Z INFO initializing dbft {"height": 5405, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:42.904Z debug frostfs-node/morph.go:229 new block {"index": 5404} -2023-12-15T23:35:42.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5404, "blockHeight": 5404, "took": "6.326476ms"} -2023-12-15T23:35:43.903Z INFO sending PrepareRequest {"height": 5405, "view": 0} -2023-12-15T23:35:43.903Z INFO sending Commit {"height": 5405, "view": 0} -2023-12-15T23:35:43.903Z INFO approving block {"height": 5405, "hash": "bc53785b78b72c878445b183312e82ec8807025c0a33313e73c91dae27c395e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f29f5b75df545b221f114ff7f642a1a7b420a1ee9f5de75797e79c89fcfac25"} -2023-12-15T23:35:43.905Z INFO initializing dbft {"height": 5406, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:43.906Z debug frostfs-node/morph.go:229 new block {"index": 5405} -2023-12-15T23:35:43.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5405, "blockHeight": 5405, "took": "6.076168ms"} -2023-12-15T23:35:44.905Z INFO sending PrepareRequest {"height": 5406, "view": 0} -2023-12-15T23:35:44.905Z INFO sending Commit {"height": 5406, "view": 0} -2023-12-15T23:35:44.906Z INFO approving block {"height": 5406, "hash": "6fd2f8fbd16d514ad01868782aa50e7049634f95ca19390b2f4530b43f96df19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc53785b78b72c878445b183312e82ec8807025c0a33313e73c91dae27c395e2"} -2023-12-15T23:35:44.907Z INFO initializing dbft {"height": 5407, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:44.908Z debug frostfs-node/morph.go:229 new block {"index": 5406} -2023-12-15T23:35:44.989Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5406, "blockHeight": 5406, "took": "6.274165ms"} -2023-12-15T23:35:45.906Z INFO sending PrepareRequest {"height": 5407, "view": 0} -2023-12-15T23:35:45.907Z INFO sending Commit {"height": 5407, "view": 0} -2023-12-15T23:35:45.907Z INFO approving block {"height": 5407, "hash": "4e93cddbabbc3e1d1f55d5ec6b519d7a592b3613646d45708a854ba9fc9e0a5f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fd2f8fbd16d514ad01868782aa50e7049634f95ca19390b2f4530b43f96df19"} -2023-12-15T23:35:45.908Z INFO initializing dbft {"height": 5408, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:45.909Z debug frostfs-node/morph.go:229 new block {"index": 5407} -2023-12-15T23:35:45.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5407, "blockHeight": 5407, "took": "9.261302ms"} -2023-12-15T23:35:46.909Z INFO sending PrepareRequest {"height": 5408, "view": 0} -2023-12-15T23:35:46.909Z INFO sending Commit {"height": 5408, "view": 0} -2023-12-15T23:35:46.910Z INFO approving block {"height": 5408, "hash": "8497dd7b2bb596d129ec3d3e14223ab772007be30204d1eb00533e1501b0b291", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e93cddbabbc3e1d1f55d5ec6b519d7a592b3613646d45708a854ba9fc9e0a5f"} -2023-12-15T23:35:46.911Z INFO initializing dbft {"height": 5409, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:46.912Z debug frostfs-node/morph.go:229 new block {"index": 5408} -2023-12-15T23:35:46.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5408, "blockHeight": 5408, "took": "8.720926ms"} -2023-12-15T23:35:47.911Z INFO sending PrepareRequest {"height": 5409, "view": 0} -2023-12-15T23:35:47.911Z INFO sending Commit {"height": 5409, "view": 0} -2023-12-15T23:35:47.912Z INFO approving block {"height": 5409, "hash": "903751457f3204fe935793bffe79e48ad73f469bfd5870591d97e8c2c3583430", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8497dd7b2bb596d129ec3d3e14223ab772007be30204d1eb00533e1501b0b291"} -2023-12-15T23:35:47.916Z INFO initializing dbft {"height": 5410, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:47.917Z debug frostfs-node/morph.go:229 new block {"index": 5409} -2023-12-15T23:35:47.989Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5409, "blockHeight": 5409, "took": "4.81769ms"} -2023-12-15T23:35:48.914Z INFO sending PrepareRequest {"height": 5410, "view": 0} -2023-12-15T23:35:48.914Z INFO sending Commit {"height": 5410, "view": 0} -2023-12-15T23:35:48.914Z INFO approving block {"height": 5410, "hash": "a5b8a786cd904e1849fcccff98516a6a36c2bad4c1f3f039bcad8b6467d5e415", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "903751457f3204fe935793bffe79e48ad73f469bfd5870591d97e8c2c3583430"} -2023-12-15T23:35:48.916Z INFO initializing dbft {"height": 5411, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:48.917Z debug frostfs-node/morph.go:229 new block {"index": 5410} -2023-12-15T23:35:48.990Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5410, "blockHeight": 5410, "took": "4.854402ms"} -2023-12-15T23:35:49.916Z INFO sending PrepareRequest {"height": 5411, "view": 0} -2023-12-15T23:35:49.916Z INFO sending Commit {"height": 5411, "view": 0} -2023-12-15T23:35:49.916Z INFO approving block {"height": 5411, "hash": "a6174a9b289826c391d35287e1a254811e682ed3f00ba2581409131a9c19169b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5b8a786cd904e1849fcccff98516a6a36c2bad4c1f3f039bcad8b6467d5e415"} -2023-12-15T23:35:49.918Z INFO initializing dbft {"height": 5412, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:49.919Z debug frostfs-node/morph.go:229 new block {"index": 5411} -2023-12-15T23:35:49.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5411, "blockHeight": 5411, "took": "10.355771ms"} -2023-12-15T23:35:50.918Z INFO sending PrepareRequest {"height": 5412, "view": 0} -2023-12-15T23:35:50.918Z INFO sending Commit {"height": 5412, "view": 0} -2023-12-15T23:35:50.918Z INFO approving block {"height": 5412, "hash": "b7718bda3a1e62bbea813cd25cb74499f3fe571759d1b1469bfbd30a51892482", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6174a9b289826c391d35287e1a254811e682ed3f00ba2581409131a9c19169b"} -2023-12-15T23:35:50.920Z INFO initializing dbft {"height": 5413, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:50.921Z debug frostfs-node/morph.go:229 new block {"index": 5412} -2023-12-15T23:35:50.993Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5412, "blockHeight": 5412, "took": "6.142397ms"} -2023-12-15T23:35:51.919Z INFO sending PrepareRequest {"height": 5413, "view": 0} -2023-12-15T23:35:51.920Z INFO sending Commit {"height": 5413, "view": 0} -2023-12-15T23:35:51.920Z INFO approving block {"height": 5413, "hash": "5889ed8c529de179245639e7c9f4fa0d56eb29534891941d6d6b355dd8aa209b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7718bda3a1e62bbea813cd25cb74499f3fe571759d1b1469bfbd30a51892482"} -2023-12-15T23:35:51.922Z INFO initializing dbft {"height": 5414, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:51.922Z debug frostfs-node/morph.go:229 new block {"index": 5413} -2023-12-15T23:35:51.998Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5413, "blockHeight": 5413, "took": "10.272323ms"} -2023-12-15T23:35:52.921Z INFO sending PrepareRequest {"height": 5414, "view": 0} -2023-12-15T23:35:52.921Z INFO sending Commit {"height": 5414, "view": 0} -2023-12-15T23:35:52.922Z INFO approving block {"height": 5414, "hash": "758ee98b6101c91098ad3cd94c3ba3b8bcd17973f75c39e7c773f91e1df0fa55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5889ed8c529de179245639e7c9f4fa0d56eb29534891941d6d6b355dd8aa209b"} -2023-12-15T23:35:52.923Z INFO initializing dbft {"height": 5415, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:52.924Z debug frostfs-node/morph.go:229 new block {"index": 5414} -2023-12-15T23:35:52.994Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5414, "blockHeight": 5414, "took": "6.755216ms"} -2023-12-15T23:35:53.923Z INFO sending PrepareRequest {"height": 5415, "view": 0} -2023-12-15T23:35:53.923Z INFO sending Commit {"height": 5415, "view": 0} -2023-12-15T23:35:53.923Z INFO approving block {"height": 5415, "hash": "78590f041aa9fa37c12b98a602ea3e4ae1dbcd380b7943a4c05661bf07b91096", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "758ee98b6101c91098ad3cd94c3ba3b8bcd17973f75c39e7c773f91e1df0fa55"} -2023-12-15T23:35:53.925Z INFO initializing dbft {"height": 5416, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:53.925Z debug frostfs-node/morph.go:229 new block {"index": 5415} -2023-12-15T23:35:53.997Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5415, "blockHeight": 5415, "took": "8.614548ms"} -2023-12-15T23:35:54.924Z INFO sending PrepareRequest {"height": 5416, "view": 0} -2023-12-15T23:35:54.925Z INFO sending Commit {"height": 5416, "view": 0} -2023-12-15T23:35:54.925Z INFO approving block {"height": 5416, "hash": "db7aa9b4a03d625d5852e1e75d129c4ef08a085912ff3e5a40f7debc20fd41cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78590f041aa9fa37c12b98a602ea3e4ae1dbcd380b7943a4c05661bf07b91096"} -2023-12-15T23:35:54.926Z INFO initializing dbft {"height": 5417, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:54.927Z debug frostfs-node/morph.go:229 new block {"index": 5416} -2023-12-15T23:35:54.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5416, "blockHeight": 5416, "took": "6.103796ms"} -2023-12-15T23:35:55.927Z INFO sending PrepareRequest {"height": 5417, "view": 0} -2023-12-15T23:35:55.927Z INFO sending Commit {"height": 5417, "view": 0} -2023-12-15T23:35:55.927Z INFO approving block {"height": 5417, "hash": "a1615b52f1bf2faeb056f26ae921c28a2dc1d0e645b29c6232ecbdf62dd067cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db7aa9b4a03d625d5852e1e75d129c4ef08a085912ff3e5a40f7debc20fd41cd"} -2023-12-15T23:35:55.929Z INFO initializing dbft {"height": 5418, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:55.930Z debug frostfs-node/morph.go:229 new block {"index": 5417} -2023-12-15T23:35:55.933Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:35:55.938Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:35:55.938Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:35:55.997Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5417, "blockHeight": 5417, "took": "5.920843ms"} -2023-12-15T23:35:56.929Z INFO sending PrepareRequest {"height": 5418, "view": 0} -2023-12-15T23:35:56.929Z INFO sending Commit {"height": 5418, "view": 0} -2023-12-15T23:35:56.929Z INFO approving block {"height": 5418, "hash": "5911c23d9c5cb062f7092156ea0b3ca855d0b1a5e71b0c41cf180335bf5c4758", "tx_count": 2, "merkle": "67e0c4f73a566957c06d7d101d95bf5be784e7445a7359ab475783b1b3649a0a", "prev": "a1615b52f1bf2faeb056f26ae921c28a2dc1d0e645b29c6232ecbdf62dd067cb"} -2023-12-15T23:35:56.931Z INFO runtime log {"tx": "06941fd406d33877f9ba05dd7f60fc71b9b4ddd62f22d54a878d8062c0a569e6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:35:56.931Z INFO runtime log {"tx": "06941fd406d33877f9ba05dd7f60fc71b9b4ddd62f22d54a878d8062c0a569e6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:35:56.932Z INFO initializing dbft {"height": 5419, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:56.934Z debug frostfs-node/morph.go:229 new block {"index": 5418} -2023-12-15T23:35:57.002Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5418, "blockHeight": 5418, "took": "10.94939ms"} -2023-12-15T23:35:57.930Z INFO sending PrepareRequest {"height": 5419, "view": 0} -2023-12-15T23:35:57.931Z INFO sending Commit {"height": 5419, "view": 0} -2023-12-15T23:35:57.931Z INFO approving block {"height": 5419, "hash": "9da5f90981b600d1cdecf6d8b0d58a9571652fc27ad0c6f402022ce92fc98b4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5911c23d9c5cb062f7092156ea0b3ca855d0b1a5e71b0c41cf180335bf5c4758"} -2023-12-15T23:35:57.932Z INFO initializing dbft {"height": 5420, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:57.933Z debug frostfs-node/morph.go:229 new block {"index": 5419} -2023-12-15T23:35:57.998Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5419, "blockHeight": 5419, "took": "6.316075ms"} -2023-12-15T23:35:58.933Z INFO sending PrepareRequest {"height": 5420, "view": 0} -2023-12-15T23:35:58.933Z INFO sending Commit {"height": 5420, "view": 0} -2023-12-15T23:35:58.933Z INFO approving block {"height": 5420, "hash": "1dad93dc3472d747cadd9e015a1634c8e167fda2997e58970ff35548cb4eb1f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9da5f90981b600d1cdecf6d8b0d58a9571652fc27ad0c6f402022ce92fc98b4e"} -2023-12-15T23:35:58.935Z INFO initializing dbft {"height": 5421, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:58.936Z debug frostfs-node/morph.go:229 new block {"index": 5420} -2023-12-15T23:35:59.000Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5420, "blockHeight": 5420, "took": "6.768587ms"} -2023-12-15T23:35:59.935Z INFO sending PrepareRequest {"height": 5421, "view": 0} -2023-12-15T23:35:59.935Z INFO sending Commit {"height": 5421, "view": 0} -2023-12-15T23:35:59.935Z INFO approving block {"height": 5421, "hash": "7fb4b5cadf8f6e100268d50a8b867df3d6eda7088380355bc5efe472e807880e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1dad93dc3472d747cadd9e015a1634c8e167fda2997e58970ff35548cb4eb1f3"} -2023-12-15T23:35:59.937Z INFO initializing dbft {"height": 5422, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:35:59.938Z debug frostfs-node/morph.go:229 new block {"index": 5421} -2023-12-15T23:35:59.999Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5421, "blockHeight": 5421, "took": "6.134119ms"} -2023-12-15T23:36:00.937Z INFO sending PrepareRequest {"height": 5422, "view": 0} -2023-12-15T23:36:00.937Z INFO sending Commit {"height": 5422, "view": 0} -2023-12-15T23:36:00.938Z INFO approving block {"height": 5422, "hash": "083eef9c3535d9fe74af25505161e37f820b5b84f9d1539036ef8f272825caec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fb4b5cadf8f6e100268d50a8b867df3d6eda7088380355bc5efe472e807880e"} -2023-12-15T23:36:00.939Z INFO initializing dbft {"height": 5423, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:00.940Z debug frostfs-node/morph.go:229 new block {"index": 5422} -2023-12-15T23:36:00.943Z info settlement/calls.go:61 start basic income collection {"epoch": 23} -2023-12-15T23:36:00.945Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 23, "iteration": 1, "error": "no data for 0 iteration in 23 epoch for consumers's trusts"} -2023-12-15T23:36:01.001Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5422, "blockHeight": 5422, "took": "6.429779ms"} -2023-12-15T23:36:01.939Z INFO sending PrepareRequest {"height": 5423, "view": 0} -2023-12-15T23:36:01.939Z INFO sending Commit {"height": 5423, "view": 0} -2023-12-15T23:36:01.940Z INFO approving block {"height": 5423, "hash": "382e9f7f2dd3fd197a5de4a4b308f419941f7f6b0c61afacb7f7ae90ad0090ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "083eef9c3535d9fe74af25505161e37f820b5b84f9d1539036ef8f272825caec"} -2023-12-15T23:36:01.941Z INFO initializing dbft {"height": 5424, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:01.942Z debug frostfs-node/morph.go:229 new block {"index": 5423} -2023-12-15T23:36:02.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5423, "blockHeight": 5423, "took": "8.061209ms"} -2023-12-15T23:36:02.941Z INFO sending PrepareRequest {"height": 5424, "view": 0} -2023-12-15T23:36:02.941Z INFO sending Commit {"height": 5424, "view": 0} -2023-12-15T23:36:02.942Z INFO approving block {"height": 5424, "hash": "82b7697f384daec660ad49cadc451ec5ddbf324ea60f4fe14f7f668a0badfccd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "382e9f7f2dd3fd197a5de4a4b308f419941f7f6b0c61afacb7f7ae90ad0090ec"} -2023-12-15T23:36:02.944Z INFO initializing dbft {"height": 5425, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:02.944Z debug frostfs-node/morph.go:229 new block {"index": 5424} -2023-12-15T23:36:03.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5424, "blockHeight": 5424, "took": "6.280654ms"} -2023-12-15T23:36:03.943Z INFO sending PrepareRequest {"height": 5425, "view": 0} -2023-12-15T23:36:03.943Z INFO sending Commit {"height": 5425, "view": 0} -2023-12-15T23:36:03.943Z INFO approving block {"height": 5425, "hash": "e4cf7fd87a35a6f8fc437d9fcec9c7ce94fe8c4840dd0e330b305b32d299d559", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82b7697f384daec660ad49cadc451ec5ddbf324ea60f4fe14f7f668a0badfccd"} -2023-12-15T23:36:03.945Z INFO initializing dbft {"height": 5426, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:03.945Z debug frostfs-node/morph.go:229 new block {"index": 5425} -2023-12-15T23:36:04.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5425, "blockHeight": 5425, "took": "5.694376ms"} -2023-12-15T23:36:04.944Z INFO sending PrepareRequest {"height": 5426, "view": 0} -2023-12-15T23:36:04.944Z INFO sending Commit {"height": 5426, "view": 0} -2023-12-15T23:36:04.945Z INFO approving block {"height": 5426, "hash": "fc1a9c6f8f34ff7e785b292472ad4dd5f86f24aa172433f7ca588c71be4cba7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4cf7fd87a35a6f8fc437d9fcec9c7ce94fe8c4840dd0e330b305b32d299d559"} -2023-12-15T23:36:04.946Z INFO initializing dbft {"height": 5427, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:04.949Z debug frostfs-node/morph.go:229 new block {"index": 5426} -2023-12-15T23:36:05.005Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5426, "blockHeight": 5426, "took": "6.935759ms"} -2023-12-15T23:36:05.946Z INFO sending PrepareRequest {"height": 5427, "view": 0} -2023-12-15T23:36:05.946Z INFO sending Commit {"height": 5427, "view": 0} -2023-12-15T23:36:05.946Z INFO approving block {"height": 5427, "hash": "9efa8778b4cd071eb36ebed76876f60f85c77204c4e65d166cdfd70f0a8514b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc1a9c6f8f34ff7e785b292472ad4dd5f86f24aa172433f7ca588c71be4cba7a"} -2023-12-15T23:36:05.947Z INFO initializing dbft {"height": 5428, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:05.947Z debug frostfs-node/morph.go:229 new block {"index": 5427} -2023-12-15T23:36:06.002Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5427, "blockHeight": 5427, "took": "3.164132ms"} -2023-12-15T23:36:06.948Z INFO sending PrepareRequest {"height": 5428, "view": 0} -2023-12-15T23:36:06.948Z INFO sending Commit {"height": 5428, "view": 0} -2023-12-15T23:36:06.948Z INFO approving block {"height": 5428, "hash": "8fd2a6a10da1f37a2883455006e4652e697edcc1784ad30caab6076cf235175f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9efa8778b4cd071eb36ebed76876f60f85c77204c4e65d166cdfd70f0a8514b5"} -2023-12-15T23:36:06.949Z INFO initializing dbft {"height": 5429, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:06.950Z debug frostfs-node/morph.go:229 new block {"index": 5428} -2023-12-15T23:36:07.007Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5428, "blockHeight": 5428, "took": "6.798125ms"} -2023-12-15T23:36:07.949Z INFO sending PrepareRequest {"height": 5429, "view": 0} -2023-12-15T23:36:07.950Z INFO sending Commit {"height": 5429, "view": 0} -2023-12-15T23:36:07.950Z INFO approving block {"height": 5429, "hash": "ee2eb5135e8c3fc518aaa6ab1316eca7940291f76d36192027d34e902316aead", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fd2a6a10da1f37a2883455006e4652e697edcc1784ad30caab6076cf235175f"} -2023-12-15T23:36:07.951Z INFO initializing dbft {"height": 5430, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:07.952Z debug frostfs-node/morph.go:229 new block {"index": 5429} -2023-12-15T23:36:08.007Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5429, "blockHeight": 5429, "took": "5.48756ms"} -2023-12-15T23:36:08.951Z INFO sending PrepareRequest {"height": 5430, "view": 0} -2023-12-15T23:36:08.952Z INFO sending Commit {"height": 5430, "view": 0} -2023-12-15T23:36:08.952Z INFO approving block {"height": 5430, "hash": "da336db1dc25d1b4df93f1fcc38ce3827948aec3a93c2b28157b3c3efa7987f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee2eb5135e8c3fc518aaa6ab1316eca7940291f76d36192027d34e902316aead"} -2023-12-15T23:36:08.953Z INFO initializing dbft {"height": 5431, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:08.954Z debug frostfs-node/morph.go:229 new block {"index": 5430} -2023-12-15T23:36:09.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5430, "blockHeight": 5430, "took": "6.215771ms"} -2023-12-15T23:36:09.953Z INFO sending PrepareRequest {"height": 5431, "view": 0} -2023-12-15T23:36:09.954Z INFO sending Commit {"height": 5431, "view": 0} -2023-12-15T23:36:09.954Z INFO approving block {"height": 5431, "hash": "d719d92fe9362bbac0f4a0046e9f1915cf469d3922598abeae65a7609f3f9f2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da336db1dc25d1b4df93f1fcc38ce3827948aec3a93c2b28157b3c3efa7987f1"} -2023-12-15T23:36:09.956Z INFO initializing dbft {"height": 5432, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:09.957Z debug frostfs-node/morph.go:229 new block {"index": 5431} -2023-12-15T23:36:10.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5431, "blockHeight": 5431, "took": "5.426458ms"} -2023-12-15T23:36:10.956Z INFO sending PrepareRequest {"height": 5432, "view": 0} -2023-12-15T23:36:10.956Z INFO sending Commit {"height": 5432, "view": 0} -2023-12-15T23:36:10.956Z INFO approving block {"height": 5432, "hash": "6c5dd4ff3b52334280d19c90126a224902d5904d2eead3a2522ee352cf185ef9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d719d92fe9362bbac0f4a0046e9f1915cf469d3922598abeae65a7609f3f9f2f"} -2023-12-15T23:36:10.957Z INFO initializing dbft {"height": 5433, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:10.958Z debug frostfs-node/morph.go:229 new block {"index": 5432} -2023-12-15T23:36:11.010Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5432, "blockHeight": 5432, "took": "5.634774ms"} -2023-12-15T23:36:11.958Z INFO sending PrepareRequest {"height": 5433, "view": 0} -2023-12-15T23:36:11.958Z INFO sending Commit {"height": 5433, "view": 0} -2023-12-15T23:36:11.958Z INFO approving block {"height": 5433, "hash": "f7f6b5764a3e0c1c07b4342ed1841c3f74411331720236b059d59e9b3e521263", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c5dd4ff3b52334280d19c90126a224902d5904d2eead3a2522ee352cf185ef9"} -2023-12-15T23:36:11.960Z INFO initializing dbft {"height": 5434, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:11.961Z debug frostfs-node/morph.go:229 new block {"index": 5433} -2023-12-15T23:36:12.012Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5433, "blockHeight": 5433, "took": "6.531611ms"} -2023-12-15T23:36:12.959Z INFO sending PrepareRequest {"height": 5434, "view": 0} -2023-12-15T23:36:12.959Z INFO sending Commit {"height": 5434, "view": 0} -2023-12-15T23:36:12.960Z INFO approving block {"height": 5434, "hash": "3c0873a480a58135c07edabf1627d88718c9b319f6d9a030a6662a4de5511fd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7f6b5764a3e0c1c07b4342ed1841c3f74411331720236b059d59e9b3e521263"} -2023-12-15T23:36:12.961Z INFO initializing dbft {"height": 5435, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:12.962Z debug frostfs-node/morph.go:229 new block {"index": 5434} -2023-12-15T23:36:13.013Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5434, "blockHeight": 5434, "took": "6.772709ms"} -2023-12-15T23:36:13.961Z INFO sending PrepareRequest {"height": 5435, "view": 0} -2023-12-15T23:36:13.961Z INFO sending Commit {"height": 5435, "view": 0} -2023-12-15T23:36:13.961Z INFO approving block {"height": 5435, "hash": "61132e057a4a48b53208f44c5ab0d87c29d57fee7d83e7957d25fea289e40ad4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c0873a480a58135c07edabf1627d88718c9b319f6d9a030a6662a4de5511fd6"} -2023-12-15T23:36:13.963Z INFO initializing dbft {"height": 5436, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:13.964Z debug frostfs-node/morph.go:229 new block {"index": 5435} -2023-12-15T23:36:14.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5435, "blockHeight": 5435, "took": "6.304725ms"} -2023-12-15T23:36:14.963Z INFO sending PrepareRequest {"height": 5436, "view": 0} -2023-12-15T23:36:14.963Z INFO sending Commit {"height": 5436, "view": 0} -2023-12-15T23:36:14.963Z INFO approving block {"height": 5436, "hash": "0a6a0a332828885ea895a4bc00ae325322f75523ef87ca16717bfdecb3aa7405", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61132e057a4a48b53208f44c5ab0d87c29d57fee7d83e7957d25fea289e40ad4"} -2023-12-15T23:36:14.965Z INFO initializing dbft {"height": 5437, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:14.966Z debug frostfs-node/morph.go:229 new block {"index": 5436} -2023-12-15T23:36:15.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5436, "blockHeight": 5436, "took": "5.809609ms"} -2023-12-15T23:36:15.965Z INFO sending PrepareRequest {"height": 5437, "view": 0} -2023-12-15T23:36:15.965Z INFO sending Commit {"height": 5437, "view": 0} -2023-12-15T23:36:15.966Z INFO approving block {"height": 5437, "hash": "19e11b3a098d5bd07bd5df8f244d6d688939b4d97ae421c7e0adb916b1378247", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a6a0a332828885ea895a4bc00ae325322f75523ef87ca16717bfdecb3aa7405"} -2023-12-15T23:36:15.967Z INFO initializing dbft {"height": 5438, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:15.968Z debug frostfs-node/morph.go:229 new block {"index": 5437} -2023-12-15T23:36:16.019Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5437, "blockHeight": 5437, "took": "9.863354ms"} -2023-12-15T23:36:16.967Z INFO sending PrepareRequest {"height": 5438, "view": 0} -2023-12-15T23:36:16.967Z INFO sending Commit {"height": 5438, "view": 0} -2023-12-15T23:36:16.968Z INFO approving block {"height": 5438, "hash": "803eaf97d4e6b0e8a078c747f19615bdcd72ff1d73acfb1a788f8e9cf3427c29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19e11b3a098d5bd07bd5df8f244d6d688939b4d97ae421c7e0adb916b1378247"} -2023-12-15T23:36:16.969Z INFO initializing dbft {"height": 5439, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:16.970Z debug frostfs-node/morph.go:229 new block {"index": 5438} -2023-12-15T23:36:17.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5438, "blockHeight": 5438, "took": "7.671125ms"} -2023-12-15T23:36:17.969Z INFO sending PrepareRequest {"height": 5439, "view": 0} -2023-12-15T23:36:17.970Z INFO sending Commit {"height": 5439, "view": 0} -2023-12-15T23:36:17.970Z INFO approving block {"height": 5439, "hash": "b12c37bb710bd2d3a817ebed12fd7f5a155abda73c9485604150cb540ea6305b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "803eaf97d4e6b0e8a078c747f19615bdcd72ff1d73acfb1a788f8e9cf3427c29"} -2023-12-15T23:36:17.972Z INFO initializing dbft {"height": 5440, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:17.972Z debug frostfs-node/morph.go:229 new block {"index": 5439} -2023-12-15T23:36:18.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5439, "blockHeight": 5439, "took": "6.844791ms"} -2023-12-15T23:36:18.971Z INFO sending PrepareRequest {"height": 5440, "view": 0} -2023-12-15T23:36:18.971Z INFO sending Commit {"height": 5440, "view": 0} -2023-12-15T23:36:18.972Z INFO approving block {"height": 5440, "hash": "3196db0c1ce776f96b2f15897c807a0670a37b4cdaf2f108de234e7d2373addc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b12c37bb710bd2d3a817ebed12fd7f5a155abda73c9485604150cb540ea6305b"} -2023-12-15T23:36:18.973Z INFO initializing dbft {"height": 5441, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:18.974Z debug frostfs-node/morph.go:229 new block {"index": 5440} -2023-12-15T23:36:19.022Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5440, "blockHeight": 5440, "took": "9.663242ms"} -2023-12-15T23:36:19.973Z INFO sending PrepareRequest {"height": 5441, "view": 0} -2023-12-15T23:36:19.973Z INFO sending Commit {"height": 5441, "view": 0} -2023-12-15T23:36:19.974Z INFO approving block {"height": 5441, "hash": "15a98be8bfee64906353e1145e7f684a9402fd91361238a75df6d47469f669ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3196db0c1ce776f96b2f15897c807a0670a37b4cdaf2f108de234e7d2373addc"} -2023-12-15T23:36:19.975Z INFO initializing dbft {"height": 5442, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:19.976Z debug frostfs-node/morph.go:229 new block {"index": 5441} -2023-12-15T23:36:20.020Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5441, "blockHeight": 5441, "took": "6.733638ms"} -2023-12-15T23:36:20.975Z INFO sending PrepareRequest {"height": 5442, "view": 0} -2023-12-15T23:36:20.975Z INFO sending Commit {"height": 5442, "view": 0} -2023-12-15T23:36:20.976Z INFO approving block {"height": 5442, "hash": "dbfc1f321d200cf9ab708a2dd8d9929db478ff15ddc3c36d33be65140d625535", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15a98be8bfee64906353e1145e7f684a9402fd91361238a75df6d47469f669ca"} -2023-12-15T23:36:20.978Z INFO initializing dbft {"height": 5443, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:20.979Z debug frostfs-node/morph.go:229 new block {"index": 5442} -2023-12-15T23:36:21.021Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5442, "blockHeight": 5442, "took": "6.58333ms"} -2023-12-15T23:36:21.977Z INFO sending PrepareRequest {"height": 5443, "view": 0} -2023-12-15T23:36:21.977Z INFO sending Commit {"height": 5443, "view": 0} -2023-12-15T23:36:21.978Z INFO approving block {"height": 5443, "hash": "133e31068d71497c724ab65fbd812750e34d1a0b28bbcd60f5e1801820df4c89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbfc1f321d200cf9ab708a2dd8d9929db478ff15ddc3c36d33be65140d625535"} -2023-12-15T23:36:21.980Z INFO initializing dbft {"height": 5444, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:21.981Z debug frostfs-node/morph.go:229 new block {"index": 5443} -2023-12-15T23:36:22.021Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5443, "blockHeight": 5443, "took": "5.687601ms"} -2023-12-15T23:36:22.979Z INFO sending PrepareRequest {"height": 5444, "view": 0} -2023-12-15T23:36:22.979Z INFO sending Commit {"height": 5444, "view": 0} -2023-12-15T23:36:22.980Z INFO approving block {"height": 5444, "hash": "eb58bc5370b2160251c33d34972f6dd264045d55cfecefa3751836df26a2dcf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "133e31068d71497c724ab65fbd812750e34d1a0b28bbcd60f5e1801820df4c89"} -2023-12-15T23:36:22.982Z INFO initializing dbft {"height": 5445, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:22.983Z debug frostfs-node/morph.go:229 new block {"index": 5444} -2023-12-15T23:36:23.027Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5444, "blockHeight": 5444, "took": "11.231235ms"} -2023-12-15T23:36:23.981Z INFO sending PrepareRequest {"height": 5445, "view": 0} -2023-12-15T23:36:23.981Z INFO sending Commit {"height": 5445, "view": 0} -2023-12-15T23:36:23.981Z INFO approving block {"height": 5445, "hash": "310e080ad1e3ef3bbed6e6e8276e1a6ac7ebba8a532215013d05dd540d14bcbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb58bc5370b2160251c33d34972f6dd264045d55cfecefa3751836df26a2dcf3"} -2023-12-15T23:36:23.982Z INFO initializing dbft {"height": 5446, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:23.983Z debug frostfs-node/morph.go:229 new block {"index": 5445} -2023-12-15T23:36:24.024Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5445, "blockHeight": 5445, "took": "7.049588ms"} -2023-12-15T23:36:24.982Z INFO sending PrepareRequest {"height": 5446, "view": 0} -2023-12-15T23:36:24.983Z INFO sending Commit {"height": 5446, "view": 0} -2023-12-15T23:36:24.983Z INFO approving block {"height": 5446, "hash": "b52db8c695f2e366a6d5d15b42ad0474d8d62bb2697f14299f225812477a02ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "310e080ad1e3ef3bbed6e6e8276e1a6ac7ebba8a532215013d05dd540d14bcbe"} -2023-12-15T23:36:24.985Z INFO initializing dbft {"height": 5447, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:24.986Z debug frostfs-node/morph.go:229 new block {"index": 5446} -2023-12-15T23:36:25.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5446, "blockHeight": 5446, "took": "8.790803ms"} -2023-12-15T23:36:25.985Z INFO sending PrepareRequest {"height": 5447, "view": 0} -2023-12-15T23:36:25.986Z INFO sending Commit {"height": 5447, "view": 0} -2023-12-15T23:36:25.986Z INFO approving block {"height": 5447, "hash": "8fefc561f917a3fcf31bbd6434505f262b3c71d7c4c9458f2d5ef366e99178fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b52db8c695f2e366a6d5d15b42ad0474d8d62bb2697f14299f225812477a02ac"} -2023-12-15T23:36:25.988Z INFO initializing dbft {"height": 5448, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:25.990Z debug frostfs-node/morph.go:229 new block {"index": 5447} -2023-12-15T23:36:26.029Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5447, "blockHeight": 5447, "took": "11.218042ms"} -2023-12-15T23:36:26.988Z INFO sending PrepareRequest {"height": 5448, "view": 0} -2023-12-15T23:36:26.988Z INFO sending Commit {"height": 5448, "view": 0} -2023-12-15T23:36:26.988Z INFO approving block {"height": 5448, "hash": "bcfc926b9fae2a0322691b6a2877f66119ff9a075f4a8bd3d717968fded4d3c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fefc561f917a3fcf31bbd6434505f262b3c71d7c4c9458f2d5ef366e99178fc"} -2023-12-15T23:36:26.990Z INFO initializing dbft {"height": 5449, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:26.990Z debug frostfs-node/morph.go:229 new block {"index": 5448} -2023-12-15T23:36:27.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5448, "blockHeight": 5448, "took": "7.387575ms"} -2023-12-15T23:36:27.989Z INFO sending PrepareRequest {"height": 5449, "view": 0} -2023-12-15T23:36:27.990Z INFO sending Commit {"height": 5449, "view": 0} -2023-12-15T23:36:27.990Z INFO approving block {"height": 5449, "hash": "2e3160ab8dce8bdd65d7e738e7c7cddcb0c1eb744ba31869472a76a89ae51dc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcfc926b9fae2a0322691b6a2877f66119ff9a075f4a8bd3d717968fded4d3c4"} -2023-12-15T23:36:27.992Z INFO initializing dbft {"height": 5450, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:27.993Z debug frostfs-node/morph.go:229 new block {"index": 5449} -2023-12-15T23:36:28.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5449, "blockHeight": 5449, "took": "6.225313ms"} -2023-12-15T23:36:28.992Z INFO sending PrepareRequest {"height": 5450, "view": 0} -2023-12-15T23:36:28.992Z INFO sending Commit {"height": 5450, "view": 0} -2023-12-15T23:36:28.993Z INFO approving block {"height": 5450, "hash": "99abf54905bbbb1f0a3ec4803c3db5d726aa9f8ebddc62215f82c44cda5a8c29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e3160ab8dce8bdd65d7e738e7c7cddcb0c1eb744ba31869472a76a89ae51dc5"} -2023-12-15T23:36:28.994Z INFO initializing dbft {"height": 5451, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:28.995Z debug frostfs-node/morph.go:229 new block {"index": 5450} -2023-12-15T23:36:29.028Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5450, "blockHeight": 5450, "took": "6.881412ms"} -2023-12-15T23:36:29.994Z INFO sending PrepareRequest {"height": 5451, "view": 0} -2023-12-15T23:36:29.995Z INFO sending Commit {"height": 5451, "view": 0} -2023-12-15T23:36:29.995Z INFO approving block {"height": 5451, "hash": "d101675b5ea89e5263402841bc6d345b0c29f6c259b9f4c0a40c64095949565c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99abf54905bbbb1f0a3ec4803c3db5d726aa9f8ebddc62215f82c44cda5a8c29"} -2023-12-15T23:36:29.997Z INFO initializing dbft {"height": 5452, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:29.998Z debug frostfs-node/morph.go:229 new block {"index": 5451} -2023-12-15T23:36:30.028Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5451, "blockHeight": 5451, "took": "6.450809ms"} -2023-12-15T23:36:30.997Z INFO sending PrepareRequest {"height": 5452, "view": 0} -2023-12-15T23:36:30.997Z INFO sending Commit {"height": 5452, "view": 0} -2023-12-15T23:36:30.997Z INFO approving block {"height": 5452, "hash": "0ed351b619fc564e11718a0b4b173434cd5f00bb1a3f06226d71e040d3394026", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d101675b5ea89e5263402841bc6d345b0c29f6c259b9f4c0a40c64095949565c"} -2023-12-15T23:36:30.999Z INFO initializing dbft {"height": 5453, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:31.000Z debug frostfs-node/morph.go:229 new block {"index": 5452} -2023-12-15T23:36:31.031Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5452, "blockHeight": 5452, "took": "9.360584ms"} -2023-12-15T23:36:31.999Z INFO sending PrepareRequest {"height": 5453, "view": 0} -2023-12-15T23:36:31.999Z INFO sending Commit {"height": 5453, "view": 0} -2023-12-15T23:36:32.000Z INFO approving block {"height": 5453, "hash": "bc482a02d4796a713b4ceef462312226a0b1847df0b01dcdef54a5cf79607c4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ed351b619fc564e11718a0b4b173434cd5f00bb1a3f06226d71e040d3394026"} -2023-12-15T23:36:32.001Z INFO initializing dbft {"height": 5454, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:32.002Z debug frostfs-node/morph.go:229 new block {"index": 5453} -2023-12-15T23:36:32.029Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5453, "blockHeight": 5453, "took": "6.314824ms"} -2023-12-15T23:36:33.001Z INFO sending PrepareRequest {"height": 5454, "view": 0} -2023-12-15T23:36:33.001Z INFO sending Commit {"height": 5454, "view": 0} -2023-12-15T23:36:33.002Z INFO approving block {"height": 5454, "hash": "08972dff25dd241a5cb365019433dc4589ab425ad8cb68c3c49c5681092ff876", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc482a02d4796a713b4ceef462312226a0b1847df0b01dcdef54a5cf79607c4b"} -2023-12-15T23:36:33.003Z INFO initializing dbft {"height": 5455, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:33.004Z debug frostfs-node/morph.go:229 new block {"index": 5454} -2023-12-15T23:36:33.034Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5454, "blockHeight": 5454, "took": "9.528194ms"} -2023-12-15T23:36:34.003Z INFO sending PrepareRequest {"height": 5455, "view": 0} -2023-12-15T23:36:34.003Z INFO sending Commit {"height": 5455, "view": 0} -2023-12-15T23:36:34.004Z INFO approving block {"height": 5455, "hash": "f659583f44ade9232a7513551c0e5a886c7c955f29c5981dfa3e8f715328183e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08972dff25dd241a5cb365019433dc4589ab425ad8cb68c3c49c5681092ff876"} -2023-12-15T23:36:34.005Z INFO initializing dbft {"height": 5456, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:34.006Z debug frostfs-node/morph.go:229 new block {"index": 5455} -2023-12-15T23:36:34.030Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5455, "blockHeight": 5455, "took": "5.098269ms"} -2023-12-15T23:36:35.006Z INFO sending PrepareRequest {"height": 5456, "view": 0} -2023-12-15T23:36:35.006Z INFO sending Commit {"height": 5456, "view": 0} -2023-12-15T23:36:35.006Z INFO approving block {"height": 5456, "hash": "2578ab43c56f1690d1d81378e47d03fae84c2c308098be7fda9bdefacce6d38c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f659583f44ade9232a7513551c0e5a886c7c955f29c5981dfa3e8f715328183e"} -2023-12-15T23:36:35.008Z INFO initializing dbft {"height": 5457, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:35.009Z debug frostfs-node/morph.go:229 new block {"index": 5456} -2023-12-15T23:36:35.038Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5456, "blockHeight": 5456, "took": "11.504552ms"} -2023-12-15T23:36:36.008Z INFO sending PrepareRequest {"height": 5457, "view": 0} -2023-12-15T23:36:36.008Z INFO sending Commit {"height": 5457, "view": 0} -2023-12-15T23:36:36.008Z INFO approving block {"height": 5457, "hash": "add1ec217ff340733e8f3597537a16ecad3ecc8a2210f604d4641c882b9c8998", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2578ab43c56f1690d1d81378e47d03fae84c2c308098be7fda9bdefacce6d38c"} -2023-12-15T23:36:36.010Z INFO initializing dbft {"height": 5458, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:36.010Z debug frostfs-node/morph.go:229 new block {"index": 5457} -2023-12-15T23:36:36.037Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5457, "blockHeight": 5457, "took": "9.175367ms"} -2023-12-15T23:36:37.010Z INFO sending PrepareRequest {"height": 5458, "view": 0} -2023-12-15T23:36:37.010Z INFO sending Commit {"height": 5458, "view": 0} -2023-12-15T23:36:37.011Z INFO approving block {"height": 5458, "hash": "0b97a4bb194704978454ce558f3d1d639e56b37ce92075a918a828cfb2d7bc5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "add1ec217ff340733e8f3597537a16ecad3ecc8a2210f604d4641c882b9c8998"} -2023-12-15T23:36:37.012Z INFO initializing dbft {"height": 5459, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:37.013Z debug frostfs-node/morph.go:229 new block {"index": 5458} -2023-12-15T23:36:37.039Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5458, "blockHeight": 5458, "took": "9.947009ms"} -2023-12-15T23:36:38.012Z INFO sending PrepareRequest {"height": 5459, "view": 0} -2023-12-15T23:36:38.013Z INFO sending Commit {"height": 5459, "view": 0} -2023-12-15T23:36:38.013Z INFO approving block {"height": 5459, "hash": "70504cc8e01200ba1e39f8af37d012b43b468a1d109207a711b42db13a0d4cdd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b97a4bb194704978454ce558f3d1d639e56b37ce92075a918a828cfb2d7bc5e"} -2023-12-15T23:36:38.016Z INFO initializing dbft {"height": 5460, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:38.017Z debug frostfs-node/morph.go:229 new block {"index": 5459} -2023-12-15T23:36:38.037Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5459, "blockHeight": 5459, "took": "7.034375ms"} -2023-12-15T23:36:39.015Z INFO sending PrepareRequest {"height": 5460, "view": 0} -2023-12-15T23:36:39.015Z INFO sending Commit {"height": 5460, "view": 0} -2023-12-15T23:36:39.015Z INFO approving block {"height": 5460, "hash": "5d344ca6eb409d9cd55c9eee7f3029ae5e7ac9cfe3bd48f33a441456514a443c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70504cc8e01200ba1e39f8af37d012b43b468a1d109207a711b42db13a0d4cdd"} -2023-12-15T23:36:39.017Z INFO initializing dbft {"height": 5461, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:39.018Z debug frostfs-node/morph.go:229 new block {"index": 5460} -2023-12-15T23:36:39.038Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5460, "blockHeight": 5460, "took": "6.86463ms"} -2023-12-15T23:36:40.018Z INFO sending PrepareRequest {"height": 5461, "view": 0} -2023-12-15T23:36:40.018Z INFO sending Commit {"height": 5461, "view": 0} -2023-12-15T23:36:40.018Z INFO approving block {"height": 5461, "hash": "f00d242abb44e67b639e1fb10868b526381ecd974b36ce233670c35b2c8dca4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d344ca6eb409d9cd55c9eee7f3029ae5e7ac9cfe3bd48f33a441456514a443c"} -2023-12-15T23:36:40.020Z INFO initializing dbft {"height": 5462, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:40.021Z debug frostfs-node/morph.go:229 new block {"index": 5461} -2023-12-15T23:36:40.039Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5461, "blockHeight": 5461, "took": "7.083211ms"} -2023-12-15T23:36:41.020Z INFO sending PrepareRequest {"height": 5462, "view": 0} -2023-12-15T23:36:41.020Z INFO sending Commit {"height": 5462, "view": 0} -2023-12-15T23:36:41.020Z INFO approving block {"height": 5462, "hash": "d9713666a70b75f04440efd0f683bc65da3138c17405cd606f06fea91ad30723", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f00d242abb44e67b639e1fb10868b526381ecd974b36ce233670c35b2c8dca4a"} -2023-12-15T23:36:41.022Z INFO initializing dbft {"height": 5463, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:41.023Z debug frostfs-node/morph.go:229 new block {"index": 5462} -2023-12-15T23:36:41.040Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5462, "blockHeight": 5462, "took": "7.278332ms"} -2023-12-15T23:36:42.021Z INFO sending PrepareRequest {"height": 5463, "view": 0} -2023-12-15T23:36:42.022Z INFO sending Commit {"height": 5463, "view": 0} -2023-12-15T23:36:42.023Z INFO approving block {"height": 5463, "hash": "bf01c66bf1c3fbe8c0093a5c2d791604680a5da9827938da5ce22b7575b01ffc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9713666a70b75f04440efd0f683bc65da3138c17405cd606f06fea91ad30723"} -2023-12-15T23:36:42.024Z INFO initializing dbft {"height": 5464, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:42.025Z debug frostfs-node/morph.go:229 new block {"index": 5463} -2023-12-15T23:36:42.043Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5463, "blockHeight": 5463, "took": "9.10353ms"} -2023-12-15T23:36:43.024Z INFO sending PrepareRequest {"height": 5464, "view": 0} -2023-12-15T23:36:43.024Z INFO sending Commit {"height": 5464, "view": 0} -2023-12-15T23:36:43.024Z INFO approving block {"height": 5464, "hash": "74d10ba4a71a02a35ff07527c5fd4693e77cbf493ca0ca3ced274cb3c3ce8398", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf01c66bf1c3fbe8c0093a5c2d791604680a5da9827938da5ce22b7575b01ffc"} -2023-12-15T23:36:43.026Z INFO initializing dbft {"height": 5465, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:43.027Z debug frostfs-node/morph.go:229 new block {"index": 5464} -2023-12-15T23:36:43.042Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5464, "blockHeight": 5464, "took": "6.829141ms"} -2023-12-15T23:36:44.025Z INFO sending PrepareRequest {"height": 5465, "view": 0} -2023-12-15T23:36:44.026Z INFO sending Commit {"height": 5465, "view": 0} -2023-12-15T23:36:44.026Z INFO approving block {"height": 5465, "hash": "9b66f56b428a42ab3d2f7373eefc8c009f358f699fa95ba90155521ad174f877", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74d10ba4a71a02a35ff07527c5fd4693e77cbf493ca0ca3ced274cb3c3ce8398"} -2023-12-15T23:36:44.028Z INFO initializing dbft {"height": 5466, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:44.029Z debug frostfs-node/morph.go:229 new block {"index": 5465} -2023-12-15T23:36:44.044Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5465, "blockHeight": 5465, "took": "7.691251ms"} -2023-12-15T23:36:45.027Z INFO sending PrepareRequest {"height": 5466, "view": 0} -2023-12-15T23:36:45.027Z INFO sending Commit {"height": 5466, "view": 0} -2023-12-15T23:36:45.027Z INFO approving block {"height": 5466, "hash": "413e4d4342ab3d148cfb2540e9ccd43add88d42d6124d83b0221b2a39edc4057", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b66f56b428a42ab3d2f7373eefc8c009f358f699fa95ba90155521ad174f877"} -2023-12-15T23:36:45.028Z INFO initializing dbft {"height": 5467, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:45.030Z debug frostfs-node/morph.go:229 new block {"index": 5466} -2023-12-15T23:36:45.047Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5466, "blockHeight": 5466, "took": "10.084549ms"} -2023-12-15T23:36:46.029Z INFO sending PrepareRequest {"height": 5467, "view": 0} -2023-12-15T23:36:46.029Z INFO sending Commit {"height": 5467, "view": 0} -2023-12-15T23:36:46.030Z INFO approving block {"height": 5467, "hash": "f1740c10332044e0e9be8f7464ef6694a25f0d026105f13c83c89babd2c2d588", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "413e4d4342ab3d148cfb2540e9ccd43add88d42d6124d83b0221b2a39edc4057"} -2023-12-15T23:36:46.031Z INFO initializing dbft {"height": 5468, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:46.032Z debug frostfs-node/morph.go:229 new block {"index": 5467} -2023-12-15T23:36:46.036Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:36:46.042Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:36:46.042Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:36:46.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5467, "blockHeight": 5467, "took": "7.37517ms"} -2023-12-15T23:36:47.031Z INFO sending PrepareRequest {"height": 5468, "view": 0} -2023-12-15T23:36:47.031Z INFO sending Commit {"height": 5468, "view": 0} -2023-12-15T23:36:47.032Z INFO approving block {"height": 5468, "hash": "1dd70b8ef67db163931a695a90bbe0e9af007b1c91bc6f82508ba166680df4b4", "tx_count": 2, "merkle": "8ad3d861519b82d88c44389737bb9b2071cced941679901fe326522086867d2b", "prev": "f1740c10332044e0e9be8f7464ef6694a25f0d026105f13c83c89babd2c2d588"} -2023-12-15T23:36:47.034Z INFO runtime log {"tx": "a52dec7c7d0485c3b71f1d36736e1155f83d9a1cfd9e77139439fb9df1ee8ad1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:36:47.034Z INFO runtime log {"tx": "a52dec7c7d0485c3b71f1d36736e1155f83d9a1cfd9e77139439fb9df1ee8ad1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:36:47.036Z INFO initializing dbft {"height": 5469, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:47.037Z debug frostfs-node/morph.go:229 new block {"index": 5468} -2023-12-15T23:36:47.051Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5468, "blockHeight": 5468, "took": "11.371417ms"} -2023-12-15T23:36:48.034Z INFO sending PrepareRequest {"height": 5469, "view": 0} -2023-12-15T23:36:48.034Z INFO sending Commit {"height": 5469, "view": 0} -2023-12-15T23:36:48.035Z INFO approving block {"height": 5469, "hash": "39ff49d99da09b6c709e222ea8312d373f46b78a7bdbc4d942d230d71751d206", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1dd70b8ef67db163931a695a90bbe0e9af007b1c91bc6f82508ba166680df4b4"} -2023-12-15T23:36:48.036Z INFO initializing dbft {"height": 5470, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:48.037Z debug frostfs-node/morph.go:229 new block {"index": 5469} -2023-12-15T23:36:48.046Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5469, "blockHeight": 5469, "took": "6.490129ms"} -2023-12-15T23:36:49.036Z INFO sending PrepareRequest {"height": 5470, "view": 0} -2023-12-15T23:36:49.036Z INFO sending Commit {"height": 5470, "view": 0} -2023-12-15T23:36:49.037Z INFO approving block {"height": 5470, "hash": "c362db94e6f62856e37e155e47e8f2ce168ebfbf479a13feec5b71fdfd8e98ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39ff49d99da09b6c709e222ea8312d373f46b78a7bdbc4d942d230d71751d206"} -2023-12-15T23:36:49.038Z INFO initializing dbft {"height": 5471, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:49.039Z debug frostfs-node/morph.go:229 new block {"index": 5470} -2023-12-15T23:36:49.046Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5470, "blockHeight": 5470, "took": "5.346237ms"} -2023-12-15T23:36:50.038Z INFO sending PrepareRequest {"height": 5471, "view": 0} -2023-12-15T23:36:50.038Z INFO sending Commit {"height": 5471, "view": 0} -2023-12-15T23:36:50.039Z INFO approving block {"height": 5471, "hash": "4ef1d9d50d6991242bf3fcdcd0d29cb799530b40ae90da87795e5aecf3ec2834", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c362db94e6f62856e37e155e47e8f2ce168ebfbf479a13feec5b71fdfd8e98ee"} -2023-12-15T23:36:50.040Z INFO initializing dbft {"height": 5472, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:50.042Z debug frostfs-node/morph.go:229 new block {"index": 5471} -2023-12-15T23:36:50.048Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5471, "blockHeight": 5471, "took": "7.735436ms"} -2023-12-15T23:36:51.040Z INFO sending PrepareRequest {"height": 5472, "view": 0} -2023-12-15T23:36:51.040Z INFO sending Commit {"height": 5472, "view": 0} -2023-12-15T23:36:51.041Z INFO approving block {"height": 5472, "hash": "ce9cea866c0c9d0f3d1fad63b737e66acdbbc143c43b1afdbef521656f507db5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ef1d9d50d6991242bf3fcdcd0d29cb799530b40ae90da87795e5aecf3ec2834"} -2023-12-15T23:36:51.042Z INFO initializing dbft {"height": 5473, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:51.043Z debug frostfs-node/morph.go:229 new block {"index": 5472} -2023-12-15T23:36:52.042Z INFO sending PrepareRequest {"height": 5473, "view": 0} -2023-12-15T23:36:52.043Z INFO sending Commit {"height": 5473, "view": 0} -2023-12-15T23:36:52.043Z INFO approving block {"height": 5473, "hash": "cf166d76f099608c5ce66e2c504520fa627ec1e58de6e8fe1f6bc2556d1b4487", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce9cea866c0c9d0f3d1fad63b737e66acdbbc143c43b1afdbef521656f507db5"} -2023-12-15T23:36:52.045Z INFO initializing dbft {"height": 5474, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:52.046Z debug frostfs-node/morph.go:229 new block {"index": 5473} -2023-12-15T23:36:52.049Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5472, "blockHeight": 5472, "took": "7.607152ms"} -2023-12-15T23:36:53.045Z INFO sending PrepareRequest {"height": 5474, "view": 0} -2023-12-15T23:36:53.045Z INFO sending Commit {"height": 5474, "view": 0} -2023-12-15T23:36:53.046Z INFO approving block {"height": 5474, "hash": "a8ee38ab8c077249a99c4436ad253254602f363aee07aec0c70b0c1377f94221", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf166d76f099608c5ce66e2c504520fa627ec1e58de6e8fe1f6bc2556d1b4487"} -2023-12-15T23:36:53.048Z INFO initializing dbft {"height": 5475, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:53.049Z debug frostfs-node/morph.go:229 new block {"index": 5474} -2023-12-15T23:36:53.050Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5473, "blockHeight": 5473, "took": "7.38091ms"} -2023-12-15T23:36:54.047Z INFO sending PrepareRequest {"height": 5475, "view": 0} -2023-12-15T23:36:54.048Z INFO sending Commit {"height": 5475, "view": 0} -2023-12-15T23:36:54.049Z INFO approving block {"height": 5475, "hash": "277d58cbb1374763c134b02b7b11b23eb8ddc7e67316d00afc7362fbd5ae25cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8ee38ab8c077249a99c4436ad253254602f363aee07aec0c70b0c1377f94221"} -2023-12-15T23:36:54.050Z INFO initializing dbft {"height": 5476, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:54.050Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5474, "blockHeight": 5474, "took": "6.673425ms"} -2023-12-15T23:36:54.051Z debug frostfs-node/morph.go:229 new block {"index": 5475} -2023-12-15T23:36:55.052Z INFO sending PrepareRequest {"height": 5476, "view": 0} -2023-12-15T23:36:55.052Z INFO sending Commit {"height": 5476, "view": 0} -2023-12-15T23:36:55.053Z INFO approving block {"height": 5476, "hash": "9e6d4c34bb7a0786651d56eeb327fcd083847be39723bad414dad7d56491528a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "277d58cbb1374763c134b02b7b11b23eb8ddc7e67316d00afc7362fbd5ae25cf"} -2023-12-15T23:36:55.054Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5475, "blockHeight": 5475, "took": "8.681197ms"} -2023-12-15T23:36:55.055Z INFO initializing dbft {"height": 5477, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:55.056Z debug frostfs-node/morph.go:229 new block {"index": 5476} -2023-12-15T23:36:56.052Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5476, "blockHeight": 5476, "took": "5.639815ms"} -2023-12-15T23:36:56.054Z INFO sending PrepareRequest {"height": 5477, "view": 0} -2023-12-15T23:36:56.054Z INFO sending Commit {"height": 5477, "view": 0} -2023-12-15T23:36:56.055Z INFO approving block {"height": 5477, "hash": "c7ccac1f5656ced4bdcdea942a186d1bc135d6a94804e8e60f05526172600ca9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e6d4c34bb7a0786651d56eeb327fcd083847be39723bad414dad7d56491528a"} -2023-12-15T23:36:56.056Z INFO initializing dbft {"height": 5478, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:56.057Z debug frostfs-node/morph.go:229 new block {"index": 5477} -2023-12-15T23:36:57.054Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5477, "blockHeight": 5477, "took": "7.141206ms"} -2023-12-15T23:36:57.056Z INFO sending PrepareRequest {"height": 5478, "view": 0} -2023-12-15T23:36:57.056Z INFO sending Commit {"height": 5478, "view": 0} -2023-12-15T23:36:57.057Z INFO approving block {"height": 5478, "hash": "b05c7aedfa8f50a55d4a0045d16603c3a247674b96b45ea828dd0660b007a9e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7ccac1f5656ced4bdcdea942a186d1bc135d6a94804e8e60f05526172600ca9"} -2023-12-15T23:36:57.058Z INFO initializing dbft {"height": 5479, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:57.059Z debug frostfs-node/morph.go:229 new block {"index": 5478} -2023-12-15T23:36:58.054Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5478, "blockHeight": 5478, "took": "6.821652ms"} -2023-12-15T23:36:58.058Z INFO sending PrepareRequest {"height": 5479, "view": 0} -2023-12-15T23:36:58.058Z INFO sending Commit {"height": 5479, "view": 0} -2023-12-15T23:36:58.058Z INFO approving block {"height": 5479, "hash": "3de3b4b52402dea1e1530e83bbb6e5a10621d0c6e9a01bac186e605c4953cd33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b05c7aedfa8f50a55d4a0045d16603c3a247674b96b45ea828dd0660b007a9e0"} -2023-12-15T23:36:58.060Z INFO initializing dbft {"height": 5480, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:58.061Z debug frostfs-node/morph.go:229 new block {"index": 5479} -2023-12-15T23:36:59.055Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5479, "blockHeight": 5479, "took": "6.350276ms"} -2023-12-15T23:36:59.060Z INFO sending PrepareRequest {"height": 5480, "view": 0} -2023-12-15T23:36:59.060Z INFO sending Commit {"height": 5480, "view": 0} -2023-12-15T23:36:59.061Z INFO approving block {"height": 5480, "hash": "ec0292df468964f1faa413f8ae84bb3591afcc75e26a3d47466aa7c73d54c71a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3de3b4b52402dea1e1530e83bbb6e5a10621d0c6e9a01bac186e605c4953cd33"} -2023-12-15T23:36:59.063Z INFO initializing dbft {"height": 5481, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:36:59.063Z debug frostfs-node/morph.go:229 new block {"index": 5480} -2023-12-15T23:37:00.057Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5480, "blockHeight": 5480, "took": "7.074168ms"} -2023-12-15T23:37:00.062Z INFO sending PrepareRequest {"height": 5481, "view": 0} -2023-12-15T23:37:00.062Z INFO sending Commit {"height": 5481, "view": 0} -2023-12-15T23:37:00.062Z INFO approving block {"height": 5481, "hash": "2a30386c284a7e04d93051c8035a699a1bb2230c7a2470c0f2de0eb1d5b02436", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec0292df468964f1faa413f8ae84bb3591afcc75e26a3d47466aa7c73d54c71a"} -2023-12-15T23:37:00.064Z INFO initializing dbft {"height": 5482, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:00.065Z debug frostfs-node/morph.go:229 new block {"index": 5481} -2023-12-15T23:37:01.057Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5481, "blockHeight": 5481, "took": "6.514002ms"} -2023-12-15T23:37:01.064Z INFO sending PrepareRequest {"height": 5482, "view": 0} -2023-12-15T23:37:01.064Z INFO sending Commit {"height": 5482, "view": 0} -2023-12-15T23:37:01.064Z INFO approving block {"height": 5482, "hash": "c59dbb870e526dc7b356dc9c28b6dbaed8e8cc2dc47b74911ef16af2332684af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a30386c284a7e04d93051c8035a699a1bb2230c7a2470c0f2de0eb1d5b02436"} -2023-12-15T23:37:01.066Z INFO initializing dbft {"height": 5483, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:01.067Z debug frostfs-node/morph.go:229 new block {"index": 5482} -2023-12-15T23:37:01.071Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 23, "iteration": 2, "error": "no data for 1 iteration in 23 epoch for consumers's trusts"} -2023-12-15T23:37:01.073Z info settlement/calls.go:106 start basic income distribution {"epoch": 23} -2023-12-15T23:37:02.058Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5482, "blockHeight": 5482, "took": "6.441797ms"} -2023-12-15T23:37:02.066Z INFO sending PrepareRequest {"height": 5483, "view": 0} -2023-12-15T23:37:02.066Z INFO sending Commit {"height": 5483, "view": 0} -2023-12-15T23:37:02.067Z INFO approving block {"height": 5483, "hash": "cd893a51bdf6eeb321fca88d4fbc8b4b9e27f97a3f9f351f405e4782cc42d46b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c59dbb870e526dc7b356dc9c28b6dbaed8e8cc2dc47b74911ef16af2332684af"} -2023-12-15T23:37:02.068Z INFO initializing dbft {"height": 5484, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:02.069Z debug frostfs-node/morph.go:229 new block {"index": 5483} -2023-12-15T23:37:03.060Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5483, "blockHeight": 5483, "took": "6.72318ms"} -2023-12-15T23:37:03.068Z INFO sending PrepareRequest {"height": 5484, "view": 0} -2023-12-15T23:37:03.069Z INFO sending Commit {"height": 5484, "view": 0} -2023-12-15T23:37:03.069Z INFO approving block {"height": 5484, "hash": "7d0f5505c37dac120adbe23d63ff996965abcd752c4739c389b6c7bb7447ea4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd893a51bdf6eeb321fca88d4fbc8b4b9e27f97a3f9f351f405e4782cc42d46b"} -2023-12-15T23:37:03.071Z INFO initializing dbft {"height": 5485, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:03.072Z debug frostfs-node/morph.go:229 new block {"index": 5484} -2023-12-15T23:37:04.061Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5484, "blockHeight": 5484, "took": "7.181346ms"} -2023-12-15T23:37:04.070Z INFO sending PrepareRequest {"height": 5485, "view": 0} -2023-12-15T23:37:04.071Z INFO sending Commit {"height": 5485, "view": 0} -2023-12-15T23:37:04.071Z INFO approving block {"height": 5485, "hash": "2dc5eacbc9cd1b88e6015fb0c259f37b2e56c873c288371a084d60f5407c5d07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d0f5505c37dac120adbe23d63ff996965abcd752c4739c389b6c7bb7447ea4d"} -2023-12-15T23:37:04.073Z INFO initializing dbft {"height": 5486, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:04.074Z debug frostfs-node/morph.go:229 new block {"index": 5485} -2023-12-15T23:37:05.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5485, "blockHeight": 5485, "took": "7.971951ms"} -2023-12-15T23:37:05.073Z INFO sending PrepareRequest {"height": 5486, "view": 0} -2023-12-15T23:37:05.073Z INFO sending Commit {"height": 5486, "view": 0} -2023-12-15T23:37:05.073Z INFO approving block {"height": 5486, "hash": "db35822fb66e23d2c617e8a77f8b29ee0d319652f3420c7cce9e8279231fa9f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2dc5eacbc9cd1b88e6015fb0c259f37b2e56c873c288371a084d60f5407c5d07"} -2023-12-15T23:37:05.075Z INFO initializing dbft {"height": 5487, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:05.076Z debug frostfs-node/morph.go:229 new block {"index": 5486} -2023-12-15T23:37:06.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5486, "blockHeight": 5486, "took": "7.280664ms"} -2023-12-15T23:37:06.074Z INFO sending PrepareRequest {"height": 5487, "view": 0} -2023-12-15T23:37:06.074Z INFO sending Commit {"height": 5487, "view": 0} -2023-12-15T23:37:06.075Z INFO approving block {"height": 5487, "hash": "c6d636b35eac82b2034c06ef629a83c1ba8b2fd2c43724f57b5c4c8565521957", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db35822fb66e23d2c617e8a77f8b29ee0d319652f3420c7cce9e8279231fa9f5"} -2023-12-15T23:37:06.076Z INFO initializing dbft {"height": 5488, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:06.077Z debug frostfs-node/morph.go:229 new block {"index": 5487} -2023-12-15T23:37:07.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5487, "blockHeight": 5487, "took": "6.684362ms"} -2023-12-15T23:37:07.076Z INFO sending PrepareRequest {"height": 5488, "view": 0} -2023-12-15T23:37:07.076Z INFO sending Commit {"height": 5488, "view": 0} -2023-12-15T23:37:07.077Z INFO approving block {"height": 5488, "hash": "07c75b6936bd60d2833de8d7acce75e358ed2b21073e9689d67ebe9e383d3039", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6d636b35eac82b2034c06ef629a83c1ba8b2fd2c43724f57b5c4c8565521957"} -2023-12-15T23:37:07.078Z INFO initializing dbft {"height": 5489, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:07.079Z debug frostfs-node/morph.go:229 new block {"index": 5488} -2023-12-15T23:37:08.065Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5488, "blockHeight": 5488, "took": "6.948121ms"} -2023-12-15T23:37:08.077Z INFO sending PrepareRequest {"height": 5489, "view": 0} -2023-12-15T23:37:08.078Z INFO sending Commit {"height": 5489, "view": 0} -2023-12-15T23:37:08.078Z INFO approving block {"height": 5489, "hash": "3d8a8995523269900d60d98173e3bab3ab4b0825444299a53b3b4e1158e83247", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07c75b6936bd60d2833de8d7acce75e358ed2b21073e9689d67ebe9e383d3039"} -2023-12-15T23:37:08.080Z INFO initializing dbft {"height": 5490, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:08.081Z debug frostfs-node/morph.go:229 new block {"index": 5489} -2023-12-15T23:37:09.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5489, "blockHeight": 5489, "took": "6.907604ms"} -2023-12-15T23:37:09.079Z INFO sending PrepareRequest {"height": 5490, "view": 0} -2023-12-15T23:37:09.079Z INFO sending Commit {"height": 5490, "view": 0} -2023-12-15T23:37:09.080Z INFO approving block {"height": 5490, "hash": "944e97adcf7eeae6fa2f78ea1380318f6bdcbd2fcd226f63b9889a337d52581c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d8a8995523269900d60d98173e3bab3ab4b0825444299a53b3b4e1158e83247"} -2023-12-15T23:37:09.082Z INFO initializing dbft {"height": 5491, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:09.082Z debug frostfs-node/morph.go:229 new block {"index": 5490} -2023-12-15T23:37:10.069Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5490, "blockHeight": 5490, "took": "8.833627ms"} -2023-12-15T23:37:10.081Z INFO sending PrepareRequest {"height": 5491, "view": 0} -2023-12-15T23:37:10.082Z INFO sending Commit {"height": 5491, "view": 0} -2023-12-15T23:37:10.082Z INFO approving block {"height": 5491, "hash": "9a093ead42c1e63b574f7f214541c3411b379cd92b613850eec3a77052a1d705", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "944e97adcf7eeae6fa2f78ea1380318f6bdcbd2fcd226f63b9889a337d52581c"} -2023-12-15T23:37:10.084Z INFO initializing dbft {"height": 5492, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:10.085Z debug frostfs-node/morph.go:229 new block {"index": 5491} -2023-12-15T23:37:11.069Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5491, "blockHeight": 5491, "took": "7.394714ms"} -2023-12-15T23:37:11.083Z INFO sending PrepareRequest {"height": 5492, "view": 0} -2023-12-15T23:37:11.084Z INFO sending Commit {"height": 5492, "view": 0} -2023-12-15T23:37:11.084Z INFO approving block {"height": 5492, "hash": "a8776e50c596052b220ee92e08c685f0b3027a7bf71fbc5eabfa9d1eabe80028", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a093ead42c1e63b574f7f214541c3411b379cd92b613850eec3a77052a1d705"} -2023-12-15T23:37:11.086Z INFO initializing dbft {"height": 5493, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:11.087Z debug frostfs-node/morph.go:229 new block {"index": 5492} -2023-12-15T23:37:12.070Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5492, "blockHeight": 5492, "took": "8.053737ms"} -2023-12-15T23:37:12.086Z INFO sending PrepareRequest {"height": 5493, "view": 0} -2023-12-15T23:37:12.086Z INFO sending Commit {"height": 5493, "view": 0} -2023-12-15T23:37:12.087Z INFO approving block {"height": 5493, "hash": "5017a2a9dfcc156083ab7861ab3d598da0c7cf7c1595a501146a3fbf20b25a7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8776e50c596052b220ee92e08c685f0b3027a7bf71fbc5eabfa9d1eabe80028"} -2023-12-15T23:37:12.088Z INFO initializing dbft {"height": 5494, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:12.089Z debug frostfs-node/morph.go:229 new block {"index": 5493} -2023-12-15T23:37:13.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5493, "blockHeight": 5493, "took": "6.833241ms"} -2023-12-15T23:37:13.088Z INFO sending PrepareRequest {"height": 5494, "view": 0} -2023-12-15T23:37:13.089Z INFO sending Commit {"height": 5494, "view": 0} -2023-12-15T23:37:13.090Z INFO approving block {"height": 5494, "hash": "d150ae9b058eb568e776624e19f035e6366194e38347a71877e34ef0be90b826", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5017a2a9dfcc156083ab7861ab3d598da0c7cf7c1595a501146a3fbf20b25a7c"} -2023-12-15T23:37:13.093Z INFO initializing dbft {"height": 5495, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:13.094Z debug frostfs-node/morph.go:229 new block {"index": 5494} -2023-12-15T23:37:14.072Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5494, "blockHeight": 5494, "took": "8.035032ms"} -2023-12-15T23:37:14.092Z INFO sending PrepareRequest {"height": 5495, "view": 0} -2023-12-15T23:37:14.092Z INFO sending Commit {"height": 5495, "view": 0} -2023-12-15T23:37:14.093Z INFO approving block {"height": 5495, "hash": "6e312dac99320d36bc86bce5c9ee582e98dec790b01d929cad1db02d1983fa54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d150ae9b058eb568e776624e19f035e6366194e38347a71877e34ef0be90b826"} -2023-12-15T23:37:14.094Z INFO initializing dbft {"height": 5496, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:14.096Z debug frostfs-node/morph.go:229 new block {"index": 5495} -2023-12-15T23:37:15.073Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5495, "blockHeight": 5495, "took": "6.696415ms"} -2023-12-15T23:37:15.094Z INFO sending PrepareRequest {"height": 5496, "view": 0} -2023-12-15T23:37:15.094Z INFO sending Commit {"height": 5496, "view": 0} -2023-12-15T23:37:15.095Z INFO approving block {"height": 5496, "hash": "752acecf7fa8dead30da8c592d285d7e6b3ae133d005745a117a3145e1e03472", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e312dac99320d36bc86bce5c9ee582e98dec790b01d929cad1db02d1983fa54"} -2023-12-15T23:37:15.097Z INFO initializing dbft {"height": 5497, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:15.097Z debug frostfs-node/morph.go:229 new block {"index": 5496} -2023-12-15T23:37:16.074Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5496, "blockHeight": 5496, "took": "7.024774ms"} -2023-12-15T23:37:16.096Z INFO sending PrepareRequest {"height": 5497, "view": 0} -2023-12-15T23:37:16.096Z INFO sending Commit {"height": 5497, "view": 0} -2023-12-15T23:37:16.097Z INFO approving block {"height": 5497, "hash": "0f79d9bbfcf2c03dc91c367823bf7b6e5450ed97097f275dd766cbd82614129b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "752acecf7fa8dead30da8c592d285d7e6b3ae133d005745a117a3145e1e03472"} -2023-12-15T23:37:16.098Z INFO initializing dbft {"height": 5498, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:16.099Z debug frostfs-node/morph.go:229 new block {"index": 5497} -2023-12-15T23:37:17.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5497, "blockHeight": 5497, "took": "9.888948ms"} -2023-12-15T23:37:17.098Z INFO sending PrepareRequest {"height": 5498, "view": 0} -2023-12-15T23:37:17.098Z INFO sending Commit {"height": 5498, "view": 0} -2023-12-15T23:37:17.099Z INFO approving block {"height": 5498, "hash": "2401f5df17d293cac3044b01b962d3f9fc2ec22137f663bf10d572526cc974a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f79d9bbfcf2c03dc91c367823bf7b6e5450ed97097f275dd766cbd82614129b"} -2023-12-15T23:37:17.101Z INFO initializing dbft {"height": 5499, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:17.101Z debug frostfs-node/morph.go:229 new block {"index": 5498} -2023-12-15T23:37:18.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5498, "blockHeight": 5498, "took": "6.765075ms"} -2023-12-15T23:37:18.101Z INFO sending PrepareRequest {"height": 5499, "view": 0} -2023-12-15T23:37:18.102Z INFO sending Commit {"height": 5499, "view": 0} -2023-12-15T23:37:18.102Z INFO approving block {"height": 5499, "hash": "f48b033079e5d90c9ae90d55b1e843a9659a2b0c8c81fbc192ced51d9a999068", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2401f5df17d293cac3044b01b962d3f9fc2ec22137f663bf10d572526cc974a1"} -2023-12-15T23:37:18.104Z INFO initializing dbft {"height": 5500, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:18.105Z debug frostfs-node/morph.go:229 new block {"index": 5499} -2023-12-15T23:37:19.079Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5499, "blockHeight": 5499, "took": "10.433047ms"} -2023-12-15T23:37:19.103Z INFO sending PrepareRequest {"height": 5500, "view": 0} -2023-12-15T23:37:19.103Z INFO sending Commit {"height": 5500, "view": 0} -2023-12-15T23:37:19.104Z INFO approving block {"height": 5500, "hash": "47eea7a788aa456eb72132efdbcc9a5acb7d977360ce9cefb43178db07771f73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f48b033079e5d90c9ae90d55b1e843a9659a2b0c8c81fbc192ced51d9a999068"} -2023-12-15T23:37:19.105Z INFO initializing dbft {"height": 5501, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:19.106Z debug frostfs-node/morph.go:229 new block {"index": 5500} -2023-12-15T23:37:20.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5500, "blockHeight": 5500, "took": "8.111916ms"} -2023-12-15T23:37:20.105Z INFO sending PrepareRequest {"height": 5501, "view": 0} -2023-12-15T23:37:20.106Z INFO sending Commit {"height": 5501, "view": 0} -2023-12-15T23:37:20.106Z INFO approving block {"height": 5501, "hash": "3ddc2b00b4521b35c642dc17c2ed83d9a406297af1988a1b0f45c6a25b3b0fb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47eea7a788aa456eb72132efdbcc9a5acb7d977360ce9cefb43178db07771f73"} -2023-12-15T23:37:20.108Z INFO initializing dbft {"height": 5502, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:20.109Z debug frostfs-node/morph.go:229 new block {"index": 5501} -2023-12-15T23:37:21.077Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5501, "blockHeight": 5501, "took": "6.341784ms"} -2023-12-15T23:37:21.108Z INFO sending PrepareRequest {"height": 5502, "view": 0} -2023-12-15T23:37:21.108Z INFO sending Commit {"height": 5502, "view": 0} -2023-12-15T23:37:21.109Z INFO approving block {"height": 5502, "hash": "6dcafec783b389246a5f2cfc8caba4e3bb96e2f41ebf60e111c1051f820c1946", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ddc2b00b4521b35c642dc17c2ed83d9a406297af1988a1b0f45c6a25b3b0fb1"} -2023-12-15T23:37:21.111Z INFO initializing dbft {"height": 5503, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:21.112Z debug frostfs-node/morph.go:229 new block {"index": 5502} -2023-12-15T23:37:22.082Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5502, "blockHeight": 5502, "took": "10.187193ms"} -2023-12-15T23:37:22.110Z INFO sending PrepareRequest {"height": 5503, "view": 0} -2023-12-15T23:37:22.111Z INFO sending Commit {"height": 5503, "view": 0} -2023-12-15T23:37:22.111Z INFO approving block {"height": 5503, "hash": "5742803c75fb6956a3d6f96d66ca821deb4baae7a091c9091b1217f84262f054", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dcafec783b389246a5f2cfc8caba4e3bb96e2f41ebf60e111c1051f820c1946"} -2023-12-15T23:37:22.113Z INFO initializing dbft {"height": 5504, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:22.114Z debug frostfs-node/morph.go:229 new block {"index": 5503} -2023-12-15T23:37:23.084Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5503, "blockHeight": 5503, "took": "11.129451ms"} -2023-12-15T23:37:23.112Z INFO sending PrepareRequest {"height": 5504, "view": 0} -2023-12-15T23:37:23.112Z INFO sending Commit {"height": 5504, "view": 0} -2023-12-15T23:37:23.113Z INFO approving block {"height": 5504, "hash": "4089bc48ca6c73d1b33a2e0e74ed62b28ff5e491991e047a6bad190ebbcc0a26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5742803c75fb6956a3d6f96d66ca821deb4baae7a091c9091b1217f84262f054"} -2023-12-15T23:37:23.115Z INFO initializing dbft {"height": 5505, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:23.116Z debug frostfs-node/morph.go:229 new block {"index": 5504} -2023-12-15T23:37:24.080Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5504, "blockHeight": 5504, "took": "6.508989ms"} -2023-12-15T23:37:24.114Z INFO sending PrepareRequest {"height": 5505, "view": 0} -2023-12-15T23:37:24.114Z INFO sending Commit {"height": 5505, "view": 0} -2023-12-15T23:37:24.115Z INFO approving block {"height": 5505, "hash": "0a179274c0f7659c895e592da95cd29b1aac9f70c34cd84d21310c406af1f4eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4089bc48ca6c73d1b33a2e0e74ed62b28ff5e491991e047a6bad190ebbcc0a26"} -2023-12-15T23:37:24.117Z INFO initializing dbft {"height": 5506, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:24.117Z debug frostfs-node/morph.go:229 new block {"index": 5505} -2023-12-15T23:37:25.082Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5505, "blockHeight": 5505, "took": "6.87554ms"} -2023-12-15T23:37:25.116Z INFO sending PrepareRequest {"height": 5506, "view": 0} -2023-12-15T23:37:25.117Z INFO sending Commit {"height": 5506, "view": 0} -2023-12-15T23:37:25.117Z INFO approving block {"height": 5506, "hash": "e7baeb3cd9ded0a90917effd5ecfe22d5fddbcb628d638925141516cca028cd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a179274c0f7659c895e592da95cd29b1aac9f70c34cd84d21310c406af1f4eb"} -2023-12-15T23:37:25.120Z INFO initializing dbft {"height": 5507, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:25.120Z debug frostfs-node/morph.go:229 new block {"index": 5506} -2023-12-15T23:37:26.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5506, "blockHeight": 5506, "took": "10.725773ms"} -2023-12-15T23:37:26.118Z INFO sending PrepareRequest {"height": 5507, "view": 0} -2023-12-15T23:37:26.119Z INFO sending Commit {"height": 5507, "view": 0} -2023-12-15T23:37:26.119Z INFO approving block {"height": 5507, "hash": "fec66dc0278f069c2107d73870be2816c139976ae25c7040237e1430a6210700", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7baeb3cd9ded0a90917effd5ecfe22d5fddbcb628d638925141516cca028cd4"} -2023-12-15T23:37:26.121Z INFO initializing dbft {"height": 5508, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:26.121Z debug frostfs-node/morph.go:229 new block {"index": 5507} -2023-12-15T23:37:27.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5507, "blockHeight": 5507, "took": "7.167209ms"} -2023-12-15T23:37:27.120Z INFO sending PrepareRequest {"height": 5508, "view": 0} -2023-12-15T23:37:27.120Z INFO sending Commit {"height": 5508, "view": 0} -2023-12-15T23:37:27.121Z INFO approving block {"height": 5508, "hash": "32ffe7e1acdc13708e9e5d91e6bd9cc95d3a75afda08bb5d075c3d2ef011e079", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fec66dc0278f069c2107d73870be2816c139976ae25c7040237e1430a6210700"} -2023-12-15T23:37:27.123Z INFO initializing dbft {"height": 5509, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:27.124Z debug frostfs-node/morph.go:229 new block {"index": 5508} -2023-12-15T23:37:28.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5508, "blockHeight": 5508, "took": "8.867183ms"} -2023-12-15T23:37:28.122Z INFO sending PrepareRequest {"height": 5509, "view": 0} -2023-12-15T23:37:28.122Z INFO sending Commit {"height": 5509, "view": 0} -2023-12-15T23:37:28.123Z INFO approving block {"height": 5509, "hash": "c3ec70e3148fa3ca67efb0e4902f6e5a74a23cbdf2226d9e17c7a87e90e9c434", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32ffe7e1acdc13708e9e5d91e6bd9cc95d3a75afda08bb5d075c3d2ef011e079"} -2023-12-15T23:37:28.124Z INFO initializing dbft {"height": 5510, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:28.125Z debug frostfs-node/morph.go:229 new block {"index": 5509} -2023-12-15T23:37:29.088Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5509, "blockHeight": 5509, "took": "8.490688ms"} -2023-12-15T23:37:29.124Z INFO sending PrepareRequest {"height": 5510, "view": 0} -2023-12-15T23:37:29.124Z INFO sending Commit {"height": 5510, "view": 0} -2023-12-15T23:37:29.124Z INFO approving block {"height": 5510, "hash": "92008e78a84877ec665325c03723312e973133e6859482c037084b3bd9a57384", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3ec70e3148fa3ca67efb0e4902f6e5a74a23cbdf2226d9e17c7a87e90e9c434"} -2023-12-15T23:37:29.126Z INFO initializing dbft {"height": 5511, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:29.126Z debug frostfs-node/morph.go:229 new block {"index": 5510} -2023-12-15T23:37:30.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5510, "blockHeight": 5510, "took": "6.937452ms"} -2023-12-15T23:37:30.126Z INFO sending PrepareRequest {"height": 5511, "view": 0} -2023-12-15T23:37:30.126Z INFO sending Commit {"height": 5511, "view": 0} -2023-12-15T23:37:30.126Z INFO approving block {"height": 5511, "hash": "74b30be9af913e6ecc47b386e119767bf489d3d6e800a8077b07d5f9f7ff47cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92008e78a84877ec665325c03723312e973133e6859482c037084b3bd9a57384"} -2023-12-15T23:37:30.128Z INFO initializing dbft {"height": 5512, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:30.129Z debug frostfs-node/morph.go:229 new block {"index": 5511} -2023-12-15T23:37:31.090Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5511, "blockHeight": 5511, "took": "8.551729ms"} -2023-12-15T23:37:31.128Z INFO sending PrepareRequest {"height": 5512, "view": 0} -2023-12-15T23:37:31.128Z INFO sending Commit {"height": 5512, "view": 0} -2023-12-15T23:37:31.128Z INFO approving block {"height": 5512, "hash": "e0aec576674ce38c7e956c1daf5f70784927e09b2ead2ffc69ad9dde0657d3bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74b30be9af913e6ecc47b386e119767bf489d3d6e800a8077b07d5f9f7ff47cc"} -2023-12-15T23:37:31.129Z INFO initializing dbft {"height": 5513, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:31.130Z debug frostfs-node/morph.go:229 new block {"index": 5512} -2023-12-15T23:37:32.090Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5512, "blockHeight": 5512, "took": "6.937532ms"} -2023-12-15T23:37:32.130Z INFO sending PrepareRequest {"height": 5513, "view": 0} -2023-12-15T23:37:32.130Z INFO sending Commit {"height": 5513, "view": 0} -2023-12-15T23:37:32.130Z INFO approving block {"height": 5513, "hash": "87d926c34f1d359ca21164c146fa822a8847d7c3f0c17ed57ad689f66bd3aa35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0aec576674ce38c7e956c1daf5f70784927e09b2ead2ffc69ad9dde0657d3bb"} -2023-12-15T23:37:32.132Z INFO initializing dbft {"height": 5514, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:32.133Z debug frostfs-node/morph.go:229 new block {"index": 5513} -2023-12-15T23:37:33.094Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5513, "blockHeight": 5513, "took": "9.743079ms"} -2023-12-15T23:37:33.131Z INFO sending PrepareRequest {"height": 5514, "view": 0} -2023-12-15T23:37:33.132Z INFO sending Commit {"height": 5514, "view": 0} -2023-12-15T23:37:33.133Z INFO approving block {"height": 5514, "hash": "80439327fcf87d8f3d81d0eb0e528237b578aa1d337db1476db1e83d6fcee576", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87d926c34f1d359ca21164c146fa822a8847d7c3f0c17ed57ad689f66bd3aa35"} -2023-12-15T23:37:33.134Z INFO initializing dbft {"height": 5515, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:33.135Z debug frostfs-node/morph.go:229 new block {"index": 5514} -2023-12-15T23:37:34.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5514, "blockHeight": 5514, "took": "9.501941ms"} -2023-12-15T23:37:34.134Z INFO sending PrepareRequest {"height": 5515, "view": 0} -2023-12-15T23:37:34.135Z INFO sending Commit {"height": 5515, "view": 0} -2023-12-15T23:37:34.135Z INFO approving block {"height": 5515, "hash": "62d1e75604ac0e2d1da94c25eca005fb2216ef79ce28277ab43a3787f16b1dcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80439327fcf87d8f3d81d0eb0e528237b578aa1d337db1476db1e83d6fcee576"} -2023-12-15T23:37:34.137Z INFO initializing dbft {"height": 5516, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:34.138Z debug frostfs-node/morph.go:229 new block {"index": 5515} -2023-12-15T23:37:35.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5515, "blockHeight": 5515, "took": "8.618702ms"} -2023-12-15T23:37:35.136Z INFO sending PrepareRequest {"height": 5516, "view": 0} -2023-12-15T23:37:35.137Z INFO sending Commit {"height": 5516, "view": 0} -2023-12-15T23:37:35.137Z INFO approving block {"height": 5516, "hash": "161941f677dbde6646b1bbb50a60ef3e606acbe115cee8f9008ecbcef8e105fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62d1e75604ac0e2d1da94c25eca005fb2216ef79ce28277ab43a3787f16b1dcd"} -2023-12-15T23:37:35.139Z INFO initializing dbft {"height": 5517, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:35.140Z debug frostfs-node/morph.go:229 new block {"index": 5516} -2023-12-15T23:37:36.097Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5516, "blockHeight": 5516, "took": "9.633341ms"} -2023-12-15T23:37:36.138Z INFO sending PrepareRequest {"height": 5517, "view": 0} -2023-12-15T23:37:36.139Z INFO sending Commit {"height": 5517, "view": 0} -2023-12-15T23:37:36.139Z INFO approving block {"height": 5517, "hash": "7e6bb6a6d126d6362e78820e8d0e3593b1989bc00fa639309a58613139636f48", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "161941f677dbde6646b1bbb50a60ef3e606acbe115cee8f9008ecbcef8e105fe"} -2023-12-15T23:37:36.141Z INFO initializing dbft {"height": 5518, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:36.141Z debug frostfs-node/morph.go:229 new block {"index": 5517} -2023-12-15T23:37:36.144Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:37:36.149Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:37:36.149Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:37:37.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5517, "blockHeight": 5517, "took": "6.756477ms"} -2023-12-15T23:37:37.141Z INFO sending PrepareRequest {"height": 5518, "view": 0} -2023-12-15T23:37:37.141Z INFO sending Commit {"height": 5518, "view": 0} -2023-12-15T23:37:37.141Z INFO approving block {"height": 5518, "hash": "29681f4fd883d7f5a25b3541d45ea2b73b7a255d9860ac3e0257a3b755893e14", "tx_count": 2, "merkle": "78776c8034062f6e6def20c8d4e0f340836a89d35fab90c3b0d5b9cceccb254d", "prev": "7e6bb6a6d126d6362e78820e8d0e3593b1989bc00fa639309a58613139636f48"} -2023-12-15T23:37:37.142Z INFO runtime log {"tx": "fc19d769507ac4458e0e63f8400beb3332566db529219cb847028a3e4bb232a0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:37:37.143Z INFO runtime log {"tx": "fc19d769507ac4458e0e63f8400beb3332566db529219cb847028a3e4bb232a0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:37:37.145Z INFO initializing dbft {"height": 5519, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:37.146Z debug frostfs-node/morph.go:229 new block {"index": 5518} -2023-12-15T23:37:38.102Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5518, "blockHeight": 5518, "took": "12.174097ms"} -2023-12-15T23:37:38.142Z INFO sending PrepareRequest {"height": 5519, "view": 0} -2023-12-15T23:37:38.143Z INFO sending Commit {"height": 5519, "view": 0} -2023-12-15T23:37:38.143Z INFO approving block {"height": 5519, "hash": "1974d77e45cbce76f83c96065dc643bacf84dba663b8f79e31b0c7e4828fdcef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29681f4fd883d7f5a25b3541d45ea2b73b7a255d9860ac3e0257a3b755893e14"} -2023-12-15T23:37:38.145Z INFO initializing dbft {"height": 5520, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:38.146Z debug frostfs-node/morph.go:229 new block {"index": 5519} -2023-12-15T23:37:39.098Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5519, "blockHeight": 5519, "took": "7.016735ms"} -2023-12-15T23:37:39.145Z INFO sending PrepareRequest {"height": 5520, "view": 0} -2023-12-15T23:37:39.145Z INFO sending Commit {"height": 5520, "view": 0} -2023-12-15T23:37:39.146Z INFO approving block {"height": 5520, "hash": "0137873631cdab5b168ba6bc771e3b6add81c7ffd6fbcadbb17b71260ebce216", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1974d77e45cbce76f83c96065dc643bacf84dba663b8f79e31b0c7e4828fdcef"} -2023-12-15T23:37:39.148Z INFO initializing dbft {"height": 5521, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:39.148Z debug frostfs-node/morph.go:229 new block {"index": 5520} -2023-12-15T23:37:40.099Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5520, "blockHeight": 5520, "took": "7.245731ms"} -2023-12-15T23:37:40.147Z INFO sending PrepareRequest {"height": 5521, "view": 0} -2023-12-15T23:37:40.148Z INFO sending Commit {"height": 5521, "view": 0} -2023-12-15T23:37:40.148Z INFO approving block {"height": 5521, "hash": "bb380d996ddc8fbf6af1bb522cd84d70c74ebe59c3be736838a868cbbbc4f9ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0137873631cdab5b168ba6bc771e3b6add81c7ffd6fbcadbb17b71260ebce216"} -2023-12-15T23:37:40.150Z INFO initializing dbft {"height": 5522, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:40.150Z debug frostfs-node/morph.go:229 new block {"index": 5521} -2023-12-15T23:37:41.100Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5521, "blockHeight": 5521, "took": "6.654023ms"} -2023-12-15T23:37:41.149Z INFO sending PrepareRequest {"height": 5522, "view": 0} -2023-12-15T23:37:41.150Z INFO sending Commit {"height": 5522, "view": 0} -2023-12-15T23:37:41.150Z INFO approving block {"height": 5522, "hash": "d3305c4790f31ebf9d51834900ffcfd3634412b39e497a004b7d3d771ede30f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb380d996ddc8fbf6af1bb522cd84d70c74ebe59c3be736838a868cbbbc4f9ba"} -2023-12-15T23:37:41.152Z INFO initializing dbft {"height": 5523, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:41.153Z debug frostfs-node/morph.go:229 new block {"index": 5522} -2023-12-15T23:37:42.101Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5522, "blockHeight": 5522, "took": "7.172422ms"} -2023-12-15T23:37:42.151Z INFO sending PrepareRequest {"height": 5523, "view": 0} -2023-12-15T23:37:42.152Z INFO sending Commit {"height": 5523, "view": 0} -2023-12-15T23:37:42.152Z INFO approving block {"height": 5523, "hash": "0489abf0200c9b4ed5ea0ab913da6a9e08a76ca5a9a564163b5df1083d2b1640", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3305c4790f31ebf9d51834900ffcfd3634412b39e497a004b7d3d771ede30f4"} -2023-12-15T23:37:42.154Z INFO initializing dbft {"height": 5524, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:42.155Z debug frostfs-node/morph.go:229 new block {"index": 5523} -2023-12-15T23:37:43.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5523, "blockHeight": 5523, "took": "6.290533ms"} -2023-12-15T23:37:43.154Z INFO sending PrepareRequest {"height": 5524, "view": 0} -2023-12-15T23:37:43.154Z INFO sending Commit {"height": 5524, "view": 0} -2023-12-15T23:37:43.155Z INFO approving block {"height": 5524, "hash": "8f73e824a3339619f45880a6e43a0d2af77d70308842882d43876a937e7d0cb3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0489abf0200c9b4ed5ea0ab913da6a9e08a76ca5a9a564163b5df1083d2b1640"} -2023-12-15T23:37:43.156Z INFO initializing dbft {"height": 5525, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:43.157Z debug frostfs-node/morph.go:229 new block {"index": 5524} -2023-12-15T23:37:44.103Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5524, "blockHeight": 5524, "took": "6.924542ms"} -2023-12-15T23:37:44.156Z INFO sending PrepareRequest {"height": 5525, "view": 0} -2023-12-15T23:37:44.156Z INFO sending Commit {"height": 5525, "view": 0} -2023-12-15T23:37:44.157Z INFO approving block {"height": 5525, "hash": "cd1d0018ff6bcf6a3298adbb64923d4eeec6cab50aae984553eb8d0ec31a4921", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f73e824a3339619f45880a6e43a0d2af77d70308842882d43876a937e7d0cb3"} -2023-12-15T23:37:44.158Z INFO initializing dbft {"height": 5526, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:44.159Z debug frostfs-node/morph.go:229 new block {"index": 5525} -2023-12-15T23:37:45.103Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5525, "blockHeight": 5525, "took": "6.698555ms"} -2023-12-15T23:37:45.158Z INFO sending PrepareRequest {"height": 5526, "view": 0} -2023-12-15T23:37:45.159Z INFO sending Commit {"height": 5526, "view": 0} -2023-12-15T23:37:45.159Z INFO approving block {"height": 5526, "hash": "0b81a8c7a8396f4c1fc31d46f93f95755f4471f19ae849315b0b95180cc4c09d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd1d0018ff6bcf6a3298adbb64923d4eeec6cab50aae984553eb8d0ec31a4921"} -2023-12-15T23:37:45.161Z INFO initializing dbft {"height": 5527, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:45.162Z debug frostfs-node/morph.go:229 new block {"index": 5526} -2023-12-15T23:37:46.104Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5526, "blockHeight": 5526, "took": "6.298154ms"} -2023-12-15T23:37:46.161Z INFO sending PrepareRequest {"height": 5527, "view": 0} -2023-12-15T23:37:46.161Z INFO sending Commit {"height": 5527, "view": 0} -2023-12-15T23:37:46.161Z INFO approving block {"height": 5527, "hash": "c272b9a50a01f7ab35a7da50d46532e6f36c5d3325f7e7f46c9ff638b97ca2f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b81a8c7a8396f4c1fc31d46f93f95755f4471f19ae849315b0b95180cc4c09d"} -2023-12-15T23:37:46.163Z INFO initializing dbft {"height": 5528, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:46.164Z debug frostfs-node/morph.go:229 new block {"index": 5527} -2023-12-15T23:37:47.105Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5527, "blockHeight": 5527, "took": "7.132548ms"} -2023-12-15T23:37:47.163Z INFO sending PrepareRequest {"height": 5528, "view": 0} -2023-12-15T23:37:47.163Z INFO sending Commit {"height": 5528, "view": 0} -2023-12-15T23:37:47.164Z INFO approving block {"height": 5528, "hash": "9045d122ca9bcb0ad4381015d08be84cc0de44a1875bac3dc013bb4a9a108607", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c272b9a50a01f7ab35a7da50d46532e6f36c5d3325f7e7f46c9ff638b97ca2f2"} -2023-12-15T23:37:47.165Z INFO initializing dbft {"height": 5529, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:47.166Z debug frostfs-node/morph.go:229 new block {"index": 5528} -2023-12-15T23:37:48.106Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5528, "blockHeight": 5528, "took": "6.788428ms"} -2023-12-15T23:37:48.165Z INFO sending PrepareRequest {"height": 5529, "view": 0} -2023-12-15T23:37:48.165Z INFO sending Commit {"height": 5529, "view": 0} -2023-12-15T23:37:48.165Z INFO approving block {"height": 5529, "hash": "667a0eb218beb9e0e6751e4fcb7953f8bc2347ff4480ff22c82f6b03edea9b85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9045d122ca9bcb0ad4381015d08be84cc0de44a1875bac3dc013bb4a9a108607"} -2023-12-15T23:37:48.167Z INFO initializing dbft {"height": 5530, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:48.167Z debug frostfs-node/morph.go:229 new block {"index": 5529} -2023-12-15T23:37:49.107Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5529, "blockHeight": 5529, "took": "6.636504ms"} -2023-12-15T23:37:49.166Z INFO sending PrepareRequest {"height": 5530, "view": 0} -2023-12-15T23:37:49.167Z INFO sending Commit {"height": 5530, "view": 0} -2023-12-15T23:37:49.167Z INFO approving block {"height": 5530, "hash": "cff4c85eabe7fb02fb353be54fa2c4d83697c499adc9542c6b23d2dedfe3e3c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "667a0eb218beb9e0e6751e4fcb7953f8bc2347ff4480ff22c82f6b03edea9b85"} -2023-12-15T23:37:49.169Z INFO initializing dbft {"height": 5531, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:49.170Z debug frostfs-node/morph.go:229 new block {"index": 5530} -2023-12-15T23:37:50.109Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5530, "blockHeight": 5530, "took": "7.240052ms"} -2023-12-15T23:37:50.168Z INFO sending PrepareRequest {"height": 5531, "view": 0} -2023-12-15T23:37:50.169Z INFO sending Commit {"height": 5531, "view": 0} -2023-12-15T23:37:50.169Z INFO approving block {"height": 5531, "hash": "35fd3150102fa434efdd6c5ba0c6a097cfb96bb012515790f420e6274ebc1f7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cff4c85eabe7fb02fb353be54fa2c4d83697c499adc9542c6b23d2dedfe3e3c5"} -2023-12-15T23:37:50.171Z INFO initializing dbft {"height": 5532, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:50.172Z debug frostfs-node/morph.go:229 new block {"index": 5531} -2023-12-15T23:37:51.108Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5531, "blockHeight": 5531, "took": "5.500541ms"} -2023-12-15T23:37:51.170Z INFO sending PrepareRequest {"height": 5532, "view": 0} -2023-12-15T23:37:51.171Z INFO sending Commit {"height": 5532, "view": 0} -2023-12-15T23:37:51.171Z INFO approving block {"height": 5532, "hash": "5d734f41054f1f88771206b4bf3c8b464456331ec6619e52827a56d050410968", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35fd3150102fa434efdd6c5ba0c6a097cfb96bb012515790f420e6274ebc1f7b"} -2023-12-15T23:37:51.172Z INFO initializing dbft {"height": 5533, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:51.172Z debug frostfs-node/morph.go:229 new block {"index": 5532} -2023-12-15T23:37:52.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5532, "blockHeight": 5532, "took": "7.616866ms"} -2023-12-15T23:37:52.171Z INFO sending PrepareRequest {"height": 5533, "view": 0} -2023-12-15T23:37:52.172Z INFO sending Commit {"height": 5533, "view": 0} -2023-12-15T23:37:52.172Z INFO approving block {"height": 5533, "hash": "a5c7546426f9c8b2b1cf9e1d7852fddab2bd852424d0e36c85163b88cc0cce8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d734f41054f1f88771206b4bf3c8b464456331ec6619e52827a56d050410968"} -2023-12-15T23:37:52.173Z INFO initializing dbft {"height": 5534, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:52.174Z debug frostfs-node/morph.go:229 new block {"index": 5533} -2023-12-15T23:37:53.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5533, "blockHeight": 5533, "took": "6.597622ms"} -2023-12-15T23:37:53.174Z INFO sending PrepareRequest {"height": 5534, "view": 0} -2023-12-15T23:37:53.174Z INFO sending Commit {"height": 5534, "view": 0} -2023-12-15T23:37:53.174Z INFO approving block {"height": 5534, "hash": "0238a0f333c9cac49b2ef0aac7e7c81e4ed94e54124a2e60c22a0e5399ce7a78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5c7546426f9c8b2b1cf9e1d7852fddab2bd852424d0e36c85163b88cc0cce8b"} -2023-12-15T23:37:53.178Z INFO initializing dbft {"height": 5535, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:53.178Z debug frostfs-node/morph.go:229 new block {"index": 5534} -2023-12-15T23:37:54.112Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5534, "blockHeight": 5534, "took": "6.302544ms"} -2023-12-15T23:37:54.175Z INFO sending PrepareRequest {"height": 5535, "view": 0} -2023-12-15T23:37:54.176Z INFO sending Commit {"height": 5535, "view": 0} -2023-12-15T23:37:54.176Z INFO approving block {"height": 5535, "hash": "072163f260c3e14cbc32ac574cd91275d88abca92954777627e2813d01a99468", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0238a0f333c9cac49b2ef0aac7e7c81e4ed94e54124a2e60c22a0e5399ce7a78"} -2023-12-15T23:37:54.178Z INFO initializing dbft {"height": 5536, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:54.179Z debug frostfs-node/morph.go:229 new block {"index": 5535} -2023-12-15T23:37:55.116Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5535, "blockHeight": 5535, "took": "10.094487ms"} -2023-12-15T23:37:55.178Z INFO sending PrepareRequest {"height": 5536, "view": 0} -2023-12-15T23:37:55.178Z INFO sending Commit {"height": 5536, "view": 0} -2023-12-15T23:37:55.178Z INFO approving block {"height": 5536, "hash": "1ce394cd66b575c84dd2eab5ef8ecb7742a13ecb212f2d4b46f1a50b712391ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "072163f260c3e14cbc32ac574cd91275d88abca92954777627e2813d01a99468"} -2023-12-15T23:37:55.180Z INFO initializing dbft {"height": 5537, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:55.181Z debug frostfs-node/morph.go:229 new block {"index": 5536} -2023-12-15T23:37:56.118Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5536, "blockHeight": 5536, "took": "9.714308ms"} -2023-12-15T23:37:56.179Z INFO sending PrepareRequest {"height": 5537, "view": 0} -2023-12-15T23:37:56.180Z INFO sending Commit {"height": 5537, "view": 0} -2023-12-15T23:37:56.180Z INFO approving block {"height": 5537, "hash": "ef326b89d2f6cc8eaeb994aed59b4f6b53bcfdbb232c5c981a3618969aad665d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ce394cd66b575c84dd2eab5ef8ecb7742a13ecb212f2d4b46f1a50b712391ad"} -2023-12-15T23:37:56.182Z INFO initializing dbft {"height": 5538, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:56.183Z debug frostfs-node/morph.go:229 new block {"index": 5537} -2023-12-15T23:37:57.116Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5537, "blockHeight": 5537, "took": "6.558806ms"} -2023-12-15T23:37:57.181Z INFO sending PrepareRequest {"height": 5538, "view": 0} -2023-12-15T23:37:57.181Z INFO sending Commit {"height": 5538, "view": 0} -2023-12-15T23:37:57.182Z INFO approving block {"height": 5538, "hash": "b1a007bd6e98a5497399e9aafc95f5416e2af56004e16bafc93203b349272d9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef326b89d2f6cc8eaeb994aed59b4f6b53bcfdbb232c5c981a3618969aad665d"} -2023-12-15T23:37:57.183Z INFO initializing dbft {"height": 5539, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:57.184Z debug frostfs-node/morph.go:229 new block {"index": 5538} -2023-12-15T23:37:58.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5538, "blockHeight": 5538, "took": "9.421167ms"} -2023-12-15T23:37:58.183Z INFO sending PrepareRequest {"height": 5539, "view": 0} -2023-12-15T23:37:58.183Z INFO sending Commit {"height": 5539, "view": 0} -2023-12-15T23:37:58.183Z INFO approving block {"height": 5539, "hash": "9e358943863eb40ff30aec2c4c21416adfaf581063cd4d9303375b33cfa1b96d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1a007bd6e98a5497399e9aafc95f5416e2af56004e16bafc93203b349272d9c"} -2023-12-15T23:37:58.185Z INFO initializing dbft {"height": 5540, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:58.186Z debug frostfs-node/morph.go:229 new block {"index": 5539} -2023-12-15T23:37:59.117Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5539, "blockHeight": 5539, "took": "6.559251ms"} -2023-12-15T23:37:59.186Z INFO sending PrepareRequest {"height": 5540, "view": 0} -2023-12-15T23:37:59.186Z INFO sending Commit {"height": 5540, "view": 0} -2023-12-15T23:37:59.187Z INFO approving block {"height": 5540, "hash": "bce2eb74cbe9e0bdbc798d772537410734d5250a8b4e4d5ee27bd5fb662187ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e358943863eb40ff30aec2c4c21416adfaf581063cd4d9303375b33cfa1b96d"} -2023-12-15T23:37:59.188Z INFO initializing dbft {"height": 5541, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:37:59.189Z debug frostfs-node/morph.go:229 new block {"index": 5540} -2023-12-15T23:38:00.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5540, "blockHeight": 5540, "took": "6.871291ms"} -2023-12-15T23:38:00.189Z INFO sending PrepareRequest {"height": 5541, "view": 0} -2023-12-15T23:38:00.189Z INFO sending Commit {"height": 5541, "view": 0} -2023-12-15T23:38:00.190Z INFO approving block {"height": 5541, "hash": "12fccdc7ac48b88512841426bfdf1b99af4318419491100814102d6a5a612908", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bce2eb74cbe9e0bdbc798d772537410734d5250a8b4e4d5ee27bd5fb662187ef"} -2023-12-15T23:38:00.191Z INFO initializing dbft {"height": 5542, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:00.192Z debug frostfs-node/morph.go:229 new block {"index": 5541} -2023-12-15T23:38:01.123Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5541, "blockHeight": 5541, "took": "9.891274ms"} -2023-12-15T23:38:01.190Z INFO sending PrepareRequest {"height": 5542, "view": 0} -2023-12-15T23:38:01.191Z INFO sending Commit {"height": 5542, "view": 0} -2023-12-15T23:38:01.191Z INFO approving block {"height": 5542, "hash": "83f670b34973d14d25ccd91688c2ca6c8521c540ce7f8ef8fe87528a99ce87c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12fccdc7ac48b88512841426bfdf1b99af4318419491100814102d6a5a612908"} -2023-12-15T23:38:01.192Z INFO initializing dbft {"height": 5543, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:01.193Z debug frostfs-node/morph.go:229 new block {"index": 5542} -2023-12-15T23:38:01.196Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:38:01.198Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 23, "iteration": 3, "error": "no data for 2 iteration in 23 epoch for consumers's trusts"} -2023-12-15T23:38:01.203Z INFO runtime log {"tx": "6d1043878ae796eb4ee3f6202b2019bfd15c7c0d39b1c8a85181f8b803576ad3", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:38:02.123Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5542, "blockHeight": 5542, "took": "9.570943ms"} -2023-12-15T23:38:02.192Z INFO sending PrepareRequest {"height": 5543, "view": 0} -2023-12-15T23:38:02.192Z INFO sending Commit {"height": 5543, "view": 0} -2023-12-15T23:38:02.192Z INFO approving block {"height": 5543, "hash": "4ed5ffb0eff0115595df9754ce30d5ca1911132cefc7c34b3758a9574f06e10f", "tx_count": 1, "merkle": "d90fd3b13a818636b5cb8fcbf1c3df83ab631b000a6f7601d3203ce43078745e", "prev": "83f670b34973d14d25ccd91688c2ca6c8521c540ce7f8ef8fe87528a99ce87c5"} -2023-12-15T23:38:02.194Z INFO runtime log {"tx": "5e747830e43c20d301766f0a001b63ab83dfc3f1cb8fcbb53686813ab1d30fd9", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:38:02.196Z INFO initializing dbft {"height": 5544, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:02.197Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 25} -2023-12-15T23:38:02.197Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:38:02.197Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 25} -2023-12-15T23:38:02.197Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 25} -2023-12-15T23:38:02.197Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 25} -2023-12-15T23:38:02.197Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:38:02.197Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 25} -2023-12-15T23:38:02.197Z debug controller/calls.go:95 starting to report local trust values {"epoch": 24} -2023-12-15T23:38:02.197Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 24} -2023-12-15T23:38:02.198Z debug frostfs-node/morph.go:229 new block {"index": 5543} -2023-12-15T23:38:02.202Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:38:02.204Z debug controller/calls.go:146 reporting successfully finished {"epoch": 24} -2023-12-15T23:38:02.204Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 24} -2023-12-15T23:38:02.205Z INFO runtime log {"tx": "25aacc7bb7b16278bc87891e5478c79e9d1a17b4c4c119d6c91444fd3845bd79", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:38:02.209Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 5546, "tx_hash": "e0e9a6a90bd2a1f1918363e31dbfe47a8b48761bad595cd8859e3b12d3e3a0be"} -2023-12-15T23:38:02.218Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:38:02.218Z info audit/handlers.go:13 new round of audit {"epoch": 25} -2023-12-15T23:38:02.218Z info settlement/calls.go:26 new audit settlement event {"epoch": 25} -2023-12-15T23:38:02.219Z info settlement/handlers.go:14 process audit settlements {"epoch": 25} -2023-12-15T23:38:02.219Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 25} -2023-12-15T23:38:02.221Z info settlement/handlers.go:18 audit processing finished {"epoch": 25} -2023-12-15T23:38:02.223Z info audit/process.go:39 select containers for audit {"epoch": 25, "amount": 0} -2023-12-15T23:38:02.228Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 5546, "tx_hash": "e3de33b4a177cab329a31e16878e858e4114720a0c9db5a6c63116115939fcb7"} -2023-12-15T23:38:03.127Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 5543, "blockHeight": 5543, "took": "11.9816ms"} -2023-12-15T23:38:03.193Z INFO sending PrepareRequest {"height": 5544, "view": 0} -2023-12-15T23:38:03.194Z INFO sending Commit {"height": 5544, "view": 0} -2023-12-15T23:38:03.194Z INFO approving block {"height": 5544, "hash": "c84145a71271e41be2ab2538342bf865dab4385d2d5e2a64654aca5ed0ef88d7", "tx_count": 3, "merkle": "4ddef77c30c9f7842bd77afe33ed7576401608665b4a83163cdbcb3f9bc174a5", "prev": "4ed5ffb0eff0115595df9754ce30d5ca1911132cefc7c34b3758a9574f06e10f"} -2023-12-15T23:38:03.195Z INFO runtime log {"tx": "7ac952e0612e8d67f0550495786b505782f9797ab975d83aa7801d438472854d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:38:03.197Z INFO initializing dbft {"height": 5545, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:03.197Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 24} -2023-12-15T23:38:03.198Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 24} -2023-12-15T23:38:03.198Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 24} -2023-12-15T23:38:03.199Z debug frostfs-node/morph.go:229 new block {"index": 5544} -2023-12-15T23:38:04.128Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 5544, "blockHeight": 5544, "took": "11.406354ms"} -2023-12-15T23:38:04.196Z INFO sending PrepareRequest {"height": 5545, "view": 0} -2023-12-15T23:38:04.196Z INFO sending Commit {"height": 5545, "view": 0} -2023-12-15T23:38:04.196Z INFO approving block {"height": 5545, "hash": "2979601484f8cbb2ee1902e8ed69788ccf93b99c58ffcf34264fd0f524bef03a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c84145a71271e41be2ab2538342bf865dab4385d2d5e2a64654aca5ed0ef88d7"} -2023-12-15T23:38:04.198Z INFO initializing dbft {"height": 5546, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:04.198Z debug frostfs-node/morph.go:229 new block {"index": 5545} -2023-12-15T23:38:05.124Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5545, "blockHeight": 5545, "took": "6.433129ms"} -2023-12-15T23:38:05.197Z INFO sending PrepareRequest {"height": 5546, "view": 0} -2023-12-15T23:38:05.198Z INFO sending Commit {"height": 5546, "view": 0} -2023-12-15T23:38:05.198Z INFO approving block {"height": 5546, "hash": "6a0462a1074145508859f6f067227ec9267a7242fe11a28dfd5f85e07401046a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2979601484f8cbb2ee1902e8ed69788ccf93b99c58ffcf34264fd0f524bef03a"} -2023-12-15T23:38:05.199Z INFO initializing dbft {"height": 5547, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:05.200Z debug frostfs-node/morph.go:229 new block {"index": 5546} -2023-12-15T23:38:06.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5546, "blockHeight": 5546, "took": "10.048537ms"} -2023-12-15T23:38:06.199Z INFO sending PrepareRequest {"height": 5547, "view": 0} -2023-12-15T23:38:06.200Z INFO sending Commit {"height": 5547, "view": 0} -2023-12-15T23:38:06.200Z INFO approving block {"height": 5547, "hash": "a512d927a2195d7aea1dc3b1a166a431fc0d25f8067dba5cf94f5acc53757d0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a0462a1074145508859f6f067227ec9267a7242fe11a28dfd5f85e07401046a"} -2023-12-15T23:38:06.202Z INFO initializing dbft {"height": 5548, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:06.202Z debug frostfs-node/morph.go:229 new block {"index": 5547} -2023-12-15T23:38:07.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5547, "blockHeight": 5547, "took": "6.701181ms"} -2023-12-15T23:38:07.201Z INFO sending PrepareRequest {"height": 5548, "view": 0} -2023-12-15T23:38:07.202Z INFO sending Commit {"height": 5548, "view": 0} -2023-12-15T23:38:07.202Z INFO approving block {"height": 5548, "hash": "9bf3205748f65d5f68a671679371c87e6a222b83962eacaa4be3161da2c1d2b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a512d927a2195d7aea1dc3b1a166a431fc0d25f8067dba5cf94f5acc53757d0b"} -2023-12-15T23:38:07.204Z INFO initializing dbft {"height": 5549, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:07.204Z debug frostfs-node/morph.go:229 new block {"index": 5548} -2023-12-15T23:38:08.127Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5548, "blockHeight": 5548, "took": "6.531261ms"} -2023-12-15T23:38:08.203Z INFO sending PrepareRequest {"height": 5549, "view": 0} -2023-12-15T23:38:08.204Z INFO sending Commit {"height": 5549, "view": 0} -2023-12-15T23:38:08.204Z INFO approving block {"height": 5549, "hash": "66df1b333c16444ed839d323249babe2ded475457746d387283d5f06c46490f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9bf3205748f65d5f68a671679371c87e6a222b83962eacaa4be3161da2c1d2b2"} -2023-12-15T23:38:08.205Z INFO initializing dbft {"height": 5550, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:08.206Z debug frostfs-node/morph.go:229 new block {"index": 5549} -2023-12-15T23:38:09.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5549, "blockHeight": 5549, "took": "6.759208ms"} -2023-12-15T23:38:09.206Z INFO sending PrepareRequest {"height": 5550, "view": 0} -2023-12-15T23:38:09.206Z INFO sending Commit {"height": 5550, "view": 0} -2023-12-15T23:38:09.206Z INFO approving block {"height": 5550, "hash": "b28a7506260c165898d7917bcb3934c72d075b0f07dd5c8c3fbe7669c48d8ed7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66df1b333c16444ed839d323249babe2ded475457746d387283d5f06c46490f3"} -2023-12-15T23:38:09.208Z INFO initializing dbft {"height": 5551, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:09.209Z debug frostfs-node/morph.go:229 new block {"index": 5550} -2023-12-15T23:38:10.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5550, "blockHeight": 5550, "took": "6.458608ms"} -2023-12-15T23:38:10.208Z INFO sending PrepareRequest {"height": 5551, "view": 0} -2023-12-15T23:38:10.208Z INFO sending Commit {"height": 5551, "view": 0} -2023-12-15T23:38:10.209Z INFO approving block {"height": 5551, "hash": "0acda4fc528354d768971102a20e48f84b0c3dc4952a11ce738060d2c4780116", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b28a7506260c165898d7917bcb3934c72d075b0f07dd5c8c3fbe7669c48d8ed7"} -2023-12-15T23:38:10.210Z INFO initializing dbft {"height": 5552, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:10.211Z debug frostfs-node/morph.go:229 new block {"index": 5551} -2023-12-15T23:38:11.130Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5551, "blockHeight": 5551, "took": "7.491389ms"} -2023-12-15T23:38:11.210Z INFO sending PrepareRequest {"height": 5552, "view": 0} -2023-12-15T23:38:11.210Z INFO sending Commit {"height": 5552, "view": 0} -2023-12-15T23:38:11.211Z INFO approving block {"height": 5552, "hash": "4c4dd448fcfc0c2a81ca534d6d6ef628395db14b35e0019eae39d956ef0b7558", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0acda4fc528354d768971102a20e48f84b0c3dc4952a11ce738060d2c4780116"} -2023-12-15T23:38:11.212Z INFO initializing dbft {"height": 5553, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:11.213Z debug frostfs-node/morph.go:229 new block {"index": 5552} -2023-12-15T23:38:12.129Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5552, "blockHeight": 5552, "took": "5.104809ms"} -2023-12-15T23:38:12.212Z INFO sending PrepareRequest {"height": 5553, "view": 0} -2023-12-15T23:38:12.213Z INFO sending Commit {"height": 5553, "view": 0} -2023-12-15T23:38:12.213Z INFO approving block {"height": 5553, "hash": "01ee55fc4b1c940c7ea8c4a68b5b2c723b9792a15be841032548a6e655992f56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c4dd448fcfc0c2a81ca534d6d6ef628395db14b35e0019eae39d956ef0b7558"} -2023-12-15T23:38:12.215Z INFO initializing dbft {"height": 5554, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:12.215Z debug frostfs-node/morph.go:229 new block {"index": 5553} -2023-12-15T23:38:13.133Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5553, "blockHeight": 5553, "took": "8.215056ms"} -2023-12-15T23:38:13.214Z INFO sending PrepareRequest {"height": 5554, "view": 0} -2023-12-15T23:38:13.214Z INFO sending Commit {"height": 5554, "view": 0} -2023-12-15T23:38:13.215Z INFO approving block {"height": 5554, "hash": "a70e38f7d52a6a4835f0b25daf63f749e930d08cd6c17f05b6ce13ee579c0ac1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01ee55fc4b1c940c7ea8c4a68b5b2c723b9792a15be841032548a6e655992f56"} -2023-12-15T23:38:13.217Z INFO initializing dbft {"height": 5555, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:13.217Z debug frostfs-node/morph.go:229 new block {"index": 5554} -2023-12-15T23:38:14.133Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5554, "blockHeight": 5554, "took": "7.120288ms"} -2023-12-15T23:38:14.216Z INFO sending PrepareRequest {"height": 5555, "view": 0} -2023-12-15T23:38:14.216Z INFO sending Commit {"height": 5555, "view": 0} -2023-12-15T23:38:14.217Z INFO approving block {"height": 5555, "hash": "f92eac52e7a099959f4e22ffc748d7c96e9ae8d6225a34bcb56da4f1a2d24b7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a70e38f7d52a6a4835f0b25daf63f749e930d08cd6c17f05b6ce13ee579c0ac1"} -2023-12-15T23:38:14.218Z INFO initializing dbft {"height": 5556, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:14.218Z debug frostfs-node/morph.go:229 new block {"index": 5555} -2023-12-15T23:38:15.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5555, "blockHeight": 5555, "took": "6.805155ms"} -2023-12-15T23:38:15.219Z INFO sending PrepareRequest {"height": 5556, "view": 0} -2023-12-15T23:38:15.219Z INFO sending Commit {"height": 5556, "view": 0} -2023-12-15T23:38:15.220Z INFO approving block {"height": 5556, "hash": "365b776d16f7a4ac7c1d40ca92867818b894d406308c38e88ff1649c81e51224", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f92eac52e7a099959f4e22ffc748d7c96e9ae8d6225a34bcb56da4f1a2d24b7c"} -2023-12-15T23:38:15.221Z INFO initializing dbft {"height": 5557, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:15.222Z debug frostfs-node/morph.go:229 new block {"index": 5556} -2023-12-15T23:38:16.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5556, "blockHeight": 5556, "took": "6.941184ms"} -2023-12-15T23:38:16.220Z INFO sending PrepareRequest {"height": 5557, "view": 0} -2023-12-15T23:38:16.221Z INFO sending Commit {"height": 5557, "view": 0} -2023-12-15T23:38:16.221Z INFO approving block {"height": 5557, "hash": "440a841df8725d1722245a944d9774a33282ed275696e13fec036bbf1929312c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "365b776d16f7a4ac7c1d40ca92867818b894d406308c38e88ff1649c81e51224"} -2023-12-15T23:38:16.222Z INFO initializing dbft {"height": 5558, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:16.223Z debug frostfs-node/morph.go:229 new block {"index": 5557} -2023-12-15T23:38:17.135Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5557, "blockHeight": 5557, "took": "6.806381ms"} -2023-12-15T23:38:17.223Z INFO sending PrepareRequest {"height": 5558, "view": 0} -2023-12-15T23:38:17.223Z INFO sending Commit {"height": 5558, "view": 0} -2023-12-15T23:38:17.224Z INFO approving block {"height": 5558, "hash": "5b0666d823a3ae6fab212605e3f78590422d430f8e94f08113355bf32a716f4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "440a841df8725d1722245a944d9774a33282ed275696e13fec036bbf1929312c"} -2023-12-15T23:38:17.226Z INFO initializing dbft {"height": 5559, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:17.226Z debug frostfs-node/morph.go:229 new block {"index": 5558} -2023-12-15T23:38:18.135Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5558, "blockHeight": 5558, "took": "5.952244ms"} -2023-12-15T23:38:18.225Z INFO sending PrepareRequest {"height": 5559, "view": 0} -2023-12-15T23:38:18.226Z INFO sending Commit {"height": 5559, "view": 0} -2023-12-15T23:38:18.226Z INFO approving block {"height": 5559, "hash": "98f5fe19cf5649aaa86054f2a133ade0bf47a52497bac48605714356e8fb0bf0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b0666d823a3ae6fab212605e3f78590422d430f8e94f08113355bf32a716f4d"} -2023-12-15T23:38:18.228Z INFO initializing dbft {"height": 5560, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:18.228Z debug frostfs-node/morph.go:229 new block {"index": 5559} -2023-12-15T23:38:19.136Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5559, "blockHeight": 5559, "took": "6.492296ms"} -2023-12-15T23:38:19.227Z INFO sending PrepareRequest {"height": 5560, "view": 0} -2023-12-15T23:38:19.227Z INFO sending Commit {"height": 5560, "view": 0} -2023-12-15T23:38:19.228Z INFO approving block {"height": 5560, "hash": "c4e7a08448b31f814ad303a714e4121b3d54b4fa418723d8385e05ee0a49e2ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98f5fe19cf5649aaa86054f2a133ade0bf47a52497bac48605714356e8fb0bf0"} -2023-12-15T23:38:19.229Z INFO initializing dbft {"height": 5561, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:19.230Z debug frostfs-node/morph.go:229 new block {"index": 5560} -2023-12-15T23:38:20.139Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5560, "blockHeight": 5560, "took": "7.736057ms"} -2023-12-15T23:38:20.229Z INFO sending PrepareRequest {"height": 5561, "view": 0} -2023-12-15T23:38:20.229Z INFO sending Commit {"height": 5561, "view": 0} -2023-12-15T23:38:20.230Z INFO approving block {"height": 5561, "hash": "a389d152696938405ac4fa1d3185ddc2375656aa0ff23a28d3f20b42816f5109", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4e7a08448b31f814ad303a714e4121b3d54b4fa418723d8385e05ee0a49e2ac"} -2023-12-15T23:38:20.231Z INFO initializing dbft {"height": 5562, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:20.232Z debug frostfs-node/morph.go:229 new block {"index": 5561} -2023-12-15T23:38:21.138Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5561, "blockHeight": 5561, "took": "6.633953ms"} -2023-12-15T23:38:21.231Z INFO sending PrepareRequest {"height": 5562, "view": 0} -2023-12-15T23:38:21.232Z INFO sending Commit {"height": 5562, "view": 0} -2023-12-15T23:38:21.232Z INFO approving block {"height": 5562, "hash": "426e45f305361bcb553cde0d9f5654fc187215bc3a4256045779c1eba256b731", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a389d152696938405ac4fa1d3185ddc2375656aa0ff23a28d3f20b42816f5109"} -2023-12-15T23:38:21.234Z INFO initializing dbft {"height": 5563, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:21.234Z debug frostfs-node/morph.go:229 new block {"index": 5562} -2023-12-15T23:38:22.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5562, "blockHeight": 5562, "took": "7.155608ms"} -2023-12-15T23:38:22.233Z INFO sending PrepareRequest {"height": 5563, "view": 0} -2023-12-15T23:38:22.233Z INFO sending Commit {"height": 5563, "view": 0} -2023-12-15T23:38:22.233Z INFO approving block {"height": 5563, "hash": "f0a0d5b5ff9168fcab5a630962fdee4160b748f9c474062d1afb34950aed850a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "426e45f305361bcb553cde0d9f5654fc187215bc3a4256045779c1eba256b731"} -2023-12-15T23:38:22.235Z INFO initializing dbft {"height": 5564, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:22.236Z debug frostfs-node/morph.go:229 new block {"index": 5563} -2023-12-15T23:38:23.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5563, "blockHeight": 5563, "took": "6.431158ms"} -2023-12-15T23:38:23.235Z INFO sending PrepareRequest {"height": 5564, "view": 0} -2023-12-15T23:38:23.235Z INFO sending Commit {"height": 5564, "view": 0} -2023-12-15T23:38:23.236Z INFO approving block {"height": 5564, "hash": "97dfe5009c84770442c325718f86eb7f2a087e5d1a1d5be37dbdb7c82f6fe75f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0a0d5b5ff9168fcab5a630962fdee4160b748f9c474062d1afb34950aed850a"} -2023-12-15T23:38:23.237Z INFO initializing dbft {"height": 5565, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:23.238Z debug frostfs-node/morph.go:229 new block {"index": 5564} -2023-12-15T23:38:24.143Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5564, "blockHeight": 5564, "took": "7.703598ms"} -2023-12-15T23:38:24.237Z INFO sending PrepareRequest {"height": 5565, "view": 0} -2023-12-15T23:38:24.238Z INFO sending Commit {"height": 5565, "view": 0} -2023-12-15T23:38:24.238Z INFO approving block {"height": 5565, "hash": "a5d84393b2cfe7229b0c9c7d4d53063f92193ef950f27fbe1c517c14aadb22d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97dfe5009c84770442c325718f86eb7f2a087e5d1a1d5be37dbdb7c82f6fe75f"} -2023-12-15T23:38:24.239Z INFO initializing dbft {"height": 5566, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:24.240Z debug frostfs-node/morph.go:229 new block {"index": 5565} -2023-12-15T23:38:25.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5565, "blockHeight": 5565, "took": "6.367556ms"} -2023-12-15T23:38:25.240Z INFO sending PrepareRequest {"height": 5566, "view": 0} -2023-12-15T23:38:25.240Z INFO sending Commit {"height": 5566, "view": 0} -2023-12-15T23:38:25.240Z INFO approving block {"height": 5566, "hash": "5d51bcdb5d6f5bbfacbc68b1724d5acc2a248c9b6a0824de823b28510a389e50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5d84393b2cfe7229b0c9c7d4d53063f92193ef950f27fbe1c517c14aadb22d5"} -2023-12-15T23:38:25.242Z INFO initializing dbft {"height": 5567, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:25.242Z debug frostfs-node/morph.go:229 new block {"index": 5566} -2023-12-15T23:38:26.144Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5566, "blockHeight": 5566, "took": "6.390266ms"} -2023-12-15T23:38:26.242Z INFO sending PrepareRequest {"height": 5567, "view": 0} -2023-12-15T23:38:26.242Z INFO sending Commit {"height": 5567, "view": 0} -2023-12-15T23:38:26.242Z INFO approving block {"height": 5567, "hash": "da821cc042e470a7dc1fc4049d622cc45c5720b60ae806c23b9d70be1ae95bfb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d51bcdb5d6f5bbfacbc68b1724d5acc2a248c9b6a0824de823b28510a389e50"} -2023-12-15T23:38:26.244Z INFO initializing dbft {"height": 5568, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:26.245Z debug frostfs-node/morph.go:229 new block {"index": 5567} -2023-12-15T23:38:26.249Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:38:26.255Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:38:26.255Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:38:27.145Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5567, "blockHeight": 5567, "took": "7.077137ms"} -2023-12-15T23:38:27.243Z INFO sending PrepareRequest {"height": 5568, "view": 0} -2023-12-15T23:38:27.244Z INFO sending Commit {"height": 5568, "view": 0} -2023-12-15T23:38:27.244Z INFO approving block {"height": 5568, "hash": "c1254889c93434120d5254d0617e71da293e404c68e424dd7d77e31da3dfd15f", "tx_count": 2, "merkle": "a0f55af6cfa06abccc787ba0219dc93c5bd1acca6d5b9112f928c51c17d54ed7", "prev": "da821cc042e470a7dc1fc4049d622cc45c5720b60ae806c23b9d70be1ae95bfb"} -2023-12-15T23:38:27.245Z INFO runtime log {"tx": "d4b3007649fed0c7a32a5fdde3699d4588b7f667a1cb988e1d73c1e31acc2321", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:38:27.245Z INFO runtime log {"tx": "d4b3007649fed0c7a32a5fdde3699d4588b7f667a1cb988e1d73c1e31acc2321", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:38:27.247Z INFO initializing dbft {"height": 5569, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:27.248Z debug frostfs-node/morph.go:229 new block {"index": 5568} -2023-12-15T23:38:28.150Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5568, "blockHeight": 5568, "took": "11.086854ms"} -2023-12-15T23:38:28.245Z INFO sending PrepareRequest {"height": 5569, "view": 0} -2023-12-15T23:38:28.245Z INFO sending Commit {"height": 5569, "view": 0} -2023-12-15T23:38:28.246Z INFO approving block {"height": 5569, "hash": "1919f742fa346c94b89ee2556875cfa6ff8b9c9ecb53dc50da41a6d097575430", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1254889c93434120d5254d0617e71da293e404c68e424dd7d77e31da3dfd15f"} -2023-12-15T23:38:28.248Z INFO initializing dbft {"height": 5570, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:28.248Z debug frostfs-node/morph.go:229 new block {"index": 5569} -2023-12-15T23:38:29.148Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5569, "blockHeight": 5569, "took": "7.961975ms"} -2023-12-15T23:38:29.247Z INFO sending PrepareRequest {"height": 5570, "view": 0} -2023-12-15T23:38:29.248Z INFO sending Commit {"height": 5570, "view": 0} -2023-12-15T23:38:29.248Z INFO approving block {"height": 5570, "hash": "452e31aca79996d48046b14bbeadb363a9a977a7368f4e15f95fab0979346282", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1919f742fa346c94b89ee2556875cfa6ff8b9c9ecb53dc50da41a6d097575430"} -2023-12-15T23:38:29.251Z INFO initializing dbft {"height": 5571, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:29.252Z debug frostfs-node/morph.go:229 new block {"index": 5570} -2023-12-15T23:38:30.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5570, "blockHeight": 5570, "took": "6.651386ms"} -2023-12-15T23:38:30.250Z INFO sending PrepareRequest {"height": 5571, "view": 0} -2023-12-15T23:38:30.251Z INFO sending Commit {"height": 5571, "view": 0} -2023-12-15T23:38:30.251Z INFO approving block {"height": 5571, "hash": "23d24e61a0050c35d6bbea197c894df7e3038206ed72239a0887c6954c293166", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "452e31aca79996d48046b14bbeadb363a9a977a7368f4e15f95fab0979346282"} -2023-12-15T23:38:30.253Z INFO initializing dbft {"height": 5572, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:30.254Z debug frostfs-node/morph.go:229 new block {"index": 5571} -2023-12-15T23:38:31.148Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5571, "blockHeight": 5571, "took": "6.425978ms"} -2023-12-15T23:38:31.252Z INFO sending PrepareRequest {"height": 5572, "view": 0} -2023-12-15T23:38:31.252Z INFO sending Commit {"height": 5572, "view": 0} -2023-12-15T23:38:31.253Z INFO approving block {"height": 5572, "hash": "040e27a8fccb065ccfc7ecf1f3abb786698cb231df048a98e38b240833440d27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23d24e61a0050c35d6bbea197c894df7e3038206ed72239a0887c6954c293166"} -2023-12-15T23:38:31.254Z INFO initializing dbft {"height": 5573, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:31.255Z debug frostfs-node/morph.go:229 new block {"index": 5572} -2023-12-15T23:38:32.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5572, "blockHeight": 5572, "took": "6.049111ms"} -2023-12-15T23:38:32.254Z INFO sending PrepareRequest {"height": 5573, "view": 0} -2023-12-15T23:38:32.255Z INFO sending Commit {"height": 5573, "view": 0} -2023-12-15T23:38:32.255Z INFO approving block {"height": 5573, "hash": "799f92e68db7c829b85b31c87f07e7ac1ecacc45a4bcc7790f405897b8d482fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "040e27a8fccb065ccfc7ecf1f3abb786698cb231df048a98e38b240833440d27"} -2023-12-15T23:38:32.256Z INFO initializing dbft {"height": 5574, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:32.257Z debug frostfs-node/morph.go:229 new block {"index": 5573} -2023-12-15T23:38:33.154Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5573, "blockHeight": 5573, "took": "10.202152ms"} -2023-12-15T23:38:33.256Z INFO sending PrepareRequest {"height": 5574, "view": 0} -2023-12-15T23:38:33.256Z INFO sending Commit {"height": 5574, "view": 0} -2023-12-15T23:38:33.256Z INFO approving block {"height": 5574, "hash": "1091f5f7963767b5035bf639c5dadd337ac16aaa9f23edbe3cf7e9ec7b06c545", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "799f92e68db7c829b85b31c87f07e7ac1ecacc45a4bcc7790f405897b8d482fa"} -2023-12-15T23:38:33.257Z INFO initializing dbft {"height": 5575, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:33.258Z debug frostfs-node/morph.go:229 new block {"index": 5574} -2023-12-15T23:38:34.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5574, "blockHeight": 5574, "took": "8.100485ms"} -2023-12-15T23:38:34.258Z INFO sending PrepareRequest {"height": 5575, "view": 0} -2023-12-15T23:38:34.258Z INFO sending Commit {"height": 5575, "view": 0} -2023-12-15T23:38:34.258Z INFO approving block {"height": 5575, "hash": "5e0af0ab01989bbf872065a392974eb35e8f87fe9222094f44f828c4bc025034", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1091f5f7963767b5035bf639c5dadd337ac16aaa9f23edbe3cf7e9ec7b06c545"} -2023-12-15T23:38:34.260Z INFO initializing dbft {"height": 5576, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:34.261Z debug frostfs-node/morph.go:229 new block {"index": 5575} -2023-12-15T23:38:35.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5575, "blockHeight": 5575, "took": "6.290545ms"} -2023-12-15T23:38:35.260Z INFO sending PrepareRequest {"height": 5576, "view": 0} -2023-12-15T23:38:35.261Z INFO sending Commit {"height": 5576, "view": 0} -2023-12-15T23:38:35.261Z INFO approving block {"height": 5576, "hash": "770ae153dc0008d914acda367a20640b06d9369c8357aeffe84d6bb6652f54c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e0af0ab01989bbf872065a392974eb35e8f87fe9222094f44f828c4bc025034"} -2023-12-15T23:38:35.264Z INFO initializing dbft {"height": 5577, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:35.265Z debug frostfs-node/morph.go:229 new block {"index": 5576} -2023-12-15T23:38:36.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5576, "blockHeight": 5576, "took": "5.5396ms"} -2023-12-15T23:38:36.263Z INFO sending PrepareRequest {"height": 5577, "view": 0} -2023-12-15T23:38:36.263Z INFO sending Commit {"height": 5577, "view": 0} -2023-12-15T23:38:36.263Z INFO approving block {"height": 5577, "hash": "2e48a61abdc9b5cd8610cada7324ec6c4d1c8258c6a95fa9dcee7ba090f53da5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "770ae153dc0008d914acda367a20640b06d9369c8357aeffe84d6bb6652f54c4"} -2023-12-15T23:38:36.264Z INFO initializing dbft {"height": 5578, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:36.265Z debug frostfs-node/morph.go:229 new block {"index": 5577} -2023-12-15T23:38:37.155Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5577, "blockHeight": 5577, "took": "6.817964ms"} -2023-12-15T23:38:37.265Z INFO sending PrepareRequest {"height": 5578, "view": 0} -2023-12-15T23:38:37.265Z INFO sending Commit {"height": 5578, "view": 0} -2023-12-15T23:38:37.265Z INFO approving block {"height": 5578, "hash": "00801ff6d309d082261845eebc14398569c3986cc9ca70785fbccad50c11883e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e48a61abdc9b5cd8610cada7324ec6c4d1c8258c6a95fa9dcee7ba090f53da5"} -2023-12-15T23:38:37.267Z INFO initializing dbft {"height": 5579, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:37.267Z debug frostfs-node/morph.go:229 new block {"index": 5578} -2023-12-15T23:38:38.154Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5578, "blockHeight": 5578, "took": "4.914176ms"} -2023-12-15T23:38:38.267Z INFO sending PrepareRequest {"height": 5579, "view": 0} -2023-12-15T23:38:38.267Z INFO sending Commit {"height": 5579, "view": 0} -2023-12-15T23:38:38.267Z INFO approving block {"height": 5579, "hash": "b0a7c2992c4975135ae1737b6aa8427b1e3387daee991d947db63666b36881eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00801ff6d309d082261845eebc14398569c3986cc9ca70785fbccad50c11883e"} -2023-12-15T23:38:38.268Z INFO initializing dbft {"height": 5580, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:38.269Z debug frostfs-node/morph.go:229 new block {"index": 5579} -2023-12-15T23:38:39.155Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5579, "blockHeight": 5579, "took": "5.368063ms"} -2023-12-15T23:38:39.269Z INFO sending PrepareRequest {"height": 5580, "view": 0} -2023-12-15T23:38:39.269Z INFO sending Commit {"height": 5580, "view": 0} -2023-12-15T23:38:39.269Z INFO approving block {"height": 5580, "hash": "0aaa106480e65777ac330199ec35c2a01ef8610ff3cfed50519c1fe8f699d174", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0a7c2992c4975135ae1737b6aa8427b1e3387daee991d947db63666b36881eb"} -2023-12-15T23:38:39.271Z INFO initializing dbft {"height": 5581, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:39.271Z debug frostfs-node/morph.go:229 new block {"index": 5580} -2023-12-15T23:38:40.157Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5580, "blockHeight": 5580, "took": "6.84442ms"} -2023-12-15T23:38:40.271Z INFO sending PrepareRequest {"height": 5581, "view": 0} -2023-12-15T23:38:40.271Z INFO sending Commit {"height": 5581, "view": 0} -2023-12-15T23:38:40.271Z INFO approving block {"height": 5581, "hash": "dde16ed19730b24492963c4f06cb328de0a14473e931848676ef1bfa77d4ce6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0aaa106480e65777ac330199ec35c2a01ef8610ff3cfed50519c1fe8f699d174"} -2023-12-15T23:38:40.273Z INFO initializing dbft {"height": 5582, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:40.274Z debug frostfs-node/morph.go:229 new block {"index": 5581} -2023-12-15T23:38:41.160Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5581, "blockHeight": 5581, "took": "8.756042ms"} -2023-12-15T23:38:41.272Z INFO sending PrepareRequest {"height": 5582, "view": 0} -2023-12-15T23:38:41.273Z INFO sending Commit {"height": 5582, "view": 0} -2023-12-15T23:38:41.273Z INFO approving block {"height": 5582, "hash": "0dc727e3ddad893c1cd16b8c82b568f7d5a922c43007a6962c730235394b6c90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dde16ed19730b24492963c4f06cb328de0a14473e931848676ef1bfa77d4ce6e"} -2023-12-15T23:38:41.274Z INFO initializing dbft {"height": 5583, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:41.275Z debug frostfs-node/morph.go:229 new block {"index": 5582} -2023-12-15T23:38:42.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5582, "blockHeight": 5582, "took": "6.585873ms"} -2023-12-15T23:38:42.274Z INFO sending PrepareRequest {"height": 5583, "view": 0} -2023-12-15T23:38:42.274Z INFO sending Commit {"height": 5583, "view": 0} -2023-12-15T23:38:42.274Z INFO approving block {"height": 5583, "hash": "7956511be708401206ab0dd857a495a80ba4792631a6c3362125ddeb66b39c49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0dc727e3ddad893c1cd16b8c82b568f7d5a922c43007a6962c730235394b6c90"} -2023-12-15T23:38:42.276Z INFO initializing dbft {"height": 5584, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:42.277Z debug frostfs-node/morph.go:229 new block {"index": 5583} -2023-12-15T23:38:43.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5583, "blockHeight": 5583, "took": "6.198701ms"} -2023-12-15T23:38:43.275Z INFO sending PrepareRequest {"height": 5584, "view": 0} -2023-12-15T23:38:43.276Z INFO sending Commit {"height": 5584, "view": 0} -2023-12-15T23:38:43.276Z INFO approving block {"height": 5584, "hash": "baa78650f03631c518e61d08acd0671a0ab0a8239153732ca2c9f6293555fc0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7956511be708401206ab0dd857a495a80ba4792631a6c3362125ddeb66b39c49"} -2023-12-15T23:38:43.278Z INFO initializing dbft {"height": 5585, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:43.279Z debug frostfs-node/morph.go:229 new block {"index": 5584} -2023-12-15T23:38:44.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5584, "blockHeight": 5584, "took": "6.947903ms"} -2023-12-15T23:38:44.277Z INFO sending PrepareRequest {"height": 5585, "view": 0} -2023-12-15T23:38:44.277Z INFO sending Commit {"height": 5585, "view": 0} -2023-12-15T23:38:44.278Z INFO approving block {"height": 5585, "hash": "d4604ee2cfa4842d379765e67ee576042b3157cef0bb426c19fe72677742e10b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "baa78650f03631c518e61d08acd0671a0ab0a8239153732ca2c9f6293555fc0f"} -2023-12-15T23:38:44.280Z INFO initializing dbft {"height": 5586, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:44.281Z debug frostfs-node/morph.go:229 new block {"index": 5585} -2023-12-15T23:38:45.162Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5585, "blockHeight": 5585, "took": "7.20958ms"} -2023-12-15T23:38:45.279Z INFO sending PrepareRequest {"height": 5586, "view": 0} -2023-12-15T23:38:45.279Z INFO sending Commit {"height": 5586, "view": 0} -2023-12-15T23:38:45.280Z INFO approving block {"height": 5586, "hash": "9a44600df733f0eaeec3e5906d1d6dfb7cd257a7c44eec0b5d49760faca82da7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4604ee2cfa4842d379765e67ee576042b3157cef0bb426c19fe72677742e10b"} -2023-12-15T23:38:45.281Z INFO initializing dbft {"height": 5587, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:45.282Z debug frostfs-node/morph.go:229 new block {"index": 5586} -2023-12-15T23:38:46.162Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5586, "blockHeight": 5586, "took": "6.647223ms"} -2023-12-15T23:38:46.281Z INFO sending PrepareRequest {"height": 5587, "view": 0} -2023-12-15T23:38:46.282Z INFO sending Commit {"height": 5587, "view": 0} -2023-12-15T23:38:46.282Z INFO approving block {"height": 5587, "hash": "48bb17b26fcef9917105fa315f074d389f5bbaae0d0500fe3bf9480831883a4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a44600df733f0eaeec3e5906d1d6dfb7cd257a7c44eec0b5d49760faca82da7"} -2023-12-15T23:38:46.284Z INFO initializing dbft {"height": 5588, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:46.285Z debug frostfs-node/morph.go:229 new block {"index": 5587} -2023-12-15T23:38:47.163Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5587, "blockHeight": 5587, "took": "6.759647ms"} -2023-12-15T23:38:47.284Z INFO sending PrepareRequest {"height": 5588, "view": 0} -2023-12-15T23:38:47.284Z INFO sending Commit {"height": 5588, "view": 0} -2023-12-15T23:38:47.285Z INFO approving block {"height": 5588, "hash": "44926c0c7740a32a29bac17a8c1e9e840f434108f0fd616ffb8008ddaa199c27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48bb17b26fcef9917105fa315f074d389f5bbaae0d0500fe3bf9480831883a4c"} -2023-12-15T23:38:47.286Z INFO initializing dbft {"height": 5589, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:47.287Z debug frostfs-node/morph.go:229 new block {"index": 5588} -2023-12-15T23:38:48.164Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5588, "blockHeight": 5588, "took": "6.559511ms"} -2023-12-15T23:38:48.286Z INFO sending PrepareRequest {"height": 5589, "view": 0} -2023-12-15T23:38:48.286Z INFO sending Commit {"height": 5589, "view": 0} -2023-12-15T23:38:48.287Z INFO approving block {"height": 5589, "hash": "7134ea8f3e48e7b6266c82cf05ee69f8662e0217330dcec2ecab8cc297f0c088", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44926c0c7740a32a29bac17a8c1e9e840f434108f0fd616ffb8008ddaa199c27"} -2023-12-15T23:38:48.289Z INFO initializing dbft {"height": 5590, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:48.289Z debug frostfs-node/morph.go:229 new block {"index": 5589} -2023-12-15T23:38:49.165Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5589, "blockHeight": 5589, "took": "7.115088ms"} -2023-12-15T23:38:49.289Z INFO sending PrepareRequest {"height": 5590, "view": 0} -2023-12-15T23:38:49.289Z INFO sending Commit {"height": 5590, "view": 0} -2023-12-15T23:38:49.289Z INFO approving block {"height": 5590, "hash": "8e71f636296247b7146d4e6bdd07c1dd8069119b90426903c52d03d9a997c39e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7134ea8f3e48e7b6266c82cf05ee69f8662e0217330dcec2ecab8cc297f0c088"} -2023-12-15T23:38:49.291Z INFO initializing dbft {"height": 5591, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:49.292Z debug frostfs-node/morph.go:229 new block {"index": 5590} -2023-12-15T23:38:50.169Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5590, "blockHeight": 5590, "took": "9.448026ms"} -2023-12-15T23:38:50.290Z INFO sending PrepareRequest {"height": 5591, "view": 0} -2023-12-15T23:38:50.290Z INFO sending Commit {"height": 5591, "view": 0} -2023-12-15T23:38:50.291Z INFO approving block {"height": 5591, "hash": "d0512f1eaada42bb56ccbcba2e0417cc0885c4a6ed0295cdcad5de22c2b5712b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e71f636296247b7146d4e6bdd07c1dd8069119b90426903c52d03d9a997c39e"} -2023-12-15T23:38:50.292Z INFO initializing dbft {"height": 5592, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:50.293Z debug frostfs-node/morph.go:229 new block {"index": 5591} -2023-12-15T23:38:51.170Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5591, "blockHeight": 5591, "took": "9.142017ms"} -2023-12-15T23:38:51.292Z INFO sending PrepareRequest {"height": 5592, "view": 0} -2023-12-15T23:38:51.292Z INFO sending Commit {"height": 5592, "view": 0} -2023-12-15T23:38:51.293Z INFO approving block {"height": 5592, "hash": "e606f68063712a803e50cb6f8505e6a707243c61154aa6b4ade9c8c1c435c5eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0512f1eaada42bb56ccbcba2e0417cc0885c4a6ed0295cdcad5de22c2b5712b"} -2023-12-15T23:38:51.296Z INFO initializing dbft {"height": 5593, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:51.297Z debug frostfs-node/morph.go:229 new block {"index": 5592} -2023-12-15T23:38:52.172Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5592, "blockHeight": 5592, "took": "10.729754ms"} -2023-12-15T23:38:52.294Z INFO sending PrepareRequest {"height": 5593, "view": 0} -2023-12-15T23:38:52.294Z INFO sending Commit {"height": 5593, "view": 0} -2023-12-15T23:38:52.294Z INFO approving block {"height": 5593, "hash": "ec09186a431d86ccb5ede456385b38ff0455d4caba862200e6869f8577b7e2a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e606f68063712a803e50cb6f8505e6a707243c61154aa6b4ade9c8c1c435c5eb"} -2023-12-15T23:38:52.296Z INFO initializing dbft {"height": 5594, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:52.297Z debug frostfs-node/morph.go:229 new block {"index": 5593} -2023-12-15T23:38:53.174Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5593, "blockHeight": 5593, "took": "11.506865ms"} -2023-12-15T23:38:53.296Z INFO sending PrepareRequest {"height": 5594, "view": 0} -2023-12-15T23:38:53.296Z INFO sending Commit {"height": 5594, "view": 0} -2023-12-15T23:38:53.296Z INFO approving block {"height": 5594, "hash": "5dec33238aa11f276dc94668f3f84689d8b0598bbb3fe9ec394402dc9040a75f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec09186a431d86ccb5ede456385b38ff0455d4caba862200e6869f8577b7e2a0"} -2023-12-15T23:38:53.297Z INFO initializing dbft {"height": 5595, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:53.298Z debug frostfs-node/morph.go:229 new block {"index": 5594} -2023-12-15T23:38:54.171Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5594, "blockHeight": 5594, "took": "7.455879ms"} -2023-12-15T23:38:54.297Z INFO sending PrepareRequest {"height": 5595, "view": 0} -2023-12-15T23:38:54.298Z INFO sending Commit {"height": 5595, "view": 0} -2023-12-15T23:38:54.298Z INFO approving block {"height": 5595, "hash": "69ed68be36a6eb0f58827b162689aa4f16cb7a898a6ac8ae1f35361a692cccfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5dec33238aa11f276dc94668f3f84689d8b0598bbb3fe9ec394402dc9040a75f"} -2023-12-15T23:38:54.299Z INFO initializing dbft {"height": 5596, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:54.300Z debug frostfs-node/morph.go:229 new block {"index": 5595} -2023-12-15T23:38:55.174Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5595, "blockHeight": 5595, "took": "10.319932ms"} -2023-12-15T23:38:55.300Z INFO sending PrepareRequest {"height": 5596, "view": 0} -2023-12-15T23:38:55.300Z INFO sending Commit {"height": 5596, "view": 0} -2023-12-15T23:38:55.300Z INFO approving block {"height": 5596, "hash": "71b59ed844270d5d61d676716bf8dddda3fc4f9dbdfad7e7d89e26d1547410a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69ed68be36a6eb0f58827b162689aa4f16cb7a898a6ac8ae1f35361a692cccfe"} -2023-12-15T23:38:55.302Z INFO initializing dbft {"height": 5597, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:55.303Z debug frostfs-node/morph.go:229 new block {"index": 5596} -2023-12-15T23:38:56.172Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5596, "blockHeight": 5596, "took": "6.445728ms"} -2023-12-15T23:38:56.302Z INFO sending PrepareRequest {"height": 5597, "view": 0} -2023-12-15T23:38:56.302Z INFO sending Commit {"height": 5597, "view": 0} -2023-12-15T23:38:56.302Z INFO approving block {"height": 5597, "hash": "b5cbc9b2f8780b00ab876c0226d079783762ea479bc0648e4a0db9daaa20ca73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71b59ed844270d5d61d676716bf8dddda3fc4f9dbdfad7e7d89e26d1547410a1"} -2023-12-15T23:38:56.304Z INFO initializing dbft {"height": 5598, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:56.305Z debug frostfs-node/morph.go:229 new block {"index": 5597} -2023-12-15T23:38:57.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5597, "blockHeight": 5597, "took": "6.345885ms"} -2023-12-15T23:38:57.303Z INFO sending PrepareRequest {"height": 5598, "view": 0} -2023-12-15T23:38:57.303Z INFO sending Commit {"height": 5598, "view": 0} -2023-12-15T23:38:57.304Z INFO approving block {"height": 5598, "hash": "2dc19fdd0c59ee906674d1163adb6f61349c3d5c54bb860cc9fc503dc708ed7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5cbc9b2f8780b00ab876c0226d079783762ea479bc0648e4a0db9daaa20ca73"} -2023-12-15T23:38:57.305Z INFO initializing dbft {"height": 5599, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:57.306Z debug frostfs-node/morph.go:229 new block {"index": 5598} -2023-12-15T23:38:58.174Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5598, "blockHeight": 5598, "took": "6.553971ms"} -2023-12-15T23:38:58.305Z INFO sending PrepareRequest {"height": 5599, "view": 0} -2023-12-15T23:38:58.305Z INFO sending Commit {"height": 5599, "view": 0} -2023-12-15T23:38:58.305Z INFO approving block {"height": 5599, "hash": "d0cd28a086563298d28581621f1f03c71e2f4d1ced359c26da2293c99cea864a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2dc19fdd0c59ee906674d1163adb6f61349c3d5c54bb860cc9fc503dc708ed7c"} -2023-12-15T23:38:58.307Z INFO initializing dbft {"height": 5600, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:58.308Z debug frostfs-node/morph.go:229 new block {"index": 5599} -2023-12-15T23:38:59.175Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5599, "blockHeight": 5599, "took": "6.669944ms"} -2023-12-15T23:38:59.307Z INFO sending PrepareRequest {"height": 5600, "view": 0} -2023-12-15T23:38:59.307Z INFO sending Commit {"height": 5600, "view": 0} -2023-12-15T23:38:59.308Z INFO approving block {"height": 5600, "hash": "f8f584f5d0148e516a314353c19fc0498b0aec97c0d08c6d166e267279397fde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0cd28a086563298d28581621f1f03c71e2f4d1ced359c26da2293c99cea864a"} -2023-12-15T23:38:59.309Z INFO initializing dbft {"height": 5601, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:38:59.310Z debug frostfs-node/morph.go:229 new block {"index": 5600} -2023-12-15T23:39:00.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5600, "blockHeight": 5600, "took": "8.833908ms"} -2023-12-15T23:39:00.309Z INFO sending PrepareRequest {"height": 5601, "view": 0} -2023-12-15T23:39:00.309Z INFO sending Commit {"height": 5601, "view": 0} -2023-12-15T23:39:00.310Z INFO approving block {"height": 5601, "hash": "7618779cbafc2648491066d46733d8fcabb6c2892c5d10f49bd5467d9183c674", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8f584f5d0148e516a314353c19fc0498b0aec97c0d08c6d166e267279397fde"} -2023-12-15T23:39:00.311Z INFO initializing dbft {"height": 5602, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:00.312Z debug frostfs-node/morph.go:229 new block {"index": 5601} -2023-12-15T23:39:01.177Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5601, "blockHeight": 5601, "took": "6.016296ms"} -2023-12-15T23:39:01.311Z INFO sending PrepareRequest {"height": 5602, "view": 0} -2023-12-15T23:39:01.311Z INFO sending Commit {"height": 5602, "view": 0} -2023-12-15T23:39:01.312Z INFO approving block {"height": 5602, "hash": "86c593aae7e372f54054137419f9c1351bd7d3bffbe639e82578d0ebc908bdb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7618779cbafc2648491066d46733d8fcabb6c2892c5d10f49bd5467d9183c674"} -2023-12-15T23:39:01.313Z INFO initializing dbft {"height": 5603, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:01.314Z debug frostfs-node/morph.go:229 new block {"index": 5602} -2023-12-15T23:39:02.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5602, "blockHeight": 5602, "took": "6.395907ms"} -2023-12-15T23:39:02.314Z INFO sending PrepareRequest {"height": 5603, "view": 0} -2023-12-15T23:39:02.314Z INFO sending Commit {"height": 5603, "view": 0} -2023-12-15T23:39:02.315Z INFO approving block {"height": 5603, "hash": "96215ed5555c2c1ae6e7b376f175121c1725e04011252d9e85df7e3aff651caf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86c593aae7e372f54054137419f9c1351bd7d3bffbe639e82578d0ebc908bdb7"} -2023-12-15T23:39:02.316Z INFO initializing dbft {"height": 5604, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:02.317Z debug frostfs-node/morph.go:229 new block {"index": 5603} -2023-12-15T23:39:02.323Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 24 epoch for daughters"} -2023-12-15T23:39:02.325Z INFO runtime log {"tx": "7a4914a3f56849c1274f3862affcef14fc98ab1ef2cdf9455ca9ee0214ce6c21", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:39:03.180Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5603, "blockHeight": 5603, "took": "7.495578ms"} -2023-12-15T23:39:03.316Z INFO sending PrepareRequest {"height": 5604, "view": 0} -2023-12-15T23:39:03.316Z INFO sending Commit {"height": 5604, "view": 0} -2023-12-15T23:39:03.317Z INFO approving block {"height": 5604, "hash": "2a94df137a1afdcac22e2bd83633fbf33f1f6c24a80edd5d9443e0256f8d7e86", "tx_count": 1, "merkle": "126729769e7bd8e56c1498be995e69a40da1b72c41302d1e56d87ad1e543ea12", "prev": "96215ed5555c2c1ae6e7b376f175121c1725e04011252d9e85df7e3aff651caf"} -2023-12-15T23:39:03.318Z INFO runtime log {"tx": "12ea43e5d17ad8561e2d30412cb7a10da4695e99be98146ce5d87b9e76296712", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:39:03.319Z INFO initializing dbft {"height": 5605, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:03.320Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 24} -2023-12-15T23:39:03.320Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 24} -2023-12-15T23:39:03.321Z debug frostfs-node/morph.go:229 new block {"index": 5604} -2023-12-15T23:39:04.181Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 5604, "blockHeight": 5604, "took": "7.427947ms"} -2023-12-15T23:39:04.318Z INFO sending PrepareRequest {"height": 5605, "view": 0} -2023-12-15T23:39:04.319Z INFO sending Commit {"height": 5605, "view": 0} -2023-12-15T23:39:04.320Z INFO approving block {"height": 5605, "hash": "6b577307eae08edbab5866bdba245ee8bb85627055110c234c65cae4f1ff48c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a94df137a1afdcac22e2bd83633fbf33f1f6c24a80edd5d9443e0256f8d7e86"} -2023-12-15T23:39:04.322Z INFO initializing dbft {"height": 5606, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:04.323Z debug frostfs-node/morph.go:229 new block {"index": 5605} -2023-12-15T23:39:05.184Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5605, "blockHeight": 5605, "took": "9.353309ms"} -2023-12-15T23:39:05.321Z INFO sending PrepareRequest {"height": 5606, "view": 0} -2023-12-15T23:39:05.321Z INFO sending Commit {"height": 5606, "view": 0} -2023-12-15T23:39:05.322Z INFO approving block {"height": 5606, "hash": "9ef678955dcef9544e2d437c7ae48d9c686482637b589ed7c32b7e1f861721b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b577307eae08edbab5866bdba245ee8bb85627055110c234c65cae4f1ff48c4"} -2023-12-15T23:39:05.324Z INFO initializing dbft {"height": 5607, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:05.324Z debug frostfs-node/morph.go:229 new block {"index": 5606} -2023-12-15T23:39:06.183Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5606, "blockHeight": 5606, "took": "6.955862ms"} -2023-12-15T23:39:06.323Z INFO sending PrepareRequest {"height": 5607, "view": 0} -2023-12-15T23:39:06.323Z INFO sending Commit {"height": 5607, "view": 0} -2023-12-15T23:39:06.323Z INFO approving block {"height": 5607, "hash": "abece83ab53d16bd7da6de24a764231e9f9153f4573ca311449cba4593f0f54f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ef678955dcef9544e2d437c7ae48d9c686482637b589ed7c32b7e1f861721b6"} -2023-12-15T23:39:06.325Z INFO initializing dbft {"height": 5608, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:06.326Z debug frostfs-node/morph.go:229 new block {"index": 5607} -2023-12-15T23:39:07.184Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5607, "blockHeight": 5607, "took": "7.310936ms"} -2023-12-15T23:39:07.325Z INFO sending PrepareRequest {"height": 5608, "view": 0} -2023-12-15T23:39:07.326Z INFO sending Commit {"height": 5608, "view": 0} -2023-12-15T23:39:07.326Z INFO approving block {"height": 5608, "hash": "805bfb7e4b7bad26904ae87c6b18ea5de49726288a2a6a949fe1840305ffcc0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abece83ab53d16bd7da6de24a764231e9f9153f4573ca311449cba4593f0f54f"} -2023-12-15T23:39:07.327Z INFO initializing dbft {"height": 5609, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:07.328Z debug frostfs-node/morph.go:229 new block {"index": 5608} -2023-12-15T23:39:08.186Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5608, "blockHeight": 5608, "took": "7.800567ms"} -2023-12-15T23:39:08.327Z INFO sending PrepareRequest {"height": 5609, "view": 0} -2023-12-15T23:39:08.327Z INFO sending Commit {"height": 5609, "view": 0} -2023-12-15T23:39:08.328Z INFO approving block {"height": 5609, "hash": "d9b46f3bd7e0bf8a939958d19df36b914c6ccf9d817fc1f0d06162033929be3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "805bfb7e4b7bad26904ae87c6b18ea5de49726288a2a6a949fe1840305ffcc0d"} -2023-12-15T23:39:08.329Z INFO initializing dbft {"height": 5610, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:08.331Z debug frostfs-node/morph.go:229 new block {"index": 5609} -2023-12-15T23:39:09.187Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5609, "blockHeight": 5609, "took": "8.049715ms"} -2023-12-15T23:39:09.329Z INFO sending PrepareRequest {"height": 5610, "view": 0} -2023-12-15T23:39:09.329Z INFO sending Commit {"height": 5610, "view": 0} -2023-12-15T23:39:09.330Z INFO approving block {"height": 5610, "hash": "17007f151be76d03952861479c2ab81aa79c56603d0590740c2e7ff5b8ddf1fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9b46f3bd7e0bf8a939958d19df36b914c6ccf9d817fc1f0d06162033929be3e"} -2023-12-15T23:39:09.331Z INFO initializing dbft {"height": 5611, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:09.332Z debug frostfs-node/morph.go:229 new block {"index": 5610} -2023-12-15T23:39:10.187Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5610, "blockHeight": 5610, "took": "7.324901ms"} -2023-12-15T23:39:10.330Z INFO sending PrepareRequest {"height": 5611, "view": 0} -2023-12-15T23:39:10.331Z INFO sending Commit {"height": 5611, "view": 0} -2023-12-15T23:39:10.331Z INFO approving block {"height": 5611, "hash": "844e822d2bab187783ca10128aa61162b3095a48c2cc4beeedc779b3a3aca1bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17007f151be76d03952861479c2ab81aa79c56603d0590740c2e7ff5b8ddf1fa"} -2023-12-15T23:39:10.332Z INFO initializing dbft {"height": 5612, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:10.333Z debug frostfs-node/morph.go:229 new block {"index": 5611} -2023-12-15T23:39:11.187Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5611, "blockHeight": 5611, "took": "6.675395ms"} -2023-12-15T23:39:11.332Z INFO sending PrepareRequest {"height": 5612, "view": 0} -2023-12-15T23:39:11.332Z INFO sending Commit {"height": 5612, "view": 0} -2023-12-15T23:39:11.332Z INFO approving block {"height": 5612, "hash": "d52fd5cef68a3d6001c00451acc5d228550f58352444ad934fdd790a4365c851", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "844e822d2bab187783ca10128aa61162b3095a48c2cc4beeedc779b3a3aca1bb"} -2023-12-15T23:39:11.334Z INFO initializing dbft {"height": 5613, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:11.335Z debug frostfs-node/morph.go:229 new block {"index": 5612} -2023-12-15T23:39:12.187Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5612, "blockHeight": 5612, "took": "5.297902ms"} -2023-12-15T23:39:12.334Z INFO sending PrepareRequest {"height": 5613, "view": 0} -2023-12-15T23:39:12.334Z INFO sending Commit {"height": 5613, "view": 0} -2023-12-15T23:39:12.334Z INFO approving block {"height": 5613, "hash": "ecdc1151eb8c73bafa4f4f3a387bfdc43c1649cae8a7a171f4ce44825bdf6448", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d52fd5cef68a3d6001c00451acc5d228550f58352444ad934fdd790a4365c851"} -2023-12-15T23:39:12.336Z INFO initializing dbft {"height": 5614, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:12.336Z debug frostfs-node/morph.go:229 new block {"index": 5613} -2023-12-15T23:39:13.191Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5613, "blockHeight": 5613, "took": "8.131608ms"} -2023-12-15T23:39:13.336Z INFO sending PrepareRequest {"height": 5614, "view": 0} -2023-12-15T23:39:13.336Z INFO sending Commit {"height": 5614, "view": 0} -2023-12-15T23:39:13.336Z INFO approving block {"height": 5614, "hash": "ccced8b09f63603da3673782136e1ebae43cefbb593469ef814adba4325724c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecdc1151eb8c73bafa4f4f3a387bfdc43c1649cae8a7a171f4ce44825bdf6448"} -2023-12-15T23:39:13.338Z INFO initializing dbft {"height": 5615, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:13.339Z debug frostfs-node/morph.go:229 new block {"index": 5614} -2023-12-15T23:39:14.190Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5614, "blockHeight": 5614, "took": "5.922215ms"} -2023-12-15T23:39:14.339Z INFO sending PrepareRequest {"height": 5615, "view": 0} -2023-12-15T23:39:14.339Z INFO sending Commit {"height": 5615, "view": 0} -2023-12-15T23:39:14.339Z INFO approving block {"height": 5615, "hash": "a67f2d8d5b0fe3e5a31458568dea8220c8cf620a9f18e9352d9e84a63868fdfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ccced8b09f63603da3673782136e1ebae43cefbb593469ef814adba4325724c4"} -2023-12-15T23:39:14.341Z INFO initializing dbft {"height": 5616, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:14.342Z debug frostfs-node/morph.go:229 new block {"index": 5615} -2023-12-15T23:39:15.192Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5615, "blockHeight": 5615, "took": "7.098317ms"} -2023-12-15T23:39:15.341Z INFO sending PrepareRequest {"height": 5616, "view": 0} -2023-12-15T23:39:15.341Z INFO sending Commit {"height": 5616, "view": 0} -2023-12-15T23:39:15.341Z INFO approving block {"height": 5616, "hash": "91a6b294414c69c6c7754461f69fdfb337ef00556cb7b4d9920df879b897ce80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a67f2d8d5b0fe3e5a31458568dea8220c8cf620a9f18e9352d9e84a63868fdfa"} -2023-12-15T23:39:15.343Z INFO initializing dbft {"height": 5617, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:15.343Z debug frostfs-node/morph.go:229 new block {"index": 5616} -2023-12-15T23:39:16.192Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5616, "blockHeight": 5616, "took": "7.197501ms"} -2023-12-15T23:39:16.342Z INFO sending PrepareRequest {"height": 5617, "view": 0} -2023-12-15T23:39:16.343Z INFO sending Commit {"height": 5617, "view": 0} -2023-12-15T23:39:16.343Z INFO approving block {"height": 5617, "hash": "48e7211ec7b2d2b6175a7011a94058b48128252278b9b79a395b568d8895ef93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91a6b294414c69c6c7754461f69fdfb337ef00556cb7b4d9920df879b897ce80"} -2023-12-15T23:39:16.344Z INFO initializing dbft {"height": 5618, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:16.345Z debug frostfs-node/morph.go:229 new block {"index": 5617} -2023-12-15T23:39:16.349Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:39:16.350Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:39:16.350Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:39:17.192Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5617, "blockHeight": 5617, "took": "6.245644ms"} -2023-12-15T23:39:17.345Z INFO sending PrepareRequest {"height": 5618, "view": 0} -2023-12-15T23:39:17.345Z INFO sending Commit {"height": 5618, "view": 0} -2023-12-15T23:39:17.345Z INFO approving block {"height": 5618, "hash": "24f74fa7070e4bf99f48e0b74fb7a26ae15a3191b67b1e51d48f5de6b143bb5b", "tx_count": 2, "merkle": "26aad384aa87826c95d98b7cf5d45eeb560ada20d4377fd648bf7a76ef56f914", "prev": "48e7211ec7b2d2b6175a7011a94058b48128252278b9b79a395b568d8895ef93"} -2023-12-15T23:39:17.347Z INFO runtime log {"tx": "c43888cde2c75d9626557ce9e41eef5655fe3d73e6fe227e50dc34de2502c1e2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:39:17.347Z INFO runtime log {"tx": "c43888cde2c75d9626557ce9e41eef5655fe3d73e6fe227e50dc34de2502c1e2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:39:17.350Z INFO initializing dbft {"height": 5619, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:17.354Z debug frostfs-node/morph.go:229 new block {"index": 5618} -2023-12-15T23:39:18.198Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5618, "blockHeight": 5618, "took": "11.004033ms"} -2023-12-15T23:39:18.346Z INFO sending PrepareRequest {"height": 5619, "view": 0} -2023-12-15T23:39:18.347Z INFO sending Commit {"height": 5619, "view": 0} -2023-12-15T23:39:18.347Z INFO approving block {"height": 5619, "hash": "d014076e9089dc6063a46e37d2e0e372ab53507eb3fd934ca8e1f276d3896647", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24f74fa7070e4bf99f48e0b74fb7a26ae15a3191b67b1e51d48f5de6b143bb5b"} -2023-12-15T23:39:18.349Z INFO initializing dbft {"height": 5620, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:18.350Z debug frostfs-node/morph.go:229 new block {"index": 5619} -2023-12-15T23:39:19.195Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5619, "blockHeight": 5619, "took": "6.778608ms"} -2023-12-15T23:39:19.349Z INFO sending PrepareRequest {"height": 5620, "view": 0} -2023-12-15T23:39:19.349Z INFO sending Commit {"height": 5620, "view": 0} -2023-12-15T23:39:19.350Z INFO approving block {"height": 5620, "hash": "3a47c6d25bb8e8ad82d7ce2800348842788e56552bbe87f1c4b9c89ffeed7fe6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d014076e9089dc6063a46e37d2e0e372ab53507eb3fd934ca8e1f276d3896647"} -2023-12-15T23:39:19.351Z INFO initializing dbft {"height": 5621, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:19.352Z debug frostfs-node/morph.go:229 new block {"index": 5620} -2023-12-15T23:39:20.199Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5620, "blockHeight": 5620, "took": "9.784291ms"} -2023-12-15T23:39:20.351Z INFO sending PrepareRequest {"height": 5621, "view": 0} -2023-12-15T23:39:20.351Z INFO sending Commit {"height": 5621, "view": 0} -2023-12-15T23:39:20.351Z INFO approving block {"height": 5621, "hash": "6f3d99b19a1cd1b6621d218b56bd76d4633c115f07fecc8e93ad56270bac3126", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a47c6d25bb8e8ad82d7ce2800348842788e56552bbe87f1c4b9c89ffeed7fe6"} -2023-12-15T23:39:20.353Z INFO initializing dbft {"height": 5622, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:20.354Z debug frostfs-node/morph.go:229 new block {"index": 5621} -2023-12-15T23:39:21.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5621, "blockHeight": 5621, "took": "7.261822ms"} -2023-12-15T23:39:21.352Z INFO sending PrepareRequest {"height": 5622, "view": 0} -2023-12-15T23:39:21.353Z INFO sending Commit {"height": 5622, "view": 0} -2023-12-15T23:39:21.353Z INFO approving block {"height": 5622, "hash": "3d5f5ba57de833abac908d694c17fe15f72a795c563b7ea0299385e892a91959", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f3d99b19a1cd1b6621d218b56bd76d4633c115f07fecc8e93ad56270bac3126"} -2023-12-15T23:39:21.355Z INFO initializing dbft {"height": 5623, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:21.355Z debug frostfs-node/morph.go:229 new block {"index": 5622} -2023-12-15T23:39:22.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5622, "blockHeight": 5622, "took": "6.661664ms"} -2023-12-15T23:39:22.354Z INFO sending PrepareRequest {"height": 5623, "view": 0} -2023-12-15T23:39:22.354Z INFO sending Commit {"height": 5623, "view": 0} -2023-12-15T23:39:22.354Z INFO approving block {"height": 5623, "hash": "c79ff654b93e2912136a4098807d057151d4737ee1d18447d3e18cacebf73643", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d5f5ba57de833abac908d694c17fe15f72a795c563b7ea0299385e892a91959"} -2023-12-15T23:39:22.356Z INFO initializing dbft {"height": 5624, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:22.357Z debug frostfs-node/morph.go:229 new block {"index": 5623} -2023-12-15T23:39:23.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5623, "blockHeight": 5623, "took": "5.948123ms"} -2023-12-15T23:39:23.356Z INFO sending PrepareRequest {"height": 5624, "view": 0} -2023-12-15T23:39:23.356Z INFO sending Commit {"height": 5624, "view": 0} -2023-12-15T23:39:23.357Z INFO approving block {"height": 5624, "hash": "53d50e0ae741fe00bb89ef752320848aca0596d43b968f2e6568f7dd44f47f8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c79ff654b93e2912136a4098807d057151d4737ee1d18447d3e18cacebf73643"} -2023-12-15T23:39:23.359Z INFO initializing dbft {"height": 5625, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:23.360Z debug frostfs-node/morph.go:229 new block {"index": 5624} -2023-12-15T23:39:24.200Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5624, "blockHeight": 5624, "took": "7.208657ms"} -2023-12-15T23:39:24.357Z INFO sending PrepareRequest {"height": 5625, "view": 0} -2023-12-15T23:39:24.358Z INFO sending Commit {"height": 5625, "view": 0} -2023-12-15T23:39:24.358Z INFO approving block {"height": 5625, "hash": "bc0e02d73cc6c1cce5cebafdc875756f78aeff5d3728841b6e1c3f9fb69e50ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53d50e0ae741fe00bb89ef752320848aca0596d43b968f2e6568f7dd44f47f8f"} -2023-12-15T23:39:24.360Z INFO initializing dbft {"height": 5626, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:24.361Z debug frostfs-node/morph.go:229 new block {"index": 5625} -2023-12-15T23:39:25.201Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5625, "blockHeight": 5625, "took": "6.855079ms"} -2023-12-15T23:39:25.360Z INFO sending PrepareRequest {"height": 5626, "view": 0} -2023-12-15T23:39:25.360Z INFO sending Commit {"height": 5626, "view": 0} -2023-12-15T23:39:25.360Z INFO approving block {"height": 5626, "hash": "14f0657f9e4a59f7de4b4412bd5c22f1cc203d5edc77be71c1fb6f1dcd26d259", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc0e02d73cc6c1cce5cebafdc875756f78aeff5d3728841b6e1c3f9fb69e50ef"} -2023-12-15T23:39:25.362Z INFO initializing dbft {"height": 5627, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:25.363Z debug frostfs-node/morph.go:229 new block {"index": 5626} -2023-12-15T23:39:26.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5626, "blockHeight": 5626, "took": "7.918561ms"} -2023-12-15T23:39:26.362Z INFO sending PrepareRequest {"height": 5627, "view": 0} -2023-12-15T23:39:26.362Z INFO sending Commit {"height": 5627, "view": 0} -2023-12-15T23:39:26.362Z INFO approving block {"height": 5627, "hash": "bc0737a79dc6ed1045a043cbd88d224960e75c861a92248d553d004d85a107ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14f0657f9e4a59f7de4b4412bd5c22f1cc203d5edc77be71c1fb6f1dcd26d259"} -2023-12-15T23:39:26.364Z INFO initializing dbft {"height": 5628, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:26.365Z debug frostfs-node/morph.go:229 new block {"index": 5627} -2023-12-15T23:39:27.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5627, "blockHeight": 5627, "took": "7.243526ms"} -2023-12-15T23:39:27.364Z INFO sending PrepareRequest {"height": 5628, "view": 0} -2023-12-15T23:39:27.365Z INFO sending Commit {"height": 5628, "view": 0} -2023-12-15T23:39:27.365Z INFO approving block {"height": 5628, "hash": "93e136a3282be600c30340c57d3407bf2f60af225d47daff471c948e8bff1d0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc0737a79dc6ed1045a043cbd88d224960e75c861a92248d553d004d85a107ba"} -2023-12-15T23:39:27.367Z INFO initializing dbft {"height": 5629, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:27.367Z debug frostfs-node/morph.go:229 new block {"index": 5628} -2023-12-15T23:39:28.204Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5628, "blockHeight": 5628, "took": "7.155618ms"} -2023-12-15T23:39:28.366Z INFO sending PrepareRequest {"height": 5629, "view": 0} -2023-12-15T23:39:28.366Z INFO sending Commit {"height": 5629, "view": 0} -2023-12-15T23:39:28.367Z INFO approving block {"height": 5629, "hash": "ddf3648e0888fb7e8b31978bbebe5d5edf28617d6eecdcf4d88df77b5c925a53", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93e136a3282be600c30340c57d3407bf2f60af225d47daff471c948e8bff1d0e"} -2023-12-15T23:39:28.368Z INFO initializing dbft {"height": 5630, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:28.369Z debug frostfs-node/morph.go:229 new block {"index": 5629} -2023-12-15T23:39:29.205Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5629, "blockHeight": 5629, "took": "7.062996ms"} -2023-12-15T23:39:29.368Z INFO sending PrepareRequest {"height": 5630, "view": 0} -2023-12-15T23:39:29.368Z INFO sending Commit {"height": 5630, "view": 0} -2023-12-15T23:39:29.369Z INFO approving block {"height": 5630, "hash": "def6c9800b52cbb3383b5b392b787db660dffcc028205146a26c78cb8e3227b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddf3648e0888fb7e8b31978bbebe5d5edf28617d6eecdcf4d88df77b5c925a53"} -2023-12-15T23:39:29.371Z INFO initializing dbft {"height": 5631, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:29.371Z debug frostfs-node/morph.go:229 new block {"index": 5630} -2023-12-15T23:39:30.206Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5630, "blockHeight": 5630, "took": "7.228195ms"} -2023-12-15T23:39:30.370Z INFO sending PrepareRequest {"height": 5631, "view": 0} -2023-12-15T23:39:30.370Z INFO sending Commit {"height": 5631, "view": 0} -2023-12-15T23:39:30.371Z INFO approving block {"height": 5631, "hash": "19cc66eef10c0bcc8a29f04c3e5d3816891c3caaea8070d6e6a085c0c9da86a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "def6c9800b52cbb3383b5b392b787db660dffcc028205146a26c78cb8e3227b0"} -2023-12-15T23:39:30.372Z INFO initializing dbft {"height": 5632, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:30.373Z debug frostfs-node/morph.go:229 new block {"index": 5631} -2023-12-15T23:39:31.208Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 5631, "blockHeight": 5631, "took": "7.839978ms"} -2023-12-15T23:39:31.372Z INFO sending PrepareRequest {"height": 5632, "view": 0} -2023-12-15T23:39:31.372Z INFO sending Commit {"height": 5632, "view": 0} -2023-12-15T23:39:31.373Z INFO approving block {"height": 5632, "hash": "4bd37f0f086ea43e00e43eb78656cf4936c331650fe00e7a2b2dfe6027fe7147", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19cc66eef10c0bcc8a29f04c3e5d3816891c3caaea8070d6e6a085c0c9da86a5"} -2023-12-15T23:39:31.374Z INFO initializing dbft {"height": 5633, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:31.375Z debug frostfs-node/morph.go:229 new block {"index": 5632} -2023-12-15T23:39:32.205Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5632, "blockHeight": 5632, "took": "4.402721ms"} -2023-12-15T23:39:32.374Z INFO sending PrepareRequest {"height": 5633, "view": 0} -2023-12-15T23:39:32.374Z INFO sending Commit {"height": 5633, "view": 0} -2023-12-15T23:39:32.375Z INFO approving block {"height": 5633, "hash": "8d1af70f2ae1b0e81e3b8c6edb6a89a6f0a53bd5df6ef2874ce44cfd735f6bec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bd37f0f086ea43e00e43eb78656cf4936c331650fe00e7a2b2dfe6027fe7147"} -2023-12-15T23:39:32.377Z INFO initializing dbft {"height": 5634, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:32.378Z debug frostfs-node/morph.go:229 new block {"index": 5633} -2023-12-15T23:39:33.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5633, "blockHeight": 5633, "took": "11.371854ms"} -2023-12-15T23:39:33.376Z INFO sending PrepareRequest {"height": 5634, "view": 0} -2023-12-15T23:39:33.377Z INFO sending Commit {"height": 5634, "view": 0} -2023-12-15T23:39:33.377Z INFO approving block {"height": 5634, "hash": "1c4d7687a983f29b21c92943af80465f21897c8e74bd48b2aecff0f29c076b07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d1af70f2ae1b0e81e3b8c6edb6a89a6f0a53bd5df6ef2874ce44cfd735f6bec"} -2023-12-15T23:39:33.379Z INFO initializing dbft {"height": 5635, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:33.379Z debug frostfs-node/morph.go:229 new block {"index": 5634} -2023-12-15T23:39:34.210Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5634, "blockHeight": 5634, "took": "7.421097ms"} -2023-12-15T23:39:34.378Z INFO sending PrepareRequest {"height": 5635, "view": 0} -2023-12-15T23:39:34.378Z INFO sending Commit {"height": 5635, "view": 0} -2023-12-15T23:39:34.378Z INFO approving block {"height": 5635, "hash": "7d1ee288eac06a2a2d19293376ddee1079c946681777bb4e078b6f2d33551f84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c4d7687a983f29b21c92943af80465f21897c8e74bd48b2aecff0f29c076b07"} -2023-12-15T23:39:34.380Z INFO initializing dbft {"height": 5636, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:34.380Z debug frostfs-node/morph.go:229 new block {"index": 5635} -2023-12-15T23:39:35.212Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5635, "blockHeight": 5635, "took": "8.647645ms"} -2023-12-15T23:39:35.380Z INFO sending PrepareRequest {"height": 5636, "view": 0} -2023-12-15T23:39:35.380Z INFO sending Commit {"height": 5636, "view": 0} -2023-12-15T23:39:35.380Z INFO approving block {"height": 5636, "hash": "319257546c4950a6e7340c98bb798c664a1696293a3f6a15765a874794be0500", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d1ee288eac06a2a2d19293376ddee1079c946681777bb4e078b6f2d33551f84"} -2023-12-15T23:39:35.381Z INFO initializing dbft {"height": 5637, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:35.382Z debug frostfs-node/morph.go:229 new block {"index": 5636} -2023-12-15T23:39:36.211Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5636, "blockHeight": 5636, "took": "7.109187ms"} -2023-12-15T23:39:36.382Z INFO sending PrepareRequest {"height": 5637, "view": 0} -2023-12-15T23:39:36.383Z INFO sending Commit {"height": 5637, "view": 0} -2023-12-15T23:39:36.383Z INFO approving block {"height": 5637, "hash": "13418095b50cc3587db7821cfe2cc634328ed12a4a5bd8e4b6b079f60fe5542f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "319257546c4950a6e7340c98bb798c664a1696293a3f6a15765a874794be0500"} -2023-12-15T23:39:36.386Z INFO initializing dbft {"height": 5638, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:36.387Z debug frostfs-node/morph.go:229 new block {"index": 5637} -2023-12-15T23:39:37.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5637, "blockHeight": 5637, "took": "12.141544ms"} -2023-12-15T23:39:37.385Z INFO sending PrepareRequest {"height": 5638, "view": 0} -2023-12-15T23:39:37.386Z INFO sending Commit {"height": 5638, "view": 0} -2023-12-15T23:39:37.386Z INFO approving block {"height": 5638, "hash": "11ef647d4db35514d4d9239097f42c6b0a65b3a63aa590ffcb6ca82e787dab22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13418095b50cc3587db7821cfe2cc634328ed12a4a5bd8e4b6b079f60fe5542f"} -2023-12-15T23:39:37.389Z INFO initializing dbft {"height": 5639, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:37.390Z debug frostfs-node/morph.go:229 new block {"index": 5638} -2023-12-15T23:39:38.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5638, "blockHeight": 5638, "took": "6.813531ms"} -2023-12-15T23:39:38.388Z INFO sending PrepareRequest {"height": 5639, "view": 0} -2023-12-15T23:39:38.389Z INFO sending Commit {"height": 5639, "view": 0} -2023-12-15T23:39:38.389Z INFO approving block {"height": 5639, "hash": "c2923647b5ee4f2546b7630c9af4e45e1762ea26af8e5368fb4b22dbc841bdf4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11ef647d4db35514d4d9239097f42c6b0a65b3a63aa590ffcb6ca82e787dab22"} -2023-12-15T23:39:38.391Z INFO initializing dbft {"height": 5640, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:38.392Z debug frostfs-node/morph.go:229 new block {"index": 5639} -2023-12-15T23:39:39.215Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5639, "blockHeight": 5639, "took": "6.924404ms"} -2023-12-15T23:39:39.390Z INFO sending PrepareRequest {"height": 5640, "view": 0} -2023-12-15T23:39:39.390Z INFO sending Commit {"height": 5640, "view": 0} -2023-12-15T23:39:39.391Z INFO approving block {"height": 5640, "hash": "4d945d8959530b7867b2391c7443e3e7ea73b9c71f7f094a779e7a4c5592e25a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2923647b5ee4f2546b7630c9af4e45e1762ea26af8e5368fb4b22dbc841bdf4"} -2023-12-15T23:39:39.393Z INFO initializing dbft {"height": 5641, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:39.394Z debug frostfs-node/morph.go:229 new block {"index": 5640} -2023-12-15T23:39:40.215Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5640, "blockHeight": 5640, "took": "6.619817ms"} -2023-12-15T23:39:40.392Z INFO sending PrepareRequest {"height": 5641, "view": 0} -2023-12-15T23:39:40.392Z INFO sending Commit {"height": 5641, "view": 0} -2023-12-15T23:39:40.393Z INFO approving block {"height": 5641, "hash": "33a0f95395512ad126959f70bbfb454cd2db8ee7ff674d6e80c816b0095329ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d945d8959530b7867b2391c7443e3e7ea73b9c71f7f094a779e7a4c5592e25a"} -2023-12-15T23:39:40.395Z INFO initializing dbft {"height": 5642, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:40.396Z debug frostfs-node/morph.go:229 new block {"index": 5641} -2023-12-15T23:39:41.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5641, "blockHeight": 5641, "took": "8.642189ms"} -2023-12-15T23:39:41.394Z INFO sending PrepareRequest {"height": 5642, "view": 0} -2023-12-15T23:39:41.394Z INFO sending Commit {"height": 5642, "view": 0} -2023-12-15T23:39:41.394Z INFO approving block {"height": 5642, "hash": "f09f6add2220305c9b14387a3c2b7ced947a846645febe436d3199081f69ae3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33a0f95395512ad126959f70bbfb454cd2db8ee7ff674d6e80c816b0095329ea"} -2023-12-15T23:39:41.395Z INFO initializing dbft {"height": 5643, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:41.396Z debug frostfs-node/morph.go:229 new block {"index": 5642} -2023-12-15T23:39:42.215Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5642, "blockHeight": 5642, "took": "5.82629ms"} -2023-12-15T23:39:42.396Z INFO sending PrepareRequest {"height": 5643, "view": 0} -2023-12-15T23:39:42.397Z INFO sending Commit {"height": 5643, "view": 0} -2023-12-15T23:39:42.397Z INFO approving block {"height": 5643, "hash": "d0c54316be154f8334c337dbd1fbafbfe351ec8bc0177c97d29348e1f05eeea7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f09f6add2220305c9b14387a3c2b7ced947a846645febe436d3199081f69ae3a"} -2023-12-15T23:39:42.399Z INFO initializing dbft {"height": 5644, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:42.400Z debug frostfs-node/morph.go:229 new block {"index": 5643} -2023-12-15T23:39:43.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5643, "blockHeight": 5643, "took": "7.911866ms"} -2023-12-15T23:39:43.399Z INFO sending PrepareRequest {"height": 5644, "view": 0} -2023-12-15T23:39:43.399Z INFO sending Commit {"height": 5644, "view": 0} -2023-12-15T23:39:43.399Z INFO approving block {"height": 5644, "hash": "710268229f02ff2eca11769c7e202a5df4b6b8ad3f0e210c63483516abbb124a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0c54316be154f8334c337dbd1fbafbfe351ec8bc0177c97d29348e1f05eeea7"} -2023-12-15T23:39:43.401Z INFO initializing dbft {"height": 5645, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:43.402Z debug frostfs-node/morph.go:229 new block {"index": 5644} -2023-12-15T23:39:44.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5644, "blockHeight": 5644, "took": "8.540794ms"} -2023-12-15T23:39:44.400Z INFO sending PrepareRequest {"height": 5645, "view": 0} -2023-12-15T23:39:44.401Z INFO sending Commit {"height": 5645, "view": 0} -2023-12-15T23:39:44.401Z INFO approving block {"height": 5645, "hash": "bbf7332c8fdffaad1969c1d085c69115fd38f20f25c311b5b70745b9723c8dc8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "710268229f02ff2eca11769c7e202a5df4b6b8ad3f0e210c63483516abbb124a"} -2023-12-15T23:39:44.403Z INFO initializing dbft {"height": 5646, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:44.404Z debug frostfs-node/morph.go:229 new block {"index": 5645} -2023-12-15T23:39:45.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5645, "blockHeight": 5645, "took": "4.945994ms"} -2023-12-15T23:39:45.403Z INFO sending PrepareRequest {"height": 5646, "view": 0} -2023-12-15T23:39:45.403Z INFO sending Commit {"height": 5646, "view": 0} -2023-12-15T23:39:45.404Z INFO approving block {"height": 5646, "hash": "c381eb85ac9d02b8ff52475f54f8e220daad036c095459ee397322b49f6f6757", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbf7332c8fdffaad1969c1d085c69115fd38f20f25c311b5b70745b9723c8dc8"} -2023-12-15T23:39:45.406Z INFO initializing dbft {"height": 5647, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:45.407Z debug frostfs-node/morph.go:229 new block {"index": 5646} -2023-12-15T23:39:46.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5646, "blockHeight": 5646, "took": "6.549082ms"} -2023-12-15T23:39:46.405Z INFO sending PrepareRequest {"height": 5647, "view": 0} -2023-12-15T23:39:46.405Z INFO sending Commit {"height": 5647, "view": 0} -2023-12-15T23:39:46.406Z INFO approving block {"height": 5647, "hash": "20376c0f11cdf6b9891c54d7d7ad6f331292ba60afd8416163b11a7f5e129707", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c381eb85ac9d02b8ff52475f54f8e220daad036c095459ee397322b49f6f6757"} -2023-12-15T23:39:46.408Z INFO initializing dbft {"height": 5648, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:46.411Z debug frostfs-node/morph.go:229 new block {"index": 5647} -2023-12-15T23:39:47.222Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5647, "blockHeight": 5647, "took": "7.23656ms"} -2023-12-15T23:39:47.407Z INFO sending PrepareRequest {"height": 5648, "view": 0} -2023-12-15T23:39:47.407Z INFO sending Commit {"height": 5648, "view": 0} -2023-12-15T23:39:47.408Z INFO approving block {"height": 5648, "hash": "9b1ecdf437739896c9fd15834df57314a04eed6c6fb0fdb27e5ea2fc63520032", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20376c0f11cdf6b9891c54d7d7ad6f331292ba60afd8416163b11a7f5e129707"} -2023-12-15T23:39:47.409Z INFO initializing dbft {"height": 5649, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:47.410Z debug frostfs-node/morph.go:229 new block {"index": 5648} -2023-12-15T23:39:48.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5648, "blockHeight": 5648, "took": "4.85739ms"} -2023-12-15T23:39:48.408Z INFO sending PrepareRequest {"height": 5649, "view": 0} -2023-12-15T23:39:48.409Z INFO sending Commit {"height": 5649, "view": 0} -2023-12-15T23:39:48.409Z INFO approving block {"height": 5649, "hash": "126b1716330f105d0eac54b467d3a472aabb272835bed75c0d6e276515942e9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b1ecdf437739896c9fd15834df57314a04eed6c6fb0fdb27e5ea2fc63520032"} -2023-12-15T23:39:48.411Z INFO initializing dbft {"height": 5650, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:48.412Z debug frostfs-node/morph.go:229 new block {"index": 5649} -2023-12-15T23:39:49.227Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5649, "blockHeight": 5649, "took": "10.717333ms"} -2023-12-15T23:39:49.410Z INFO sending PrepareRequest {"height": 5650, "view": 0} -2023-12-15T23:39:49.411Z INFO sending Commit {"height": 5650, "view": 0} -2023-12-15T23:39:49.411Z INFO approving block {"height": 5650, "hash": "08f1998100562f895ab6ce511db60a42a6c57a9dbe75f6ab3ba108f14a4a24f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "126b1716330f105d0eac54b467d3a472aabb272835bed75c0d6e276515942e9b"} -2023-12-15T23:39:49.413Z INFO initializing dbft {"height": 5651, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:49.414Z debug frostfs-node/morph.go:229 new block {"index": 5650} -2023-12-15T23:39:50.225Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5650, "blockHeight": 5650, "took": "8.215891ms"} -2023-12-15T23:39:50.412Z INFO sending PrepareRequest {"height": 5651, "view": 0} -2023-12-15T23:39:50.412Z INFO sending Commit {"height": 5651, "view": 0} -2023-12-15T23:39:50.412Z INFO approving block {"height": 5651, "hash": "487e2af2c37acc4b5fff108a636aa5b57a54b163b932979d32af42739d78ce1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08f1998100562f895ab6ce511db60a42a6c57a9dbe75f6ab3ba108f14a4a24f4"} -2023-12-15T23:39:50.413Z INFO initializing dbft {"height": 5652, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:50.413Z debug frostfs-node/morph.go:229 new block {"index": 5651} -2023-12-15T23:39:51.231Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5651, "blockHeight": 5651, "took": "12.842798ms"} -2023-12-15T23:39:51.413Z INFO sending PrepareRequest {"height": 5652, "view": 0} -2023-12-15T23:39:51.414Z INFO sending Commit {"height": 5652, "view": 0} -2023-12-15T23:39:51.414Z INFO approving block {"height": 5652, "hash": "314bf3043de47e793dfb620b20049ebfc0d46d7e37c5a18e2320cfa4d30c0c21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "487e2af2c37acc4b5fff108a636aa5b57a54b163b932979d32af42739d78ce1e"} -2023-12-15T23:39:51.416Z INFO initializing dbft {"height": 5653, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:51.418Z debug frostfs-node/morph.go:229 new block {"index": 5652} -2023-12-15T23:39:52.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5652, "blockHeight": 5652, "took": "7.077516ms"} -2023-12-15T23:39:52.416Z INFO sending PrepareRequest {"height": 5653, "view": 0} -2023-12-15T23:39:52.416Z INFO sending Commit {"height": 5653, "view": 0} -2023-12-15T23:39:52.417Z INFO approving block {"height": 5653, "hash": "c3bdac199c5c37473388fc1325bcf29ecbafde964c2c857da07c4dad2f1fabf2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "314bf3043de47e793dfb620b20049ebfc0d46d7e37c5a18e2320cfa4d30c0c21"} -2023-12-15T23:39:52.419Z INFO initializing dbft {"height": 5654, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:52.420Z debug frostfs-node/morph.go:229 new block {"index": 5653} -2023-12-15T23:39:53.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5653, "blockHeight": 5653, "took": "6.563419ms"} -2023-12-15T23:39:53.418Z INFO sending PrepareRequest {"height": 5654, "view": 0} -2023-12-15T23:39:53.418Z INFO sending Commit {"height": 5654, "view": 0} -2023-12-15T23:39:53.419Z INFO approving block {"height": 5654, "hash": "da98d57f77df85fd759ba3334127bb5fce0106274a0652512ee54f1cc5bc467b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3bdac199c5c37473388fc1325bcf29ecbafde964c2c857da07c4dad2f1fabf2"} -2023-12-15T23:39:53.421Z INFO initializing dbft {"height": 5655, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:53.422Z debug frostfs-node/morph.go:229 new block {"index": 5654} -2023-12-15T23:39:54.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5654, "blockHeight": 5654, "took": "10.0493ms"} -2023-12-15T23:39:54.421Z INFO sending PrepareRequest {"height": 5655, "view": 0} -2023-12-15T23:39:54.421Z INFO sending Commit {"height": 5655, "view": 0} -2023-12-15T23:39:54.421Z INFO approving block {"height": 5655, "hash": "584dfb06fa142a8fab9095284487b186258be5fe8b3e6f0ec5777a3739f3453d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da98d57f77df85fd759ba3334127bb5fce0106274a0652512ee54f1cc5bc467b"} -2023-12-15T23:39:54.424Z INFO initializing dbft {"height": 5656, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:54.424Z debug frostfs-node/morph.go:229 new block {"index": 5655} -2023-12-15T23:39:55.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5655, "blockHeight": 5655, "took": "6.944402ms"} -2023-12-15T23:39:55.422Z INFO sending PrepareRequest {"height": 5656, "view": 0} -2023-12-15T23:39:55.423Z INFO sending Commit {"height": 5656, "view": 0} -2023-12-15T23:39:55.423Z INFO approving block {"height": 5656, "hash": "149ce9f90dd682496a5212a26d4e6aef11d7acce5f7428b538028d1e9e516617", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "584dfb06fa142a8fab9095284487b186258be5fe8b3e6f0ec5777a3739f3453d"} -2023-12-15T23:39:55.425Z INFO initializing dbft {"height": 5657, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:55.426Z debug frostfs-node/morph.go:229 new block {"index": 5656} -2023-12-15T23:39:56.229Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5656, "blockHeight": 5656, "took": "6.927953ms"} -2023-12-15T23:39:56.425Z INFO sending PrepareRequest {"height": 5657, "view": 0} -2023-12-15T23:39:56.426Z INFO sending Commit {"height": 5657, "view": 0} -2023-12-15T23:39:56.426Z INFO approving block {"height": 5657, "hash": "deefc57753a25bfac8be1fd7c7814b0e839d48712e2b6de3d05c968ed00eeb04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "149ce9f90dd682496a5212a26d4e6aef11d7acce5f7428b538028d1e9e516617"} -2023-12-15T23:39:56.428Z INFO initializing dbft {"height": 5658, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:56.429Z debug frostfs-node/morph.go:229 new block {"index": 5657} -2023-12-15T23:39:57.232Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5657, "blockHeight": 5657, "took": "8.518378ms"} -2023-12-15T23:39:57.427Z INFO sending PrepareRequest {"height": 5658, "view": 0} -2023-12-15T23:39:57.427Z INFO sending Commit {"height": 5658, "view": 0} -2023-12-15T23:39:57.428Z INFO approving block {"height": 5658, "hash": "5ef478a5473d01f4ad38b384115c19d70ac4da401eb649b9dfb256119937ce1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "deefc57753a25bfac8be1fd7c7814b0e839d48712e2b6de3d05c968ed00eeb04"} -2023-12-15T23:39:57.430Z INFO initializing dbft {"height": 5659, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:57.431Z debug frostfs-node/morph.go:229 new block {"index": 5658} -2023-12-15T23:39:58.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5658, "blockHeight": 5658, "took": "9.944487ms"} -2023-12-15T23:39:58.429Z INFO sending PrepareRequest {"height": 5659, "view": 0} -2023-12-15T23:39:58.430Z INFO sending Commit {"height": 5659, "view": 0} -2023-12-15T23:39:58.430Z INFO approving block {"height": 5659, "hash": "3386b8b6b3635152105cf2b186e950b16b89d34997a5b8adfc5ab6b63d79bea2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ef478a5473d01f4ad38b384115c19d70ac4da401eb649b9dfb256119937ce1b"} -2023-12-15T23:39:58.432Z INFO initializing dbft {"height": 5660, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:58.434Z debug frostfs-node/morph.go:229 new block {"index": 5659} -2023-12-15T23:39:59.231Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5659, "blockHeight": 5659, "took": "5.838553ms"} -2023-12-15T23:39:59.431Z INFO sending PrepareRequest {"height": 5660, "view": 0} -2023-12-15T23:39:59.431Z INFO sending Commit {"height": 5660, "view": 0} -2023-12-15T23:39:59.432Z INFO approving block {"height": 5660, "hash": "3071fd455664ebbe0d0de6708259cdedc49baec306af55df7788dac9f2b133b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3386b8b6b3635152105cf2b186e950b16b89d34997a5b8adfc5ab6b63d79bea2"} -2023-12-15T23:39:59.434Z INFO initializing dbft {"height": 5661, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:39:59.435Z debug frostfs-node/morph.go:229 new block {"index": 5660} -2023-12-15T23:40:00.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5660, "blockHeight": 5660, "took": "7.983473ms"} -2023-12-15T23:40:00.434Z INFO sending PrepareRequest {"height": 5661, "view": 0} -2023-12-15T23:40:00.434Z INFO sending Commit {"height": 5661, "view": 0} -2023-12-15T23:40:00.434Z INFO approving block {"height": 5661, "hash": "097bfe2393c05d78f99ea9af1a2b65523c50f03274ce221bfac2bddc60d4d0d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3071fd455664ebbe0d0de6708259cdedc49baec306af55df7788dac9f2b133b6"} -2023-12-15T23:40:00.436Z INFO initializing dbft {"height": 5662, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:00.436Z debug frostfs-node/morph.go:229 new block {"index": 5661} -2023-12-15T23:40:01.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5661, "blockHeight": 5661, "took": "9.97092ms"} -2023-12-15T23:40:01.436Z INFO sending PrepareRequest {"height": 5662, "view": 0} -2023-12-15T23:40:01.436Z INFO sending Commit {"height": 5662, "view": 0} -2023-12-15T23:40:01.436Z INFO approving block {"height": 5662, "hash": "d4f5bd2785d07cc24962e3c50f03d1b8129987b0a9e72a15b593791ea72b9469", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "097bfe2393c05d78f99ea9af1a2b65523c50f03274ce221bfac2bddc60d4d0d7"} -2023-12-15T23:40:01.438Z INFO initializing dbft {"height": 5663, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:01.439Z debug frostfs-node/morph.go:229 new block {"index": 5662} -2023-12-15T23:40:02.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5662, "blockHeight": 5662, "took": "8.741925ms"} -2023-12-15T23:40:02.438Z INFO sending PrepareRequest {"height": 5663, "view": 0} -2023-12-15T23:40:02.438Z INFO sending Commit {"height": 5663, "view": 0} -2023-12-15T23:40:02.439Z INFO approving block {"height": 5663, "hash": "e7074d0a1911c9069871a2e1fb80d77c043f425b23b8420235121eae43168c8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4f5bd2785d07cc24962e3c50f03d1b8129987b0a9e72a15b593791ea72b9469"} -2023-12-15T23:40:02.440Z INFO initializing dbft {"height": 5664, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:02.441Z debug frostfs-node/morph.go:229 new block {"index": 5663} -2023-12-15T23:40:02.447Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 24, "iteration": 1, "error": "no data for 0 iteration in 24 epoch for consumers's trusts"} -2023-12-15T23:40:02.449Z info settlement/calls.go:61 start basic income collection {"epoch": 24} -2023-12-15T23:40:03.238Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5663, "blockHeight": 5663, "took": "9.534707ms"} -2023-12-15T23:40:03.439Z INFO sending PrepareRequest {"height": 5664, "view": 0} -2023-12-15T23:40:03.440Z INFO sending Commit {"height": 5664, "view": 0} -2023-12-15T23:40:03.440Z INFO approving block {"height": 5664, "hash": "8cc565bacb4c026a44711b21b0a1b7eb1590df6997cdf591ab61f0523e4f681e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7074d0a1911c9069871a2e1fb80d77c043f425b23b8420235121eae43168c8d"} -2023-12-15T23:40:03.443Z INFO initializing dbft {"height": 5665, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:03.443Z debug frostfs-node/morph.go:229 new block {"index": 5664} -2023-12-15T23:40:04.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5664, "blockHeight": 5664, "took": "5.335785ms"} -2023-12-15T23:40:04.441Z INFO sending PrepareRequest {"height": 5665, "view": 0} -2023-12-15T23:40:04.441Z INFO sending Commit {"height": 5665, "view": 0} -2023-12-15T23:40:04.441Z INFO approving block {"height": 5665, "hash": "1018fd35d19391d7514afcd5c57cd2d1a4a1c2700b7ca397b2d506d73b7161b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cc565bacb4c026a44711b21b0a1b7eb1590df6997cdf591ab61f0523e4f681e"} -2023-12-15T23:40:04.444Z INFO initializing dbft {"height": 5666, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:04.444Z debug frostfs-node/morph.go:229 new block {"index": 5665} -2023-12-15T23:40:05.237Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5665, "blockHeight": 5665, "took": "7.405596ms"} -2023-12-15T23:40:05.443Z INFO sending PrepareRequest {"height": 5666, "view": 0} -2023-12-15T23:40:05.443Z INFO sending Commit {"height": 5666, "view": 0} -2023-12-15T23:40:05.444Z INFO approving block {"height": 5666, "hash": "68cd803fc44d95cebb904f663aeeec7e888f82f6217a72e6713c59ff4c05878c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1018fd35d19391d7514afcd5c57cd2d1a4a1c2700b7ca397b2d506d73b7161b5"} -2023-12-15T23:40:05.446Z INFO initializing dbft {"height": 5667, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:05.446Z debug frostfs-node/morph.go:229 new block {"index": 5666} -2023-12-15T23:40:06.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5666, "blockHeight": 5666, "took": "5.269598ms"} -2023-12-15T23:40:06.445Z INFO sending PrepareRequest {"height": 5667, "view": 0} -2023-12-15T23:40:06.445Z INFO sending Commit {"height": 5667, "view": 0} -2023-12-15T23:40:06.446Z INFO approving block {"height": 5667, "hash": "03328c8a43ae7bed091862f1ad0e4477aff56cca724d32ed36a8cd35e7014dd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68cd803fc44d95cebb904f663aeeec7e888f82f6217a72e6713c59ff4c05878c"} -2023-12-15T23:40:06.447Z INFO initializing dbft {"height": 5668, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:06.448Z debug frostfs-node/morph.go:229 new block {"index": 5667} -2023-12-15T23:40:06.452Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:40:06.453Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:40:06.454Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:40:07.238Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5667, "blockHeight": 5667, "took": "7.170053ms"} -2023-12-15T23:40:07.447Z INFO sending PrepareRequest {"height": 5668, "view": 0} -2023-12-15T23:40:07.447Z INFO sending Commit {"height": 5668, "view": 0} -2023-12-15T23:40:07.448Z INFO approving block {"height": 5668, "hash": "07276a633b69058a7b149c36cca75b29294e98b7ef47c3ae4963264f3aaf3fb2", "tx_count": 2, "merkle": "3f134814801638296ec4dce0a99fec77664f7b63c979f5b6bef2d604e2950230", "prev": "03328c8a43ae7bed091862f1ad0e4477aff56cca724d32ed36a8cd35e7014dd7"} -2023-12-15T23:40:07.450Z INFO runtime log {"tx": "b3ed6bb89f6df41a17aaae4720ea847e0545c098ad05e15c96ca8b9876049298", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:40:07.451Z INFO runtime log {"tx": "b3ed6bb89f6df41a17aaae4720ea847e0545c098ad05e15c96ca8b9876049298", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:40:07.453Z INFO initializing dbft {"height": 5669, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:07.455Z debug frostfs-node/morph.go:229 new block {"index": 5668} -2023-12-15T23:40:08.246Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5668, "blockHeight": 5668, "took": "14.060206ms"} -2023-12-15T23:40:08.450Z INFO sending PrepareRequest {"height": 5669, "view": 0} -2023-12-15T23:40:08.450Z INFO sending Commit {"height": 5669, "view": 0} -2023-12-15T23:40:08.450Z INFO approving block {"height": 5669, "hash": "782bb3193188736bb54f8c7d170c851900bdd56c8155227ca0753e49a41f3565", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07276a633b69058a7b149c36cca75b29294e98b7ef47c3ae4963264f3aaf3fb2"} -2023-12-15T23:40:08.452Z INFO initializing dbft {"height": 5670, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:08.453Z debug frostfs-node/morph.go:229 new block {"index": 5669} -2023-12-15T23:40:09.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5669, "blockHeight": 5669, "took": "6.494699ms"} -2023-12-15T23:40:09.453Z INFO sending PrepareRequest {"height": 5670, "view": 0} -2023-12-15T23:40:09.453Z INFO sending Commit {"height": 5670, "view": 0} -2023-12-15T23:40:09.453Z INFO approving block {"height": 5670, "hash": "00879389124fed58e30f43113143740bdad364857a6fbf484348c2a11aa6335e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "782bb3193188736bb54f8c7d170c851900bdd56c8155227ca0753e49a41f3565"} -2023-12-15T23:40:09.455Z INFO initializing dbft {"height": 5671, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:09.456Z debug frostfs-node/morph.go:229 new block {"index": 5670} -2023-12-15T23:40:10.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5670, "blockHeight": 5670, "took": "6.621274ms"} -2023-12-15T23:40:10.455Z INFO sending PrepareRequest {"height": 5671, "view": 0} -2023-12-15T23:40:10.455Z INFO sending Commit {"height": 5671, "view": 0} -2023-12-15T23:40:10.456Z INFO approving block {"height": 5671, "hash": "64b2d713d8280bbe06d05f7d84b64823e8a0547cb2ae58bcf647f8a9dec52224", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00879389124fed58e30f43113143740bdad364857a6fbf484348c2a11aa6335e"} -2023-12-15T23:40:10.457Z INFO initializing dbft {"height": 5672, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:10.458Z debug frostfs-node/morph.go:229 new block {"index": 5671} -2023-12-15T23:40:11.244Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5671, "blockHeight": 5671, "took": "9.057116ms"} -2023-12-15T23:40:11.457Z INFO sending PrepareRequest {"height": 5672, "view": 0} -2023-12-15T23:40:11.458Z INFO sending Commit {"height": 5672, "view": 0} -2023-12-15T23:40:11.458Z INFO approving block {"height": 5672, "hash": "b7fb378f58fdf5d23cd6d3614a46c38bf88e874bc3d552fb011dfda3a8fccad3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64b2d713d8280bbe06d05f7d84b64823e8a0547cb2ae58bcf647f8a9dec52224"} -2023-12-15T23:40:11.460Z INFO initializing dbft {"height": 5673, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:11.460Z debug frostfs-node/morph.go:229 new block {"index": 5672} -2023-12-15T23:40:12.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5672, "blockHeight": 5672, "took": "7.433568ms"} -2023-12-15T23:40:12.460Z INFO sending PrepareRequest {"height": 5673, "view": 0} -2023-12-15T23:40:12.460Z INFO sending Commit {"height": 5673, "view": 0} -2023-12-15T23:40:12.460Z INFO approving block {"height": 5673, "hash": "7461e9b2122e2f2903be2f0da344ce42dfb4481b5f7c098552262b1133e0ec80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7fb378f58fdf5d23cd6d3614a46c38bf88e874bc3d552fb011dfda3a8fccad3"} -2023-12-15T23:40:12.462Z INFO initializing dbft {"height": 5674, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:12.463Z debug frostfs-node/morph.go:229 new block {"index": 5673} -2023-12-15T23:40:13.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5673, "blockHeight": 5673, "took": "7.34078ms"} -2023-12-15T23:40:13.462Z INFO sending PrepareRequest {"height": 5674, "view": 0} -2023-12-15T23:40:13.463Z INFO sending Commit {"height": 5674, "view": 0} -2023-12-15T23:40:13.463Z INFO approving block {"height": 5674, "hash": "d7989cdc175854ae788f12bd58293b681c99dea792fb47170aa637477943968b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7461e9b2122e2f2903be2f0da344ce42dfb4481b5f7c098552262b1133e0ec80"} -2023-12-15T23:40:13.465Z INFO initializing dbft {"height": 5675, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:13.466Z debug frostfs-node/morph.go:229 new block {"index": 5674} -2023-12-15T23:40:14.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5674, "blockHeight": 5674, "took": "8.609796ms"} -2023-12-15T23:40:14.464Z INFO sending PrepareRequest {"height": 5675, "view": 0} -2023-12-15T23:40:14.465Z INFO sending Commit {"height": 5675, "view": 0} -2023-12-15T23:40:14.465Z INFO approving block {"height": 5675, "hash": "20d7fdca7f34d8069430d947fd6e9781e52bca296c99fc8dda8106c7ffc8dc3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7989cdc175854ae788f12bd58293b681c99dea792fb47170aa637477943968b"} -2023-12-15T23:40:14.467Z INFO initializing dbft {"height": 5676, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:14.468Z debug frostfs-node/morph.go:229 new block {"index": 5675} -2023-12-15T23:40:15.245Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5675, "blockHeight": 5675, "took": "7.83331ms"} -2023-12-15T23:40:15.466Z INFO sending PrepareRequest {"height": 5676, "view": 0} -2023-12-15T23:40:15.466Z INFO sending Commit {"height": 5676, "view": 0} -2023-12-15T23:40:15.467Z INFO approving block {"height": 5676, "hash": "546636a850978244d2e1629a4c9b00976520dc394e34e4c0fc79026cb22e89ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20d7fdca7f34d8069430d947fd6e9781e52bca296c99fc8dda8106c7ffc8dc3c"} -2023-12-15T23:40:15.469Z INFO initializing dbft {"height": 5677, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:15.470Z debug frostfs-node/morph.go:229 new block {"index": 5676} -2023-12-15T23:40:16.247Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5676, "blockHeight": 5676, "took": "8.547813ms"} -2023-12-15T23:40:16.468Z INFO sending PrepareRequest {"height": 5677, "view": 0} -2023-12-15T23:40:16.469Z INFO sending Commit {"height": 5677, "view": 0} -2023-12-15T23:40:16.469Z INFO approving block {"height": 5677, "hash": "3798f03753df428bfaea32f4c6eeb9eb7164af68fb9d40940febf5d974e6d8c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "546636a850978244d2e1629a4c9b00976520dc394e34e4c0fc79026cb22e89ac"} -2023-12-15T23:40:16.471Z INFO initializing dbft {"height": 5678, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:16.472Z debug frostfs-node/morph.go:229 new block {"index": 5677} -2023-12-15T23:40:17.245Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5677, "blockHeight": 5677, "took": "4.789072ms"} -2023-12-15T23:40:17.471Z INFO sending PrepareRequest {"height": 5678, "view": 0} -2023-12-15T23:40:17.471Z INFO sending Commit {"height": 5678, "view": 0} -2023-12-15T23:40:17.471Z INFO approving block {"height": 5678, "hash": "b9bdb970ccbcab524f4784009a6d42196d45e851256da7f975fb5971f7d61671", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3798f03753df428bfaea32f4c6eeb9eb7164af68fb9d40940febf5d974e6d8c7"} -2023-12-15T23:40:17.473Z INFO initializing dbft {"height": 5679, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:17.474Z debug frostfs-node/morph.go:229 new block {"index": 5678} -2023-12-15T23:40:18.247Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5678, "blockHeight": 5678, "took": "6.265333ms"} -2023-12-15T23:40:18.473Z INFO sending PrepareRequest {"height": 5679, "view": 0} -2023-12-15T23:40:18.473Z INFO sending Commit {"height": 5679, "view": 0} -2023-12-15T23:40:18.474Z INFO approving block {"height": 5679, "hash": "b77b5e5feaf87475093a30f77c0422e7b24be47d1503538b85652d2950e9df75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9bdb970ccbcab524f4784009a6d42196d45e851256da7f975fb5971f7d61671"} -2023-12-15T23:40:18.476Z INFO initializing dbft {"height": 5680, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:18.477Z debug frostfs-node/morph.go:229 new block {"index": 5679} -2023-12-15T23:40:19.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5679, "blockHeight": 5679, "took": "8.140063ms"} -2023-12-15T23:40:19.475Z INFO sending PrepareRequest {"height": 5680, "view": 0} -2023-12-15T23:40:19.475Z INFO sending Commit {"height": 5680, "view": 0} -2023-12-15T23:40:19.475Z INFO approving block {"height": 5680, "hash": "b1c9f245889f98927cc64e496d886e9d2673b1493434dd1aba5ace044012a232", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b77b5e5feaf87475093a30f77c0422e7b24be47d1503538b85652d2950e9df75"} -2023-12-15T23:40:19.477Z INFO initializing dbft {"height": 5681, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:19.478Z debug frostfs-node/morph.go:229 new block {"index": 5680} -2023-12-15T23:40:20.248Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5680, "blockHeight": 5680, "took": "6.339517ms"} -2023-12-15T23:40:20.476Z INFO sending PrepareRequest {"height": 5681, "view": 0} -2023-12-15T23:40:20.477Z INFO sending Commit {"height": 5681, "view": 0} -2023-12-15T23:40:20.477Z INFO approving block {"height": 5681, "hash": "18782f5eeaff0f1f863aaa6b8b2829e189e566c213ba1fde0aa730ba719fa3d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1c9f245889f98927cc64e496d886e9d2673b1493434dd1aba5ace044012a232"} -2023-12-15T23:40:20.479Z INFO initializing dbft {"height": 5682, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:20.480Z debug frostfs-node/morph.go:229 new block {"index": 5681} -2023-12-15T23:40:21.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5681, "blockHeight": 5681, "took": "8.032124ms"} -2023-12-15T23:40:21.479Z INFO sending PrepareRequest {"height": 5682, "view": 0} -2023-12-15T23:40:21.479Z INFO sending Commit {"height": 5682, "view": 0} -2023-12-15T23:40:21.480Z INFO approving block {"height": 5682, "hash": "51aa671fcb6fa81dbe0af50d4361ee6a7b66900e87c893297cb561b07af6163a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18782f5eeaff0f1f863aaa6b8b2829e189e566c213ba1fde0aa730ba719fa3d9"} -2023-12-15T23:40:21.481Z INFO initializing dbft {"height": 5683, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:21.482Z debug frostfs-node/morph.go:229 new block {"index": 5682} -2023-12-15T23:40:22.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5682, "blockHeight": 5682, "took": "6.408396ms"} -2023-12-15T23:40:22.481Z INFO sending PrepareRequest {"height": 5683, "view": 0} -2023-12-15T23:40:22.481Z INFO sending Commit {"height": 5683, "view": 0} -2023-12-15T23:40:22.482Z INFO approving block {"height": 5683, "hash": "7777ebb3cf4bbca95a6bd703858a4507ab101724adfbbf47af9c50e1776f8cf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51aa671fcb6fa81dbe0af50d4361ee6a7b66900e87c893297cb561b07af6163a"} -2023-12-15T23:40:22.483Z INFO initializing dbft {"height": 5684, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:22.484Z debug frostfs-node/morph.go:229 new block {"index": 5683} -2023-12-15T23:40:23.250Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5683, "blockHeight": 5683, "took": "5.049867ms"} -2023-12-15T23:40:23.482Z INFO sending PrepareRequest {"height": 5684, "view": 0} -2023-12-15T23:40:23.483Z INFO sending Commit {"height": 5684, "view": 0} -2023-12-15T23:40:23.483Z INFO approving block {"height": 5684, "hash": "7e48d8cf8964578872c31a87690c5ff0590e21153ed81ea299e3aac31e9c0bf8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7777ebb3cf4bbca95a6bd703858a4507ab101724adfbbf47af9c50e1776f8cf9"} -2023-12-15T23:40:23.484Z INFO initializing dbft {"height": 5685, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:23.485Z debug frostfs-node/morph.go:229 new block {"index": 5684} -2023-12-15T23:40:24.252Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5684, "blockHeight": 5684, "took": "5.629573ms"} -2023-12-15T23:40:24.484Z INFO sending PrepareRequest {"height": 5685, "view": 0} -2023-12-15T23:40:24.484Z INFO sending Commit {"height": 5685, "view": 0} -2023-12-15T23:40:24.485Z INFO approving block {"height": 5685, "hash": "6a96960af8facd9879f3dec01027011d1ea9761c7b5ebf94ec283bb7ab068bd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e48d8cf8964578872c31a87690c5ff0590e21153ed81ea299e3aac31e9c0bf8"} -2023-12-15T23:40:24.486Z INFO initializing dbft {"height": 5686, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:24.486Z debug frostfs-node/morph.go:229 new block {"index": 5685} -2023-12-15T23:40:25.254Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5685, "blockHeight": 5685, "took": "7.02543ms"} -2023-12-15T23:40:25.486Z INFO sending PrepareRequest {"height": 5686, "view": 0} -2023-12-15T23:40:25.486Z INFO sending Commit {"height": 5686, "view": 0} -2023-12-15T23:40:25.487Z INFO approving block {"height": 5686, "hash": "b64852511d265d2f66bbea5986019449989ca9d94228651290168dea8f93c886", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a96960af8facd9879f3dec01027011d1ea9761c7b5ebf94ec283bb7ab068bd1"} -2023-12-15T23:40:25.488Z INFO initializing dbft {"height": 5687, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:25.489Z debug frostfs-node/morph.go:229 new block {"index": 5686} -2023-12-15T23:40:26.256Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5686, "blockHeight": 5686, "took": "7.351184ms"} -2023-12-15T23:40:26.488Z INFO sending PrepareRequest {"height": 5687, "view": 0} -2023-12-15T23:40:26.488Z INFO sending Commit {"height": 5687, "view": 0} -2023-12-15T23:40:26.488Z INFO approving block {"height": 5687, "hash": "f9467d93a1684ca0f9c7760f7ce172559a9583e9272919c43b7c1b2168343493", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b64852511d265d2f66bbea5986019449989ca9d94228651290168dea8f93c886"} -2023-12-15T23:40:26.490Z INFO initializing dbft {"height": 5688, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:26.491Z debug frostfs-node/morph.go:229 new block {"index": 5687} -2023-12-15T23:40:27.256Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5687, "blockHeight": 5687, "took": "7.232818ms"} -2023-12-15T23:40:27.489Z INFO sending PrepareRequest {"height": 5688, "view": 0} -2023-12-15T23:40:27.489Z INFO sending Commit {"height": 5688, "view": 0} -2023-12-15T23:40:27.490Z INFO approving block {"height": 5688, "hash": "6d76e83d264dec4f5b46fe516a3b9b5657b0d748527b3754ae4fd457e9479e07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9467d93a1684ca0f9c7760f7ce172559a9583e9272919c43b7c1b2168343493"} -2023-12-15T23:40:27.491Z INFO initializing dbft {"height": 5689, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:27.492Z debug frostfs-node/morph.go:229 new block {"index": 5688} -2023-12-15T23:40:28.255Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5688, "blockHeight": 5688, "took": "5.672226ms"} -2023-12-15T23:40:28.491Z INFO sending PrepareRequest {"height": 5689, "view": 0} -2023-12-15T23:40:28.491Z INFO sending Commit {"height": 5689, "view": 0} -2023-12-15T23:40:28.491Z INFO approving block {"height": 5689, "hash": "391a92df5c9a68c1934834affe0c28983b706d1d1d27fe745a5420224131fdbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d76e83d264dec4f5b46fe516a3b9b5657b0d748527b3754ae4fd457e9479e07"} -2023-12-15T23:40:28.492Z INFO initializing dbft {"height": 5690, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:28.493Z debug frostfs-node/morph.go:229 new block {"index": 5689} -2023-12-15T23:40:29.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5689, "blockHeight": 5689, "took": "9.137449ms"} -2023-12-15T23:40:29.492Z INFO sending PrepareRequest {"height": 5690, "view": 0} -2023-12-15T23:40:29.493Z INFO sending Commit {"height": 5690, "view": 0} -2023-12-15T23:40:29.493Z INFO approving block {"height": 5690, "hash": "9cda68b0246142dd6e3eba4a9d7ca4205b0ba0f0d88eb2f395c391ed05c1c9d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "391a92df5c9a68c1934834affe0c28983b706d1d1d27fe745a5420224131fdbe"} -2023-12-15T23:40:29.494Z INFO initializing dbft {"height": 5691, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:29.495Z debug frostfs-node/morph.go:229 new block {"index": 5690} -2023-12-15T23:40:30.258Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5690, "blockHeight": 5690, "took": "6.758902ms"} -2023-12-15T23:40:30.494Z INFO sending PrepareRequest {"height": 5691, "view": 0} -2023-12-15T23:40:30.494Z INFO sending Commit {"height": 5691, "view": 0} -2023-12-15T23:40:30.494Z INFO approving block {"height": 5691, "hash": "0f91c9f66adb0c9ed5eb0eb9fc513c0e38626a202cfdfa2e5df8f8a4c8016cf1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cda68b0246142dd6e3eba4a9d7ca4205b0ba0f0d88eb2f395c391ed05c1c9d9"} -2023-12-15T23:40:30.496Z INFO initializing dbft {"height": 5692, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:30.497Z debug frostfs-node/morph.go:229 new block {"index": 5691} -2023-12-15T23:40:31.262Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5691, "blockHeight": 5691, "took": "9.976946ms"} -2023-12-15T23:40:31.496Z INFO sending PrepareRequest {"height": 5692, "view": 0} -2023-12-15T23:40:31.496Z INFO sending Commit {"height": 5692, "view": 0} -2023-12-15T23:40:31.496Z INFO approving block {"height": 5692, "hash": "4653aec2db8bd5dd62df53bb43b01b3808b20ac858d1033e1d683c08ac14affd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f91c9f66adb0c9ed5eb0eb9fc513c0e38626a202cfdfa2e5df8f8a4c8016cf1"} -2023-12-15T23:40:31.498Z INFO initializing dbft {"height": 5693, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:31.499Z debug frostfs-node/morph.go:229 new block {"index": 5692} -2023-12-15T23:40:32.261Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5692, "blockHeight": 5692, "took": "7.728163ms"} -2023-12-15T23:40:32.498Z INFO sending PrepareRequest {"height": 5693, "view": 0} -2023-12-15T23:40:32.498Z INFO sending Commit {"height": 5693, "view": 0} -2023-12-15T23:40:32.500Z INFO approving block {"height": 5693, "hash": "496c07cc198d43a159bfc749014763f0531e8c1768c89ca213448ea7ba1ac49a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4653aec2db8bd5dd62df53bb43b01b3808b20ac858d1033e1d683c08ac14affd"} -2023-12-15T23:40:32.503Z INFO initializing dbft {"height": 5694, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:32.503Z debug frostfs-node/morph.go:229 new block {"index": 5693} -2023-12-15T23:40:33.264Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5693, "blockHeight": 5693, "took": "9.968913ms"} -2023-12-15T23:40:33.501Z INFO sending PrepareRequest {"height": 5694, "view": 0} -2023-12-15T23:40:33.501Z INFO sending Commit {"height": 5694, "view": 0} -2023-12-15T23:40:33.502Z INFO approving block {"height": 5694, "hash": "2ac6d0b102c06bfca595e8973993166606957cbb562d77b110105c097ae3c429", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "496c07cc198d43a159bfc749014763f0531e8c1768c89ca213448ea7ba1ac49a"} -2023-12-15T23:40:33.503Z INFO initializing dbft {"height": 5695, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:33.504Z debug frostfs-node/morph.go:229 new block {"index": 5694} -2023-12-15T23:40:34.261Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5694, "blockHeight": 5694, "took": "6.304753ms"} -2023-12-15T23:40:34.503Z INFO sending PrepareRequest {"height": 5695, "view": 0} -2023-12-15T23:40:34.503Z INFO sending Commit {"height": 5695, "view": 0} -2023-12-15T23:40:34.503Z INFO approving block {"height": 5695, "hash": "5ba4471c8365f0cd7437586297ee9673a6bddf0779ca8c434c25943366ca53a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ac6d0b102c06bfca595e8973993166606957cbb562d77b110105c097ae3c429"} -2023-12-15T23:40:34.505Z INFO initializing dbft {"height": 5696, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:34.506Z debug frostfs-node/morph.go:229 new block {"index": 5695} -2023-12-15T23:40:35.262Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5695, "blockHeight": 5695, "took": "7.301183ms"} -2023-12-15T23:40:35.505Z INFO sending PrepareRequest {"height": 5696, "view": 0} -2023-12-15T23:40:35.505Z INFO sending Commit {"height": 5696, "view": 0} -2023-12-15T23:40:35.506Z INFO approving block {"height": 5696, "hash": "19e6664fabfa0886e0a0a9801ea062869c985081567426431cba9e82caca5936", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ba4471c8365f0cd7437586297ee9673a6bddf0779ca8c434c25943366ca53a3"} -2023-12-15T23:40:35.509Z INFO initializing dbft {"height": 5697, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:35.509Z debug frostfs-node/morph.go:229 new block {"index": 5696} -2023-12-15T23:40:36.262Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5696, "blockHeight": 5696, "took": "6.371725ms"} -2023-12-15T23:40:36.507Z INFO sending PrepareRequest {"height": 5697, "view": 0} -2023-12-15T23:40:36.508Z INFO sending Commit {"height": 5697, "view": 0} -2023-12-15T23:40:36.508Z INFO approving block {"height": 5697, "hash": "1872d8103ea4e449646dd85f58a483405a68891989768b9adae30f8105ac9c42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19e6664fabfa0886e0a0a9801ea062869c985081567426431cba9e82caca5936"} -2023-12-15T23:40:36.510Z INFO initializing dbft {"height": 5698, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:36.511Z debug frostfs-node/morph.go:229 new block {"index": 5697} -2023-12-15T23:40:37.266Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5697, "blockHeight": 5697, "took": "8.424988ms"} -2023-12-15T23:40:37.510Z INFO sending PrepareRequest {"height": 5698, "view": 0} -2023-12-15T23:40:37.510Z INFO sending Commit {"height": 5698, "view": 0} -2023-12-15T23:40:37.511Z INFO approving block {"height": 5698, "hash": "0fe689c5eaa671d61bd00f84c0fec9a90ce26b369f6215883ffffc06f2735fa1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1872d8103ea4e449646dd85f58a483405a68891989768b9adae30f8105ac9c42"} -2023-12-15T23:40:37.513Z INFO initializing dbft {"height": 5699, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:37.514Z debug frostfs-node/morph.go:229 new block {"index": 5698} -2023-12-15T23:40:38.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5698, "blockHeight": 5698, "took": "6.788058ms"} -2023-12-15T23:40:38.512Z INFO sending PrepareRequest {"height": 5699, "view": 0} -2023-12-15T23:40:38.512Z INFO sending Commit {"height": 5699, "view": 0} -2023-12-15T23:40:38.513Z INFO approving block {"height": 5699, "hash": "404e2cf09117801f187050fff1158cd35cd368099b6789a1110ce179bafd1984", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fe689c5eaa671d61bd00f84c0fec9a90ce26b369f6215883ffffc06f2735fa1"} -2023-12-15T23:40:38.515Z INFO initializing dbft {"height": 5700, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:38.516Z debug frostfs-node/morph.go:229 new block {"index": 5699} -2023-12-15T23:40:39.264Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5699, "blockHeight": 5699, "took": "5.207152ms"} -2023-12-15T23:40:39.515Z INFO sending PrepareRequest {"height": 5700, "view": 0} -2023-12-15T23:40:39.515Z INFO sending Commit {"height": 5700, "view": 0} -2023-12-15T23:40:39.515Z INFO approving block {"height": 5700, "hash": "f89399dec1c24761fc04482cb87c408117b1861b7a7d4df9d5737a17a0563391", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "404e2cf09117801f187050fff1158cd35cd368099b6789a1110ce179bafd1984"} -2023-12-15T23:40:39.517Z INFO initializing dbft {"height": 5701, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:39.518Z debug frostfs-node/morph.go:229 new block {"index": 5700} -2023-12-15T23:40:40.268Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5700, "blockHeight": 5700, "took": "8.156354ms"} -2023-12-15T23:40:40.517Z INFO sending PrepareRequest {"height": 5701, "view": 0} -2023-12-15T23:40:40.517Z INFO sending Commit {"height": 5701, "view": 0} -2023-12-15T23:40:40.518Z INFO approving block {"height": 5701, "hash": "7eb99aca50e2d3dfe519433e0e0d60a438ed24ea8d1be8f479907361d40bcc4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f89399dec1c24761fc04482cb87c408117b1861b7a7d4df9d5737a17a0563391"} -2023-12-15T23:40:40.519Z INFO initializing dbft {"height": 5702, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:40.520Z debug frostfs-node/morph.go:229 new block {"index": 5701} -2023-12-15T23:40:41.267Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5701, "blockHeight": 5701, "took": "6.164749ms"} -2023-12-15T23:40:41.518Z INFO sending PrepareRequest {"height": 5702, "view": 0} -2023-12-15T23:40:41.519Z INFO sending Commit {"height": 5702, "view": 0} -2023-12-15T23:40:41.519Z INFO approving block {"height": 5702, "hash": "2d3e320a24671631e0ac3e11d2973ba0e8adefce27f31bc884d22375774f9651", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7eb99aca50e2d3dfe519433e0e0d60a438ed24ea8d1be8f479907361d40bcc4a"} -2023-12-15T23:40:41.520Z INFO initializing dbft {"height": 5703, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:41.521Z debug frostfs-node/morph.go:229 new block {"index": 5702} -2023-12-15T23:40:42.269Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5702, "blockHeight": 5702, "took": "7.217258ms"} -2023-12-15T23:40:42.520Z INFO sending PrepareRequest {"height": 5703, "view": 0} -2023-12-15T23:40:42.521Z INFO sending Commit {"height": 5703, "view": 0} -2023-12-15T23:40:42.521Z INFO approving block {"height": 5703, "hash": "271d817f51f8483e0d9670fb7e2984c9c0140a8042ee3e141d8730688fde5a64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d3e320a24671631e0ac3e11d2973ba0e8adefce27f31bc884d22375774f9651"} -2023-12-15T23:40:42.524Z INFO initializing dbft {"height": 5704, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:42.525Z debug frostfs-node/morph.go:229 new block {"index": 5703} -2023-12-15T23:40:43.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5703, "blockHeight": 5703, "took": "8.398654ms"} -2023-12-15T23:40:43.522Z INFO sending PrepareRequest {"height": 5704, "view": 0} -2023-12-15T23:40:43.522Z INFO sending Commit {"height": 5704, "view": 0} -2023-12-15T23:40:43.523Z INFO approving block {"height": 5704, "hash": "7d7e4f4e70a4f1ceb6dea31290c6f4b30959777f3cdebd83e256172b309e2513", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "271d817f51f8483e0d9670fb7e2984c9c0140a8042ee3e141d8730688fde5a64"} -2023-12-15T23:40:43.524Z INFO initializing dbft {"height": 5705, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:43.525Z debug frostfs-node/morph.go:229 new block {"index": 5704} -2023-12-15T23:40:44.273Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5704, "blockHeight": 5704, "took": "8.414417ms"} -2023-12-15T23:40:44.525Z INFO sending PrepareRequest {"height": 5705, "view": 0} -2023-12-15T23:40:44.525Z INFO sending Commit {"height": 5705, "view": 0} -2023-12-15T23:40:44.525Z INFO approving block {"height": 5705, "hash": "7003d96dd99ea9ef64dfea6a250887cdb03dab535c0831229d8c9931e271affa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d7e4f4e70a4f1ceb6dea31290c6f4b30959777f3cdebd83e256172b309e2513"} -2023-12-15T23:40:44.527Z INFO initializing dbft {"height": 5706, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:44.528Z debug frostfs-node/morph.go:229 new block {"index": 5705} -2023-12-15T23:40:45.274Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5705, "blockHeight": 5705, "took": "8.758095ms"} -2023-12-15T23:40:45.528Z INFO sending PrepareRequest {"height": 5706, "view": 0} -2023-12-15T23:40:45.528Z INFO sending Commit {"height": 5706, "view": 0} -2023-12-15T23:40:45.528Z INFO approving block {"height": 5706, "hash": "7ab40c17c9ee8269c01f4c9bfae662f9486a517a6835404d647dbd64d422939f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7003d96dd99ea9ef64dfea6a250887cdb03dab535c0831229d8c9931e271affa"} -2023-12-15T23:40:45.532Z INFO initializing dbft {"height": 5707, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:45.532Z debug frostfs-node/morph.go:229 new block {"index": 5706} -2023-12-15T23:40:46.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5706, "blockHeight": 5706, "took": "5.962564ms"} -2023-12-15T23:40:46.530Z INFO sending PrepareRequest {"height": 5707, "view": 0} -2023-12-15T23:40:46.530Z INFO sending Commit {"height": 5707, "view": 0} -2023-12-15T23:40:46.530Z INFO approving block {"height": 5707, "hash": "6fd71dbb77cb6bcf36e5462a21a4a4336f603b6c7c9cb0bef33fc531a9e922c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ab40c17c9ee8269c01f4c9bfae662f9486a517a6835404d647dbd64d422939f"} -2023-12-15T23:40:46.531Z INFO initializing dbft {"height": 5708, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:46.532Z debug frostfs-node/morph.go:229 new block {"index": 5707} -2023-12-15T23:40:47.274Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5707, "blockHeight": 5707, "took": "7.835268ms"} -2023-12-15T23:40:47.532Z INFO sending PrepareRequest {"height": 5708, "view": 0} -2023-12-15T23:40:47.532Z INFO sending Commit {"height": 5708, "view": 0} -2023-12-15T23:40:47.532Z INFO approving block {"height": 5708, "hash": "1e19efc940c746594e5ce347093a1550b73ffc8a4a16e20b7ab20aad29b3648e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fd71dbb77cb6bcf36e5462a21a4a4336f603b6c7c9cb0bef33fc531a9e922c2"} -2023-12-15T23:40:47.535Z INFO initializing dbft {"height": 5709, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:47.535Z debug frostfs-node/morph.go:229 new block {"index": 5708} -2023-12-15T23:40:48.274Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5708, "blockHeight": 5708, "took": "6.827763ms"} -2023-12-15T23:40:48.533Z INFO sending PrepareRequest {"height": 5709, "view": 0} -2023-12-15T23:40:48.534Z INFO sending Commit {"height": 5709, "view": 0} -2023-12-15T23:40:48.534Z INFO approving block {"height": 5709, "hash": "4d7cfad1aa268c5a52230dbeccfaf4ec022078284327063e51cf963629e189f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e19efc940c746594e5ce347093a1550b73ffc8a4a16e20b7ab20aad29b3648e"} -2023-12-15T23:40:48.536Z INFO initializing dbft {"height": 5710, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:48.537Z debug frostfs-node/morph.go:229 new block {"index": 5709} -2023-12-15T23:40:49.274Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5709, "blockHeight": 5709, "took": "5.839604ms"} -2023-12-15T23:40:49.535Z INFO sending PrepareRequest {"height": 5710, "view": 0} -2023-12-15T23:40:49.536Z INFO sending Commit {"height": 5710, "view": 0} -2023-12-15T23:40:49.536Z INFO approving block {"height": 5710, "hash": "2d2d95f11c283a8fb96d0c7c073e427e9c9cccfc85d864e7dc3fb2366373a02e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d7cfad1aa268c5a52230dbeccfaf4ec022078284327063e51cf963629e189f1"} -2023-12-15T23:40:49.537Z INFO initializing dbft {"height": 5711, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:49.538Z debug frostfs-node/morph.go:229 new block {"index": 5710} -2023-12-15T23:40:50.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5710, "blockHeight": 5710, "took": "9.379664ms"} -2023-12-15T23:40:50.537Z INFO sending PrepareRequest {"height": 5711, "view": 0} -2023-12-15T23:40:50.537Z INFO sending Commit {"height": 5711, "view": 0} -2023-12-15T23:40:50.538Z INFO approving block {"height": 5711, "hash": "46e065709246b11a4987656aadc92f039bb921997cb143eec4ec9e73d5fa9345", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d2d95f11c283a8fb96d0c7c073e427e9c9cccfc85d864e7dc3fb2366373a02e"} -2023-12-15T23:40:50.539Z INFO initializing dbft {"height": 5712, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:50.540Z debug frostfs-node/morph.go:229 new block {"index": 5711} -2023-12-15T23:40:51.275Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5711, "blockHeight": 5711, "took": "5.124339ms"} -2023-12-15T23:40:51.539Z INFO sending PrepareRequest {"height": 5712, "view": 0} -2023-12-15T23:40:51.539Z INFO sending Commit {"height": 5712, "view": 0} -2023-12-15T23:40:51.539Z INFO approving block {"height": 5712, "hash": "b1169d01f59f078529f4027923e5ded169dd7d59d27b2fd24b774b1ab3e02b32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46e065709246b11a4987656aadc92f039bb921997cb143eec4ec9e73d5fa9345"} -2023-12-15T23:40:51.541Z INFO initializing dbft {"height": 5713, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:51.542Z debug frostfs-node/morph.go:229 new block {"index": 5712} -2023-12-15T23:40:52.276Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5712, "blockHeight": 5712, "took": "6.201732ms"} -2023-12-15T23:40:52.541Z INFO sending PrepareRequest {"height": 5713, "view": 0} -2023-12-15T23:40:52.541Z INFO sending Commit {"height": 5713, "view": 0} -2023-12-15T23:40:52.541Z INFO approving block {"height": 5713, "hash": "0fb51b80d55cdcf6dd376e6dffb7c6ca72794160bb5d2debf9bd2cd51ce1d35e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1169d01f59f078529f4027923e5ded169dd7d59d27b2fd24b774b1ab3e02b32"} -2023-12-15T23:40:52.542Z INFO initializing dbft {"height": 5714, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:52.543Z debug frostfs-node/morph.go:229 new block {"index": 5713} -2023-12-15T23:40:53.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5713, "blockHeight": 5713, "took": "7.326463ms"} -2023-12-15T23:40:53.542Z INFO sending PrepareRequest {"height": 5714, "view": 0} -2023-12-15T23:40:53.542Z INFO sending Commit {"height": 5714, "view": 0} -2023-12-15T23:40:53.542Z INFO approving block {"height": 5714, "hash": "630f4bf0d43c4c04082db530677c230fa14b1f92206df8a6477e8fe4b6654d6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fb51b80d55cdcf6dd376e6dffb7c6ca72794160bb5d2debf9bd2cd51ce1d35e"} -2023-12-15T23:40:53.544Z INFO initializing dbft {"height": 5715, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:53.545Z debug frostfs-node/morph.go:229 new block {"index": 5714} -2023-12-15T23:40:54.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5714, "blockHeight": 5714, "took": "9.94433ms"} -2023-12-15T23:40:54.544Z INFO sending PrepareRequest {"height": 5715, "view": 0} -2023-12-15T23:40:54.544Z INFO sending Commit {"height": 5715, "view": 0} -2023-12-15T23:40:54.544Z INFO approving block {"height": 5715, "hash": "ee522fd5fa03b8fee7f7e12092712f27e5721dcffcda6b83082d057b4acdd20d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "630f4bf0d43c4c04082db530677c230fa14b1f92206df8a6477e8fe4b6654d6c"} -2023-12-15T23:40:54.545Z INFO initializing dbft {"height": 5716, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:54.546Z debug frostfs-node/morph.go:229 new block {"index": 5715} -2023-12-15T23:40:55.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5715, "blockHeight": 5715, "took": "5.659236ms"} -2023-12-15T23:40:55.545Z INFO sending PrepareRequest {"height": 5716, "view": 0} -2023-12-15T23:40:55.546Z INFO sending Commit {"height": 5716, "view": 0} -2023-12-15T23:40:55.546Z INFO approving block {"height": 5716, "hash": "7cfd83b58ee731f0bf5e33239317745627c51763853a788133c14f473ac96096", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee522fd5fa03b8fee7f7e12092712f27e5721dcffcda6b83082d057b4acdd20d"} -2023-12-15T23:40:55.547Z INFO initializing dbft {"height": 5717, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:55.548Z debug frostfs-node/morph.go:229 new block {"index": 5716} -2023-12-15T23:40:56.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5716, "blockHeight": 5716, "took": "9.449036ms"} -2023-12-15T23:40:56.547Z INFO sending PrepareRequest {"height": 5717, "view": 0} -2023-12-15T23:40:56.547Z INFO sending Commit {"height": 5717, "view": 0} -2023-12-15T23:40:56.548Z INFO approving block {"height": 5717, "hash": "6d56ced5fe94f5be465792206f5aa8317c6ffe9a9997aac778390307e080d123", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cfd83b58ee731f0bf5e33239317745627c51763853a788133c14f473ac96096"} -2023-12-15T23:40:56.549Z INFO initializing dbft {"height": 5718, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:56.550Z debug frostfs-node/morph.go:229 new block {"index": 5717} -2023-12-15T23:40:56.554Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:40:56.559Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:40:56.560Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:40:57.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5717, "blockHeight": 5717, "took": "8.038609ms"} -2023-12-15T23:40:57.549Z INFO sending PrepareRequest {"height": 5718, "view": 0} -2023-12-15T23:40:57.550Z INFO sending Commit {"height": 5718, "view": 0} -2023-12-15T23:40:57.550Z INFO approving block {"height": 5718, "hash": "c10372c49772f23877aa9eab26d3487831a5739079b10a2469b0583f35180737", "tx_count": 2, "merkle": "6812a57ac9a5985554c5ad8b53d54efaee684defa879d45ba4ba2289af3253df", "prev": "6d56ced5fe94f5be465792206f5aa8317c6ffe9a9997aac778390307e080d123"} -2023-12-15T23:40:57.551Z INFO runtime log {"tx": "74be5526e30e5d49352adf40e8e73cb6ece15c8f1497a0303aa54be76f8bef06", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:40:57.551Z INFO runtime log {"tx": "74be5526e30e5d49352adf40e8e73cb6ece15c8f1497a0303aa54be76f8bef06", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:40:57.552Z INFO initializing dbft {"height": 5719, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:57.553Z debug frostfs-node/morph.go:229 new block {"index": 5718} -2023-12-15T23:40:58.282Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5718, "blockHeight": 5718, "took": "8.287752ms"} -2023-12-15T23:40:58.551Z INFO sending PrepareRequest {"height": 5719, "view": 0} -2023-12-15T23:40:58.551Z INFO sending Commit {"height": 5719, "view": 0} -2023-12-15T23:40:58.552Z INFO approving block {"height": 5719, "hash": "aeff30343968b758563d342308653a5df27eb973d814b62f9d17ffb994dc6c8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c10372c49772f23877aa9eab26d3487831a5739079b10a2469b0583f35180737"} -2023-12-15T23:40:58.553Z INFO initializing dbft {"height": 5720, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:58.554Z debug frostfs-node/morph.go:229 new block {"index": 5719} -2023-12-15T23:40:59.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5719, "blockHeight": 5719, "took": "6.796262ms"} -2023-12-15T23:40:59.553Z INFO sending PrepareRequest {"height": 5720, "view": 0} -2023-12-15T23:40:59.553Z INFO sending Commit {"height": 5720, "view": 0} -2023-12-15T23:40:59.553Z INFO approving block {"height": 5720, "hash": "ba159c753df73cd2212689828c6a30b3738fde0ed542e884c8c4e729a54e4979", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aeff30343968b758563d342308653a5df27eb973d814b62f9d17ffb994dc6c8b"} -2023-12-15T23:40:59.555Z INFO initializing dbft {"height": 5721, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:40:59.555Z debug frostfs-node/morph.go:229 new block {"index": 5720} -2023-12-15T23:41:00.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5720, "blockHeight": 5720, "took": "9.055426ms"} -2023-12-15T23:41:00.554Z INFO sending PrepareRequest {"height": 5721, "view": 0} -2023-12-15T23:41:00.554Z INFO sending Commit {"height": 5721, "view": 0} -2023-12-15T23:41:00.555Z INFO approving block {"height": 5721, "hash": "0783b448b1f5163be72087c3395293bdd57e566ceadb6c9ce972cbf257d49eb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba159c753df73cd2212689828c6a30b3738fde0ed542e884c8c4e729a54e4979"} -2023-12-15T23:41:00.556Z INFO initializing dbft {"height": 5722, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:00.557Z debug frostfs-node/morph.go:229 new block {"index": 5721} -2023-12-15T23:41:01.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5721, "blockHeight": 5721, "took": "7.73453ms"} -2023-12-15T23:41:01.556Z INFO sending PrepareRequest {"height": 5722, "view": 0} -2023-12-15T23:41:01.556Z INFO sending Commit {"height": 5722, "view": 0} -2023-12-15T23:41:01.557Z INFO approving block {"height": 5722, "hash": "c5e836c6cb2045fe5daec7d07f3c40cc7dfedc37120d1f6de640b98ca8ddb161", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0783b448b1f5163be72087c3395293bdd57e566ceadb6c9ce972cbf257d49eb5"} -2023-12-15T23:41:01.558Z INFO initializing dbft {"height": 5723, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:01.559Z debug frostfs-node/morph.go:229 new block {"index": 5722} -2023-12-15T23:41:02.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5722, "blockHeight": 5722, "took": "7.021625ms"} -2023-12-15T23:41:02.558Z INFO sending PrepareRequest {"height": 5723, "view": 0} -2023-12-15T23:41:02.558Z INFO sending Commit {"height": 5723, "view": 0} -2023-12-15T23:41:02.559Z INFO approving block {"height": 5723, "hash": "a33e2666af2f4e05b205fa85924365a2b48df5ba3e48a10e96ff8d7a10c0bf09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5e836c6cb2045fe5daec7d07f3c40cc7dfedc37120d1f6de640b98ca8ddb161"} -2023-12-15T23:41:02.560Z INFO initializing dbft {"height": 5724, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:02.561Z debug frostfs-node/morph.go:229 new block {"index": 5723} -2023-12-15T23:41:02.564Z info settlement/calls.go:106 start basic income distribution {"epoch": 24} -2023-12-15T23:41:02.566Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 24, "iteration": 2, "error": "no data for 1 iteration in 24 epoch for consumers's trusts"} -2023-12-15T23:41:03.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5723, "blockHeight": 5723, "took": "6.229712ms"} -2023-12-15T23:41:03.560Z INFO sending PrepareRequest {"height": 5724, "view": 0} -2023-12-15T23:41:03.560Z INFO sending Commit {"height": 5724, "view": 0} -2023-12-15T23:41:03.561Z INFO approving block {"height": 5724, "hash": "26052aecc11a1d40c7176ebb21818c2d2a2cabad1dcd4d91a4858309e1c80fcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a33e2666af2f4e05b205fa85924365a2b48df5ba3e48a10e96ff8d7a10c0bf09"} -2023-12-15T23:41:03.562Z INFO initializing dbft {"height": 5725, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:03.563Z debug frostfs-node/morph.go:229 new block {"index": 5724} -2023-12-15T23:41:04.286Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5724, "blockHeight": 5724, "took": "7.262022ms"} -2023-12-15T23:41:04.562Z INFO sending PrepareRequest {"height": 5725, "view": 0} -2023-12-15T23:41:04.563Z INFO sending Commit {"height": 5725, "view": 0} -2023-12-15T23:41:04.563Z INFO approving block {"height": 5725, "hash": "bd6cf299d88079fe6527fc1ab223cc0087bf10c5b6c132dcf4cd93e580cca900", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26052aecc11a1d40c7176ebb21818c2d2a2cabad1dcd4d91a4858309e1c80fcc"} -2023-12-15T23:41:04.565Z INFO initializing dbft {"height": 5726, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:04.566Z debug frostfs-node/morph.go:229 new block {"index": 5725} -2023-12-15T23:41:05.288Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5725, "blockHeight": 5725, "took": "7.956603ms"} -2023-12-15T23:41:05.564Z INFO sending PrepareRequest {"height": 5726, "view": 0} -2023-12-15T23:41:05.565Z INFO sending Commit {"height": 5726, "view": 0} -2023-12-15T23:41:05.566Z INFO approving block {"height": 5726, "hash": "32465ec7d2605095964a79abb11431b16a41d9480efe10cc7ef21caddffd6a2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd6cf299d88079fe6527fc1ab223cc0087bf10c5b6c132dcf4cd93e580cca900"} -2023-12-15T23:41:05.568Z INFO initializing dbft {"height": 5727, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:05.569Z debug frostfs-node/morph.go:229 new block {"index": 5726} -2023-12-15T23:41:06.285Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5726, "blockHeight": 5726, "took": "4.871166ms"} -2023-12-15T23:41:06.567Z INFO sending PrepareRequest {"height": 5727, "view": 0} -2023-12-15T23:41:06.568Z INFO sending Commit {"height": 5727, "view": 0} -2023-12-15T23:41:06.568Z INFO approving block {"height": 5727, "hash": "836fddca7bf54134c46d60738be642959ed7ea283837b907620d2885efaf3e42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32465ec7d2605095964a79abb11431b16a41d9480efe10cc7ef21caddffd6a2e"} -2023-12-15T23:41:06.570Z INFO initializing dbft {"height": 5728, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:06.570Z debug frostfs-node/morph.go:229 new block {"index": 5727} -2023-12-15T23:41:07.287Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5727, "blockHeight": 5727, "took": "5.682132ms"} -2023-12-15T23:41:07.570Z INFO sending PrepareRequest {"height": 5728, "view": 0} -2023-12-15T23:41:07.570Z INFO sending Commit {"height": 5728, "view": 0} -2023-12-15T23:41:07.571Z INFO approving block {"height": 5728, "hash": "1a75cd780e8e02142688d51eb40a9f625c6d30881db199941c8ee6770485689a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "836fddca7bf54134c46d60738be642959ed7ea283837b907620d2885efaf3e42"} -2023-12-15T23:41:07.572Z INFO initializing dbft {"height": 5729, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:07.573Z debug frostfs-node/morph.go:229 new block {"index": 5728} -2023-12-15T23:41:08.288Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5728, "blockHeight": 5728, "took": "6.318714ms"} -2023-12-15T23:41:08.572Z INFO sending PrepareRequest {"height": 5729, "view": 0} -2023-12-15T23:41:08.572Z INFO sending Commit {"height": 5729, "view": 0} -2023-12-15T23:41:08.572Z INFO approving block {"height": 5729, "hash": "0e91263847858c8213d0243a31a6e87c0f0c7b18e2c69795eb94f95a9dc70d8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a75cd780e8e02142688d51eb40a9f625c6d30881db199941c8ee6770485689a"} -2023-12-15T23:41:08.574Z INFO initializing dbft {"height": 5730, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:08.576Z debug frostfs-node/morph.go:229 new block {"index": 5729} -2023-12-15T23:41:09.291Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5729, "blockHeight": 5729, "took": "7.679708ms"} -2023-12-15T23:41:09.574Z INFO sending PrepareRequest {"height": 5730, "view": 0} -2023-12-15T23:41:09.574Z INFO sending Commit {"height": 5730, "view": 0} -2023-12-15T23:41:09.575Z INFO approving block {"height": 5730, "hash": "f5431e3d6e62cf5169c08c38f42b53d4666574209d1013b106c706055a359cdd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e91263847858c8213d0243a31a6e87c0f0c7b18e2c69795eb94f95a9dc70d8c"} -2023-12-15T23:41:09.577Z INFO initializing dbft {"height": 5731, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:09.578Z debug frostfs-node/morph.go:229 new block {"index": 5730} -2023-12-15T23:41:10.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5730, "blockHeight": 5730, "took": "8.475975ms"} -2023-12-15T23:41:10.576Z INFO sending PrepareRequest {"height": 5731, "view": 0} -2023-12-15T23:41:10.577Z INFO sending Commit {"height": 5731, "view": 0} -2023-12-15T23:41:10.577Z INFO approving block {"height": 5731, "hash": "75fe91d13dd7a16d0c1af5d3bb22168236fd111cc82824b11e9d0895c159e941", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5431e3d6e62cf5169c08c38f42b53d4666574209d1013b106c706055a359cdd"} -2023-12-15T23:41:10.579Z INFO initializing dbft {"height": 5732, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:10.580Z debug frostfs-node/morph.go:229 new block {"index": 5731} -2023-12-15T23:41:11.293Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5731, "blockHeight": 5731, "took": "8.155868ms"} -2023-12-15T23:41:11.578Z INFO sending PrepareRequest {"height": 5732, "view": 0} -2023-12-15T23:41:11.579Z INFO sending Commit {"height": 5732, "view": 0} -2023-12-15T23:41:11.579Z INFO approving block {"height": 5732, "hash": "67fadea77be96afcecd030e3b36c8584d813be3eb8f4246f9797f39dac2c39c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75fe91d13dd7a16d0c1af5d3bb22168236fd111cc82824b11e9d0895c159e941"} -2023-12-15T23:41:11.580Z INFO initializing dbft {"height": 5733, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:11.581Z debug frostfs-node/morph.go:229 new block {"index": 5732} -2023-12-15T23:41:12.293Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5732, "blockHeight": 5732, "took": "7.109347ms"} -2023-12-15T23:41:12.580Z INFO sending PrepareRequest {"height": 5733, "view": 0} -2023-12-15T23:41:12.580Z INFO sending Commit {"height": 5733, "view": 0} -2023-12-15T23:41:12.581Z INFO approving block {"height": 5733, "hash": "5df2a78331141787279b70c79dcc096c1a51a400f0a13103f908b30f56c5a6a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67fadea77be96afcecd030e3b36c8584d813be3eb8f4246f9797f39dac2c39c0"} -2023-12-15T23:41:12.582Z INFO initializing dbft {"height": 5734, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:12.583Z debug frostfs-node/morph.go:229 new block {"index": 5733} -2023-12-15T23:41:13.296Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5733, "blockHeight": 5733, "took": "9.743583ms"} -2023-12-15T23:41:13.582Z INFO sending PrepareRequest {"height": 5734, "view": 0} -2023-12-15T23:41:13.582Z INFO sending Commit {"height": 5734, "view": 0} -2023-12-15T23:41:13.582Z INFO approving block {"height": 5734, "hash": "c5ca971531be02947325c6b20e54867e9fae1ffba04e8c05664819ed86338290", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5df2a78331141787279b70c79dcc096c1a51a400f0a13103f908b30f56c5a6a3"} -2023-12-15T23:41:13.584Z INFO initializing dbft {"height": 5735, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:13.585Z debug frostfs-node/morph.go:229 new block {"index": 5734} -2023-12-15T23:41:14.295Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5734, "blockHeight": 5734, "took": "8.043907ms"} -2023-12-15T23:41:14.584Z INFO sending PrepareRequest {"height": 5735, "view": 0} -2023-12-15T23:41:14.584Z INFO sending Commit {"height": 5735, "view": 0} -2023-12-15T23:41:14.585Z INFO approving block {"height": 5735, "hash": "8fe7c4b93d5a6c8301e8dffc11c895783e0a28556c81a2c6fb7b8743299a885a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5ca971531be02947325c6b20e54867e9fae1ffba04e8c05664819ed86338290"} -2023-12-15T23:41:14.587Z INFO initializing dbft {"height": 5736, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:14.588Z debug frostfs-node/morph.go:229 new block {"index": 5735} -2023-12-15T23:41:15.298Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5735, "blockHeight": 5735, "took": "9.531118ms"} -2023-12-15T23:41:15.587Z INFO sending PrepareRequest {"height": 5736, "view": 0} -2023-12-15T23:41:15.587Z INFO sending Commit {"height": 5736, "view": 0} -2023-12-15T23:41:15.588Z INFO approving block {"height": 5736, "hash": "a62e192f497fbb492932322c8a90200edbb5007ef5423a989738116aced0c881", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fe7c4b93d5a6c8301e8dffc11c895783e0a28556c81a2c6fb7b8743299a885a"} -2023-12-15T23:41:15.595Z INFO initializing dbft {"height": 5737, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:15.596Z debug frostfs-node/morph.go:229 new block {"index": 5736} -2023-12-15T23:41:16.296Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5736, "blockHeight": 5736, "took": "6.232329ms"} -2023-12-15T23:41:16.589Z INFO sending PrepareRequest {"height": 5737, "view": 0} -2023-12-15T23:41:16.589Z INFO sending Commit {"height": 5737, "view": 0} -2023-12-15T23:41:16.590Z INFO approving block {"height": 5737, "hash": "93ea06c7c02a289887948c8d273c8afc40922d4da114eb69c03f87d5c9e99782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a62e192f497fbb492932322c8a90200edbb5007ef5423a989738116aced0c881"} -2023-12-15T23:41:16.592Z INFO initializing dbft {"height": 5738, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:16.593Z debug frostfs-node/morph.go:229 new block {"index": 5737} -2023-12-15T23:41:17.297Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5737, "blockHeight": 5737, "took": "6.644196ms"} -2023-12-15T23:41:17.591Z INFO sending PrepareRequest {"height": 5738, "view": 0} -2023-12-15T23:41:17.591Z INFO sending Commit {"height": 5738, "view": 0} -2023-12-15T23:41:17.592Z INFO approving block {"height": 5738, "hash": "3de30768bc66c64fd33f5ff6d92c1f12a95a826f2fc3fba7d7466109c53befde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93ea06c7c02a289887948c8d273c8afc40922d4da114eb69c03f87d5c9e99782"} -2023-12-15T23:41:17.594Z INFO initializing dbft {"height": 5739, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:17.595Z debug frostfs-node/morph.go:229 new block {"index": 5738} -2023-12-15T23:41:18.298Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5738, "blockHeight": 5738, "took": "7.120777ms"} -2023-12-15T23:41:18.594Z INFO sending PrepareRequest {"height": 5739, "view": 0} -2023-12-15T23:41:18.594Z INFO sending Commit {"height": 5739, "view": 0} -2023-12-15T23:41:18.594Z INFO approving block {"height": 5739, "hash": "8ab2e42112006a7a5788b805a48b917c0cf7667e854aba789d6483a8eb7b4ec9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3de30768bc66c64fd33f5ff6d92c1f12a95a826f2fc3fba7d7466109c53befde"} -2023-12-15T23:41:18.595Z INFO initializing dbft {"height": 5740, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:18.596Z debug frostfs-node/morph.go:229 new block {"index": 5739} -2023-12-15T23:41:19.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5739, "blockHeight": 5739, "took": "9.824717ms"} -2023-12-15T23:41:19.596Z INFO sending PrepareRequest {"height": 5740, "view": 0} -2023-12-15T23:41:19.596Z INFO sending Commit {"height": 5740, "view": 0} -2023-12-15T23:41:19.596Z INFO approving block {"height": 5740, "hash": "5f9a5416a34feaef6d32e98850af8ef368322a36e445c949ef7bf198207586df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ab2e42112006a7a5788b805a48b917c0cf7667e854aba789d6483a8eb7b4ec9"} -2023-12-15T23:41:19.598Z INFO initializing dbft {"height": 5741, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:19.599Z debug frostfs-node/morph.go:229 new block {"index": 5740} -2023-12-15T23:41:20.301Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5740, "blockHeight": 5740, "took": "7.455408ms"} -2023-12-15T23:41:20.598Z INFO sending PrepareRequest {"height": 5741, "view": 0} -2023-12-15T23:41:20.598Z INFO sending Commit {"height": 5741, "view": 0} -2023-12-15T23:41:20.599Z INFO approving block {"height": 5741, "hash": "9aebc8c3c459998cfd46d4fffca3bcbcae16d0d9380cd7c2ebaea1f144a393ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f9a5416a34feaef6d32e98850af8ef368322a36e445c949ef7bf198207586df"} -2023-12-15T23:41:20.600Z INFO initializing dbft {"height": 5742, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:20.601Z debug frostfs-node/morph.go:229 new block {"index": 5741} -2023-12-15T23:41:21.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5741, "blockHeight": 5741, "took": "5.605501ms"} -2023-12-15T23:41:21.600Z INFO sending PrepareRequest {"height": 5742, "view": 0} -2023-12-15T23:41:21.600Z INFO sending Commit {"height": 5742, "view": 0} -2023-12-15T23:41:21.601Z INFO approving block {"height": 5742, "hash": "37ffa75a76d0d7b2548de1d643b78597c0430b3bab64b6338741076ae9f5cfd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9aebc8c3c459998cfd46d4fffca3bcbcae16d0d9380cd7c2ebaea1f144a393ab"} -2023-12-15T23:41:21.602Z INFO initializing dbft {"height": 5743, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:21.603Z debug frostfs-node/morph.go:229 new block {"index": 5742} -2023-12-15T23:41:22.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5742, "blockHeight": 5742, "took": "7.032655ms"} -2023-12-15T23:41:22.602Z INFO sending PrepareRequest {"height": 5743, "view": 0} -2023-12-15T23:41:22.602Z INFO sending Commit {"height": 5743, "view": 0} -2023-12-15T23:41:22.602Z INFO approving block {"height": 5743, "hash": "74847769aa4b64f13382154a5ca6c9e185764645bfcd161f22f627c45480c99e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37ffa75a76d0d7b2548de1d643b78597c0430b3bab64b6338741076ae9f5cfd0"} -2023-12-15T23:41:22.604Z INFO initializing dbft {"height": 5744, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:22.605Z debug frostfs-node/morph.go:229 new block {"index": 5743} -2023-12-15T23:41:23.304Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5743, "blockHeight": 5743, "took": "8.351311ms"} -2023-12-15T23:41:23.604Z INFO sending PrepareRequest {"height": 5744, "view": 0} -2023-12-15T23:41:23.604Z INFO sending Commit {"height": 5744, "view": 0} -2023-12-15T23:41:23.604Z INFO approving block {"height": 5744, "hash": "2a8f8b45fc579b62117e9725d0303d6a2fae7b889adc71349d3d02df0f8ce795", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74847769aa4b64f13382154a5ca6c9e185764645bfcd161f22f627c45480c99e"} -2023-12-15T23:41:23.606Z INFO initializing dbft {"height": 5745, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:23.607Z debug frostfs-node/morph.go:229 new block {"index": 5744} -2023-12-15T23:41:24.304Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5744, "blockHeight": 5744, "took": "7.591945ms"} -2023-12-15T23:41:24.606Z INFO sending PrepareRequest {"height": 5745, "view": 0} -2023-12-15T23:41:24.606Z INFO sending Commit {"height": 5745, "view": 0} -2023-12-15T23:41:24.607Z INFO approving block {"height": 5745, "hash": "49543fdc35e0b7859a26a1fa71a7bd37072d9016ccc9e2bf08f7918340ce5e4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a8f8b45fc579b62117e9725d0303d6a2fae7b889adc71349d3d02df0f8ce795"} -2023-12-15T23:41:24.608Z INFO initializing dbft {"height": 5746, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:24.609Z debug frostfs-node/morph.go:229 new block {"index": 5745} -2023-12-15T23:41:25.305Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5745, "blockHeight": 5745, "took": "7.896551ms"} -2023-12-15T23:41:25.608Z INFO sending PrepareRequest {"height": 5746, "view": 0} -2023-12-15T23:41:25.609Z INFO sending Commit {"height": 5746, "view": 0} -2023-12-15T23:41:25.609Z INFO approving block {"height": 5746, "hash": "a732c0ffd4c670f6eff9c442d7c47b6b69c1efc96d66ac1d9416e0432ff2b6d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49543fdc35e0b7859a26a1fa71a7bd37072d9016ccc9e2bf08f7918340ce5e4a"} -2023-12-15T23:41:25.611Z INFO initializing dbft {"height": 5747, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:25.612Z debug frostfs-node/morph.go:229 new block {"index": 5746} -2023-12-15T23:41:26.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5746, "blockHeight": 5746, "took": "9.006749ms"} -2023-12-15T23:41:26.610Z INFO sending PrepareRequest {"height": 5747, "view": 0} -2023-12-15T23:41:26.610Z INFO sending Commit {"height": 5747, "view": 0} -2023-12-15T23:41:26.610Z INFO approving block {"height": 5747, "hash": "ac06967753d09f701a664e92f59e207f57076cadbf1fe5b34b2141e6cfbaddc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a732c0ffd4c670f6eff9c442d7c47b6b69c1efc96d66ac1d9416e0432ff2b6d2"} -2023-12-15T23:41:26.612Z INFO initializing dbft {"height": 5748, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:26.613Z debug frostfs-node/morph.go:229 new block {"index": 5747} -2023-12-15T23:41:27.305Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5747, "blockHeight": 5747, "took": "5.729794ms"} -2023-12-15T23:41:27.611Z INFO sending PrepareRequest {"height": 5748, "view": 0} -2023-12-15T23:41:27.611Z INFO sending Commit {"height": 5748, "view": 0} -2023-12-15T23:41:27.612Z INFO approving block {"height": 5748, "hash": "c4e673663d3b98de1b432badec78c21fd66bdda11f40c4a2c6002b2f273e8e44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac06967753d09f701a664e92f59e207f57076cadbf1fe5b34b2141e6cfbaddc1"} -2023-12-15T23:41:27.613Z INFO initializing dbft {"height": 5749, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:27.614Z debug frostfs-node/morph.go:229 new block {"index": 5748} -2023-12-15T23:41:28.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5748, "blockHeight": 5748, "took": "7.610211ms"} -2023-12-15T23:41:28.612Z INFO sending PrepareRequest {"height": 5749, "view": 0} -2023-12-15T23:41:28.613Z INFO sending Commit {"height": 5749, "view": 0} -2023-12-15T23:41:28.613Z INFO approving block {"height": 5749, "hash": "5388823be4085fa15e642301de3e051b7ba822b6a9583fa2f47e82a11aa29a66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4e673663d3b98de1b432badec78c21fd66bdda11f40c4a2c6002b2f273e8e44"} -2023-12-15T23:41:28.614Z INFO initializing dbft {"height": 5750, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:28.615Z debug frostfs-node/morph.go:229 new block {"index": 5749} -2023-12-15T23:41:29.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5749, "blockHeight": 5749, "took": "7.157044ms"} -2023-12-15T23:41:29.614Z INFO sending PrepareRequest {"height": 5750, "view": 0} -2023-12-15T23:41:29.615Z INFO sending Commit {"height": 5750, "view": 0} -2023-12-15T23:41:29.615Z INFO approving block {"height": 5750, "hash": "f88a85938382e5157dc50525ef785670f25e9b39379b3e37cc80be884151ab7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5388823be4085fa15e642301de3e051b7ba822b6a9583fa2f47e82a11aa29a66"} -2023-12-15T23:41:29.617Z INFO initializing dbft {"height": 5751, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:29.618Z debug frostfs-node/morph.go:229 new block {"index": 5750} -2023-12-15T23:41:30.309Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5750, "blockHeight": 5750, "took": "6.648123ms"} -2023-12-15T23:41:30.616Z INFO sending PrepareRequest {"height": 5751, "view": 0} -2023-12-15T23:41:30.617Z INFO sending Commit {"height": 5751, "view": 0} -2023-12-15T23:41:30.617Z INFO approving block {"height": 5751, "hash": "34311a5742afd2fe15bee49286efed065417325db27e676a7d731d45de927937", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f88a85938382e5157dc50525ef785670f25e9b39379b3e37cc80be884151ab7b"} -2023-12-15T23:41:30.619Z INFO initializing dbft {"height": 5752, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:30.620Z debug frostfs-node/morph.go:229 new block {"index": 5751} -2023-12-15T23:41:31.309Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5751, "blockHeight": 5751, "took": "6.770831ms"} -2023-12-15T23:41:31.618Z INFO sending PrepareRequest {"height": 5752, "view": 0} -2023-12-15T23:41:31.619Z INFO sending Commit {"height": 5752, "view": 0} -2023-12-15T23:41:31.619Z INFO approving block {"height": 5752, "hash": "fb73586f4da0c623e58997305d827b89a24bdc71039903bc7bdadfe97c704b23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34311a5742afd2fe15bee49286efed065417325db27e676a7d731d45de927937"} -2023-12-15T23:41:31.623Z INFO initializing dbft {"height": 5753, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:31.624Z debug frostfs-node/morph.go:229 new block {"index": 5752} -2023-12-15T23:41:32.309Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5752, "blockHeight": 5752, "took": "6.212562ms"} -2023-12-15T23:41:32.620Z INFO sending PrepareRequest {"height": 5753, "view": 0} -2023-12-15T23:41:32.621Z INFO sending Commit {"height": 5753, "view": 0} -2023-12-15T23:41:32.621Z INFO approving block {"height": 5753, "hash": "d44dbb44a76534a98f17cbaf65767a07ec430f8951d5fcab0767e3c9368fc327", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb73586f4da0c623e58997305d827b89a24bdc71039903bc7bdadfe97c704b23"} -2023-12-15T23:41:32.622Z INFO initializing dbft {"height": 5754, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:32.623Z debug frostfs-node/morph.go:229 new block {"index": 5753} -2023-12-15T23:41:33.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5753, "blockHeight": 5753, "took": "13.039341ms"} -2023-12-15T23:41:33.623Z INFO sending PrepareRequest {"height": 5754, "view": 0} -2023-12-15T23:41:33.623Z INFO sending Commit {"height": 5754, "view": 0} -2023-12-15T23:41:33.623Z INFO approving block {"height": 5754, "hash": "38d17eee4f5f6887c39f6f48eb1abfeba031bd063011216a5972f39ca80d9ece", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d44dbb44a76534a98f17cbaf65767a07ec430f8951d5fcab0767e3c9368fc327"} -2023-12-15T23:41:33.624Z INFO initializing dbft {"height": 5755, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:33.625Z debug frostfs-node/morph.go:229 new block {"index": 5754} -2023-12-15T23:41:34.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5754, "blockHeight": 5754, "took": "5.771468ms"} -2023-12-15T23:41:34.625Z INFO sending PrepareRequest {"height": 5755, "view": 0} -2023-12-15T23:41:34.626Z INFO sending Commit {"height": 5755, "view": 0} -2023-12-15T23:41:34.626Z INFO approving block {"height": 5755, "hash": "937bd863ddcb2195fb48e3feb51e3b82c3b0dd65c9b8c0c6cd9642c12680ecf5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38d17eee4f5f6887c39f6f48eb1abfeba031bd063011216a5972f39ca80d9ece"} -2023-12-15T23:41:34.629Z INFO initializing dbft {"height": 5756, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:34.629Z debug frostfs-node/morph.go:229 new block {"index": 5755} -2023-12-15T23:41:35.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5755, "blockHeight": 5755, "took": "11.33804ms"} -2023-12-15T23:41:35.627Z INFO sending PrepareRequest {"height": 5756, "view": 0} -2023-12-15T23:41:35.627Z INFO sending Commit {"height": 5756, "view": 0} -2023-12-15T23:41:35.628Z INFO approving block {"height": 5756, "hash": "9ca586803cb441172d781b5bc02dcbf61ef3bdc6be0cbb789214c663872c2d68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "937bd863ddcb2195fb48e3feb51e3b82c3b0dd65c9b8c0c6cd9642c12680ecf5"} -2023-12-15T23:41:35.630Z INFO initializing dbft {"height": 5757, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:35.631Z debug frostfs-node/morph.go:229 new block {"index": 5756} -2023-12-15T23:41:36.314Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5756, "blockHeight": 5756, "took": "7.657989ms"} -2023-12-15T23:41:36.630Z INFO sending PrepareRequest {"height": 5757, "view": 0} -2023-12-15T23:41:36.630Z INFO sending Commit {"height": 5757, "view": 0} -2023-12-15T23:41:36.631Z INFO approving block {"height": 5757, "hash": "09f4a31275f478a3c5f300acbf6376b7a6ec2aeada9d798dd7e81305844efd28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ca586803cb441172d781b5bc02dcbf61ef3bdc6be0cbb789214c663872c2d68"} -2023-12-15T23:41:36.632Z INFO initializing dbft {"height": 5758, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:36.633Z debug frostfs-node/morph.go:229 new block {"index": 5757} -2023-12-15T23:41:37.312Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5757, "blockHeight": 5757, "took": "5.349491ms"} -2023-12-15T23:41:37.631Z INFO sending PrepareRequest {"height": 5758, "view": 0} -2023-12-15T23:41:37.632Z INFO sending Commit {"height": 5758, "view": 0} -2023-12-15T23:41:37.632Z INFO approving block {"height": 5758, "hash": "9135a5995097f340c37d63faf9db8387b178d473d2cb1ad7ca7295f3c47f549a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09f4a31275f478a3c5f300acbf6376b7a6ec2aeada9d798dd7e81305844efd28"} -2023-12-15T23:41:37.634Z INFO initializing dbft {"height": 5759, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:37.635Z debug frostfs-node/morph.go:229 new block {"index": 5758} -2023-12-15T23:41:38.314Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5758, "blockHeight": 5758, "took": "6.16135ms"} -2023-12-15T23:41:38.633Z INFO sending PrepareRequest {"height": 5759, "view": 0} -2023-12-15T23:41:38.633Z INFO sending Commit {"height": 5759, "view": 0} -2023-12-15T23:41:38.634Z INFO approving block {"height": 5759, "hash": "c7eb933fea22e69d675fc06120cad55b539a370426a218dbf281e64cfb529a7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9135a5995097f340c37d63faf9db8387b178d473d2cb1ad7ca7295f3c47f549a"} -2023-12-15T23:41:38.635Z INFO initializing dbft {"height": 5760, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:38.636Z debug frostfs-node/morph.go:229 new block {"index": 5759} -2023-12-15T23:41:39.316Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5759, "blockHeight": 5759, "took": "6.763978ms"} -2023-12-15T23:41:39.635Z INFO sending PrepareRequest {"height": 5760, "view": 0} -2023-12-15T23:41:39.636Z INFO sending Commit {"height": 5760, "view": 0} -2023-12-15T23:41:39.636Z INFO approving block {"height": 5760, "hash": "28b8cc1e1a8dee4f7dc03922be62aeaf0ded26da48c2cfb4a0f85ea5de309550", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7eb933fea22e69d675fc06120cad55b539a370426a218dbf281e64cfb529a7c"} -2023-12-15T23:41:39.637Z INFO initializing dbft {"height": 5761, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:39.638Z debug frostfs-node/morph.go:229 new block {"index": 5760} -2023-12-15T23:41:40.314Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5760, "blockHeight": 5760, "took": "4.948684ms"} -2023-12-15T23:41:40.637Z INFO sending PrepareRequest {"height": 5761, "view": 0} -2023-12-15T23:41:40.637Z INFO sending Commit {"height": 5761, "view": 0} -2023-12-15T23:41:40.638Z INFO approving block {"height": 5761, "hash": "07227126a870f5d7d3bd49af4ab0c15d62b992af8f684df5def6a66a380f3718", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28b8cc1e1a8dee4f7dc03922be62aeaf0ded26da48c2cfb4a0f85ea5de309550"} -2023-12-15T23:41:40.640Z INFO initializing dbft {"height": 5762, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:40.641Z debug frostfs-node/morph.go:229 new block {"index": 5761} -2023-12-15T23:41:41.316Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5761, "blockHeight": 5761, "took": "5.325312ms"} -2023-12-15T23:41:41.639Z INFO sending PrepareRequest {"height": 5762, "view": 0} -2023-12-15T23:41:41.639Z INFO sending Commit {"height": 5762, "view": 0} -2023-12-15T23:41:41.640Z INFO approving block {"height": 5762, "hash": "2726ccab708e8ba9323c56b77ac8fa370d5874a8d686cf83296f79af63f33bf6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07227126a870f5d7d3bd49af4ab0c15d62b992af8f684df5def6a66a380f3718"} -2023-12-15T23:41:41.642Z INFO initializing dbft {"height": 5763, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:41.643Z debug frostfs-node/morph.go:229 new block {"index": 5762} -2023-12-15T23:41:42.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5762, "blockHeight": 5762, "took": "9.694532ms"} -2023-12-15T23:41:42.641Z INFO sending PrepareRequest {"height": 5763, "view": 0} -2023-12-15T23:41:42.641Z INFO sending Commit {"height": 5763, "view": 0} -2023-12-15T23:41:42.641Z INFO approving block {"height": 5763, "hash": "5370093bcc90deb37bffc4d92ba509e457e3e9da4c9af992d0c35f18644341f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2726ccab708e8ba9323c56b77ac8fa370d5874a8d686cf83296f79af63f33bf6"} -2023-12-15T23:41:42.643Z INFO initializing dbft {"height": 5764, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:42.643Z debug frostfs-node/morph.go:229 new block {"index": 5763} -2023-12-15T23:41:43.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5763, "blockHeight": 5763, "took": "5.15699ms"} -2023-12-15T23:41:43.642Z INFO sending PrepareRequest {"height": 5764, "view": 0} -2023-12-15T23:41:43.642Z INFO sending Commit {"height": 5764, "view": 0} -2023-12-15T23:41:43.643Z INFO approving block {"height": 5764, "hash": "ca3e8c78bec03ee725b1dfb009c9be9a407901589d0d3dfbe448602ef5d63c5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5370093bcc90deb37bffc4d92ba509e457e3e9da4c9af992d0c35f18644341f7"} -2023-12-15T23:41:43.644Z INFO initializing dbft {"height": 5765, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:43.644Z debug frostfs-node/morph.go:229 new block {"index": 5764} -2023-12-15T23:41:44.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5764, "blockHeight": 5764, "took": "7.868613ms"} -2023-12-15T23:41:44.644Z INFO sending PrepareRequest {"height": 5765, "view": 0} -2023-12-15T23:41:44.645Z INFO sending Commit {"height": 5765, "view": 0} -2023-12-15T23:41:44.645Z INFO approving block {"height": 5765, "hash": "478598f372dfd6c7846a7cf5886aa2d8258a7fedc72ccf1e3757744412faed06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca3e8c78bec03ee725b1dfb009c9be9a407901589d0d3dfbe448602ef5d63c5e"} -2023-12-15T23:41:44.647Z INFO initializing dbft {"height": 5766, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:44.648Z debug frostfs-node/morph.go:229 new block {"index": 5765} -2023-12-15T23:41:45.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5765, "blockHeight": 5765, "took": "11.5284ms"} -2023-12-15T23:41:45.647Z INFO sending PrepareRequest {"height": 5766, "view": 0} -2023-12-15T23:41:45.647Z INFO sending Commit {"height": 5766, "view": 0} -2023-12-15T23:41:45.647Z INFO approving block {"height": 5766, "hash": "f48b0b02eec74ec65110866ac63b64a73dc8585b6d6f396c449fc1139c34daad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "478598f372dfd6c7846a7cf5886aa2d8258a7fedc72ccf1e3757744412faed06"} -2023-12-15T23:41:45.648Z INFO initializing dbft {"height": 5767, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:45.649Z debug frostfs-node/morph.go:229 new block {"index": 5766} -2023-12-15T23:41:46.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5766, "blockHeight": 5766, "took": "9.754888ms"} -2023-12-15T23:41:46.648Z INFO sending PrepareRequest {"height": 5767, "view": 0} -2023-12-15T23:41:46.649Z INFO sending Commit {"height": 5767, "view": 0} -2023-12-15T23:41:46.649Z INFO approving block {"height": 5767, "hash": "43ce5a152bd2eb78decedb994df04416a5d173b54ffccc779ee950c070f3cc8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f48b0b02eec74ec65110866ac63b64a73dc8585b6d6f396c449fc1139c34daad"} -2023-12-15T23:41:46.652Z INFO initializing dbft {"height": 5768, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:46.653Z debug frostfs-node/morph.go:229 new block {"index": 5767} -2023-12-15T23:41:46.656Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:41:46.661Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:41:46.661Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:41:47.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5767, "blockHeight": 5767, "took": "9.218678ms"} -2023-12-15T23:41:47.651Z INFO sending PrepareRequest {"height": 5768, "view": 0} -2023-12-15T23:41:47.651Z INFO sending Commit {"height": 5768, "view": 0} -2023-12-15T23:41:47.652Z INFO approving block {"height": 5768, "hash": "5de47fb217a182b0a483848a547c39fd8eaa4ef41ab58e96890ae0d183dc085a", "tx_count": 2, "merkle": "45cfc8a6cbf02cfcc3b5ffe9f26e7581e6c0785ad8ec4613ffcbc7fef8032017", "prev": "43ce5a152bd2eb78decedb994df04416a5d173b54ffccc779ee950c070f3cc8b"} -2023-12-15T23:41:47.653Z INFO runtime log {"tx": "9921c33be6ffd97067476e71aa062b273a6934288dba30a87cb83e4cd1c3346f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:41:47.653Z INFO runtime log {"tx": "9921c33be6ffd97067476e71aa062b273a6934288dba30a87cb83e4cd1c3346f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:41:47.655Z INFO initializing dbft {"height": 5769, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:47.656Z debug frostfs-node/morph.go:229 new block {"index": 5768} -2023-12-15T23:41:48.327Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5768, "blockHeight": 5768, "took": "9.378533ms"} -2023-12-15T23:41:48.654Z INFO sending PrepareRequest {"height": 5769, "view": 0} -2023-12-15T23:41:48.654Z INFO sending Commit {"height": 5769, "view": 0} -2023-12-15T23:41:48.654Z INFO approving block {"height": 5769, "hash": "97af7f4f51b7623e15daefad92060821786aeffb109a7a11b96156dd6b9f0920", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5de47fb217a182b0a483848a547c39fd8eaa4ef41ab58e96890ae0d183dc085a"} -2023-12-15T23:41:48.657Z INFO initializing dbft {"height": 5770, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:48.658Z debug frostfs-node/morph.go:229 new block {"index": 5769} -2023-12-15T23:41:49.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5769, "blockHeight": 5769, "took": "7.181819ms"} -2023-12-15T23:41:49.656Z INFO sending PrepareRequest {"height": 5770, "view": 0} -2023-12-15T23:41:49.656Z INFO sending Commit {"height": 5770, "view": 0} -2023-12-15T23:41:49.656Z INFO approving block {"height": 5770, "hash": "63b40fe4170d8de7790df7f03daaed9b475b4eafd883ccf1eade799315dde237", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97af7f4f51b7623e15daefad92060821786aeffb109a7a11b96156dd6b9f0920"} -2023-12-15T23:41:49.658Z INFO initializing dbft {"height": 5771, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:49.659Z debug frostfs-node/morph.go:229 new block {"index": 5770} -2023-12-15T23:41:50.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5770, "blockHeight": 5770, "took": "6.151279ms"} -2023-12-15T23:41:50.657Z INFO sending PrepareRequest {"height": 5771, "view": 0} -2023-12-15T23:41:50.658Z INFO sending Commit {"height": 5771, "view": 0} -2023-12-15T23:41:50.658Z INFO approving block {"height": 5771, "hash": "56c21cc2c007ca3364ce51c7f128c6c27ebff401c7229201372674a7774ffed6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63b40fe4170d8de7790df7f03daaed9b475b4eafd883ccf1eade799315dde237"} -2023-12-15T23:41:50.659Z INFO initializing dbft {"height": 5772, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:50.660Z debug frostfs-node/morph.go:229 new block {"index": 5771} -2023-12-15T23:41:51.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5771, "blockHeight": 5771, "took": "5.844523ms"} -2023-12-15T23:41:51.660Z INFO sending PrepareRequest {"height": 5772, "view": 0} -2023-12-15T23:41:51.660Z INFO sending Commit {"height": 5772, "view": 0} -2023-12-15T23:41:51.661Z INFO approving block {"height": 5772, "hash": "b09b05347ef2367f9a5a4837cc9f4c6fa568e3b3920a01845afaee845d0b7d3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56c21cc2c007ca3364ce51c7f128c6c27ebff401c7229201372674a7774ffed6"} -2023-12-15T23:41:51.663Z INFO initializing dbft {"height": 5773, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:51.664Z debug frostfs-node/morph.go:229 new block {"index": 5772} -2023-12-15T23:41:52.327Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5772, "blockHeight": 5772, "took": "5.249855ms"} -2023-12-15T23:41:52.662Z INFO sending PrepareRequest {"height": 5773, "view": 0} -2023-12-15T23:41:52.662Z INFO sending Commit {"height": 5773, "view": 0} -2023-12-15T23:41:52.662Z INFO approving block {"height": 5773, "hash": "db641dceacbcf40b7c5b6de054987b8b3d0eda71dceade6f11d3e51a0dab1664", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b09b05347ef2367f9a5a4837cc9f4c6fa568e3b3920a01845afaee845d0b7d3b"} -2023-12-15T23:41:52.664Z INFO initializing dbft {"height": 5774, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:52.665Z debug frostfs-node/morph.go:229 new block {"index": 5773} -2023-12-15T23:41:53.329Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5773, "blockHeight": 5773, "took": "7.082889ms"} -2023-12-15T23:41:53.663Z INFO sending PrepareRequest {"height": 5774, "view": 0} -2023-12-15T23:41:53.663Z INFO sending Commit {"height": 5774, "view": 0} -2023-12-15T23:41:53.664Z INFO approving block {"height": 5774, "hash": "1b37b4bef886488bdf40d6b933df3b2298822c6da3fb38f3a0fa6fa42a116d6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db641dceacbcf40b7c5b6de054987b8b3d0eda71dceade6f11d3e51a0dab1664"} -2023-12-15T23:41:53.665Z INFO initializing dbft {"height": 5775, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:53.666Z debug frostfs-node/morph.go:229 new block {"index": 5774} -2023-12-15T23:41:54.329Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5774, "blockHeight": 5774, "took": "5.942379ms"} -2023-12-15T23:41:54.665Z INFO sending PrepareRequest {"height": 5775, "view": 0} -2023-12-15T23:41:54.666Z INFO sending Commit {"height": 5775, "view": 0} -2023-12-15T23:41:54.666Z INFO approving block {"height": 5775, "hash": "aa577ed3176f243d248fcb73b872548fb292a5a04fa0321f68fb31b3fc95fd8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b37b4bef886488bdf40d6b933df3b2298822c6da3fb38f3a0fa6fa42a116d6f"} -2023-12-15T23:41:54.668Z INFO initializing dbft {"height": 5776, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:54.669Z debug frostfs-node/morph.go:229 new block {"index": 5775} -2023-12-15T23:41:55.329Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5775, "blockHeight": 5775, "took": "5.610886ms"} -2023-12-15T23:41:55.667Z INFO sending PrepareRequest {"height": 5776, "view": 0} -2023-12-15T23:41:55.667Z INFO sending Commit {"height": 5776, "view": 0} -2023-12-15T23:41:55.667Z INFO approving block {"height": 5776, "hash": "5662ce2503b994c7cbf5b04ffddd2abb960d104ae0e60005ed7f67d2d333aab4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa577ed3176f243d248fcb73b872548fb292a5a04fa0321f68fb31b3fc95fd8f"} -2023-12-15T23:41:55.669Z INFO initializing dbft {"height": 5777, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:55.670Z debug frostfs-node/morph.go:229 new block {"index": 5776} -2023-12-15T23:41:56.331Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5776, "blockHeight": 5776, "took": "6.840026ms"} -2023-12-15T23:41:56.669Z INFO sending PrepareRequest {"height": 5777, "view": 0} -2023-12-15T23:41:56.669Z INFO sending Commit {"height": 5777, "view": 0} -2023-12-15T23:41:56.670Z INFO approving block {"height": 5777, "hash": "7e41a49d4cb6087a9106e087c4ea1a4d0672a4089e12670ac4172b8f649b3644", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5662ce2503b994c7cbf5b04ffddd2abb960d104ae0e60005ed7f67d2d333aab4"} -2023-12-15T23:41:56.671Z INFO initializing dbft {"height": 5778, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:56.672Z debug frostfs-node/morph.go:229 new block {"index": 5777} -2023-12-15T23:41:57.331Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5777, "blockHeight": 5777, "took": "6.017541ms"} -2023-12-15T23:41:57.671Z INFO sending PrepareRequest {"height": 5778, "view": 0} -2023-12-15T23:41:57.672Z INFO sending Commit {"height": 5778, "view": 0} -2023-12-15T23:41:57.672Z INFO approving block {"height": 5778, "hash": "8492be98b75edbef858986e2c0c791fe06037f5d81d7752179351c41afbda03b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e41a49d4cb6087a9106e087c4ea1a4d0672a4089e12670ac4172b8f649b3644"} -2023-12-15T23:41:57.673Z INFO initializing dbft {"height": 5779, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:57.674Z debug frostfs-node/morph.go:229 new block {"index": 5778} -2023-12-15T23:41:58.332Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5778, "blockHeight": 5778, "took": "5.609043ms"} -2023-12-15T23:41:58.673Z INFO sending PrepareRequest {"height": 5779, "view": 0} -2023-12-15T23:41:58.673Z INFO sending Commit {"height": 5779, "view": 0} -2023-12-15T23:41:58.674Z INFO approving block {"height": 5779, "hash": "c8f035f50e1fe5bd1238912cdfa42db3ba6440e115b0844374aa97e6e07446e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8492be98b75edbef858986e2c0c791fe06037f5d81d7752179351c41afbda03b"} -2023-12-15T23:41:58.675Z INFO initializing dbft {"height": 5780, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:58.676Z debug frostfs-node/morph.go:229 new block {"index": 5779} -2023-12-15T23:41:59.334Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5779, "blockHeight": 5779, "took": "6.867253ms"} -2023-12-15T23:41:59.675Z INFO sending PrepareRequest {"height": 5780, "view": 0} -2023-12-15T23:41:59.675Z INFO sending Commit {"height": 5780, "view": 0} -2023-12-15T23:41:59.676Z INFO approving block {"height": 5780, "hash": "5cdb1b8729521eb15c78b3e6f9688ee8306412706502f8fa7d28bc450b725bb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8f035f50e1fe5bd1238912cdfa42db3ba6440e115b0844374aa97e6e07446e8"} -2023-12-15T23:41:59.677Z INFO initializing dbft {"height": 5781, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:41:59.678Z debug frostfs-node/morph.go:229 new block {"index": 5780} -2023-12-15T23:42:00.335Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5780, "blockHeight": 5780, "took": "7.082207ms"} -2023-12-15T23:42:00.677Z INFO sending PrepareRequest {"height": 5781, "view": 0} -2023-12-15T23:42:00.677Z INFO sending Commit {"height": 5781, "view": 0} -2023-12-15T23:42:00.677Z INFO approving block {"height": 5781, "hash": "07739b2b395b510c88469b23dcfd6dd342b3bd80575fbdb954e9f4b1dfc134b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cdb1b8729521eb15c78b3e6f9688ee8306412706502f8fa7d28bc450b725bb5"} -2023-12-15T23:42:00.679Z INFO initializing dbft {"height": 5782, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:00.680Z debug frostfs-node/morph.go:229 new block {"index": 5781} -2023-12-15T23:42:01.335Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5781, "blockHeight": 5781, "took": "5.310757ms"} -2023-12-15T23:42:01.678Z INFO sending PrepareRequest {"height": 5782, "view": 0} -2023-12-15T23:42:01.678Z INFO sending Commit {"height": 5782, "view": 0} -2023-12-15T23:42:01.679Z INFO approving block {"height": 5782, "hash": "ff60923b955b38cc602a4c5d9ed550bb496c85fb9a25b244d5935a37e716619d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07739b2b395b510c88469b23dcfd6dd342b3bd80575fbdb954e9f4b1dfc134b1"} -2023-12-15T23:42:01.682Z INFO initializing dbft {"height": 5783, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:01.683Z debug frostfs-node/morph.go:229 new block {"index": 5782} -2023-12-15T23:42:02.336Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5782, "blockHeight": 5782, "took": "5.702701ms"} -2023-12-15T23:42:02.680Z INFO sending PrepareRequest {"height": 5783, "view": 0} -2023-12-15T23:42:02.680Z INFO sending Commit {"height": 5783, "view": 0} -2023-12-15T23:42:02.681Z INFO approving block {"height": 5783, "hash": "9387dad106074c8f00d46ec1cdb9f7a037f8cc66ebd1a273e42727507faec371", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff60923b955b38cc602a4c5d9ed550bb496c85fb9a25b244d5935a37e716619d"} -2023-12-15T23:42:02.682Z INFO initializing dbft {"height": 5784, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:02.683Z debug frostfs-node/morph.go:229 new block {"index": 5783} -2023-12-15T23:42:02.687Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:42:02.688Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 24, "iteration": 3, "error": "no data for 2 iteration in 24 epoch for consumers's trusts"} -2023-12-15T23:42:02.693Z INFO runtime log {"tx": "9b57881d9735d9fa566127cb0a9152f541fee272ee31157319ae2feb7bb83d00", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:42:03.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5783, "blockHeight": 5783, "took": "8.767256ms"} -2023-12-15T23:42:03.682Z INFO sending PrepareRequest {"height": 5784, "view": 0} -2023-12-15T23:42:03.682Z INFO sending Commit {"height": 5784, "view": 0} -2023-12-15T23:42:03.683Z INFO approving block {"height": 5784, "hash": "4875ef14366ac7d4071234e93a72f763514bd27c77413e8753dbc06262ff1349", "tx_count": 1, "merkle": "df4fbab13a51ee3c4e3e531547f36e02dbae521d6d86a1fd9508542cb33b34f0", "prev": "9387dad106074c8f00d46ec1cdb9f7a037f8cc66ebd1a273e42727507faec371"} -2023-12-15T23:42:03.684Z INFO runtime log {"tx": "f0343bb32c540895fda1866d1d52aedb026ef34715533e4e3cee513ab1ba4fdf", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:42:03.686Z INFO initializing dbft {"height": 5785, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:03.687Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 26} -2023-12-15T23:42:03.687Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 26} -2023-12-15T23:42:03.687Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:42:03.687Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T23:42:03.687Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 26} -2023-12-15T23:42:03.687Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 26} -2023-12-15T23:42:03.687Z debug frostfs-node/morph.go:229 new block {"index": 5784} -2023-12-15T23:42:03.687Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 26} -2023-12-15T23:42:03.688Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:42:03.688Z debug controller/calls.go:95 starting to report local trust values {"epoch": 25} -2023-12-15T23:42:03.688Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 25} -2023-12-15T23:42:03.693Z debug controller/calls.go:146 reporting successfully finished {"epoch": 25} -2023-12-15T23:42:03.693Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 25} -2023-12-15T23:42:03.695Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:42:03.696Z INFO runtime log {"tx": "065c9427bffbeb337d3512bdf5966b19cf74f749fbe572fc405625b228b0ffb6", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:42:03.701Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 5787, "tx_hash": "a47f426ac16755f4b989e690a256939e784c117874e6d0af7dcbd8f99d3a2963"} -2023-12-15T23:42:03.711Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:42:03.711Z info audit/handlers.go:13 new round of audit {"epoch": 26} -2023-12-15T23:42:03.712Z info settlement/calls.go:26 new audit settlement event {"epoch": 26} -2023-12-15T23:42:03.712Z info settlement/handlers.go:14 process audit settlements {"epoch": 26} -2023-12-15T23:42:03.712Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 26} -2023-12-15T23:42:03.713Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 5900, "fallback_valid_for": 40, "tx_hash": "4e2573003c755c4ff832ca1d0c0ffbe132eeea524c1dee18848d8b39467bd3c1"} -2023-12-15T23:42:03.716Z info settlement/handlers.go:18 audit processing finished {"epoch": 26} -2023-12-15T23:42:03.717Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T23:42:03.718Z info audit/process.go:39 select containers for audit {"epoch": 26, "amount": 0} -2023-12-15T23:42:03.723Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 5787, "tx_hash": "00e02b71ad89144e2b521965875689ad6d8e6659ae8d385ba190d489d643875c"} -2023-12-15T23:42:04.343Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 5784, "blockHeight": 5784, "took": "10.29828ms"} -2023-12-15T23:42:04.684Z INFO sending PrepareRequest {"height": 5785, "view": 0} -2023-12-15T23:42:04.684Z INFO sending Commit {"height": 5785, "view": 0} -2023-12-15T23:42:04.684Z INFO approving block {"height": 5785, "hash": "20ad27bcd3951eaf73449cd07c7d68b31ba8b71779d57d9b4dbcfe5ce87ba3bb", "tx_count": 3, "merkle": "2bb29de8b3c4bbcba11f03a10ac5012923b106764c046f90152f16de393a804f", "prev": "4875ef14366ac7d4071234e93a72f763514bd27c77413e8753dbc06262ff1349"} -2023-12-15T23:42:04.685Z INFO runtime log {"tx": "9fc3b34c31f2ebbc9894f099fd5db4fae8d659490892664b9c827a51446a6a49", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:42:04.687Z INFO initializing dbft {"height": 5786, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:04.688Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 25} -2023-12-15T23:42:04.688Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 25} -2023-12-15T23:42:04.688Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 25} -2023-12-15T23:42:04.688Z debug frostfs-node/morph.go:229 new block {"index": 5785} -2023-12-15T23:42:05.344Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 5785, "blockHeight": 5785, "took": "10.872626ms"} -2023-12-15T23:42:05.685Z INFO sending PrepareRequest {"height": 5786, "view": 0} -2023-12-15T23:42:05.686Z INFO sending Commit {"height": 5786, "view": 0} -2023-12-15T23:42:05.686Z INFO approving block {"height": 5786, "hash": "4c1e7e6ed96dc70ee09f54a78ec90c5f03e0855dfdb43de9936327b5bce16bb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20ad27bcd3951eaf73449cd07c7d68b31ba8b71779d57d9b4dbcfe5ce87ba3bb"} -2023-12-15T23:42:05.688Z INFO initializing dbft {"height": 5787, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:05.689Z debug frostfs-node/morph.go:229 new block {"index": 5786} -2023-12-15T23:42:06.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5786, "blockHeight": 5786, "took": "7.199564ms"} -2023-12-15T23:42:06.687Z INFO sending PrepareRequest {"height": 5787, "view": 0} -2023-12-15T23:42:06.687Z INFO sending Commit {"height": 5787, "view": 0} -2023-12-15T23:42:06.688Z INFO approving block {"height": 5787, "hash": "7ba144a45fb1ad6c8e5eaae2b31704db52e14f79b7d2bf32fc637b68a6aabba1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c1e7e6ed96dc70ee09f54a78ec90c5f03e0855dfdb43de9936327b5bce16bb4"} -2023-12-15T23:42:06.690Z INFO initializing dbft {"height": 5788, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:06.691Z debug frostfs-node/morph.go:229 new block {"index": 5787} -2023-12-15T23:42:07.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5787, "blockHeight": 5787, "took": "5.755408ms"} -2023-12-15T23:42:07.689Z INFO sending PrepareRequest {"height": 5788, "view": 0} -2023-12-15T23:42:07.690Z INFO sending Commit {"height": 5788, "view": 0} -2023-12-15T23:42:07.690Z INFO approving block {"height": 5788, "hash": "c2037f0c716c7309f3d8d0adf81122f357382bd0f280fd3b44b82fa95693aa49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ba144a45fb1ad6c8e5eaae2b31704db52e14f79b7d2bf32fc637b68a6aabba1"} -2023-12-15T23:42:07.692Z INFO initializing dbft {"height": 5789, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:07.693Z debug frostfs-node/morph.go:229 new block {"index": 5788} -2023-12-15T23:42:08.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5788, "blockHeight": 5788, "took": "5.350396ms"} -2023-12-15T23:42:08.691Z INFO sending PrepareRequest {"height": 5789, "view": 0} -2023-12-15T23:42:08.691Z INFO sending Commit {"height": 5789, "view": 0} -2023-12-15T23:42:08.692Z INFO approving block {"height": 5789, "hash": "04f394dc667e159d275e58940d9c4525fdad5ecbcb2928e04738b76744cc3226", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2037f0c716c7309f3d8d0adf81122f357382bd0f280fd3b44b82fa95693aa49"} -2023-12-15T23:42:08.694Z INFO initializing dbft {"height": 5790, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:08.695Z debug frostfs-node/morph.go:229 new block {"index": 5789} -2023-12-15T23:42:09.344Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5789, "blockHeight": 5789, "took": "7.196122ms"} -2023-12-15T23:42:09.693Z INFO sending PrepareRequest {"height": 5790, "view": 0} -2023-12-15T23:42:09.693Z INFO sending Commit {"height": 5790, "view": 0} -2023-12-15T23:42:09.694Z INFO approving block {"height": 5790, "hash": "b5faa0845e174fe46ca0e3a87229fbdb232fd73545fbd17706060e25dc3eb60a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04f394dc667e159d275e58940d9c4525fdad5ecbcb2928e04738b76744cc3226"} -2023-12-15T23:42:09.696Z INFO initializing dbft {"height": 5791, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:09.696Z debug frostfs-node/morph.go:229 new block {"index": 5790} -2023-12-15T23:42:10.344Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5790, "blockHeight": 5790, "took": "6.15367ms"} -2023-12-15T23:42:10.695Z INFO sending PrepareRequest {"height": 5791, "view": 0} -2023-12-15T23:42:10.695Z INFO sending Commit {"height": 5791, "view": 0} -2023-12-15T23:42:10.696Z INFO approving block {"height": 5791, "hash": "2752c1705085252f015909fc30a0666e8ab66a30fe2d9bbe2b9032e6fc2a932d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5faa0845e174fe46ca0e3a87229fbdb232fd73545fbd17706060e25dc3eb60a"} -2023-12-15T23:42:10.700Z INFO initializing dbft {"height": 5792, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:10.702Z debug frostfs-node/morph.go:229 new block {"index": 5791} -2023-12-15T23:42:11.345Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5791, "blockHeight": 5791, "took": "6.527331ms"} -2023-12-15T23:42:11.697Z INFO sending PrepareRequest {"height": 5792, "view": 0} -2023-12-15T23:42:11.697Z INFO sending Commit {"height": 5792, "view": 0} -2023-12-15T23:42:11.698Z INFO approving block {"height": 5792, "hash": "02cedc1b2f6823d509a9bed74421bce7a6ce697e4a89e594822ada39e8a6c76a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2752c1705085252f015909fc30a0666e8ab66a30fe2d9bbe2b9032e6fc2a932d"} -2023-12-15T23:42:11.700Z INFO initializing dbft {"height": 5793, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:11.701Z debug frostfs-node/morph.go:229 new block {"index": 5792} -2023-12-15T23:42:12.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5792, "blockHeight": 5792, "took": "7.389431ms"} -2023-12-15T23:42:12.699Z INFO sending PrepareRequest {"height": 5793, "view": 0} -2023-12-15T23:42:12.699Z INFO sending Commit {"height": 5793, "view": 0} -2023-12-15T23:42:12.700Z INFO approving block {"height": 5793, "hash": "4c45e7aeba9261b4df30bac359eba70ac569b61a73844e477a88c081c9ee5d6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02cedc1b2f6823d509a9bed74421bce7a6ce697e4a89e594822ada39e8a6c76a"} -2023-12-15T23:42:12.701Z INFO initializing dbft {"height": 5794, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:12.702Z debug frostfs-node/morph.go:229 new block {"index": 5793} -2023-12-15T23:42:13.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5793, "blockHeight": 5793, "took": "5.572178ms"} -2023-12-15T23:42:13.701Z INFO sending PrepareRequest {"height": 5794, "view": 0} -2023-12-15T23:42:13.701Z INFO sending Commit {"height": 5794, "view": 0} -2023-12-15T23:42:13.701Z INFO approving block {"height": 5794, "hash": "d96ce512396a39b5245879fd96d8ee4602b3c7fcc91eeaec64263ea02ef26d0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c45e7aeba9261b4df30bac359eba70ac569b61a73844e477a88c081c9ee5d6c"} -2023-12-15T23:42:13.704Z INFO initializing dbft {"height": 5795, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:13.705Z debug frostfs-node/morph.go:229 new block {"index": 5794} -2023-12-15T23:42:14.348Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5794, "blockHeight": 5794, "took": "7.063067ms"} -2023-12-15T23:42:14.703Z INFO sending PrepareRequest {"height": 5795, "view": 0} -2023-12-15T23:42:14.703Z INFO sending Commit {"height": 5795, "view": 0} -2023-12-15T23:42:14.704Z INFO approving block {"height": 5795, "hash": "c49962c69081f17d4a4f6832348800a8dfc53ffc71fb669ce9ff6cee1d270f75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d96ce512396a39b5245879fd96d8ee4602b3c7fcc91eeaec64263ea02ef26d0b"} -2023-12-15T23:42:14.706Z INFO initializing dbft {"height": 5796, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:14.706Z debug frostfs-node/morph.go:229 new block {"index": 5795} -2023-12-15T23:42:15.348Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5795, "blockHeight": 5795, "took": "6.104354ms"} -2023-12-15T23:42:15.705Z INFO sending PrepareRequest {"height": 5796, "view": 0} -2023-12-15T23:42:15.706Z INFO sending Commit {"height": 5796, "view": 0} -2023-12-15T23:42:15.706Z INFO approving block {"height": 5796, "hash": "d30d0a64f87d0cb10add8d8d8aac85988b2114f67eab57e867a3040469b33898", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c49962c69081f17d4a4f6832348800a8dfc53ffc71fb669ce9ff6cee1d270f75"} -2023-12-15T23:42:15.708Z INFO initializing dbft {"height": 5797, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:15.709Z debug frostfs-node/morph.go:229 new block {"index": 5796} -2023-12-15T23:42:16.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5796, "blockHeight": 5796, "took": "5.398587ms"} -2023-12-15T23:42:16.707Z INFO sending PrepareRequest {"height": 5797, "view": 0} -2023-12-15T23:42:16.708Z INFO sending Commit {"height": 5797, "view": 0} -2023-12-15T23:42:16.708Z INFO approving block {"height": 5797, "hash": "a181cbfac6183a7d9e2b7db4ea5d37a2585325c6c2acdfe7b989ea6894d39b47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d30d0a64f87d0cb10add8d8d8aac85988b2114f67eab57e867a3040469b33898"} -2023-12-15T23:42:16.710Z INFO initializing dbft {"height": 5798, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:16.711Z debug frostfs-node/morph.go:229 new block {"index": 5797} -2023-12-15T23:42:17.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5797, "blockHeight": 5797, "took": "7.029305ms"} -2023-12-15T23:42:17.709Z INFO sending PrepareRequest {"height": 5798, "view": 0} -2023-12-15T23:42:17.710Z INFO sending Commit {"height": 5798, "view": 0} -2023-12-15T23:42:17.710Z INFO approving block {"height": 5798, "hash": "05979605f9a64aa154450bd5d8ae44f58516b8a1acbbee8e75d68c3490e66657", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a181cbfac6183a7d9e2b7db4ea5d37a2585325c6c2acdfe7b989ea6894d39b47"} -2023-12-15T23:42:17.712Z INFO initializing dbft {"height": 5799, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:17.713Z debug frostfs-node/morph.go:229 new block {"index": 5798} -2023-12-15T23:42:18.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5798, "blockHeight": 5798, "took": "5.85215ms"} -2023-12-15T23:42:18.712Z INFO sending PrepareRequest {"height": 5799, "view": 0} -2023-12-15T23:42:18.712Z INFO sending Commit {"height": 5799, "view": 0} -2023-12-15T23:42:18.713Z INFO approving block {"height": 5799, "hash": "ed94bd3aedaec03d7f1c743a2898c8f8f7bf1adf0f9950ca36cf4171bc7b2c69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05979605f9a64aa154450bd5d8ae44f58516b8a1acbbee8e75d68c3490e66657"} -2023-12-15T23:42:18.714Z INFO initializing dbft {"height": 5800, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:18.715Z debug frostfs-node/morph.go:229 new block {"index": 5799} -2023-12-15T23:42:19.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5799, "blockHeight": 5799, "took": "5.696126ms"} -2023-12-15T23:42:19.714Z INFO sending PrepareRequest {"height": 5800, "view": 0} -2023-12-15T23:42:19.714Z INFO sending Commit {"height": 5800, "view": 0} -2023-12-15T23:42:19.714Z INFO approving block {"height": 5800, "hash": "e28f3afa70f195845607eb1b0a91213678c77ccf64f5a6cc98915c0b2fb24f5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed94bd3aedaec03d7f1c743a2898c8f8f7bf1adf0f9950ca36cf4171bc7b2c69"} -2023-12-15T23:42:19.716Z INFO initializing dbft {"height": 5801, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:19.717Z debug frostfs-node/morph.go:229 new block {"index": 5800} -2023-12-15T23:42:20.351Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5800, "blockHeight": 5800, "took": "6.094437ms"} -2023-12-15T23:42:20.716Z INFO sending PrepareRequest {"height": 5801, "view": 0} -2023-12-15T23:42:20.716Z INFO sending Commit {"height": 5801, "view": 0} -2023-12-15T23:42:20.716Z INFO approving block {"height": 5801, "hash": "7657116e4fcb877effcfa28c4649559a7f6e62ec90660014f36d842f39d76f47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e28f3afa70f195845607eb1b0a91213678c77ccf64f5a6cc98915c0b2fb24f5c"} -2023-12-15T23:42:20.717Z INFO initializing dbft {"height": 5802, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:20.718Z debug frostfs-node/morph.go:229 new block {"index": 5801} -2023-12-15T23:42:21.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5801, "blockHeight": 5801, "took": "7.128417ms"} -2023-12-15T23:42:21.718Z INFO sending PrepareRequest {"height": 5802, "view": 0} -2023-12-15T23:42:21.718Z INFO sending Commit {"height": 5802, "view": 0} -2023-12-15T23:42:21.719Z INFO approving block {"height": 5802, "hash": "4ffe46119e41183fa537fefba1c832d47c5fa0d792f33e11e413a2aec97ed374", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7657116e4fcb877effcfa28c4649559a7f6e62ec90660014f36d842f39d76f47"} -2023-12-15T23:42:21.720Z INFO initializing dbft {"height": 5803, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:21.721Z debug frostfs-node/morph.go:229 new block {"index": 5802} -2023-12-15T23:42:22.354Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5802, "blockHeight": 5802, "took": "6.86899ms"} -2023-12-15T23:42:22.720Z INFO sending PrepareRequest {"height": 5803, "view": 0} -2023-12-15T23:42:22.720Z INFO sending Commit {"height": 5803, "view": 0} -2023-12-15T23:42:22.720Z INFO approving block {"height": 5803, "hash": "659d002a416905b9774d88d9c8f28d47573d5e5c76a6898215b178131eed6264", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ffe46119e41183fa537fefba1c832d47c5fa0d792f33e11e413a2aec97ed374"} -2023-12-15T23:42:22.722Z INFO initializing dbft {"height": 5804, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:22.723Z debug frostfs-node/morph.go:229 new block {"index": 5803} -2023-12-15T23:42:23.356Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5803, "blockHeight": 5803, "took": "7.230745ms"} -2023-12-15T23:42:23.722Z INFO sending PrepareRequest {"height": 5804, "view": 0} -2023-12-15T23:42:23.723Z INFO sending Commit {"height": 5804, "view": 0} -2023-12-15T23:42:23.723Z INFO approving block {"height": 5804, "hash": "178479f432a014775dc9a3347aaa035676da9249df74a802d44e2ade6dd73578", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "659d002a416905b9774d88d9c8f28d47573d5e5c76a6898215b178131eed6264"} -2023-12-15T23:42:23.725Z INFO initializing dbft {"height": 5805, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:23.726Z debug frostfs-node/morph.go:229 new block {"index": 5804} -2023-12-15T23:42:24.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5804, "blockHeight": 5804, "took": "7.867676ms"} -2023-12-15T23:42:24.724Z INFO sending PrepareRequest {"height": 5805, "view": 0} -2023-12-15T23:42:24.725Z INFO sending Commit {"height": 5805, "view": 0} -2023-12-15T23:42:24.725Z INFO approving block {"height": 5805, "hash": "7e91badebe48d17cfc837f953d9f5e35af27016a3422e62f47e6b9872501568e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "178479f432a014775dc9a3347aaa035676da9249df74a802d44e2ade6dd73578"} -2023-12-15T23:42:24.727Z INFO initializing dbft {"height": 5806, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:24.727Z debug frostfs-node/morph.go:229 new block {"index": 5805} -2023-12-15T23:42:25.361Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5805, "blockHeight": 5805, "took": "11.05366ms"} -2023-12-15T23:42:25.726Z INFO sending PrepareRequest {"height": 5806, "view": 0} -2023-12-15T23:42:25.726Z INFO sending Commit {"height": 5806, "view": 0} -2023-12-15T23:42:25.726Z INFO approving block {"height": 5806, "hash": "dc30a255c344ddd889c5c05b4521fcc2c179b4a6c88643809065ada41a3e9258", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e91badebe48d17cfc837f953d9f5e35af27016a3422e62f47e6b9872501568e"} -2023-12-15T23:42:25.727Z INFO initializing dbft {"height": 5807, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:25.728Z debug frostfs-node/morph.go:229 new block {"index": 5806} -2023-12-15T23:42:26.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5806, "blockHeight": 5806, "took": "6.901324ms"} -2023-12-15T23:42:26.727Z INFO sending PrepareRequest {"height": 5807, "view": 0} -2023-12-15T23:42:26.728Z INFO sending Commit {"height": 5807, "view": 0} -2023-12-15T23:42:26.728Z INFO approving block {"height": 5807, "hash": "c43ec67bc9a0f474d2e1e1a365fd9d88a76bc06cb2985a487964185a0d26a53f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc30a255c344ddd889c5c05b4521fcc2c179b4a6c88643809065ada41a3e9258"} -2023-12-15T23:42:26.730Z INFO initializing dbft {"height": 5808, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:26.730Z debug frostfs-node/morph.go:229 new block {"index": 5807} -2023-12-15T23:42:27.359Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5807, "blockHeight": 5807, "took": "6.86844ms"} -2023-12-15T23:42:27.729Z INFO sending PrepareRequest {"height": 5808, "view": 0} -2023-12-15T23:42:27.730Z INFO sending Commit {"height": 5808, "view": 0} -2023-12-15T23:42:27.730Z INFO approving block {"height": 5808, "hash": "32ae42b572804b98d9226b36ae9419fd58e1a0a8d0dc2e4ab08f2536b6d523a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c43ec67bc9a0f474d2e1e1a365fd9d88a76bc06cb2985a487964185a0d26a53f"} -2023-12-15T23:42:27.732Z INFO initializing dbft {"height": 5809, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:27.733Z debug frostfs-node/morph.go:229 new block {"index": 5808} -2023-12-15T23:42:28.359Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5808, "blockHeight": 5808, "took": "6.607353ms"} -2023-12-15T23:42:28.731Z INFO sending PrepareRequest {"height": 5809, "view": 0} -2023-12-15T23:42:28.732Z INFO sending Commit {"height": 5809, "view": 0} -2023-12-15T23:42:28.732Z INFO approving block {"height": 5809, "hash": "882a8fdbd5feadab72541c3c130bddb9bf66dd20bac671c16cc0e0695da1e309", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32ae42b572804b98d9226b36ae9419fd58e1a0a8d0dc2e4ab08f2536b6d523a2"} -2023-12-15T23:42:28.734Z INFO initializing dbft {"height": 5810, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:28.734Z debug frostfs-node/morph.go:229 new block {"index": 5809} -2023-12-15T23:42:29.361Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5809, "blockHeight": 5809, "took": "7.940081ms"} -2023-12-15T23:42:29.733Z INFO sending PrepareRequest {"height": 5810, "view": 0} -2023-12-15T23:42:29.733Z INFO sending Commit {"height": 5810, "view": 0} -2023-12-15T23:42:29.733Z INFO approving block {"height": 5810, "hash": "5c563ae466283c36297c4d66878dacc63783148e5d3b159255fc46033064cf17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "882a8fdbd5feadab72541c3c130bddb9bf66dd20bac671c16cc0e0695da1e309"} -2023-12-15T23:42:29.735Z INFO initializing dbft {"height": 5811, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:29.735Z debug frostfs-node/morph.go:229 new block {"index": 5810} -2023-12-15T23:42:30.364Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5810, "blockHeight": 5810, "took": "9.743204ms"} -2023-12-15T23:42:30.734Z INFO sending PrepareRequest {"height": 5811, "view": 0} -2023-12-15T23:42:30.735Z INFO sending Commit {"height": 5811, "view": 0} -2023-12-15T23:42:30.735Z INFO approving block {"height": 5811, "hash": "b27747fd8e9f40714069850b6f4f517b3f2ff6488a9f7a33a69a248b15e15d89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c563ae466283c36297c4d66878dacc63783148e5d3b159255fc46033064cf17"} -2023-12-15T23:42:30.737Z INFO initializing dbft {"height": 5812, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:30.737Z debug frostfs-node/morph.go:229 new block {"index": 5811} -2023-12-15T23:42:31.364Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5811, "blockHeight": 5811, "took": "8.494528ms"} -2023-12-15T23:42:31.736Z INFO sending PrepareRequest {"height": 5812, "view": 0} -2023-12-15T23:42:31.737Z INFO sending Commit {"height": 5812, "view": 0} -2023-12-15T23:42:31.739Z INFO approving block {"height": 5812, "hash": "85d740cfc43b77a86d64b819cb4bd187bc28cf44bdb848e5c1809281064871a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b27747fd8e9f40714069850b6f4f517b3f2ff6488a9f7a33a69a248b15e15d89"} -2023-12-15T23:42:31.741Z INFO initializing dbft {"height": 5813, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:31.742Z debug frostfs-node/morph.go:229 new block {"index": 5812} -2023-12-15T23:42:32.363Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5812, "blockHeight": 5812, "took": "6.255242ms"} -2023-12-15T23:42:32.740Z INFO sending PrepareRequest {"height": 5813, "view": 0} -2023-12-15T23:42:32.740Z INFO sending Commit {"height": 5813, "view": 0} -2023-12-15T23:42:32.741Z INFO approving block {"height": 5813, "hash": "f16918b35e6aa4e930ee386b809ef3fad1813fb0c4359915d139728652dc3f95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85d740cfc43b77a86d64b819cb4bd187bc28cf44bdb848e5c1809281064871a2"} -2023-12-15T23:42:32.745Z INFO initializing dbft {"height": 5814, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:32.745Z debug frostfs-node/morph.go:229 new block {"index": 5813} -2023-12-15T23:42:33.363Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5813, "blockHeight": 5813, "took": "6.098357ms"} -2023-12-15T23:42:33.742Z INFO sending PrepareRequest {"height": 5814, "view": 0} -2023-12-15T23:42:33.743Z INFO sending Commit {"height": 5814, "view": 0} -2023-12-15T23:42:33.743Z INFO approving block {"height": 5814, "hash": "d9421b7ea71766a9e45f74f134a56766c78f005f68685166ea66b3c600bc473c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f16918b35e6aa4e930ee386b809ef3fad1813fb0c4359915d139728652dc3f95"} -2023-12-15T23:42:33.744Z INFO initializing dbft {"height": 5815, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:33.745Z debug frostfs-node/morph.go:229 new block {"index": 5814} -2023-12-15T23:42:34.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5814, "blockHeight": 5814, "took": "7.240622ms"} -2023-12-15T23:42:34.744Z INFO sending PrepareRequest {"height": 5815, "view": 0} -2023-12-15T23:42:34.744Z INFO sending Commit {"height": 5815, "view": 0} -2023-12-15T23:42:34.745Z INFO approving block {"height": 5815, "hash": "2d90083994d01eec7f513d4b5b4955defa3b376af3abeca7b20d1c2df2af2636", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9421b7ea71766a9e45f74f134a56766c78f005f68685166ea66b3c600bc473c"} -2023-12-15T23:42:34.747Z INFO initializing dbft {"height": 5816, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:34.747Z debug frostfs-node/morph.go:229 new block {"index": 5815} -2023-12-15T23:42:35.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5815, "blockHeight": 5815, "took": "8.145538ms"} -2023-12-15T23:42:35.746Z INFO sending PrepareRequest {"height": 5816, "view": 0} -2023-12-15T23:42:35.746Z INFO sending Commit {"height": 5816, "view": 0} -2023-12-15T23:42:35.747Z INFO approving block {"height": 5816, "hash": "81fe0ff76c89ca85634a3a02660dc3af5e6451807f23a45b9093d91999b35901", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d90083994d01eec7f513d4b5b4955defa3b376af3abeca7b20d1c2df2af2636"} -2023-12-15T23:42:35.749Z INFO initializing dbft {"height": 5817, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:35.749Z debug frostfs-node/morph.go:229 new block {"index": 5816} -2023-12-15T23:42:36.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5816, "blockHeight": 5816, "took": "5.891491ms"} -2023-12-15T23:42:36.747Z INFO sending PrepareRequest {"height": 5817, "view": 0} -2023-12-15T23:42:36.748Z INFO sending Commit {"height": 5817, "view": 0} -2023-12-15T23:42:36.748Z INFO approving block {"height": 5817, "hash": "fd76b0c6c83aa9c58b23f4b30a9200631d9a0f31ade0f0f104cca28334cf4ebe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81fe0ff76c89ca85634a3a02660dc3af5e6451807f23a45b9093d91999b35901"} -2023-12-15T23:42:36.749Z INFO initializing dbft {"height": 5818, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:36.750Z debug frostfs-node/morph.go:229 new block {"index": 5817} -2023-12-15T23:42:36.754Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:42:36.758Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:42:36.759Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:42:37.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5817, "blockHeight": 5817, "took": "7.485798ms"} -2023-12-15T23:42:37.750Z INFO sending PrepareRequest {"height": 5818, "view": 0} -2023-12-15T23:42:37.750Z INFO sending Commit {"height": 5818, "view": 0} -2023-12-15T23:42:37.751Z INFO approving block {"height": 5818, "hash": "c17605bf8373cd0f35358166f15823139cbff97c3b25d3e334e144a040e0a4e6", "tx_count": 2, "merkle": "7b4176104b90e97741c391f3c2280fded3504664b594b4d0455520bd048a69cf", "prev": "fd76b0c6c83aa9c58b23f4b30a9200631d9a0f31ade0f0f104cca28334cf4ebe"} -2023-12-15T23:42:37.752Z INFO runtime log {"tx": "7ba3605e4beb07ad779846fe32d90cafdfe6b61e550046f57fd0a25616affcac", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:42:37.753Z INFO runtime log {"tx": "7ba3605e4beb07ad779846fe32d90cafdfe6b61e550046f57fd0a25616affcac", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:42:37.754Z INFO initializing dbft {"height": 5819, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:37.756Z debug frostfs-node/morph.go:229 new block {"index": 5818} -2023-12-15T23:42:38.374Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 5818, "blockHeight": 5818, "took": "12.830134ms"} -2023-12-15T23:42:38.752Z INFO sending PrepareRequest {"height": 5819, "view": 0} -2023-12-15T23:42:38.752Z INFO sending Commit {"height": 5819, "view": 0} -2023-12-15T23:42:38.753Z INFO approving block {"height": 5819, "hash": "ee0d4a5d3dda865e95627399147b61efebc163189350ab9696f310c0879dbc7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c17605bf8373cd0f35358166f15823139cbff97c3b25d3e334e144a040e0a4e6"} -2023-12-15T23:42:38.755Z INFO initializing dbft {"height": 5820, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:38.756Z debug frostfs-node/morph.go:229 new block {"index": 5819} -2023-12-15T23:42:39.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5819, "blockHeight": 5819, "took": "9.978ms"} -2023-12-15T23:42:39.754Z INFO sending PrepareRequest {"height": 5820, "view": 0} -2023-12-15T23:42:39.754Z INFO sending Commit {"height": 5820, "view": 0} -2023-12-15T23:42:39.755Z INFO approving block {"height": 5820, "hash": "941c0f7a896a1ba05f3d13011f9888a76c4782527bb63b92ca100fb12159cc6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee0d4a5d3dda865e95627399147b61efebc163189350ab9696f310c0879dbc7b"} -2023-12-15T23:42:39.757Z INFO initializing dbft {"height": 5821, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:39.758Z debug frostfs-node/morph.go:229 new block {"index": 5820} -2023-12-15T23:42:40.369Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5820, "blockHeight": 5820, "took": "5.619839ms"} -2023-12-15T23:42:40.756Z INFO sending PrepareRequest {"height": 5821, "view": 0} -2023-12-15T23:42:40.757Z INFO sending Commit {"height": 5821, "view": 0} -2023-12-15T23:42:40.757Z INFO approving block {"height": 5821, "hash": "bcf41f93a014a5a637d33c69bff22169b5701128589c32d1cea7b41e05205322", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "941c0f7a896a1ba05f3d13011f9888a76c4782527bb63b92ca100fb12159cc6d"} -2023-12-15T23:42:40.758Z INFO initializing dbft {"height": 5822, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:40.759Z debug frostfs-node/morph.go:229 new block {"index": 5821} -2023-12-15T23:42:41.369Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5821, "blockHeight": 5821, "took": "5.468882ms"} -2023-12-15T23:42:41.758Z INFO sending PrepareRequest {"height": 5822, "view": 0} -2023-12-15T23:42:41.759Z INFO sending Commit {"height": 5822, "view": 0} -2023-12-15T23:42:41.759Z INFO approving block {"height": 5822, "hash": "464660c72a33726feef89ab057659367cb73dff84c830afc958203e378122875", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcf41f93a014a5a637d33c69bff22169b5701128589c32d1cea7b41e05205322"} -2023-12-15T23:42:41.761Z INFO initializing dbft {"height": 5823, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:41.762Z debug frostfs-node/morph.go:229 new block {"index": 5822} -2023-12-15T23:42:42.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5822, "blockHeight": 5822, "took": "7.031632ms"} -2023-12-15T23:42:42.760Z INFO sending PrepareRequest {"height": 5823, "view": 0} -2023-12-15T23:42:42.761Z INFO sending Commit {"height": 5823, "view": 0} -2023-12-15T23:42:42.761Z INFO approving block {"height": 5823, "hash": "1ff4e4dbe236abffac4e85abcf57fa3cdd19e7a86f01527c0c3ec90f63e348cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "464660c72a33726feef89ab057659367cb73dff84c830afc958203e378122875"} -2023-12-15T23:42:42.762Z INFO initializing dbft {"height": 5824, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:42.763Z debug frostfs-node/morph.go:229 new block {"index": 5823} -2023-12-15T23:42:43.376Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5823, "blockHeight": 5823, "took": "9.221788ms"} -2023-12-15T23:42:43.762Z INFO sending PrepareRequest {"height": 5824, "view": 0} -2023-12-15T23:42:43.762Z INFO sending Commit {"height": 5824, "view": 0} -2023-12-15T23:42:43.763Z INFO approving block {"height": 5824, "hash": "19abe69dc8c52fe86205d763cc7cb9da44b170a9600289a95962dea80cf313ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ff4e4dbe236abffac4e85abcf57fa3cdd19e7a86f01527c0c3ec90f63e348cd"} -2023-12-15T23:42:43.765Z INFO initializing dbft {"height": 5825, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:43.766Z debug frostfs-node/morph.go:229 new block {"index": 5824} -2023-12-15T23:42:44.375Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5824, "blockHeight": 5824, "took": "7.672784ms"} -2023-12-15T23:42:44.763Z INFO sending PrepareRequest {"height": 5825, "view": 0} -2023-12-15T23:42:44.764Z INFO sending Commit {"height": 5825, "view": 0} -2023-12-15T23:42:44.764Z INFO approving block {"height": 5825, "hash": "f44de01bc88eecadf1a6a0315b0ecb209af5a6699dcff24b642c304fe8a45ec1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19abe69dc8c52fe86205d763cc7cb9da44b170a9600289a95962dea80cf313ef"} -2023-12-15T23:42:44.765Z INFO initializing dbft {"height": 5826, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:44.767Z debug frostfs-node/morph.go:229 new block {"index": 5825} -2023-12-15T23:42:45.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5825, "blockHeight": 5825, "took": "4.70392ms"} -2023-12-15T23:42:45.766Z INFO sending PrepareRequest {"height": 5826, "view": 0} -2023-12-15T23:42:45.766Z INFO sending Commit {"height": 5826, "view": 0} -2023-12-15T23:42:45.766Z INFO approving block {"height": 5826, "hash": "44551c82039783e3e850a17c0c64101464cdb8e7ddef768238056edb10babe15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f44de01bc88eecadf1a6a0315b0ecb209af5a6699dcff24b642c304fe8a45ec1"} -2023-12-15T23:42:45.767Z INFO initializing dbft {"height": 5827, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:45.768Z debug frostfs-node/morph.go:229 new block {"index": 5826} -2023-12-15T23:42:46.376Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5826, "blockHeight": 5826, "took": "7.43292ms"} -2023-12-15T23:42:46.768Z INFO sending PrepareRequest {"height": 5827, "view": 0} -2023-12-15T23:42:46.768Z INFO sending Commit {"height": 5827, "view": 0} -2023-12-15T23:42:46.768Z INFO approving block {"height": 5827, "hash": "41c491476182db960a43d38850668ab48ad2d551aaff6b3dc8afedeb8dbfbe7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44551c82039783e3e850a17c0c64101464cdb8e7ddef768238056edb10babe15"} -2023-12-15T23:42:46.770Z INFO initializing dbft {"height": 5828, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:46.770Z debug frostfs-node/morph.go:229 new block {"index": 5827} -2023-12-15T23:42:47.375Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5827, "blockHeight": 5827, "took": "5.398548ms"} -2023-12-15T23:42:47.769Z INFO sending PrepareRequest {"height": 5828, "view": 0} -2023-12-15T23:42:47.769Z INFO sending Commit {"height": 5828, "view": 0} -2023-12-15T23:42:47.770Z INFO approving block {"height": 5828, "hash": "24a3b9dff33d7558a70f3c776f451ffdc3b259acb900eec35ab1be8f540b9920", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41c491476182db960a43d38850668ab48ad2d551aaff6b3dc8afedeb8dbfbe7a"} -2023-12-15T23:42:47.771Z INFO initializing dbft {"height": 5829, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:47.772Z debug frostfs-node/morph.go:229 new block {"index": 5828} -2023-12-15T23:42:48.376Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5828, "blockHeight": 5828, "took": "6.590485ms"} -2023-12-15T23:42:48.771Z INFO sending PrepareRequest {"height": 5829, "view": 0} -2023-12-15T23:42:48.771Z INFO sending Commit {"height": 5829, "view": 0} -2023-12-15T23:42:48.771Z INFO approving block {"height": 5829, "hash": "5050535f9564a91b124579b151ff009c5ba7a03628b31508c021d9a8032edf62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24a3b9dff33d7558a70f3c776f451ffdc3b259acb900eec35ab1be8f540b9920"} -2023-12-15T23:42:48.773Z INFO initializing dbft {"height": 5830, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:48.774Z debug frostfs-node/morph.go:229 new block {"index": 5829} -2023-12-15T23:42:49.378Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5829, "blockHeight": 5829, "took": "7.410155ms"} -2023-12-15T23:42:49.773Z INFO sending PrepareRequest {"height": 5830, "view": 0} -2023-12-15T23:42:49.773Z INFO sending Commit {"height": 5830, "view": 0} -2023-12-15T23:42:49.774Z INFO approving block {"height": 5830, "hash": "15cf5c8ac39d4f006a60f4a002bf060458e0d02a514b9bda4e308d2e05d73572", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5050535f9564a91b124579b151ff009c5ba7a03628b31508c021d9a8032edf62"} -2023-12-15T23:42:49.776Z INFO initializing dbft {"height": 5831, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:49.776Z debug frostfs-node/morph.go:229 new block {"index": 5830} -2023-12-15T23:42:50.382Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5830, "blockHeight": 5830, "took": "11.44273ms"} -2023-12-15T23:42:50.776Z INFO sending PrepareRequest {"height": 5831, "view": 0} -2023-12-15T23:42:50.776Z INFO sending Commit {"height": 5831, "view": 0} -2023-12-15T23:42:50.776Z INFO approving block {"height": 5831, "hash": "c53e104e57e9190f9cae7d46b7212864c1cb3d53879840d2e3b983d7995b646c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15cf5c8ac39d4f006a60f4a002bf060458e0d02a514b9bda4e308d2e05d73572"} -2023-12-15T23:42:50.778Z INFO initializing dbft {"height": 5832, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:50.779Z debug frostfs-node/morph.go:229 new block {"index": 5831} -2023-12-15T23:42:51.382Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5831, "blockHeight": 5831, "took": "9.722002ms"} -2023-12-15T23:42:51.777Z INFO sending PrepareRequest {"height": 5832, "view": 0} -2023-12-15T23:42:51.778Z INFO sending Commit {"height": 5832, "view": 0} -2023-12-15T23:42:51.778Z INFO approving block {"height": 5832, "hash": "1a3334987bc2cbd5a9e062b6222287e0dd2795a75cd1d5e9eb223988e392ce8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c53e104e57e9190f9cae7d46b7212864c1cb3d53879840d2e3b983d7995b646c"} -2023-12-15T23:42:51.780Z INFO initializing dbft {"height": 5833, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:51.781Z debug frostfs-node/morph.go:229 new block {"index": 5832} -2023-12-15T23:42:52.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5832, "blockHeight": 5832, "took": "10.997086ms"} -2023-12-15T23:42:52.779Z INFO sending PrepareRequest {"height": 5833, "view": 0} -2023-12-15T23:42:52.779Z INFO sending Commit {"height": 5833, "view": 0} -2023-12-15T23:42:52.780Z INFO approving block {"height": 5833, "hash": "485e137e95cfa25d4db04d4575c601182725b19385abc354568b647a5644320d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a3334987bc2cbd5a9e062b6222287e0dd2795a75cd1d5e9eb223988e392ce8f"} -2023-12-15T23:42:52.781Z INFO initializing dbft {"height": 5834, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:52.782Z debug frostfs-node/morph.go:229 new block {"index": 5833} -2023-12-15T23:42:53.382Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5833, "blockHeight": 5833, "took": "8.945308ms"} -2023-12-15T23:42:53.781Z INFO sending PrepareRequest {"height": 5834, "view": 0} -2023-12-15T23:42:53.781Z INFO sending Commit {"height": 5834, "view": 0} -2023-12-15T23:42:53.781Z INFO approving block {"height": 5834, "hash": "4dec4e8d88572eeb7a0d3b1d99bf43ca1ca95ad484d76301f5605b6d731b78c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "485e137e95cfa25d4db04d4575c601182725b19385abc354568b647a5644320d"} -2023-12-15T23:42:53.783Z INFO initializing dbft {"height": 5835, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:53.784Z debug frostfs-node/morph.go:229 new block {"index": 5834} -2023-12-15T23:42:54.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5834, "blockHeight": 5834, "took": "9.988396ms"} -2023-12-15T23:42:54.782Z INFO sending PrepareRequest {"height": 5835, "view": 0} -2023-12-15T23:42:54.783Z INFO sending Commit {"height": 5835, "view": 0} -2023-12-15T23:42:54.783Z INFO approving block {"height": 5835, "hash": "90be5189c82cfff8c8f6e190387e06d80bf0379bb29b255d39e4c762db5ba80d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4dec4e8d88572eeb7a0d3b1d99bf43ca1ca95ad484d76301f5605b6d731b78c1"} -2023-12-15T23:42:54.785Z INFO initializing dbft {"height": 5836, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:54.785Z debug frostfs-node/morph.go:229 new block {"index": 5835} -2023-12-15T23:42:55.383Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5835, "blockHeight": 5835, "took": "8.531962ms"} -2023-12-15T23:42:55.784Z INFO sending PrepareRequest {"height": 5836, "view": 0} -2023-12-15T23:42:55.784Z INFO sending Commit {"height": 5836, "view": 0} -2023-12-15T23:42:55.785Z INFO approving block {"height": 5836, "hash": "103c43e30b40ccdc18192a66f1e26016e5e8ed82f6083e544fa3f4b7335e3324", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90be5189c82cfff8c8f6e190387e06d80bf0379bb29b255d39e4c762db5ba80d"} -2023-12-15T23:42:55.787Z INFO initializing dbft {"height": 5837, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:55.787Z debug frostfs-node/morph.go:229 new block {"index": 5836} -2023-12-15T23:42:56.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5836, "blockHeight": 5836, "took": "10.431635ms"} -2023-12-15T23:42:56.786Z INFO sending PrepareRequest {"height": 5837, "view": 0} -2023-12-15T23:42:56.786Z INFO sending Commit {"height": 5837, "view": 0} -2023-12-15T23:42:56.786Z INFO approving block {"height": 5837, "hash": "56ea21c43aa5c429a4b079211e27038903b6584df02826ad1eb51f1698557fad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "103c43e30b40ccdc18192a66f1e26016e5e8ed82f6083e544fa3f4b7335e3324"} -2023-12-15T23:42:56.788Z INFO initializing dbft {"height": 5838, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:56.788Z debug frostfs-node/morph.go:229 new block {"index": 5837} -2023-12-15T23:42:57.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5837, "blockHeight": 5837, "took": "9.296094ms"} -2023-12-15T23:42:57.787Z INFO sending PrepareRequest {"height": 5838, "view": 0} -2023-12-15T23:42:57.787Z INFO sending Commit {"height": 5838, "view": 0} -2023-12-15T23:42:57.787Z INFO approving block {"height": 5838, "hash": "fceb522da6c5548b729749a96a62a8c6c89f96adf1cb58c88a581f988021145f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56ea21c43aa5c429a4b079211e27038903b6584df02826ad1eb51f1698557fad"} -2023-12-15T23:42:57.789Z INFO initializing dbft {"height": 5839, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:57.790Z debug frostfs-node/morph.go:229 new block {"index": 5838} -2023-12-15T23:42:58.383Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5838, "blockHeight": 5838, "took": "5.776002ms"} -2023-12-15T23:42:58.788Z INFO sending PrepareRequest {"height": 5839, "view": 0} -2023-12-15T23:42:58.788Z INFO sending Commit {"height": 5839, "view": 0} -2023-12-15T23:42:58.788Z INFO approving block {"height": 5839, "hash": "b7bc1cb352405270e4467658aee2621f4f858c2b344244d862f38758f5611415", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fceb522da6c5548b729749a96a62a8c6c89f96adf1cb58c88a581f988021145f"} -2023-12-15T23:42:58.790Z INFO initializing dbft {"height": 5840, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:58.791Z debug frostfs-node/morph.go:229 new block {"index": 5839} -2023-12-15T23:42:59.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5839, "blockHeight": 5839, "took": "8.306502ms"} -2023-12-15T23:42:59.790Z INFO sending PrepareRequest {"height": 5840, "view": 0} -2023-12-15T23:42:59.790Z INFO sending Commit {"height": 5840, "view": 0} -2023-12-15T23:42:59.791Z INFO approving block {"height": 5840, "hash": "4737e252a0e9ea0e572701c1693fda604b606d1d3a55972bde73b53975a647d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7bc1cb352405270e4467658aee2621f4f858c2b344244d862f38758f5611415"} -2023-12-15T23:42:59.793Z INFO initializing dbft {"height": 5841, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:42:59.793Z debug frostfs-node/morph.go:229 new block {"index": 5840} -2023-12-15T23:43:00.385Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5840, "blockHeight": 5840, "took": "6.577149ms"} -2023-12-15T23:43:00.792Z INFO sending PrepareRequest {"height": 5841, "view": 0} -2023-12-15T23:43:00.793Z INFO sending Commit {"height": 5841, "view": 0} -2023-12-15T23:43:00.794Z INFO approving block {"height": 5841, "hash": "f0ca32d4c42eaf2612fa8be72288dea3cb4215a19075f18bcf0e03b3ed5b7612", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4737e252a0e9ea0e572701c1693fda604b606d1d3a55972bde73b53975a647d2"} -2023-12-15T23:43:00.795Z INFO initializing dbft {"height": 5842, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:00.796Z debug frostfs-node/morph.go:229 new block {"index": 5841} -2023-12-15T23:43:01.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5841, "blockHeight": 5841, "took": "7.459534ms"} -2023-12-15T23:43:01.795Z INFO sending PrepareRequest {"height": 5842, "view": 0} -2023-12-15T23:43:01.795Z INFO sending Commit {"height": 5842, "view": 0} -2023-12-15T23:43:01.795Z INFO approving block {"height": 5842, "hash": "43561938d9aa924a230c8b26e2bd5e4648dbd4b818722244d2bb711ae2238ceb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0ca32d4c42eaf2612fa8be72288dea3cb4215a19075f18bcf0e03b3ed5b7612"} -2023-12-15T23:43:01.796Z INFO initializing dbft {"height": 5843, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:01.797Z debug frostfs-node/morph.go:229 new block {"index": 5842} -2023-12-15T23:43:02.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5842, "blockHeight": 5842, "took": "6.530401ms"} -2023-12-15T23:43:02.796Z INFO sending PrepareRequest {"height": 5843, "view": 0} -2023-12-15T23:43:02.797Z INFO sending Commit {"height": 5843, "view": 0} -2023-12-15T23:43:02.797Z INFO approving block {"height": 5843, "hash": "117463f49e3c50e7d7103c8181c3d4276583efc4381dc12e9a17892adb30c64a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43561938d9aa924a230c8b26e2bd5e4648dbd4b818722244d2bb711ae2238ceb"} -2023-12-15T23:43:02.798Z INFO initializing dbft {"height": 5844, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:02.799Z debug frostfs-node/morph.go:229 new block {"index": 5843} -2023-12-15T23:43:03.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5843, "blockHeight": 5843, "took": "5.640731ms"} -2023-12-15T23:43:03.798Z INFO sending PrepareRequest {"height": 5844, "view": 0} -2023-12-15T23:43:03.798Z INFO sending Commit {"height": 5844, "view": 0} -2023-12-15T23:43:03.799Z INFO approving block {"height": 5844, "hash": "f919de6af3b2f6409fdeac363220b5a1800d40f6bf2d1d68f51344f9e81436e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "117463f49e3c50e7d7103c8181c3d4276583efc4381dc12e9a17892adb30c64a"} -2023-12-15T23:43:03.800Z INFO initializing dbft {"height": 5845, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:03.801Z debug frostfs-node/morph.go:229 new block {"index": 5844} -2023-12-15T23:43:03.808Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 25 epoch for daughters"} -2023-12-15T23:43:03.810Z INFO runtime log {"tx": "10ed59f6acdbcd7736f0275dfaa988d1691efa496959a15c4d12087fbf70d07c", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:43:04.389Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5844, "blockHeight": 5844, "took": "7.026955ms"} -2023-12-15T23:43:04.800Z INFO sending PrepareRequest {"height": 5845, "view": 0} -2023-12-15T23:43:04.800Z INFO sending Commit {"height": 5845, "view": 0} -2023-12-15T23:43:04.801Z INFO approving block {"height": 5845, "hash": "718891b8891cddcaf6fbffd4aacf6d5b083ecd827b7cf1255e7b44b5357b32eb", "tx_count": 1, "merkle": "081a3fe346b1d97fd97cb0a0f1c39f3f0b107c13643caa4ff86dd362fad7fd78", "prev": "f919de6af3b2f6409fdeac363220b5a1800d40f6bf2d1d68f51344f9e81436e2"} -2023-12-15T23:43:04.801Z INFO runtime log {"tx": "78fdd7fa62d36df84faa3c64137c100b3f9fc3f1a0b07cd97fd9b146e33f1a08", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:43:04.804Z INFO initializing dbft {"height": 5846, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:04.804Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 25} -2023-12-15T23:43:04.805Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 25} -2023-12-15T23:43:04.805Z debug frostfs-node/morph.go:229 new block {"index": 5845} -2023-12-15T23:43:05.395Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 5845, "blockHeight": 5845, "took": "12.523699ms"} -2023-12-15T23:43:05.801Z INFO sending PrepareRequest {"height": 5846, "view": 0} -2023-12-15T23:43:05.802Z INFO sending Commit {"height": 5846, "view": 0} -2023-12-15T23:43:05.802Z INFO approving block {"height": 5846, "hash": "9389ba328ab6c3d2e9e270e32a93993a0585da01ff0fa5ad9baf67a0e824eb97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "718891b8891cddcaf6fbffd4aacf6d5b083ecd827b7cf1255e7b44b5357b32eb"} -2023-12-15T23:43:05.803Z INFO initializing dbft {"height": 5847, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:05.804Z debug frostfs-node/morph.go:229 new block {"index": 5846} -2023-12-15T23:43:06.390Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5846, "blockHeight": 5846, "took": "6.494235ms"} -2023-12-15T23:43:06.803Z INFO sending PrepareRequest {"height": 5847, "view": 0} -2023-12-15T23:43:06.803Z INFO sending Commit {"height": 5847, "view": 0} -2023-12-15T23:43:06.803Z INFO approving block {"height": 5847, "hash": "eeedd5a83e1f31ba8ffbf6007d55bd975738a1b541c9028f8f785805f0912633", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9389ba328ab6c3d2e9e270e32a93993a0585da01ff0fa5ad9baf67a0e824eb97"} -2023-12-15T23:43:06.805Z INFO initializing dbft {"height": 5848, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:06.806Z debug frostfs-node/morph.go:229 new block {"index": 5847} -2023-12-15T23:43:07.391Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5847, "blockHeight": 5847, "took": "6.796468ms"} -2023-12-15T23:43:07.805Z INFO sending PrepareRequest {"height": 5848, "view": 0} -2023-12-15T23:43:07.805Z INFO sending Commit {"height": 5848, "view": 0} -2023-12-15T23:43:07.805Z INFO approving block {"height": 5848, "hash": "6978e55bdaa9ae0474ac705b71c2d8eb139cc0e4b558f4166b672f6e45f43ba3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eeedd5a83e1f31ba8ffbf6007d55bd975738a1b541c9028f8f785805f0912633"} -2023-12-15T23:43:07.807Z INFO initializing dbft {"height": 5849, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:07.808Z debug frostfs-node/morph.go:229 new block {"index": 5848} -2023-12-15T23:43:08.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5848, "blockHeight": 5848, "took": "7.072416ms"} -2023-12-15T23:43:08.807Z INFO sending PrepareRequest {"height": 5849, "view": 0} -2023-12-15T23:43:08.807Z INFO sending Commit {"height": 5849, "view": 0} -2023-12-15T23:43:08.808Z INFO approving block {"height": 5849, "hash": "4d8ef582bed5bcdb1a612533b56226314678c7080bd8400eab95287a66ac90ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6978e55bdaa9ae0474ac705b71c2d8eb139cc0e4b558f4166b672f6e45f43ba3"} -2023-12-15T23:43:08.811Z INFO initializing dbft {"height": 5850, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:08.812Z debug frostfs-node/morph.go:229 new block {"index": 5849} -2023-12-15T23:43:09.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5849, "blockHeight": 5849, "took": "5.913472ms"} -2023-12-15T23:43:09.810Z INFO sending PrepareRequest {"height": 5850, "view": 0} -2023-12-15T23:43:09.810Z INFO sending Commit {"height": 5850, "view": 0} -2023-12-15T23:43:09.811Z INFO approving block {"height": 5850, "hash": "bbe30fa7b210d1b2e266c7de4eabfaec51fb46fd5daffcb5d5cd8acf37d8788b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d8ef582bed5bcdb1a612533b56226314678c7080bd8400eab95287a66ac90ba"} -2023-12-15T23:43:09.815Z INFO initializing dbft {"height": 5851, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:09.817Z debug frostfs-node/morph.go:229 new block {"index": 5850} -2023-12-15T23:43:10.393Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5850, "blockHeight": 5850, "took": "6.011646ms"} -2023-12-15T23:43:10.812Z INFO sending PrepareRequest {"height": 5851, "view": 0} -2023-12-15T23:43:10.812Z INFO sending Commit {"height": 5851, "view": 0} -2023-12-15T23:43:10.813Z INFO approving block {"height": 5851, "hash": "43f1b7664cbab8bf152942aab0b14bac74f44c0b79df264ef74bada8b6cb026b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbe30fa7b210d1b2e266c7de4eabfaec51fb46fd5daffcb5d5cd8acf37d8788b"} -2023-12-15T23:43:10.816Z INFO initializing dbft {"height": 5852, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:10.817Z debug frostfs-node/morph.go:229 new block {"index": 5851} -2023-12-15T23:43:11.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5851, "blockHeight": 5851, "took": "7.257514ms"} -2023-12-15T23:43:11.815Z INFO sending PrepareRequest {"height": 5852, "view": 0} -2023-12-15T23:43:11.815Z INFO sending Commit {"height": 5852, "view": 0} -2023-12-15T23:43:11.816Z INFO approving block {"height": 5852, "hash": "ec4f672ec2128b904e73d7424276cbfac55184c82b8e5a73ce9b6fd02d25bf28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43f1b7664cbab8bf152942aab0b14bac74f44c0b79df264ef74bada8b6cb026b"} -2023-12-15T23:43:11.819Z INFO initializing dbft {"height": 5853, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:11.820Z debug frostfs-node/morph.go:229 new block {"index": 5852} -2023-12-15T23:43:12.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5852, "blockHeight": 5852, "took": "6.549414ms"} -2023-12-15T23:43:12.817Z INFO sending PrepareRequest {"height": 5853, "view": 0} -2023-12-15T23:43:12.817Z INFO sending Commit {"height": 5853, "view": 0} -2023-12-15T23:43:12.818Z INFO approving block {"height": 5853, "hash": "dbc5580ef6b5c42e82ad0669f0da2ed4faa3721ed1950d1e3e8e7609fa36e27d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec4f672ec2128b904e73d7424276cbfac55184c82b8e5a73ce9b6fd02d25bf28"} -2023-12-15T23:43:12.820Z INFO initializing dbft {"height": 5854, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:12.821Z debug frostfs-node/morph.go:229 new block {"index": 5853} -2023-12-15T23:43:13.397Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5853, "blockHeight": 5853, "took": "6.899301ms"} -2023-12-15T23:43:13.818Z INFO sending PrepareRequest {"height": 5854, "view": 0} -2023-12-15T23:43:13.819Z INFO sending Commit {"height": 5854, "view": 0} -2023-12-15T23:43:13.819Z INFO approving block {"height": 5854, "hash": "069124a46107cf2930db552b203314c9ca9ce1abb003dc209ba0732e248e3183", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbc5580ef6b5c42e82ad0669f0da2ed4faa3721ed1950d1e3e8e7609fa36e27d"} -2023-12-15T23:43:13.822Z INFO initializing dbft {"height": 5855, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:13.823Z debug frostfs-node/morph.go:229 new block {"index": 5854} -2023-12-15T23:43:14.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5854, "blockHeight": 5854, "took": "8.98356ms"} -2023-12-15T23:43:14.820Z INFO sending PrepareRequest {"height": 5855, "view": 0} -2023-12-15T23:43:14.821Z INFO sending Commit {"height": 5855, "view": 0} -2023-12-15T23:43:14.821Z INFO approving block {"height": 5855, "hash": "83f352e7b812f0c7ed6fa5a18ed50d0da97d05b04271c4aec98cd280d80d7061", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "069124a46107cf2930db552b203314c9ca9ce1abb003dc209ba0732e248e3183"} -2023-12-15T23:43:14.824Z INFO initializing dbft {"height": 5856, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:14.825Z debug frostfs-node/morph.go:229 new block {"index": 5855} -2023-12-15T23:43:15.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5855, "blockHeight": 5855, "took": "5.744449ms"} -2023-12-15T23:43:15.823Z INFO sending PrepareRequest {"height": 5856, "view": 0} -2023-12-15T23:43:15.823Z INFO sending Commit {"height": 5856, "view": 0} -2023-12-15T23:43:15.823Z INFO approving block {"height": 5856, "hash": "d57f90fb759a66eab05c4d419f3e9dd559d6d035a59647a9ac693d903a087ad7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83f352e7b812f0c7ed6fa5a18ed50d0da97d05b04271c4aec98cd280d80d7061"} -2023-12-15T23:43:15.824Z INFO initializing dbft {"height": 5857, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:15.825Z debug frostfs-node/morph.go:229 new block {"index": 5856} -2023-12-15T23:43:16.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5856, "blockHeight": 5856, "took": "6.921851ms"} -2023-12-15T23:43:16.824Z INFO sending PrepareRequest {"height": 5857, "view": 0} -2023-12-15T23:43:16.824Z INFO sending Commit {"height": 5857, "view": 0} -2023-12-15T23:43:16.825Z INFO approving block {"height": 5857, "hash": "9d48df4549e5dff3925d61a73e4dd743a264a71ec793f913f327cc289b32dbe2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d57f90fb759a66eab05c4d419f3e9dd559d6d035a59647a9ac693d903a087ad7"} -2023-12-15T23:43:16.827Z INFO initializing dbft {"height": 5858, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:16.828Z debug frostfs-node/morph.go:229 new block {"index": 5857} -2023-12-15T23:43:17.398Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5857, "blockHeight": 5857, "took": "6.027907ms"} -2023-12-15T23:43:17.826Z INFO sending PrepareRequest {"height": 5858, "view": 0} -2023-12-15T23:43:17.826Z INFO sending Commit {"height": 5858, "view": 0} -2023-12-15T23:43:17.827Z INFO approving block {"height": 5858, "hash": "111e8af811e2707e517eb0053b68ea11f9a138fa62436aede15fb8b67df3bb43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d48df4549e5dff3925d61a73e4dd743a264a71ec793f913f327cc289b32dbe2"} -2023-12-15T23:43:17.828Z INFO initializing dbft {"height": 5859, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:17.829Z debug frostfs-node/morph.go:229 new block {"index": 5858} -2023-12-15T23:43:18.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5858, "blockHeight": 5858, "took": "7.045378ms"} -2023-12-15T23:43:18.828Z INFO sending PrepareRequest {"height": 5859, "view": 0} -2023-12-15T23:43:18.828Z INFO sending Commit {"height": 5859, "view": 0} -2023-12-15T23:43:18.828Z INFO approving block {"height": 5859, "hash": "c1c870cf83f48422de9f957e9162fa5b423e5c9de8755f576a039c83e78d9816", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "111e8af811e2707e517eb0053b68ea11f9a138fa62436aede15fb8b67df3bb43"} -2023-12-15T23:43:18.830Z INFO initializing dbft {"height": 5860, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:18.831Z debug frostfs-node/morph.go:229 new block {"index": 5859} -2023-12-15T23:43:19.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5859, "blockHeight": 5859, "took": "5.742412ms"} -2023-12-15T23:43:19.829Z INFO sending PrepareRequest {"height": 5860, "view": 0} -2023-12-15T23:43:19.830Z INFO sending Commit {"height": 5860, "view": 0} -2023-12-15T23:43:19.830Z INFO approving block {"height": 5860, "hash": "e47ca324ffaff64a7de68fd375bc3727134ab4be06bef57eca482209ba78d143", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1c870cf83f48422de9f957e9162fa5b423e5c9de8755f576a039c83e78d9816"} -2023-12-15T23:43:19.832Z INFO initializing dbft {"height": 5861, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:19.833Z debug frostfs-node/morph.go:229 new block {"index": 5860} -2023-12-15T23:43:20.402Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5860, "blockHeight": 5860, "took": "6.272014ms"} -2023-12-15T23:43:20.831Z INFO sending PrepareRequest {"height": 5861, "view": 0} -2023-12-15T23:43:20.832Z INFO sending Commit {"height": 5861, "view": 0} -2023-12-15T23:43:20.832Z INFO approving block {"height": 5861, "hash": "77ba3b372113b3ee847ea812264990a401f6a1fdeb86ac489afff26c25e06288", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e47ca324ffaff64a7de68fd375bc3727134ab4be06bef57eca482209ba78d143"} -2023-12-15T23:43:20.834Z INFO initializing dbft {"height": 5862, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:20.835Z debug frostfs-node/morph.go:229 new block {"index": 5861} -2023-12-15T23:43:21.403Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5861, "blockHeight": 5861, "took": "7.258566ms"} -2023-12-15T23:43:21.834Z INFO sending PrepareRequest {"height": 5862, "view": 0} -2023-12-15T23:43:21.835Z INFO sending Commit {"height": 5862, "view": 0} -2023-12-15T23:43:21.835Z INFO approving block {"height": 5862, "hash": "e1715cb796912b78e4cc9b8f125e88a5ced1d91b4c2b8f066a8b87b16c855225", "tx_count": 1, "merkle": "d286e037107a0e83f98f1a38ecad2ec068598777e733f9489fd6c78b316ad9c3", "prev": "77ba3b372113b3ee847ea812264990a401f6a1fdeb86ac489afff26c25e06288"} -2023-12-15T23:43:21.837Z INFO initializing dbft {"height": 5863, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:21.839Z debug frostfs-node/morph.go:229 new block {"index": 5862} -2023-12-15T23:43:21.842Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T23:43:22.405Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 5862, "blockHeight": 5862, "took": "8.257905ms"} -2023-12-15T23:43:22.836Z INFO sending PrepareRequest {"height": 5863, "view": 0} -2023-12-15T23:43:22.836Z INFO sending Commit {"height": 5863, "view": 0} -2023-12-15T23:43:22.837Z INFO approving block {"height": 5863, "hash": "734292662ad774e9c51f66d143a8719c13c97bd736a9fec46669cb7ec6ca8d4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1715cb796912b78e4cc9b8f125e88a5ced1d91b4c2b8f066a8b87b16c855225"} -2023-12-15T23:43:22.838Z INFO initializing dbft {"height": 5864, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:22.839Z debug frostfs-node/morph.go:229 new block {"index": 5863} -2023-12-15T23:43:23.404Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5863, "blockHeight": 5863, "took": "6.645753ms"} -2023-12-15T23:43:23.838Z INFO sending PrepareRequest {"height": 5864, "view": 0} -2023-12-15T23:43:23.838Z INFO sending Commit {"height": 5864, "view": 0} -2023-12-15T23:43:23.838Z INFO approving block {"height": 5864, "hash": "f32e954772f17faa9f742755ad230c0abbfea6b36c54e597aa18bd349f27944c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "734292662ad774e9c51f66d143a8719c13c97bd736a9fec46669cb7ec6ca8d4b"} -2023-12-15T23:43:23.842Z INFO initializing dbft {"height": 5865, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:23.842Z debug frostfs-node/morph.go:229 new block {"index": 5864} -2023-12-15T23:43:24.404Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5864, "blockHeight": 5864, "took": "5.834053ms"} -2023-12-15T23:43:24.840Z INFO sending PrepareRequest {"height": 5865, "view": 0} -2023-12-15T23:43:24.840Z INFO sending Commit {"height": 5865, "view": 0} -2023-12-15T23:43:24.840Z INFO approving block {"height": 5865, "hash": "da27ab94a102d82310ebac0dcdd52851d51c16e3838bdee4bcfa82bc303eb806", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f32e954772f17faa9f742755ad230c0abbfea6b36c54e597aa18bd349f27944c"} -2023-12-15T23:43:24.842Z INFO initializing dbft {"height": 5866, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:24.843Z debug frostfs-node/morph.go:229 new block {"index": 5865} -2023-12-15T23:43:25.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5865, "blockHeight": 5865, "took": "5.7086ms"} -2023-12-15T23:43:25.841Z INFO sending PrepareRequest {"height": 5866, "view": 0} -2023-12-15T23:43:25.842Z INFO sending Commit {"height": 5866, "view": 0} -2023-12-15T23:43:25.843Z INFO approving block {"height": 5866, "hash": "67e7af1f7898bbdb2e1983bdb78ace0749a605d69407fb3cc3d1d928b5d74e45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da27ab94a102d82310ebac0dcdd52851d51c16e3838bdee4bcfa82bc303eb806"} -2023-12-15T23:43:25.845Z INFO initializing dbft {"height": 5867, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:25.846Z debug frostfs-node/morph.go:229 new block {"index": 5866} -2023-12-15T23:43:26.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5866, "blockHeight": 5866, "took": "5.546909ms"} -2023-12-15T23:43:26.844Z INFO sending PrepareRequest {"height": 5867, "view": 0} -2023-12-15T23:43:26.844Z INFO sending Commit {"height": 5867, "view": 0} -2023-12-15T23:43:26.845Z INFO approving block {"height": 5867, "hash": "19bc0bb5ba9e6f4c26757f12ab8abd59c9783529f8b3cee8777e8e5355838f93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67e7af1f7898bbdb2e1983bdb78ace0749a605d69407fb3cc3d1d928b5d74e45"} -2023-12-15T23:43:26.846Z INFO initializing dbft {"height": 5868, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:26.847Z debug frostfs-node/morph.go:229 new block {"index": 5867} -2023-12-15T23:43:26.852Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:43:26.858Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:43:26.859Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:43:27.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5867, "blockHeight": 5867, "took": "8.522625ms"} -2023-12-15T23:43:27.846Z INFO sending PrepareRequest {"height": 5868, "view": 0} -2023-12-15T23:43:27.846Z INFO sending Commit {"height": 5868, "view": 0} -2023-12-15T23:43:27.847Z INFO approving block {"height": 5868, "hash": "aad8f51b9ceb6ff8d1e57e4b06ea714585ea598e83b03baf2f720eafdf65387d", "tx_count": 2, "merkle": "12897ffde11bfbb7fd389d695b33e24bee59380a9d8073988d5ad03c460aebc4", "prev": "19bc0bb5ba9e6f4c26757f12ab8abd59c9783529f8b3cee8777e8e5355838f93"} -2023-12-15T23:43:27.848Z INFO runtime log {"tx": "dbfc3c7740aa05531488b3932a14fb2cdf223c4a0d8a90fcf26cd16260c28376", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:43:27.848Z INFO runtime log {"tx": "dbfc3c7740aa05531488b3932a14fb2cdf223c4a0d8a90fcf26cd16260c28376", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:43:27.849Z INFO initializing dbft {"height": 5869, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:27.850Z debug frostfs-node/morph.go:229 new block {"index": 5868} -2023-12-15T23:43:28.409Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5868, "blockHeight": 5868, "took": "8.706679ms"} -2023-12-15T23:43:28.848Z INFO sending PrepareRequest {"height": 5869, "view": 0} -2023-12-15T23:43:28.848Z INFO sending Commit {"height": 5869, "view": 0} -2023-12-15T23:43:28.848Z INFO approving block {"height": 5869, "hash": "e3e6fcdd3292e9b5a9b83ff13b306ed0d5512e029c248782e145daff5cd8ea84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad8f51b9ceb6ff8d1e57e4b06ea714585ea598e83b03baf2f720eafdf65387d"} -2023-12-15T23:43:28.850Z INFO initializing dbft {"height": 5870, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:28.851Z debug frostfs-node/morph.go:229 new block {"index": 5869} -2023-12-15T23:43:29.406Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5869, "blockHeight": 5869, "took": "4.98461ms"} -2023-12-15T23:43:29.850Z INFO sending PrepareRequest {"height": 5870, "view": 0} -2023-12-15T23:43:29.850Z INFO sending Commit {"height": 5870, "view": 0} -2023-12-15T23:43:29.850Z INFO approving block {"height": 5870, "hash": "ee2ecd6180a8ebc6beb9db3cf82b2052c39932dd1b0618356c55bee6e56b2e3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3e6fcdd3292e9b5a9b83ff13b306ed0d5512e029c248782e145daff5cd8ea84"} -2023-12-15T23:43:29.852Z INFO initializing dbft {"height": 5871, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:29.853Z debug frostfs-node/morph.go:229 new block {"index": 5870} -2023-12-15T23:43:30.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5870, "blockHeight": 5870, "took": "6.600133ms"} -2023-12-15T23:43:30.851Z INFO sending PrepareRequest {"height": 5871, "view": 0} -2023-12-15T23:43:30.852Z INFO sending Commit {"height": 5871, "view": 0} -2023-12-15T23:43:30.852Z INFO approving block {"height": 5871, "hash": "1d910850e52e7842e8c6b4804f1bc469843f66418ff78d72553b0ef55b1176a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee2ecd6180a8ebc6beb9db3cf82b2052c39932dd1b0618356c55bee6e56b2e3e"} -2023-12-15T23:43:30.853Z INFO initializing dbft {"height": 5872, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:30.854Z debug frostfs-node/morph.go:229 new block {"index": 5871} -2023-12-15T23:43:31.410Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5871, "blockHeight": 5871, "took": "7.339534ms"} -2023-12-15T23:43:31.853Z INFO sending PrepareRequest {"height": 5872, "view": 0} -2023-12-15T23:43:31.853Z INFO sending Commit {"height": 5872, "view": 0} -2023-12-15T23:43:31.854Z INFO approving block {"height": 5872, "hash": "992af68e6689094c12783a6df7a296a7e11dc8a36c4e97fd3eceeeb19a5231e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d910850e52e7842e8c6b4804f1bc469843f66418ff78d72553b0ef55b1176a5"} -2023-12-15T23:43:31.855Z INFO initializing dbft {"height": 5873, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:31.856Z debug frostfs-node/morph.go:229 new block {"index": 5872} -2023-12-15T23:43:32.411Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5872, "blockHeight": 5872, "took": "7.347254ms"} -2023-12-15T23:43:32.855Z INFO sending PrepareRequest {"height": 5873, "view": 0} -2023-12-15T23:43:32.855Z INFO sending Commit {"height": 5873, "view": 0} -2023-12-15T23:43:32.855Z INFO approving block {"height": 5873, "hash": "635aa7be1d98303cd8f6638c1cdc101f678f87abeda28a1ad8442c839bd3f118", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "992af68e6689094c12783a6df7a296a7e11dc8a36c4e97fd3eceeeb19a5231e7"} -2023-12-15T23:43:32.857Z INFO initializing dbft {"height": 5874, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:32.858Z debug frostfs-node/morph.go:229 new block {"index": 5873} -2023-12-15T23:43:33.411Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5873, "blockHeight": 5873, "took": "6.727656ms"} -2023-12-15T23:43:33.857Z INFO sending PrepareRequest {"height": 5874, "view": 0} -2023-12-15T23:43:33.857Z INFO sending Commit {"height": 5874, "view": 0} -2023-12-15T23:43:33.858Z INFO approving block {"height": 5874, "hash": "ecb65ba6da3313c41b60c0674fc7dc3fcf51fb50239e4ac2ed5e129287476455", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "635aa7be1d98303cd8f6638c1cdc101f678f87abeda28a1ad8442c839bd3f118"} -2023-12-15T23:43:33.860Z INFO initializing dbft {"height": 5875, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:33.861Z debug frostfs-node/morph.go:229 new block {"index": 5874} -2023-12-15T23:43:34.411Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5874, "blockHeight": 5874, "took": "5.83718ms"} -2023-12-15T23:43:34.859Z INFO sending PrepareRequest {"height": 5875, "view": 0} -2023-12-15T23:43:34.859Z INFO sending Commit {"height": 5875, "view": 0} -2023-12-15T23:43:34.860Z INFO approving block {"height": 5875, "hash": "0409a45b17083097b4476a678f561d83597f9c51dfd08580aa880036752a5d19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecb65ba6da3313c41b60c0674fc7dc3fcf51fb50239e4ac2ed5e129287476455"} -2023-12-15T23:43:34.862Z INFO initializing dbft {"height": 5876, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:34.862Z debug frostfs-node/morph.go:229 new block {"index": 5875} -2023-12-15T23:43:35.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5875, "blockHeight": 5875, "took": "5.921533ms"} -2023-12-15T23:43:35.861Z INFO sending PrepareRequest {"height": 5876, "view": 0} -2023-12-15T23:43:35.861Z INFO sending Commit {"height": 5876, "view": 0} -2023-12-15T23:43:35.861Z INFO approving block {"height": 5876, "hash": "5ab78891cbfbdda72023467ce2850a36fe0408e85adc07d265bcd389eadf464b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0409a45b17083097b4476a678f561d83597f9c51dfd08580aa880036752a5d19"} -2023-12-15T23:43:35.862Z INFO initializing dbft {"height": 5877, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:35.863Z debug frostfs-node/morph.go:229 new block {"index": 5876} -2023-12-15T23:43:36.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5876, "blockHeight": 5876, "took": "7.578701ms"} -2023-12-15T23:43:36.862Z INFO sending PrepareRequest {"height": 5877, "view": 0} -2023-12-15T23:43:36.862Z INFO sending Commit {"height": 5877, "view": 0} -2023-12-15T23:43:36.863Z INFO approving block {"height": 5877, "hash": "ed6f90fb634ec09ab2a1a3a9da8f6c7582279ebe6c92513ada650e2d7e244f9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ab78891cbfbdda72023467ce2850a36fe0408e85adc07d265bcd389eadf464b"} -2023-12-15T23:43:36.864Z INFO initializing dbft {"height": 5878, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:36.865Z debug frostfs-node/morph.go:229 new block {"index": 5877} -2023-12-15T23:43:37.416Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5877, "blockHeight": 5877, "took": "8.501701ms"} -2023-12-15T23:43:37.863Z INFO sending PrepareRequest {"height": 5878, "view": 0} -2023-12-15T23:43:37.864Z INFO sending Commit {"height": 5878, "view": 0} -2023-12-15T23:43:37.864Z INFO approving block {"height": 5878, "hash": "b8cd1687dc68a90045d5918e23bdef831a85f74d95266f46f916d5a8f71288ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed6f90fb634ec09ab2a1a3a9da8f6c7582279ebe6c92513ada650e2d7e244f9f"} -2023-12-15T23:43:37.865Z INFO initializing dbft {"height": 5879, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:37.867Z debug frostfs-node/morph.go:229 new block {"index": 5878} -2023-12-15T23:43:38.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5878, "blockHeight": 5878, "took": "6.235913ms"} -2023-12-15T23:43:38.866Z INFO sending PrepareRequest {"height": 5879, "view": 0} -2023-12-15T23:43:38.866Z INFO sending Commit {"height": 5879, "view": 0} -2023-12-15T23:43:38.866Z INFO approving block {"height": 5879, "hash": "422d73e2cdfa2e9a7e9ce5a395a9a70d26bb5b7ed05733a9820b842dc30d4484", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8cd1687dc68a90045d5918e23bdef831a85f74d95266f46f916d5a8f71288ea"} -2023-12-15T23:43:38.868Z INFO initializing dbft {"height": 5880, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:38.869Z debug frostfs-node/morph.go:229 new block {"index": 5879} -2023-12-15T23:43:39.416Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5879, "blockHeight": 5879, "took": "6.340066ms"} -2023-12-15T23:43:39.868Z INFO sending PrepareRequest {"height": 5880, "view": 0} -2023-12-15T23:43:39.869Z INFO sending Commit {"height": 5880, "view": 0} -2023-12-15T23:43:39.869Z INFO approving block {"height": 5880, "hash": "da7de02c59fd6d4cfcd71a61202a1d598876926dd589d3756fd4e524adb2c3ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "422d73e2cdfa2e9a7e9ce5a395a9a70d26bb5b7ed05733a9820b842dc30d4484"} -2023-12-15T23:43:39.871Z INFO initializing dbft {"height": 5881, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:39.872Z debug frostfs-node/morph.go:229 new block {"index": 5880} -2023-12-15T23:43:40.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5880, "blockHeight": 5880, "took": "5.191449ms"} -2023-12-15T23:43:40.871Z INFO sending PrepareRequest {"height": 5881, "view": 0} -2023-12-15T23:43:40.871Z INFO sending Commit {"height": 5881, "view": 0} -2023-12-15T23:43:40.871Z INFO approving block {"height": 5881, "hash": "a855c3de2b93f28529250f01e049a3f0f996d56b08ad53869835c0fc5ce7a52b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da7de02c59fd6d4cfcd71a61202a1d598876926dd589d3756fd4e524adb2c3ee"} -2023-12-15T23:43:40.873Z INFO initializing dbft {"height": 5882, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:40.873Z debug frostfs-node/morph.go:229 new block {"index": 5881} -2023-12-15T23:43:41.418Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5881, "blockHeight": 5881, "took": "7.572772ms"} -2023-12-15T23:43:41.873Z INFO sending PrepareRequest {"height": 5882, "view": 0} -2023-12-15T23:43:41.873Z INFO sending Commit {"height": 5882, "view": 0} -2023-12-15T23:43:41.873Z INFO approving block {"height": 5882, "hash": "5df107d258ad46e2c884b033bf10895c12f13052f5fd917ca8944c4e55ad24b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a855c3de2b93f28529250f01e049a3f0f996d56b08ad53869835c0fc5ce7a52b"} -2023-12-15T23:43:41.876Z INFO initializing dbft {"height": 5883, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:41.877Z debug frostfs-node/morph.go:229 new block {"index": 5882} -2023-12-15T23:43:42.417Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5882, "blockHeight": 5882, "took": "5.586372ms"} -2023-12-15T23:43:42.875Z INFO sending PrepareRequest {"height": 5883, "view": 0} -2023-12-15T23:43:42.875Z INFO sending Commit {"height": 5883, "view": 0} -2023-12-15T23:43:42.875Z INFO approving block {"height": 5883, "hash": "292b9d2442f48975885b50b83daca0576925c5af7bbcf49d3ea883474c4f2513", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5df107d258ad46e2c884b033bf10895c12f13052f5fd917ca8944c4e55ad24b0"} -2023-12-15T23:43:42.876Z INFO initializing dbft {"height": 5884, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:42.877Z debug frostfs-node/morph.go:229 new block {"index": 5883} -2023-12-15T23:43:43.420Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5883, "blockHeight": 5883, "took": "7.132509ms"} -2023-12-15T23:43:43.876Z INFO sending PrepareRequest {"height": 5884, "view": 0} -2023-12-15T23:43:43.877Z INFO sending Commit {"height": 5884, "view": 0} -2023-12-15T23:43:43.877Z INFO approving block {"height": 5884, "hash": "39beede91c31261f36deaa6f455be358977ca856ada112c68627b238fb8930ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "292b9d2442f48975885b50b83daca0576925c5af7bbcf49d3ea883474c4f2513"} -2023-12-15T23:43:43.879Z INFO initializing dbft {"height": 5885, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:43.880Z debug frostfs-node/morph.go:229 new block {"index": 5884} -2023-12-15T23:43:44.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5884, "blockHeight": 5884, "took": "6.151301ms"} -2023-12-15T23:43:44.879Z INFO sending PrepareRequest {"height": 5885, "view": 0} -2023-12-15T23:43:44.879Z INFO sending Commit {"height": 5885, "view": 0} -2023-12-15T23:43:44.880Z INFO approving block {"height": 5885, "hash": "ef69677d556894513da3193282ec9a09a856fa347c302b0a786e37173e5a200b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39beede91c31261f36deaa6f455be358977ca856ada112c68627b238fb8930ca"} -2023-12-15T23:43:44.882Z INFO initializing dbft {"height": 5886, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:44.883Z debug frostfs-node/morph.go:229 new block {"index": 5885} -2023-12-15T23:43:45.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5885, "blockHeight": 5885, "took": "8.071375ms"} -2023-12-15T23:43:45.881Z INFO sending PrepareRequest {"height": 5886, "view": 0} -2023-12-15T23:43:45.882Z INFO sending Commit {"height": 5886, "view": 0} -2023-12-15T23:43:45.882Z INFO approving block {"height": 5886, "hash": "6a517969cac7d1679826ed7ad1eb12430b623ceaf8560849600c6572eff0ce3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef69677d556894513da3193282ec9a09a856fa347c302b0a786e37173e5a200b"} -2023-12-15T23:43:45.884Z INFO initializing dbft {"height": 5887, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:45.884Z debug frostfs-node/morph.go:229 new block {"index": 5886} -2023-12-15T23:43:46.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5886, "blockHeight": 5886, "took": "9.918429ms"} -2023-12-15T23:43:46.883Z INFO sending PrepareRequest {"height": 5887, "view": 0} -2023-12-15T23:43:46.884Z INFO sending Commit {"height": 5887, "view": 0} -2023-12-15T23:43:46.884Z INFO approving block {"height": 5887, "hash": "c1ba1ef2e599ae96bd60d51484a5f3eaff4537e89e8dedd775972abca4351d17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a517969cac7d1679826ed7ad1eb12430b623ceaf8560849600c6572eff0ce3b"} -2023-12-15T23:43:46.886Z INFO initializing dbft {"height": 5888, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:46.887Z debug frostfs-node/morph.go:229 new block {"index": 5887} -2023-12-15T23:43:47.424Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 5887, "blockHeight": 5887, "took": "6.888549ms"} -2023-12-15T23:43:47.885Z INFO sending PrepareRequest {"height": 5888, "view": 0} -2023-12-15T23:43:47.886Z INFO sending Commit {"height": 5888, "view": 0} -2023-12-15T23:43:47.886Z INFO approving block {"height": 5888, "hash": "faa734f50ca52801eb81057aa991f92edf79236c8288dec79a8c65e3e65ea66f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1ba1ef2e599ae96bd60d51484a5f3eaff4537e89e8dedd775972abca4351d17"} -2023-12-15T23:43:47.888Z INFO initializing dbft {"height": 5889, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:47.889Z debug frostfs-node/morph.go:229 new block {"index": 5888} -2023-12-15T23:43:48.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5888, "blockHeight": 5888, "took": "9.386245ms"} -2023-12-15T23:43:48.887Z INFO sending PrepareRequest {"height": 5889, "view": 0} -2023-12-15T23:43:48.888Z INFO sending Commit {"height": 5889, "view": 0} -2023-12-15T23:43:48.888Z INFO approving block {"height": 5889, "hash": "ce7bfb71a0c38bc66ef29ee160ad210d7f94c80d2d7c4beaca5afaef3bd6f183", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "faa734f50ca52801eb81057aa991f92edf79236c8288dec79a8c65e3e65ea66f"} -2023-12-15T23:43:48.891Z INFO initializing dbft {"height": 5890, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:48.892Z debug frostfs-node/morph.go:229 new block {"index": 5889} -2023-12-15T23:43:49.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5889, "blockHeight": 5889, "took": "6.924352ms"} -2023-12-15T23:43:49.890Z INFO sending PrepareRequest {"height": 5890, "view": 0} -2023-12-15T23:43:49.891Z INFO sending Commit {"height": 5890, "view": 0} -2023-12-15T23:43:49.891Z INFO approving block {"height": 5890, "hash": "f8164aeb77c8ab1323ce7df4cb1b7c01d049d83136a4c73abe015d46c26e3461", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce7bfb71a0c38bc66ef29ee160ad210d7f94c80d2d7c4beaca5afaef3bd6f183"} -2023-12-15T23:43:49.893Z INFO initializing dbft {"height": 5891, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:49.894Z debug frostfs-node/morph.go:229 new block {"index": 5890} -2023-12-15T23:43:50.428Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5890, "blockHeight": 5890, "took": "9.170623ms"} -2023-12-15T23:43:50.893Z INFO sending PrepareRequest {"height": 5891, "view": 0} -2023-12-15T23:43:50.893Z INFO sending Commit {"height": 5891, "view": 0} -2023-12-15T23:43:50.893Z INFO approving block {"height": 5891, "hash": "82cf94cc1ac3c9cfe93140a665f02eb1a3c510613fee715c276afa1698405f77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8164aeb77c8ab1323ce7df4cb1b7c01d049d83136a4c73abe015d46c26e3461"} -2023-12-15T23:43:50.895Z INFO initializing dbft {"height": 5892, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:50.896Z debug frostfs-node/morph.go:229 new block {"index": 5891} -2023-12-15T23:43:51.426Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5891, "blockHeight": 5891, "took": "5.880732ms"} -2023-12-15T23:43:51.895Z INFO sending PrepareRequest {"height": 5892, "view": 0} -2023-12-15T23:43:51.895Z INFO sending Commit {"height": 5892, "view": 0} -2023-12-15T23:43:51.895Z INFO approving block {"height": 5892, "hash": "a8fc713b916bb656723df031ed93d1317a5026d86874ebf847621f42fa906a42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82cf94cc1ac3c9cfe93140a665f02eb1a3c510613fee715c276afa1698405f77"} -2023-12-15T23:43:51.897Z INFO initializing dbft {"height": 5893, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:51.897Z debug frostfs-node/morph.go:229 new block {"index": 5892} -2023-12-15T23:43:52.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5892, "blockHeight": 5892, "took": "7.602298ms"} -2023-12-15T23:43:52.897Z INFO sending PrepareRequest {"height": 5893, "view": 0} -2023-12-15T23:43:52.897Z INFO sending Commit {"height": 5893, "view": 0} -2023-12-15T23:43:52.898Z INFO approving block {"height": 5893, "hash": "6cded5f6af6eacdb25a3ab092ae81d09330708be7b8b4b91ea78e982bd168ef4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8fc713b916bb656723df031ed93d1317a5026d86874ebf847621f42fa906a42"} -2023-12-15T23:43:52.900Z INFO initializing dbft {"height": 5894, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:52.901Z debug frostfs-node/morph.go:229 new block {"index": 5893} -2023-12-15T23:43:53.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5893, "blockHeight": 5893, "took": "6.947742ms"} -2023-12-15T23:43:53.899Z INFO sending PrepareRequest {"height": 5894, "view": 0} -2023-12-15T23:43:53.899Z INFO sending Commit {"height": 5894, "view": 0} -2023-12-15T23:43:53.900Z INFO approving block {"height": 5894, "hash": "6e1794e1e657f46a129214744a64a0e638763346bc678c656f19d0c269ea3eb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cded5f6af6eacdb25a3ab092ae81d09330708be7b8b4b91ea78e982bd168ef4"} -2023-12-15T23:43:53.901Z INFO initializing dbft {"height": 5895, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:53.902Z debug frostfs-node/morph.go:229 new block {"index": 5894} -2023-12-15T23:43:54.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5894, "blockHeight": 5894, "took": "8.680832ms"} -2023-12-15T23:43:54.901Z INFO sending PrepareRequest {"height": 5895, "view": 0} -2023-12-15T23:43:54.901Z INFO sending Commit {"height": 5895, "view": 0} -2023-12-15T23:43:54.902Z INFO approving block {"height": 5895, "hash": "895d4a650efcaf297d71e5bca9dbea67bd3f894d5d6b35e2709c914c9bfa28ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e1794e1e657f46a129214744a64a0e638763346bc678c656f19d0c269ea3eb6"} -2023-12-15T23:43:54.904Z INFO initializing dbft {"height": 5896, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:54.905Z debug frostfs-node/morph.go:229 new block {"index": 5895} -2023-12-15T23:43:55.430Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5895, "blockHeight": 5895, "took": "6.662302ms"} -2023-12-15T23:43:55.903Z INFO sending PrepareRequest {"height": 5896, "view": 0} -2023-12-15T23:43:55.903Z INFO sending Commit {"height": 5896, "view": 0} -2023-12-15T23:43:55.904Z INFO approving block {"height": 5896, "hash": "6517e5ebbaf7964879124ec1221b9a3ddeb60d8fe22f680a0c7ee5ba490a8dca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "895d4a650efcaf297d71e5bca9dbea67bd3f894d5d6b35e2709c914c9bfa28ca"} -2023-12-15T23:43:55.905Z INFO initializing dbft {"height": 5897, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:55.906Z debug frostfs-node/morph.go:229 new block {"index": 5896} -2023-12-15T23:43:56.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5896, "blockHeight": 5896, "took": "8.310732ms"} -2023-12-15T23:43:56.905Z INFO sending PrepareRequest {"height": 5897, "view": 0} -2023-12-15T23:43:56.905Z INFO sending Commit {"height": 5897, "view": 0} -2023-12-15T23:43:56.906Z INFO approving block {"height": 5897, "hash": "5c45e53d57a198853b0684441b09428d68ff84f1cd32a37cee1c33f109fe1292", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6517e5ebbaf7964879124ec1221b9a3ddeb60d8fe22f680a0c7ee5ba490a8dca"} -2023-12-15T23:43:56.908Z INFO initializing dbft {"height": 5898, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:56.909Z debug frostfs-node/morph.go:229 new block {"index": 5897} -2023-12-15T23:43:57.435Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5897, "blockHeight": 5897, "took": "10.552327ms"} -2023-12-15T23:43:57.907Z INFO sending PrepareRequest {"height": 5898, "view": 0} -2023-12-15T23:43:57.907Z INFO sending Commit {"height": 5898, "view": 0} -2023-12-15T23:43:57.907Z INFO approving block {"height": 5898, "hash": "7d06e463c54ed633e264e86e3b5e6fa41f08907442f72534353287ee326b5685", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c45e53d57a198853b0684441b09428d68ff84f1cd32a37cee1c33f109fe1292"} -2023-12-15T23:43:57.909Z INFO initializing dbft {"height": 5899, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:57.910Z debug frostfs-node/morph.go:229 new block {"index": 5898} -2023-12-15T23:43:58.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5898, "blockHeight": 5898, "took": "7.834582ms"} -2023-12-15T23:43:58.909Z INFO sending PrepareRequest {"height": 5899, "view": 0} -2023-12-15T23:43:58.910Z INFO sending Commit {"height": 5899, "view": 0} -2023-12-15T23:43:58.910Z INFO approving block {"height": 5899, "hash": "536672103005072014acd87a95366d71044bab8a742fac39ac6d4681ab0f80bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d06e463c54ed633e264e86e3b5e6fa41f08907442f72534353287ee326b5685"} -2023-12-15T23:43:58.912Z INFO initializing dbft {"height": 5900, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:58.914Z debug frostfs-node/morph.go:229 new block {"index": 5899} -2023-12-15T23:43:59.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5899, "blockHeight": 5899, "took": "9.825676ms"} -2023-12-15T23:43:59.912Z INFO sending PrepareRequest {"height": 5900, "view": 0} -2023-12-15T23:43:59.912Z INFO sending Commit {"height": 5900, "view": 0} -2023-12-15T23:43:59.913Z INFO approving block {"height": 5900, "hash": "48e352712633c3cfdc40d6ffa4d984dc050d6cc5b1df5e5b33f013f5e6c69ace", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "536672103005072014acd87a95366d71044bab8a742fac39ac6d4681ab0f80bf"} -2023-12-15T23:43:59.915Z INFO initializing dbft {"height": 5901, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:43:59.917Z debug frostfs-node/morph.go:229 new block {"index": 5900} -2023-12-15T23:44:00.434Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5900, "blockHeight": 5900, "took": "7.56864ms"} -2023-12-15T23:44:00.914Z INFO sending PrepareRequest {"height": 5901, "view": 0} -2023-12-15T23:44:00.915Z INFO sending Commit {"height": 5901, "view": 0} -2023-12-15T23:44:00.915Z INFO approving block {"height": 5901, "hash": "5c874b44fe0c0951c4479c3e7b7701920aee1e9f0a0d1b5774a910a25cb3a3aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48e352712633c3cfdc40d6ffa4d984dc050d6cc5b1df5e5b33f013f5e6c69ace"} -2023-12-15T23:44:00.917Z INFO initializing dbft {"height": 5902, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:00.919Z debug frostfs-node/morph.go:229 new block {"index": 5901} -2023-12-15T23:44:01.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5901, "blockHeight": 5901, "took": "8.085586ms"} -2023-12-15T23:44:01.917Z INFO sending PrepareRequest {"height": 5902, "view": 0} -2023-12-15T23:44:01.918Z INFO sending Commit {"height": 5902, "view": 0} -2023-12-15T23:44:01.918Z INFO approving block {"height": 5902, "hash": "eefa0205400bc452b1fda805a115989dbcca0abda3366cd6afca8bf16183d931", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c874b44fe0c0951c4479c3e7b7701920aee1e9f0a0d1b5774a910a25cb3a3aa"} -2023-12-15T23:44:01.921Z INFO initializing dbft {"height": 5903, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:01.922Z debug frostfs-node/morph.go:229 new block {"index": 5902} -2023-12-15T23:44:02.435Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5902, "blockHeight": 5902, "took": "7.068999ms"} -2023-12-15T23:44:02.919Z INFO sending PrepareRequest {"height": 5903, "view": 0} -2023-12-15T23:44:02.920Z INFO sending Commit {"height": 5903, "view": 0} -2023-12-15T23:44:02.920Z INFO approving block {"height": 5903, "hash": "c21a179988cc984e8c1213ccc9addba05cd3b85b2a15a6c3eb09c45eee5d394d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eefa0205400bc452b1fda805a115989dbcca0abda3366cd6afca8bf16183d931"} -2023-12-15T23:44:02.923Z INFO initializing dbft {"height": 5904, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:02.923Z debug frostfs-node/morph.go:229 new block {"index": 5903} -2023-12-15T23:44:03.438Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5903, "blockHeight": 5903, "took": "9.758517ms"} -2023-12-15T23:44:03.921Z INFO sending PrepareRequest {"height": 5904, "view": 0} -2023-12-15T23:44:03.921Z INFO sending Commit {"height": 5904, "view": 0} -2023-12-15T23:44:03.921Z INFO approving block {"height": 5904, "hash": "d86b076e04a23b488a30d8ba5cb3a45c6c55baa4bc320809f4b8ee897d178434", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c21a179988cc984e8c1213ccc9addba05cd3b85b2a15a6c3eb09c45eee5d394d"} -2023-12-15T23:44:03.923Z INFO initializing dbft {"height": 5905, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:03.924Z debug frostfs-node/morph.go:229 new block {"index": 5904} -2023-12-15T23:44:03.930Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 25, "iteration": 1, "error": "no data for 0 iteration in 25 epoch for consumers's trusts"} -2023-12-15T23:44:03.931Z info settlement/calls.go:61 start basic income collection {"epoch": 25} -2023-12-15T23:44:04.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5904, "blockHeight": 5904, "took": "7.186759ms"} -2023-12-15T23:44:04.922Z INFO sending PrepareRequest {"height": 5905, "view": 0} -2023-12-15T23:44:04.922Z INFO sending Commit {"height": 5905, "view": 0} -2023-12-15T23:44:04.923Z INFO approving block {"height": 5905, "hash": "2e66d060ac88fc75c593479e6a865fcd14cf1f6a30db7cb07d8d9bdf619a0950", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d86b076e04a23b488a30d8ba5cb3a45c6c55baa4bc320809f4b8ee897d178434"} -2023-12-15T23:44:04.924Z INFO initializing dbft {"height": 5906, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:04.926Z debug frostfs-node/morph.go:229 new block {"index": 5905} -2023-12-15T23:44:05.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5905, "blockHeight": 5905, "took": "9.068875ms"} -2023-12-15T23:44:05.924Z INFO sending PrepareRequest {"height": 5906, "view": 0} -2023-12-15T23:44:05.924Z INFO sending Commit {"height": 5906, "view": 0} -2023-12-15T23:44:05.925Z INFO approving block {"height": 5906, "hash": "5131726011002b94a173edd125f2991390f7427701104f771c6d86171520e7bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e66d060ac88fc75c593479e6a865fcd14cf1f6a30db7cb07d8d9bdf619a0950"} -2023-12-15T23:44:05.926Z INFO initializing dbft {"height": 5907, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:05.927Z debug frostfs-node/morph.go:229 new block {"index": 5906} -2023-12-15T23:44:06.438Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5906, "blockHeight": 5906, "took": "6.835524ms"} -2023-12-15T23:44:06.926Z INFO sending PrepareRequest {"height": 5907, "view": 0} -2023-12-15T23:44:06.926Z INFO sending Commit {"height": 5907, "view": 0} -2023-12-15T23:44:06.926Z INFO approving block {"height": 5907, "hash": "a2b1c0643b47fe1a135f99d43cfe90037399d8afd762f09028a849c11198f21f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5131726011002b94a173edd125f2991390f7427701104f771c6d86171520e7bf"} -2023-12-15T23:44:06.928Z INFO initializing dbft {"height": 5908, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:06.929Z debug frostfs-node/morph.go:229 new block {"index": 5907} -2023-12-15T23:44:07.439Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5907, "blockHeight": 5907, "took": "7.459138ms"} -2023-12-15T23:44:07.927Z INFO sending PrepareRequest {"height": 5908, "view": 0} -2023-12-15T23:44:07.928Z INFO sending Commit {"height": 5908, "view": 0} -2023-12-15T23:44:07.928Z INFO approving block {"height": 5908, "hash": "6bcada02a58a069d1a78ef9a5a04338c8df8bc57b765b1a93e56115f6a73e4dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2b1c0643b47fe1a135f99d43cfe90037399d8afd762f09028a849c11198f21f"} -2023-12-15T23:44:07.930Z INFO initializing dbft {"height": 5909, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:07.931Z debug frostfs-node/morph.go:229 new block {"index": 5908} -2023-12-15T23:44:08.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5908, "blockHeight": 5908, "took": "8.728908ms"} -2023-12-15T23:44:08.929Z INFO sending PrepareRequest {"height": 5909, "view": 0} -2023-12-15T23:44:08.929Z INFO sending Commit {"height": 5909, "view": 0} -2023-12-15T23:44:08.930Z INFO approving block {"height": 5909, "hash": "801f7862552497a625c6c5ffc32bb77fefde2c1c5143037830c626f43fe23470", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bcada02a58a069d1a78ef9a5a04338c8df8bc57b765b1a93e56115f6a73e4dc"} -2023-12-15T23:44:08.932Z INFO initializing dbft {"height": 5910, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:08.933Z debug frostfs-node/morph.go:229 new block {"index": 5909} -2023-12-15T23:44:09.439Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5909, "blockHeight": 5909, "took": "5.794121ms"} -2023-12-15T23:44:09.931Z INFO sending PrepareRequest {"height": 5910, "view": 0} -2023-12-15T23:44:09.931Z INFO sending Commit {"height": 5910, "view": 0} -2023-12-15T23:44:09.931Z INFO approving block {"height": 5910, "hash": "7165fb4147665295e9b201232c3750da781188792737d57adbc1af3fd7e64800", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "801f7862552497a625c6c5ffc32bb77fefde2c1c5143037830c626f43fe23470"} -2023-12-15T23:44:09.933Z INFO initializing dbft {"height": 5911, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:09.933Z debug frostfs-node/morph.go:229 new block {"index": 5910} -2023-12-15T23:44:10.442Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5910, "blockHeight": 5910, "took": "7.750093ms"} -2023-12-15T23:44:10.932Z INFO sending PrepareRequest {"height": 5911, "view": 0} -2023-12-15T23:44:10.932Z INFO sending Commit {"height": 5911, "view": 0} -2023-12-15T23:44:10.933Z INFO approving block {"height": 5911, "hash": "2fc7f00a6463c8e869d462aeca12b7ceb9f3421d1ec5b8635d32cc8cc34fa8ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7165fb4147665295e9b201232c3750da781188792737d57adbc1af3fd7e64800"} -2023-12-15T23:44:10.934Z INFO initializing dbft {"height": 5912, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:10.935Z debug frostfs-node/morph.go:229 new block {"index": 5911} -2023-12-15T23:44:11.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5911, "blockHeight": 5911, "took": "9.243908ms"} -2023-12-15T23:44:11.934Z INFO sending PrepareRequest {"height": 5912, "view": 0} -2023-12-15T23:44:11.934Z INFO sending Commit {"height": 5912, "view": 0} -2023-12-15T23:44:11.934Z INFO approving block {"height": 5912, "hash": "0ccc034d21cc5ee5f2e9ac987c38ec8231dc37a3e9645645564af21c2fa60ec1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fc7f00a6463c8e869d462aeca12b7ceb9f3421d1ec5b8635d32cc8cc34fa8ef"} -2023-12-15T23:44:11.935Z INFO initializing dbft {"height": 5913, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:11.936Z debug frostfs-node/morph.go:229 new block {"index": 5912} -2023-12-15T23:44:12.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5912, "blockHeight": 5912, "took": "11.607879ms"} -2023-12-15T23:44:12.936Z INFO sending PrepareRequest {"height": 5913, "view": 0} -2023-12-15T23:44:12.937Z INFO sending Commit {"height": 5913, "view": 0} -2023-12-15T23:44:12.937Z INFO approving block {"height": 5913, "hash": "dee7767fbd23b9905328fc3297d14f15f366c77dcda4f9f75c9da8f67c5cf1dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ccc034d21cc5ee5f2e9ac987c38ec8231dc37a3e9645645564af21c2fa60ec1"} -2023-12-15T23:44:12.940Z INFO initializing dbft {"height": 5914, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:12.941Z debug frostfs-node/morph.go:229 new block {"index": 5913} -2023-12-15T23:44:13.445Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5913, "blockHeight": 5913, "took": "9.625621ms"} -2023-12-15T23:44:13.939Z INFO sending PrepareRequest {"height": 5914, "view": 0} -2023-12-15T23:44:13.939Z INFO sending Commit {"height": 5914, "view": 0} -2023-12-15T23:44:13.940Z INFO approving block {"height": 5914, "hash": "19d84a8233e4439da14198705b5d1bcd01e6e3b412097d644756c12836377007", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dee7767fbd23b9905328fc3297d14f15f366c77dcda4f9f75c9da8f67c5cf1dc"} -2023-12-15T23:44:13.942Z INFO initializing dbft {"height": 5915, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:13.943Z debug frostfs-node/morph.go:229 new block {"index": 5914} -2023-12-15T23:44:14.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5914, "blockHeight": 5914, "took": "9.188338ms"} -2023-12-15T23:44:14.941Z INFO sending PrepareRequest {"height": 5915, "view": 0} -2023-12-15T23:44:14.941Z INFO sending Commit {"height": 5915, "view": 0} -2023-12-15T23:44:14.942Z INFO approving block {"height": 5915, "hash": "8c2e0ea2b5289cf33e36f9fb0e8161acd7ed98d5642f6e80c75e9c44a90a3315", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19d84a8233e4439da14198705b5d1bcd01e6e3b412097d644756c12836377007"} -2023-12-15T23:44:14.943Z INFO initializing dbft {"height": 5916, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:14.944Z debug frostfs-node/morph.go:229 new block {"index": 5915} -2023-12-15T23:44:15.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5915, "blockHeight": 5915, "took": "6.838814ms"} -2023-12-15T23:44:15.942Z INFO sending PrepareRequest {"height": 5916, "view": 0} -2023-12-15T23:44:15.943Z INFO sending Commit {"height": 5916, "view": 0} -2023-12-15T23:44:15.943Z INFO approving block {"height": 5916, "hash": "c7de95d370872a00a630e9e615ef6d6e57dde9cf0afbd5a7711204d7d991c6d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c2e0ea2b5289cf33e36f9fb0e8161acd7ed98d5642f6e80c75e9c44a90a3315"} -2023-12-15T23:44:15.944Z INFO initializing dbft {"height": 5917, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:15.945Z debug frostfs-node/morph.go:229 new block {"index": 5916} -2023-12-15T23:44:16.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5916, "blockHeight": 5916, "took": "6.572291ms"} -2023-12-15T23:44:16.944Z INFO sending PrepareRequest {"height": 5917, "view": 0} -2023-12-15T23:44:16.945Z INFO sending Commit {"height": 5917, "view": 0} -2023-12-15T23:44:16.945Z INFO approving block {"height": 5917, "hash": "290052b910657b810cefa47250bf436fdad2f1e86752450901e8cd1e072bc32d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7de95d370872a00a630e9e615ef6d6e57dde9cf0afbd5a7711204d7d991c6d9"} -2023-12-15T23:44:16.946Z INFO initializing dbft {"height": 5918, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:16.947Z debug frostfs-node/morph.go:229 new block {"index": 5917} -2023-12-15T23:44:16.951Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:44:16.952Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:44:16.952Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:44:17.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5917, "blockHeight": 5917, "took": "5.999304ms"} -2023-12-15T23:44:17.946Z INFO sending PrepareRequest {"height": 5918, "view": 0} -2023-12-15T23:44:17.946Z INFO sending Commit {"height": 5918, "view": 0} -2023-12-15T23:44:17.946Z INFO approving block {"height": 5918, "hash": "7415019b0aff8c96e760bdfdfae467f5a90317fe65db7ef56b94ec836c1b7884", "tx_count": 2, "merkle": "536f1609163b286138d56c376607f3b2d7b80ba764c2fd3875c37a02797c834c", "prev": "290052b910657b810cefa47250bf436fdad2f1e86752450901e8cd1e072bc32d"} -2023-12-15T23:44:17.948Z INFO runtime log {"tx": "f5f0c8eabbb057581e59de55378e5e0a74eb256649e8c2d0f6f51d5bc746daa8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:44:17.948Z INFO runtime log {"tx": "f5f0c8eabbb057581e59de55378e5e0a74eb256649e8c2d0f6f51d5bc746daa8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:44:17.949Z INFO initializing dbft {"height": 5919, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:17.951Z debug frostfs-node/morph.go:229 new block {"index": 5918} -2023-12-15T23:44:18.452Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5918, "blockHeight": 5918, "took": "11.027309ms"} -2023-12-15T23:44:18.947Z INFO sending PrepareRequest {"height": 5919, "view": 0} -2023-12-15T23:44:18.947Z INFO sending Commit {"height": 5919, "view": 0} -2023-12-15T23:44:18.948Z INFO approving block {"height": 5919, "hash": "cc559fabdc5a5f030e286b1c1a5cf4d0d2c09f6d506dcf3f1ddd6a40aaae742b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7415019b0aff8c96e760bdfdfae467f5a90317fe65db7ef56b94ec836c1b7884"} -2023-12-15T23:44:18.949Z INFO initializing dbft {"height": 5920, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:18.950Z debug frostfs-node/morph.go:229 new block {"index": 5919} -2023-12-15T23:44:19.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5919, "blockHeight": 5919, "took": "7.764043ms"} -2023-12-15T23:44:19.949Z INFO sending PrepareRequest {"height": 5920, "view": 0} -2023-12-15T23:44:19.949Z INFO sending Commit {"height": 5920, "view": 0} -2023-12-15T23:44:19.950Z INFO approving block {"height": 5920, "hash": "c20c5a30e61411836275d45681dc2e16493dafb84281438ff2ac8a28e689c632", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc559fabdc5a5f030e286b1c1a5cf4d0d2c09f6d506dcf3f1ddd6a40aaae742b"} -2023-12-15T23:44:19.951Z INFO initializing dbft {"height": 5921, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:19.952Z debug frostfs-node/morph.go:229 new block {"index": 5920} -2023-12-15T23:44:20.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5920, "blockHeight": 5920, "took": "7.606511ms"} -2023-12-15T23:44:20.951Z INFO sending PrepareRequest {"height": 5921, "view": 0} -2023-12-15T23:44:20.951Z INFO sending Commit {"height": 5921, "view": 0} -2023-12-15T23:44:20.951Z INFO approving block {"height": 5921, "hash": "7903a21a2f15512bc4520fe4eefe5453d28141c34787c44f86e9ef7b7f71a922", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c20c5a30e61411836275d45681dc2e16493dafb84281438ff2ac8a28e689c632"} -2023-12-15T23:44:20.953Z INFO initializing dbft {"height": 5922, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:20.953Z debug frostfs-node/morph.go:229 new block {"index": 5921} -2023-12-15T23:44:21.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5921, "blockHeight": 5921, "took": "6.709476ms"} -2023-12-15T23:44:21.953Z INFO sending PrepareRequest {"height": 5922, "view": 0} -2023-12-15T23:44:21.953Z INFO sending Commit {"height": 5922, "view": 0} -2023-12-15T23:44:21.953Z INFO approving block {"height": 5922, "hash": "cf9427d80cafce5a612707331a407d6ddddfbde17e0865f2ca909590192232fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7903a21a2f15512bc4520fe4eefe5453d28141c34787c44f86e9ef7b7f71a922"} -2023-12-15T23:44:21.954Z INFO initializing dbft {"height": 5923, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:21.955Z debug frostfs-node/morph.go:229 new block {"index": 5922} -2023-12-15T23:44:22.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5922, "blockHeight": 5922, "took": "6.612065ms"} -2023-12-15T23:44:22.954Z INFO sending PrepareRequest {"height": 5923, "view": 0} -2023-12-15T23:44:22.954Z INFO sending Commit {"height": 5923, "view": 0} -2023-12-15T23:44:22.955Z INFO approving block {"height": 5923, "hash": "d376e68cd4c3683f26ebeb8bab5122d96169520013a5f82aa6737469f942a33c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf9427d80cafce5a612707331a407d6ddddfbde17e0865f2ca909590192232fa"} -2023-12-15T23:44:22.956Z INFO initializing dbft {"height": 5924, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:22.957Z debug frostfs-node/morph.go:229 new block {"index": 5923} -2023-12-15T23:44:23.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5923, "blockHeight": 5923, "took": "5.610843ms"} -2023-12-15T23:44:23.956Z INFO sending PrepareRequest {"height": 5924, "view": 0} -2023-12-15T23:44:23.956Z INFO sending Commit {"height": 5924, "view": 0} -2023-12-15T23:44:23.957Z INFO approving block {"height": 5924, "hash": "38e49d6f40d52ca774fc1b5165e24c24812439fcb605a09bd342d452e511d012", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d376e68cd4c3683f26ebeb8bab5122d96169520013a5f82aa6737469f942a33c"} -2023-12-15T23:44:23.958Z INFO initializing dbft {"height": 5925, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:23.960Z debug frostfs-node/morph.go:229 new block {"index": 5924} -2023-12-15T23:44:24.452Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5924, "blockHeight": 5924, "took": "7.354496ms"} -2023-12-15T23:44:24.958Z INFO sending PrepareRequest {"height": 5925, "view": 0} -2023-12-15T23:44:24.958Z INFO sending Commit {"height": 5925, "view": 0} -2023-12-15T23:44:24.959Z INFO approving block {"height": 5925, "hash": "f332eb427816e06a1468c371e61b9a88d72ac2509ab36176733327eb3869136b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38e49d6f40d52ca774fc1b5165e24c24812439fcb605a09bd342d452e511d012"} -2023-12-15T23:44:24.960Z INFO initializing dbft {"height": 5926, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:24.961Z debug frostfs-node/morph.go:229 new block {"index": 5925} -2023-12-15T23:44:25.452Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5925, "blockHeight": 5925, "took": "5.977988ms"} -2023-12-15T23:44:25.960Z INFO sending PrepareRequest {"height": 5926, "view": 0} -2023-12-15T23:44:25.960Z INFO sending Commit {"height": 5926, "view": 0} -2023-12-15T23:44:25.960Z INFO approving block {"height": 5926, "hash": "74d1ea0f4ae29ee90700ec384efd06931a96c24008a400810b58c75e8b5bb042", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f332eb427816e06a1468c371e61b9a88d72ac2509ab36176733327eb3869136b"} -2023-12-15T23:44:25.962Z INFO initializing dbft {"height": 5927, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:25.963Z debug frostfs-node/morph.go:229 new block {"index": 5926} -2023-12-15T23:44:26.452Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5926, "blockHeight": 5926, "took": "5.260883ms"} -2023-12-15T23:44:26.961Z INFO sending PrepareRequest {"height": 5927, "view": 0} -2023-12-15T23:44:26.962Z INFO sending Commit {"height": 5927, "view": 0} -2023-12-15T23:44:26.962Z INFO approving block {"height": 5927, "hash": "61d30480b126710744979cb8acbfe76c3a31ae238443d986424cc1a8d6b26ee0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74d1ea0f4ae29ee90700ec384efd06931a96c24008a400810b58c75e8b5bb042"} -2023-12-15T23:44:26.964Z INFO initializing dbft {"height": 5928, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:26.965Z debug frostfs-node/morph.go:229 new block {"index": 5927} -2023-12-15T23:44:27.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5927, "blockHeight": 5927, "took": "5.945603ms"} -2023-12-15T23:44:27.963Z INFO sending PrepareRequest {"height": 5928, "view": 0} -2023-12-15T23:44:27.963Z INFO sending Commit {"height": 5928, "view": 0} -2023-12-15T23:44:27.963Z INFO approving block {"height": 5928, "hash": "2748d7793a0dd3b5ba4fbe9ccdf3e60c6d16fecd251a53eb9084041700b1e95b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61d30480b126710744979cb8acbfe76c3a31ae238443d986424cc1a8d6b26ee0"} -2023-12-15T23:44:27.964Z INFO initializing dbft {"height": 5929, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:27.965Z debug frostfs-node/morph.go:229 new block {"index": 5928} -2023-12-15T23:44:28.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5928, "blockHeight": 5928, "took": "6.423268ms"} -2023-12-15T23:44:28.965Z INFO sending PrepareRequest {"height": 5929, "view": 0} -2023-12-15T23:44:28.966Z INFO sending Commit {"height": 5929, "view": 0} -2023-12-15T23:44:28.966Z INFO approving block {"height": 5929, "hash": "a1956301075026ac829f2be4022cfff07140d199495ce61630fbbb6866e32234", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2748d7793a0dd3b5ba4fbe9ccdf3e60c6d16fecd251a53eb9084041700b1e95b"} -2023-12-15T23:44:28.968Z INFO initializing dbft {"height": 5930, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:28.969Z debug frostfs-node/morph.go:229 new block {"index": 5929} -2023-12-15T23:44:29.457Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5929, "blockHeight": 5929, "took": "6.404667ms"} -2023-12-15T23:44:29.968Z INFO sending PrepareRequest {"height": 5930, "view": 0} -2023-12-15T23:44:29.968Z INFO sending Commit {"height": 5930, "view": 0} -2023-12-15T23:44:29.969Z INFO approving block {"height": 5930, "hash": "2b10d2427b6df095222271c0ed9c2a0c186ec9d16ea8d4518711a5bc0ea60073", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1956301075026ac829f2be4022cfff07140d199495ce61630fbbb6866e32234"} -2023-12-15T23:44:29.970Z INFO initializing dbft {"height": 5931, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:29.970Z debug frostfs-node/morph.go:229 new block {"index": 5930} -2023-12-15T23:44:30.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5930, "blockHeight": 5930, "took": "6.567072ms"} -2023-12-15T23:44:30.970Z INFO sending PrepareRequest {"height": 5931, "view": 0} -2023-12-15T23:44:30.971Z INFO sending Commit {"height": 5931, "view": 0} -2023-12-15T23:44:30.971Z INFO approving block {"height": 5931, "hash": "9965dd428d5e50c1591daf0df716297b1c19d3bf3ffefd8b41aee57ea764ef0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b10d2427b6df095222271c0ed9c2a0c186ec9d16ea8d4518711a5bc0ea60073"} -2023-12-15T23:44:30.973Z INFO initializing dbft {"height": 5932, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:30.974Z debug frostfs-node/morph.go:229 new block {"index": 5931} -2023-12-15T23:44:31.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5931, "blockHeight": 5931, "took": "6.753202ms"} -2023-12-15T23:44:31.972Z INFO sending PrepareRequest {"height": 5932, "view": 0} -2023-12-15T23:44:31.973Z INFO sending Commit {"height": 5932, "view": 0} -2023-12-15T23:44:31.973Z INFO approving block {"height": 5932, "hash": "ff6db787bd50b2b552d63e181ab2fa42c7844a753197818bb7d4f8155ee6e476", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9965dd428d5e50c1591daf0df716297b1c19d3bf3ffefd8b41aee57ea764ef0f"} -2023-12-15T23:44:31.975Z INFO initializing dbft {"height": 5933, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:31.975Z debug frostfs-node/morph.go:229 new block {"index": 5932} -2023-12-15T23:44:32.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5932, "blockHeight": 5932, "took": "5.2495ms"} -2023-12-15T23:44:32.974Z INFO sending PrepareRequest {"height": 5933, "view": 0} -2023-12-15T23:44:32.974Z INFO sending Commit {"height": 5933, "view": 0} -2023-12-15T23:44:32.974Z INFO approving block {"height": 5933, "hash": "7e7b444eb5599da503edefbe48fa8490f963f41d3e82b614ec16d711e2e0e2b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff6db787bd50b2b552d63e181ab2fa42c7844a753197818bb7d4f8155ee6e476"} -2023-12-15T23:44:32.976Z INFO initializing dbft {"height": 5934, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:32.977Z debug frostfs-node/morph.go:229 new block {"index": 5933} -2023-12-15T23:44:33.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5933, "blockHeight": 5933, "took": "7.534613ms"} -2023-12-15T23:44:33.975Z INFO sending PrepareRequest {"height": 5934, "view": 0} -2023-12-15T23:44:33.975Z INFO sending Commit {"height": 5934, "view": 0} -2023-12-15T23:44:33.976Z INFO approving block {"height": 5934, "hash": "f33767205aa66af3b79eabfaee24026ac856802fe437029f96f4c62e3674ce91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e7b444eb5599da503edefbe48fa8490f963f41d3e82b614ec16d711e2e0e2b8"} -2023-12-15T23:44:33.977Z INFO initializing dbft {"height": 5935, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:33.978Z debug frostfs-node/morph.go:229 new block {"index": 5934} -2023-12-15T23:44:34.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5934, "blockHeight": 5934, "took": "9.109416ms"} -2023-12-15T23:44:34.977Z INFO sending PrepareRequest {"height": 5935, "view": 0} -2023-12-15T23:44:34.977Z INFO sending Commit {"height": 5935, "view": 0} -2023-12-15T23:44:34.977Z INFO approving block {"height": 5935, "hash": "499ac112b55c5a5cfb130eaee67045cc1eebbfe76b1f2a2b36d1b357da7127ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f33767205aa66af3b79eabfaee24026ac856802fe437029f96f4c62e3674ce91"} -2023-12-15T23:44:34.978Z INFO initializing dbft {"height": 5936, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:34.979Z debug frostfs-node/morph.go:229 new block {"index": 5935} -2023-12-15T23:44:35.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5935, "blockHeight": 5935, "took": "5.577463ms"} -2023-12-15T23:44:35.979Z INFO sending PrepareRequest {"height": 5936, "view": 0} -2023-12-15T23:44:35.979Z INFO sending Commit {"height": 5936, "view": 0} -2023-12-15T23:44:35.980Z INFO approving block {"height": 5936, "hash": "52f27eaf8951642360d07d4d0454008240020e29e0e6a608af2937a3aca63c52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "499ac112b55c5a5cfb130eaee67045cc1eebbfe76b1f2a2b36d1b357da7127ee"} -2023-12-15T23:44:35.982Z INFO initializing dbft {"height": 5937, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:35.983Z debug frostfs-node/morph.go:229 new block {"index": 5936} -2023-12-15T23:44:36.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5936, "blockHeight": 5936, "took": "6.049578ms"} -2023-12-15T23:44:36.982Z INFO sending PrepareRequest {"height": 5937, "view": 0} -2023-12-15T23:44:36.982Z INFO sending Commit {"height": 5937, "view": 0} -2023-12-15T23:44:36.982Z INFO approving block {"height": 5937, "hash": "ca7186572b483c5d0aface2afae06f96129f4af708927bd593db1e8da5bdc74d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52f27eaf8951642360d07d4d0454008240020e29e0e6a608af2937a3aca63c52"} -2023-12-15T23:44:36.983Z INFO initializing dbft {"height": 5938, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:36.984Z debug frostfs-node/morph.go:229 new block {"index": 5937} -2023-12-15T23:44:37.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5937, "blockHeight": 5937, "took": "4.88681ms"} -2023-12-15T23:44:37.984Z INFO sending PrepareRequest {"height": 5938, "view": 0} -2023-12-15T23:44:37.984Z INFO sending Commit {"height": 5938, "view": 0} -2023-12-15T23:44:37.984Z INFO approving block {"height": 5938, "hash": "240c0a3ea763fcd3b266356230897ef9193efcc7b1949c2faa59c7fd2c768983", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca7186572b483c5d0aface2afae06f96129f4af708927bd593db1e8da5bdc74d"} -2023-12-15T23:44:37.986Z INFO initializing dbft {"height": 5939, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:37.987Z debug frostfs-node/morph.go:229 new block {"index": 5938} -2023-12-15T23:44:38.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5938, "blockHeight": 5938, "took": "9.58392ms"} -2023-12-15T23:44:38.986Z INFO sending PrepareRequest {"height": 5939, "view": 0} -2023-12-15T23:44:38.986Z INFO sending Commit {"height": 5939, "view": 0} -2023-12-15T23:44:38.986Z INFO approving block {"height": 5939, "hash": "58807aa733cef6b963e1962c0c36062648a34aeea4c2f5cf5a162dff54a39bc8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "240c0a3ea763fcd3b266356230897ef9193efcc7b1949c2faa59c7fd2c768983"} -2023-12-15T23:44:38.987Z INFO initializing dbft {"height": 5940, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:38.988Z debug frostfs-node/morph.go:229 new block {"index": 5939} -2023-12-15T23:44:39.465Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5939, "blockHeight": 5939, "took": "5.671777ms"} -2023-12-15T23:44:39.987Z INFO sending PrepareRequest {"height": 5940, "view": 0} -2023-12-15T23:44:39.988Z INFO sending Commit {"height": 5940, "view": 0} -2023-12-15T23:44:39.988Z INFO approving block {"height": 5940, "hash": "fdb354c2ea893cc59cf5ddcb48639c606a268065d737fe6e5bfb2a2db5c1b1a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58807aa733cef6b963e1962c0c36062648a34aeea4c2f5cf5a162dff54a39bc8"} -2023-12-15T23:44:39.989Z INFO initializing dbft {"height": 5941, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:39.990Z debug frostfs-node/morph.go:229 new block {"index": 5940} -2023-12-15T23:44:40.467Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5940, "blockHeight": 5940, "took": "7.138399ms"} -2023-12-15T23:44:40.989Z INFO sending PrepareRequest {"height": 5941, "view": 0} -2023-12-15T23:44:40.989Z INFO sending Commit {"height": 5941, "view": 0} -2023-12-15T23:44:40.990Z INFO approving block {"height": 5941, "hash": "ec346ca99dd328724d583a14e32cc49afcf328f57b6a383af200b664c277511a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdb354c2ea893cc59cf5ddcb48639c606a268065d737fe6e5bfb2a2db5c1b1a2"} -2023-12-15T23:44:40.991Z INFO initializing dbft {"height": 5942, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:40.992Z debug frostfs-node/morph.go:229 new block {"index": 5941} -2023-12-15T23:44:41.465Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5941, "blockHeight": 5941, "took": "5.005535ms"} -2023-12-15T23:44:41.991Z INFO sending PrepareRequest {"height": 5942, "view": 0} -2023-12-15T23:44:41.991Z INFO sending Commit {"height": 5942, "view": 0} -2023-12-15T23:44:41.992Z INFO approving block {"height": 5942, "hash": "f6b552f0da0d12af04683a7c250910a8532c084cf40ae78dbf12b944c725bc4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec346ca99dd328724d583a14e32cc49afcf328f57b6a383af200b664c277511a"} -2023-12-15T23:44:41.993Z INFO initializing dbft {"height": 5943, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:41.993Z debug frostfs-node/morph.go:229 new block {"index": 5942} -2023-12-15T23:44:42.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5942, "blockHeight": 5942, "took": "6.568328ms"} -2023-12-15T23:44:42.992Z INFO sending PrepareRequest {"height": 5943, "view": 0} -2023-12-15T23:44:42.992Z INFO sending Commit {"height": 5943, "view": 0} -2023-12-15T23:44:42.993Z INFO approving block {"height": 5943, "hash": "3b093c395dc2146355d9c7fb036966023cd9a4ee6e6b7681b85c141a182c1cc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6b552f0da0d12af04683a7c250910a8532c084cf40ae78dbf12b944c725bc4c"} -2023-12-15T23:44:42.994Z INFO initializing dbft {"height": 5944, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:42.995Z debug frostfs-node/morph.go:229 new block {"index": 5943} -2023-12-15T23:44:43.469Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5943, "blockHeight": 5943, "took": "7.42297ms"} -2023-12-15T23:44:43.995Z INFO sending PrepareRequest {"height": 5944, "view": 0} -2023-12-15T23:44:43.995Z INFO sending Commit {"height": 5944, "view": 0} -2023-12-15T23:44:43.995Z INFO approving block {"height": 5944, "hash": "172a0fdb3a9ff024d182d46ce584336b657b00c5059ed3aca2ad1bc436ef50b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b093c395dc2146355d9c7fb036966023cd9a4ee6e6b7681b85c141a182c1cc5"} -2023-12-15T23:44:43.997Z INFO initializing dbft {"height": 5945, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:43.998Z debug frostfs-node/morph.go:229 new block {"index": 5944} -2023-12-15T23:44:44.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5944, "blockHeight": 5944, "took": "8.499334ms"} -2023-12-15T23:44:44.997Z INFO sending PrepareRequest {"height": 5945, "view": 0} -2023-12-15T23:44:44.997Z INFO sending Commit {"height": 5945, "view": 0} -2023-12-15T23:44:44.997Z INFO approving block {"height": 5945, "hash": "269f15335e3bbe53ffa6f6c3c932bad6e06585f55d2aaa7fd1e9aa5d771a41b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "172a0fdb3a9ff024d182d46ce584336b657b00c5059ed3aca2ad1bc436ef50b8"} -2023-12-15T23:44:44.998Z INFO initializing dbft {"height": 5946, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:44.999Z debug frostfs-node/morph.go:229 new block {"index": 5945} -2023-12-15T23:44:45.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5945, "blockHeight": 5945, "took": "9.785405ms"} -2023-12-15T23:44:45.998Z INFO sending PrepareRequest {"height": 5946, "view": 0} -2023-12-15T23:44:45.999Z INFO sending Commit {"height": 5946, "view": 0} -2023-12-15T23:44:45.999Z INFO approving block {"height": 5946, "hash": "3f7d0d951acad79524146afbc3a5126b7ca893a649a306c436b3065bbe450fc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "269f15335e3bbe53ffa6f6c3c932bad6e06585f55d2aaa7fd1e9aa5d771a41b1"} -2023-12-15T23:44:46.000Z INFO initializing dbft {"height": 5947, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:46.001Z debug frostfs-node/morph.go:229 new block {"index": 5946} -2023-12-15T23:44:46.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5946, "blockHeight": 5946, "took": "7.091921ms"} -2023-12-15T23:44:47.000Z INFO sending PrepareRequest {"height": 5947, "view": 0} -2023-12-15T23:44:47.000Z INFO sending Commit {"height": 5947, "view": 0} -2023-12-15T23:44:47.001Z INFO approving block {"height": 5947, "hash": "16b1c9a5413fc8d038157410b20acccf3a4efa1419efa14a158fea210b46a84d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f7d0d951acad79524146afbc3a5126b7ca893a649a306c436b3065bbe450fc4"} -2023-12-15T23:44:47.002Z INFO initializing dbft {"height": 5948, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:47.003Z debug frostfs-node/morph.go:229 new block {"index": 5947} -2023-12-15T23:44:47.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5947, "blockHeight": 5947, "took": "9.59377ms"} -2023-12-15T23:44:48.002Z INFO sending PrepareRequest {"height": 5948, "view": 0} -2023-12-15T23:44:48.002Z INFO sending Commit {"height": 5948, "view": 0} -2023-12-15T23:44:48.002Z INFO approving block {"height": 5948, "hash": "0e1a2b7dcd97290e20b500abb17724635637cffb13447bf7e7f9ff00a0b7b440", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16b1c9a5413fc8d038157410b20acccf3a4efa1419efa14a158fea210b46a84d"} -2023-12-15T23:44:48.004Z INFO initializing dbft {"height": 5949, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:48.005Z debug frostfs-node/morph.go:229 new block {"index": 5948} -2023-12-15T23:44:48.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5948, "blockHeight": 5948, "took": "5.225985ms"} -2023-12-15T23:44:49.004Z INFO sending PrepareRequest {"height": 5949, "view": 0} -2023-12-15T23:44:49.004Z INFO sending Commit {"height": 5949, "view": 0} -2023-12-15T23:44:49.005Z INFO approving block {"height": 5949, "hash": "7aaa0ffa631edf54ff9217c1e4df3a61c20dda1152767c46a8dd8e38c46be6f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e1a2b7dcd97290e20b500abb17724635637cffb13447bf7e7f9ff00a0b7b440"} -2023-12-15T23:44:49.006Z INFO initializing dbft {"height": 5950, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:49.007Z debug frostfs-node/morph.go:229 new block {"index": 5949} -2023-12-15T23:44:49.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5949, "blockHeight": 5949, "took": "5.844891ms"} -2023-12-15T23:44:50.007Z INFO sending PrepareRequest {"height": 5950, "view": 0} -2023-12-15T23:44:50.007Z INFO sending Commit {"height": 5950, "view": 0} -2023-12-15T23:44:50.008Z INFO approving block {"height": 5950, "hash": "bae749091647e8072dcaf3d72224194e7c5e74155225d482e57495f407118514", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7aaa0ffa631edf54ff9217c1e4df3a61c20dda1152767c46a8dd8e38c46be6f2"} -2023-12-15T23:44:50.010Z INFO initializing dbft {"height": 5951, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:50.011Z debug frostfs-node/morph.go:229 new block {"index": 5950} -2023-12-15T23:44:50.475Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5950, "blockHeight": 5950, "took": "8.848234ms"} -2023-12-15T23:44:51.009Z INFO sending PrepareRequest {"height": 5951, "view": 0} -2023-12-15T23:44:51.009Z INFO sending Commit {"height": 5951, "view": 0} -2023-12-15T23:44:51.009Z INFO approving block {"height": 5951, "hash": "37816ed32bcaecae22008b4d363b68ef0456a10f56d6d6309e0fc1a9158ab0dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bae749091647e8072dcaf3d72224194e7c5e74155225d482e57495f407118514"} -2023-12-15T23:44:51.010Z INFO initializing dbft {"height": 5952, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:51.011Z debug frostfs-node/morph.go:229 new block {"index": 5951} -2023-12-15T23:44:51.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5951, "blockHeight": 5951, "took": "6.660305ms"} -2023-12-15T23:44:52.010Z INFO sending PrepareRequest {"height": 5952, "view": 0} -2023-12-15T23:44:52.011Z INFO sending Commit {"height": 5952, "view": 0} -2023-12-15T23:44:52.011Z INFO approving block {"height": 5952, "hash": "edc4799f9f80c49f992aac591c59c875da1717800fa070cb75c44d67f0bb02a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37816ed32bcaecae22008b4d363b68ef0456a10f56d6d6309e0fc1a9158ab0dd"} -2023-12-15T23:44:52.012Z INFO initializing dbft {"height": 5953, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:52.013Z debug frostfs-node/morph.go:229 new block {"index": 5952} -2023-12-15T23:44:52.476Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5952, "blockHeight": 5952, "took": "8.129238ms"} -2023-12-15T23:44:53.012Z INFO sending PrepareRequest {"height": 5953, "view": 0} -2023-12-15T23:44:53.013Z INFO sending Commit {"height": 5953, "view": 0} -2023-12-15T23:44:53.013Z INFO approving block {"height": 5953, "hash": "8d8e0c2174a7720aaa6954af57e4ded622dff015342cd0c729c5bd8b0c93187f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edc4799f9f80c49f992aac591c59c875da1717800fa070cb75c44d67f0bb02a3"} -2023-12-15T23:44:53.015Z INFO initializing dbft {"height": 5954, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:53.015Z debug frostfs-node/morph.go:229 new block {"index": 5953} -2023-12-15T23:44:53.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5953, "blockHeight": 5953, "took": "5.308772ms"} -2023-12-15T23:44:54.014Z INFO sending PrepareRequest {"height": 5954, "view": 0} -2023-12-15T23:44:54.014Z INFO sending Commit {"height": 5954, "view": 0} -2023-12-15T23:44:54.015Z INFO approving block {"height": 5954, "hash": "1ea59584c6cc6a2cc2a7e146b16b603211ebed41819e271396e19877a71ddb77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d8e0c2174a7720aaa6954af57e4ded622dff015342cd0c729c5bd8b0c93187f"} -2023-12-15T23:44:54.016Z INFO initializing dbft {"height": 5955, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:54.017Z debug frostfs-node/morph.go:229 new block {"index": 5954} -2023-12-15T23:44:54.476Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5954, "blockHeight": 5954, "took": "6.946564ms"} -2023-12-15T23:44:55.017Z INFO sending PrepareRequest {"height": 5955, "view": 0} -2023-12-15T23:44:55.017Z INFO sending Commit {"height": 5955, "view": 0} -2023-12-15T23:44:55.018Z INFO approving block {"height": 5955, "hash": "d3ff46ac55aefe687b5c8c352181b4ef2525731e1db9540999fad5721cd095af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ea59584c6cc6a2cc2a7e146b16b603211ebed41819e271396e19877a71ddb77"} -2023-12-15T23:44:55.020Z INFO initializing dbft {"height": 5956, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:55.021Z debug frostfs-node/morph.go:229 new block {"index": 5955} -2023-12-15T23:44:55.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5955, "blockHeight": 5955, "took": "10.912349ms"} -2023-12-15T23:44:56.019Z INFO sending PrepareRequest {"height": 5956, "view": 0} -2023-12-15T23:44:56.019Z INFO sending Commit {"height": 5956, "view": 0} -2023-12-15T23:44:56.020Z INFO approving block {"height": 5956, "hash": "188ae7d9b761093b822f7869100d38c1dcaa73533fb4cf664dc155ed0d140aba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3ff46ac55aefe687b5c8c352181b4ef2525731e1db9540999fad5721cd095af"} -2023-12-15T23:44:56.021Z INFO initializing dbft {"height": 5957, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:56.022Z debug frostfs-node/morph.go:229 new block {"index": 5956} -2023-12-15T23:44:56.479Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5956, "blockHeight": 5956, "took": "8.093352ms"} -2023-12-15T23:44:57.021Z INFO sending PrepareRequest {"height": 5957, "view": 0} -2023-12-15T23:44:57.021Z INFO sending Commit {"height": 5957, "view": 0} -2023-12-15T23:44:57.022Z INFO approving block {"height": 5957, "hash": "b367a35a70be2960be200ddae236862d287473bf8acc05668d0bf0eb2715fe22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "188ae7d9b761093b822f7869100d38c1dcaa73533fb4cf664dc155ed0d140aba"} -2023-12-15T23:44:57.024Z INFO initializing dbft {"height": 5958, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:57.025Z debug frostfs-node/morph.go:229 new block {"index": 5957} -2023-12-15T23:44:57.484Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5957, "blockHeight": 5957, "took": "11.382723ms"} -2023-12-15T23:44:58.023Z INFO sending PrepareRequest {"height": 5958, "view": 0} -2023-12-15T23:44:58.023Z INFO sending Commit {"height": 5958, "view": 0} -2023-12-15T23:44:58.023Z INFO approving block {"height": 5958, "hash": "9d10583eaf2b873a8ee761848d3350da424ef8c46c2a0264b9f04a48709deb0c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b367a35a70be2960be200ddae236862d287473bf8acc05668d0bf0eb2715fe22"} -2023-12-15T23:44:58.025Z INFO initializing dbft {"height": 5959, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:58.026Z debug frostfs-node/morph.go:229 new block {"index": 5958} -2023-12-15T23:44:58.482Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5958, "blockHeight": 5958, "took": "9.188858ms"} -2023-12-15T23:44:59.024Z INFO sending PrepareRequest {"height": 5959, "view": 0} -2023-12-15T23:44:59.025Z INFO sending Commit {"height": 5959, "view": 0} -2023-12-15T23:44:59.025Z INFO approving block {"height": 5959, "hash": "349fd9e0b44940057bd6f064b1b117200f2cda3c4c247d64273824b6d5ec4708", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d10583eaf2b873a8ee761848d3350da424ef8c46c2a0264b9f04a48709deb0c"} -2023-12-15T23:44:59.027Z INFO initializing dbft {"height": 5960, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:44:59.027Z debug frostfs-node/morph.go:229 new block {"index": 5959} -2023-12-15T23:44:59.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5959, "blockHeight": 5959, "took": "7.049955ms"} -2023-12-15T23:45:00.026Z INFO sending PrepareRequest {"height": 5960, "view": 0} -2023-12-15T23:45:00.027Z INFO sending Commit {"height": 5960, "view": 0} -2023-12-15T23:45:00.028Z INFO approving block {"height": 5960, "hash": "37398e1872c0aec20c903f2751956a42d10adbc3238aebc4123a90a5d0494917", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "349fd9e0b44940057bd6f064b1b117200f2cda3c4c247d64273824b6d5ec4708"} -2023-12-15T23:45:00.030Z INFO initializing dbft {"height": 5961, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:00.032Z debug frostfs-node/morph.go:229 new block {"index": 5960} -2023-12-15T23:45:00.485Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5960, "blockHeight": 5960, "took": "9.92924ms"} -2023-12-15T23:45:01.029Z INFO sending PrepareRequest {"height": 5961, "view": 0} -2023-12-15T23:45:01.029Z INFO sending Commit {"height": 5961, "view": 0} -2023-12-15T23:45:01.029Z INFO approving block {"height": 5961, "hash": "efc29523baa7d784571f2242241a81547168765aa80676c79eb43bbd90d0e3f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37398e1872c0aec20c903f2751956a42d10adbc3238aebc4123a90a5d0494917"} -2023-12-15T23:45:01.031Z INFO initializing dbft {"height": 5962, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:01.032Z debug frostfs-node/morph.go:229 new block {"index": 5961} -2023-12-15T23:45:01.485Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5961, "blockHeight": 5961, "took": "9.409474ms"} -2023-12-15T23:45:02.031Z INFO sending PrepareRequest {"height": 5962, "view": 0} -2023-12-15T23:45:02.031Z INFO sending Commit {"height": 5962, "view": 0} -2023-12-15T23:45:02.032Z INFO approving block {"height": 5962, "hash": "2c5197b99c5feae6af671f4c030d94afe1a5edd18da49b88f8940c92cfc477aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efc29523baa7d784571f2242241a81547168765aa80676c79eb43bbd90d0e3f7"} -2023-12-15T23:45:02.034Z INFO initializing dbft {"height": 5963, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:02.035Z debug frostfs-node/morph.go:229 new block {"index": 5962} -2023-12-15T23:45:02.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5962, "blockHeight": 5962, "took": "13.378609ms"} -2023-12-15T23:45:03.034Z INFO sending PrepareRequest {"height": 5963, "view": 0} -2023-12-15T23:45:03.034Z INFO sending Commit {"height": 5963, "view": 0} -2023-12-15T23:45:03.035Z INFO approving block {"height": 5963, "hash": "1c099105417daac229abcb4fbab3b1d155424cb65b7f6784a7fb56c69f84d326", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c5197b99c5feae6af671f4c030d94afe1a5edd18da49b88f8940c92cfc477aa"} -2023-12-15T23:45:03.036Z INFO initializing dbft {"height": 5964, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:03.037Z debug frostfs-node/morph.go:229 new block {"index": 5963} -2023-12-15T23:45:03.485Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5963, "blockHeight": 5963, "took": "7.249645ms"} -2023-12-15T23:45:04.036Z INFO sending PrepareRequest {"height": 5964, "view": 0} -2023-12-15T23:45:04.036Z INFO sending Commit {"height": 5964, "view": 0} -2023-12-15T23:45:04.037Z INFO approving block {"height": 5964, "hash": "f44377ce6e0284b1200745c998362e2deb464f2d66de1f32d1bdc8031a598855", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c099105417daac229abcb4fbab3b1d155424cb65b7f6784a7fb56c69f84d326"} -2023-12-15T23:45:04.038Z INFO initializing dbft {"height": 5965, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:04.039Z debug frostfs-node/morph.go:229 new block {"index": 5964} -2023-12-15T23:45:04.045Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 25, "iteration": 2, "error": "no data for 1 iteration in 25 epoch for consumers's trusts"} -2023-12-15T23:45:04.047Z info settlement/calls.go:106 start basic income distribution {"epoch": 25} -2023-12-15T23:45:04.489Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5964, "blockHeight": 5964, "took": "8.669294ms"} -2023-12-15T23:45:05.038Z INFO sending PrepareRequest {"height": 5965, "view": 0} -2023-12-15T23:45:05.038Z INFO sending Commit {"height": 5965, "view": 0} -2023-12-15T23:45:05.038Z INFO approving block {"height": 5965, "hash": "6e618d3da1a8d24df4edad7277646ecf71f9f0d562b078838ccb7f89a00cfd68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f44377ce6e0284b1200745c998362e2deb464f2d66de1f32d1bdc8031a598855"} -2023-12-15T23:45:05.040Z INFO initializing dbft {"height": 5966, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:05.041Z debug frostfs-node/morph.go:229 new block {"index": 5965} -2023-12-15T23:45:05.487Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5965, "blockHeight": 5965, "took": "6.19092ms"} -2023-12-15T23:45:06.040Z INFO sending PrepareRequest {"height": 5966, "view": 0} -2023-12-15T23:45:06.040Z INFO sending Commit {"height": 5966, "view": 0} -2023-12-15T23:45:06.040Z INFO approving block {"height": 5966, "hash": "ce43d67ef297c3c2afce62f4b2a528a3bb43a1195cc155df0e350b9f0e92637c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e618d3da1a8d24df4edad7277646ecf71f9f0d562b078838ccb7f89a00cfd68"} -2023-12-15T23:45:06.042Z INFO initializing dbft {"height": 5967, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:06.043Z debug frostfs-node/morph.go:229 new block {"index": 5966} -2023-12-15T23:45:06.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5966, "blockHeight": 5966, "took": "7.521849ms"} -2023-12-15T23:45:07.041Z INFO sending PrepareRequest {"height": 5967, "view": 0} -2023-12-15T23:45:07.042Z INFO sending Commit {"height": 5967, "view": 0} -2023-12-15T23:45:07.042Z INFO approving block {"height": 5967, "hash": "333d146060d185e499d75d6c0e04c909e0f718e8becedff43fb5e1bcbdace0fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce43d67ef297c3c2afce62f4b2a528a3bb43a1195cc155df0e350b9f0e92637c"} -2023-12-15T23:45:07.044Z INFO initializing dbft {"height": 5968, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:07.045Z debug frostfs-node/morph.go:229 new block {"index": 5967} -2023-12-15T23:45:07.048Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:45:07.050Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:45:07.050Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:45:07.491Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5967, "blockHeight": 5967, "took": "7.469424ms"} -2023-12-15T23:45:08.043Z INFO sending PrepareRequest {"height": 5968, "view": 0} -2023-12-15T23:45:08.044Z INFO sending Commit {"height": 5968, "view": 0} -2023-12-15T23:45:08.044Z INFO approving block {"height": 5968, "hash": "46653f801b9f15aab670b7e392b0374ebaca048ffc4212cc40c5358ec751c781", "tx_count": 2, "merkle": "043807c7ea0ec2bba788e317019a09038a4785610f7f1034f11cde6aecc6e1f8", "prev": "333d146060d185e499d75d6c0e04c909e0f718e8becedff43fb5e1bcbdace0fe"} -2023-12-15T23:45:08.045Z INFO runtime log {"tx": "dc69d1174c77eec010db98d4873ecd8101d325ce18adcbbc2a292da1a3c457d5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:45:08.045Z INFO runtime log {"tx": "dc69d1174c77eec010db98d4873ecd8101d325ce18adcbbc2a292da1a3c457d5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:45:08.047Z INFO initializing dbft {"height": 5969, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:08.048Z debug frostfs-node/morph.go:229 new block {"index": 5968} -2023-12-15T23:45:08.496Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 5968, "blockHeight": 5968, "took": "12.17124ms"} -2023-12-15T23:45:09.045Z INFO sending PrepareRequest {"height": 5969, "view": 0} -2023-12-15T23:45:09.046Z INFO sending Commit {"height": 5969, "view": 0} -2023-12-15T23:45:09.046Z INFO approving block {"height": 5969, "hash": "249f48425d70383181a3e8d7dd32550f7f24390c9d48fedffeaa559a1a8d1347", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46653f801b9f15aab670b7e392b0374ebaca048ffc4212cc40c5358ec751c781"} -2023-12-15T23:45:09.048Z INFO initializing dbft {"height": 5970, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:09.049Z debug frostfs-node/morph.go:229 new block {"index": 5969} -2023-12-15T23:45:09.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5969, "blockHeight": 5969, "took": "7.981782ms"} -2023-12-15T23:45:10.048Z INFO sending PrepareRequest {"height": 5970, "view": 0} -2023-12-15T23:45:10.048Z INFO sending Commit {"height": 5970, "view": 0} -2023-12-15T23:45:10.049Z INFO approving block {"height": 5970, "hash": "53622cb0e2cd3542030ec3af181e2c45d1f838ca506680b32327d6652014c2d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "249f48425d70383181a3e8d7dd32550f7f24390c9d48fedffeaa559a1a8d1347"} -2023-12-15T23:45:10.051Z INFO initializing dbft {"height": 5971, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:10.052Z debug frostfs-node/morph.go:229 new block {"index": 5970} -2023-12-15T23:45:10.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5970, "blockHeight": 5970, "took": "7.523469ms"} -2023-12-15T23:45:11.050Z INFO sending PrepareRequest {"height": 5971, "view": 0} -2023-12-15T23:45:11.050Z INFO sending Commit {"height": 5971, "view": 0} -2023-12-15T23:45:11.050Z INFO approving block {"height": 5971, "hash": "010fbbca9ac47ef0693926885ab49e6c2d5a6293344894d71c79768c5095c344", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53622cb0e2cd3542030ec3af181e2c45d1f838ca506680b32327d6652014c2d6"} -2023-12-15T23:45:11.051Z INFO initializing dbft {"height": 5972, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:11.052Z debug frostfs-node/morph.go:229 new block {"index": 5971} -2023-12-15T23:45:11.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5971, "blockHeight": 5971, "took": "6.836677ms"} -2023-12-15T23:45:12.052Z INFO sending PrepareRequest {"height": 5972, "view": 0} -2023-12-15T23:45:12.052Z INFO sending Commit {"height": 5972, "view": 0} -2023-12-15T23:45:12.052Z INFO approving block {"height": 5972, "hash": "719839c070123c79480d5064e0eb7860693468f3cd70c5a5e2aca158abdf8732", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "010fbbca9ac47ef0693926885ab49e6c2d5a6293344894d71c79768c5095c344"} -2023-12-15T23:45:12.053Z INFO initializing dbft {"height": 5973, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:12.054Z debug frostfs-node/morph.go:229 new block {"index": 5972} -2023-12-15T23:45:12.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5972, "blockHeight": 5972, "took": "8.145233ms"} -2023-12-15T23:45:13.053Z INFO sending PrepareRequest {"height": 5973, "view": 0} -2023-12-15T23:45:13.053Z INFO sending Commit {"height": 5973, "view": 0} -2023-12-15T23:45:13.054Z INFO approving block {"height": 5973, "hash": "e486ccf01b753f5c7f441191d739ac4f2e7354a7ed1abdfb47169681ecc7c7c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "719839c070123c79480d5064e0eb7860693468f3cd70c5a5e2aca158abdf8732"} -2023-12-15T23:45:13.056Z INFO initializing dbft {"height": 5974, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:13.056Z debug frostfs-node/morph.go:229 new block {"index": 5973} -2023-12-15T23:45:13.497Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5973, "blockHeight": 5973, "took": "7.788785ms"} -2023-12-15T23:45:14.056Z INFO sending PrepareRequest {"height": 5974, "view": 0} -2023-12-15T23:45:14.056Z INFO sending Commit {"height": 5974, "view": 0} -2023-12-15T23:45:14.057Z INFO approving block {"height": 5974, "hash": "613779d890ae2049dddee7fca7786bbf2c168c5e807c4ab1ade7155e3c6a5e44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e486ccf01b753f5c7f441191d739ac4f2e7354a7ed1abdfb47169681ecc7c7c4"} -2023-12-15T23:45:14.059Z INFO initializing dbft {"height": 5975, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:14.060Z debug frostfs-node/morph.go:229 new block {"index": 5974} -2023-12-15T23:45:14.495Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5974, "blockHeight": 5974, "took": "5.095839ms"} -2023-12-15T23:45:15.057Z INFO sending PrepareRequest {"height": 5975, "view": 0} -2023-12-15T23:45:15.058Z INFO sending Commit {"height": 5975, "view": 0} -2023-12-15T23:45:15.058Z INFO approving block {"height": 5975, "hash": "d67c04ed21c9f77dd9b258cb785712c3261854f69b47f09f38691b5258ebeba4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "613779d890ae2049dddee7fca7786bbf2c168c5e807c4ab1ade7155e3c6a5e44"} -2023-12-15T23:45:15.060Z INFO initializing dbft {"height": 5976, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:15.060Z debug frostfs-node/morph.go:229 new block {"index": 5975} -2023-12-15T23:45:15.499Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5975, "blockHeight": 5975, "took": "7.241145ms"} -2023-12-15T23:45:16.059Z INFO sending PrepareRequest {"height": 5976, "view": 0} -2023-12-15T23:45:16.059Z INFO sending Commit {"height": 5976, "view": 0} -2023-12-15T23:45:16.060Z INFO approving block {"height": 5976, "hash": "207993d29d4dab389067b218db0012902e3367e732a0106035402de9f5f4f6e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d67c04ed21c9f77dd9b258cb785712c3261854f69b47f09f38691b5258ebeba4"} -2023-12-15T23:45:16.061Z INFO initializing dbft {"height": 5977, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:16.062Z debug frostfs-node/morph.go:229 new block {"index": 5976} -2023-12-15T23:45:16.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5976, "blockHeight": 5976, "took": "8.855997ms"} -2023-12-15T23:45:17.061Z INFO sending PrepareRequest {"height": 5977, "view": 0} -2023-12-15T23:45:17.061Z INFO sending Commit {"height": 5977, "view": 0} -2023-12-15T23:45:17.061Z INFO approving block {"height": 5977, "hash": "a11bb3be85ef5318f39fbd7b3869a4c4d53683e49a05e367b73a44ef5a66d58f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "207993d29d4dab389067b218db0012902e3367e732a0106035402de9f5f4f6e8"} -2023-12-15T23:45:17.063Z INFO initializing dbft {"height": 5978, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:17.064Z debug frostfs-node/morph.go:229 new block {"index": 5977} -2023-12-15T23:45:17.499Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5977, "blockHeight": 5977, "took": "6.356025ms"} -2023-12-15T23:45:18.063Z INFO sending PrepareRequest {"height": 5978, "view": 0} -2023-12-15T23:45:18.063Z INFO sending Commit {"height": 5978, "view": 0} -2023-12-15T23:45:18.063Z INFO approving block {"height": 5978, "hash": "7354c84806dae3fba4e09f6ad25c2e8fc8f4cc88eade41cbae0a51342ae56f3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a11bb3be85ef5318f39fbd7b3869a4c4d53683e49a05e367b73a44ef5a66d58f"} -2023-12-15T23:45:18.065Z INFO initializing dbft {"height": 5979, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:18.066Z debug frostfs-node/morph.go:229 new block {"index": 5978} -2023-12-15T23:45:18.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5978, "blockHeight": 5978, "took": "6.563271ms"} -2023-12-15T23:45:19.065Z INFO sending PrepareRequest {"height": 5979, "view": 0} -2023-12-15T23:45:19.065Z INFO sending Commit {"height": 5979, "view": 0} -2023-12-15T23:45:19.065Z INFO approving block {"height": 5979, "hash": "358c3dd912fb8480e63b2ce5b0e7e947b1ad680a299c72d97c97afaa5a04d638", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7354c84806dae3fba4e09f6ad25c2e8fc8f4cc88eade41cbae0a51342ae56f3a"} -2023-12-15T23:45:19.067Z INFO initializing dbft {"height": 5980, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:19.068Z debug frostfs-node/morph.go:229 new block {"index": 5979} -2023-12-15T23:45:19.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5979, "blockHeight": 5979, "took": "6.23514ms"} -2023-12-15T23:45:20.066Z INFO sending PrepareRequest {"height": 5980, "view": 0} -2023-12-15T23:45:20.067Z INFO sending Commit {"height": 5980, "view": 0} -2023-12-15T23:45:20.067Z INFO approving block {"height": 5980, "hash": "11911c82791212d9759362585651a9519fc0cd25acedc59c4fe3c9468656df2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "358c3dd912fb8480e63b2ce5b0e7e947b1ad680a299c72d97c97afaa5a04d638"} -2023-12-15T23:45:20.069Z INFO initializing dbft {"height": 5981, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:20.070Z debug frostfs-node/morph.go:229 new block {"index": 5980} -2023-12-15T23:45:20.502Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5980, "blockHeight": 5980, "took": "6.605233ms"} -2023-12-15T23:45:21.068Z INFO sending PrepareRequest {"height": 5981, "view": 0} -2023-12-15T23:45:21.068Z INFO sending Commit {"height": 5981, "view": 0} -2023-12-15T23:45:21.069Z INFO approving block {"height": 5981, "hash": "6c469913e9adf7b187e4c0ec2e290e72d0a19407688462c0bcbf8ae3d8b7eb90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11911c82791212d9759362585651a9519fc0cd25acedc59c4fe3c9468656df2c"} -2023-12-15T23:45:21.070Z INFO initializing dbft {"height": 5982, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:21.071Z debug frostfs-node/morph.go:229 new block {"index": 5981} -2023-12-15T23:45:21.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5981, "blockHeight": 5981, "took": "6.81178ms"} -2023-12-15T23:45:22.070Z INFO sending PrepareRequest {"height": 5982, "view": 0} -2023-12-15T23:45:22.070Z INFO sending Commit {"height": 5982, "view": 0} -2023-12-15T23:45:22.071Z INFO approving block {"height": 5982, "hash": "2cc474767ee043335c8db790f5d888bc4b32f3dc4fe100030498516eb9b2f2be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c469913e9adf7b187e4c0ec2e290e72d0a19407688462c0bcbf8ae3d8b7eb90"} -2023-12-15T23:45:22.072Z INFO initializing dbft {"height": 5983, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:22.073Z debug frostfs-node/morph.go:229 new block {"index": 5982} -2023-12-15T23:45:22.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5982, "blockHeight": 5982, "took": "7.914779ms"} -2023-12-15T23:45:23.072Z INFO sending PrepareRequest {"height": 5983, "view": 0} -2023-12-15T23:45:23.072Z INFO sending Commit {"height": 5983, "view": 0} -2023-12-15T23:45:23.072Z INFO approving block {"height": 5983, "hash": "e7f489b6000a53bcaeef62603807720f0530ecf15abbcbcdb4c331be2a823b61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2cc474767ee043335c8db790f5d888bc4b32f3dc4fe100030498516eb9b2f2be"} -2023-12-15T23:45:23.074Z INFO initializing dbft {"height": 5984, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:23.074Z debug frostfs-node/morph.go:229 new block {"index": 5983} -2023-12-15T23:45:23.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5983, "blockHeight": 5983, "took": "7.11192ms"} -2023-12-15T23:45:24.074Z INFO sending PrepareRequest {"height": 5984, "view": 0} -2023-12-15T23:45:24.074Z INFO sending Commit {"height": 5984, "view": 0} -2023-12-15T23:45:24.074Z INFO approving block {"height": 5984, "hash": "32e9029b24743cad04f798161b8476d36a857d168c608dc6f2f6dafd2a8d166f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7f489b6000a53bcaeef62603807720f0530ecf15abbcbcdb4c331be2a823b61"} -2023-12-15T23:45:24.076Z INFO initializing dbft {"height": 5985, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:24.077Z debug frostfs-node/morph.go:229 new block {"index": 5984} -2023-12-15T23:45:24.506Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5984, "blockHeight": 5984, "took": "7.44402ms"} -2023-12-15T23:45:25.076Z INFO sending PrepareRequest {"height": 5985, "view": 0} -2023-12-15T23:45:25.076Z INFO sending Commit {"height": 5985, "view": 0} -2023-12-15T23:45:25.076Z INFO approving block {"height": 5985, "hash": "5ec666273ad2588856cad1411e2b59eb6dc07a2f6e53622e30543c8befaa6db2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32e9029b24743cad04f798161b8476d36a857d168c608dc6f2f6dafd2a8d166f"} -2023-12-15T23:45:25.078Z INFO initializing dbft {"height": 5986, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:25.079Z debug frostfs-node/morph.go:229 new block {"index": 5985} -2023-12-15T23:45:25.506Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5985, "blockHeight": 5985, "took": "6.472469ms"} -2023-12-15T23:45:26.078Z INFO sending PrepareRequest {"height": 5986, "view": 0} -2023-12-15T23:45:26.078Z INFO sending Commit {"height": 5986, "view": 0} -2023-12-15T23:45:26.079Z INFO approving block {"height": 5986, "hash": "84ef0f86268bfd256ee525f7f1917b3261e99037c5b88592fc1528c283dc1a0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ec666273ad2588856cad1411e2b59eb6dc07a2f6e53622e30543c8befaa6db2"} -2023-12-15T23:45:26.080Z INFO initializing dbft {"height": 5987, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:26.081Z debug frostfs-node/morph.go:229 new block {"index": 5986} -2023-12-15T23:45:26.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5986, "blockHeight": 5986, "took": "7.876412ms"} -2023-12-15T23:45:27.080Z INFO sending PrepareRequest {"height": 5987, "view": 0} -2023-12-15T23:45:27.080Z INFO sending Commit {"height": 5987, "view": 0} -2023-12-15T23:45:27.081Z INFO approving block {"height": 5987, "hash": "5860b880e8ff884226c18fc2ed9daaac56d168ae737a5ac278aec500317d0165", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84ef0f86268bfd256ee525f7f1917b3261e99037c5b88592fc1528c283dc1a0d"} -2023-12-15T23:45:27.082Z INFO initializing dbft {"height": 5988, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:27.083Z debug frostfs-node/morph.go:229 new block {"index": 5987} -2023-12-15T23:45:27.507Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5987, "blockHeight": 5987, "took": "6.179703ms"} -2023-12-15T23:45:28.081Z INFO sending PrepareRequest {"height": 5988, "view": 0} -2023-12-15T23:45:28.081Z INFO sending Commit {"height": 5988, "view": 0} -2023-12-15T23:45:28.082Z INFO approving block {"height": 5988, "hash": "f06abfe8a44c015edfd36cf3f7c9e04c5f12c54b6a26da8b1abd375c50fc51e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5860b880e8ff884226c18fc2ed9daaac56d168ae737a5ac278aec500317d0165"} -2023-12-15T23:45:28.083Z INFO initializing dbft {"height": 5989, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:28.083Z debug frostfs-node/morph.go:229 new block {"index": 5988} -2023-12-15T23:45:28.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5988, "blockHeight": 5988, "took": "6.369353ms"} -2023-12-15T23:45:29.083Z INFO sending PrepareRequest {"height": 5989, "view": 0} -2023-12-15T23:45:29.083Z INFO sending Commit {"height": 5989, "view": 0} -2023-12-15T23:45:29.083Z INFO approving block {"height": 5989, "hash": "33e894dedf67f48baac0454c974634000657d4d787ed5e89caaacea17f404902", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f06abfe8a44c015edfd36cf3f7c9e04c5f12c54b6a26da8b1abd375c50fc51e0"} -2023-12-15T23:45:29.085Z INFO initializing dbft {"height": 5990, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:29.086Z debug frostfs-node/morph.go:229 new block {"index": 5989} -2023-12-15T23:45:29.510Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5989, "blockHeight": 5989, "took": "8.11375ms"} -2023-12-15T23:45:30.084Z INFO sending PrepareRequest {"height": 5990, "view": 0} -2023-12-15T23:45:30.084Z INFO sending Commit {"height": 5990, "view": 0} -2023-12-15T23:45:30.085Z INFO approving block {"height": 5990, "hash": "812e5623de94f0c3f39ac895203269054b9efbd9a62637f53c069394393caab8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33e894dedf67f48baac0454c974634000657d4d787ed5e89caaacea17f404902"} -2023-12-15T23:45:30.086Z INFO initializing dbft {"height": 5991, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:30.087Z debug frostfs-node/morph.go:229 new block {"index": 5990} -2023-12-15T23:45:30.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5990, "blockHeight": 5990, "took": "10.773359ms"} -2023-12-15T23:45:31.086Z INFO sending PrepareRequest {"height": 5991, "view": 0} -2023-12-15T23:45:31.086Z INFO sending Commit {"height": 5991, "view": 0} -2023-12-15T23:45:31.086Z INFO approving block {"height": 5991, "hash": "e1a6cc3d1fa2a78e91b6f625d7735708f53efe0737f44b257671f0e9427caeea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "812e5623de94f0c3f39ac895203269054b9efbd9a62637f53c069394393caab8"} -2023-12-15T23:45:31.087Z INFO initializing dbft {"height": 5992, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:31.088Z debug frostfs-node/morph.go:229 new block {"index": 5991} -2023-12-15T23:45:31.514Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5991, "blockHeight": 5991, "took": "10.914199ms"} -2023-12-15T23:45:32.087Z INFO sending PrepareRequest {"height": 5992, "view": 0} -2023-12-15T23:45:32.087Z INFO sending Commit {"height": 5992, "view": 0} -2023-12-15T23:45:32.088Z INFO approving block {"height": 5992, "hash": "507565a650bf75c318b23a6504a667607a2178f62b8fe40307f2fef2df8b8b8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1a6cc3d1fa2a78e91b6f625d7735708f53efe0737f44b257671f0e9427caeea"} -2023-12-15T23:45:32.090Z INFO initializing dbft {"height": 5993, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:32.090Z debug frostfs-node/morph.go:229 new block {"index": 5992} -2023-12-15T23:45:32.512Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5992, "blockHeight": 5992, "took": "7.938555ms"} -2023-12-15T23:45:33.090Z INFO sending PrepareRequest {"height": 5993, "view": 0} -2023-12-15T23:45:33.090Z INFO sending Commit {"height": 5993, "view": 0} -2023-12-15T23:45:33.091Z INFO approving block {"height": 5993, "hash": "ab62cb6f6cf0d0e97a21751bcf200e0160d9795e6e27d6236ac01d470beed0f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "507565a650bf75c318b23a6504a667607a2178f62b8fe40307f2fef2df8b8b8c"} -2023-12-15T23:45:33.094Z INFO initializing dbft {"height": 5994, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:33.094Z debug frostfs-node/morph.go:229 new block {"index": 5993} -2023-12-15T23:45:33.519Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5993, "blockHeight": 5993, "took": "13.232524ms"} -2023-12-15T23:45:34.092Z INFO sending PrepareRequest {"height": 5994, "view": 0} -2023-12-15T23:45:34.093Z INFO sending Commit {"height": 5994, "view": 0} -2023-12-15T23:45:34.093Z INFO approving block {"height": 5994, "hash": "2fca3fc3511be162fe27ef420d215f5785eca9b22c0d3142a958d76c35db0c1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab62cb6f6cf0d0e97a21751bcf200e0160d9795e6e27d6236ac01d470beed0f0"} -2023-12-15T23:45:34.094Z INFO initializing dbft {"height": 5995, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:34.095Z debug frostfs-node/morph.go:229 new block {"index": 5994} -2023-12-15T23:45:34.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5994, "blockHeight": 5994, "took": "10.548446ms"} -2023-12-15T23:45:35.094Z INFO sending PrepareRequest {"height": 5995, "view": 0} -2023-12-15T23:45:35.095Z INFO sending Commit {"height": 5995, "view": 0} -2023-12-15T23:45:35.095Z INFO approving block {"height": 5995, "hash": "e0b64503393a1db30d31087c3e4b9991a28f99b5fe435bebdfe278feae8573ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fca3fc3511be162fe27ef420d215f5785eca9b22c0d3142a958d76c35db0c1d"} -2023-12-15T23:45:35.097Z INFO initializing dbft {"height": 5996, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:35.098Z debug frostfs-node/morph.go:229 new block {"index": 5995} -2023-12-15T23:45:35.515Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5995, "blockHeight": 5995, "took": "7.804065ms"} -2023-12-15T23:45:36.096Z INFO sending PrepareRequest {"height": 5996, "view": 0} -2023-12-15T23:45:36.097Z INFO sending Commit {"height": 5996, "view": 0} -2023-12-15T23:45:36.097Z INFO approving block {"height": 5996, "hash": "da47bc2b284f92e5a47a68593c8b395f1c620ac3d212fa7ee028867337982659", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0b64503393a1db30d31087c3e4b9991a28f99b5fe435bebdfe278feae8573ff"} -2023-12-15T23:45:36.100Z INFO initializing dbft {"height": 5997, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:36.101Z debug frostfs-node/morph.go:229 new block {"index": 5996} -2023-12-15T23:45:36.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5996, "blockHeight": 5996, "took": "9.414795ms"} -2023-12-15T23:45:37.099Z INFO sending PrepareRequest {"height": 5997, "view": 0} -2023-12-15T23:45:37.099Z INFO sending Commit {"height": 5997, "view": 0} -2023-12-15T23:45:37.099Z INFO approving block {"height": 5997, "hash": "959c2cbb75ad278485e35f43483d6e7bf0e0176ef0494a297384a513bcec104d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da47bc2b284f92e5a47a68593c8b395f1c620ac3d212fa7ee028867337982659"} -2023-12-15T23:45:37.101Z INFO initializing dbft {"height": 5998, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:37.102Z debug frostfs-node/morph.go:229 new block {"index": 5997} -2023-12-15T23:45:37.519Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5997, "blockHeight": 5997, "took": "9.476864ms"} -2023-12-15T23:45:38.101Z INFO sending PrepareRequest {"height": 5998, "view": 0} -2023-12-15T23:45:38.101Z INFO sending Commit {"height": 5998, "view": 0} -2023-12-15T23:45:38.101Z INFO approving block {"height": 5998, "hash": "aa647a0ad79f2f7331405c987d686a3baba9a96c8587abbc67d518eadb84f9f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "959c2cbb75ad278485e35f43483d6e7bf0e0176ef0494a297384a513bcec104d"} -2023-12-15T23:45:38.103Z INFO initializing dbft {"height": 5999, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:38.103Z debug frostfs-node/morph.go:229 new block {"index": 5998} -2023-12-15T23:45:38.519Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 5998, "blockHeight": 5998, "took": "9.394183ms"} -2023-12-15T23:45:39.102Z INFO sending PrepareRequest {"height": 5999, "view": 0} -2023-12-15T23:45:39.103Z INFO sending Commit {"height": 5999, "view": 0} -2023-12-15T23:45:39.103Z INFO approving block {"height": 5999, "hash": "ac50d8adb240a2c816d320e15c87c2f5116f2915323d8ec1f28c849b242fe81e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa647a0ad79f2f7331405c987d686a3baba9a96c8587abbc67d518eadb84f9f2"} -2023-12-15T23:45:39.107Z INFO initializing dbft {"height": 6000, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:39.108Z debug frostfs-node/morph.go:229 new block {"index": 5999} -2023-12-15T23:45:39.530Z INFO persisted to disk {"blocks": 1, "keys": 31, "headerHeight": 5999, "blockHeight": 5999, "took": "19.696395ms"} -2023-12-15T23:45:40.104Z INFO sending PrepareRequest {"height": 6000, "view": 0} -2023-12-15T23:45:40.105Z INFO sending Commit {"height": 6000, "view": 0} -2023-12-15T23:45:40.106Z INFO approving block {"height": 6000, "hash": "e7b3f5aacb723b1ce52efd7ba8e861b3aa91870bdbbdbe4ddbeb06e072d5c46c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac50d8adb240a2c816d320e15c87c2f5116f2915323d8ec1f28c849b242fe81e"} -2023-12-15T23:45:40.108Z INFO initializing dbft {"height": 6001, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:40.109Z debug frostfs-node/morph.go:229 new block {"index": 6000} -2023-12-15T23:45:40.520Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6000, "blockHeight": 6000, "took": "8.593759ms"} -2023-12-15T23:45:41.107Z INFO sending PrepareRequest {"height": 6001, "view": 0} -2023-12-15T23:45:41.107Z INFO sending Commit {"height": 6001, "view": 0} -2023-12-15T23:45:41.108Z INFO approving block {"height": 6001, "hash": "e3f8162090efbccb6ece3e6f570db15ed2d45d835c6661bd9ab10520c2aaf80d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7b3f5aacb723b1ce52efd7ba8e861b3aa91870bdbbdbe4ddbeb06e072d5c46c"} -2023-12-15T23:45:41.110Z INFO initializing dbft {"height": 6002, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:41.111Z debug frostfs-node/morph.go:229 new block {"index": 6001} -2023-12-15T23:45:41.520Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6001, "blockHeight": 6001, "took": "7.434624ms"} -2023-12-15T23:45:42.109Z INFO sending PrepareRequest {"height": 6002, "view": 0} -2023-12-15T23:45:42.110Z INFO sending Commit {"height": 6002, "view": 0} -2023-12-15T23:45:42.110Z INFO approving block {"height": 6002, "hash": "7784baa510e47fbab48c31f2183297359ef5921538c0a8902fa9de738e19f444", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3f8162090efbccb6ece3e6f570db15ed2d45d835c6661bd9ab10520c2aaf80d"} -2023-12-15T23:45:42.112Z INFO initializing dbft {"height": 6003, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:42.113Z debug frostfs-node/morph.go:229 new block {"index": 6002} -2023-12-15T23:45:42.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6002, "blockHeight": 6002, "took": "7.314259ms"} -2023-12-15T23:45:43.111Z INFO sending PrepareRequest {"height": 6003, "view": 0} -2023-12-15T23:45:43.112Z INFO sending Commit {"height": 6003, "view": 0} -2023-12-15T23:45:43.112Z INFO approving block {"height": 6003, "hash": "8fdec9f95010a6d55518dcb75d252c2e9b2929dd974506dbbd9fdb66e0b361d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7784baa510e47fbab48c31f2183297359ef5921538c0a8902fa9de738e19f444"} -2023-12-15T23:45:43.114Z INFO initializing dbft {"height": 6004, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:43.114Z debug frostfs-node/morph.go:229 new block {"index": 6003} -2023-12-15T23:45:43.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6003, "blockHeight": 6003, "took": "6.185799ms"} -2023-12-15T23:45:44.113Z INFO sending PrepareRequest {"height": 6004, "view": 0} -2023-12-15T23:45:44.114Z INFO sending Commit {"height": 6004, "view": 0} -2023-12-15T23:45:44.115Z INFO approving block {"height": 6004, "hash": "102da35fa85e1312991db7ab9f27e8627f03ea6aa4af5287ae18a8d3ed892d43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8fdec9f95010a6d55518dcb75d252c2e9b2929dd974506dbbd9fdb66e0b361d6"} -2023-12-15T23:45:44.118Z INFO initializing dbft {"height": 6005, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:44.119Z debug frostfs-node/morph.go:229 new block {"index": 6004} -2023-12-15T23:45:44.522Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6004, "blockHeight": 6004, "took": "6.054741ms"} -2023-12-15T23:45:45.116Z INFO sending PrepareRequest {"height": 6005, "view": 0} -2023-12-15T23:45:45.116Z INFO sending Commit {"height": 6005, "view": 0} -2023-12-15T23:45:45.116Z INFO approving block {"height": 6005, "hash": "7f3b63d74b5844ced4e0f8e8480dcfabd3dc79a06e5bee50e7377361175d2cdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "102da35fa85e1312991db7ab9f27e8627f03ea6aa4af5287ae18a8d3ed892d43"} -2023-12-15T23:45:45.119Z INFO initializing dbft {"height": 6006, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:45.119Z debug frostfs-node/morph.go:229 new block {"index": 6005} -2023-12-15T23:45:45.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6005, "blockHeight": 6005, "took": "6.085282ms"} -2023-12-15T23:45:46.118Z INFO sending PrepareRequest {"height": 6006, "view": 0} -2023-12-15T23:45:46.118Z INFO sending Commit {"height": 6006, "view": 0} -2023-12-15T23:45:46.119Z INFO approving block {"height": 6006, "hash": "016af072b762c23f6d70251cfcd957e17e85723c1f53010c0c0ebcbecf12dc61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f3b63d74b5844ced4e0f8e8480dcfabd3dc79a06e5bee50e7377361175d2cdf"} -2023-12-15T23:45:46.122Z INFO initializing dbft {"height": 6007, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:46.122Z debug frostfs-node/morph.go:229 new block {"index": 6006} -2023-12-15T23:45:46.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6006, "blockHeight": 6006, "took": "7.529499ms"} -2023-12-15T23:45:47.120Z INFO sending PrepareRequest {"height": 6007, "view": 0} -2023-12-15T23:45:47.120Z INFO sending Commit {"height": 6007, "view": 0} -2023-12-15T23:45:47.121Z INFO approving block {"height": 6007, "hash": "e1bb73071ad6efe293b2f28d1fcb21521c12a19d06f6418f4a7fe49b7b3f72bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "016af072b762c23f6d70251cfcd957e17e85723c1f53010c0c0ebcbecf12dc61"} -2023-12-15T23:45:47.123Z INFO initializing dbft {"height": 6008, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:47.124Z debug frostfs-node/morph.go:229 new block {"index": 6007} -2023-12-15T23:45:47.527Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6007, "blockHeight": 6007, "took": "7.520019ms"} -2023-12-15T23:45:48.122Z INFO sending PrepareRequest {"height": 6008, "view": 0} -2023-12-15T23:45:48.122Z INFO sending Commit {"height": 6008, "view": 0} -2023-12-15T23:45:48.122Z INFO approving block {"height": 6008, "hash": "a7e29a3f09e9add6f51a6ca62908f47d1dc7809a903983a7957bf5287b87f007", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1bb73071ad6efe293b2f28d1fcb21521c12a19d06f6418f4a7fe49b7b3f72bf"} -2023-12-15T23:45:48.124Z INFO initializing dbft {"height": 6009, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:48.125Z debug frostfs-node/morph.go:229 new block {"index": 6008} -2023-12-15T23:45:48.527Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6008, "blockHeight": 6008, "took": "6.835559ms"} -2023-12-15T23:45:49.124Z INFO sending PrepareRequest {"height": 6009, "view": 0} -2023-12-15T23:45:49.124Z INFO sending Commit {"height": 6009, "view": 0} -2023-12-15T23:45:49.124Z INFO approving block {"height": 6009, "hash": "1b6ee273755247db9ee3e2addbac151df4b60261529d61115d3ec251bfd40a9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7e29a3f09e9add6f51a6ca62908f47d1dc7809a903983a7957bf5287b87f007"} -2023-12-15T23:45:49.126Z INFO initializing dbft {"height": 6010, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:49.127Z debug frostfs-node/morph.go:229 new block {"index": 6009} -2023-12-15T23:45:49.528Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6009, "blockHeight": 6009, "took": "7.21725ms"} -2023-12-15T23:45:50.126Z INFO sending PrepareRequest {"height": 6010, "view": 0} -2023-12-15T23:45:50.126Z INFO sending Commit {"height": 6010, "view": 0} -2023-12-15T23:45:50.126Z INFO approving block {"height": 6010, "hash": "5554b22eff0984181426565f3dee0efe4e579121091994ea2fea0f0fc37dbe12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b6ee273755247db9ee3e2addbac151df4b60261529d61115d3ec251bfd40a9c"} -2023-12-15T23:45:50.128Z INFO initializing dbft {"height": 6011, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:50.129Z debug frostfs-node/morph.go:229 new block {"index": 6010} -2023-12-15T23:45:50.529Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6010, "blockHeight": 6010, "took": "6.52098ms"} -2023-12-15T23:45:51.128Z INFO sending PrepareRequest {"height": 6011, "view": 0} -2023-12-15T23:45:51.128Z INFO sending Commit {"height": 6011, "view": 0} -2023-12-15T23:45:51.128Z INFO approving block {"height": 6011, "hash": "f0a385172defffb9c7451f7803bd5525d7907c96295527f1ed7fa157286f7f75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5554b22eff0984181426565f3dee0efe4e579121091994ea2fea0f0fc37dbe12"} -2023-12-15T23:45:51.130Z INFO initializing dbft {"height": 6012, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:51.131Z debug frostfs-node/morph.go:229 new block {"index": 6011} -2023-12-15T23:45:51.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6011, "blockHeight": 6011, "took": "8.58188ms"} -2023-12-15T23:45:52.130Z INFO sending PrepareRequest {"height": 6012, "view": 0} -2023-12-15T23:45:52.130Z INFO sending Commit {"height": 6012, "view": 0} -2023-12-15T23:45:52.131Z INFO approving block {"height": 6012, "hash": "2b5116b8ac55347d2243524b29448e6cb38c05af48bff62f23ed618386c4875d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0a385172defffb9c7451f7803bd5525d7907c96295527f1ed7fa157286f7f75"} -2023-12-15T23:45:52.132Z INFO initializing dbft {"height": 6013, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:52.133Z debug frostfs-node/morph.go:229 new block {"index": 6012} -2023-12-15T23:45:52.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6012, "blockHeight": 6012, "took": "8.141088ms"} -2023-12-15T23:45:53.132Z INFO sending PrepareRequest {"height": 6013, "view": 0} -2023-12-15T23:45:53.132Z INFO sending Commit {"height": 6013, "view": 0} -2023-12-15T23:45:53.133Z INFO approving block {"height": 6013, "hash": "ef6e2f0c0b0f379a0d9a53f9e8ef6e9d03fc6db7d334d5509f4aa73d8b1efab2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b5116b8ac55347d2243524b29448e6cb38c05af48bff62f23ed618386c4875d"} -2023-12-15T23:45:53.134Z INFO initializing dbft {"height": 6014, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:53.135Z debug frostfs-node/morph.go:229 new block {"index": 6013} -2023-12-15T23:45:53.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6013, "blockHeight": 6013, "took": "7.071461ms"} -2023-12-15T23:45:54.134Z INFO sending PrepareRequest {"height": 6014, "view": 0} -2023-12-15T23:45:54.134Z INFO sending Commit {"height": 6014, "view": 0} -2023-12-15T23:45:54.135Z INFO approving block {"height": 6014, "hash": "470d854b1af0aca4b6a1ba912b41c1fa937fd7eeae8220e3194ea6e959dce078", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef6e2f0c0b0f379a0d9a53f9e8ef6e9d03fc6db7d334d5509f4aa73d8b1efab2"} -2023-12-15T23:45:54.136Z INFO initializing dbft {"height": 6015, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:54.137Z debug frostfs-node/morph.go:229 new block {"index": 6014} -2023-12-15T23:45:54.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6014, "blockHeight": 6014, "took": "6.744687ms"} -2023-12-15T23:45:55.136Z INFO sending PrepareRequest {"height": 6015, "view": 0} -2023-12-15T23:45:55.136Z INFO sending Commit {"height": 6015, "view": 0} -2023-12-15T23:45:55.137Z INFO approving block {"height": 6015, "hash": "f6a8892cf63ea21666b4d87dd66cd12c9dab80e045dc43834d42b1d67b443ece", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "470d854b1af0aca4b6a1ba912b41c1fa937fd7eeae8220e3194ea6e959dce078"} -2023-12-15T23:45:55.138Z INFO initializing dbft {"height": 6016, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:55.139Z debug frostfs-node/morph.go:229 new block {"index": 6015} -2023-12-15T23:45:55.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6015, "blockHeight": 6015, "took": "8.547418ms"} -2023-12-15T23:45:56.138Z INFO sending PrepareRequest {"height": 6016, "view": 0} -2023-12-15T23:45:56.139Z INFO sending Commit {"height": 6016, "view": 0} -2023-12-15T23:45:56.139Z INFO approving block {"height": 6016, "hash": "3cc665cfc8683912e322f5966208faeb11ca22f33c29039f2bd57265cb76d3ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6a8892cf63ea21666b4d87dd66cd12c9dab80e045dc43834d42b1d67b443ece"} -2023-12-15T23:45:56.141Z INFO initializing dbft {"height": 6017, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:56.142Z debug frostfs-node/morph.go:229 new block {"index": 6016} -2023-12-15T23:45:56.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6016, "blockHeight": 6016, "took": "6.079328ms"} -2023-12-15T23:45:57.141Z INFO sending PrepareRequest {"height": 6017, "view": 0} -2023-12-15T23:45:57.141Z INFO sending Commit {"height": 6017, "view": 0} -2023-12-15T23:45:57.141Z INFO approving block {"height": 6017, "hash": "a4e76f328e3b143772c7ec36f9146b04c980a4277290b6399cac43e2385aedf5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cc665cfc8683912e322f5966208faeb11ca22f33c29039f2bd57265cb76d3ed"} -2023-12-15T23:45:57.143Z INFO initializing dbft {"height": 6018, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:57.144Z debug frostfs-node/morph.go:229 new block {"index": 6017} -2023-12-15T23:45:57.147Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:45:57.153Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:45:57.154Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:45:57.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6017, "blockHeight": 6017, "took": "7.191109ms"} -2023-12-15T23:45:58.143Z INFO sending PrepareRequest {"height": 6018, "view": 0} -2023-12-15T23:45:58.143Z INFO sending Commit {"height": 6018, "view": 0} -2023-12-15T23:45:58.143Z INFO approving block {"height": 6018, "hash": "7662186d41f5745eb2f6a9fdbb47df963098ab07c0809ea97d4dd052abe5ca6b", "tx_count": 2, "merkle": "478482a1d08df5273661bbaa53deae1439b8639c19fb60a0e4ce741ef0d583ed", "prev": "a4e76f328e3b143772c7ec36f9146b04c980a4277290b6399cac43e2385aedf5"} -2023-12-15T23:45:58.144Z INFO runtime log {"tx": "6d3ef02c2ecdc4f5fcf01644d62e463c760481648df7c0a6a5b396ae222b6498", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:45:58.145Z INFO runtime log {"tx": "6d3ef02c2ecdc4f5fcf01644d62e463c760481648df7c0a6a5b396ae222b6498", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:45:58.146Z INFO initializing dbft {"height": 6019, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:58.148Z debug frostfs-node/morph.go:229 new block {"index": 6018} -2023-12-15T23:45:58.541Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6018, "blockHeight": 6018, "took": "10.91283ms"} -2023-12-15T23:45:59.144Z INFO sending PrepareRequest {"height": 6019, "view": 0} -2023-12-15T23:45:59.145Z INFO sending Commit {"height": 6019, "view": 0} -2023-12-15T23:45:59.145Z INFO approving block {"height": 6019, "hash": "9ee62d09868c76f63a765153b283cec98777bcf1c7afbb821866f9267d5f769f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7662186d41f5745eb2f6a9fdbb47df963098ab07c0809ea97d4dd052abe5ca6b"} -2023-12-15T23:45:59.147Z INFO initializing dbft {"height": 6020, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:45:59.148Z debug frostfs-node/morph.go:229 new block {"index": 6019} -2023-12-15T23:45:59.538Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6019, "blockHeight": 6019, "took": "7.613112ms"} -2023-12-15T23:46:00.146Z INFO sending PrepareRequest {"height": 6020, "view": 0} -2023-12-15T23:46:00.147Z INFO sending Commit {"height": 6020, "view": 0} -2023-12-15T23:46:00.147Z INFO approving block {"height": 6020, "hash": "1ee46beace4fbce3282fe2aa0121698dc3d1b21207979e1cc3e0549c1e923367", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ee62d09868c76f63a765153b283cec98777bcf1c7afbb821866f9267d5f769f"} -2023-12-15T23:46:00.153Z INFO initializing dbft {"height": 6021, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:00.154Z debug frostfs-node/morph.go:229 new block {"index": 6020} -2023-12-15T23:46:00.539Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6020, "blockHeight": 6020, "took": "7.356613ms"} -2023-12-15T23:46:01.148Z INFO sending PrepareRequest {"height": 6021, "view": 0} -2023-12-15T23:46:01.149Z INFO sending Commit {"height": 6021, "view": 0} -2023-12-15T23:46:01.149Z INFO approving block {"height": 6021, "hash": "77eed7fe89c5e1533d87cdd0ed681436c098cfc0b80f1dd7fe4acbab7115919d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ee46beace4fbce3282fe2aa0121698dc3d1b21207979e1cc3e0549c1e923367"} -2023-12-15T23:46:01.151Z INFO initializing dbft {"height": 6022, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:01.152Z debug frostfs-node/morph.go:229 new block {"index": 6021} -2023-12-15T23:46:01.540Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6021, "blockHeight": 6021, "took": "6.325825ms"} -2023-12-15T23:46:02.151Z INFO sending PrepareRequest {"height": 6022, "view": 0} -2023-12-15T23:46:02.151Z INFO sending Commit {"height": 6022, "view": 0} -2023-12-15T23:46:02.152Z INFO approving block {"height": 6022, "hash": "00578974a74380022143ee8b1ec2804208f45f031e277395386f91cb0ba6d541", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77eed7fe89c5e1533d87cdd0ed681436c098cfc0b80f1dd7fe4acbab7115919d"} -2023-12-15T23:46:02.153Z INFO initializing dbft {"height": 6023, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:02.154Z debug frostfs-node/morph.go:229 new block {"index": 6022} -2023-12-15T23:46:02.540Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6022, "blockHeight": 6022, "took": "6.672114ms"} -2023-12-15T23:46:03.152Z INFO sending PrepareRequest {"height": 6023, "view": 0} -2023-12-15T23:46:03.153Z INFO sending Commit {"height": 6023, "view": 0} -2023-12-15T23:46:03.153Z INFO approving block {"height": 6023, "hash": "28c7c6a3c3047ec7520e71c34ca8aea228503bf84eb4d9337bb01290b4fda8f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00578974a74380022143ee8b1ec2804208f45f031e277395386f91cb0ba6d541"} -2023-12-15T23:46:03.155Z INFO initializing dbft {"height": 6024, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:03.156Z debug frostfs-node/morph.go:229 new block {"index": 6023} -2023-12-15T23:46:03.542Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6023, "blockHeight": 6023, "took": "6.774668ms"} -2023-12-15T23:46:04.154Z INFO sending PrepareRequest {"height": 6024, "view": 0} -2023-12-15T23:46:04.154Z INFO sending Commit {"height": 6024, "view": 0} -2023-12-15T23:46:04.155Z INFO approving block {"height": 6024, "hash": "4f85f62e30f6f89b4881e9ba8e3447ef101cc28c78cd51d714f7287fef01dbcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28c7c6a3c3047ec7520e71c34ca8aea228503bf84eb4d9337bb01290b4fda8f0"} -2023-12-15T23:46:04.156Z INFO initializing dbft {"height": 6025, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:04.157Z debug frostfs-node/morph.go:229 new block {"index": 6024} -2023-12-15T23:46:04.161Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:46:04.163Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 25, "iteration": 3, "error": "no data for 2 iteration in 25 epoch for consumers's trusts"} -2023-12-15T23:46:04.164Z INFO runtime log {"tx": "34bc724aed3259135c8ffbe21d87d7e9aa5a87ebe402223fbd5abffc433cce95", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:46:04.544Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6024, "blockHeight": 6024, "took": "7.89422ms"} -2023-12-15T23:46:05.156Z INFO sending PrepareRequest {"height": 6025, "view": 0} -2023-12-15T23:46:05.156Z INFO sending Commit {"height": 6025, "view": 0} -2023-12-15T23:46:05.156Z INFO approving block {"height": 6025, "hash": "f845d86d9c8b9dbd37f08b344557160aa0cf43a3b16cad4ccad19e2c45bc65e7", "tx_count": 1, "merkle": "505edf110c5f5ca81c75184772cbe442ed1199bea735a1f394602a9eefacbda9", "prev": "4f85f62e30f6f89b4881e9ba8e3447ef101cc28c78cd51d714f7287fef01dbcd"} -2023-12-15T23:46:05.158Z INFO runtime log {"tx": "a9bdacef9e2a6094f3a135a7be9911ed42e4cb724718751ca85c5f0c11df5e50", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:46:05.160Z INFO initializing dbft {"height": 6026, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:05.161Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 27} -2023-12-15T23:46:05.161Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 27} -2023-12-15T23:46:05.161Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:46:05.161Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 27} -2023-12-15T23:46:05.161Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 27} -2023-12-15T23:46:05.161Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 27} -2023-12-15T23:46:05.162Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:46:05.162Z debug controller/calls.go:95 starting to report local trust values {"epoch": 26} -2023-12-15T23:46:05.162Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 26} -2023-12-15T23:46:05.162Z debug frostfs-node/morph.go:229 new block {"index": 6025} -2023-12-15T23:46:05.166Z debug controller/calls.go:146 reporting successfully finished {"epoch": 26} -2023-12-15T23:46:05.166Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 26} -2023-12-15T23:46:05.167Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:46:05.170Z INFO runtime log {"tx": "fa9dea0bd1e07179ef0181089b855cc2aef52330c656d98efcd88461db8a1851", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:46:05.173Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6028, "tx_hash": "bcb986c3d17537dabf5916293da34d409541b268275393e802e1182260b931c8"} -2023-12-15T23:46:05.191Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:46:05.191Z info audit/handlers.go:13 new round of audit {"epoch": 27} -2023-12-15T23:46:05.191Z info settlement/calls.go:26 new audit settlement event {"epoch": 27} -2023-12-15T23:46:05.191Z info settlement/handlers.go:14 process audit settlements {"epoch": 27} -2023-12-15T23:46:05.191Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 27} -2023-12-15T23:46:05.194Z info settlement/handlers.go:18 audit processing finished {"epoch": 27} -2023-12-15T23:46:05.197Z info audit/process.go:39 select containers for audit {"epoch": 27, "amount": 0} -2023-12-15T23:46:05.202Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6028, "tx_hash": "3ed2b8571e43208e3162f89502059b905af21f66e5f3378ebc5bf40b59834293"} -2023-12-15T23:46:05.549Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 6025, "blockHeight": 6025, "took": "11.63667ms"} -2023-12-15T23:46:06.158Z INFO sending PrepareRequest {"height": 6026, "view": 0} -2023-12-15T23:46:06.158Z INFO sending Commit {"height": 6026, "view": 0} -2023-12-15T23:46:06.159Z INFO approving block {"height": 6026, "hash": "205d73d36f9003dc4ead49632772ae800909640b9459f10251b470b25a8dc9c7", "tx_count": 3, "merkle": "08d7d797fc2ef8dba6b2bd31538fa88f308c888bb55c103a7bb7cd890e6ef2b6", "prev": "f845d86d9c8b9dbd37f08b344557160aa0cf43a3b16cad4ccad19e2c45bc65e7"} -2023-12-15T23:46:06.160Z INFO runtime log {"tx": "a35d1fa13ef07edbc7ca877f7ae936488545d81de73754bb8d2953e0e50b1d87", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:46:06.161Z INFO initializing dbft {"height": 6027, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:06.163Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 26} -2023-12-15T23:46:06.164Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 26} -2023-12-15T23:46:06.164Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 26} -2023-12-15T23:46:06.166Z debug frostfs-node/morph.go:229 new block {"index": 6026} -2023-12-15T23:46:06.550Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 6026, "blockHeight": 6026, "took": "11.806445ms"} -2023-12-15T23:46:07.160Z INFO sending PrepareRequest {"height": 6027, "view": 0} -2023-12-15T23:46:07.160Z INFO sending Commit {"height": 6027, "view": 0} -2023-12-15T23:46:07.161Z INFO approving block {"height": 6027, "hash": "ef9532865c4b39cb7c72f500af539bbad807af450f98bdf117a39d4ffab70cef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "205d73d36f9003dc4ead49632772ae800909640b9459f10251b470b25a8dc9c7"} -2023-12-15T23:46:07.162Z INFO initializing dbft {"height": 6028, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:07.163Z debug frostfs-node/morph.go:229 new block {"index": 6027} -2023-12-15T23:46:07.545Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6027, "blockHeight": 6027, "took": "6.028467ms"} -2023-12-15T23:46:08.162Z INFO sending PrepareRequest {"height": 6028, "view": 0} -2023-12-15T23:46:08.162Z INFO sending Commit {"height": 6028, "view": 0} -2023-12-15T23:46:08.162Z INFO approving block {"height": 6028, "hash": "78c66926a5ec11178c8c89c3b394afdeb63f29a8566db196381b8245b59a3999", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef9532865c4b39cb7c72f500af539bbad807af450f98bdf117a39d4ffab70cef"} -2023-12-15T23:46:08.164Z INFO initializing dbft {"height": 6029, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:08.165Z debug frostfs-node/morph.go:229 new block {"index": 6028} -2023-12-15T23:46:08.547Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6028, "blockHeight": 6028, "took": "6.966754ms"} -2023-12-15T23:46:09.164Z INFO sending PrepareRequest {"height": 6029, "view": 0} -2023-12-15T23:46:09.164Z INFO sending Commit {"height": 6029, "view": 0} -2023-12-15T23:46:09.164Z INFO approving block {"height": 6029, "hash": "7e4f1a4dd49b18ebc58d93de940264421732ab21a69cb337b11eb9c64cf14659", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78c66926a5ec11178c8c89c3b394afdeb63f29a8566db196381b8245b59a3999"} -2023-12-15T23:46:09.166Z INFO initializing dbft {"height": 6030, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:09.167Z debug frostfs-node/morph.go:229 new block {"index": 6029} -2023-12-15T23:46:09.548Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6029, "blockHeight": 6029, "took": "6.788789ms"} -2023-12-15T23:46:10.165Z INFO sending PrepareRequest {"height": 6030, "view": 0} -2023-12-15T23:46:10.166Z INFO sending Commit {"height": 6030, "view": 0} -2023-12-15T23:46:10.166Z INFO approving block {"height": 6030, "hash": "e63b1159ad6db09af3f0f243f43ff9b3fd38d852d2679dc68181a7a2926dfd21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e4f1a4dd49b18ebc58d93de940264421732ab21a69cb337b11eb9c64cf14659"} -2023-12-15T23:46:10.168Z INFO initializing dbft {"height": 6031, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:10.168Z debug frostfs-node/morph.go:229 new block {"index": 6030} -2023-12-15T23:46:10.551Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6030, "blockHeight": 6030, "took": "8.961132ms"} -2023-12-15T23:46:11.168Z INFO sending PrepareRequest {"height": 6031, "view": 0} -2023-12-15T23:46:11.168Z INFO sending Commit {"height": 6031, "view": 0} -2023-12-15T23:46:11.168Z INFO approving block {"height": 6031, "hash": "f79d84f7347e7c51be91d6a7bce77e55488b36fb3490c9b4c541cd814e1b12f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e63b1159ad6db09af3f0f243f43ff9b3fd38d852d2679dc68181a7a2926dfd21"} -2023-12-15T23:46:11.170Z INFO initializing dbft {"height": 6032, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:11.171Z debug frostfs-node/morph.go:229 new block {"index": 6031} -2023-12-15T23:46:11.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6031, "blockHeight": 6031, "took": "7.404288ms"} -2023-12-15T23:46:12.169Z INFO sending PrepareRequest {"height": 6032, "view": 0} -2023-12-15T23:46:12.170Z INFO sending Commit {"height": 6032, "view": 0} -2023-12-15T23:46:12.170Z INFO approving block {"height": 6032, "hash": "5d11fee3430432bfa1dcb0185f63aea03909caf98330cfead9b9181341cec0e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f79d84f7347e7c51be91d6a7bce77e55488b36fb3490c9b4c541cd814e1b12f8"} -2023-12-15T23:46:12.172Z INFO initializing dbft {"height": 6033, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:12.174Z debug frostfs-node/morph.go:229 new block {"index": 6032} -2023-12-15T23:46:12.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6032, "blockHeight": 6032, "took": "6.391333ms"} -2023-12-15T23:46:13.172Z INFO sending PrepareRequest {"height": 6033, "view": 0} -2023-12-15T23:46:13.172Z INFO sending Commit {"height": 6033, "view": 0} -2023-12-15T23:46:13.173Z INFO approving block {"height": 6033, "hash": "8ff5964372ae403960640694594978dffe2006700e39b702a4db4205025e9ca1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d11fee3430432bfa1dcb0185f63aea03909caf98330cfead9b9181341cec0e2"} -2023-12-15T23:46:13.175Z INFO initializing dbft {"height": 6034, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:13.176Z debug frostfs-node/morph.go:229 new block {"index": 6033} -2023-12-15T23:46:13.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6033, "blockHeight": 6033, "took": "6.130873ms"} -2023-12-15T23:46:14.175Z INFO sending PrepareRequest {"height": 6034, "view": 0} -2023-12-15T23:46:14.175Z INFO sending Commit {"height": 6034, "view": 0} -2023-12-15T23:46:14.175Z INFO approving block {"height": 6034, "hash": "d81ce2a92b5eaf706a956f71f6fdc9f86b6da8d79d6c3a79113823b64dd64133", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ff5964372ae403960640694594978dffe2006700e39b702a4db4205025e9ca1"} -2023-12-15T23:46:14.177Z INFO initializing dbft {"height": 6035, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:14.178Z debug frostfs-node/morph.go:229 new block {"index": 6034} -2023-12-15T23:46:14.552Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6034, "blockHeight": 6034, "took": "6.576732ms"} -2023-12-15T23:46:15.177Z INFO sending PrepareRequest {"height": 6035, "view": 0} -2023-12-15T23:46:15.177Z INFO sending Commit {"height": 6035, "view": 0} -2023-12-15T23:46:15.177Z INFO approving block {"height": 6035, "hash": "c2e5bc4e03c3081a6f7ed46c0b30b2bcf80214e0221b9db4347674500f61dc62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d81ce2a92b5eaf706a956f71f6fdc9f86b6da8d79d6c3a79113823b64dd64133"} -2023-12-15T23:46:15.179Z INFO initializing dbft {"height": 6036, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:15.179Z debug frostfs-node/morph.go:229 new block {"index": 6035} -2023-12-15T23:46:15.554Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6035, "blockHeight": 6035, "took": "7.5776ms"} -2023-12-15T23:46:16.178Z INFO sending PrepareRequest {"height": 6036, "view": 0} -2023-12-15T23:46:16.179Z INFO sending Commit {"height": 6036, "view": 0} -2023-12-15T23:46:16.179Z INFO approving block {"height": 6036, "hash": "3e5b42148e60766fd8336553623322d90da5e4dc65dca96eede674d5857b777e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2e5bc4e03c3081a6f7ed46c0b30b2bcf80214e0221b9db4347674500f61dc62"} -2023-12-15T23:46:16.182Z INFO initializing dbft {"height": 6037, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:16.183Z debug frostfs-node/morph.go:229 new block {"index": 6036} -2023-12-15T23:46:16.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6036, "blockHeight": 6036, "took": "7.812884ms"} -2023-12-15T23:46:17.180Z INFO sending PrepareRequest {"height": 6037, "view": 0} -2023-12-15T23:46:17.180Z INFO sending Commit {"height": 6037, "view": 0} -2023-12-15T23:46:17.181Z INFO approving block {"height": 6037, "hash": "bfa348d679df46dad731a7277112924d28cd969a83f3762abb4547447497a855", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e5b42148e60766fd8336553623322d90da5e4dc65dca96eede674d5857b777e"} -2023-12-15T23:46:17.183Z INFO initializing dbft {"height": 6038, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:17.183Z debug frostfs-node/morph.go:229 new block {"index": 6037} -2023-12-15T23:46:17.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6037, "blockHeight": 6037, "took": "6.002115ms"} -2023-12-15T23:46:18.182Z INFO sending PrepareRequest {"height": 6038, "view": 0} -2023-12-15T23:46:18.182Z INFO sending Commit {"height": 6038, "view": 0} -2023-12-15T23:46:18.182Z INFO approving block {"height": 6038, "hash": "ef068f326af3c317c0cee187cfdd88fe3a6e1324eda2bc341b2f6e5c44841fce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfa348d679df46dad731a7277112924d28cd969a83f3762abb4547447497a855"} -2023-12-15T23:46:18.184Z INFO initializing dbft {"height": 6039, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:18.185Z debug frostfs-node/morph.go:229 new block {"index": 6038} -2023-12-15T23:46:18.557Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6038, "blockHeight": 6038, "took": "6.322854ms"} -2023-12-15T23:46:19.184Z INFO sending PrepareRequest {"height": 6039, "view": 0} -2023-12-15T23:46:19.184Z INFO sending Commit {"height": 6039, "view": 0} -2023-12-15T23:46:19.185Z INFO approving block {"height": 6039, "hash": "92d408755a199ef1d13ce346ea7eee56a21e75b38f540cf85d6bafbcf6c0f7c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef068f326af3c317c0cee187cfdd88fe3a6e1324eda2bc341b2f6e5c44841fce"} -2023-12-15T23:46:19.187Z INFO initializing dbft {"height": 6040, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:19.188Z debug frostfs-node/morph.go:229 new block {"index": 6039} -2023-12-15T23:46:19.559Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6039, "blockHeight": 6039, "took": "7.651215ms"} -2023-12-15T23:46:20.186Z INFO sending PrepareRequest {"height": 6040, "view": 0} -2023-12-15T23:46:20.186Z INFO sending Commit {"height": 6040, "view": 0} -2023-12-15T23:46:20.186Z INFO approving block {"height": 6040, "hash": "4e7ba340c6155e110e2af37bf726a940d27d53f893f2379c923cc9237ad00310", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92d408755a199ef1d13ce346ea7eee56a21e75b38f540cf85d6bafbcf6c0f7c7"} -2023-12-15T23:46:20.188Z INFO initializing dbft {"height": 6041, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:20.189Z debug frostfs-node/morph.go:229 new block {"index": 6040} -2023-12-15T23:46:20.560Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6040, "blockHeight": 6040, "took": "8.142847ms"} -2023-12-15T23:46:21.188Z INFO sending PrepareRequest {"height": 6041, "view": 0} -2023-12-15T23:46:21.188Z INFO sending Commit {"height": 6041, "view": 0} -2023-12-15T23:46:21.189Z INFO approving block {"height": 6041, "hash": "c17535e2cc710a0b39662be62917cd4a61c45d5fe1a896131e190af8d2cc1a43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e7ba340c6155e110e2af37bf726a940d27d53f893f2379c923cc9237ad00310"} -2023-12-15T23:46:21.191Z INFO initializing dbft {"height": 6042, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:21.192Z debug frostfs-node/morph.go:229 new block {"index": 6041} -2023-12-15T23:46:21.560Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6041, "blockHeight": 6041, "took": "7.278905ms"} -2023-12-15T23:46:22.190Z INFO sending PrepareRequest {"height": 6042, "view": 0} -2023-12-15T23:46:22.190Z INFO sending Commit {"height": 6042, "view": 0} -2023-12-15T23:46:22.191Z INFO approving block {"height": 6042, "hash": "b64807266bb56abe52368c4a7cedf81d1954d1375d6931e9d4bdedc0846ef9f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c17535e2cc710a0b39662be62917cd4a61c45d5fe1a896131e190af8d2cc1a43"} -2023-12-15T23:46:22.192Z INFO initializing dbft {"height": 6043, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:22.193Z debug frostfs-node/morph.go:229 new block {"index": 6042} -2023-12-15T23:46:22.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6042, "blockHeight": 6042, "took": "6.304903ms"} -2023-12-15T23:46:23.192Z INFO sending PrepareRequest {"height": 6043, "view": 0} -2023-12-15T23:46:23.192Z INFO sending Commit {"height": 6043, "view": 0} -2023-12-15T23:46:23.192Z INFO approving block {"height": 6043, "hash": "0eb2e4487679a6fef3bf3365d5083d842accde2925bb689572b3942df8301619", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b64807266bb56abe52368c4a7cedf81d1954d1375d6931e9d4bdedc0846ef9f6"} -2023-12-15T23:46:23.194Z INFO initializing dbft {"height": 6044, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:23.195Z debug frostfs-node/morph.go:229 new block {"index": 6043} -2023-12-15T23:46:23.563Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6043, "blockHeight": 6043, "took": "7.326941ms"} -2023-12-15T23:46:24.194Z INFO sending PrepareRequest {"height": 6044, "view": 0} -2023-12-15T23:46:24.194Z INFO sending Commit {"height": 6044, "view": 0} -2023-12-15T23:46:24.194Z INFO approving block {"height": 6044, "hash": "5dd1392cbdaa73bb0e26df21af2e76d81e44a8d2d74867ce70b837e9b4627016", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0eb2e4487679a6fef3bf3365d5083d842accde2925bb689572b3942df8301619"} -2023-12-15T23:46:24.196Z INFO initializing dbft {"height": 6045, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:24.196Z debug frostfs-node/morph.go:229 new block {"index": 6044} -2023-12-15T23:46:24.563Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6044, "blockHeight": 6044, "took": "6.973405ms"} -2023-12-15T23:46:25.195Z INFO sending PrepareRequest {"height": 6045, "view": 0} -2023-12-15T23:46:25.196Z INFO sending Commit {"height": 6045, "view": 0} -2023-12-15T23:46:25.196Z INFO approving block {"height": 6045, "hash": "b38e18a5bf48c6f59130e44153177b130a9a63075d6e63bd59749fc8e5d7a785", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5dd1392cbdaa73bb0e26df21af2e76d81e44a8d2d74867ce70b837e9b4627016"} -2023-12-15T23:46:25.198Z INFO initializing dbft {"height": 6046, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:25.199Z debug frostfs-node/morph.go:229 new block {"index": 6045} -2023-12-15T23:46:25.564Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6045, "blockHeight": 6045, "took": "6.674152ms"} -2023-12-15T23:46:26.198Z INFO sending PrepareRequest {"height": 6046, "view": 0} -2023-12-15T23:46:26.198Z INFO sending Commit {"height": 6046, "view": 0} -2023-12-15T23:46:26.199Z INFO approving block {"height": 6046, "hash": "83493cd271fb0f5f86976de6c47950c6eda6ed3f6ad2eff6ce437629ce665a49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b38e18a5bf48c6f59130e44153177b130a9a63075d6e63bd59749fc8e5d7a785"} -2023-12-15T23:46:26.201Z INFO initializing dbft {"height": 6047, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:26.202Z debug frostfs-node/morph.go:229 new block {"index": 6046} -2023-12-15T23:46:26.565Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6046, "blockHeight": 6046, "took": "7.555811ms"} -2023-12-15T23:46:27.200Z INFO sending PrepareRequest {"height": 6047, "view": 0} -2023-12-15T23:46:27.200Z INFO sending Commit {"height": 6047, "view": 0} -2023-12-15T23:46:27.200Z INFO approving block {"height": 6047, "hash": "61e1aee2bdce52d1c1a5f29424a5d13b8e9f1235a1d9690f044ccfcf629cc871", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83493cd271fb0f5f86976de6c47950c6eda6ed3f6ad2eff6ce437629ce665a49"} -2023-12-15T23:46:27.202Z INFO initializing dbft {"height": 6048, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:27.203Z debug frostfs-node/morph.go:229 new block {"index": 6047} -2023-12-15T23:46:27.578Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6047, "blockHeight": 6047, "took": "19.933342ms"} -2023-12-15T23:46:28.201Z INFO sending PrepareRequest {"height": 6048, "view": 0} -2023-12-15T23:46:28.202Z INFO sending Commit {"height": 6048, "view": 0} -2023-12-15T23:46:28.202Z INFO approving block {"height": 6048, "hash": "917973985f90c69ec226ba6cca44038f787aabbb624b459999e0c7b829938c87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61e1aee2bdce52d1c1a5f29424a5d13b8e9f1235a1d9690f044ccfcf629cc871"} -2023-12-15T23:46:28.204Z INFO initializing dbft {"height": 6049, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:28.204Z debug frostfs-node/morph.go:229 new block {"index": 6048} -2023-12-15T23:46:28.570Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6048, "blockHeight": 6048, "took": "9.845525ms"} -2023-12-15T23:46:29.203Z INFO sending PrepareRequest {"height": 6049, "view": 0} -2023-12-15T23:46:29.204Z INFO sending Commit {"height": 6049, "view": 0} -2023-12-15T23:46:29.204Z INFO approving block {"height": 6049, "hash": "db554dacf2f45e36141032492cd4cc35ddb4b4c8879ab401a6190d4f3cdbe55f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "917973985f90c69ec226ba6cca44038f787aabbb624b459999e0c7b829938c87"} -2023-12-15T23:46:29.206Z INFO initializing dbft {"height": 6050, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:29.207Z debug frostfs-node/morph.go:229 new block {"index": 6049} -2023-12-15T23:46:29.569Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6049, "blockHeight": 6049, "took": "8.467885ms"} -2023-12-15T23:46:30.205Z INFO sending PrepareRequest {"height": 6050, "view": 0} -2023-12-15T23:46:30.206Z INFO sending Commit {"height": 6050, "view": 0} -2023-12-15T23:46:30.206Z INFO approving block {"height": 6050, "hash": "de0029003b22dd4b104d25032c7c825e343542b3b4bec0d78f08924febc67901", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db554dacf2f45e36141032492cd4cc35ddb4b4c8879ab401a6190d4f3cdbe55f"} -2023-12-15T23:46:30.207Z INFO initializing dbft {"height": 6051, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:30.208Z debug frostfs-node/morph.go:229 new block {"index": 6050} -2023-12-15T23:46:30.568Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6050, "blockHeight": 6050, "took": "6.946507ms"} -2023-12-15T23:46:31.208Z INFO sending PrepareRequest {"height": 6051, "view": 0} -2023-12-15T23:46:31.208Z INFO sending Commit {"height": 6051, "view": 0} -2023-12-15T23:46:31.208Z INFO approving block {"height": 6051, "hash": "dfc11dd5a52e04654680df403bfe780a174bc3d90f613882931d6dc9aa7e2072", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de0029003b22dd4b104d25032c7c825e343542b3b4bec0d78f08924febc67901"} -2023-12-15T23:46:31.210Z INFO initializing dbft {"height": 6052, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:31.211Z debug frostfs-node/morph.go:229 new block {"index": 6051} -2023-12-15T23:46:31.570Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6051, "blockHeight": 6051, "took": "7.497836ms"} -2023-12-15T23:46:32.210Z INFO sending PrepareRequest {"height": 6052, "view": 0} -2023-12-15T23:46:32.210Z INFO sending Commit {"height": 6052, "view": 0} -2023-12-15T23:46:32.210Z INFO approving block {"height": 6052, "hash": "5f79023adcb199210bcffb0485dfb01beee6b631d8999445e01d3b5e8c95a4ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfc11dd5a52e04654680df403bfe780a174bc3d90f613882931d6dc9aa7e2072"} -2023-12-15T23:46:32.211Z INFO initializing dbft {"height": 6053, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:32.212Z debug frostfs-node/morph.go:229 new block {"index": 6052} -2023-12-15T23:46:32.571Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6052, "blockHeight": 6052, "took": "7.410596ms"} -2023-12-15T23:46:33.212Z INFO sending PrepareRequest {"height": 6053, "view": 0} -2023-12-15T23:46:33.212Z INFO sending Commit {"height": 6053, "view": 0} -2023-12-15T23:46:33.212Z INFO approving block {"height": 6053, "hash": "09edf574340dab023f3a366f3c1c273f85199d5e3ff17935b9a4df47c329371f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f79023adcb199210bcffb0485dfb01beee6b631d8999445e01d3b5e8c95a4ae"} -2023-12-15T23:46:33.214Z INFO initializing dbft {"height": 6054, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:33.215Z debug frostfs-node/morph.go:229 new block {"index": 6053} -2023-12-15T23:46:33.572Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6053, "blockHeight": 6053, "took": "6.797728ms"} -2023-12-15T23:46:34.214Z INFO sending PrepareRequest {"height": 6054, "view": 0} -2023-12-15T23:46:34.214Z INFO sending Commit {"height": 6054, "view": 0} -2023-12-15T23:46:34.214Z INFO approving block {"height": 6054, "hash": "82074ab8e2e320d908039eac10b6c09fe038b23842322ef31c3f52278671742d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09edf574340dab023f3a366f3c1c273f85199d5e3ff17935b9a4df47c329371f"} -2023-12-15T23:46:34.216Z INFO initializing dbft {"height": 6055, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:34.217Z debug frostfs-node/morph.go:229 new block {"index": 6054} -2023-12-15T23:46:34.573Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6054, "blockHeight": 6054, "took": "7.678973ms"} -2023-12-15T23:46:35.215Z INFO sending PrepareRequest {"height": 6055, "view": 0} -2023-12-15T23:46:35.216Z INFO sending Commit {"height": 6055, "view": 0} -2023-12-15T23:46:35.216Z INFO approving block {"height": 6055, "hash": "8db0001da03eff752444847b143be60a18b8282661b34334730cd7c0754ed91f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82074ab8e2e320d908039eac10b6c09fe038b23842322ef31c3f52278671742d"} -2023-12-15T23:46:35.218Z INFO initializing dbft {"height": 6056, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:35.219Z debug frostfs-node/morph.go:229 new block {"index": 6055} -2023-12-15T23:46:35.574Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6055, "blockHeight": 6055, "took": "6.906232ms"} -2023-12-15T23:46:36.218Z INFO sending PrepareRequest {"height": 6056, "view": 0} -2023-12-15T23:46:36.218Z INFO sending Commit {"height": 6056, "view": 0} -2023-12-15T23:46:36.219Z INFO approving block {"height": 6056, "hash": "22990e65d8430804ed51f3ef44f431f851f8be15af3431b87a690cc09cc25690", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8db0001da03eff752444847b143be60a18b8282661b34334730cd7c0754ed91f"} -2023-12-15T23:46:36.220Z INFO initializing dbft {"height": 6057, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:36.221Z debug frostfs-node/morph.go:229 new block {"index": 6056} -2023-12-15T23:46:36.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6056, "blockHeight": 6056, "took": "6.626053ms"} -2023-12-15T23:46:37.220Z INFO sending PrepareRequest {"height": 6057, "view": 0} -2023-12-15T23:46:37.220Z INFO sending Commit {"height": 6057, "view": 0} -2023-12-15T23:46:37.221Z INFO approving block {"height": 6057, "hash": "aba81480cd7e9a300d182c5a753eb76edcb149444a73a45d9c6a4cbaab96ea1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22990e65d8430804ed51f3ef44f431f851f8be15af3431b87a690cc09cc25690"} -2023-12-15T23:46:37.222Z INFO initializing dbft {"height": 6058, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:37.223Z debug frostfs-node/morph.go:229 new block {"index": 6057} -2023-12-15T23:46:37.576Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6057, "blockHeight": 6057, "took": "7.53353ms"} -2023-12-15T23:46:38.222Z INFO sending PrepareRequest {"height": 6058, "view": 0} -2023-12-15T23:46:38.223Z INFO sending Commit {"height": 6058, "view": 0} -2023-12-15T23:46:38.223Z INFO approving block {"height": 6058, "hash": "6817f1b679dc755b9bfa653dabb4a98e831880af23e1a385ab04dea6af802805", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aba81480cd7e9a300d182c5a753eb76edcb149444a73a45d9c6a4cbaab96ea1d"} -2023-12-15T23:46:38.225Z INFO initializing dbft {"height": 6059, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:38.226Z debug frostfs-node/morph.go:229 new block {"index": 6058} -2023-12-15T23:46:38.577Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6058, "blockHeight": 6058, "took": "7.814418ms"} -2023-12-15T23:46:39.224Z INFO sending PrepareRequest {"height": 6059, "view": 0} -2023-12-15T23:46:39.225Z INFO sending Commit {"height": 6059, "view": 0} -2023-12-15T23:46:39.225Z INFO approving block {"height": 6059, "hash": "9b5a69f1becf63147f76eccd305fbe49b3d200138a5036d582cd02c376a89b78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6817f1b679dc755b9bfa653dabb4a98e831880af23e1a385ab04dea6af802805"} -2023-12-15T23:46:39.226Z INFO initializing dbft {"height": 6060, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:39.227Z debug frostfs-node/morph.go:229 new block {"index": 6059} -2023-12-15T23:46:39.577Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6059, "blockHeight": 6059, "took": "7.402796ms"} -2023-12-15T23:46:40.226Z INFO sending PrepareRequest {"height": 6060, "view": 0} -2023-12-15T23:46:40.227Z INFO sending Commit {"height": 6060, "view": 0} -2023-12-15T23:46:40.227Z INFO approving block {"height": 6060, "hash": "d8a3756dcc1fba39c7f2ee12d72bc21293dc5a5aeda8dceca06936541e4de7b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b5a69f1becf63147f76eccd305fbe49b3d200138a5036d582cd02c376a89b78"} -2023-12-15T23:46:40.229Z INFO initializing dbft {"height": 6061, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:40.230Z debug frostfs-node/morph.go:229 new block {"index": 6060} -2023-12-15T23:46:40.576Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6060, "blockHeight": 6060, "took": "6.554051ms"} -2023-12-15T23:46:41.228Z INFO sending PrepareRequest {"height": 6061, "view": 0} -2023-12-15T23:46:41.229Z INFO sending Commit {"height": 6061, "view": 0} -2023-12-15T23:46:41.229Z INFO approving block {"height": 6061, "hash": "af32dce8df33b6e1ba6cd99bcbd8ff43dc6dc934bb25779631e66cda21fda726", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8a3756dcc1fba39c7f2ee12d72bc21293dc5a5aeda8dceca06936541e4de7b1"} -2023-12-15T23:46:41.230Z INFO initializing dbft {"height": 6062, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:41.230Z debug frostfs-node/morph.go:229 new block {"index": 6061} -2023-12-15T23:46:41.578Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6061, "blockHeight": 6061, "took": "6.946092ms"} -2023-12-15T23:46:42.230Z INFO sending PrepareRequest {"height": 6062, "view": 0} -2023-12-15T23:46:42.230Z INFO sending Commit {"height": 6062, "view": 0} -2023-12-15T23:46:42.230Z INFO approving block {"height": 6062, "hash": "90664e67286de65d22f66e9cf68ce21de940a781b00e635850b3e7d2282fc586", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af32dce8df33b6e1ba6cd99bcbd8ff43dc6dc934bb25779631e66cda21fda726"} -2023-12-15T23:46:42.232Z INFO initializing dbft {"height": 6063, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:42.233Z debug frostfs-node/morph.go:229 new block {"index": 6062} -2023-12-15T23:46:42.580Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6062, "blockHeight": 6062, "took": "8.124767ms"} -2023-12-15T23:46:43.231Z INFO sending PrepareRequest {"height": 6063, "view": 0} -2023-12-15T23:46:43.231Z INFO sending Commit {"height": 6063, "view": 0} -2023-12-15T23:46:43.232Z INFO approving block {"height": 6063, "hash": "78c4fa3751831b74b96375d15d3b8d2861ee10250f5ac22ed1af6dede936aca3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90664e67286de65d22f66e9cf68ce21de940a781b00e635850b3e7d2282fc586"} -2023-12-15T23:46:43.236Z INFO initializing dbft {"height": 6064, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:43.240Z debug frostfs-node/morph.go:229 new block {"index": 6063} -2023-12-15T23:46:43.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6063, "blockHeight": 6063, "took": "10.35517ms"} -2023-12-15T23:46:44.234Z INFO sending PrepareRequest {"height": 6064, "view": 0} -2023-12-15T23:46:44.234Z INFO sending Commit {"height": 6064, "view": 0} -2023-12-15T23:46:44.234Z INFO approving block {"height": 6064, "hash": "022661c6956acddbdefd8473fac2ca802ca6bc8028ad7854ca14241cf5fc981e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78c4fa3751831b74b96375d15d3b8d2861ee10250f5ac22ed1af6dede936aca3"} -2023-12-15T23:46:44.236Z INFO initializing dbft {"height": 6065, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:44.237Z debug frostfs-node/morph.go:229 new block {"index": 6064} -2023-12-15T23:46:44.582Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6064, "blockHeight": 6064, "took": "7.672024ms"} -2023-12-15T23:46:45.236Z INFO sending PrepareRequest {"height": 6065, "view": 0} -2023-12-15T23:46:45.237Z INFO sending Commit {"height": 6065, "view": 0} -2023-12-15T23:46:45.238Z INFO approving block {"height": 6065, "hash": "071d505e3157760e4c9c7d3fecc1497197247cfc8f42058f531155baeb95cd47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "022661c6956acddbdefd8473fac2ca802ca6bc8028ad7854ca14241cf5fc981e"} -2023-12-15T23:46:45.239Z INFO initializing dbft {"height": 6066, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:45.240Z debug frostfs-node/morph.go:229 new block {"index": 6065} -2023-12-15T23:46:45.582Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6065, "blockHeight": 6065, "took": "7.142629ms"} -2023-12-15T23:46:46.239Z INFO sending PrepareRequest {"height": 6066, "view": 0} -2023-12-15T23:46:46.239Z INFO sending Commit {"height": 6066, "view": 0} -2023-12-15T23:46:46.240Z INFO approving block {"height": 6066, "hash": "05955265be55d1849c2943fc7596ec73e59035bf098d1d2432a56f391ae7a158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "071d505e3157760e4c9c7d3fecc1497197247cfc8f42058f531155baeb95cd47"} -2023-12-15T23:46:46.241Z INFO initializing dbft {"height": 6067, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:46.242Z debug frostfs-node/morph.go:229 new block {"index": 6066} -2023-12-15T23:46:46.587Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6066, "blockHeight": 6066, "took": "10.849457ms"} -2023-12-15T23:46:47.241Z INFO sending PrepareRequest {"height": 6067, "view": 0} -2023-12-15T23:46:47.241Z INFO sending Commit {"height": 6067, "view": 0} -2023-12-15T23:46:47.241Z INFO approving block {"height": 6067, "hash": "2a823ea6fe4131b426f72f1200ebb84e2537e570d5e93b17568972de981d237b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05955265be55d1849c2943fc7596ec73e59035bf098d1d2432a56f391ae7a158"} -2023-12-15T23:46:47.243Z INFO initializing dbft {"height": 6068, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:47.244Z debug frostfs-node/morph.go:229 new block {"index": 6067} -2023-12-15T23:46:47.248Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:46:47.253Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:46:47.254Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:46:47.587Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6067, "blockHeight": 6067, "took": "9.290842ms"} -2023-12-15T23:46:48.242Z INFO sending PrepareRequest {"height": 6068, "view": 0} -2023-12-15T23:46:48.243Z INFO sending Commit {"height": 6068, "view": 0} -2023-12-15T23:46:48.243Z INFO approving block {"height": 6068, "hash": "e2eba07d6323c59fe4ffae34b52d8f1d826212623d1896a1eb573e28fc241090", "tx_count": 2, "merkle": "9e2a11da4ad7a3f1fe44f5dc2d8a33eb05d69bee333f9dfd890e0a608134c9d8", "prev": "2a823ea6fe4131b426f72f1200ebb84e2537e570d5e93b17568972de981d237b"} -2023-12-15T23:46:48.244Z INFO runtime log {"tx": "a83517f1b0aa17d9161c9865c821ae4854a3bcce19693e4344296deae6c1a106", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:46:48.244Z INFO runtime log {"tx": "a83517f1b0aa17d9161c9865c821ae4854a3bcce19693e4344296deae6c1a106", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:46:48.246Z INFO initializing dbft {"height": 6069, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:48.247Z debug frostfs-node/morph.go:229 new block {"index": 6068} -2023-12-15T23:46:48.591Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6068, "blockHeight": 6068, "took": "12.314821ms"} -2023-12-15T23:46:49.244Z INFO sending PrepareRequest {"height": 6069, "view": 0} -2023-12-15T23:46:49.245Z INFO sending Commit {"height": 6069, "view": 0} -2023-12-15T23:46:49.245Z INFO approving block {"height": 6069, "hash": "645d9e6428221e5bc767c7fdfb6459305ac620f1bba6ba1e682a2290a4e0559f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2eba07d6323c59fe4ffae34b52d8f1d826212623d1896a1eb573e28fc241090"} -2023-12-15T23:46:49.247Z INFO initializing dbft {"height": 6070, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:49.247Z debug frostfs-node/morph.go:229 new block {"index": 6069} -2023-12-15T23:46:49.587Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6069, "blockHeight": 6069, "took": "7.071088ms"} -2023-12-15T23:46:50.247Z INFO sending PrepareRequest {"height": 6070, "view": 0} -2023-12-15T23:46:50.248Z INFO sending Commit {"height": 6070, "view": 0} -2023-12-15T23:46:50.249Z INFO approving block {"height": 6070, "hash": "f50df37c7bc5d7fe92ed797c3e046b90adffe93c498f318a61d0f27bb2ef4083", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "645d9e6428221e5bc767c7fdfb6459305ac620f1bba6ba1e682a2290a4e0559f"} -2023-12-15T23:46:50.252Z INFO initializing dbft {"height": 6071, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:50.253Z debug frostfs-node/morph.go:229 new block {"index": 6070} -2023-12-15T23:46:50.588Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6070, "blockHeight": 6070, "took": "7.235783ms"} -2023-12-15T23:46:51.251Z INFO sending PrepareRequest {"height": 6071, "view": 0} -2023-12-15T23:46:51.251Z INFO sending Commit {"height": 6071, "view": 0} -2023-12-15T23:46:51.251Z INFO approving block {"height": 6071, "hash": "da5886d3e7a2b081e52db4dbee815ca2ce563cc4b2631577326a0915defa1aa5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f50df37c7bc5d7fe92ed797c3e046b90adffe93c498f318a61d0f27bb2ef4083"} -2023-12-15T23:46:51.253Z INFO initializing dbft {"height": 6072, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:51.254Z debug frostfs-node/morph.go:229 new block {"index": 6071} -2023-12-15T23:46:51.588Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6071, "blockHeight": 6071, "took": "7.001446ms"} -2023-12-15T23:46:52.253Z INFO sending PrepareRequest {"height": 6072, "view": 0} -2023-12-15T23:46:52.253Z INFO sending Commit {"height": 6072, "view": 0} -2023-12-15T23:46:52.253Z INFO approving block {"height": 6072, "hash": "4d1b2a08e49b9bc44df36972e58c15902642c15c8b517a8ff276fa3f9e93c1e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da5886d3e7a2b081e52db4dbee815ca2ce563cc4b2631577326a0915defa1aa5"} -2023-12-15T23:46:52.255Z INFO initializing dbft {"height": 6073, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:52.256Z debug frostfs-node/morph.go:229 new block {"index": 6072} -2023-12-15T23:46:52.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6072, "blockHeight": 6072, "took": "6.669456ms"} -2023-12-15T23:46:53.255Z INFO sending PrepareRequest {"height": 6073, "view": 0} -2023-12-15T23:46:53.255Z INFO sending Commit {"height": 6073, "view": 0} -2023-12-15T23:46:53.256Z INFO approving block {"height": 6073, "hash": "7be270ad8f2a4ed5194e2e8fc7667818f8b7e576a67b8dd9be2d41421cea8a23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d1b2a08e49b9bc44df36972e58c15902642c15c8b517a8ff276fa3f9e93c1e6"} -2023-12-15T23:46:53.258Z INFO initializing dbft {"height": 6074, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:53.258Z debug frostfs-node/morph.go:229 new block {"index": 6073} -2023-12-15T23:46:53.591Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6073, "blockHeight": 6073, "took": "7.295163ms"} -2023-12-15T23:46:54.257Z INFO sending PrepareRequest {"height": 6074, "view": 0} -2023-12-15T23:46:54.258Z INFO sending Commit {"height": 6074, "view": 0} -2023-12-15T23:46:54.258Z INFO approving block {"height": 6074, "hash": "a4813518f1ef0c46f3c98eb7104fb7637745c035dd8c78e13a78b99dbd01f1ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7be270ad8f2a4ed5194e2e8fc7667818f8b7e576a67b8dd9be2d41421cea8a23"} -2023-12-15T23:46:54.260Z INFO initializing dbft {"height": 6075, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:54.261Z debug frostfs-node/morph.go:229 new block {"index": 6074} -2023-12-15T23:46:54.591Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6074, "blockHeight": 6074, "took": "7.148915ms"} -2023-12-15T23:46:55.259Z INFO sending PrepareRequest {"height": 6075, "view": 0} -2023-12-15T23:46:55.259Z INFO sending Commit {"height": 6075, "view": 0} -2023-12-15T23:46:55.260Z INFO approving block {"height": 6075, "hash": "3c5bbf2e96fb5075a914c9f0825301ec584eb630afb5f0330c70ea113708aeb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4813518f1ef0c46f3c98eb7104fb7637745c035dd8c78e13a78b99dbd01f1ee"} -2023-12-15T23:46:55.261Z INFO initializing dbft {"height": 6076, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:55.262Z debug frostfs-node/morph.go:229 new block {"index": 6075} -2023-12-15T23:46:55.592Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6075, "blockHeight": 6075, "took": "7.161329ms"} -2023-12-15T23:46:56.261Z INFO sending PrepareRequest {"height": 6076, "view": 0} -2023-12-15T23:46:56.261Z INFO sending Commit {"height": 6076, "view": 0} -2023-12-15T23:46:56.262Z INFO approving block {"height": 6076, "hash": "19999141326ddb28f3ec3c5f726292668b46601674645689cc7de8233882092f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c5bbf2e96fb5075a914c9f0825301ec584eb630afb5f0330c70ea113708aeb5"} -2023-12-15T23:46:56.263Z INFO initializing dbft {"height": 6077, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:56.264Z debug frostfs-node/morph.go:229 new block {"index": 6076} -2023-12-15T23:46:56.592Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6076, "blockHeight": 6076, "took": "6.521801ms"} -2023-12-15T23:46:57.263Z INFO sending PrepareRequest {"height": 6077, "view": 0} -2023-12-15T23:46:57.263Z INFO sending Commit {"height": 6077, "view": 0} -2023-12-15T23:46:57.264Z INFO approving block {"height": 6077, "hash": "98479fe11019eb0532db8c8f14d6097fdba8a988893ff19e94e48198d3f5b0af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19999141326ddb28f3ec3c5f726292668b46601674645689cc7de8233882092f"} -2023-12-15T23:46:57.265Z INFO initializing dbft {"height": 6078, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:57.266Z debug frostfs-node/morph.go:229 new block {"index": 6077} -2023-12-15T23:46:57.595Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6077, "blockHeight": 6077, "took": "9.110731ms"} -2023-12-15T23:46:58.265Z INFO sending PrepareRequest {"height": 6078, "view": 0} -2023-12-15T23:46:58.265Z INFO sending Commit {"height": 6078, "view": 0} -2023-12-15T23:46:58.266Z INFO approving block {"height": 6078, "hash": "1a13543264987427d710cefe0fe09f4384b5fd5346088a6bf6ae0ed2f2d3a811", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98479fe11019eb0532db8c8f14d6097fdba8a988893ff19e94e48198d3f5b0af"} -2023-12-15T23:46:58.268Z INFO initializing dbft {"height": 6079, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:58.269Z debug frostfs-node/morph.go:229 new block {"index": 6078} -2023-12-15T23:46:58.594Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6078, "blockHeight": 6078, "took": "6.976714ms"} -2023-12-15T23:46:59.267Z INFO sending PrepareRequest {"height": 6079, "view": 0} -2023-12-15T23:46:59.268Z INFO sending Commit {"height": 6079, "view": 0} -2023-12-15T23:46:59.268Z INFO approving block {"height": 6079, "hash": "c05543f5d83474b7bded95b6bc5b18f82ae8fbce8b3c854593de034d9fa908b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a13543264987427d710cefe0fe09f4384b5fd5346088a6bf6ae0ed2f2d3a811"} -2023-12-15T23:46:59.270Z INFO initializing dbft {"height": 6080, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:46:59.271Z debug frostfs-node/morph.go:229 new block {"index": 6079} -2023-12-15T23:46:59.596Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6079, "blockHeight": 6079, "took": "7.285312ms"} -2023-12-15T23:47:00.269Z INFO sending PrepareRequest {"height": 6080, "view": 0} -2023-12-15T23:47:00.270Z INFO sending Commit {"height": 6080, "view": 0} -2023-12-15T23:47:00.270Z INFO approving block {"height": 6080, "hash": "6bff546627269e356f21da5514607859a94c178a5dd702d143f6a6cce946e79b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c05543f5d83474b7bded95b6bc5b18f82ae8fbce8b3c854593de034d9fa908b0"} -2023-12-15T23:47:00.273Z INFO initializing dbft {"height": 6081, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:00.273Z debug frostfs-node/morph.go:229 new block {"index": 6080} -2023-12-15T23:47:00.597Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6080, "blockHeight": 6080, "took": "7.007144ms"} -2023-12-15T23:47:01.271Z INFO sending PrepareRequest {"height": 6081, "view": 0} -2023-12-15T23:47:01.271Z INFO sending Commit {"height": 6081, "view": 0} -2023-12-15T23:47:01.272Z INFO approving block {"height": 6081, "hash": "3777003f336af5ca8e0788a81dc175e18536d2594b165cfa85761ea979c1aa23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bff546627269e356f21da5514607859a94c178a5dd702d143f6a6cce946e79b"} -2023-12-15T23:47:01.273Z INFO initializing dbft {"height": 6082, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:01.274Z debug frostfs-node/morph.go:229 new block {"index": 6081} -2023-12-15T23:47:01.598Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6081, "blockHeight": 6081, "took": "7.799962ms"} -2023-12-15T23:47:02.273Z INFO sending PrepareRequest {"height": 6082, "view": 0} -2023-12-15T23:47:02.273Z INFO sending Commit {"height": 6082, "view": 0} -2023-12-15T23:47:02.273Z INFO approving block {"height": 6082, "hash": "bc3c61e2fc5d5ccc9cdb14ee28e0c17661dd3878d4fa7bc360ed5a4f42860458", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3777003f336af5ca8e0788a81dc175e18536d2594b165cfa85761ea979c1aa23"} -2023-12-15T23:47:02.276Z INFO initializing dbft {"height": 6083, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:02.277Z debug frostfs-node/morph.go:229 new block {"index": 6082} -2023-12-15T23:47:02.598Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6082, "blockHeight": 6082, "took": "6.649304ms"} -2023-12-15T23:47:03.276Z INFO sending PrepareRequest {"height": 6083, "view": 0} -2023-12-15T23:47:03.276Z INFO sending Commit {"height": 6083, "view": 0} -2023-12-15T23:47:03.276Z INFO approving block {"height": 6083, "hash": "b320d43c8ea56dd7806a1d50e80e9ec34a12e2414a07b087c021bbb00933dcca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc3c61e2fc5d5ccc9cdb14ee28e0c17661dd3878d4fa7bc360ed5a4f42860458"} -2023-12-15T23:47:03.278Z INFO initializing dbft {"height": 6084, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:03.279Z debug frostfs-node/morph.go:229 new block {"index": 6083} -2023-12-15T23:47:03.600Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6083, "blockHeight": 6083, "took": "8.266101ms"} -2023-12-15T23:47:04.277Z INFO sending PrepareRequest {"height": 6084, "view": 0} -2023-12-15T23:47:04.278Z INFO sending Commit {"height": 6084, "view": 0} -2023-12-15T23:47:04.278Z INFO approving block {"height": 6084, "hash": "c3167d4bda726933b774e4ad2909a66a3a06c147fea25bdbead0cf00acf2136d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b320d43c8ea56dd7806a1d50e80e9ec34a12e2414a07b087c021bbb00933dcca"} -2023-12-15T23:47:04.279Z INFO initializing dbft {"height": 6085, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:04.280Z debug frostfs-node/morph.go:229 new block {"index": 6084} -2023-12-15T23:47:04.602Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6084, "blockHeight": 6084, "took": "8.872242ms"} -2023-12-15T23:47:05.279Z INFO sending PrepareRequest {"height": 6085, "view": 0} -2023-12-15T23:47:05.280Z INFO sending Commit {"height": 6085, "view": 0} -2023-12-15T23:47:05.280Z INFO approving block {"height": 6085, "hash": "82a4358dba5d689ff1e6f1bd5b294c805ddca8bb891493720a8620ffaa248cc3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3167d4bda726933b774e4ad2909a66a3a06c147fea25bdbead0cf00acf2136d"} -2023-12-15T23:47:05.282Z INFO initializing dbft {"height": 6086, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:05.283Z debug frostfs-node/morph.go:229 new block {"index": 6085} -2023-12-15T23:47:05.290Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 26 epoch for daughters"} -2023-12-15T23:47:05.293Z INFO runtime log {"tx": "18a9ef49dccbe6fa577916df309af4e3268d8174fecf2ec33de3ef4e0ad9729b", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:47:05.602Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6085, "blockHeight": 6085, "took": "8.387657ms"} -2023-12-15T23:47:06.282Z INFO sending PrepareRequest {"height": 6086, "view": 0} -2023-12-15T23:47:06.282Z INFO sending Commit {"height": 6086, "view": 0} -2023-12-15T23:47:06.283Z INFO approving block {"height": 6086, "hash": "859c19f282492b4ca8eca3371f85ac8a8166d3637b0323db6b3d29539787d094", "tx_count": 1, "merkle": "96048c179afb4a3eb03c6a75a487148f9d21849a1596d4f08fe0ed25f0d8f4b8", "prev": "82a4358dba5d689ff1e6f1bd5b294c805ddca8bb891493720a8620ffaa248cc3"} -2023-12-15T23:47:06.284Z INFO runtime log {"tx": "b8f4d8f025ede08ff0d496159a84219d8f1487a4756a3cb03e4afb9a178c0496", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:47:06.285Z INFO initializing dbft {"height": 6087, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:06.286Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 26} -2023-12-15T23:47:06.286Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 26} -2023-12-15T23:47:06.286Z debug frostfs-node/morph.go:229 new block {"index": 6086} -2023-12-15T23:47:06.605Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 6086, "blockHeight": 6086, "took": "10.305523ms"} -2023-12-15T23:47:07.284Z INFO sending PrepareRequest {"height": 6087, "view": 0} -2023-12-15T23:47:07.284Z INFO sending Commit {"height": 6087, "view": 0} -2023-12-15T23:47:07.285Z INFO approving block {"height": 6087, "hash": "3668d416aad67e15f9b9917a468a631acab851ea24c478708ec1a92bf5750463", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "859c19f282492b4ca8eca3371f85ac8a8166d3637b0323db6b3d29539787d094"} -2023-12-15T23:47:07.286Z INFO initializing dbft {"height": 6088, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:07.287Z debug frostfs-node/morph.go:229 new block {"index": 6087} -2023-12-15T23:47:07.602Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6087, "blockHeight": 6087, "took": "6.175502ms"} -2023-12-15T23:47:08.286Z INFO sending PrepareRequest {"height": 6088, "view": 0} -2023-12-15T23:47:08.286Z INFO sending Commit {"height": 6088, "view": 0} -2023-12-15T23:47:08.286Z INFO approving block {"height": 6088, "hash": "ca3ebcea933bae6e39d6e153a1bc02e9c51c770ea0cec0bb344acc736a92f197", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3668d416aad67e15f9b9917a468a631acab851ea24c478708ec1a92bf5750463"} -2023-12-15T23:47:08.288Z INFO initializing dbft {"height": 6089, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:08.289Z debug frostfs-node/morph.go:229 new block {"index": 6088} -2023-12-15T23:47:08.604Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6088, "blockHeight": 6088, "took": "7.146157ms"} -2023-12-15T23:47:09.288Z INFO sending PrepareRequest {"height": 6089, "view": 0} -2023-12-15T23:47:09.288Z INFO sending Commit {"height": 6089, "view": 0} -2023-12-15T23:47:09.288Z INFO approving block {"height": 6089, "hash": "90e19b109e23ea2f5608721bd8da473e355c22ac155c04f119ff7c2f4e0e55f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca3ebcea933bae6e39d6e153a1bc02e9c51c770ea0cec0bb344acc736a92f197"} -2023-12-15T23:47:09.290Z INFO initializing dbft {"height": 6090, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:09.291Z debug frostfs-node/morph.go:229 new block {"index": 6089} -2023-12-15T23:47:09.606Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6089, "blockHeight": 6089, "took": "7.662105ms"} -2023-12-15T23:47:10.290Z INFO sending PrepareRequest {"height": 6090, "view": 0} -2023-12-15T23:47:10.290Z INFO sending Commit {"height": 6090, "view": 0} -2023-12-15T23:47:10.291Z INFO approving block {"height": 6090, "hash": "71c492b755d11cc57b173bf2bffe175df1aa9611589305f1e9cd77e0b02b6855", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90e19b109e23ea2f5608721bd8da473e355c22ac155c04f119ff7c2f4e0e55f6"} -2023-12-15T23:47:10.292Z INFO initializing dbft {"height": 6091, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:10.293Z debug frostfs-node/morph.go:229 new block {"index": 6090} -2023-12-15T23:47:10.606Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6090, "blockHeight": 6090, "took": "6.707838ms"} -2023-12-15T23:47:11.292Z INFO sending PrepareRequest {"height": 6091, "view": 0} -2023-12-15T23:47:11.292Z INFO sending Commit {"height": 6091, "view": 0} -2023-12-15T23:47:11.293Z INFO approving block {"height": 6091, "hash": "c78705417d050a4d978d5826027ceda879504b8820380d602f8cd8783635c400", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71c492b755d11cc57b173bf2bffe175df1aa9611589305f1e9cd77e0b02b6855"} -2023-12-15T23:47:11.295Z INFO initializing dbft {"height": 6092, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:11.295Z debug frostfs-node/morph.go:229 new block {"index": 6091} -2023-12-15T23:47:11.610Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6091, "blockHeight": 6091, "took": "9.606952ms"} -2023-12-15T23:47:12.294Z INFO sending PrepareRequest {"height": 6092, "view": 0} -2023-12-15T23:47:12.294Z INFO sending Commit {"height": 6092, "view": 0} -2023-12-15T23:47:12.295Z INFO approving block {"height": 6092, "hash": "3c5b921085862649f455f94c8b7d3d9ba3bb8d486b432baed4ab72363fa144f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c78705417d050a4d978d5826027ceda879504b8820380d602f8cd8783635c400"} -2023-12-15T23:47:12.296Z INFO initializing dbft {"height": 6093, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:12.297Z debug frostfs-node/morph.go:229 new block {"index": 6092} -2023-12-15T23:47:12.608Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6092, "blockHeight": 6092, "took": "7.386637ms"} -2023-12-15T23:47:13.296Z INFO sending PrepareRequest {"height": 6093, "view": 0} -2023-12-15T23:47:13.296Z INFO sending Commit {"height": 6093, "view": 0} -2023-12-15T23:47:13.297Z INFO approving block {"height": 6093, "hash": "1b4f5bf9050d68f7f35ed3af6d513f3f994dad83e170a3c1bce966dc34b2d725", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c5b921085862649f455f94c8b7d3d9ba3bb8d486b432baed4ab72363fa144f1"} -2023-12-15T23:47:13.299Z INFO initializing dbft {"height": 6094, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:13.300Z debug frostfs-node/morph.go:229 new block {"index": 6093} -2023-12-15T23:47:13.612Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6093, "blockHeight": 6093, "took": "10.888143ms"} -2023-12-15T23:47:14.298Z INFO sending PrepareRequest {"height": 6094, "view": 0} -2023-12-15T23:47:14.298Z INFO sending Commit {"height": 6094, "view": 0} -2023-12-15T23:47:14.298Z INFO approving block {"height": 6094, "hash": "2f58c1dfcd42cf31c113015b3164812bad29ca3d84b68a2f9c69ec4e21c0dfd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b4f5bf9050d68f7f35ed3af6d513f3f994dad83e170a3c1bce966dc34b2d725"} -2023-12-15T23:47:14.300Z INFO initializing dbft {"height": 6095, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:14.301Z debug frostfs-node/morph.go:229 new block {"index": 6094} -2023-12-15T23:47:14.609Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6094, "blockHeight": 6094, "took": "7.005956ms"} -2023-12-15T23:47:15.300Z INFO sending PrepareRequest {"height": 6095, "view": 0} -2023-12-15T23:47:15.300Z INFO sending Commit {"height": 6095, "view": 0} -2023-12-15T23:47:15.300Z INFO approving block {"height": 6095, "hash": "8b8943e32707f1b9e3b4d694d83a3d629c32b50ca7fe25be26fc647da56f64b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f58c1dfcd42cf31c113015b3164812bad29ca3d84b68a2f9c69ec4e21c0dfd6"} -2023-12-15T23:47:15.302Z INFO initializing dbft {"height": 6096, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:15.303Z debug frostfs-node/morph.go:229 new block {"index": 6095} -2023-12-15T23:47:15.613Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6095, "blockHeight": 6095, "took": "9.369081ms"} -2023-12-15T23:47:16.302Z INFO sending PrepareRequest {"height": 6096, "view": 0} -2023-12-15T23:47:16.302Z INFO sending Commit {"height": 6096, "view": 0} -2023-12-15T23:47:16.302Z INFO approving block {"height": 6096, "hash": "ebfc252de018bda471a3a62c6da534e5b9d6fa65684c4520d8e7169da3aaf9b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b8943e32707f1b9e3b4d694d83a3d629c32b50ca7fe25be26fc647da56f64b0"} -2023-12-15T23:47:16.304Z INFO initializing dbft {"height": 6097, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:16.304Z debug frostfs-node/morph.go:229 new block {"index": 6096} -2023-12-15T23:47:16.611Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6096, "blockHeight": 6096, "took": "6.816392ms"} -2023-12-15T23:47:17.303Z INFO sending PrepareRequest {"height": 6097, "view": 0} -2023-12-15T23:47:17.303Z INFO sending Commit {"height": 6097, "view": 0} -2023-12-15T23:47:17.304Z INFO approving block {"height": 6097, "hash": "88cb839176eec3cf6308d19a32369d197980e64cefbba051fcc559d864ad650b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebfc252de018bda471a3a62c6da534e5b9d6fa65684c4520d8e7169da3aaf9b7"} -2023-12-15T23:47:17.306Z INFO initializing dbft {"height": 6098, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:17.307Z debug frostfs-node/morph.go:229 new block {"index": 6097} -2023-12-15T23:47:17.613Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6097, "blockHeight": 6097, "took": "7.338202ms"} -2023-12-15T23:47:18.305Z INFO sending PrepareRequest {"height": 6098, "view": 0} -2023-12-15T23:47:18.306Z INFO sending Commit {"height": 6098, "view": 0} -2023-12-15T23:47:18.306Z INFO approving block {"height": 6098, "hash": "3851b470cd14c9b8829b6c5be6dee05ad01bdb25387028686ef8e1ad7fef81b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88cb839176eec3cf6308d19a32369d197980e64cefbba051fcc559d864ad650b"} -2023-12-15T23:47:18.308Z INFO initializing dbft {"height": 6099, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:18.309Z debug frostfs-node/morph.go:229 new block {"index": 6098} -2023-12-15T23:47:18.615Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6098, "blockHeight": 6098, "took": "8.058906ms"} -2023-12-15T23:47:19.307Z INFO sending PrepareRequest {"height": 6099, "view": 0} -2023-12-15T23:47:19.308Z INFO sending Commit {"height": 6099, "view": 0} -2023-12-15T23:47:19.308Z INFO approving block {"height": 6099, "hash": "207b316914836e7adb7217a7d86511a1e713cbf7707f4e4bebd68a3d3098b458", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3851b470cd14c9b8829b6c5be6dee05ad01bdb25387028686ef8e1ad7fef81b9"} -2023-12-15T23:47:19.310Z INFO initializing dbft {"height": 6100, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:19.311Z debug frostfs-node/morph.go:229 new block {"index": 6099} -2023-12-15T23:47:19.617Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6099, "blockHeight": 6099, "took": "9.388301ms"} -2023-12-15T23:47:20.309Z INFO sending PrepareRequest {"height": 6100, "view": 0} -2023-12-15T23:47:20.310Z INFO sending Commit {"height": 6100, "view": 0} -2023-12-15T23:47:20.310Z INFO approving block {"height": 6100, "hash": "b2a17434745631664ab5b1c8c9b5c593a42380387068bb35155a2dbe28072817", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "207b316914836e7adb7217a7d86511a1e713cbf7707f4e4bebd68a3d3098b458"} -2023-12-15T23:47:20.311Z INFO initializing dbft {"height": 6101, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:20.312Z debug frostfs-node/morph.go:229 new block {"index": 6100} -2023-12-15T23:47:20.617Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6100, "blockHeight": 6100, "took": "8.779717ms"} -2023-12-15T23:47:21.311Z INFO sending PrepareRequest {"height": 6101, "view": 0} -2023-12-15T23:47:21.312Z INFO sending Commit {"height": 6101, "view": 0} -2023-12-15T23:47:21.312Z INFO approving block {"height": 6101, "hash": "ce1efe1397a469ff34f3ea2232b0a6e21d67f40c7a543d7a54c6c28d0dca67a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2a17434745631664ab5b1c8c9b5c593a42380387068bb35155a2dbe28072817"} -2023-12-15T23:47:21.314Z INFO initializing dbft {"height": 6102, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:21.316Z debug frostfs-node/morph.go:229 new block {"index": 6101} -2023-12-15T23:47:21.619Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6101, "blockHeight": 6101, "took": "9.953306ms"} -2023-12-15T23:47:22.314Z INFO sending PrepareRequest {"height": 6102, "view": 0} -2023-12-15T23:47:22.315Z INFO sending Commit {"height": 6102, "view": 0} -2023-12-15T23:47:22.315Z INFO approving block {"height": 6102, "hash": "bf31aa816c9bfc93d437891501a769b92c44ab7a06441a07944706e2a2ad1f13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce1efe1397a469ff34f3ea2232b0a6e21d67f40c7a543d7a54c6c28d0dca67a2"} -2023-12-15T23:47:22.317Z INFO initializing dbft {"height": 6103, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:22.318Z debug frostfs-node/morph.go:229 new block {"index": 6102} -2023-12-15T23:47:22.619Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6102, "blockHeight": 6102, "took": "8.658183ms"} -2023-12-15T23:47:23.316Z INFO sending PrepareRequest {"height": 6103, "view": 0} -2023-12-15T23:47:23.317Z INFO sending Commit {"height": 6103, "view": 0} -2023-12-15T23:47:23.317Z INFO approving block {"height": 6103, "hash": "4468c4a2ca743eb21b271696bcd4c4e69d7f3de70caf8f8080f7ba078202966d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf31aa816c9bfc93d437891501a769b92c44ab7a06441a07944706e2a2ad1f13"} -2023-12-15T23:47:23.319Z INFO initializing dbft {"height": 6104, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:23.320Z debug frostfs-node/morph.go:229 new block {"index": 6103} -2023-12-15T23:47:23.618Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6103, "blockHeight": 6103, "took": "7.292089ms"} -2023-12-15T23:47:24.319Z INFO sending PrepareRequest {"height": 6104, "view": 0} -2023-12-15T23:47:24.319Z INFO sending Commit {"height": 6104, "view": 0} -2023-12-15T23:47:24.319Z INFO approving block {"height": 6104, "hash": "e41aca5519749ba835d796aa86ded0e17a3f433405043278323088a99736095f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4468c4a2ca743eb21b271696bcd4c4e69d7f3de70caf8f8080f7ba078202966d"} -2023-12-15T23:47:24.321Z INFO initializing dbft {"height": 6105, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:24.322Z debug frostfs-node/morph.go:229 new block {"index": 6104} -2023-12-15T23:47:24.619Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6104, "blockHeight": 6104, "took": "6.807678ms"} -2023-12-15T23:47:25.321Z INFO sending PrepareRequest {"height": 6105, "view": 0} -2023-12-15T23:47:25.321Z INFO sending Commit {"height": 6105, "view": 0} -2023-12-15T23:47:25.321Z INFO approving block {"height": 6105, "hash": "b6c22978fa6385363d246a957efecde7bcee1172e8f13e252c0ad1750ac6e6c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e41aca5519749ba835d796aa86ded0e17a3f433405043278323088a99736095f"} -2023-12-15T23:47:25.323Z INFO initializing dbft {"height": 6106, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:25.324Z debug frostfs-node/morph.go:229 new block {"index": 6105} -2023-12-15T23:47:25.620Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6105, "blockHeight": 6105, "took": "7.52539ms"} -2023-12-15T23:47:26.322Z INFO sending PrepareRequest {"height": 6106, "view": 0} -2023-12-15T23:47:26.323Z INFO sending Commit {"height": 6106, "view": 0} -2023-12-15T23:47:26.323Z INFO approving block {"height": 6106, "hash": "0de4b92e1189896bdf0e66fccedaa45a6d06741ae64d7a08c52e3f64c9c53eaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6c22978fa6385363d246a957efecde7bcee1172e8f13e252c0ad1750ac6e6c3"} -2023-12-15T23:47:26.325Z INFO initializing dbft {"height": 6107, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:26.327Z debug frostfs-node/morph.go:229 new block {"index": 6106} -2023-12-15T23:47:26.623Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6106, "blockHeight": 6106, "took": "9.931326ms"} -2023-12-15T23:47:27.324Z INFO sending PrepareRequest {"height": 6107, "view": 0} -2023-12-15T23:47:27.324Z INFO sending Commit {"height": 6107, "view": 0} -2023-12-15T23:47:27.325Z INFO approving block {"height": 6107, "hash": "9262b2fad82461e5a92d871b9a84bd410e3884fb8f460088fc711d98433e01a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0de4b92e1189896bdf0e66fccedaa45a6d06741ae64d7a08c52e3f64c9c53eaa"} -2023-12-15T23:47:27.327Z INFO initializing dbft {"height": 6108, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:27.328Z debug frostfs-node/morph.go:229 new block {"index": 6107} -2023-12-15T23:47:27.626Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6107, "blockHeight": 6107, "took": "12.00359ms"} -2023-12-15T23:47:28.326Z INFO sending PrepareRequest {"height": 6108, "view": 0} -2023-12-15T23:47:28.326Z INFO sending Commit {"height": 6108, "view": 0} -2023-12-15T23:47:28.327Z INFO approving block {"height": 6108, "hash": "9225777572fccfc2e99b697982870d257b0826edbd114b5dbe266a9a21808347", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9262b2fad82461e5a92d871b9a84bd410e3884fb8f460088fc711d98433e01a2"} -2023-12-15T23:47:28.328Z INFO initializing dbft {"height": 6109, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:28.329Z debug frostfs-node/morph.go:229 new block {"index": 6108} -2023-12-15T23:47:28.623Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6108, "blockHeight": 6108, "took": "7.132268ms"} -2023-12-15T23:47:29.327Z INFO sending PrepareRequest {"height": 6109, "view": 0} -2023-12-15T23:47:29.328Z INFO sending Commit {"height": 6109, "view": 0} -2023-12-15T23:47:29.328Z INFO approving block {"height": 6109, "hash": "a835e483464f415cf9ae20b8909a3bab3169d6f4fc91bdbe46ec4ed402ba633f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9225777572fccfc2e99b697982870d257b0826edbd114b5dbe266a9a21808347"} -2023-12-15T23:47:29.330Z INFO initializing dbft {"height": 6110, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:29.332Z debug frostfs-node/morph.go:229 new block {"index": 6109} -2023-12-15T23:47:29.624Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6109, "blockHeight": 6109, "took": "7.644373ms"} -2023-12-15T23:47:30.330Z INFO sending PrepareRequest {"height": 6110, "view": 0} -2023-12-15T23:47:30.330Z INFO sending Commit {"height": 6110, "view": 0} -2023-12-15T23:47:30.331Z INFO approving block {"height": 6110, "hash": "dbcd665ed00034f4159b513fbf7ba696abf59a3f2c91675c597c9a942d8bf608", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a835e483464f415cf9ae20b8909a3bab3169d6f4fc91bdbe46ec4ed402ba633f"} -2023-12-15T23:47:30.332Z INFO initializing dbft {"height": 6111, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:30.333Z debug frostfs-node/morph.go:229 new block {"index": 6110} -2023-12-15T23:47:30.625Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6110, "blockHeight": 6110, "took": "7.308383ms"} -2023-12-15T23:47:31.332Z INFO sending PrepareRequest {"height": 6111, "view": 0} -2023-12-15T23:47:31.332Z INFO sending Commit {"height": 6111, "view": 0} -2023-12-15T23:47:31.333Z INFO approving block {"height": 6111, "hash": "d83dd65daf9ec88712cbdc0539adb3a9a27d03640b53e9fb5d81fa1c0a189fd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbcd665ed00034f4159b513fbf7ba696abf59a3f2c91675c597c9a942d8bf608"} -2023-12-15T23:47:31.334Z INFO initializing dbft {"height": 6112, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:31.335Z debug frostfs-node/morph.go:229 new block {"index": 6111} -2023-12-15T23:47:31.626Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6111, "blockHeight": 6111, "took": "6.589882ms"} -2023-12-15T23:47:32.334Z INFO sending PrepareRequest {"height": 6112, "view": 0} -2023-12-15T23:47:32.334Z INFO sending Commit {"height": 6112, "view": 0} -2023-12-15T23:47:32.334Z INFO approving block {"height": 6112, "hash": "6d94cb45a8a505b4ef3002bf3702e996e344a33245ccfd027d582e44efaa7450", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d83dd65daf9ec88712cbdc0539adb3a9a27d03640b53e9fb5d81fa1c0a189fd7"} -2023-12-15T23:47:32.336Z INFO initializing dbft {"height": 6113, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:32.337Z debug frostfs-node/morph.go:229 new block {"index": 6112} -2023-12-15T23:47:32.626Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6112, "blockHeight": 6112, "took": "6.639863ms"} -2023-12-15T23:47:33.335Z INFO sending PrepareRequest {"height": 6113, "view": 0} -2023-12-15T23:47:33.336Z INFO sending Commit {"height": 6113, "view": 0} -2023-12-15T23:47:33.336Z INFO approving block {"height": 6113, "hash": "4dbb9b5e887e59853556341c7501014f7f2a57854dee8596c194365af9a1674c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d94cb45a8a505b4ef3002bf3702e996e344a33245ccfd027d582e44efaa7450"} -2023-12-15T23:47:33.337Z INFO initializing dbft {"height": 6114, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:33.338Z debug frostfs-node/morph.go:229 new block {"index": 6113} -2023-12-15T23:47:33.627Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6113, "blockHeight": 6113, "took": "6.763437ms"} -2023-12-15T23:47:34.337Z INFO sending PrepareRequest {"height": 6114, "view": 0} -2023-12-15T23:47:34.338Z INFO sending Commit {"height": 6114, "view": 0} -2023-12-15T23:47:34.338Z INFO approving block {"height": 6114, "hash": "248c538ba7ead7c6d258314ca7f1c814d6270b0466df0fc15f0cacba5cc8a0dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4dbb9b5e887e59853556341c7501014f7f2a57854dee8596c194365af9a1674c"} -2023-12-15T23:47:34.340Z INFO initializing dbft {"height": 6115, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:34.341Z debug frostfs-node/morph.go:229 new block {"index": 6114} -2023-12-15T23:47:34.629Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6114, "blockHeight": 6114, "took": "6.997514ms"} -2023-12-15T23:47:35.340Z INFO sending PrepareRequest {"height": 6115, "view": 0} -2023-12-15T23:47:35.340Z INFO sending Commit {"height": 6115, "view": 0} -2023-12-15T23:47:35.341Z INFO approving block {"height": 6115, "hash": "2c5bf227fef3cc54a6825f4e35eabb546706e486059c389b86991a689aa91565", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "248c538ba7ead7c6d258314ca7f1c814d6270b0466df0fc15f0cacba5cc8a0dc"} -2023-12-15T23:47:35.342Z INFO initializing dbft {"height": 6116, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:35.343Z debug frostfs-node/morph.go:229 new block {"index": 6115} -2023-12-15T23:47:35.630Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6115, "blockHeight": 6115, "took": "7.380055ms"} -2023-12-15T23:47:36.342Z INFO sending PrepareRequest {"height": 6116, "view": 0} -2023-12-15T23:47:36.342Z INFO sending Commit {"height": 6116, "view": 0} -2023-12-15T23:47:36.343Z INFO approving block {"height": 6116, "hash": "56b5356b5898e5fb3e843a003295b377b5bacccebff2e64b3b2a7c8228bbd127", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c5bf227fef3cc54a6825f4e35eabb546706e486059c389b86991a689aa91565"} -2023-12-15T23:47:36.345Z INFO initializing dbft {"height": 6117, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:36.345Z debug frostfs-node/morph.go:229 new block {"index": 6116} -2023-12-15T23:47:36.635Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6116, "blockHeight": 6116, "took": "10.365667ms"} -2023-12-15T23:47:37.344Z INFO sending PrepareRequest {"height": 6117, "view": 0} -2023-12-15T23:47:37.344Z INFO sending Commit {"height": 6117, "view": 0} -2023-12-15T23:47:37.345Z INFO approving block {"height": 6117, "hash": "33129db37787ea05c8d5e2787acd0f1e775e037e4a589c50b8d444eb22439006", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56b5356b5898e5fb3e843a003295b377b5bacccebff2e64b3b2a7c8228bbd127"} -2023-12-15T23:47:37.347Z INFO initializing dbft {"height": 6118, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:37.348Z debug frostfs-node/morph.go:229 new block {"index": 6117} -2023-12-15T23:47:37.351Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:47:37.356Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:47:37.356Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:47:37.633Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6117, "blockHeight": 6117, "took": "7.767247ms"} -2023-12-15T23:47:38.346Z INFO sending PrepareRequest {"height": 6118, "view": 0} -2023-12-15T23:47:38.346Z INFO sending Commit {"height": 6118, "view": 0} -2023-12-15T23:47:38.347Z INFO approving block {"height": 6118, "hash": "768b327957305f1e460a541208097763d6f3c2bf78c948cf302b4739a4437a9d", "tx_count": 2, "merkle": "418779cdb1ac3cdcb68e3f8ea39425dca6d2593824afb5c0334c95fbf6e2478b", "prev": "33129db37787ea05c8d5e2787acd0f1e775e037e4a589c50b8d444eb22439006"} -2023-12-15T23:47:38.348Z INFO runtime log {"tx": "bec05ed5e493838d655859aab17300a2f31e7cd9cf01d51fc7a384e9c8bdbc4b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:47:38.348Z INFO runtime log {"tx": "bec05ed5e493838d655859aab17300a2f31e7cd9cf01d51fc7a384e9c8bdbc4b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:47:38.349Z INFO initializing dbft {"height": 6119, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:38.351Z debug frostfs-node/morph.go:229 new block {"index": 6118} -2023-12-15T23:47:38.637Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6118, "blockHeight": 6118, "took": "10.587488ms"} -2023-12-15T23:47:39.348Z INFO sending PrepareRequest {"height": 6119, "view": 0} -2023-12-15T23:47:39.349Z INFO sending Commit {"height": 6119, "view": 0} -2023-12-15T23:47:39.349Z INFO approving block {"height": 6119, "hash": "3986594bc88356e2659bb46e6357277432dd2dc294b5d706e1c5908c0de50465", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "768b327957305f1e460a541208097763d6f3c2bf78c948cf302b4739a4437a9d"} -2023-12-15T23:47:39.351Z INFO initializing dbft {"height": 6120, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:39.352Z debug frostfs-node/morph.go:229 new block {"index": 6119} -2023-12-15T23:47:39.634Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6119, "blockHeight": 6119, "took": "6.878675ms"} -2023-12-15T23:47:40.351Z INFO sending PrepareRequest {"height": 6120, "view": 0} -2023-12-15T23:47:40.351Z INFO sending Commit {"height": 6120, "view": 0} -2023-12-15T23:47:40.352Z INFO approving block {"height": 6120, "hash": "6180a97a272538f7e979e0e49d5f316c5e91d63b805d26bb4914a0c6569a0141", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3986594bc88356e2659bb46e6357277432dd2dc294b5d706e1c5908c0de50465"} -2023-12-15T23:47:40.354Z INFO initializing dbft {"height": 6121, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:40.355Z debug frostfs-node/morph.go:229 new block {"index": 6120} -2023-12-15T23:47:40.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6120, "blockHeight": 6120, "took": "8.049115ms"} -2023-12-15T23:47:41.353Z INFO sending PrepareRequest {"height": 6121, "view": 0} -2023-12-15T23:47:41.353Z INFO sending Commit {"height": 6121, "view": 0} -2023-12-15T23:47:41.353Z INFO approving block {"height": 6121, "hash": "737709b503d2c21ee48225892e4e304c3fcb9090a4d8da88f5e0bbaf098aedcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6180a97a272538f7e979e0e49d5f316c5e91d63b805d26bb4914a0c6569a0141"} -2023-12-15T23:47:41.355Z INFO initializing dbft {"height": 6122, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:41.356Z debug frostfs-node/morph.go:229 new block {"index": 6121} -2023-12-15T23:47:41.638Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6121, "blockHeight": 6121, "took": "8.792178ms"} -2023-12-15T23:47:42.355Z INFO sending PrepareRequest {"height": 6122, "view": 0} -2023-12-15T23:47:42.355Z INFO sending Commit {"height": 6122, "view": 0} -2023-12-15T23:47:42.355Z INFO approving block {"height": 6122, "hash": "d6d4f4eb0ef407c596a355e26e9cd48c2558a6d6a873f59d18865659c25dd225", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "737709b503d2c21ee48225892e4e304c3fcb9090a4d8da88f5e0bbaf098aedcc"} -2023-12-15T23:47:42.358Z INFO initializing dbft {"height": 6123, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:42.358Z debug frostfs-node/morph.go:229 new block {"index": 6122} -2023-12-15T23:47:42.637Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6122, "blockHeight": 6122, "took": "6.876011ms"} -2023-12-15T23:47:43.356Z INFO sending PrepareRequest {"height": 6123, "view": 0} -2023-12-15T23:47:43.356Z INFO sending Commit {"height": 6123, "view": 0} -2023-12-15T23:47:43.357Z INFO approving block {"height": 6123, "hash": "707fce6a05366530ba0c0d63b8e67e146f1f9006448305834e31b1c6303c211a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6d4f4eb0ef407c596a355e26e9cd48c2558a6d6a873f59d18865659c25dd225"} -2023-12-15T23:47:43.359Z INFO initializing dbft {"height": 6124, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:43.360Z debug frostfs-node/morph.go:229 new block {"index": 6123} -2023-12-15T23:47:43.639Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6123, "blockHeight": 6123, "took": "7.371372ms"} -2023-12-15T23:47:44.358Z INFO sending PrepareRequest {"height": 6124, "view": 0} -2023-12-15T23:47:44.358Z INFO sending Commit {"height": 6124, "view": 0} -2023-12-15T23:47:44.359Z INFO approving block {"height": 6124, "hash": "a21cc8647f527af3fc4446729438111af63c28f9f83ecf3fd5d6957498f7c311", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "707fce6a05366530ba0c0d63b8e67e146f1f9006448305834e31b1c6303c211a"} -2023-12-15T23:47:44.361Z INFO initializing dbft {"height": 6125, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:44.362Z debug frostfs-node/morph.go:229 new block {"index": 6124} -2023-12-15T23:47:44.640Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6124, "blockHeight": 6124, "took": "8.029613ms"} -2023-12-15T23:47:45.360Z INFO sending PrepareRequest {"height": 6125, "view": 0} -2023-12-15T23:47:45.360Z INFO sending Commit {"height": 6125, "view": 0} -2023-12-15T23:47:45.360Z INFO approving block {"height": 6125, "hash": "78c3ee8d06ff9a45b5441e345519271a6df6ba4f8b779d9fe290aae5f90d6b34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a21cc8647f527af3fc4446729438111af63c28f9f83ecf3fd5d6957498f7c311"} -2023-12-15T23:47:45.362Z INFO initializing dbft {"height": 6126, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:45.363Z debug frostfs-node/morph.go:229 new block {"index": 6125} -2023-12-15T23:47:45.640Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6125, "blockHeight": 6125, "took": "8.049969ms"} -2023-12-15T23:47:46.361Z INFO sending PrepareRequest {"height": 6126, "view": 0} -2023-12-15T23:47:46.362Z INFO sending Commit {"height": 6126, "view": 0} -2023-12-15T23:47:46.362Z INFO approving block {"height": 6126, "hash": "b217229c539bba3fd9f4369e2e148b85199866b2a59dcf12d085563e45c31aaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78c3ee8d06ff9a45b5441e345519271a6df6ba4f8b779d9fe290aae5f90d6b34"} -2023-12-15T23:47:46.365Z INFO initializing dbft {"height": 6127, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:46.366Z debug frostfs-node/morph.go:229 new block {"index": 6126} -2023-12-15T23:47:46.640Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6126, "blockHeight": 6126, "took": "6.837217ms"} -2023-12-15T23:47:47.363Z INFO sending PrepareRequest {"height": 6127, "view": 0} -2023-12-15T23:47:47.363Z INFO sending Commit {"height": 6127, "view": 0} -2023-12-15T23:47:47.364Z INFO approving block {"height": 6127, "hash": "aabef69fe17bd822e2bfefe55475493620176ae7ef948caa0a2bd52bad3d1a0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b217229c539bba3fd9f4369e2e148b85199866b2a59dcf12d085563e45c31aaa"} -2023-12-15T23:47:47.366Z INFO initializing dbft {"height": 6128, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:47.366Z debug frostfs-node/morph.go:229 new block {"index": 6127} -2023-12-15T23:47:47.641Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6127, "blockHeight": 6127, "took": "6.491083ms"} -2023-12-15T23:47:48.365Z INFO sending PrepareRequest {"height": 6128, "view": 0} -2023-12-15T23:47:48.366Z INFO sending Commit {"height": 6128, "view": 0} -2023-12-15T23:47:48.366Z INFO approving block {"height": 6128, "hash": "c83cdf461f5e86142b1f634c831bf21031b6e85a9ac992547954da6b202147eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aabef69fe17bd822e2bfefe55475493620176ae7ef948caa0a2bd52bad3d1a0e"} -2023-12-15T23:47:48.368Z INFO initializing dbft {"height": 6129, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:48.369Z debug frostfs-node/morph.go:229 new block {"index": 6128} -2023-12-15T23:47:48.643Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6128, "blockHeight": 6128, "took": "7.239658ms"} -2023-12-15T23:47:49.368Z INFO sending PrepareRequest {"height": 6129, "view": 0} -2023-12-15T23:47:49.368Z INFO sending Commit {"height": 6129, "view": 0} -2023-12-15T23:47:49.368Z INFO approving block {"height": 6129, "hash": "5c87c4ab92e13d9376cd43c97f93a7c2710e07fd4f0304c23a11f07d5bed783a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c83cdf461f5e86142b1f634c831bf21031b6e85a9ac992547954da6b202147eb"} -2023-12-15T23:47:49.370Z INFO initializing dbft {"height": 6130, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:49.371Z debug frostfs-node/morph.go:229 new block {"index": 6129} -2023-12-15T23:47:49.643Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6129, "blockHeight": 6129, "took": "6.754954ms"} -2023-12-15T23:47:50.370Z INFO sending PrepareRequest {"height": 6130, "view": 0} -2023-12-15T23:47:50.370Z INFO sending Commit {"height": 6130, "view": 0} -2023-12-15T23:47:50.370Z INFO approving block {"height": 6130, "hash": "bfc98aa92824c17255278ecd3bb10b1b80f12a853a43f03e66e212f37f4223da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c87c4ab92e13d9376cd43c97f93a7c2710e07fd4f0304c23a11f07d5bed783a"} -2023-12-15T23:47:50.372Z INFO initializing dbft {"height": 6131, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:50.374Z debug frostfs-node/morph.go:229 new block {"index": 6130} -2023-12-15T23:47:50.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6130, "blockHeight": 6130, "took": "7.211303ms"} -2023-12-15T23:47:51.371Z INFO sending PrepareRequest {"height": 6131, "view": 0} -2023-12-15T23:47:51.372Z INFO sending Commit {"height": 6131, "view": 0} -2023-12-15T23:47:51.372Z INFO approving block {"height": 6131, "hash": "09f4f347adc680719a24aed65853ffd2347186261312f62a90a0538291c28690", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfc98aa92824c17255278ecd3bb10b1b80f12a853a43f03e66e212f37f4223da"} -2023-12-15T23:47:51.373Z INFO initializing dbft {"height": 6132, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:51.374Z debug frostfs-node/morph.go:229 new block {"index": 6131} -2023-12-15T23:47:51.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6131, "blockHeight": 6131, "took": "6.16003ms"} -2023-12-15T23:47:52.373Z INFO sending PrepareRequest {"height": 6132, "view": 0} -2023-12-15T23:47:52.373Z INFO sending Commit {"height": 6132, "view": 0} -2023-12-15T23:47:52.373Z INFO approving block {"height": 6132, "hash": "5619ec099333e5869c6de93202b69949dd4ca6c5f5689de8ca8b7bb1cd5fac17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09f4f347adc680719a24aed65853ffd2347186261312f62a90a0538291c28690"} -2023-12-15T23:47:52.375Z INFO initializing dbft {"height": 6133, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:52.375Z debug frostfs-node/morph.go:229 new block {"index": 6132} -2023-12-15T23:47:52.645Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6132, "blockHeight": 6132, "took": "6.251242ms"} -2023-12-15T23:47:53.374Z INFO sending PrepareRequest {"height": 6133, "view": 0} -2023-12-15T23:47:53.374Z INFO sending Commit {"height": 6133, "view": 0} -2023-12-15T23:47:53.375Z INFO approving block {"height": 6133, "hash": "abebefc9ccc039b7445fbdeb47a9571a5bee77e4f6c32e8c848024e8ad5f6749", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5619ec099333e5869c6de93202b69949dd4ca6c5f5689de8ca8b7bb1cd5fac17"} -2023-12-15T23:47:53.377Z INFO initializing dbft {"height": 6134, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:53.377Z debug frostfs-node/morph.go:229 new block {"index": 6133} -2023-12-15T23:47:53.646Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6133, "blockHeight": 6133, "took": "6.763547ms"} -2023-12-15T23:47:54.376Z INFO sending PrepareRequest {"height": 6134, "view": 0} -2023-12-15T23:47:54.376Z INFO sending Commit {"height": 6134, "view": 0} -2023-12-15T23:47:54.377Z INFO approving block {"height": 6134, "hash": "48eb82a72854ad7bcae5bd3df198dc2c242701cfc439a61c8ab4335617d7dee7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abebefc9ccc039b7445fbdeb47a9571a5bee77e4f6c32e8c848024e8ad5f6749"} -2023-12-15T23:47:54.378Z INFO initializing dbft {"height": 6135, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:54.379Z debug frostfs-node/morph.go:229 new block {"index": 6134} -2023-12-15T23:47:54.646Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6134, "blockHeight": 6134, "took": "6.859169ms"} -2023-12-15T23:47:55.378Z INFO sending PrepareRequest {"height": 6135, "view": 0} -2023-12-15T23:47:55.378Z INFO sending Commit {"height": 6135, "view": 0} -2023-12-15T23:47:55.379Z INFO approving block {"height": 6135, "hash": "40f119940c61adbb50996d31e38efbbc9691d064ef0984412d0690567b8ca536", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48eb82a72854ad7bcae5bd3df198dc2c242701cfc439a61c8ab4335617d7dee7"} -2023-12-15T23:47:55.380Z INFO initializing dbft {"height": 6136, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:55.381Z debug frostfs-node/morph.go:229 new block {"index": 6135} -2023-12-15T23:47:55.648Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6135, "blockHeight": 6135, "took": "6.745877ms"} -2023-12-15T23:47:56.380Z INFO sending PrepareRequest {"height": 6136, "view": 0} -2023-12-15T23:47:56.380Z INFO sending Commit {"height": 6136, "view": 0} -2023-12-15T23:47:56.381Z INFO approving block {"height": 6136, "hash": "37a28ce521bf2a304ef3061909f4e348d80da32882f10c9d1a58fd39ca7292fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40f119940c61adbb50996d31e38efbbc9691d064ef0984412d0690567b8ca536"} -2023-12-15T23:47:56.382Z INFO initializing dbft {"height": 6137, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:56.383Z debug frostfs-node/morph.go:229 new block {"index": 6136} -2023-12-15T23:47:56.650Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6136, "blockHeight": 6136, "took": "8.497415ms"} -2023-12-15T23:47:57.382Z INFO sending PrepareRequest {"height": 6137, "view": 0} -2023-12-15T23:47:57.382Z INFO sending Commit {"height": 6137, "view": 0} -2023-12-15T23:47:57.383Z INFO approving block {"height": 6137, "hash": "83262e760ad1633187262644c2ea964f2d4dc5e755f15a8574b1a1186d368065", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37a28ce521bf2a304ef3061909f4e348d80da32882f10c9d1a58fd39ca7292fc"} -2023-12-15T23:47:57.384Z INFO initializing dbft {"height": 6138, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:57.385Z debug frostfs-node/morph.go:229 new block {"index": 6137} -2023-12-15T23:47:57.648Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6137, "blockHeight": 6137, "took": "5.456488ms"} -2023-12-15T23:47:58.384Z INFO sending PrepareRequest {"height": 6138, "view": 0} -2023-12-15T23:47:58.384Z INFO sending Commit {"height": 6138, "view": 0} -2023-12-15T23:47:58.384Z INFO approving block {"height": 6138, "hash": "1c13e8ff5a594b436dfd55a771934eea5a2d58097b2e1ec59db244efae00a41a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83262e760ad1633187262644c2ea964f2d4dc5e755f15a8574b1a1186d368065"} -2023-12-15T23:47:58.386Z INFO initializing dbft {"height": 6139, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:58.386Z debug frostfs-node/morph.go:229 new block {"index": 6138} -2023-12-15T23:47:58.651Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6138, "blockHeight": 6138, "took": "6.717886ms"} -2023-12-15T23:47:59.386Z INFO sending PrepareRequest {"height": 6139, "view": 0} -2023-12-15T23:47:59.386Z INFO sending Commit {"height": 6139, "view": 0} -2023-12-15T23:47:59.386Z INFO approving block {"height": 6139, "hash": "3164fbf5be3effcf3d6b34f131a75de456eb711752bf96c601d488382878da42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c13e8ff5a594b436dfd55a771934eea5a2d58097b2e1ec59db244efae00a41a"} -2023-12-15T23:47:59.388Z INFO initializing dbft {"height": 6140, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:47:59.388Z debug frostfs-node/morph.go:229 new block {"index": 6139} -2023-12-15T23:47:59.651Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6139, "blockHeight": 6139, "took": "6.407827ms"} -2023-12-15T23:48:00.388Z INFO sending PrepareRequest {"height": 6140, "view": 0} -2023-12-15T23:48:00.388Z INFO sending Commit {"height": 6140, "view": 0} -2023-12-15T23:48:00.388Z INFO approving block {"height": 6140, "hash": "7da6b8a698da2c465a83fe2fe921be5743a6376b6783fa41736de82686e077f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3164fbf5be3effcf3d6b34f131a75de456eb711752bf96c601d488382878da42"} -2023-12-15T23:48:00.390Z INFO initializing dbft {"height": 6141, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:00.391Z debug frostfs-node/morph.go:229 new block {"index": 6140} -2023-12-15T23:48:00.654Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6140, "blockHeight": 6140, "took": "7.870007ms"} -2023-12-15T23:48:01.390Z INFO sending PrepareRequest {"height": 6141, "view": 0} -2023-12-15T23:48:01.390Z INFO sending Commit {"height": 6141, "view": 0} -2023-12-15T23:48:01.390Z INFO approving block {"height": 6141, "hash": "d21b44debe6ba33404d1955cb6a5808c6270144d63515ded0fb3cb92bc916952", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7da6b8a698da2c465a83fe2fe921be5743a6376b6783fa41736de82686e077f9"} -2023-12-15T23:48:01.392Z INFO initializing dbft {"height": 6142, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:01.393Z debug frostfs-node/morph.go:229 new block {"index": 6141} -2023-12-15T23:48:01.654Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6141, "blockHeight": 6141, "took": "6.447359ms"} -2023-12-15T23:48:02.392Z INFO sending PrepareRequest {"height": 6142, "view": 0} -2023-12-15T23:48:02.392Z INFO sending Commit {"height": 6142, "view": 0} -2023-12-15T23:48:02.392Z INFO approving block {"height": 6142, "hash": "fed2e354c9c38e1632999191f58771faa06a6846435cb3d5dc537f3c0075591e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d21b44debe6ba33404d1955cb6a5808c6270144d63515ded0fb3cb92bc916952"} -2023-12-15T23:48:02.394Z INFO initializing dbft {"height": 6143, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:02.394Z debug frostfs-node/morph.go:229 new block {"index": 6142} -2023-12-15T23:48:02.656Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6142, "blockHeight": 6142, "took": "7.779206ms"} -2023-12-15T23:48:03.394Z INFO sending PrepareRequest {"height": 6143, "view": 0} -2023-12-15T23:48:03.394Z INFO sending Commit {"height": 6143, "view": 0} -2023-12-15T23:48:03.395Z INFO approving block {"height": 6143, "hash": "6adf0eafebecc5e105d13b2e1ce76abd29f69fc6ea5a02e12c50d05c5db2ee82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fed2e354c9c38e1632999191f58771faa06a6846435cb3d5dc537f3c0075591e"} -2023-12-15T23:48:03.396Z INFO initializing dbft {"height": 6144, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:03.397Z debug frostfs-node/morph.go:229 new block {"index": 6143} -2023-12-15T23:48:03.662Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 6143, "blockHeight": 6143, "took": "12.848149ms"} -2023-12-15T23:48:04.396Z INFO sending PrepareRequest {"height": 6144, "view": 0} -2023-12-15T23:48:04.396Z INFO sending Commit {"height": 6144, "view": 0} -2023-12-15T23:48:04.397Z INFO approving block {"height": 6144, "hash": "820c8134dac42331e8dbba39b0184b296c3e85659fb017458f793729061b0262", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6adf0eafebecc5e105d13b2e1ce76abd29f69fc6ea5a02e12c50d05c5db2ee82"} -2023-12-15T23:48:04.399Z INFO initializing dbft {"height": 6145, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:04.399Z debug frostfs-node/morph.go:229 new block {"index": 6144} -2023-12-15T23:48:04.660Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6144, "blockHeight": 6144, "took": "10.178497ms"} -2023-12-15T23:48:05.398Z INFO sending PrepareRequest {"height": 6145, "view": 0} -2023-12-15T23:48:05.398Z INFO sending Commit {"height": 6145, "view": 0} -2023-12-15T23:48:05.399Z INFO approving block {"height": 6145, "hash": "5d641fb7ba0a0c4c20b2bcda5e46ff0049574ce9842b402b234c57bebf8faa33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "820c8134dac42331e8dbba39b0184b296c3e85659fb017458f793729061b0262"} -2023-12-15T23:48:05.400Z INFO initializing dbft {"height": 6146, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:05.401Z debug frostfs-node/morph.go:229 new block {"index": 6145} -2023-12-15T23:48:05.406Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 26, "iteration": 1, "error": "no data for 0 iteration in 26 epoch for consumers's trusts"} -2023-12-15T23:48:05.408Z info settlement/calls.go:61 start basic income collection {"epoch": 26} -2023-12-15T23:48:05.658Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6145, "blockHeight": 6145, "took": "6.351942ms"} -2023-12-15T23:48:06.399Z INFO sending PrepareRequest {"height": 6146, "view": 0} -2023-12-15T23:48:06.400Z INFO sending Commit {"height": 6146, "view": 0} -2023-12-15T23:48:06.400Z INFO approving block {"height": 6146, "hash": "fdcc6e067ae957d237573c5807e6ab1b30dfb5f543b5bb80fd7147ea9d8eb544", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d641fb7ba0a0c4c20b2bcda5e46ff0049574ce9842b402b234c57bebf8faa33"} -2023-12-15T23:48:06.402Z INFO initializing dbft {"height": 6147, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:06.402Z debug frostfs-node/morph.go:229 new block {"index": 6146} -2023-12-15T23:48:06.662Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6146, "blockHeight": 6146, "took": "9.709543ms"} -2023-12-15T23:48:07.402Z INFO sending PrepareRequest {"height": 6147, "view": 0} -2023-12-15T23:48:07.402Z INFO sending Commit {"height": 6147, "view": 0} -2023-12-15T23:48:07.402Z INFO approving block {"height": 6147, "hash": "0258dbad4d9e442aa20c104493310a1ac488c20408e2a56669293daec43a530f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdcc6e067ae957d237573c5807e6ab1b30dfb5f543b5bb80fd7147ea9d8eb544"} -2023-12-15T23:48:07.404Z INFO initializing dbft {"height": 6148, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:07.405Z debug frostfs-node/morph.go:229 new block {"index": 6147} -2023-12-15T23:48:07.661Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6147, "blockHeight": 6147, "took": "7.123487ms"} -2023-12-15T23:48:08.404Z INFO sending PrepareRequest {"height": 6148, "view": 0} -2023-12-15T23:48:08.404Z INFO sending Commit {"height": 6148, "view": 0} -2023-12-15T23:48:08.404Z INFO approving block {"height": 6148, "hash": "6cbf755c09d684ee10a7dca59dad674eaa438eeacc133f53cebc2b21fcbfa606", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0258dbad4d9e442aa20c104493310a1ac488c20408e2a56669293daec43a530f"} -2023-12-15T23:48:08.406Z INFO initializing dbft {"height": 6149, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:08.407Z debug frostfs-node/morph.go:229 new block {"index": 6148} -2023-12-15T23:48:08.662Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6148, "blockHeight": 6148, "took": "6.766847ms"} -2023-12-15T23:48:09.406Z INFO sending PrepareRequest {"height": 6149, "view": 0} -2023-12-15T23:48:09.406Z INFO sending Commit {"height": 6149, "view": 0} -2023-12-15T23:48:09.407Z INFO approving block {"height": 6149, "hash": "2da905ff11514c5d0779acabeda95b11b785c4fb18ba136a3e32a4b357d2d545", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cbf755c09d684ee10a7dca59dad674eaa438eeacc133f53cebc2b21fcbfa606"} -2023-12-15T23:48:09.409Z INFO initializing dbft {"height": 6150, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:09.410Z debug frostfs-node/morph.go:229 new block {"index": 6149} -2023-12-15T23:48:09.661Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6149, "blockHeight": 6149, "took": "5.063987ms"} -2023-12-15T23:48:10.408Z INFO sending PrepareRequest {"height": 6150, "view": 0} -2023-12-15T23:48:10.409Z INFO sending Commit {"height": 6150, "view": 0} -2023-12-15T23:48:10.409Z INFO approving block {"height": 6150, "hash": "39474cad1bdf0228386d27b191fa425573da39248ae9ac728892f0065ed334f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2da905ff11514c5d0779acabeda95b11b785c4fb18ba136a3e32a4b357d2d545"} -2023-12-15T23:48:10.411Z INFO initializing dbft {"height": 6151, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:10.411Z debug frostfs-node/morph.go:229 new block {"index": 6150} -2023-12-15T23:48:10.667Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6150, "blockHeight": 6150, "took": "9.999049ms"} -2023-12-15T23:48:11.410Z INFO sending PrepareRequest {"height": 6151, "view": 0} -2023-12-15T23:48:11.411Z INFO sending Commit {"height": 6151, "view": 0} -2023-12-15T23:48:11.411Z INFO approving block {"height": 6151, "hash": "05c0f1ea8cda8696f3efbeef6a99ae3aa4be10e6f87b54973fff4b5f1baf950d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39474cad1bdf0228386d27b191fa425573da39248ae9ac728892f0065ed334f2"} -2023-12-15T23:48:11.412Z INFO initializing dbft {"height": 6152, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:11.413Z debug frostfs-node/morph.go:229 new block {"index": 6151} -2023-12-15T23:48:11.666Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6151, "blockHeight": 6151, "took": "9.028423ms"} -2023-12-15T23:48:12.412Z INFO sending PrepareRequest {"height": 6152, "view": 0} -2023-12-15T23:48:12.413Z INFO sending Commit {"height": 6152, "view": 0} -2023-12-15T23:48:12.413Z INFO approving block {"height": 6152, "hash": "cee7ee68ce6ca2ad593a38aa58c8d1cd84eab9753ad1eb54e716ac770de240ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05c0f1ea8cda8696f3efbeef6a99ae3aa4be10e6f87b54973fff4b5f1baf950d"} -2023-12-15T23:48:12.416Z INFO initializing dbft {"height": 6153, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:12.416Z debug frostfs-node/morph.go:229 new block {"index": 6152} -2023-12-15T23:48:12.671Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6152, "blockHeight": 6152, "took": "12.149548ms"} -2023-12-15T23:48:13.414Z INFO sending PrepareRequest {"height": 6153, "view": 0} -2023-12-15T23:48:13.414Z INFO sending Commit {"height": 6153, "view": 0} -2023-12-15T23:48:13.414Z INFO approving block {"height": 6153, "hash": "46e63cdc540ff8c6eff0e3738a49d2ce91f244822a495675c3ea552836e002c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cee7ee68ce6ca2ad593a38aa58c8d1cd84eab9753ad1eb54e716ac770de240ce"} -2023-12-15T23:48:13.416Z INFO initializing dbft {"height": 6154, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:13.417Z debug frostfs-node/morph.go:229 new block {"index": 6153} -2023-12-15T23:48:13.664Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6153, "blockHeight": 6153, "took": "5.064757ms"} -2023-12-15T23:48:14.415Z INFO sending PrepareRequest {"height": 6154, "view": 0} -2023-12-15T23:48:14.416Z INFO sending Commit {"height": 6154, "view": 0} -2023-12-15T23:48:14.416Z INFO approving block {"height": 6154, "hash": "4ce369271ff19b761c3589e7c343861b0e4fa87a6226a3fdd69862a90328a008", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46e63cdc540ff8c6eff0e3738a49d2ce91f244822a495675c3ea552836e002c7"} -2023-12-15T23:48:14.418Z INFO initializing dbft {"height": 6155, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:14.418Z debug frostfs-node/morph.go:229 new block {"index": 6154} -2023-12-15T23:48:14.666Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6154, "blockHeight": 6154, "took": "6.286243ms"} -2023-12-15T23:48:15.418Z INFO sending PrepareRequest {"height": 6155, "view": 0} -2023-12-15T23:48:15.418Z INFO sending Commit {"height": 6155, "view": 0} -2023-12-15T23:48:15.419Z INFO approving block {"height": 6155, "hash": "8cf0827da863ff08022fffb9aaab7d3f7bf734bf9ec7bae5aac5226cf670bbd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ce369271ff19b761c3589e7c343861b0e4fa87a6226a3fdd69862a90328a008"} -2023-12-15T23:48:15.421Z INFO initializing dbft {"height": 6156, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:15.422Z debug frostfs-node/morph.go:229 new block {"index": 6155} -2023-12-15T23:48:15.670Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6155, "blockHeight": 6155, "took": "9.154298ms"} -2023-12-15T23:48:16.420Z INFO sending PrepareRequest {"height": 6156, "view": 0} -2023-12-15T23:48:16.420Z INFO sending Commit {"height": 6156, "view": 0} -2023-12-15T23:48:16.421Z INFO approving block {"height": 6156, "hash": "107eaec41fcfa4ea41e63e2de90f729021e5654d90a464d5a2f7d479fd4a7084", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cf0827da863ff08022fffb9aaab7d3f7bf734bf9ec7bae5aac5226cf670bbd8"} -2023-12-15T23:48:16.422Z INFO initializing dbft {"height": 6157, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:16.423Z debug frostfs-node/morph.go:229 new block {"index": 6156} -2023-12-15T23:48:16.671Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6156, "blockHeight": 6156, "took": "8.405658ms"} -2023-12-15T23:48:17.422Z INFO sending PrepareRequest {"height": 6157, "view": 0} -2023-12-15T23:48:17.423Z INFO sending Commit {"height": 6157, "view": 0} -2023-12-15T23:48:17.423Z INFO approving block {"height": 6157, "hash": "86f7e1bcf88d7ac18f97cc771ddbe55f0387397133845afe29bf5284f060915d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "107eaec41fcfa4ea41e63e2de90f729021e5654d90a464d5a2f7d479fd4a7084"} -2023-12-15T23:48:17.424Z INFO initializing dbft {"height": 6158, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:17.425Z debug frostfs-node/morph.go:229 new block {"index": 6157} -2023-12-15T23:48:17.673Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6157, "blockHeight": 6157, "took": "9.231889ms"} -2023-12-15T23:48:18.425Z INFO sending PrepareRequest {"height": 6158, "view": 0} -2023-12-15T23:48:18.425Z INFO sending Commit {"height": 6158, "view": 0} -2023-12-15T23:48:18.425Z INFO approving block {"height": 6158, "hash": "0a0f659a4445dcca3c5e5f572bc7b881457151a064bb657cc06471f48c13f3a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86f7e1bcf88d7ac18f97cc771ddbe55f0387397133845afe29bf5284f060915d"} -2023-12-15T23:48:18.427Z INFO initializing dbft {"height": 6159, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:18.428Z debug frostfs-node/morph.go:229 new block {"index": 6158} -2023-12-15T23:48:18.672Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6158, "blockHeight": 6158, "took": "7.450664ms"} -2023-12-15T23:48:19.426Z INFO sending PrepareRequest {"height": 6159, "view": 0} -2023-12-15T23:48:19.427Z INFO sending Commit {"height": 6159, "view": 0} -2023-12-15T23:48:19.427Z INFO approving block {"height": 6159, "hash": "98852a617c1be24115f1750ea40b9656aeef211927be8779b8f00237117b546c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a0f659a4445dcca3c5e5f572bc7b881457151a064bb657cc06471f48c13f3a3"} -2023-12-15T23:48:19.429Z INFO initializing dbft {"height": 6160, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:19.430Z debug frostfs-node/morph.go:229 new block {"index": 6159} -2023-12-15T23:48:19.673Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6159, "blockHeight": 6159, "took": "7.017874ms"} -2023-12-15T23:48:20.428Z INFO sending PrepareRequest {"height": 6160, "view": 0} -2023-12-15T23:48:20.429Z INFO sending Commit {"height": 6160, "view": 0} -2023-12-15T23:48:20.429Z INFO approving block {"height": 6160, "hash": "6fc1b087ed2f32a723b6c82f618f46e388fa7ce0245c2fcbe4efc9919056f5f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98852a617c1be24115f1750ea40b9656aeef211927be8779b8f00237117b546c"} -2023-12-15T23:48:20.431Z INFO initializing dbft {"height": 6161, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:20.432Z debug frostfs-node/morph.go:229 new block {"index": 6160} -2023-12-15T23:48:20.673Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6160, "blockHeight": 6160, "took": "5.83021ms"} -2023-12-15T23:48:21.430Z INFO sending PrepareRequest {"height": 6161, "view": 0} -2023-12-15T23:48:21.431Z INFO sending Commit {"height": 6161, "view": 0} -2023-12-15T23:48:21.431Z INFO approving block {"height": 6161, "hash": "23941a659b5ca097f616c38ed017592ce4ae71783b223001cf68908e63529d3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fc1b087ed2f32a723b6c82f618f46e388fa7ce0245c2fcbe4efc9919056f5f4"} -2023-12-15T23:48:21.432Z INFO initializing dbft {"height": 6162, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:21.433Z debug frostfs-node/morph.go:229 new block {"index": 6161} -2023-12-15T23:48:21.675Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6161, "blockHeight": 6161, "took": "7.176129ms"} -2023-12-15T23:48:22.432Z INFO sending PrepareRequest {"height": 6162, "view": 0} -2023-12-15T23:48:22.432Z INFO sending Commit {"height": 6162, "view": 0} -2023-12-15T23:48:22.432Z INFO approving block {"height": 6162, "hash": "03ccab9e12c931b86223ae8c3787070e78442ff2df0e6776b142fd7264117503", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23941a659b5ca097f616c38ed017592ce4ae71783b223001cf68908e63529d3d"} -2023-12-15T23:48:22.434Z INFO initializing dbft {"height": 6163, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:22.435Z debug frostfs-node/morph.go:229 new block {"index": 6162} -2023-12-15T23:48:22.680Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6162, "blockHeight": 6162, "took": "10.532872ms"} -2023-12-15T23:48:23.434Z INFO sending PrepareRequest {"height": 6163, "view": 0} -2023-12-15T23:48:23.434Z INFO sending Commit {"height": 6163, "view": 0} -2023-12-15T23:48:23.435Z INFO approving block {"height": 6163, "hash": "2df678840f10688f8112f65f9d162767880b6c706c58af00a5707cc362193128", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03ccab9e12c931b86223ae8c3787070e78442ff2df0e6776b142fd7264117503"} -2023-12-15T23:48:23.436Z INFO initializing dbft {"height": 6164, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:23.437Z debug frostfs-node/morph.go:229 new block {"index": 6163} -2023-12-15T23:48:23.679Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6163, "blockHeight": 6163, "took": "8.726604ms"} -2023-12-15T23:48:24.435Z INFO sending PrepareRequest {"height": 6164, "view": 0} -2023-12-15T23:48:24.436Z INFO sending Commit {"height": 6164, "view": 0} -2023-12-15T23:48:24.436Z INFO approving block {"height": 6164, "hash": "331ab4d1d131a3f73495b0f7fad66c443a6e263e87beca928a29c53949d3dc92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2df678840f10688f8112f65f9d162767880b6c706c58af00a5707cc362193128"} -2023-12-15T23:48:24.437Z INFO initializing dbft {"height": 6165, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:24.438Z debug frostfs-node/morph.go:229 new block {"index": 6164} -2023-12-15T23:48:24.677Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6164, "blockHeight": 6164, "took": "6.752928ms"} -2023-12-15T23:48:25.437Z INFO sending PrepareRequest {"height": 6165, "view": 0} -2023-12-15T23:48:25.437Z INFO sending Commit {"height": 6165, "view": 0} -2023-12-15T23:48:25.438Z INFO approving block {"height": 6165, "hash": "497e62f6e2c4a8d92787b22b48fe2470a676023e769b664fd0de7ddbe17ec7a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "331ab4d1d131a3f73495b0f7fad66c443a6e263e87beca928a29c53949d3dc92"} -2023-12-15T23:48:25.440Z INFO initializing dbft {"height": 6166, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:25.440Z debug frostfs-node/morph.go:229 new block {"index": 6165} -2023-12-15T23:48:25.683Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6165, "blockHeight": 6165, "took": "11.394733ms"} -2023-12-15T23:48:26.439Z INFO sending PrepareRequest {"height": 6166, "view": 0} -2023-12-15T23:48:26.440Z INFO sending Commit {"height": 6166, "view": 0} -2023-12-15T23:48:26.441Z INFO approving block {"height": 6166, "hash": "08772c100687d6d148699495ff42a43e28682bfbe3b939eac5ae53f7a3bb40c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "497e62f6e2c4a8d92787b22b48fe2470a676023e769b664fd0de7ddbe17ec7a9"} -2023-12-15T23:48:26.443Z INFO initializing dbft {"height": 6167, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:26.444Z debug frostfs-node/morph.go:229 new block {"index": 6166} -2023-12-15T23:48:26.683Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6166, "blockHeight": 6166, "took": "9.630395ms"} -2023-12-15T23:48:27.442Z INFO sending PrepareRequest {"height": 6167, "view": 0} -2023-12-15T23:48:27.442Z INFO sending Commit {"height": 6167, "view": 0} -2023-12-15T23:48:27.442Z INFO approving block {"height": 6167, "hash": "5a4e5053e5f705b3919e4fda9f23200eddefe9fe62d000093933341f3c4703b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08772c100687d6d148699495ff42a43e28682bfbe3b939eac5ae53f7a3bb40c0"} -2023-12-15T23:48:27.446Z INFO initializing dbft {"height": 6168, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:27.447Z debug frostfs-node/morph.go:229 new block {"index": 6167} -2023-12-15T23:48:27.451Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:48:27.458Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:48:27.458Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:48:27.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6167, "blockHeight": 6167, "took": "12.598561ms"} -2023-12-15T23:48:28.444Z INFO sending PrepareRequest {"height": 6168, "view": 0} -2023-12-15T23:48:28.444Z INFO sending Commit {"height": 6168, "view": 0} -2023-12-15T23:48:28.444Z INFO approving block {"height": 6168, "hash": "45c30fa48d540f22a37422a39f3e1b606fa39cc08f124661ce5aa08c5cf5f3bb", "tx_count": 2, "merkle": "0ba19bae4ff0194f1d7b708a09bbdf03449e385c8bfb8b3f7a42b3707ffdbb6a", "prev": "5a4e5053e5f705b3919e4fda9f23200eddefe9fe62d000093933341f3c4703b3"} -2023-12-15T23:48:28.446Z INFO runtime log {"tx": "cfec5570b45bfa1215a10022dfd1441a3f165bb2da2b159d1efd282099a4fa06", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:48:28.446Z INFO runtime log {"tx": "cfec5570b45bfa1215a10022dfd1441a3f165bb2da2b159d1efd282099a4fa06", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:48:28.449Z INFO initializing dbft {"height": 6169, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:28.451Z debug frostfs-node/morph.go:229 new block {"index": 6168} -2023-12-15T23:48:28.687Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6168, "blockHeight": 6168, "took": "12.328212ms"} -2023-12-15T23:48:29.445Z INFO sending PrepareRequest {"height": 6169, "view": 0} -2023-12-15T23:48:29.446Z INFO sending Commit {"height": 6169, "view": 0} -2023-12-15T23:48:29.447Z INFO approving block {"height": 6169, "hash": "1963e1bd63ca799b9e1dba5e56df287a6781b1d369292122b055e528d34b0fa9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45c30fa48d540f22a37422a39f3e1b606fa39cc08f124661ce5aa08c5cf5f3bb"} -2023-12-15T23:48:29.449Z INFO initializing dbft {"height": 6170, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:29.450Z debug frostfs-node/morph.go:229 new block {"index": 6169} -2023-12-15T23:48:29.681Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6169, "blockHeight": 6169, "took": "6.065514ms"} -2023-12-15T23:48:30.448Z INFO sending PrepareRequest {"height": 6170, "view": 0} -2023-12-15T23:48:30.448Z INFO sending Commit {"height": 6170, "view": 0} -2023-12-15T23:48:30.449Z INFO approving block {"height": 6170, "hash": "dc9804f5e375b4e87b8fc9b5b54cdeee6ee468b8cb402c4991a16f2214d08351", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1963e1bd63ca799b9e1dba5e56df287a6781b1d369292122b055e528d34b0fa9"} -2023-12-15T23:48:30.450Z INFO initializing dbft {"height": 6171, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:30.451Z debug frostfs-node/morph.go:229 new block {"index": 6170} -2023-12-15T23:48:30.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6170, "blockHeight": 6170, "took": "7.321981ms"} -2023-12-15T23:48:31.450Z INFO sending PrepareRequest {"height": 6171, "view": 0} -2023-12-15T23:48:31.450Z INFO sending Commit {"height": 6171, "view": 0} -2023-12-15T23:48:31.451Z INFO approving block {"height": 6171, "hash": "282b9b58ac2e25d577b211835be1e6a3b5d1024ac78c64261ecdcfc26f83b30e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc9804f5e375b4e87b8fc9b5b54cdeee6ee468b8cb402c4991a16f2214d08351"} -2023-12-15T23:48:31.455Z INFO initializing dbft {"height": 6172, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:31.456Z debug frostfs-node/morph.go:229 new block {"index": 6171} -2023-12-15T23:48:31.682Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6171, "blockHeight": 6171, "took": "5.246039ms"} -2023-12-15T23:48:32.451Z INFO sending PrepareRequest {"height": 6172, "view": 0} -2023-12-15T23:48:32.452Z INFO sending Commit {"height": 6172, "view": 0} -2023-12-15T23:48:32.452Z INFO approving block {"height": 6172, "hash": "9ae456f21060bb441effed1eb88eb816a496ccf57a2307fd9b2be2d6513f6d10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "282b9b58ac2e25d577b211835be1e6a3b5d1024ac78c64261ecdcfc26f83b30e"} -2023-12-15T23:48:32.454Z INFO initializing dbft {"height": 6173, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:32.454Z debug frostfs-node/morph.go:229 new block {"index": 6172} -2023-12-15T23:48:32.683Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6172, "blockHeight": 6172, "took": "5.227838ms"} -2023-12-15T23:48:33.453Z INFO sending PrepareRequest {"height": 6173, "view": 0} -2023-12-15T23:48:33.453Z INFO sending Commit {"height": 6173, "view": 0} -2023-12-15T23:48:33.454Z INFO approving block {"height": 6173, "hash": "81a9335937f72cbe70e497105747fcca7e538b3ffc3ffce23d976c9d1254b76b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ae456f21060bb441effed1eb88eb816a496ccf57a2307fd9b2be2d6513f6d10"} -2023-12-15T23:48:33.455Z INFO initializing dbft {"height": 6174, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:33.456Z debug frostfs-node/morph.go:229 new block {"index": 6173} -2023-12-15T23:48:33.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6173, "blockHeight": 6173, "took": "7.995309ms"} -2023-12-15T23:48:34.455Z INFO sending PrepareRequest {"height": 6174, "view": 0} -2023-12-15T23:48:34.455Z INFO sending Commit {"height": 6174, "view": 0} -2023-12-15T23:48:34.455Z INFO approving block {"height": 6174, "hash": "6d4536944be26a81bf952762193a2df3576d6e9e43e15aa6c5b23b785a6579dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81a9335937f72cbe70e497105747fcca7e538b3ffc3ffce23d976c9d1254b76b"} -2023-12-15T23:48:34.457Z INFO initializing dbft {"height": 6175, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:34.458Z debug frostfs-node/morph.go:229 new block {"index": 6174} -2023-12-15T23:48:34.683Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6174, "blockHeight": 6174, "took": "4.827989ms"} -2023-12-15T23:48:35.456Z INFO sending PrepareRequest {"height": 6175, "view": 0} -2023-12-15T23:48:35.456Z INFO sending Commit {"height": 6175, "view": 0} -2023-12-15T23:48:35.457Z INFO approving block {"height": 6175, "hash": "a2cc6edb305b9475ff6fbf547db3ae918555769edf19f2ca6262aaeb740f89a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d4536944be26a81bf952762193a2df3576d6e9e43e15aa6c5b23b785a6579dc"} -2023-12-15T23:48:35.458Z INFO initializing dbft {"height": 6176, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:35.459Z debug frostfs-node/morph.go:229 new block {"index": 6175} -2023-12-15T23:48:35.683Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6175, "blockHeight": 6175, "took": "3.837873ms"} -2023-12-15T23:48:36.458Z INFO sending PrepareRequest {"height": 6176, "view": 0} -2023-12-15T23:48:36.459Z INFO sending Commit {"height": 6176, "view": 0} -2023-12-15T23:48:36.459Z INFO approving block {"height": 6176, "hash": "702ecae292a59d1852b1eec016bac00f9bd05cddf15a663701b289528fb55782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2cc6edb305b9475ff6fbf547db3ae918555769edf19f2ca6262aaeb740f89a1"} -2023-12-15T23:48:36.461Z INFO initializing dbft {"height": 6177, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:36.462Z debug frostfs-node/morph.go:229 new block {"index": 6176} -2023-12-15T23:48:36.690Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6176, "blockHeight": 6176, "took": "9.380984ms"} -2023-12-15T23:48:37.461Z INFO sending PrepareRequest {"height": 6177, "view": 0} -2023-12-15T23:48:37.462Z INFO sending Commit {"height": 6177, "view": 0} -2023-12-15T23:48:37.463Z INFO approving block {"height": 6177, "hash": "655f2660351233df51589767f1e8bb92355628cd94c1989e658b26b2df4da5c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "702ecae292a59d1852b1eec016bac00f9bd05cddf15a663701b289528fb55782"} -2023-12-15T23:48:37.466Z INFO initializing dbft {"height": 6178, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:37.467Z debug frostfs-node/morph.go:229 new block {"index": 6177} -2023-12-15T23:48:37.688Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6177, "blockHeight": 6177, "took": "6.555182ms"} -2023-12-15T23:48:38.464Z INFO sending PrepareRequest {"height": 6178, "view": 0} -2023-12-15T23:48:38.464Z INFO sending Commit {"height": 6178, "view": 0} -2023-12-15T23:48:38.464Z INFO approving block {"height": 6178, "hash": "30c32c9f011cf05d2a0dcd032dd77fee305fbf0dccd2a8365af61e77424d01bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "655f2660351233df51589767f1e8bb92355628cd94c1989e658b26b2df4da5c2"} -2023-12-15T23:48:38.466Z INFO initializing dbft {"height": 6179, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:38.466Z debug frostfs-node/morph.go:229 new block {"index": 6178} -2023-12-15T23:48:38.689Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6178, "blockHeight": 6178, "took": "7.207105ms"} -2023-12-15T23:48:39.466Z INFO sending PrepareRequest {"height": 6179, "view": 0} -2023-12-15T23:48:39.466Z INFO sending Commit {"height": 6179, "view": 0} -2023-12-15T23:48:39.466Z INFO approving block {"height": 6179, "hash": "c49e2dd1311e5b3845da64045be0bcbc665a73635612c35c336ed78da92065e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30c32c9f011cf05d2a0dcd032dd77fee305fbf0dccd2a8365af61e77424d01bc"} -2023-12-15T23:48:39.467Z INFO initializing dbft {"height": 6180, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:39.468Z debug frostfs-node/morph.go:229 new block {"index": 6179} -2023-12-15T23:48:39.688Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6179, "blockHeight": 6179, "took": "5.4747ms"} -2023-12-15T23:48:40.467Z INFO sending PrepareRequest {"height": 6180, "view": 0} -2023-12-15T23:48:40.468Z INFO sending Commit {"height": 6180, "view": 0} -2023-12-15T23:48:40.468Z INFO approving block {"height": 6180, "hash": "3dc42f10b74b055e75be96630be8b7c97785c9dbf41c296da6aa8a88c34a1d9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c49e2dd1311e5b3845da64045be0bcbc665a73635612c35c336ed78da92065e2"} -2023-12-15T23:48:40.470Z INFO initializing dbft {"height": 6181, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:40.471Z debug frostfs-node/morph.go:229 new block {"index": 6180} -2023-12-15T23:48:40.689Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6180, "blockHeight": 6180, "took": "5.820104ms"} -2023-12-15T23:48:41.469Z INFO sending PrepareRequest {"height": 6181, "view": 0} -2023-12-15T23:48:41.469Z INFO sending Commit {"height": 6181, "view": 0} -2023-12-15T23:48:41.470Z INFO approving block {"height": 6181, "hash": "c87b65f346626b0e6f10a3862c9cca7103ba3d6e1b0963d9c6fee7eed0864d8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3dc42f10b74b055e75be96630be8b7c97785c9dbf41c296da6aa8a88c34a1d9d"} -2023-12-15T23:48:41.471Z INFO initializing dbft {"height": 6182, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:41.472Z debug frostfs-node/morph.go:229 new block {"index": 6181} -2023-12-15T23:48:41.691Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6181, "blockHeight": 6181, "took": "6.711805ms"} -2023-12-15T23:48:42.471Z INFO sending PrepareRequest {"height": 6182, "view": 0} -2023-12-15T23:48:42.471Z INFO sending Commit {"height": 6182, "view": 0} -2023-12-15T23:48:42.471Z INFO approving block {"height": 6182, "hash": "887449581c184f024ade6ff4dfbeaf37235f98243b5041fd665e522267a28ed1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c87b65f346626b0e6f10a3862c9cca7103ba3d6e1b0963d9c6fee7eed0864d8b"} -2023-12-15T23:48:42.472Z INFO initializing dbft {"height": 6183, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:42.473Z debug frostfs-node/morph.go:229 new block {"index": 6182} -2023-12-15T23:48:42.691Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6182, "blockHeight": 6182, "took": "6.724786ms"} -2023-12-15T23:48:43.472Z INFO sending PrepareRequest {"height": 6183, "view": 0} -2023-12-15T23:48:43.472Z INFO sending Commit {"height": 6183, "view": 0} -2023-12-15T23:48:43.473Z INFO approving block {"height": 6183, "hash": "ac35e3c8d2e14244f3108a43f10d4a6cf2ea45c037c6357ec4f8afc00244148b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "887449581c184f024ade6ff4dfbeaf37235f98243b5041fd665e522267a28ed1"} -2023-12-15T23:48:43.474Z INFO initializing dbft {"height": 6184, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:43.475Z debug frostfs-node/morph.go:229 new block {"index": 6183} -2023-12-15T23:48:43.693Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6183, "blockHeight": 6183, "took": "6.744207ms"} -2023-12-15T23:48:44.474Z INFO sending PrepareRequest {"height": 6184, "view": 0} -2023-12-15T23:48:44.474Z INFO sending Commit {"height": 6184, "view": 0} -2023-12-15T23:48:44.475Z INFO approving block {"height": 6184, "hash": "5b81c49b796729a1945dfe40f64d4d37b105c90b61530a17bbe518942dde2d14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac35e3c8d2e14244f3108a43f10d4a6cf2ea45c037c6357ec4f8afc00244148b"} -2023-12-15T23:48:44.476Z INFO initializing dbft {"height": 6185, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:44.476Z debug frostfs-node/morph.go:229 new block {"index": 6184} -2023-12-15T23:48:44.694Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6184, "blockHeight": 6184, "took": "6.653653ms"} -2023-12-15T23:48:45.476Z INFO sending PrepareRequest {"height": 6185, "view": 0} -2023-12-15T23:48:45.477Z INFO sending Commit {"height": 6185, "view": 0} -2023-12-15T23:48:45.477Z INFO approving block {"height": 6185, "hash": "7920baa35d9e20cd14c8bb75b53d06f44c9f76f1fa08ee8d2fb27d3254421d7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b81c49b796729a1945dfe40f64d4d37b105c90b61530a17bbe518942dde2d14"} -2023-12-15T23:48:45.479Z INFO initializing dbft {"height": 6186, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:45.480Z debug frostfs-node/morph.go:229 new block {"index": 6185} -2023-12-15T23:48:45.698Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6185, "blockHeight": 6185, "took": "8.712064ms"} -2023-12-15T23:48:46.479Z INFO sending PrepareRequest {"height": 6186, "view": 0} -2023-12-15T23:48:46.479Z INFO sending Commit {"height": 6186, "view": 0} -2023-12-15T23:48:46.480Z INFO approving block {"height": 6186, "hash": "9782fa4e2ab4b31b720ae6b863c6d4013521518e74b973f654fc0d685878fbe6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7920baa35d9e20cd14c8bb75b53d06f44c9f76f1fa08ee8d2fb27d3254421d7a"} -2023-12-15T23:48:46.482Z INFO initializing dbft {"height": 6187, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:46.484Z debug frostfs-node/morph.go:229 new block {"index": 6186} -2023-12-15T23:48:46.698Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6186, "blockHeight": 6186, "took": "8.764006ms"} -2023-12-15T23:48:47.481Z INFO sending PrepareRequest {"height": 6187, "view": 0} -2023-12-15T23:48:47.482Z INFO sending Commit {"height": 6187, "view": 0} -2023-12-15T23:48:47.482Z INFO approving block {"height": 6187, "hash": "32e1ddce1ce305a550844e60ee77a75cbb9c3c411b9415226166dcea11302b73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9782fa4e2ab4b31b720ae6b863c6d4013521518e74b973f654fc0d685878fbe6"} -2023-12-15T23:48:47.484Z INFO initializing dbft {"height": 6188, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:47.486Z debug frostfs-node/morph.go:229 new block {"index": 6187} -2023-12-15T23:48:47.699Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6187, "blockHeight": 6187, "took": "8.173558ms"} -2023-12-15T23:48:48.483Z INFO sending PrepareRequest {"height": 6188, "view": 0} -2023-12-15T23:48:48.483Z INFO sending Commit {"height": 6188, "view": 0} -2023-12-15T23:48:48.484Z INFO approving block {"height": 6188, "hash": "4bf939c2f03d8d8a60b6168bdc11bfea9a8c4e650ad46cc9e7f25d124df2fb71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32e1ddce1ce305a550844e60ee77a75cbb9c3c411b9415226166dcea11302b73"} -2023-12-15T23:48:48.486Z debug frostfs-node/morph.go:229 new block {"index": 6188} -2023-12-15T23:48:48.486Z INFO initializing dbft {"height": 6189, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:48.697Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6188, "blockHeight": 6188, "took": "5.293594ms"} -2023-12-15T23:48:49.485Z INFO sending PrepareRequest {"height": 6189, "view": 0} -2023-12-15T23:48:49.485Z INFO sending Commit {"height": 6189, "view": 0} -2023-12-15T23:48:49.486Z INFO approving block {"height": 6189, "hash": "b383ba0fa8bec0aa036280cb1738eca48478cfe155ebfe5fa672b7716fff6221", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bf939c2f03d8d8a60b6168bdc11bfea9a8c4e650ad46cc9e7f25d124df2fb71"} -2023-12-15T23:48:49.488Z INFO initializing dbft {"height": 6190, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:49.489Z debug frostfs-node/morph.go:229 new block {"index": 6189} -2023-12-15T23:48:49.697Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6189, "blockHeight": 6189, "took": "4.388509ms"} -2023-12-15T23:48:50.487Z INFO sending PrepareRequest {"height": 6190, "view": 0} -2023-12-15T23:48:50.487Z INFO sending Commit {"height": 6190, "view": 0} -2023-12-15T23:48:50.487Z INFO approving block {"height": 6190, "hash": "f891a314dc9b2a5d92977c4a1336bc62870dbf02fc28dccb977ac2619afc9d3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b383ba0fa8bec0aa036280cb1738eca48478cfe155ebfe5fa672b7716fff6221"} -2023-12-15T23:48:50.489Z INFO initializing dbft {"height": 6191, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:50.491Z debug frostfs-node/morph.go:229 new block {"index": 6190} -2023-12-15T23:48:50.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6190, "blockHeight": 6190, "took": "7.994986ms"} -2023-12-15T23:48:51.489Z INFO sending PrepareRequest {"height": 6191, "view": 0} -2023-12-15T23:48:51.489Z INFO sending Commit {"height": 6191, "view": 0} -2023-12-15T23:48:51.489Z INFO approving block {"height": 6191, "hash": "6acbc08207c80d41fa3a97240e0f06c2a47de4cbbee38265cce2c3ecdbf0527d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f891a314dc9b2a5d92977c4a1336bc62870dbf02fc28dccb977ac2619afc9d3b"} -2023-12-15T23:48:51.491Z INFO initializing dbft {"height": 6192, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:51.492Z debug frostfs-node/morph.go:229 new block {"index": 6191} -2023-12-15T23:48:51.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6191, "blockHeight": 6191, "took": "6.882242ms"} -2023-12-15T23:48:52.491Z INFO sending PrepareRequest {"height": 6192, "view": 0} -2023-12-15T23:48:52.491Z INFO sending Commit {"height": 6192, "view": 0} -2023-12-15T23:48:52.491Z INFO approving block {"height": 6192, "hash": "6e22a64d672f4b71b6815269eaafff837b21e13316471519efa5a5d817d9e37a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6acbc08207c80d41fa3a97240e0f06c2a47de4cbbee38265cce2c3ecdbf0527d"} -2023-12-15T23:48:52.493Z INFO initializing dbft {"height": 6193, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:52.494Z debug frostfs-node/morph.go:229 new block {"index": 6192} -2023-12-15T23:48:52.699Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6192, "blockHeight": 6192, "took": "4.668156ms"} -2023-12-15T23:48:53.492Z INFO sending PrepareRequest {"height": 6193, "view": 0} -2023-12-15T23:48:53.493Z INFO sending Commit {"height": 6193, "view": 0} -2023-12-15T23:48:53.493Z INFO approving block {"height": 6193, "hash": "f95d3a4a0577348b6c3b394c81b0ea927c71613fd04960dbef0a3300a8ee34d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e22a64d672f4b71b6815269eaafff837b21e13316471519efa5a5d817d9e37a"} -2023-12-15T23:48:53.495Z INFO initializing dbft {"height": 6194, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:53.496Z debug frostfs-node/morph.go:229 new block {"index": 6193} -2023-12-15T23:48:53.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6193, "blockHeight": 6193, "took": "5.008316ms"} -2023-12-15T23:48:54.494Z INFO sending PrepareRequest {"height": 6194, "view": 0} -2023-12-15T23:48:54.495Z INFO sending Commit {"height": 6194, "view": 0} -2023-12-15T23:48:54.495Z INFO approving block {"height": 6194, "hash": "daa998351b77b9041518cc4d04a2df2929244eddc85334a2768c057213aff259", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f95d3a4a0577348b6c3b394c81b0ea927c71613fd04960dbef0a3300a8ee34d5"} -2023-12-15T23:48:54.496Z INFO initializing dbft {"height": 6195, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:54.497Z debug frostfs-node/morph.go:229 new block {"index": 6194} -2023-12-15T23:48:54.706Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6194, "blockHeight": 6194, "took": "9.797837ms"} -2023-12-15T23:48:55.496Z INFO sending PrepareRequest {"height": 6195, "view": 0} -2023-12-15T23:48:55.497Z INFO sending Commit {"height": 6195, "view": 0} -2023-12-15T23:48:55.497Z INFO approving block {"height": 6195, "hash": "f24ed99e52bc87b8c4322e3e89d8abbe706f5836f10e09ba659802a9f5b632d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "daa998351b77b9041518cc4d04a2df2929244eddc85334a2768c057213aff259"} -2023-12-15T23:48:55.499Z INFO initializing dbft {"height": 6196, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:55.500Z debug frostfs-node/morph.go:229 new block {"index": 6195} -2023-12-15T23:48:55.707Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6195, "blockHeight": 6195, "took": "9.785877ms"} -2023-12-15T23:48:56.499Z INFO sending PrepareRequest {"height": 6196, "view": 0} -2023-12-15T23:48:56.500Z INFO sending Commit {"height": 6196, "view": 0} -2023-12-15T23:48:56.500Z INFO approving block {"height": 6196, "hash": "0f9c3ce1b168a1e77716fc484a0351d6dacaedb596a4ed3bbd5afc28305febd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f24ed99e52bc87b8c4322e3e89d8abbe706f5836f10e09ba659802a9f5b632d1"} -2023-12-15T23:48:56.503Z INFO initializing dbft {"height": 6197, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:56.504Z debug frostfs-node/morph.go:229 new block {"index": 6196} -2023-12-15T23:48:56.714Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6196, "blockHeight": 6196, "took": "15.938904ms"} -2023-12-15T23:48:57.502Z INFO sending PrepareRequest {"height": 6197, "view": 0} -2023-12-15T23:48:57.503Z INFO sending Commit {"height": 6197, "view": 0} -2023-12-15T23:48:57.503Z INFO approving block {"height": 6197, "hash": "b318198b55c07b3659021bfb876188bd4fb6b3cee90c19e9e2bb12bc6af2138d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f9c3ce1b168a1e77716fc484a0351d6dacaedb596a4ed3bbd5afc28305febd8"} -2023-12-15T23:48:57.505Z INFO initializing dbft {"height": 6198, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:57.506Z debug frostfs-node/morph.go:229 new block {"index": 6197} -2023-12-15T23:48:57.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6197, "blockHeight": 6197, "took": "9.817209ms"} -2023-12-15T23:48:58.505Z INFO sending PrepareRequest {"height": 6198, "view": 0} -2023-12-15T23:48:58.505Z INFO sending Commit {"height": 6198, "view": 0} -2023-12-15T23:48:58.505Z INFO approving block {"height": 6198, "hash": "cf8609e7e719b5b577d8548a0cf8e38a8d98b331121f609b8b2461bb68c2e1cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b318198b55c07b3659021bfb876188bd4fb6b3cee90c19e9e2bb12bc6af2138d"} -2023-12-15T23:48:58.507Z INFO initializing dbft {"height": 6199, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:58.508Z debug frostfs-node/morph.go:229 new block {"index": 6198} -2023-12-15T23:48:58.711Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6198, "blockHeight": 6198, "took": "11.306305ms"} -2023-12-15T23:48:59.506Z INFO sending PrepareRequest {"height": 6199, "view": 0} -2023-12-15T23:48:59.507Z INFO sending Commit {"height": 6199, "view": 0} -2023-12-15T23:48:59.507Z INFO approving block {"height": 6199, "hash": "e7a5b83828d54bbaa2fe1024c965ef79b2006f1d16166461410c87a7d22ed0d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf8609e7e719b5b577d8548a0cf8e38a8d98b331121f609b8b2461bb68c2e1cc"} -2023-12-15T23:48:59.509Z INFO initializing dbft {"height": 6200, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:48:59.510Z debug frostfs-node/morph.go:229 new block {"index": 6199} -2023-12-15T23:48:59.706Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6199, "blockHeight": 6199, "took": "6.063512ms"} -2023-12-15T23:49:00.508Z INFO sending PrepareRequest {"height": 6200, "view": 0} -2023-12-15T23:49:00.508Z INFO sending Commit {"height": 6200, "view": 0} -2023-12-15T23:49:00.509Z INFO approving block {"height": 6200, "hash": "0b8caa343b450fc4c2dc2067dfafbf8e0da9229dade54f4fee2c2174b0b09353", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7a5b83828d54bbaa2fe1024c965ef79b2006f1d16166461410c87a7d22ed0d6"} -2023-12-15T23:49:00.511Z INFO initializing dbft {"height": 6201, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:00.511Z debug frostfs-node/morph.go:229 new block {"index": 6200} -2023-12-15T23:49:00.708Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6200, "blockHeight": 6200, "took": "6.918588ms"} -2023-12-15T23:49:01.510Z INFO sending PrepareRequest {"height": 6201, "view": 0} -2023-12-15T23:49:01.510Z INFO sending Commit {"height": 6201, "view": 0} -2023-12-15T23:49:01.511Z INFO approving block {"height": 6201, "hash": "9d522756e3c8b75923d440b167823b1f1b3122ceec724deca69d7c4af6b39253", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b8caa343b450fc4c2dc2067dfafbf8e0da9229dade54f4fee2c2174b0b09353"} -2023-12-15T23:49:01.512Z INFO initializing dbft {"height": 6202, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:01.513Z debug frostfs-node/morph.go:229 new block {"index": 6201} -2023-12-15T23:49:01.708Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6201, "blockHeight": 6201, "took": "5.954063ms"} -2023-12-15T23:49:02.511Z INFO sending PrepareRequest {"height": 6202, "view": 0} -2023-12-15T23:49:02.512Z INFO sending Commit {"height": 6202, "view": 0} -2023-12-15T23:49:02.512Z INFO approving block {"height": 6202, "hash": "340f92986a6f55d85248c44dca7104ffd4f88ab397d0a82b433a5d393951e999", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d522756e3c8b75923d440b167823b1f1b3122ceec724deca69d7c4af6b39253"} -2023-12-15T23:49:02.513Z INFO initializing dbft {"height": 6203, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:02.514Z debug frostfs-node/morph.go:229 new block {"index": 6202} -2023-12-15T23:49:02.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6202, "blockHeight": 6202, "took": "5.921453ms"} -2023-12-15T23:49:03.513Z INFO sending PrepareRequest {"height": 6203, "view": 0} -2023-12-15T23:49:03.514Z INFO sending Commit {"height": 6203, "view": 0} -2023-12-15T23:49:03.514Z INFO approving block {"height": 6203, "hash": "c1f4569fa529558f2fedc972447e710f6720565f55a22feae6c12f9745950079", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "340f92986a6f55d85248c44dca7104ffd4f88ab397d0a82b433a5d393951e999"} -2023-12-15T23:49:03.516Z INFO initializing dbft {"height": 6204, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:03.517Z debug frostfs-node/morph.go:229 new block {"index": 6203} -2023-12-15T23:49:03.710Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6203, "blockHeight": 6203, "took": "6.389956ms"} -2023-12-15T23:49:04.515Z INFO sending PrepareRequest {"height": 6204, "view": 0} -2023-12-15T23:49:04.516Z INFO sending Commit {"height": 6204, "view": 0} -2023-12-15T23:49:04.516Z INFO approving block {"height": 6204, "hash": "204294af1b85ff67ab68c440c4ccf5df89c79b3d5a61a62d2591f107f16dfe2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1f4569fa529558f2fedc972447e710f6720565f55a22feae6c12f9745950079"} -2023-12-15T23:49:04.518Z INFO initializing dbft {"height": 6205, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:04.518Z debug frostfs-node/morph.go:229 new block {"index": 6204} -2023-12-15T23:49:04.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6204, "blockHeight": 6204, "took": "4.83091ms"} -2023-12-15T23:49:05.517Z INFO sending PrepareRequest {"height": 6205, "view": 0} -2023-12-15T23:49:05.517Z INFO sending Commit {"height": 6205, "view": 0} -2023-12-15T23:49:05.518Z INFO approving block {"height": 6205, "hash": "86e5a16ca70d7a05da1a9e12f2147602ca8b1e7c8fc5fc7f4c4fb3428f972d10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "204294af1b85ff67ab68c440c4ccf5df89c79b3d5a61a62d2591f107f16dfe2e"} -2023-12-15T23:49:05.520Z INFO initializing dbft {"height": 6206, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:05.520Z debug frostfs-node/morph.go:229 new block {"index": 6205} -2023-12-15T23:49:05.526Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 26, "iteration": 2, "error": "no data for 1 iteration in 26 epoch for consumers's trusts"} -2023-12-15T23:49:05.528Z info settlement/calls.go:106 start basic income distribution {"epoch": 26} -2023-12-15T23:49:05.711Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6205, "blockHeight": 6205, "took": "5.458633ms"} -2023-12-15T23:49:06.519Z INFO sending PrepareRequest {"height": 6206, "view": 0} -2023-12-15T23:49:06.519Z INFO sending Commit {"height": 6206, "view": 0} -2023-12-15T23:49:06.520Z INFO approving block {"height": 6206, "hash": "61d101aca2b484b1016b7b414180bc18e5ee9851f8df49f5458a96e5ef2431a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86e5a16ca70d7a05da1a9e12f2147602ca8b1e7c8fc5fc7f4c4fb3428f972d10"} -2023-12-15T23:49:06.521Z INFO initializing dbft {"height": 6207, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:06.521Z debug frostfs-node/morph.go:229 new block {"index": 6206} -2023-12-15T23:49:06.716Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6206, "blockHeight": 6206, "took": "8.403464ms"} -2023-12-15T23:49:07.521Z INFO sending PrepareRequest {"height": 6207, "view": 0} -2023-12-15T23:49:07.521Z INFO sending Commit {"height": 6207, "view": 0} -2023-12-15T23:49:07.521Z INFO approving block {"height": 6207, "hash": "c3f527d46d4237d188ce070fb992f1fd27c25f577a9375f5876206cf08567d3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61d101aca2b484b1016b7b414180bc18e5ee9851f8df49f5458a96e5ef2431a3"} -2023-12-15T23:49:07.523Z INFO initializing dbft {"height": 6208, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:07.524Z debug frostfs-node/morph.go:229 new block {"index": 6207} -2023-12-15T23:49:07.715Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6207, "blockHeight": 6207, "took": "7.650872ms"} -2023-12-15T23:49:08.522Z INFO sending PrepareRequest {"height": 6208, "view": 0} -2023-12-15T23:49:08.523Z INFO sending Commit {"height": 6208, "view": 0} -2023-12-15T23:49:08.523Z INFO approving block {"height": 6208, "hash": "4b6d0b0fbf287c2a47aeb24cee6f091e3f14061668784935b7720d39aa69b064", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3f527d46d4237d188ce070fb992f1fd27c25f577a9375f5876206cf08567d3e"} -2023-12-15T23:49:08.524Z INFO initializing dbft {"height": 6209, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:08.525Z debug frostfs-node/morph.go:229 new block {"index": 6208} -2023-12-15T23:49:08.716Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6208, "blockHeight": 6208, "took": "7.496356ms"} -2023-12-15T23:49:09.524Z INFO sending PrepareRequest {"height": 6209, "view": 0} -2023-12-15T23:49:09.525Z INFO sending Commit {"height": 6209, "view": 0} -2023-12-15T23:49:09.525Z INFO approving block {"height": 6209, "hash": "71b841fa31111a90c29b1a5be0301c17aa32d2d1cfc5d1390ad0fb5c95bf03f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b6d0b0fbf287c2a47aeb24cee6f091e3f14061668784935b7720d39aa69b064"} -2023-12-15T23:49:09.526Z INFO initializing dbft {"height": 6210, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:09.527Z debug frostfs-node/morph.go:229 new block {"index": 6209} -2023-12-15T23:49:09.719Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6209, "blockHeight": 6209, "took": "10.225438ms"} -2023-12-15T23:49:10.526Z INFO sending PrepareRequest {"height": 6210, "view": 0} -2023-12-15T23:49:10.527Z INFO sending Commit {"height": 6210, "view": 0} -2023-12-15T23:49:10.527Z INFO approving block {"height": 6210, "hash": "e708e5ae6f1e080def0ef768a59806d0a11b00b27d6c91f64e1fe3198570e4ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71b841fa31111a90c29b1a5be0301c17aa32d2d1cfc5d1390ad0fb5c95bf03f9"} -2023-12-15T23:49:10.529Z INFO initializing dbft {"height": 6211, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:10.530Z debug frostfs-node/morph.go:229 new block {"index": 6210} -2023-12-15T23:49:10.720Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6210, "blockHeight": 6210, "took": "8.684802ms"} -2023-12-15T23:49:11.529Z INFO sending PrepareRequest {"height": 6211, "view": 0} -2023-12-15T23:49:11.529Z INFO sending Commit {"height": 6211, "view": 0} -2023-12-15T23:49:11.530Z INFO approving block {"height": 6211, "hash": "dd782612f671db7c3fec1133aea996698491617e82b9211667616cf88bf00f28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e708e5ae6f1e080def0ef768a59806d0a11b00b27d6c91f64e1fe3198570e4ae"} -2023-12-15T23:49:11.532Z INFO initializing dbft {"height": 6212, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:11.533Z debug frostfs-node/morph.go:229 new block {"index": 6211} -2023-12-15T23:49:11.723Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6211, "blockHeight": 6211, "took": "11.550148ms"} -2023-12-15T23:49:12.532Z INFO sending PrepareRequest {"height": 6212, "view": 0} -2023-12-15T23:49:12.532Z INFO sending Commit {"height": 6212, "view": 0} -2023-12-15T23:49:12.532Z INFO approving block {"height": 6212, "hash": "8c626aba484537c549b2c6d4ed1313fc9c351578ad2eb9b7a9e8b9117eda1561", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd782612f671db7c3fec1133aea996698491617e82b9211667616cf88bf00f28"} -2023-12-15T23:49:12.534Z INFO initializing dbft {"height": 6213, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:12.535Z debug frostfs-node/morph.go:229 new block {"index": 6212} -2023-12-15T23:49:12.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6212, "blockHeight": 6212, "took": "8.382964ms"} -2023-12-15T23:49:13.533Z INFO sending PrepareRequest {"height": 6213, "view": 0} -2023-12-15T23:49:13.534Z INFO sending Commit {"height": 6213, "view": 0} -2023-12-15T23:49:13.535Z INFO approving block {"height": 6213, "hash": "561f29ba952c510f4c2f37b4a1341715af56264e3837436962e41fb424f6d47a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c626aba484537c549b2c6d4ed1313fc9c351578ad2eb9b7a9e8b9117eda1561"} -2023-12-15T23:49:13.537Z INFO initializing dbft {"height": 6214, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:13.537Z debug frostfs-node/morph.go:229 new block {"index": 6213} -2023-12-15T23:49:13.719Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6213, "blockHeight": 6213, "took": "4.495896ms"} -2023-12-15T23:49:14.536Z INFO sending PrepareRequest {"height": 6214, "view": 0} -2023-12-15T23:49:14.536Z INFO sending Commit {"height": 6214, "view": 0} -2023-12-15T23:49:14.536Z INFO approving block {"height": 6214, "hash": "414c33027cf7948042e42892ace3e3bfeea4278517cd11fbe6c95e6ae81566da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "561f29ba952c510f4c2f37b4a1341715af56264e3837436962e41fb424f6d47a"} -2023-12-15T23:49:14.538Z INFO initializing dbft {"height": 6215, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:14.539Z debug frostfs-node/morph.go:229 new block {"index": 6214} -2023-12-15T23:49:14.727Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6214, "blockHeight": 6214, "took": "12.20501ms"} -2023-12-15T23:49:15.538Z INFO sending PrepareRequest {"height": 6215, "view": 0} -2023-12-15T23:49:15.538Z INFO sending Commit {"height": 6215, "view": 0} -2023-12-15T23:49:15.538Z INFO approving block {"height": 6215, "hash": "8da19e6838f5b329aee36d852a8bbad8b455fa2625e462048f03c97d5e7848a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "414c33027cf7948042e42892ace3e3bfeea4278517cd11fbe6c95e6ae81566da"} -2023-12-15T23:49:15.539Z INFO initializing dbft {"height": 6216, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:15.540Z debug frostfs-node/morph.go:229 new block {"index": 6215} -2023-12-15T23:49:15.724Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6215, "blockHeight": 6215, "took": "7.866902ms"} -2023-12-15T23:49:16.540Z INFO sending PrepareRequest {"height": 6216, "view": 0} -2023-12-15T23:49:16.540Z INFO sending Commit {"height": 6216, "view": 0} -2023-12-15T23:49:16.540Z INFO approving block {"height": 6216, "hash": "c072f11771fa5091055f90a4d40c3830a7fd0d84c0c79452f8bd2af50e76af25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8da19e6838f5b329aee36d852a8bbad8b455fa2625e462048f03c97d5e7848a5"} -2023-12-15T23:49:16.543Z INFO initializing dbft {"height": 6217, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:16.543Z debug frostfs-node/morph.go:229 new block {"index": 6216} -2023-12-15T23:49:16.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6216, "blockHeight": 6216, "took": "5.5102ms"} -2023-12-15T23:49:17.541Z INFO sending PrepareRequest {"height": 6217, "view": 0} -2023-12-15T23:49:17.541Z INFO sending Commit {"height": 6217, "view": 0} -2023-12-15T23:49:17.542Z INFO approving block {"height": 6217, "hash": "7b2e477e97b6e75793b4e3998642e2fb05f286cdb5a43e8c708782946ebcdadd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c072f11771fa5091055f90a4d40c3830a7fd0d84c0c79452f8bd2af50e76af25"} -2023-12-15T23:49:17.543Z INFO initializing dbft {"height": 6218, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:17.544Z debug frostfs-node/morph.go:229 new block {"index": 6217} -2023-12-15T23:49:17.546Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:49:17.548Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:49:17.548Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:49:17.724Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6217, "blockHeight": 6217, "took": "6.358405ms"} -2023-12-15T23:49:18.542Z INFO sending PrepareRequest {"height": 6218, "view": 0} -2023-12-15T23:49:18.543Z INFO sending Commit {"height": 6218, "view": 0} -2023-12-15T23:49:18.543Z INFO approving block {"height": 6218, "hash": "1d6e79d7813431cc2abb232338843b8fff70a2ff8af9d58bac321d63b7cf1ae4", "tx_count": 2, "merkle": "88f1f5ce5e46c7343a09dce6de70b5cc99eafa218490fb50d6a5d6c3dcedfde8", "prev": "7b2e477e97b6e75793b4e3998642e2fb05f286cdb5a43e8c708782946ebcdadd"} -2023-12-15T23:49:18.544Z INFO runtime log {"tx": "9a76e3d815d92dfb494b6517f1ec330e71a9a7fe041cdd83c59fcdc4dc0f6ebf", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:49:18.545Z INFO runtime log {"tx": "9a76e3d815d92dfb494b6517f1ec330e71a9a7fe041cdd83c59fcdc4dc0f6ebf", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:49:18.546Z INFO initializing dbft {"height": 6219, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:18.548Z debug frostfs-node/morph.go:229 new block {"index": 6218} -2023-12-15T23:49:18.729Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6218, "blockHeight": 6218, "took": "10.657802ms"} -2023-12-15T23:49:19.544Z INFO sending PrepareRequest {"height": 6219, "view": 0} -2023-12-15T23:49:19.545Z INFO sending Commit {"height": 6219, "view": 0} -2023-12-15T23:49:19.545Z INFO approving block {"height": 6219, "hash": "a5b6b236821c68d8fc1ba4803d6580d4cf55b575a545dc2d6820ac6ed0d3662c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d6e79d7813431cc2abb232338843b8fff70a2ff8af9d58bac321d63b7cf1ae4"} -2023-12-15T23:49:19.546Z INFO initializing dbft {"height": 6220, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:19.547Z debug frostfs-node/morph.go:229 new block {"index": 6219} -2023-12-15T23:49:19.725Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6219, "blockHeight": 6219, "took": "5.469704ms"} -2023-12-15T23:49:20.546Z INFO sending PrepareRequest {"height": 6220, "view": 0} -2023-12-15T23:49:20.546Z INFO sending Commit {"height": 6220, "view": 0} -2023-12-15T23:49:20.547Z INFO approving block {"height": 6220, "hash": "63961f6efc8c5542632f751316efc4031a82534ce841e222481939af8f64bc4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5b6b236821c68d8fc1ba4803d6580d4cf55b575a545dc2d6820ac6ed0d3662c"} -2023-12-15T23:49:20.549Z INFO initializing dbft {"height": 6221, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:20.550Z debug frostfs-node/morph.go:229 new block {"index": 6220} -2023-12-15T23:49:20.726Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6220, "blockHeight": 6220, "took": "5.580618ms"} -2023-12-15T23:49:21.548Z INFO sending PrepareRequest {"height": 6221, "view": 0} -2023-12-15T23:49:21.548Z INFO sending Commit {"height": 6221, "view": 0} -2023-12-15T23:49:21.549Z INFO approving block {"height": 6221, "hash": "5a9f44bedc230d4c0d7484413438dfcebee0fdcfc4b135220ea0ccd1d96dd556", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63961f6efc8c5542632f751316efc4031a82534ce841e222481939af8f64bc4e"} -2023-12-15T23:49:21.550Z INFO initializing dbft {"height": 6222, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:21.552Z debug frostfs-node/morph.go:229 new block {"index": 6221} -2023-12-15T23:49:21.726Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6221, "blockHeight": 6221, "took": "5.386445ms"} -2023-12-15T23:49:22.550Z INFO sending PrepareRequest {"height": 6222, "view": 0} -2023-12-15T23:49:22.550Z INFO sending Commit {"height": 6222, "view": 0} -2023-12-15T23:49:22.551Z INFO approving block {"height": 6222, "hash": "b7259035602a9ff213f5f5bb693aba62b7510891c616a31d0fbe1063cdc38b08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a9f44bedc230d4c0d7484413438dfcebee0fdcfc4b135220ea0ccd1d96dd556"} -2023-12-15T23:49:22.552Z INFO initializing dbft {"height": 6223, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:22.553Z debug frostfs-node/morph.go:229 new block {"index": 6222} -2023-12-15T23:49:22.727Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6222, "blockHeight": 6222, "took": "5.466319ms"} -2023-12-15T23:49:23.552Z INFO sending PrepareRequest {"height": 6223, "view": 0} -2023-12-15T23:49:23.552Z INFO sending Commit {"height": 6223, "view": 0} -2023-12-15T23:49:23.552Z INFO approving block {"height": 6223, "hash": "09d54515bf1d7d4d7405241ef46240b82cd0362a76788f96577390b6206cd0b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7259035602a9ff213f5f5bb693aba62b7510891c616a31d0fbe1063cdc38b08"} -2023-12-15T23:49:23.553Z INFO initializing dbft {"height": 6224, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:23.554Z debug frostfs-node/morph.go:229 new block {"index": 6223} -2023-12-15T23:49:23.730Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6223, "blockHeight": 6223, "took": "6.911202ms"} -2023-12-15T23:49:24.553Z INFO sending PrepareRequest {"height": 6224, "view": 0} -2023-12-15T23:49:24.553Z INFO sending Commit {"height": 6224, "view": 0} -2023-12-15T23:49:24.554Z INFO approving block {"height": 6224, "hash": "6ba7bebcd87792a39d179ea5db5dc1a27d9969d04c5e4ebf20000e6c2a517cc8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09d54515bf1d7d4d7405241ef46240b82cd0362a76788f96577390b6206cd0b6"} -2023-12-15T23:49:24.556Z INFO initializing dbft {"height": 6225, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:24.556Z debug frostfs-node/morph.go:229 new block {"index": 6224} -2023-12-15T23:49:24.730Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6224, "blockHeight": 6224, "took": "5.317386ms"} -2023-12-15T23:49:25.555Z INFO sending PrepareRequest {"height": 6225, "view": 0} -2023-12-15T23:49:25.556Z INFO sending Commit {"height": 6225, "view": 0} -2023-12-15T23:49:25.556Z INFO approving block {"height": 6225, "hash": "d3aa5054eff89ed85557f919a7b6688b497dbef5a55fb184daf545a3ad22e1e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ba7bebcd87792a39d179ea5db5dc1a27d9969d04c5e4ebf20000e6c2a517cc8"} -2023-12-15T23:49:25.558Z INFO initializing dbft {"height": 6226, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:25.559Z debug frostfs-node/morph.go:229 new block {"index": 6225} -2023-12-15T23:49:25.731Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6225, "blockHeight": 6225, "took": "5.823151ms"} -2023-12-15T23:49:26.558Z INFO sending PrepareRequest {"height": 6226, "view": 0} -2023-12-15T23:49:26.558Z INFO sending Commit {"height": 6226, "view": 0} -2023-12-15T23:49:26.559Z INFO approving block {"height": 6226, "hash": "be89114e94a7c043d37c3053f2e2f938afdbf5ff95fed477d4f5bceb5e46523d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3aa5054eff89ed85557f919a7b6688b497dbef5a55fb184daf545a3ad22e1e3"} -2023-12-15T23:49:26.561Z INFO initializing dbft {"height": 6227, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:26.562Z debug frostfs-node/morph.go:229 new block {"index": 6226} -2023-12-15T23:49:26.735Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6226, "blockHeight": 6226, "took": "8.25198ms"} -2023-12-15T23:49:27.561Z INFO sending PrepareRequest {"height": 6227, "view": 0} -2023-12-15T23:49:27.562Z INFO sending Commit {"height": 6227, "view": 0} -2023-12-15T23:49:27.564Z INFO approving block {"height": 6227, "hash": "e8b528fb68514d935f55a02ac04dda622b03317cb2f7684ce04c7e09e0264479", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be89114e94a7c043d37c3053f2e2f938afdbf5ff95fed477d4f5bceb5e46523d"} -2023-12-15T23:49:27.565Z INFO initializing dbft {"height": 6228, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:27.566Z debug frostfs-node/morph.go:229 new block {"index": 6227} -2023-12-15T23:49:27.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6227, "blockHeight": 6227, "took": "9.579639ms"} -2023-12-15T23:49:28.564Z INFO sending PrepareRequest {"height": 6228, "view": 0} -2023-12-15T23:49:28.565Z INFO sending Commit {"height": 6228, "view": 0} -2023-12-15T23:49:28.565Z INFO approving block {"height": 6228, "hash": "90adddb72943b923bd66b9cf6d3620c0c87d76903fb56536aeb45f99ba9358e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8b528fb68514d935f55a02ac04dda622b03317cb2f7684ce04c7e09e0264479"} -2023-12-15T23:49:28.566Z INFO initializing dbft {"height": 6229, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:28.567Z debug frostfs-node/morph.go:229 new block {"index": 6228} -2023-12-15T23:49:28.737Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6228, "blockHeight": 6228, "took": "8.661743ms"} -2023-12-15T23:49:29.566Z INFO sending PrepareRequest {"height": 6229, "view": 0} -2023-12-15T23:49:29.567Z INFO sending Commit {"height": 6229, "view": 0} -2023-12-15T23:49:29.567Z INFO approving block {"height": 6229, "hash": "bf74a24036731af1fd98c10cedd5879b915e80b625c30b8970a0f327dd33d167", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90adddb72943b923bd66b9cf6d3620c0c87d76903fb56536aeb45f99ba9358e6"} -2023-12-15T23:49:29.568Z INFO initializing dbft {"height": 6230, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:29.569Z debug frostfs-node/morph.go:229 new block {"index": 6229} -2023-12-15T23:49:29.735Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6229, "blockHeight": 6229, "took": "5.654953ms"} -2023-12-15T23:49:30.568Z INFO sending PrepareRequest {"height": 6230, "view": 0} -2023-12-15T23:49:30.569Z INFO sending Commit {"height": 6230, "view": 0} -2023-12-15T23:49:30.569Z INFO approving block {"height": 6230, "hash": "c8c5a5c842e3b4cece43c4572d212d55997c798da035fc22799706adaec06dfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf74a24036731af1fd98c10cedd5879b915e80b625c30b8970a0f327dd33d167"} -2023-12-15T23:49:30.571Z INFO initializing dbft {"height": 6231, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:30.571Z debug frostfs-node/morph.go:229 new block {"index": 6230} -2023-12-15T23:49:30.741Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6230, "blockHeight": 6230, "took": "10.585179ms"} -2023-12-15T23:49:31.570Z INFO sending PrepareRequest {"height": 6231, "view": 0} -2023-12-15T23:49:31.571Z INFO sending Commit {"height": 6231, "view": 0} -2023-12-15T23:49:31.571Z INFO approving block {"height": 6231, "hash": "ee5e4901804fca45e59d0f61867073f163e06123bd724f2a6b57df09528de0e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8c5a5c842e3b4cece43c4572d212d55997c798da035fc22799706adaec06dfd"} -2023-12-15T23:49:31.572Z INFO initializing dbft {"height": 6232, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:31.573Z debug frostfs-node/morph.go:229 new block {"index": 6231} -2023-12-15T23:49:31.740Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6231, "blockHeight": 6231, "took": "8.805892ms"} -2023-12-15T23:49:32.572Z INFO sending PrepareRequest {"height": 6232, "view": 0} -2023-12-15T23:49:32.572Z INFO sending Commit {"height": 6232, "view": 0} -2023-12-15T23:49:32.573Z INFO approving block {"height": 6232, "hash": "c695bcb20691da94b6b070cbd12629b11be256be179ad2af90c12f3d0555f3e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee5e4901804fca45e59d0f61867073f163e06123bd724f2a6b57df09528de0e7"} -2023-12-15T23:49:32.574Z INFO initializing dbft {"height": 6233, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:32.575Z debug frostfs-node/morph.go:229 new block {"index": 6232} -2023-12-15T23:49:32.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6232, "blockHeight": 6232, "took": "5.860114ms"} -2023-12-15T23:49:33.573Z INFO sending PrepareRequest {"height": 6233, "view": 0} -2023-12-15T23:49:33.574Z INFO sending Commit {"height": 6233, "view": 0} -2023-12-15T23:49:33.574Z INFO approving block {"height": 6233, "hash": "d126bbc21c1126058bff5b84c762fab7d056b7eabe6af810d8c57bf5ad25e06c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c695bcb20691da94b6b070cbd12629b11be256be179ad2af90c12f3d0555f3e0"} -2023-12-15T23:49:33.575Z INFO initializing dbft {"height": 6234, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:33.576Z debug frostfs-node/morph.go:229 new block {"index": 6233} -2023-12-15T23:49:33.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6233, "blockHeight": 6233, "took": "9.727028ms"} -2023-12-15T23:49:34.575Z INFO sending PrepareRequest {"height": 6234, "view": 0} -2023-12-15T23:49:34.575Z INFO sending Commit {"height": 6234, "view": 0} -2023-12-15T23:49:34.576Z INFO approving block {"height": 6234, "hash": "07ae6a47d2d18d616bc7312a98bf7d70f8a379d058ee3d7472cddc9c0f159c0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d126bbc21c1126058bff5b84c762fab7d056b7eabe6af810d8c57bf5ad25e06c"} -2023-12-15T23:49:34.577Z INFO initializing dbft {"height": 6235, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:34.578Z debug frostfs-node/morph.go:229 new block {"index": 6234} -2023-12-15T23:49:34.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6234, "blockHeight": 6234, "took": "8.867773ms"} -2023-12-15T23:49:35.577Z INFO sending PrepareRequest {"height": 6235, "view": 0} -2023-12-15T23:49:35.578Z INFO sending Commit {"height": 6235, "view": 0} -2023-12-15T23:49:35.578Z INFO approving block {"height": 6235, "hash": "2dc3b73193968c3a1a5289a4257a65efe0008e6721022bab337de72663a9542e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07ae6a47d2d18d616bc7312a98bf7d70f8a379d058ee3d7472cddc9c0f159c0a"} -2023-12-15T23:49:35.580Z INFO initializing dbft {"height": 6236, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:35.581Z debug frostfs-node/morph.go:229 new block {"index": 6235} -2023-12-15T23:49:35.744Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6235, "blockHeight": 6235, "took": "9.22938ms"} -2023-12-15T23:49:36.579Z INFO sending PrepareRequest {"height": 6236, "view": 0} -2023-12-15T23:49:36.579Z INFO sending Commit {"height": 6236, "view": 0} -2023-12-15T23:49:36.580Z INFO approving block {"height": 6236, "hash": "daeb33d0730d846a17837c939688a93b61f53a8b2b80b88b3c991714d2a4066c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2dc3b73193968c3a1a5289a4257a65efe0008e6721022bab337de72663a9542e"} -2023-12-15T23:49:36.581Z INFO initializing dbft {"height": 6237, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:36.582Z debug frostfs-node/morph.go:229 new block {"index": 6236} -2023-12-15T23:49:36.744Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6236, "blockHeight": 6236, "took": "7.517147ms"} -2023-12-15T23:49:37.581Z INFO sending PrepareRequest {"height": 6237, "view": 0} -2023-12-15T23:49:37.581Z INFO sending Commit {"height": 6237, "view": 0} -2023-12-15T23:49:37.582Z INFO approving block {"height": 6237, "hash": "1e11d68fe6018f7900ee1c58abf09dbcde6aaf942ce96db2d527c5325d95ff90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "daeb33d0730d846a17837c939688a93b61f53a8b2b80b88b3c991714d2a4066c"} -2023-12-15T23:49:37.583Z INFO initializing dbft {"height": 6238, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:37.584Z debug frostfs-node/morph.go:229 new block {"index": 6237} -2023-12-15T23:49:37.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6237, "blockHeight": 6237, "took": "5.588423ms"} -2023-12-15T23:49:38.583Z INFO sending PrepareRequest {"height": 6238, "view": 0} -2023-12-15T23:49:38.583Z INFO sending Commit {"height": 6238, "view": 0} -2023-12-15T23:49:38.583Z INFO approving block {"height": 6238, "hash": "f3045066c9f98e2aa7295e031cadd28c43aa3ab5cd9b0bdfdfd7267a6872e9e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e11d68fe6018f7900ee1c58abf09dbcde6aaf942ce96db2d527c5325d95ff90"} -2023-12-15T23:49:38.585Z INFO initializing dbft {"height": 6239, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:38.585Z debug frostfs-node/morph.go:229 new block {"index": 6238} -2023-12-15T23:49:38.746Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6238, "blockHeight": 6238, "took": "8.026779ms"} -2023-12-15T23:49:39.585Z INFO sending PrepareRequest {"height": 6239, "view": 0} -2023-12-15T23:49:39.585Z INFO sending Commit {"height": 6239, "view": 0} -2023-12-15T23:49:39.586Z INFO approving block {"height": 6239, "hash": "4c83b2cb57c390ed4371c71902333fbe9575f4f6c0cd56fc6116d89207590eee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3045066c9f98e2aa7295e031cadd28c43aa3ab5cd9b0bdfdfd7267a6872e9e9"} -2023-12-15T23:49:39.587Z INFO initializing dbft {"height": 6240, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:39.588Z debug frostfs-node/morph.go:229 new block {"index": 6239} -2023-12-15T23:49:39.750Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6239, "blockHeight": 6239, "took": "10.616691ms"} -2023-12-15T23:49:40.587Z INFO sending PrepareRequest {"height": 6240, "view": 0} -2023-12-15T23:49:40.587Z INFO sending Commit {"height": 6240, "view": 0} -2023-12-15T23:49:40.588Z INFO approving block {"height": 6240, "hash": "edeadbb2eca9bc7d191a98ab4e31978760dfdeedcf62e33071d41ec1ca715c97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c83b2cb57c390ed4371c71902333fbe9575f4f6c0cd56fc6116d89207590eee"} -2023-12-15T23:49:40.590Z INFO initializing dbft {"height": 6241, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:40.590Z debug frostfs-node/morph.go:229 new block {"index": 6240} -2023-12-15T23:49:40.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6240, "blockHeight": 6240, "took": "9.261823ms"} -2023-12-15T23:49:41.589Z INFO sending PrepareRequest {"height": 6241, "view": 0} -2023-12-15T23:49:41.589Z INFO sending Commit {"height": 6241, "view": 0} -2023-12-15T23:49:41.590Z INFO approving block {"height": 6241, "hash": "588a4cd41183e9c35614141555eaa57c03e7c177d1fe40e0605436a840588834", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edeadbb2eca9bc7d191a98ab4e31978760dfdeedcf62e33071d41ec1ca715c97"} -2023-12-15T23:49:41.591Z INFO initializing dbft {"height": 6242, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:41.592Z debug frostfs-node/morph.go:229 new block {"index": 6241} -2023-12-15T23:49:41.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6241, "blockHeight": 6241, "took": "8.359638ms"} -2023-12-15T23:49:42.591Z INFO sending PrepareRequest {"height": 6242, "view": 0} -2023-12-15T23:49:42.591Z INFO sending Commit {"height": 6242, "view": 0} -2023-12-15T23:49:42.591Z INFO approving block {"height": 6242, "hash": "457def987c93304ab9e03fe90c4954af4cd2e3a6950da6111a0e39f469a9f281", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "588a4cd41183e9c35614141555eaa57c03e7c177d1fe40e0605436a840588834"} -2023-12-15T23:49:42.593Z INFO initializing dbft {"height": 6243, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:42.594Z debug frostfs-node/morph.go:229 new block {"index": 6242} -2023-12-15T23:49:42.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6242, "blockHeight": 6242, "took": "7.371532ms"} -2023-12-15T23:49:43.592Z INFO sending PrepareRequest {"height": 6243, "view": 0} -2023-12-15T23:49:43.592Z INFO sending Commit {"height": 6243, "view": 0} -2023-12-15T23:49:43.593Z INFO approving block {"height": 6243, "hash": "b6d554bade6acaa4dc3761b053971a6b80c75466c0a2699fee3afed06e8a2111", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "457def987c93304ab9e03fe90c4954af4cd2e3a6950da6111a0e39f469a9f281"} -2023-12-15T23:49:43.594Z INFO initializing dbft {"height": 6244, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:43.595Z debug frostfs-node/morph.go:229 new block {"index": 6243} -2023-12-15T23:49:43.750Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6243, "blockHeight": 6243, "took": "7.181859ms"} -2023-12-15T23:49:44.594Z INFO sending PrepareRequest {"height": 6244, "view": 0} -2023-12-15T23:49:44.595Z INFO sending Commit {"height": 6244, "view": 0} -2023-12-15T23:49:44.595Z INFO approving block {"height": 6244, "hash": "7131fc6e70b2f939467860b2c0ba601e77ff809f6b7b1ed19dbeaf9acac506c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6d554bade6acaa4dc3761b053971a6b80c75466c0a2699fee3afed06e8a2111"} -2023-12-15T23:49:44.597Z INFO initializing dbft {"height": 6245, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:44.597Z debug frostfs-node/morph.go:229 new block {"index": 6244} -2023-12-15T23:49:44.750Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6244, "blockHeight": 6244, "took": "6.880294ms"} -2023-12-15T23:49:45.597Z INFO sending PrepareRequest {"height": 6245, "view": 0} -2023-12-15T23:49:45.597Z INFO sending Commit {"height": 6245, "view": 0} -2023-12-15T23:49:45.597Z INFO approving block {"height": 6245, "hash": "8175c5eb09516f229581e66e1bf66ea3edd4aaa17ac5251d2ec514a2e1f0eb45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7131fc6e70b2f939467860b2c0ba601e77ff809f6b7b1ed19dbeaf9acac506c1"} -2023-12-15T23:49:45.598Z INFO initializing dbft {"height": 6246, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:45.599Z debug frostfs-node/morph.go:229 new block {"index": 6245} -2023-12-15T23:49:45.755Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6245, "blockHeight": 6245, "took": "11.070142ms"} -2023-12-15T23:49:46.599Z INFO sending PrepareRequest {"height": 6246, "view": 0} -2023-12-15T23:49:46.599Z INFO sending Commit {"height": 6246, "view": 0} -2023-12-15T23:49:46.599Z INFO approving block {"height": 6246, "hash": "eb70d8fafcd1c14ef5c8092c0004efffb85aba475ebd902638191b8a2a784996", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8175c5eb09516f229581e66e1bf66ea3edd4aaa17ac5251d2ec514a2e1f0eb45"} -2023-12-15T23:49:46.601Z INFO initializing dbft {"height": 6247, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:46.602Z debug frostfs-node/morph.go:229 new block {"index": 6246} -2023-12-15T23:49:46.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6246, "blockHeight": 6246, "took": "7.042135ms"} -2023-12-15T23:49:47.601Z INFO sending PrepareRequest {"height": 6247, "view": 0} -2023-12-15T23:49:47.601Z INFO sending Commit {"height": 6247, "view": 0} -2023-12-15T23:49:47.601Z INFO approving block {"height": 6247, "hash": "988280b7b72354bdd17fa0c952157f05f699d6f7c4206a46d0f3644cff0e4f97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb70d8fafcd1c14ef5c8092c0004efffb85aba475ebd902638191b8a2a784996"} -2023-12-15T23:49:47.602Z INFO initializing dbft {"height": 6248, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:47.603Z debug frostfs-node/morph.go:229 new block {"index": 6247} -2023-12-15T23:49:47.753Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6247, "blockHeight": 6247, "took": "7.047635ms"} -2023-12-15T23:49:48.603Z INFO sending PrepareRequest {"height": 6248, "view": 0} -2023-12-15T23:49:48.603Z INFO sending Commit {"height": 6248, "view": 0} -2023-12-15T23:49:48.603Z INFO approving block {"height": 6248, "hash": "a3856168062c4bd33dc628a89c87e5ce435e23fe6855b1c775b5d2131a19a76d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "988280b7b72354bdd17fa0c952157f05f699d6f7c4206a46d0f3644cff0e4f97"} -2023-12-15T23:49:48.605Z INFO initializing dbft {"height": 6249, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:48.606Z debug frostfs-node/morph.go:229 new block {"index": 6248} -2023-12-15T23:49:48.754Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6248, "blockHeight": 6248, "took": "7.113917ms"} -2023-12-15T23:49:49.605Z INFO sending PrepareRequest {"height": 6249, "view": 0} -2023-12-15T23:49:49.605Z INFO sending Commit {"height": 6249, "view": 0} -2023-12-15T23:49:49.606Z INFO approving block {"height": 6249, "hash": "621e5967211da2c69fbb7c48f87194db765a4e6084b244627ea4ae969a4eec26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3856168062c4bd33dc628a89c87e5ce435e23fe6855b1c775b5d2131a19a76d"} -2023-12-15T23:49:49.608Z INFO initializing dbft {"height": 6250, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:49.610Z debug frostfs-node/morph.go:229 new block {"index": 6249} -2023-12-15T23:49:49.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6249, "blockHeight": 6249, "took": "7.957267ms"} -2023-12-15T23:49:50.607Z INFO sending PrepareRequest {"height": 6250, "view": 0} -2023-12-15T23:49:50.608Z INFO sending Commit {"height": 6250, "view": 0} -2023-12-15T23:49:50.608Z INFO approving block {"height": 6250, "hash": "64a99db4c3217b5d7f8cb0933687600b35b4b1713f70410b81234f6527449204", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "621e5967211da2c69fbb7c48f87194db765a4e6084b244627ea4ae969a4eec26"} -2023-12-15T23:49:50.610Z INFO initializing dbft {"height": 6251, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:50.611Z debug frostfs-node/morph.go:229 new block {"index": 6250} -2023-12-15T23:49:50.757Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6250, "blockHeight": 6250, "took": "8.404085ms"} -2023-12-15T23:49:51.610Z INFO sending PrepareRequest {"height": 6251, "view": 0} -2023-12-15T23:49:51.610Z INFO sending Commit {"height": 6251, "view": 0} -2023-12-15T23:49:51.610Z INFO approving block {"height": 6251, "hash": "8844a328045e37d4cabad3aea6b503c472d4668cf13b7644cf85f3f93b3c83bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64a99db4c3217b5d7f8cb0933687600b35b4b1713f70410b81234f6527449204"} -2023-12-15T23:49:51.612Z INFO initializing dbft {"height": 6252, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:51.613Z debug frostfs-node/morph.go:229 new block {"index": 6251} -2023-12-15T23:49:51.764Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6251, "blockHeight": 6251, "took": "13.870854ms"} -2023-12-15T23:49:52.611Z INFO sending PrepareRequest {"height": 6252, "view": 0} -2023-12-15T23:49:52.611Z INFO sending Commit {"height": 6252, "view": 0} -2023-12-15T23:49:52.612Z INFO approving block {"height": 6252, "hash": "ef682c94da1881b26553b30b1087e7ec6949872b9d31e1ad3db7f8e2ebe07adb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8844a328045e37d4cabad3aea6b503c472d4668cf13b7644cf85f3f93b3c83bd"} -2023-12-15T23:49:52.613Z INFO initializing dbft {"height": 6253, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:52.614Z debug frostfs-node/morph.go:229 new block {"index": 6252} -2023-12-15T23:49:52.762Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6252, "blockHeight": 6252, "took": "10.568208ms"} -2023-12-15T23:49:53.613Z INFO sending PrepareRequest {"height": 6253, "view": 0} -2023-12-15T23:49:53.613Z INFO sending Commit {"height": 6253, "view": 0} -2023-12-15T23:49:53.614Z INFO approving block {"height": 6253, "hash": "d012ad1ef75b48a1d381ffa11b33ee54df44db9cc0852dced145b6308a49a1b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef682c94da1881b26553b30b1087e7ec6949872b9d31e1ad3db7f8e2ebe07adb"} -2023-12-15T23:49:53.615Z INFO initializing dbft {"height": 6254, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:53.616Z debug frostfs-node/morph.go:229 new block {"index": 6253} -2023-12-15T23:49:53.758Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6253, "blockHeight": 6253, "took": "6.274733ms"} -2023-12-15T23:49:54.615Z INFO sending PrepareRequest {"height": 6254, "view": 0} -2023-12-15T23:49:54.615Z INFO sending Commit {"height": 6254, "view": 0} -2023-12-15T23:49:54.616Z INFO approving block {"height": 6254, "hash": "7a5ab75e8b26c1a553f7410747d94e45a8dd5ca645a5523d0cb96acfbf3f0f03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d012ad1ef75b48a1d381ffa11b33ee54df44db9cc0852dced145b6308a49a1b2"} -2023-12-15T23:49:54.617Z INFO initializing dbft {"height": 6255, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:54.618Z debug frostfs-node/morph.go:229 new block {"index": 6254} -2023-12-15T23:49:54.760Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6254, "blockHeight": 6254, "took": "8.59863ms"} -2023-12-15T23:49:55.617Z INFO sending PrepareRequest {"height": 6255, "view": 0} -2023-12-15T23:49:55.617Z INFO sending Commit {"height": 6255, "view": 0} -2023-12-15T23:49:55.617Z INFO approving block {"height": 6255, "hash": "cdf740658100e4e238261115d95bff3f59b9514dbf411da35fb69a558cea0846", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a5ab75e8b26c1a553f7410747d94e45a8dd5ca645a5523d0cb96acfbf3f0f03"} -2023-12-15T23:49:55.619Z INFO initializing dbft {"height": 6256, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:55.619Z debug frostfs-node/morph.go:229 new block {"index": 6255} -2023-12-15T23:49:55.762Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6255, "blockHeight": 6255, "took": "8.698953ms"} -2023-12-15T23:49:56.619Z INFO sending PrepareRequest {"height": 6256, "view": 0} -2023-12-15T23:49:56.619Z INFO sending Commit {"height": 6256, "view": 0} -2023-12-15T23:49:56.620Z INFO approving block {"height": 6256, "hash": "1af90f72b269d83863b216ae41d3eb6c22c9a73d7e54474ee600a42dd38e965c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdf740658100e4e238261115d95bff3f59b9514dbf411da35fb69a558cea0846"} -2023-12-15T23:49:56.621Z INFO initializing dbft {"height": 6257, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:56.622Z debug frostfs-node/morph.go:229 new block {"index": 6256} -2023-12-15T23:49:56.763Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6256, "blockHeight": 6256, "took": "9.106555ms"} -2023-12-15T23:49:57.621Z INFO sending PrepareRequest {"height": 6257, "view": 0} -2023-12-15T23:49:57.621Z INFO sending Commit {"height": 6257, "view": 0} -2023-12-15T23:49:57.621Z INFO approving block {"height": 6257, "hash": "9506ae6e9c42b2bb4b17df6ccb99a32317ac0ca56100ca3479fd37139592931e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1af90f72b269d83863b216ae41d3eb6c22c9a73d7e54474ee600a42dd38e965c"} -2023-12-15T23:49:57.623Z INFO initializing dbft {"height": 6258, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:57.624Z debug frostfs-node/morph.go:229 new block {"index": 6257} -2023-12-15T23:49:57.764Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6257, "blockHeight": 6257, "took": "8.950261ms"} -2023-12-15T23:49:58.623Z INFO sending PrepareRequest {"height": 6258, "view": 0} -2023-12-15T23:49:58.623Z INFO sending Commit {"height": 6258, "view": 0} -2023-12-15T23:49:58.624Z INFO approving block {"height": 6258, "hash": "d0ba973b0b3b01d1d0bb8ef3bed303cd14564f9501a31636ddee23196b664249", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9506ae6e9c42b2bb4b17df6ccb99a32317ac0ca56100ca3479fd37139592931e"} -2023-12-15T23:49:58.626Z INFO initializing dbft {"height": 6259, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:58.627Z debug frostfs-node/morph.go:229 new block {"index": 6258} -2023-12-15T23:49:58.768Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6258, "blockHeight": 6258, "took": "11.308494ms"} -2023-12-15T23:49:59.625Z INFO sending PrepareRequest {"height": 6259, "view": 0} -2023-12-15T23:49:59.625Z INFO sending Commit {"height": 6259, "view": 0} -2023-12-15T23:49:59.626Z INFO approving block {"height": 6259, "hash": "163884562aacb2b11b5e5327dd756655eeb0842f16469461d4d2be38072cbf2a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0ba973b0b3b01d1d0bb8ef3bed303cd14564f9501a31636ddee23196b664249"} -2023-12-15T23:49:59.628Z INFO initializing dbft {"height": 6260, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:49:59.628Z debug frostfs-node/morph.go:229 new block {"index": 6259} -2023-12-15T23:49:59.766Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6259, "blockHeight": 6259, "took": "8.692905ms"} -2023-12-15T23:50:00.627Z INFO sending PrepareRequest {"height": 6260, "view": 0} -2023-12-15T23:50:00.627Z INFO sending Commit {"height": 6260, "view": 0} -2023-12-15T23:50:00.628Z INFO approving block {"height": 6260, "hash": "06d02c08a043980720ea7efbcde8d6f3e53d1e1329462422260a3be8e7a4912d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "163884562aacb2b11b5e5327dd756655eeb0842f16469461d4d2be38072cbf2a"} -2023-12-15T23:50:00.629Z INFO initializing dbft {"height": 6261, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:00.630Z debug frostfs-node/morph.go:229 new block {"index": 6260} -2023-12-15T23:50:00.764Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6260, "blockHeight": 6260, "took": "5.429678ms"} -2023-12-15T23:50:01.629Z INFO sending PrepareRequest {"height": 6261, "view": 0} -2023-12-15T23:50:01.629Z INFO sending Commit {"height": 6261, "view": 0} -2023-12-15T23:50:01.630Z INFO approving block {"height": 6261, "hash": "68d469e2f67832eed34012831e9035e03d5f24fc02a7c26197b388e2c1cdfef2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06d02c08a043980720ea7efbcde8d6f3e53d1e1329462422260a3be8e7a4912d"} -2023-12-15T23:50:01.632Z INFO initializing dbft {"height": 6262, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:01.634Z debug frostfs-node/morph.go:229 new block {"index": 6261} -2023-12-15T23:50:01.769Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6261, "blockHeight": 6261, "took": "10.077175ms"} -2023-12-15T23:50:02.631Z INFO sending PrepareRequest {"height": 6262, "view": 0} -2023-12-15T23:50:02.631Z INFO sending Commit {"height": 6262, "view": 0} -2023-12-15T23:50:02.632Z INFO approving block {"height": 6262, "hash": "3e9372ac1621df03ba42e0b1486c496c2a33d35ddc04d9c6ca89b2ea97c56ee9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68d469e2f67832eed34012831e9035e03d5f24fc02a7c26197b388e2c1cdfef2"} -2023-12-15T23:50:02.633Z INFO initializing dbft {"height": 6263, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:02.634Z debug frostfs-node/morph.go:229 new block {"index": 6262} -2023-12-15T23:50:02.768Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6262, "blockHeight": 6262, "took": "8.319492ms"} -2023-12-15T23:50:03.633Z INFO sending PrepareRequest {"height": 6263, "view": 0} -2023-12-15T23:50:03.633Z INFO sending Commit {"height": 6263, "view": 0} -2023-12-15T23:50:03.633Z INFO approving block {"height": 6263, "hash": "d0452800dbd90f2db726fb0e92b0667177d42a448bb44c58b3be88d172438dbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e9372ac1621df03ba42e0b1486c496c2a33d35ddc04d9c6ca89b2ea97c56ee9"} -2023-12-15T23:50:03.635Z INFO initializing dbft {"height": 6264, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:03.636Z debug frostfs-node/morph.go:229 new block {"index": 6263} -2023-12-15T23:50:03.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6263, "blockHeight": 6263, "took": "10.414507ms"} -2023-12-15T23:50:04.635Z INFO sending PrepareRequest {"height": 6264, "view": 0} -2023-12-15T23:50:04.635Z INFO sending Commit {"height": 6264, "view": 0} -2023-12-15T23:50:04.635Z INFO approving block {"height": 6264, "hash": "32c34bc914705485abb8fb51fbd0c88153c5d387fe406e689dea9a11d8a3633e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0452800dbd90f2db726fb0e92b0667177d42a448bb44c58b3be88d172438dbb"} -2023-12-15T23:50:04.637Z INFO initializing dbft {"height": 6265, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:04.638Z debug frostfs-node/morph.go:229 new block {"index": 6264} -2023-12-15T23:50:04.768Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6264, "blockHeight": 6264, "took": "5.503438ms"} -2023-12-15T23:50:05.636Z INFO sending PrepareRequest {"height": 6265, "view": 0} -2023-12-15T23:50:05.636Z INFO sending Commit {"height": 6265, "view": 0} -2023-12-15T23:50:05.637Z INFO approving block {"height": 6265, "hash": "aad4d5d5408cb544d2c39f816c698aa4f8517a3dfdd1e58076687b29317ae491", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32c34bc914705485abb8fb51fbd0c88153c5d387fe406e689dea9a11d8a3633e"} -2023-12-15T23:50:05.638Z INFO initializing dbft {"height": 6266, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:05.639Z debug frostfs-node/morph.go:229 new block {"index": 6265} -2023-12-15T23:50:05.643Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:50:05.644Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 26, "iteration": 3, "error": "no data for 2 iteration in 26 epoch for consumers's trusts"} -2023-12-15T23:50:05.649Z INFO runtime log {"tx": "bbab4a8749153f256a9b9150497a73fd79f39de1bbdc1ec2104b45a009c42f46", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:50:05.769Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6265, "blockHeight": 6265, "took": "6.067423ms"} -2023-12-15T23:50:06.637Z INFO sending PrepareRequest {"height": 6266, "view": 0} -2023-12-15T23:50:06.638Z INFO sending Commit {"height": 6266, "view": 0} -2023-12-15T23:50:06.638Z INFO approving block {"height": 6266, "hash": "c50d8350d02917f08c7e017dc99472aecf8c3270c5ec4e3e171f5d89750950ed", "tx_count": 1, "merkle": "922ed95e8044d2d016b10df5fdc0ef2a05c0539795ffb2ea48b46622f18b1b9c", "prev": "aad4d5d5408cb544d2c39f816c698aa4f8517a3dfdd1e58076687b29317ae491"} -2023-12-15T23:50:06.639Z INFO runtime log {"tx": "9c1b8bf12266b448eab2ff959753c0052aefc0fdf50db116d0d244805ed92e92", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:50:06.642Z INFO initializing dbft {"height": 6267, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:06.643Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 28} -2023-12-15T23:50:06.643Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 28} -2023-12-15T23:50:06.644Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:50:06.644Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 28} -2023-12-15T23:50:06.644Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 28} -2023-12-15T23:50:06.644Z debug frostfs-node/morph.go:229 new block {"index": 6266} -2023-12-15T23:50:06.644Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:50:06.645Z debug controller/calls.go:95 starting to report local trust values {"epoch": 27} -2023-12-15T23:50:06.645Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 27} -2023-12-15T23:50:06.645Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 28} -2023-12-15T23:50:06.644Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T23:50:06.648Z debug controller/calls.go:146 reporting successfully finished {"epoch": 27} -2023-12-15T23:50:06.649Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 27} -2023-12-15T23:50:06.650Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:50:06.654Z INFO runtime log {"tx": "347d2d54d63aca6ab4d3cb71e05940c4c4af9806cb0537355c430adfeefafab3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:50:06.657Z info client/notary.go:214 notary deposit invoke {"amount": 6485663021, "expire_at": 4294967295, "vub": 6269, "tx_hash": "32299b13b133ea3e74be44705791841cb4c8ecfd325b20d4b7176c9ac425fb18"} -2023-12-15T23:50:06.671Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 6400, "fallback_valid_for": 40, "tx_hash": "051da013dd39ae2cf721c34db2dbaa0916961e331065d76ab09f8513396e38d4"} -2023-12-15T23:50:06.675Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T23:50:06.678Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:50:06.678Z info audit/handlers.go:13 new round of audit {"epoch": 28} -2023-12-15T23:50:06.678Z info settlement/calls.go:26 new audit settlement event {"epoch": 28} -2023-12-15T23:50:06.679Z info settlement/handlers.go:14 process audit settlements {"epoch": 28} -2023-12-15T23:50:06.679Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 28} -2023-12-15T23:50:06.681Z info settlement/handlers.go:18 audit processing finished {"epoch": 28} -2023-12-15T23:50:06.683Z info audit/process.go:39 select containers for audit {"epoch": 28, "amount": 0} -2023-12-15T23:50:06.687Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6269, "tx_hash": "6c1211d4fff8c5db04df2a47319b41e5784d46369354abe63c4d4a83cee22d2e"} -2023-12-15T23:50:06.777Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 6266, "blockHeight": 6266, "took": "12.948178ms"} -2023-12-15T23:50:07.640Z INFO sending PrepareRequest {"height": 6267, "view": 0} -2023-12-15T23:50:07.640Z INFO sending Commit {"height": 6267, "view": 0} -2023-12-15T23:50:07.640Z INFO approving block {"height": 6267, "hash": "a3453fc9b481a5abd239dcfea82528056e0ae156bba54919d60a5d7913eb09d3", "tx_count": 3, "merkle": "378b27776de8d6451388e45d0945788d0837086f4a46d56c28f91eb4373d85b2", "prev": "c50d8350d02917f08c7e017dc99472aecf8c3270c5ec4e3e171f5d89750950ed"} -2023-12-15T23:50:07.642Z INFO runtime log {"tx": "2953bf4cbb1a01696ecef61efbcd84cc63456e8aa1ac47a5cf908f3bd6a45351", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:50:07.644Z INFO initializing dbft {"height": 6268, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:07.645Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 27} -2023-12-15T23:50:07.645Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 27} -2023-12-15T23:50:07.645Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 27} -2023-12-15T23:50:07.645Z debug frostfs-node/morph.go:229 new block {"index": 6267} -2023-12-15T23:50:07.649Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:50:07.650Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:50:07.651Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:50:07.777Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 6267, "blockHeight": 6267, "took": "11.903144ms"} -2023-12-15T23:50:08.641Z INFO sending PrepareRequest {"height": 6268, "view": 0} -2023-12-15T23:50:08.641Z INFO sending Commit {"height": 6268, "view": 0} -2023-12-15T23:50:08.642Z INFO approving block {"height": 6268, "hash": "0ec3b4120da9c9f49ad8ffc2c64fed6ebc0e4aea630517ae4e756df99cb2f0f3", "tx_count": 2, "merkle": "24b9503402deef96db6fa0a8ac8807c160350463eadf197cf5b45f7e4d49d295", "prev": "a3453fc9b481a5abd239dcfea82528056e0ae156bba54919d60a5d7913eb09d3"} -2023-12-15T23:50:08.643Z INFO runtime log {"tx": "7973fe152254689e180be4d242356efe5163c3faab6b797c656954dc5f5fe00b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:50:08.643Z INFO runtime log {"tx": "7973fe152254689e180be4d242356efe5163c3faab6b797c656954dc5f5fe00b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:50:08.645Z INFO initializing dbft {"height": 6269, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:08.647Z debug frostfs-node/morph.go:229 new block {"index": 6268} -2023-12-15T23:50:08.773Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 6268, "blockHeight": 6268, "took": "7.53671ms"} -2023-12-15T23:50:09.643Z INFO sending PrepareRequest {"height": 6269, "view": 0} -2023-12-15T23:50:09.644Z INFO sending Commit {"height": 6269, "view": 0} -2023-12-15T23:50:09.644Z INFO approving block {"height": 6269, "hash": "615964dc57af09a40ac8f97b2ac84e1e5f9acd51a235b02bf53496bf1e9a1bd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ec3b4120da9c9f49ad8ffc2c64fed6ebc0e4aea630517ae4e756df99cb2f0f3"} -2023-12-15T23:50:09.646Z INFO initializing dbft {"height": 6270, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:09.647Z debug frostfs-node/morph.go:229 new block {"index": 6269} -2023-12-15T23:50:09.777Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6269, "blockHeight": 6269, "took": "10.814252ms"} -2023-12-15T23:50:10.645Z INFO sending PrepareRequest {"height": 6270, "view": 0} -2023-12-15T23:50:10.645Z INFO sending Commit {"height": 6270, "view": 0} -2023-12-15T23:50:10.646Z INFO approving block {"height": 6270, "hash": "299fc810e94578b29de38317435ee846a405d208984c67e5084fe7033839b005", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "615964dc57af09a40ac8f97b2ac84e1e5f9acd51a235b02bf53496bf1e9a1bd7"} -2023-12-15T23:50:10.648Z INFO initializing dbft {"height": 6271, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:10.651Z debug frostfs-node/morph.go:229 new block {"index": 6270} -2023-12-15T23:50:10.776Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6270, "blockHeight": 6270, "took": "8.496756ms"} -2023-12-15T23:50:11.647Z INFO sending PrepareRequest {"height": 6271, "view": 0} -2023-12-15T23:50:11.647Z INFO sending Commit {"height": 6271, "view": 0} -2023-12-15T23:50:11.647Z INFO approving block {"height": 6271, "hash": "48ceee1890afc053f7689aa52dca3deb77f5db64520f9181c3c70afd63d5064d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "299fc810e94578b29de38317435ee846a405d208984c67e5084fe7033839b005"} -2023-12-15T23:50:11.650Z INFO initializing dbft {"height": 6272, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:11.650Z debug frostfs-node/morph.go:229 new block {"index": 6271} -2023-12-15T23:50:11.774Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6271, "blockHeight": 6271, "took": "6.103496ms"} -2023-12-15T23:50:12.649Z INFO sending PrepareRequest {"height": 6272, "view": 0} -2023-12-15T23:50:12.649Z INFO sending Commit {"height": 6272, "view": 0} -2023-12-15T23:50:12.650Z INFO approving block {"height": 6272, "hash": "ce8779639ce4f52cf8c0df7737fed4c8130c975b0c98a0c1fc5722ede0eb4332", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48ceee1890afc053f7689aa52dca3deb77f5db64520f9181c3c70afd63d5064d"} -2023-12-15T23:50:12.652Z INFO initializing dbft {"height": 6273, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:12.653Z debug frostfs-node/morph.go:229 new block {"index": 6272} -2023-12-15T23:50:12.778Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6272, "blockHeight": 6272, "took": "8.532978ms"} -2023-12-15T23:50:13.651Z INFO sending PrepareRequest {"height": 6273, "view": 0} -2023-12-15T23:50:13.651Z INFO sending Commit {"height": 6273, "view": 0} -2023-12-15T23:50:13.651Z INFO approving block {"height": 6273, "hash": "399c42fdf3fb8ca53a9a0651a214ba59e1f7c81c562ed4d3564afa6b58699ea0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce8779639ce4f52cf8c0df7737fed4c8130c975b0c98a0c1fc5722ede0eb4332"} -2023-12-15T23:50:13.653Z INFO initializing dbft {"height": 6274, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:13.653Z debug frostfs-node/morph.go:229 new block {"index": 6273} -2023-12-15T23:50:13.776Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6273, "blockHeight": 6273, "took": "6.366717ms"} -2023-12-15T23:50:14.652Z INFO sending PrepareRequest {"height": 6274, "view": 0} -2023-12-15T23:50:14.652Z INFO sending Commit {"height": 6274, "view": 0} -2023-12-15T23:50:14.653Z INFO approving block {"height": 6274, "hash": "f69661155103b88669af7cc563afac910aaedfaf86b7c5f4c0b6e7286b0eef10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "399c42fdf3fb8ca53a9a0651a214ba59e1f7c81c562ed4d3564afa6b58699ea0"} -2023-12-15T23:50:14.654Z INFO initializing dbft {"height": 6275, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:14.655Z debug frostfs-node/morph.go:229 new block {"index": 6274} -2023-12-15T23:50:14.776Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6274, "blockHeight": 6274, "took": "6.102723ms"} -2023-12-15T23:50:15.654Z INFO sending PrepareRequest {"height": 6275, "view": 0} -2023-12-15T23:50:15.654Z INFO sending Commit {"height": 6275, "view": 0} -2023-12-15T23:50:15.655Z INFO approving block {"height": 6275, "hash": "76d45ba3cc56f3ca07bec99bcfc9b7f916e791661b07b3ab0561d102a5915516", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f69661155103b88669af7cc563afac910aaedfaf86b7c5f4c0b6e7286b0eef10"} -2023-12-15T23:50:15.657Z INFO initializing dbft {"height": 6276, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:15.658Z debug frostfs-node/morph.go:229 new block {"index": 6275} -2023-12-15T23:50:15.777Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6275, "blockHeight": 6275, "took": "6.193733ms"} -2023-12-15T23:50:16.657Z INFO sending PrepareRequest {"height": 6276, "view": 0} -2023-12-15T23:50:16.657Z INFO sending Commit {"height": 6276, "view": 0} -2023-12-15T23:50:16.658Z INFO approving block {"height": 6276, "hash": "ce1aa798366b4dcaa46916f17d1e16c52f7e1d3d1a0f44b8099bab559f943da9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76d45ba3cc56f3ca07bec99bcfc9b7f916e791661b07b3ab0561d102a5915516"} -2023-12-15T23:50:16.659Z INFO initializing dbft {"height": 6277, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:16.660Z debug frostfs-node/morph.go:229 new block {"index": 6276} -2023-12-15T23:50:16.779Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6276, "blockHeight": 6276, "took": "7.78995ms"} -2023-12-15T23:50:17.659Z INFO sending PrepareRequest {"height": 6277, "view": 0} -2023-12-15T23:50:17.659Z INFO sending Commit {"height": 6277, "view": 0} -2023-12-15T23:50:17.660Z INFO approving block {"height": 6277, "hash": "7427b0cb615aaba72f3735346abd8b1fae2fa88fc222d2f5a86f6541b98fc1ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce1aa798366b4dcaa46916f17d1e16c52f7e1d3d1a0f44b8099bab559f943da9"} -2023-12-15T23:50:17.662Z INFO initializing dbft {"height": 6278, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:17.663Z debug frostfs-node/morph.go:229 new block {"index": 6277} -2023-12-15T23:50:17.779Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6277, "blockHeight": 6277, "took": "7.326545ms"} -2023-12-15T23:50:18.661Z INFO sending PrepareRequest {"height": 6278, "view": 0} -2023-12-15T23:50:18.661Z INFO sending Commit {"height": 6278, "view": 0} -2023-12-15T23:50:18.662Z INFO approving block {"height": 6278, "hash": "42a9df8a10ed151b626dc04d53501c321065cf700398112a15afd86ac502938b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7427b0cb615aaba72f3735346abd8b1fae2fa88fc222d2f5a86f6541b98fc1ba"} -2023-12-15T23:50:18.663Z INFO initializing dbft {"height": 6279, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:18.664Z debug frostfs-node/morph.go:229 new block {"index": 6278} -2023-12-15T23:50:18.781Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6278, "blockHeight": 6278, "took": "8.262062ms"} -2023-12-15T23:50:19.663Z INFO sending PrepareRequest {"height": 6279, "view": 0} -2023-12-15T23:50:19.663Z INFO sending Commit {"height": 6279, "view": 0} -2023-12-15T23:50:19.664Z INFO approving block {"height": 6279, "hash": "d4110904b0c40a6fec57ff83dd96defe19149d6815bcabba623a5b4a538b4f46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42a9df8a10ed151b626dc04d53501c321065cf700398112a15afd86ac502938b"} -2023-12-15T23:50:19.666Z INFO initializing dbft {"height": 6280, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:19.666Z debug frostfs-node/morph.go:229 new block {"index": 6279} -2023-12-15T23:50:19.783Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6279, "blockHeight": 6279, "took": "8.460417ms"} -2023-12-15T23:50:20.665Z INFO sending PrepareRequest {"height": 6280, "view": 0} -2023-12-15T23:50:20.665Z INFO sending Commit {"height": 6280, "view": 0} -2023-12-15T23:50:20.666Z INFO approving block {"height": 6280, "hash": "8c17f03bd47377b12e778a89ceec0c9143f91290624e99605bdfdda6cd6a50fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4110904b0c40a6fec57ff83dd96defe19149d6815bcabba623a5b4a538b4f46"} -2023-12-15T23:50:20.668Z INFO initializing dbft {"height": 6281, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:20.669Z debug frostfs-node/morph.go:229 new block {"index": 6280} -2023-12-15T23:50:20.782Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6280, "blockHeight": 6280, "took": "7.760996ms"} -2023-12-15T23:50:21.667Z INFO sending PrepareRequest {"height": 6281, "view": 0} -2023-12-15T23:50:21.668Z INFO sending Commit {"height": 6281, "view": 0} -2023-12-15T23:50:21.668Z INFO approving block {"height": 6281, "hash": "55c52d07260a02fc1ffb82dbe93828dac3dc0cea8d5d735ac99010422836a87d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c17f03bd47377b12e778a89ceec0c9143f91290624e99605bdfdda6cd6a50fb"} -2023-12-15T23:50:21.671Z INFO initializing dbft {"height": 6282, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:21.672Z debug frostfs-node/morph.go:229 new block {"index": 6281} -2023-12-15T23:50:21.785Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6281, "blockHeight": 6281, "took": "8.54016ms"} -2023-12-15T23:50:22.670Z INFO sending PrepareRequest {"height": 6282, "view": 0} -2023-12-15T23:50:22.670Z INFO sending Commit {"height": 6282, "view": 0} -2023-12-15T23:50:22.670Z INFO approving block {"height": 6282, "hash": "ef14c3281bb84cc420031073920c1bd7f99a278de282022be74914573be53247", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55c52d07260a02fc1ffb82dbe93828dac3dc0cea8d5d735ac99010422836a87d"} -2023-12-15T23:50:22.672Z INFO initializing dbft {"height": 6283, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:22.673Z debug frostfs-node/morph.go:229 new block {"index": 6282} -2023-12-15T23:50:22.784Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6282, "blockHeight": 6282, "took": "6.962784ms"} -2023-12-15T23:50:23.672Z INFO sending PrepareRequest {"height": 6283, "view": 0} -2023-12-15T23:50:23.672Z INFO sending Commit {"height": 6283, "view": 0} -2023-12-15T23:50:23.673Z INFO approving block {"height": 6283, "hash": "cac9f5d81d19785a43de8b6b89bf3bf23cb0627c4b3051c51bd4fcb5f03fd3f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef14c3281bb84cc420031073920c1bd7f99a278de282022be74914573be53247"} -2023-12-15T23:50:23.675Z INFO initializing dbft {"height": 6284, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:23.675Z debug frostfs-node/morph.go:229 new block {"index": 6283} -2023-12-15T23:50:23.786Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6283, "blockHeight": 6283, "took": "7.391467ms"} -2023-12-15T23:50:24.674Z INFO sending PrepareRequest {"height": 6284, "view": 0} -2023-12-15T23:50:24.674Z INFO sending Commit {"height": 6284, "view": 0} -2023-12-15T23:50:24.675Z INFO approving block {"height": 6284, "hash": "6523d93306c540f478ce005411c6ca586453cdb26b69d0607eed99a0b02827fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cac9f5d81d19785a43de8b6b89bf3bf23cb0627c4b3051c51bd4fcb5f03fd3f6"} -2023-12-15T23:50:24.677Z INFO initializing dbft {"height": 6285, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:24.678Z debug frostfs-node/morph.go:229 new block {"index": 6284} -2023-12-15T23:50:24.787Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6284, "blockHeight": 6284, "took": "7.776582ms"} -2023-12-15T23:50:25.676Z INFO sending PrepareRequest {"height": 6285, "view": 0} -2023-12-15T23:50:25.676Z INFO sending Commit {"height": 6285, "view": 0} -2023-12-15T23:50:25.677Z INFO approving block {"height": 6285, "hash": "7ce23b68049934b44a1c262ec39235e243168a365643ace91ff51afd67f32a07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6523d93306c540f478ce005411c6ca586453cdb26b69d0607eed99a0b02827fe"} -2023-12-15T23:50:25.679Z INFO initializing dbft {"height": 6286, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:25.680Z debug frostfs-node/morph.go:229 new block {"index": 6285} -2023-12-15T23:50:25.785Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6285, "blockHeight": 6285, "took": "5.406189ms"} -2023-12-15T23:50:26.678Z INFO sending PrepareRequest {"height": 6286, "view": 0} -2023-12-15T23:50:26.678Z INFO sending Commit {"height": 6286, "view": 0} -2023-12-15T23:50:26.679Z INFO approving block {"height": 6286, "hash": "20a8a4c8d0f9026532e195e22a29dbd04e19a4ab2e042edb5e962b571ac5a5fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ce23b68049934b44a1c262ec39235e243168a365643ace91ff51afd67f32a07"} -2023-12-15T23:50:26.681Z INFO initializing dbft {"height": 6287, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:26.681Z debug frostfs-node/morph.go:229 new block {"index": 6286} -2023-12-15T23:50:26.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6286, "blockHeight": 6286, "took": "12.75036ms"} -2023-12-15T23:50:27.680Z INFO sending PrepareRequest {"height": 6287, "view": 0} -2023-12-15T23:50:27.680Z INFO sending Commit {"height": 6287, "view": 0} -2023-12-15T23:50:27.680Z INFO approving block {"height": 6287, "hash": "7ca891cecb08dd4c927d2946652c07af907da43d36eb917db3b365f25fd96d07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20a8a4c8d0f9026532e195e22a29dbd04e19a4ab2e042edb5e962b571ac5a5fc"} -2023-12-15T23:50:27.682Z INFO initializing dbft {"height": 6288, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:27.682Z debug frostfs-node/morph.go:229 new block {"index": 6287} -2023-12-15T23:50:27.789Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6287, "blockHeight": 6287, "took": "6.706315ms"} -2023-12-15T23:50:28.682Z INFO sending PrepareRequest {"height": 6288, "view": 0} -2023-12-15T23:50:28.682Z INFO sending Commit {"height": 6288, "view": 0} -2023-12-15T23:50:28.682Z INFO approving block {"height": 6288, "hash": "9fb0d012816d5aee2a4a39f956cc040fd949a1aad92d553719bb95d54aa5dbe7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ca891cecb08dd4c927d2946652c07af907da43d36eb917db3b365f25fd96d07"} -2023-12-15T23:50:28.685Z INFO initializing dbft {"height": 6289, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:28.685Z debug frostfs-node/morph.go:229 new block {"index": 6288} -2023-12-15T23:50:28.790Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6288, "blockHeight": 6288, "took": "7.463265ms"} -2023-12-15T23:50:29.684Z INFO sending PrepareRequest {"height": 6289, "view": 0} -2023-12-15T23:50:29.684Z INFO sending Commit {"height": 6289, "view": 0} -2023-12-15T23:50:29.684Z INFO approving block {"height": 6289, "hash": "8947564ea1e1fd2407d5964d1b19d787768824ab9fde5593540a9171427b9b2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fb0d012816d5aee2a4a39f956cc040fd949a1aad92d553719bb95d54aa5dbe7"} -2023-12-15T23:50:29.686Z INFO initializing dbft {"height": 6290, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:29.687Z debug frostfs-node/morph.go:229 new block {"index": 6289} -2023-12-15T23:50:29.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6289, "blockHeight": 6289, "took": "7.490571ms"} -2023-12-15T23:50:30.686Z INFO sending PrepareRequest {"height": 6290, "view": 0} -2023-12-15T23:50:30.686Z INFO sending Commit {"height": 6290, "view": 0} -2023-12-15T23:50:30.687Z INFO approving block {"height": 6290, "hash": "356ce3118e86e904c075df28a569fc70071e7212b9cadd40341fb19df1c743c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8947564ea1e1fd2407d5964d1b19d787768824ab9fde5593540a9171427b9b2c"} -2023-12-15T23:50:30.689Z INFO initializing dbft {"height": 6291, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:30.689Z debug frostfs-node/morph.go:229 new block {"index": 6290} -2023-12-15T23:50:30.793Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6290, "blockHeight": 6290, "took": "7.719915ms"} -2023-12-15T23:50:31.688Z INFO sending PrepareRequest {"height": 6291, "view": 0} -2023-12-15T23:50:31.689Z INFO sending Commit {"height": 6291, "view": 0} -2023-12-15T23:50:31.689Z INFO approving block {"height": 6291, "hash": "da9444fac5d7e4d476f45e21f6cd07b8f200d1b5fe04a9ebaf94ed02dade3794", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "356ce3118e86e904c075df28a569fc70071e7212b9cadd40341fb19df1c743c9"} -2023-12-15T23:50:31.691Z INFO initializing dbft {"height": 6292, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:31.692Z debug frostfs-node/morph.go:229 new block {"index": 6291} -2023-12-15T23:50:31.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6291, "blockHeight": 6291, "took": "6.908071ms"} -2023-12-15T23:50:32.690Z INFO sending PrepareRequest {"height": 6292, "view": 0} -2023-12-15T23:50:32.691Z INFO sending Commit {"height": 6292, "view": 0} -2023-12-15T23:50:32.691Z INFO approving block {"height": 6292, "hash": "f80a3bee8817e55c0ea6e689cee8d14ce80aae1c066edf071da6d18cf0e44cdc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da9444fac5d7e4d476f45e21f6cd07b8f200d1b5fe04a9ebaf94ed02dade3794"} -2023-12-15T23:50:32.693Z INFO initializing dbft {"height": 6293, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:32.694Z debug frostfs-node/morph.go:229 new block {"index": 6292} -2023-12-15T23:50:32.795Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6292, "blockHeight": 6292, "took": "6.558911ms"} -2023-12-15T23:50:33.693Z INFO sending PrepareRequest {"height": 6293, "view": 0} -2023-12-15T23:50:33.693Z INFO sending Commit {"height": 6293, "view": 0} -2023-12-15T23:50:33.693Z INFO approving block {"height": 6293, "hash": "ecfdb3ebfaaa070f646d62b35f18695e9cefa9d0b392db124eba847ae154a308", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f80a3bee8817e55c0ea6e689cee8d14ce80aae1c066edf071da6d18cf0e44cdc"} -2023-12-15T23:50:33.695Z INFO initializing dbft {"height": 6294, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:33.696Z debug frostfs-node/morph.go:229 new block {"index": 6293} -2023-12-15T23:50:33.795Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6293, "blockHeight": 6293, "took": "6.52647ms"} -2023-12-15T23:50:34.694Z INFO sending PrepareRequest {"height": 6294, "view": 0} -2023-12-15T23:50:34.695Z INFO sending Commit {"height": 6294, "view": 0} -2023-12-15T23:50:34.695Z INFO approving block {"height": 6294, "hash": "c6b113c42c5efecd847f38b925a861bd2e52f0e680491e5d231ca5500f9b6aae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecfdb3ebfaaa070f646d62b35f18695e9cefa9d0b392db124eba847ae154a308"} -2023-12-15T23:50:34.697Z INFO initializing dbft {"height": 6295, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:34.698Z debug frostfs-node/morph.go:229 new block {"index": 6294} -2023-12-15T23:50:34.796Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6294, "blockHeight": 6294, "took": "6.116748ms"} -2023-12-15T23:50:35.696Z INFO sending PrepareRequest {"height": 6295, "view": 0} -2023-12-15T23:50:35.697Z INFO sending Commit {"height": 6295, "view": 0} -2023-12-15T23:50:35.697Z INFO approving block {"height": 6295, "hash": "b605b21e737db4dbe6bc9c2b7348c16e611ceff3ec6d495280d2b890d36fa125", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6b113c42c5efecd847f38b925a861bd2e52f0e680491e5d231ca5500f9b6aae"} -2023-12-15T23:50:35.700Z INFO initializing dbft {"height": 6296, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:35.701Z debug frostfs-node/morph.go:229 new block {"index": 6295} -2023-12-15T23:50:35.796Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6295, "blockHeight": 6295, "took": "6.311375ms"} -2023-12-15T23:50:36.698Z INFO sending PrepareRequest {"height": 6296, "view": 0} -2023-12-15T23:50:36.698Z INFO sending Commit {"height": 6296, "view": 0} -2023-12-15T23:50:36.699Z INFO approving block {"height": 6296, "hash": "e4ce229c6b98fff7b8cc11fb487cb9165f442a42fdda196991d9959e05b915a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b605b21e737db4dbe6bc9c2b7348c16e611ceff3ec6d495280d2b890d36fa125"} -2023-12-15T23:50:36.701Z INFO initializing dbft {"height": 6297, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:36.702Z debug frostfs-node/morph.go:229 new block {"index": 6296} -2023-12-15T23:50:36.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6296, "blockHeight": 6296, "took": "9.44567ms"} -2023-12-15T23:50:37.700Z INFO sending PrepareRequest {"height": 6297, "view": 0} -2023-12-15T23:50:37.700Z INFO sending Commit {"height": 6297, "view": 0} -2023-12-15T23:50:37.701Z INFO approving block {"height": 6297, "hash": "47fb52141eccf5d9ecba88490b9ea5cb49b95c31e625acd998943771ce0ecacc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4ce229c6b98fff7b8cc11fb487cb9165f442a42fdda196991d9959e05b915a4"} -2023-12-15T23:50:37.702Z INFO initializing dbft {"height": 6298, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:37.703Z debug frostfs-node/morph.go:229 new block {"index": 6297} -2023-12-15T23:50:37.799Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6297, "blockHeight": 6297, "took": "7.212421ms"} -2023-12-15T23:50:38.702Z INFO sending PrepareRequest {"height": 6298, "view": 0} -2023-12-15T23:50:38.702Z INFO sending Commit {"height": 6298, "view": 0} -2023-12-15T23:50:38.702Z INFO approving block {"height": 6298, "hash": "ab13556b1842451192a0489c5ef9d81ea881d437868afaa1dffef9dade34f50c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47fb52141eccf5d9ecba88490b9ea5cb49b95c31e625acd998943771ce0ecacc"} -2023-12-15T23:50:38.704Z INFO initializing dbft {"height": 6299, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:38.705Z debug frostfs-node/morph.go:229 new block {"index": 6298} -2023-12-15T23:50:38.802Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6298, "blockHeight": 6298, "took": "9.675987ms"} -2023-12-15T23:50:39.703Z INFO sending PrepareRequest {"height": 6299, "view": 0} -2023-12-15T23:50:39.704Z INFO sending Commit {"height": 6299, "view": 0} -2023-12-15T23:50:39.704Z INFO approving block {"height": 6299, "hash": "09c440bc4568e9af185376eebd1720aea1a13a19765d9fa242c6fe0740b6ce0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab13556b1842451192a0489c5ef9d81ea881d437868afaa1dffef9dade34f50c"} -2023-12-15T23:50:39.706Z INFO initializing dbft {"height": 6300, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:39.707Z debug frostfs-node/morph.go:229 new block {"index": 6299} -2023-12-15T23:50:39.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6299, "blockHeight": 6299, "took": "10.896166ms"} -2023-12-15T23:50:40.706Z INFO sending PrepareRequest {"height": 6300, "view": 0} -2023-12-15T23:50:40.706Z INFO sending Commit {"height": 6300, "view": 0} -2023-12-15T23:50:40.706Z INFO approving block {"height": 6300, "hash": "9dc118a4601d1cfecc95a9b2f7467b52bc70e0f97e2f133f79c39779992d6bac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09c440bc4568e9af185376eebd1720aea1a13a19765d9fa242c6fe0740b6ce0e"} -2023-12-15T23:50:40.709Z INFO initializing dbft {"height": 6301, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:40.710Z debug frostfs-node/morph.go:229 new block {"index": 6300} -2023-12-15T23:50:40.802Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6300, "blockHeight": 6300, "took": "7.090432ms"} -2023-12-15T23:50:41.707Z INFO sending PrepareRequest {"height": 6301, "view": 0} -2023-12-15T23:50:41.708Z INFO sending Commit {"height": 6301, "view": 0} -2023-12-15T23:50:41.708Z INFO approving block {"height": 6301, "hash": "a810744820e5b273218667cac6ed3b58b9b8be0da2a4c113382d530a242826f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9dc118a4601d1cfecc95a9b2f7467b52bc70e0f97e2f133f79c39779992d6bac"} -2023-12-15T23:50:41.710Z INFO initializing dbft {"height": 6302, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:41.711Z debug frostfs-node/morph.go:229 new block {"index": 6301} -2023-12-15T23:50:41.804Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6301, "blockHeight": 6301, "took": "8.019444ms"} -2023-12-15T23:50:42.709Z INFO sending PrepareRequest {"height": 6302, "view": 0} -2023-12-15T23:50:42.710Z INFO sending Commit {"height": 6302, "view": 0} -2023-12-15T23:50:42.710Z INFO approving block {"height": 6302, "hash": "d3bf47191cd266bacbdf1f1e8f3d6a0342d18c6ad84f3ab71530a02acab2f595", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a810744820e5b273218667cac6ed3b58b9b8be0da2a4c113382d530a242826f7"} -2023-12-15T23:50:42.712Z INFO initializing dbft {"height": 6303, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:42.713Z debug frostfs-node/morph.go:229 new block {"index": 6302} -2023-12-15T23:50:42.808Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6302, "blockHeight": 6302, "took": "11.018823ms"} -2023-12-15T23:50:43.711Z INFO sending PrepareRequest {"height": 6303, "view": 0} -2023-12-15T23:50:43.711Z INFO sending Commit {"height": 6303, "view": 0} -2023-12-15T23:50:43.711Z INFO approving block {"height": 6303, "hash": "ee0a7caf5e52aff0f2d6bfa43c19a31d41adb88f9f0818b52c7497130e6208a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3bf47191cd266bacbdf1f1e8f3d6a0342d18c6ad84f3ab71530a02acab2f595"} -2023-12-15T23:50:43.713Z INFO initializing dbft {"height": 6304, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:43.714Z debug frostfs-node/morph.go:229 new block {"index": 6303} -2023-12-15T23:50:43.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6303, "blockHeight": 6303, "took": "6.843493ms"} -2023-12-15T23:50:44.713Z INFO sending PrepareRequest {"height": 6304, "view": 0} -2023-12-15T23:50:44.713Z INFO sending Commit {"height": 6304, "view": 0} -2023-12-15T23:50:44.714Z INFO approving block {"height": 6304, "hash": "a0d9bd3ecdda83e8ef9376d788f190d93dedbe9352ef991768d24f88d2de3f41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee0a7caf5e52aff0f2d6bfa43c19a31d41adb88f9f0818b52c7497130e6208a7"} -2023-12-15T23:50:44.716Z INFO initializing dbft {"height": 6305, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:44.717Z debug frostfs-node/morph.go:229 new block {"index": 6304} -2023-12-15T23:50:44.810Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6304, "blockHeight": 6304, "took": "11.208129ms"} -2023-12-15T23:50:45.715Z INFO sending PrepareRequest {"height": 6305, "view": 0} -2023-12-15T23:50:45.715Z INFO sending Commit {"height": 6305, "view": 0} -2023-12-15T23:50:45.716Z INFO approving block {"height": 6305, "hash": "a7a88fed00cf62bafac279afb973fa966b6ccd38a6cb19db5fd0f72beeedd7c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0d9bd3ecdda83e8ef9376d788f190d93dedbe9352ef991768d24f88d2de3f41"} -2023-12-15T23:50:45.718Z INFO initializing dbft {"height": 6306, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:45.719Z debug frostfs-node/morph.go:229 new block {"index": 6305} -2023-12-15T23:50:45.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6305, "blockHeight": 6305, "took": "5.635956ms"} -2023-12-15T23:50:46.717Z INFO sending PrepareRequest {"height": 6306, "view": 0} -2023-12-15T23:50:46.717Z INFO sending Commit {"height": 6306, "view": 0} -2023-12-15T23:50:46.717Z INFO approving block {"height": 6306, "hash": "a1edb8267f060d781b7e7a267adae76295b9df5b0d75557f97ca30a1a8380402", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7a88fed00cf62bafac279afb973fa966b6ccd38a6cb19db5fd0f72beeedd7c6"} -2023-12-15T23:50:46.719Z INFO initializing dbft {"height": 6307, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:46.720Z debug frostfs-node/morph.go:229 new block {"index": 6306} -2023-12-15T23:50:46.807Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6306, "blockHeight": 6306, "took": "6.700599ms"} -2023-12-15T23:50:47.719Z INFO sending PrepareRequest {"height": 6307, "view": 0} -2023-12-15T23:50:47.719Z INFO sending Commit {"height": 6307, "view": 0} -2023-12-15T23:50:47.719Z INFO approving block {"height": 6307, "hash": "ad6cf93ddcdd48c41daa850052a3f0a9549d7d41493c7676607c474e3c3428df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1edb8267f060d781b7e7a267adae76295b9df5b0d75557f97ca30a1a8380402"} -2023-12-15T23:50:47.722Z INFO initializing dbft {"height": 6308, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:47.722Z debug frostfs-node/morph.go:229 new block {"index": 6307} -2023-12-15T23:50:47.809Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6307, "blockHeight": 6307, "took": "7.375847ms"} -2023-12-15T23:50:48.721Z INFO sending PrepareRequest {"height": 6308, "view": 0} -2023-12-15T23:50:48.722Z INFO sending Commit {"height": 6308, "view": 0} -2023-12-15T23:50:48.722Z INFO approving block {"height": 6308, "hash": "6cd283f45cfcb188c7d8c8585f4d6945381460205254c6e722dc4bfb0d28b7d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad6cf93ddcdd48c41daa850052a3f0a9549d7d41493c7676607c474e3c3428df"} -2023-12-15T23:50:48.724Z INFO initializing dbft {"height": 6309, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:48.725Z debug frostfs-node/morph.go:229 new block {"index": 6308} -2023-12-15T23:50:48.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6308, "blockHeight": 6308, "took": "10.758125ms"} -2023-12-15T23:50:49.724Z INFO sending PrepareRequest {"height": 6309, "view": 0} -2023-12-15T23:50:49.724Z INFO sending Commit {"height": 6309, "view": 0} -2023-12-15T23:50:49.725Z INFO approving block {"height": 6309, "hash": "b72f2241c1a9c905fd2fad34094a3615689cb26ed16191dd6589d41e674653b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cd283f45cfcb188c7d8c8585f4d6945381460205254c6e722dc4bfb0d28b7d0"} -2023-12-15T23:50:49.727Z INFO initializing dbft {"height": 6310, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:49.727Z debug frostfs-node/morph.go:229 new block {"index": 6309} -2023-12-15T23:50:49.811Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6309, "blockHeight": 6309, "took": "7.297317ms"} -2023-12-15T23:50:50.726Z INFO sending PrepareRequest {"height": 6310, "view": 0} -2023-12-15T23:50:50.726Z INFO sending Commit {"height": 6310, "view": 0} -2023-12-15T23:50:50.727Z INFO approving block {"height": 6310, "hash": "6e8eade08a20c0679b9b010ab92c8c0c5b2e186a8f77d13c65e40d0d907f6cf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b72f2241c1a9c905fd2fad34094a3615689cb26ed16191dd6589d41e674653b3"} -2023-12-15T23:50:50.729Z INFO initializing dbft {"height": 6311, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:50.729Z debug frostfs-node/morph.go:229 new block {"index": 6310} -2023-12-15T23:50:50.812Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6310, "blockHeight": 6310, "took": "7.843863ms"} -2023-12-15T23:50:51.728Z INFO sending PrepareRequest {"height": 6311, "view": 0} -2023-12-15T23:50:51.729Z INFO sending Commit {"height": 6311, "view": 0} -2023-12-15T23:50:51.729Z INFO approving block {"height": 6311, "hash": "c11ab067416535e8dfeeadf469bc898cf1abd4cbf9f0b89b2f0be42e2e294011", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e8eade08a20c0679b9b010ab92c8c0c5b2e186a8f77d13c65e40d0d907f6cf9"} -2023-12-15T23:50:51.731Z INFO initializing dbft {"height": 6312, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:51.732Z debug frostfs-node/morph.go:229 new block {"index": 6311} -2023-12-15T23:50:51.816Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6311, "blockHeight": 6311, "took": "10.590089ms"} -2023-12-15T23:50:52.731Z INFO sending PrepareRequest {"height": 6312, "view": 0} -2023-12-15T23:50:52.731Z INFO sending Commit {"height": 6312, "view": 0} -2023-12-15T23:50:52.731Z INFO approving block {"height": 6312, "hash": "aaef58e43f655c18f2d34bb684a4fa51b766a484551ae63f1daf889f2f67add9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c11ab067416535e8dfeeadf469bc898cf1abd4cbf9f0b89b2f0be42e2e294011"} -2023-12-15T23:50:52.734Z INFO initializing dbft {"height": 6313, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:52.734Z debug frostfs-node/morph.go:229 new block {"index": 6312} -2023-12-15T23:50:52.817Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6312, "blockHeight": 6312, "took": "10.493387ms"} -2023-12-15T23:50:53.733Z INFO sending PrepareRequest {"height": 6313, "view": 0} -2023-12-15T23:50:53.733Z INFO sending Commit {"height": 6313, "view": 0} -2023-12-15T23:50:53.734Z INFO approving block {"height": 6313, "hash": "df85d1317596bd234db55691a2650cc17b22b8acc8cb2aef0e3079e6d35ef852", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aaef58e43f655c18f2d34bb684a4fa51b766a484551ae63f1daf889f2f67add9"} -2023-12-15T23:50:53.737Z debug frostfs-node/morph.go:229 new block {"index": 6313} -2023-12-15T23:50:53.736Z INFO initializing dbft {"height": 6314, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:53.816Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6313, "blockHeight": 6313, "took": "8.133259ms"} -2023-12-15T23:50:54.735Z INFO sending PrepareRequest {"height": 6314, "view": 0} -2023-12-15T23:50:54.735Z INFO sending Commit {"height": 6314, "view": 0} -2023-12-15T23:50:54.735Z INFO approving block {"height": 6314, "hash": "2dbc3652eacbe0d335b25cd37b322e17a66efb03f52c63c9c59af6729122470f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df85d1317596bd234db55691a2650cc17b22b8acc8cb2aef0e3079e6d35ef852"} -2023-12-15T23:50:54.737Z INFO initializing dbft {"height": 6315, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:54.738Z debug frostfs-node/morph.go:229 new block {"index": 6314} -2023-12-15T23:50:54.822Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6314, "blockHeight": 6314, "took": "12.893806ms"} -2023-12-15T23:50:55.737Z INFO sending PrepareRequest {"height": 6315, "view": 0} -2023-12-15T23:50:55.737Z INFO sending Commit {"height": 6315, "view": 0} -2023-12-15T23:50:55.737Z INFO approving block {"height": 6315, "hash": "fb1eab6a23db77401cf26d9cfea0d34c5200cae8fee9eb7030d2b96070590eb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2dbc3652eacbe0d335b25cd37b322e17a66efb03f52c63c9c59af6729122470f"} -2023-12-15T23:50:55.740Z INFO initializing dbft {"height": 6316, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:55.741Z debug frostfs-node/morph.go:229 new block {"index": 6315} -2023-12-15T23:50:55.820Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6315, "blockHeight": 6315, "took": "10.012542ms"} -2023-12-15T23:50:56.739Z INFO sending PrepareRequest {"height": 6316, "view": 0} -2023-12-15T23:50:56.739Z INFO sending Commit {"height": 6316, "view": 0} -2023-12-15T23:50:56.740Z INFO approving block {"height": 6316, "hash": "1c96c876595ec6c5b42657772914d00c4e86b55d49cdd2c0501535e440f98da2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb1eab6a23db77401cf26d9cfea0d34c5200cae8fee9eb7030d2b96070590eb7"} -2023-12-15T23:50:56.742Z INFO initializing dbft {"height": 6317, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:56.742Z debug frostfs-node/morph.go:229 new block {"index": 6316} -2023-12-15T23:50:56.821Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6316, "blockHeight": 6316, "took": "10.517986ms"} -2023-12-15T23:50:57.741Z INFO sending PrepareRequest {"height": 6317, "view": 0} -2023-12-15T23:50:57.741Z INFO sending Commit {"height": 6317, "view": 0} -2023-12-15T23:50:57.741Z INFO approving block {"height": 6317, "hash": "3ee439f372c1e2442e88d90bccf03ef02ff3e16250240bb888d8c87ae477b52e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c96c876595ec6c5b42657772914d00c4e86b55d49cdd2c0501535e440f98da2"} -2023-12-15T23:50:57.744Z INFO initializing dbft {"height": 6318, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:57.744Z debug frostfs-node/morph.go:229 new block {"index": 6317} -2023-12-15T23:50:57.748Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:50:57.753Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:50:57.753Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:50:57.821Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6317, "blockHeight": 6317, "took": "9.678122ms"} -2023-12-15T23:50:58.743Z INFO sending PrepareRequest {"height": 6318, "view": 0} -2023-12-15T23:50:58.743Z INFO sending Commit {"height": 6318, "view": 0} -2023-12-15T23:50:58.744Z INFO approving block {"height": 6318, "hash": "cc110ac9a319632fce3a7d9aa27f8bd6584cddbe728a2772b20bcc353d6da396", "tx_count": 2, "merkle": "7fb11880a92153d587868b255c559f497550c62fdd4d8872e3d03c5486f1478d", "prev": "3ee439f372c1e2442e88d90bccf03ef02ff3e16250240bb888d8c87ae477b52e"} -2023-12-15T23:50:58.745Z INFO runtime log {"tx": "e1ca7a8874d5cde9d0bd2bb7dc275812778c6a6f14974c66df022f56dedf6feb", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:50:58.745Z INFO runtime log {"tx": "e1ca7a8874d5cde9d0bd2bb7dc275812778c6a6f14974c66df022f56dedf6feb", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:50:58.748Z INFO initializing dbft {"height": 6319, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:58.749Z debug frostfs-node/morph.go:229 new block {"index": 6318} -2023-12-15T23:50:58.822Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6318, "blockHeight": 6318, "took": "10.053264ms"} -2023-12-15T23:50:59.745Z INFO sending PrepareRequest {"height": 6319, "view": 0} -2023-12-15T23:50:59.745Z INFO sending Commit {"height": 6319, "view": 0} -2023-12-15T23:50:59.746Z INFO approving block {"height": 6319, "hash": "95eb3512ef3f4f3e6dabb9a0d090d9a7e807b648c913542d04b6014d697014e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc110ac9a319632fce3a7d9aa27f8bd6584cddbe728a2772b20bcc353d6da396"} -2023-12-15T23:50:59.748Z INFO initializing dbft {"height": 6320, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:50:59.749Z debug frostfs-node/morph.go:229 new block {"index": 6319} -2023-12-15T23:50:59.821Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6319, "blockHeight": 6319, "took": "7.328897ms"} -2023-12-15T23:51:00.747Z INFO sending PrepareRequest {"height": 6320, "view": 0} -2023-12-15T23:51:00.748Z INFO sending Commit {"height": 6320, "view": 0} -2023-12-15T23:51:00.748Z INFO approving block {"height": 6320, "hash": "fd00664bb585c8f935c719b8c3b17e3e96f59f21c5d837bccc32495baf58f8b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95eb3512ef3f4f3e6dabb9a0d090d9a7e807b648c913542d04b6014d697014e0"} -2023-12-15T23:51:00.750Z INFO initializing dbft {"height": 6321, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:00.751Z debug frostfs-node/morph.go:229 new block {"index": 6320} -2023-12-15T23:51:00.821Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6320, "blockHeight": 6320, "took": "6.691056ms"} -2023-12-15T23:51:01.750Z INFO sending PrepareRequest {"height": 6321, "view": 0} -2023-12-15T23:51:01.750Z INFO sending Commit {"height": 6321, "view": 0} -2023-12-15T23:51:01.750Z INFO approving block {"height": 6321, "hash": "01cf5f66f7deb1303e97854c0bf8b8bfc3d8414c7f371a0f7e4e4673ad1ba826", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd00664bb585c8f935c719b8c3b17e3e96f59f21c5d837bccc32495baf58f8b9"} -2023-12-15T23:51:01.752Z INFO initializing dbft {"height": 6322, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:01.753Z debug frostfs-node/morph.go:229 new block {"index": 6321} -2023-12-15T23:51:01.824Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6321, "blockHeight": 6321, "took": "8.227873ms"} -2023-12-15T23:51:02.752Z INFO sending PrepareRequest {"height": 6322, "view": 0} -2023-12-15T23:51:02.753Z INFO sending Commit {"height": 6322, "view": 0} -2023-12-15T23:51:02.753Z INFO approving block {"height": 6322, "hash": "bddc1739237f2f438fea4b141711ef400526c4b57fef2859135044819adad93f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01cf5f66f7deb1303e97854c0bf8b8bfc3d8414c7f371a0f7e4e4673ad1ba826"} -2023-12-15T23:51:02.755Z INFO initializing dbft {"height": 6323, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:02.756Z debug frostfs-node/morph.go:229 new block {"index": 6322} -2023-12-15T23:51:02.823Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6322, "blockHeight": 6322, "took": "6.122129ms"} -2023-12-15T23:51:03.755Z INFO sending PrepareRequest {"height": 6323, "view": 0} -2023-12-15T23:51:03.755Z INFO sending Commit {"height": 6323, "view": 0} -2023-12-15T23:51:03.755Z INFO approving block {"height": 6323, "hash": "5dac04e63dba601f9babfcf3071ba7e376aa1a8beb1673a1981056a8b1087c8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bddc1739237f2f438fea4b141711ef400526c4b57fef2859135044819adad93f"} -2023-12-15T23:51:03.757Z INFO initializing dbft {"height": 6324, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:03.758Z debug frostfs-node/morph.go:229 new block {"index": 6323} -2023-12-15T23:51:03.826Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6323, "blockHeight": 6323, "took": "7.250702ms"} -2023-12-15T23:51:04.756Z INFO sending PrepareRequest {"height": 6324, "view": 0} -2023-12-15T23:51:04.757Z INFO sending Commit {"height": 6324, "view": 0} -2023-12-15T23:51:04.757Z INFO approving block {"height": 6324, "hash": "c58a36d7e91da5f729a0dab9457f544f3a4636d68da7e9ad3bbf5dbc317c37da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5dac04e63dba601f9babfcf3071ba7e376aa1a8beb1673a1981056a8b1087c8e"} -2023-12-15T23:51:04.760Z INFO initializing dbft {"height": 6325, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:04.760Z debug frostfs-node/morph.go:229 new block {"index": 6324} -2023-12-15T23:51:04.826Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6324, "blockHeight": 6324, "took": "6.913233ms"} -2023-12-15T23:51:05.758Z INFO sending PrepareRequest {"height": 6325, "view": 0} -2023-12-15T23:51:05.759Z INFO sending Commit {"height": 6325, "view": 0} -2023-12-15T23:51:05.759Z INFO approving block {"height": 6325, "hash": "5bb2bbaaa51998a4b7858da464a08e19b47eb5b8f080b79f3dd0598c3604686b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c58a36d7e91da5f729a0dab9457f544f3a4636d68da7e9ad3bbf5dbc317c37da"} -2023-12-15T23:51:05.762Z INFO initializing dbft {"height": 6326, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:05.763Z debug frostfs-node/morph.go:229 new block {"index": 6325} -2023-12-15T23:51:05.771Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 27 epoch for daughters"} -2023-12-15T23:51:05.828Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6325, "blockHeight": 6325, "took": "6.852251ms"} -2023-12-15T23:51:06.761Z INFO sending PrepareRequest {"height": 6326, "view": 0} -2023-12-15T23:51:06.761Z INFO sending Commit {"height": 6326, "view": 0} -2023-12-15T23:51:06.761Z INFO approving block {"height": 6326, "hash": "bd1766febf63ca32fafcad288d61e1425f00b8bcb62a68a7e4d5d760ff294eb8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5bb2bbaaa51998a4b7858da464a08e19b47eb5b8f080b79f3dd0598c3604686b"} -2023-12-15T23:51:06.763Z INFO initializing dbft {"height": 6327, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:06.765Z debug frostfs-node/morph.go:229 new block {"index": 6326} -2023-12-15T23:51:06.770Z INFO runtime log {"tx": "0964f1f8abb538dea0a82b7b3bda04dc22ee9f6e94706aa29da700a9e164494a", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:51:06.828Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6326, "blockHeight": 6326, "took": "6.853309ms"} -2023-12-15T23:51:07.763Z INFO sending PrepareRequest {"height": 6327, "view": 0} -2023-12-15T23:51:07.763Z INFO sending Commit {"height": 6327, "view": 0} -2023-12-15T23:51:07.764Z INFO approving block {"height": 6327, "hash": "15107d93e0b15ed3a34cbe2358433a331e9e1c88271793d0a947349b874eb65b", "tx_count": 1, "merkle": "9232c6d51ea92c0b2baa87fab28e9aee1c7481ba0157ec683ba183eb0ec5a08e", "prev": "bd1766febf63ca32fafcad288d61e1425f00b8bcb62a68a7e4d5d760ff294eb8"} -2023-12-15T23:51:07.765Z INFO runtime log {"tx": "8ea0c50eeb83a13b68ec5701ba81741cee9a8eb2fa87aa2b0b2ca91ed5c63292", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:51:07.766Z INFO initializing dbft {"height": 6328, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:07.767Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 27} -2023-12-15T23:51:07.768Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 27} -2023-12-15T23:51:07.768Z debug frostfs-node/morph.go:229 new block {"index": 6327} -2023-12-15T23:51:07.830Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 6327, "blockHeight": 6327, "took": "7.865358ms"} -2023-12-15T23:51:08.765Z INFO sending PrepareRequest {"height": 6328, "view": 0} -2023-12-15T23:51:08.766Z INFO sending Commit {"height": 6328, "view": 0} -2023-12-15T23:51:08.766Z INFO approving block {"height": 6328, "hash": "4629427be04e2634b15824df0fa7f1d8c7982366280c0a19b282e9dc8ae3e4b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15107d93e0b15ed3a34cbe2358433a331e9e1c88271793d0a947349b874eb65b"} -2023-12-15T23:51:08.768Z INFO initializing dbft {"height": 6329, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:08.769Z debug frostfs-node/morph.go:229 new block {"index": 6328} -2023-12-15T23:51:08.831Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6328, "blockHeight": 6328, "took": "7.22157ms"} -2023-12-15T23:51:09.768Z INFO sending PrepareRequest {"height": 6329, "view": 0} -2023-12-15T23:51:09.768Z INFO sending Commit {"height": 6329, "view": 0} -2023-12-15T23:51:09.768Z INFO approving block {"height": 6329, "hash": "ac217cfa9c6fe32e555224e0d9e00c74560f5189a87194bcef2a393e6f7c763a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4629427be04e2634b15824df0fa7f1d8c7982366280c0a19b282e9dc8ae3e4b6"} -2023-12-15T23:51:09.770Z INFO initializing dbft {"height": 6330, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:09.771Z debug frostfs-node/morph.go:229 new block {"index": 6329} -2023-12-15T23:51:09.833Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6329, "blockHeight": 6329, "took": "7.783382ms"} -2023-12-15T23:51:10.770Z INFO sending PrepareRequest {"height": 6330, "view": 0} -2023-12-15T23:51:10.771Z INFO sending Commit {"height": 6330, "view": 0} -2023-12-15T23:51:10.771Z INFO approving block {"height": 6330, "hash": "3cf4cb6b74ec5c8a18fcdf7d0a738c8c5777c6af08176a2b2331d4fb7fa4d70c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac217cfa9c6fe32e555224e0d9e00c74560f5189a87194bcef2a393e6f7c763a"} -2023-12-15T23:51:10.773Z INFO initializing dbft {"height": 6331, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:10.773Z debug frostfs-node/morph.go:229 new block {"index": 6330} -2023-12-15T23:51:10.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6330, "blockHeight": 6330, "took": "7.455877ms"} -2023-12-15T23:51:11.772Z INFO sending PrepareRequest {"height": 6331, "view": 0} -2023-12-15T23:51:11.772Z INFO sending Commit {"height": 6331, "view": 0} -2023-12-15T23:51:11.773Z INFO approving block {"height": 6331, "hash": "df2982634a92f8e9e03465c7bc058edfd6bbb1953700b5b36e92c1b55c792244", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cf4cb6b74ec5c8a18fcdf7d0a738c8c5777c6af08176a2b2331d4fb7fa4d70c"} -2023-12-15T23:51:11.775Z INFO initializing dbft {"height": 6332, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:11.775Z debug frostfs-node/morph.go:229 new block {"index": 6331} -2023-12-15T23:51:11.835Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6331, "blockHeight": 6331, "took": "7.01569ms"} -2023-12-15T23:51:12.774Z INFO sending PrepareRequest {"height": 6332, "view": 0} -2023-12-15T23:51:12.775Z INFO sending Commit {"height": 6332, "view": 0} -2023-12-15T23:51:12.775Z INFO approving block {"height": 6332, "hash": "214ea94e2aeaab129a0c62cf94dfc32c3cd6cddf13f193248ba9b61801761a86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df2982634a92f8e9e03465c7bc058edfd6bbb1953700b5b36e92c1b55c792244"} -2023-12-15T23:51:12.777Z INFO initializing dbft {"height": 6333, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:12.778Z debug frostfs-node/morph.go:229 new block {"index": 6332} -2023-12-15T23:51:12.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6332, "blockHeight": 6332, "took": "7.472089ms"} -2023-12-15T23:51:13.777Z INFO sending PrepareRequest {"height": 6333, "view": 0} -2023-12-15T23:51:13.777Z INFO sending Commit {"height": 6333, "view": 0} -2023-12-15T23:51:13.777Z INFO approving block {"height": 6333, "hash": "942d964f26949d0b744e9ddccfc31fb17b948518e7b5d5fddcf935ec43b31f26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "214ea94e2aeaab129a0c62cf94dfc32c3cd6cddf13f193248ba9b61801761a86"} -2023-12-15T23:51:13.779Z INFO initializing dbft {"height": 6334, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:13.780Z debug frostfs-node/morph.go:229 new block {"index": 6333} -2023-12-15T23:51:13.839Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6333, "blockHeight": 6333, "took": "8.959122ms"} -2023-12-15T23:51:14.779Z INFO sending PrepareRequest {"height": 6334, "view": 0} -2023-12-15T23:51:14.779Z INFO sending Commit {"height": 6334, "view": 0} -2023-12-15T23:51:14.779Z INFO approving block {"height": 6334, "hash": "7dc73339503a5c0fb578b270faf5e62a80b92a54d16b0a9e7f549f5648c09b6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "942d964f26949d0b744e9ddccfc31fb17b948518e7b5d5fddcf935ec43b31f26"} -2023-12-15T23:51:14.781Z INFO initializing dbft {"height": 6335, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:14.782Z debug frostfs-node/morph.go:229 new block {"index": 6334} -2023-12-15T23:51:14.842Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6334, "blockHeight": 6334, "took": "11.483168ms"} -2023-12-15T23:51:15.781Z INFO sending PrepareRequest {"height": 6335, "view": 0} -2023-12-15T23:51:15.781Z INFO sending Commit {"height": 6335, "view": 0} -2023-12-15T23:51:15.781Z INFO approving block {"height": 6335, "hash": "2adf62c7dd243317dcf4faf6e669cf94f4e69ef864f12ccdc9e829236cfc62b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7dc73339503a5c0fb578b270faf5e62a80b92a54d16b0a9e7f549f5648c09b6b"} -2023-12-15T23:51:15.783Z INFO initializing dbft {"height": 6336, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:15.784Z debug frostfs-node/morph.go:229 new block {"index": 6335} -2023-12-15T23:51:15.840Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6335, "blockHeight": 6335, "took": "7.641855ms"} -2023-12-15T23:51:16.783Z INFO sending PrepareRequest {"height": 6336, "view": 0} -2023-12-15T23:51:16.783Z INFO sending Commit {"height": 6336, "view": 0} -2023-12-15T23:51:16.783Z INFO approving block {"height": 6336, "hash": "d01def1bcc90c4e2642ae6cd24cdbe8ae63f1ee309f90f78788c64a9f69539c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2adf62c7dd243317dcf4faf6e669cf94f4e69ef864f12ccdc9e829236cfc62b8"} -2023-12-15T23:51:16.785Z INFO initializing dbft {"height": 6337, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:16.786Z debug frostfs-node/morph.go:229 new block {"index": 6336} -2023-12-15T23:51:16.839Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6336, "blockHeight": 6336, "took": "6.493712ms"} -2023-12-15T23:51:17.785Z INFO sending PrepareRequest {"height": 6337, "view": 0} -2023-12-15T23:51:17.785Z INFO sending Commit {"height": 6337, "view": 0} -2023-12-15T23:51:17.785Z INFO approving block {"height": 6337, "hash": "6c40057f7493951fd7b5ca4ba2a4826ad879ef986f3e44bb801568f7a24d906e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d01def1bcc90c4e2642ae6cd24cdbe8ae63f1ee309f90f78788c64a9f69539c6"} -2023-12-15T23:51:17.787Z INFO initializing dbft {"height": 6338, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:17.788Z debug frostfs-node/morph.go:229 new block {"index": 6337} -2023-12-15T23:51:17.840Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6337, "blockHeight": 6337, "took": "6.556062ms"} -2023-12-15T23:51:18.787Z INFO sending PrepareRequest {"height": 6338, "view": 0} -2023-12-15T23:51:18.787Z INFO sending Commit {"height": 6338, "view": 0} -2023-12-15T23:51:18.787Z INFO approving block {"height": 6338, "hash": "dc4e36d1d6b8d108c0917dbe992a2c192f7f338e15a26bdd3381f35f753d410f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c40057f7493951fd7b5ca4ba2a4826ad879ef986f3e44bb801568f7a24d906e"} -2023-12-15T23:51:18.789Z INFO initializing dbft {"height": 6339, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:18.790Z debug frostfs-node/morph.go:229 new block {"index": 6338} -2023-12-15T23:51:18.840Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6338, "blockHeight": 6338, "took": "6.887532ms"} -2023-12-15T23:51:19.788Z INFO sending PrepareRequest {"height": 6339, "view": 0} -2023-12-15T23:51:19.789Z INFO sending Commit {"height": 6339, "view": 0} -2023-12-15T23:51:19.789Z INFO approving block {"height": 6339, "hash": "71e628c5edf806a57b561e3ac0891a648e58c0e117d6eb70195e326ffd9b3e87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc4e36d1d6b8d108c0917dbe992a2c192f7f338e15a26bdd3381f35f753d410f"} -2023-12-15T23:51:19.791Z INFO initializing dbft {"height": 6340, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:19.792Z debug frostfs-node/morph.go:229 new block {"index": 6339} -2023-12-15T23:51:19.841Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6339, "blockHeight": 6339, "took": "7.094628ms"} -2023-12-15T23:51:20.790Z INFO sending PrepareRequest {"height": 6340, "view": 0} -2023-12-15T23:51:20.790Z INFO sending Commit {"height": 6340, "view": 0} -2023-12-15T23:51:20.791Z INFO approving block {"height": 6340, "hash": "3f179c9b6a77eccfc3b12021f0809af3c0d9300e2fe66a790747ab1fa8154bd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71e628c5edf806a57b561e3ac0891a648e58c0e117d6eb70195e326ffd9b3e87"} -2023-12-15T23:51:20.793Z INFO initializing dbft {"height": 6341, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:20.794Z debug frostfs-node/morph.go:229 new block {"index": 6340} -2023-12-15T23:51:20.841Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6340, "blockHeight": 6340, "took": "6.82086ms"} -2023-12-15T23:51:21.793Z INFO sending PrepareRequest {"height": 6341, "view": 0} -2023-12-15T23:51:21.793Z INFO sending Commit {"height": 6341, "view": 0} -2023-12-15T23:51:21.793Z INFO approving block {"height": 6341, "hash": "154b03f7e77b504abd4dd919cf974464e0181b7f5b42ba7aae9ad33b4493f4c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f179c9b6a77eccfc3b12021f0809af3c0d9300e2fe66a790747ab1fa8154bd8"} -2023-12-15T23:51:21.795Z INFO initializing dbft {"height": 6342, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:21.796Z debug frostfs-node/morph.go:229 new block {"index": 6341} -2023-12-15T23:51:21.842Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6341, "blockHeight": 6341, "took": "7.274074ms"} -2023-12-15T23:51:22.795Z INFO sending PrepareRequest {"height": 6342, "view": 0} -2023-12-15T23:51:22.795Z INFO sending Commit {"height": 6342, "view": 0} -2023-12-15T23:51:22.795Z INFO approving block {"height": 6342, "hash": "3bb333c63408be401212a4a120afaf0035bd0b243f63760c78cddaca1dae4962", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "154b03f7e77b504abd4dd919cf974464e0181b7f5b42ba7aae9ad33b4493f4c4"} -2023-12-15T23:51:22.797Z INFO initializing dbft {"height": 6343, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:22.798Z debug frostfs-node/morph.go:229 new block {"index": 6342} -2023-12-15T23:51:22.843Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6342, "blockHeight": 6342, "took": "7.647624ms"} -2023-12-15T23:51:23.797Z INFO sending PrepareRequest {"height": 6343, "view": 0} -2023-12-15T23:51:23.798Z INFO sending Commit {"height": 6343, "view": 0} -2023-12-15T23:51:23.798Z INFO approving block {"height": 6343, "hash": "a4ca9cd617b3d513bdf16e2ae2fae96b4825d77256a9cd63010172c618c04175", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bb333c63408be401212a4a120afaf0035bd0b243f63760c78cddaca1dae4962"} -2023-12-15T23:51:23.800Z INFO initializing dbft {"height": 6344, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:23.801Z debug frostfs-node/morph.go:229 new block {"index": 6343} -2023-12-15T23:51:23.846Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6343, "blockHeight": 6343, "took": "9.493717ms"} -2023-12-15T23:51:24.802Z INFO sending PrepareRequest {"height": 6344, "view": 0} -2023-12-15T23:51:24.802Z INFO sending Commit {"height": 6344, "view": 0} -2023-12-15T23:51:24.803Z INFO approving block {"height": 6344, "hash": "8007d35c5a3dd2a3c2ef465b55d95e41c1e7c99dca46fd433a6141e6583d2a28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4ca9cd617b3d513bdf16e2ae2fae96b4825d77256a9cd63010172c618c04175"} -2023-12-15T23:51:24.805Z INFO initializing dbft {"height": 6345, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:24.806Z debug frostfs-node/morph.go:229 new block {"index": 6344} -2023-12-15T23:51:24.849Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6344, "blockHeight": 6344, "took": "11.068771ms"} -2023-12-15T23:51:25.805Z INFO sending PrepareRequest {"height": 6345, "view": 0} -2023-12-15T23:51:25.805Z INFO sending Commit {"height": 6345, "view": 0} -2023-12-15T23:51:25.805Z INFO approving block {"height": 6345, "hash": "e0c731d2f99c5e471d723ba53330da319a43a147133c57de16c6017a80d517af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8007d35c5a3dd2a3c2ef465b55d95e41c1e7c99dca46fd433a6141e6583d2a28"} -2023-12-15T23:51:25.808Z INFO initializing dbft {"height": 6346, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:25.808Z debug frostfs-node/morph.go:229 new block {"index": 6345} -2023-12-15T23:51:25.849Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6345, "blockHeight": 6345, "took": "10.581765ms"} -2023-12-15T23:51:26.807Z INFO sending PrepareRequest {"height": 6346, "view": 0} -2023-12-15T23:51:26.807Z INFO sending Commit {"height": 6346, "view": 0} -2023-12-15T23:51:26.807Z INFO approving block {"height": 6346, "hash": "d8c694583856151f5d518c4f871442150396a5acf37c27367806e739a7942095", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0c731d2f99c5e471d723ba53330da319a43a147133c57de16c6017a80d517af"} -2023-12-15T23:51:26.810Z INFO initializing dbft {"height": 6347, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:26.810Z debug frostfs-node/morph.go:229 new block {"index": 6346} -2023-12-15T23:51:26.849Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6346, "blockHeight": 6346, "took": "9.782665ms"} -2023-12-15T23:51:27.809Z INFO sending PrepareRequest {"height": 6347, "view": 0} -2023-12-15T23:51:27.809Z INFO sending Commit {"height": 6347, "view": 0} -2023-12-15T23:51:27.809Z INFO approving block {"height": 6347, "hash": "855cdd7c83fcc3c43ace9f44e599011297c7220ab8dc322ac2fffff4d74ba5cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8c694583856151f5d518c4f871442150396a5acf37c27367806e739a7942095"} -2023-12-15T23:51:27.813Z INFO initializing dbft {"height": 6348, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:27.814Z debug frostfs-node/morph.go:229 new block {"index": 6347} -2023-12-15T23:51:27.850Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6347, "blockHeight": 6347, "took": "8.489237ms"} -2023-12-15T23:51:28.811Z INFO sending PrepareRequest {"height": 6348, "view": 0} -2023-12-15T23:51:28.811Z INFO sending Commit {"height": 6348, "view": 0} -2023-12-15T23:51:28.811Z INFO approving block {"height": 6348, "hash": "6874e8f8eaed7c1df31abd7292de94a2aa235c588c63ce6ba458a50cef8724d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "855cdd7c83fcc3c43ace9f44e599011297c7220ab8dc322ac2fffff4d74ba5cc"} -2023-12-15T23:51:28.814Z INFO initializing dbft {"height": 6349, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:28.815Z debug frostfs-node/morph.go:229 new block {"index": 6348} -2023-12-15T23:51:28.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6348, "blockHeight": 6348, "took": "13.696355ms"} -2023-12-15T23:51:29.813Z INFO sending PrepareRequest {"height": 6349, "view": 0} -2023-12-15T23:51:29.813Z INFO sending Commit {"height": 6349, "view": 0} -2023-12-15T23:51:29.813Z INFO approving block {"height": 6349, "hash": "7939f92941cee6fa3bd55f9a3ab695cdf9218d97699c9fad177436985e68d4e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6874e8f8eaed7c1df31abd7292de94a2aa235c588c63ce6ba458a50cef8724d4"} -2023-12-15T23:51:29.815Z INFO initializing dbft {"height": 6350, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:29.817Z debug frostfs-node/morph.go:229 new block {"index": 6349} -2023-12-15T23:51:29.850Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6349, "blockHeight": 6349, "took": "6.978635ms"} -2023-12-15T23:51:30.815Z INFO sending PrepareRequest {"height": 6350, "view": 0} -2023-12-15T23:51:30.815Z INFO sending Commit {"height": 6350, "view": 0} -2023-12-15T23:51:30.816Z INFO approving block {"height": 6350, "hash": "7653d12cab90cb3ee348190db1da72dc8e132f09230c3aca4fea212e4dc44037", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7939f92941cee6fa3bd55f9a3ab695cdf9218d97699c9fad177436985e68d4e7"} -2023-12-15T23:51:30.818Z INFO initializing dbft {"height": 6351, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:30.820Z debug frostfs-node/morph.go:229 new block {"index": 6350} -2023-12-15T23:51:30.853Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6350, "blockHeight": 6350, "took": "9.313571ms"} -2023-12-15T23:51:31.817Z INFO sending PrepareRequest {"height": 6351, "view": 0} -2023-12-15T23:51:31.817Z INFO sending Commit {"height": 6351, "view": 0} -2023-12-15T23:51:31.818Z INFO approving block {"height": 6351, "hash": "f3a7b826a99ba6ba808901c9515e04ef08f0030ccd6e9ccb099dcf18614d912b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7653d12cab90cb3ee348190db1da72dc8e132f09230c3aca4fea212e4dc44037"} -2023-12-15T23:51:31.819Z INFO initializing dbft {"height": 6352, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:31.820Z debug frostfs-node/morph.go:229 new block {"index": 6351} -2023-12-15T23:51:31.851Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6351, "blockHeight": 6351, "took": "6.603043ms"} -2023-12-15T23:51:32.818Z INFO sending PrepareRequest {"height": 6352, "view": 0} -2023-12-15T23:51:32.819Z INFO sending Commit {"height": 6352, "view": 0} -2023-12-15T23:51:32.819Z INFO approving block {"height": 6352, "hash": "20a9fb20f3e8347d7187d4e7bca49ba751af8627b60354ba20b2cd53228704c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3a7b826a99ba6ba808901c9515e04ef08f0030ccd6e9ccb099dcf18614d912b"} -2023-12-15T23:51:32.822Z INFO initializing dbft {"height": 6353, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:32.823Z debug frostfs-node/morph.go:229 new block {"index": 6352} -2023-12-15T23:51:32.852Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6352, "blockHeight": 6352, "took": "6.817578ms"} -2023-12-15T23:51:33.821Z INFO sending PrepareRequest {"height": 6353, "view": 0} -2023-12-15T23:51:33.821Z INFO sending Commit {"height": 6353, "view": 0} -2023-12-15T23:51:33.822Z INFO approving block {"height": 6353, "hash": "ec0f2467c04122745d8bb15ad917b6bcd19d15f76f321f9405d5b5949a92027f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20a9fb20f3e8347d7187d4e7bca49ba751af8627b60354ba20b2cd53228704c3"} -2023-12-15T23:51:33.824Z INFO initializing dbft {"height": 6354, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:33.824Z debug frostfs-node/morph.go:229 new block {"index": 6353} -2023-12-15T23:51:33.854Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6353, "blockHeight": 6353, "took": "7.439436ms"} -2023-12-15T23:51:34.823Z INFO sending PrepareRequest {"height": 6354, "view": 0} -2023-12-15T23:51:34.824Z INFO sending Commit {"height": 6354, "view": 0} -2023-12-15T23:51:34.824Z INFO approving block {"height": 6354, "hash": "d93c9de1c7e44a6b7480e936cf38949533db3cdd73bac0cb2b63397a44e08835", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec0f2467c04122745d8bb15ad917b6bcd19d15f76f321f9405d5b5949a92027f"} -2023-12-15T23:51:34.826Z INFO initializing dbft {"height": 6355, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:34.827Z debug frostfs-node/morph.go:229 new block {"index": 6354} -2023-12-15T23:51:34.854Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6354, "blockHeight": 6354, "took": "6.719775ms"} -2023-12-15T23:51:35.825Z INFO sending PrepareRequest {"height": 6355, "view": 0} -2023-12-15T23:51:35.826Z INFO sending Commit {"height": 6355, "view": 0} -2023-12-15T23:51:35.826Z INFO approving block {"height": 6355, "hash": "046735cca9bd82f63ee9d3e34fe788b73af3ac451e215dca279a9f16cc0fab72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d93c9de1c7e44a6b7480e936cf38949533db3cdd73bac0cb2b63397a44e08835"} -2023-12-15T23:51:35.828Z INFO initializing dbft {"height": 6356, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:35.829Z debug frostfs-node/morph.go:229 new block {"index": 6355} -2023-12-15T23:51:35.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6355, "blockHeight": 6355, "took": "6.961592ms"} -2023-12-15T23:51:36.828Z INFO sending PrepareRequest {"height": 6356, "view": 0} -2023-12-15T23:51:36.828Z INFO sending Commit {"height": 6356, "view": 0} -2023-12-15T23:51:36.828Z INFO approving block {"height": 6356, "hash": "141f295d83c62a44848fd3a35d6f57d030d727df22845e7374abf4823ca3b042", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "046735cca9bd82f63ee9d3e34fe788b73af3ac451e215dca279a9f16cc0fab72"} -2023-12-15T23:51:36.830Z INFO initializing dbft {"height": 6357, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:36.831Z debug frostfs-node/morph.go:229 new block {"index": 6356} -2023-12-15T23:51:36.857Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6356, "blockHeight": 6356, "took": "7.791226ms"} -2023-12-15T23:51:37.830Z INFO sending PrepareRequest {"height": 6357, "view": 0} -2023-12-15T23:51:37.830Z INFO sending Commit {"height": 6357, "view": 0} -2023-12-15T23:51:37.831Z INFO approving block {"height": 6357, "hash": "8f429c1e8da21e1a4aa6e707068774feb3121e7d410bd2b98bcaaaed4cbca55a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "141f295d83c62a44848fd3a35d6f57d030d727df22845e7374abf4823ca3b042"} -2023-12-15T23:51:37.833Z INFO initializing dbft {"height": 6358, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:37.833Z debug frostfs-node/morph.go:229 new block {"index": 6357} -2023-12-15T23:51:37.857Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6357, "blockHeight": 6357, "took": "7.105956ms"} -2023-12-15T23:51:38.832Z INFO sending PrepareRequest {"height": 6358, "view": 0} -2023-12-15T23:51:38.832Z INFO sending Commit {"height": 6358, "view": 0} -2023-12-15T23:51:38.833Z INFO approving block {"height": 6358, "hash": "386e44712fa3fab8de78a45146e124584f1840c875f7a18cc6a55747b268a672", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f429c1e8da21e1a4aa6e707068774feb3121e7d410bd2b98bcaaaed4cbca55a"} -2023-12-15T23:51:38.835Z INFO initializing dbft {"height": 6359, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:38.836Z debug frostfs-node/morph.go:229 new block {"index": 6358} -2023-12-15T23:51:38.860Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6358, "blockHeight": 6358, "took": "8.96086ms"} -2023-12-15T23:51:39.834Z INFO sending PrepareRequest {"height": 6359, "view": 0} -2023-12-15T23:51:39.834Z INFO sending Commit {"height": 6359, "view": 0} -2023-12-15T23:51:39.835Z INFO approving block {"height": 6359, "hash": "a6a85f019a31f294a62266bc6ae0b398b56ada7776fd121655ed01360ba72b53", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "386e44712fa3fab8de78a45146e124584f1840c875f7a18cc6a55747b268a672"} -2023-12-15T23:51:39.837Z INFO initializing dbft {"height": 6360, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:39.838Z debug frostfs-node/morph.go:229 new block {"index": 6359} -2023-12-15T23:51:39.860Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6359, "blockHeight": 6359, "took": "8.897451ms"} -2023-12-15T23:51:40.836Z INFO sending PrepareRequest {"height": 6360, "view": 0} -2023-12-15T23:51:40.837Z INFO sending Commit {"height": 6360, "view": 0} -2023-12-15T23:51:40.837Z INFO approving block {"height": 6360, "hash": "fe3a30364ba47e1c47c485a9b294bac5387a22624ab7274b3b505f6074a98202", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6a85f019a31f294a62266bc6ae0b398b56ada7776fd121655ed01360ba72b53"} -2023-12-15T23:51:40.839Z INFO initializing dbft {"height": 6361, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:40.840Z debug frostfs-node/morph.go:229 new block {"index": 6360} -2023-12-15T23:51:40.862Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6360, "blockHeight": 6360, "took": "9.619342ms"} -2023-12-15T23:51:41.838Z INFO sending PrepareRequest {"height": 6361, "view": 0} -2023-12-15T23:51:41.839Z INFO sending Commit {"height": 6361, "view": 0} -2023-12-15T23:51:41.839Z INFO approving block {"height": 6361, "hash": "65a742d8322a929afcfd54811896310d124ad61837fcb24c9114d07895dd7c43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe3a30364ba47e1c47c485a9b294bac5387a22624ab7274b3b505f6074a98202"} -2023-12-15T23:51:41.841Z INFO initializing dbft {"height": 6362, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:41.842Z debug frostfs-node/morph.go:229 new block {"index": 6361} -2023-12-15T23:51:41.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6361, "blockHeight": 6361, "took": "9.855393ms"} -2023-12-15T23:51:42.840Z INFO sending PrepareRequest {"height": 6362, "view": 0} -2023-12-15T23:51:42.841Z INFO sending Commit {"height": 6362, "view": 0} -2023-12-15T23:51:42.841Z INFO approving block {"height": 6362, "hash": "d0eca41582c0d69d741ba7701b091c2515d41c04f06cb79732e315b12e344e28", "tx_count": 1, "merkle": "41c5a4123eb7686519780f92e08c0f0d2f123d43f84b7096a371b6fda2347dc3", "prev": "65a742d8322a929afcfd54811896310d124ad61837fcb24c9114d07895dd7c43"} -2023-12-15T23:51:42.844Z INFO initializing dbft {"height": 6363, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:42.845Z debug frostfs-node/morph.go:229 new block {"index": 6362} -2023-12-15T23:51:42.851Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T23:51:42.869Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 6362, "blockHeight": 6362, "took": "15.903789ms"} -2023-12-15T23:51:43.842Z INFO sending PrepareRequest {"height": 6363, "view": 0} -2023-12-15T23:51:43.843Z INFO sending Commit {"height": 6363, "view": 0} -2023-12-15T23:51:43.843Z INFO approving block {"height": 6363, "hash": "0e441da6f420bc74be8e1e2c363eb5a8bbc4308a235bf90885def2dfcedfc120", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0eca41582c0d69d741ba7701b091c2515d41c04f06cb79732e315b12e344e28"} -2023-12-15T23:51:43.846Z INFO initializing dbft {"height": 6364, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:43.847Z debug frostfs-node/morph.go:229 new block {"index": 6363} -2023-12-15T23:51:43.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6363, "blockHeight": 6363, "took": "8.27543ms"} -2023-12-15T23:51:44.845Z INFO sending PrepareRequest {"height": 6364, "view": 0} -2023-12-15T23:51:44.846Z INFO sending Commit {"height": 6364, "view": 0} -2023-12-15T23:51:44.846Z INFO approving block {"height": 6364, "hash": "d913847a111c5dbeba8c35f48af683660759ba1a7d231a8139efb4ef5f85d443", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e441da6f420bc74be8e1e2c363eb5a8bbc4308a235bf90885def2dfcedfc120"} -2023-12-15T23:51:44.848Z INFO initializing dbft {"height": 6365, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:44.849Z debug frostfs-node/morph.go:229 new block {"index": 6364} -2023-12-15T23:51:44.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6364, "blockHeight": 6364, "took": "8.630413ms"} -2023-12-15T23:51:45.848Z INFO sending PrepareRequest {"height": 6365, "view": 0} -2023-12-15T23:51:45.848Z INFO sending Commit {"height": 6365, "view": 0} -2023-12-15T23:51:45.848Z INFO approving block {"height": 6365, "hash": "c85a921d3b08f3a6503cacd858342ae3128971526bb0e50a896f404a92225ec4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d913847a111c5dbeba8c35f48af683660759ba1a7d231a8139efb4ef5f85d443"} -2023-12-15T23:51:45.850Z INFO initializing dbft {"height": 6366, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:45.851Z debug frostfs-node/morph.go:229 new block {"index": 6365} -2023-12-15T23:51:45.869Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6365, "blockHeight": 6365, "took": "13.893294ms"} -2023-12-15T23:51:46.850Z INFO sending PrepareRequest {"height": 6366, "view": 0} -2023-12-15T23:51:46.850Z INFO sending Commit {"height": 6366, "view": 0} -2023-12-15T23:51:46.850Z INFO approving block {"height": 6366, "hash": "d58334e80e751943c45b09ef659b8f3d1509096e1f0702632f01a9aef0025205", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c85a921d3b08f3a6503cacd858342ae3128971526bb0e50a896f404a92225ec4"} -2023-12-15T23:51:46.852Z INFO initializing dbft {"height": 6367, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:46.852Z debug frostfs-node/morph.go:229 new block {"index": 6366} -2023-12-15T23:51:46.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6366, "blockHeight": 6366, "took": "6.634314ms"} -2023-12-15T23:51:47.852Z INFO sending PrepareRequest {"height": 6367, "view": 0} -2023-12-15T23:51:47.852Z INFO sending Commit {"height": 6367, "view": 0} -2023-12-15T23:51:47.852Z INFO approving block {"height": 6367, "hash": "15b43eda8cfb8871578bb8224db6a78a5f1e9ffa3cf9c4c5c2c053e6f35638d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d58334e80e751943c45b09ef659b8f3d1509096e1f0702632f01a9aef0025205"} -2023-12-15T23:51:47.854Z INFO initializing dbft {"height": 6368, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:47.855Z debug frostfs-node/morph.go:229 new block {"index": 6367} -2023-12-15T23:51:47.859Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:51:47.865Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:51:47.865Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:51:47.865Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6367, "blockHeight": 6367, "took": "7.238855ms"} -2023-12-15T23:51:48.854Z INFO sending PrepareRequest {"height": 6368, "view": 0} -2023-12-15T23:51:48.854Z INFO sending Commit {"height": 6368, "view": 0} -2023-12-15T23:51:48.854Z INFO approving block {"height": 6368, "hash": "0eda0f4cea344ee4c0a3d71799bfcb432cee10ee5055da8abe94283ed9eafa00", "tx_count": 2, "merkle": "d5129f9f788f0d22d17ade8af3f576ea5ab3922640923a03693601d43ed97c04", "prev": "15b43eda8cfb8871578bb8224db6a78a5f1e9ffa3cf9c4c5c2c053e6f35638d5"} -2023-12-15T23:51:48.856Z INFO runtime log {"tx": "44551f810cf2317c8c19bd00086ede8a4b5867693746496408aed5e7d6e0dbbd", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:51:48.856Z INFO runtime log {"tx": "44551f810cf2317c8c19bd00086ede8a4b5867693746496408aed5e7d6e0dbbd", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:51:48.857Z INFO initializing dbft {"height": 6369, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:48.859Z debug frostfs-node/morph.go:229 new block {"index": 6368} -2023-12-15T23:51:48.870Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6368, "blockHeight": 6368, "took": "11.238129ms"} -2023-12-15T23:51:49.856Z INFO sending PrepareRequest {"height": 6369, "view": 0} -2023-12-15T23:51:49.857Z INFO sending Commit {"height": 6369, "view": 0} -2023-12-15T23:51:49.857Z INFO approving block {"height": 6369, "hash": "80a7f7c46040965033d1c845067ac5fe8a03292adf57463fccb222d1aca9e547", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0eda0f4cea344ee4c0a3d71799bfcb432cee10ee5055da8abe94283ed9eafa00"} -2023-12-15T23:51:49.860Z INFO initializing dbft {"height": 6370, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:49.860Z debug frostfs-node/morph.go:229 new block {"index": 6369} -2023-12-15T23:51:49.865Z INFO persisted to disk {"blocks": 0, "keys": 2, "headerHeight": 6369, "blockHeight": 6368, "took": "5.745353ms"} -2023-12-15T23:51:50.859Z INFO sending PrepareRequest {"height": 6370, "view": 0} -2023-12-15T23:51:50.859Z INFO sending Commit {"height": 6370, "view": 0} -2023-12-15T23:51:50.860Z INFO approving block {"height": 6370, "hash": "e15df3bf9ee91b0c5f375daf3e93d5fafb3292dac5fdc0a5cce7725638616586", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80a7f7c46040965033d1c845067ac5fe8a03292adf57463fccb222d1aca9e547"} -2023-12-15T23:51:50.861Z INFO initializing dbft {"height": 6371, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:50.862Z debug frostfs-node/morph.go:229 new block {"index": 6370} -2023-12-15T23:51:50.867Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 6369, "blockHeight": 6369, "took": "7.446747ms"} -2023-12-15T23:51:51.861Z INFO sending PrepareRequest {"height": 6371, "view": 0} -2023-12-15T23:51:51.862Z INFO sending Commit {"height": 6371, "view": 0} -2023-12-15T23:51:51.862Z INFO approving block {"height": 6371, "hash": "39f8dde7026149a4ba4174b2d15117b494d9a991993ff9e5462d0aaf1afa8b75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e15df3bf9ee91b0c5f375daf3e93d5fafb3292dac5fdc0a5cce7725638616586"} -2023-12-15T23:51:51.863Z INFO initializing dbft {"height": 6372, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:51.865Z debug frostfs-node/morph.go:229 new block {"index": 6371} -2023-12-15T23:51:51.869Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6370, "blockHeight": 6370, "took": "8.411807ms"} -2023-12-15T23:51:52.863Z INFO sending PrepareRequest {"height": 6372, "view": 0} -2023-12-15T23:51:52.864Z INFO sending Commit {"height": 6372, "view": 0} -2023-12-15T23:51:52.864Z INFO approving block {"height": 6372, "hash": "11ed1a64b30330ad3838b5da4f7163241bb9a5c53654fdbc279c5bba11fec494", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39f8dde7026149a4ba4174b2d15117b494d9a991993ff9e5462d0aaf1afa8b75"} -2023-12-15T23:51:52.866Z INFO initializing dbft {"height": 6373, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:52.867Z debug frostfs-node/morph.go:229 new block {"index": 6372} -2023-12-15T23:51:52.868Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6371, "blockHeight": 6371, "took": "6.885171ms"} -2023-12-15T23:51:53.866Z INFO sending PrepareRequest {"height": 6373, "view": 0} -2023-12-15T23:51:53.866Z INFO sending Commit {"height": 6373, "view": 0} -2023-12-15T23:51:53.866Z INFO approving block {"height": 6373, "hash": "78269ff860c07a830623c0f1c62e588f3e68ad06ae6f4fbbb5cafaf8996f2aa3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11ed1a64b30330ad3838b5da4f7163241bb9a5c53654fdbc279c5bba11fec494"} -2023-12-15T23:51:53.868Z INFO initializing dbft {"height": 6374, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:53.869Z debug frostfs-node/morph.go:229 new block {"index": 6373} -2023-12-15T23:51:53.869Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6372, "blockHeight": 6372, "took": "7.010209ms"} -2023-12-15T23:51:54.868Z INFO sending PrepareRequest {"height": 6374, "view": 0} -2023-12-15T23:51:54.868Z INFO sending Commit {"height": 6374, "view": 0} -2023-12-15T23:51:54.869Z INFO approving block {"height": 6374, "hash": "a1d7b8250531e41d8af89e6187fecf88b0e04b28f9bd99acfc51c48bdd18e3bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78269ff860c07a830623c0f1c62e588f3e68ad06ae6f4fbbb5cafaf8996f2aa3"} -2023-12-15T23:51:54.870Z INFO initializing dbft {"height": 6375, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:54.870Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6373, "blockHeight": 6373, "took": "6.75431ms"} -2023-12-15T23:51:54.871Z debug frostfs-node/morph.go:229 new block {"index": 6374} -2023-12-15T23:51:55.870Z INFO sending PrepareRequest {"height": 6375, "view": 0} -2023-12-15T23:51:55.871Z INFO sending Commit {"height": 6375, "view": 0} -2023-12-15T23:51:55.872Z INFO approving block {"height": 6375, "hash": "d18c4b6b064fb8f0cdf87ed4ad08178aa2fb869112dd4f4aac136d901eb4dd74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1d7b8250531e41d8af89e6187fecf88b0e04b28f9bd99acfc51c48bdd18e3bd"} -2023-12-15T23:51:55.873Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6374, "blockHeight": 6374, "took": "7.814603ms"} -2023-12-15T23:51:55.873Z INFO initializing dbft {"height": 6376, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:55.874Z debug frostfs-node/morph.go:229 new block {"index": 6375} -2023-12-15T23:51:56.872Z INFO sending PrepareRequest {"height": 6376, "view": 0} -2023-12-15T23:51:56.872Z INFO sending Commit {"height": 6376, "view": 0} -2023-12-15T23:51:56.873Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6375, "blockHeight": 6375, "took": "7.588145ms"} -2023-12-15T23:51:56.873Z INFO approving block {"height": 6376, "hash": "42131bbef533929b50760d1ecb8475e1284819c8f346605ca4455e2b8059b90c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d18c4b6b064fb8f0cdf87ed4ad08178aa2fb869112dd4f4aac136d901eb4dd74"} -2023-12-15T23:51:56.874Z INFO initializing dbft {"height": 6377, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:56.875Z debug frostfs-node/morph.go:229 new block {"index": 6376} -2023-12-15T23:51:57.873Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6376, "blockHeight": 6376, "took": "7.482241ms"} -2023-12-15T23:51:57.874Z INFO sending PrepareRequest {"height": 6377, "view": 0} -2023-12-15T23:51:57.874Z INFO sending Commit {"height": 6377, "view": 0} -2023-12-15T23:51:57.875Z INFO approving block {"height": 6377, "hash": "9dd2eff8b1bbd13fddcd23c0c0883e535c8e782aef94e1f180786394fa37981c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42131bbef533929b50760d1ecb8475e1284819c8f346605ca4455e2b8059b90c"} -2023-12-15T23:51:57.876Z INFO initializing dbft {"height": 6378, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:57.877Z debug frostfs-node/morph.go:229 new block {"index": 6377} -2023-12-15T23:51:58.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6377, "blockHeight": 6377, "took": "6.639453ms"} -2023-12-15T23:51:58.876Z INFO sending PrepareRequest {"height": 6378, "view": 0} -2023-12-15T23:51:58.877Z INFO sending Commit {"height": 6378, "view": 0} -2023-12-15T23:51:58.877Z INFO approving block {"height": 6378, "hash": "6d4b90d3a3007bed3ec7efb00d71a575dc587e82547f77a7cf215de10a118805", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9dd2eff8b1bbd13fddcd23c0c0883e535c8e782aef94e1f180786394fa37981c"} -2023-12-15T23:51:58.879Z INFO initializing dbft {"height": 6379, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:58.880Z debug frostfs-node/morph.go:229 new block {"index": 6378} -2023-12-15T23:51:59.877Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6378, "blockHeight": 6378, "took": "8.623012ms"} -2023-12-15T23:51:59.879Z INFO sending PrepareRequest {"height": 6379, "view": 0} -2023-12-15T23:51:59.879Z INFO sending Commit {"height": 6379, "view": 0} -2023-12-15T23:51:59.879Z INFO approving block {"height": 6379, "hash": "08c19b1a09a5c5822e8a9f5901a0ec37608800dc0cbf8788594db6d8e70aa814", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d4b90d3a3007bed3ec7efb00d71a575dc587e82547f77a7cf215de10a118805"} -2023-12-15T23:51:59.881Z INFO initializing dbft {"height": 6380, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:51:59.882Z debug frostfs-node/morph.go:229 new block {"index": 6379} -2023-12-15T23:52:00.880Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6379, "blockHeight": 6379, "took": "10.538195ms"} -2023-12-15T23:52:00.881Z INFO sending PrepareRequest {"height": 6380, "view": 0} -2023-12-15T23:52:00.881Z INFO sending Commit {"height": 6380, "view": 0} -2023-12-15T23:52:00.882Z INFO approving block {"height": 6380, "hash": "77a1d54972812187cc180ebb8c26a91e5c08b2f1e2b30908b329d7691563c48e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08c19b1a09a5c5822e8a9f5901a0ec37608800dc0cbf8788594db6d8e70aa814"} -2023-12-15T23:52:00.884Z INFO initializing dbft {"height": 6381, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:00.884Z debug frostfs-node/morph.go:229 new block {"index": 6380} -2023-12-15T23:52:01.879Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6380, "blockHeight": 6380, "took": "7.530929ms"} -2023-12-15T23:52:01.883Z INFO sending PrepareRequest {"height": 6381, "view": 0} -2023-12-15T23:52:01.884Z INFO sending Commit {"height": 6381, "view": 0} -2023-12-15T23:52:01.884Z INFO approving block {"height": 6381, "hash": "d3e2c6f706bfe297c0e59350bbcc61e66eb40d65e914f668ba7198f75a3ae48b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77a1d54972812187cc180ebb8c26a91e5c08b2f1e2b30908b329d7691563c48e"} -2023-12-15T23:52:01.885Z INFO initializing dbft {"height": 6382, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:01.886Z debug frostfs-node/morph.go:229 new block {"index": 6381} -2023-12-15T23:52:02.879Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6381, "blockHeight": 6381, "took": "6.737728ms"} -2023-12-15T23:52:02.886Z INFO sending PrepareRequest {"height": 6382, "view": 0} -2023-12-15T23:52:02.886Z INFO sending Commit {"height": 6382, "view": 0} -2023-12-15T23:52:02.886Z INFO approving block {"height": 6382, "hash": "7ab769ff1abf6907aa235fe1c7de1cc1ec10983bf49bed43593078a0f3fe45d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3e2c6f706bfe297c0e59350bbcc61e66eb40d65e914f668ba7198f75a3ae48b"} -2023-12-15T23:52:02.889Z INFO initializing dbft {"height": 6383, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:02.890Z debug frostfs-node/morph.go:229 new block {"index": 6382} -2023-12-15T23:52:03.881Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6382, "blockHeight": 6382, "took": "6.984543ms"} -2023-12-15T23:52:03.888Z INFO sending PrepareRequest {"height": 6383, "view": 0} -2023-12-15T23:52:03.889Z INFO sending Commit {"height": 6383, "view": 0} -2023-12-15T23:52:03.889Z INFO approving block {"height": 6383, "hash": "476dec575b1b5364650f7c0331f0d3871c26c69429d48b5e60907401f1d5fa74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ab769ff1abf6907aa235fe1c7de1cc1ec10983bf49bed43593078a0f3fe45d7"} -2023-12-15T23:52:03.891Z INFO initializing dbft {"height": 6384, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:03.892Z debug frostfs-node/morph.go:229 new block {"index": 6383} -2023-12-15T23:52:04.881Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6383, "blockHeight": 6383, "took": "6.923493ms"} -2023-12-15T23:52:04.890Z INFO sending PrepareRequest {"height": 6384, "view": 0} -2023-12-15T23:52:04.890Z INFO sending Commit {"height": 6384, "view": 0} -2023-12-15T23:52:04.890Z INFO approving block {"height": 6384, "hash": "bdd682f7e0bc265722a39a91ee0b0afdb04c099a835db01e54fb0b26ee7f5437", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "476dec575b1b5364650f7c0331f0d3871c26c69429d48b5e60907401f1d5fa74"} -2023-12-15T23:52:04.892Z INFO initializing dbft {"height": 6385, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:04.892Z debug frostfs-node/morph.go:229 new block {"index": 6384} -2023-12-15T23:52:05.881Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6384, "blockHeight": 6384, "took": "6.300235ms"} -2023-12-15T23:52:05.892Z INFO sending PrepareRequest {"height": 6385, "view": 0} -2023-12-15T23:52:05.892Z INFO sending Commit {"height": 6385, "view": 0} -2023-12-15T23:52:05.892Z INFO approving block {"height": 6385, "hash": "948256f626aa147deb9fad852927a6e46a5dc67f73cc837f7719c6ef58e46d63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdd682f7e0bc265722a39a91ee0b0afdb04c099a835db01e54fb0b26ee7f5437"} -2023-12-15T23:52:05.893Z INFO initializing dbft {"height": 6386, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:05.894Z debug frostfs-node/morph.go:229 new block {"index": 6385} -2023-12-15T23:52:05.898Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 27, "iteration": 1, "error": "no data for 0 iteration in 27 epoch for consumers's trusts"} -2023-12-15T23:52:06.883Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6385, "blockHeight": 6385, "took": "7.003836ms"} -2023-12-15T23:52:06.893Z INFO sending PrepareRequest {"height": 6386, "view": 0} -2023-12-15T23:52:06.894Z INFO sending Commit {"height": 6386, "view": 0} -2023-12-15T23:52:06.894Z INFO approving block {"height": 6386, "hash": "9fdccd773bb7eb0f86b98e8d55aa6d81fbdbf3bdf19fa809ca646be1a5672170", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "948256f626aa147deb9fad852927a6e46a5dc67f73cc837f7719c6ef58e46d63"} -2023-12-15T23:52:06.896Z INFO initializing dbft {"height": 6387, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:06.896Z debug frostfs-node/morph.go:229 new block {"index": 6386} -2023-12-15T23:52:06.903Z info settlement/calls.go:61 start basic income collection {"epoch": 27} -2023-12-15T23:52:07.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6386, "blockHeight": 6386, "took": "6.526774ms"} -2023-12-15T23:52:07.895Z INFO sending PrepareRequest {"height": 6387, "view": 0} -2023-12-15T23:52:07.896Z INFO sending Commit {"height": 6387, "view": 0} -2023-12-15T23:52:07.896Z INFO approving block {"height": 6387, "hash": "62e6e1309ee2efcd2df7107468a1c8d22ead9f31152cfe42d81b50beab2852a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fdccd773bb7eb0f86b98e8d55aa6d81fbdbf3bdf19fa809ca646be1a5672170"} -2023-12-15T23:52:07.898Z INFO initializing dbft {"height": 6388, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:07.898Z debug frostfs-node/morph.go:229 new block {"index": 6387} -2023-12-15T23:52:08.885Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6387, "blockHeight": 6387, "took": "7.371165ms"} -2023-12-15T23:52:08.897Z INFO sending PrepareRequest {"height": 6388, "view": 0} -2023-12-15T23:52:08.897Z INFO sending Commit {"height": 6388, "view": 0} -2023-12-15T23:52:08.898Z INFO approving block {"height": 6388, "hash": "e69366783e28f8b723c110fff7d49e9a91d56858f43f690d786e6c0598039404", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62e6e1309ee2efcd2df7107468a1c8d22ead9f31152cfe42d81b50beab2852a5"} -2023-12-15T23:52:08.900Z INFO initializing dbft {"height": 6389, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:08.900Z debug frostfs-node/morph.go:229 new block {"index": 6388} -2023-12-15T23:52:09.887Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6388, "blockHeight": 6388, "took": "8.002266ms"} -2023-12-15T23:52:09.899Z INFO sending PrepareRequest {"height": 6389, "view": 0} -2023-12-15T23:52:09.900Z INFO sending Commit {"height": 6389, "view": 0} -2023-12-15T23:52:09.900Z INFO approving block {"height": 6389, "hash": "80e40d3ee586aa5bb1466c4bc58e505666d38fe42725580a804db7283c5e4ccd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e69366783e28f8b723c110fff7d49e9a91d56858f43f690d786e6c0598039404"} -2023-12-15T23:52:09.902Z INFO initializing dbft {"height": 6390, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:09.902Z debug frostfs-node/morph.go:229 new block {"index": 6389} -2023-12-15T23:52:10.887Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6389, "blockHeight": 6389, "took": "7.094967ms"} -2023-12-15T23:52:10.901Z INFO sending PrepareRequest {"height": 6390, "view": 0} -2023-12-15T23:52:10.902Z INFO sending Commit {"height": 6390, "view": 0} -2023-12-15T23:52:10.902Z INFO approving block {"height": 6390, "hash": "f089ec730d7aa8af7d5a477a5f1f57922c839c71ecbc4166520fc17944dc6a58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80e40d3ee586aa5bb1466c4bc58e505666d38fe42725580a804db7283c5e4ccd"} -2023-12-15T23:52:10.905Z INFO initializing dbft {"height": 6391, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:10.906Z debug frostfs-node/morph.go:229 new block {"index": 6390} -2023-12-15T23:52:11.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6390, "blockHeight": 6390, "took": "8.021972ms"} -2023-12-15T23:52:11.904Z INFO sending PrepareRequest {"height": 6391, "view": 0} -2023-12-15T23:52:11.904Z INFO sending Commit {"height": 6391, "view": 0} -2023-12-15T23:52:11.905Z INFO approving block {"height": 6391, "hash": "cb811d07be68e40388dc9288549b392cc510a086716981435436f001e4be7f94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f089ec730d7aa8af7d5a477a5f1f57922c839c71ecbc4166520fc17944dc6a58"} -2023-12-15T23:52:11.906Z INFO initializing dbft {"height": 6392, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:11.907Z debug frostfs-node/morph.go:229 new block {"index": 6391} -2023-12-15T23:52:12.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6391, "blockHeight": 6391, "took": "6.859311ms"} -2023-12-15T23:52:12.906Z INFO sending PrepareRequest {"height": 6392, "view": 0} -2023-12-15T23:52:12.907Z INFO sending Commit {"height": 6392, "view": 0} -2023-12-15T23:52:12.907Z INFO approving block {"height": 6392, "hash": "0442b2222b18ba37f87fe801a7457db1dbb4ec69e04e8d38d4fff8b1165517a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb811d07be68e40388dc9288549b392cc510a086716981435436f001e4be7f94"} -2023-12-15T23:52:12.909Z INFO initializing dbft {"height": 6393, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:12.909Z debug frostfs-node/morph.go:229 new block {"index": 6392} -2023-12-15T23:52:13.891Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6392, "blockHeight": 6392, "took": "7.392596ms"} -2023-12-15T23:52:13.909Z INFO sending PrepareRequest {"height": 6393, "view": 0} -2023-12-15T23:52:13.909Z INFO sending Commit {"height": 6393, "view": 0} -2023-12-15T23:52:13.910Z INFO approving block {"height": 6393, "hash": "4808e75a7276a6f6535969d19f270011d5cff63bc2c3adf3dbc837d23bda5a42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0442b2222b18ba37f87fe801a7457db1dbb4ec69e04e8d38d4fff8b1165517a5"} -2023-12-15T23:52:13.911Z INFO initializing dbft {"height": 6394, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:13.912Z debug frostfs-node/morph.go:229 new block {"index": 6393} -2023-12-15T23:52:14.892Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6393, "blockHeight": 6393, "took": "7.624669ms"} -2023-12-15T23:52:14.912Z INFO sending PrepareRequest {"height": 6394, "view": 0} -2023-12-15T23:52:14.912Z INFO sending Commit {"height": 6394, "view": 0} -2023-12-15T23:52:14.912Z INFO approving block {"height": 6394, "hash": "1a0eaf8b2c56c1a8e4742fb96c3a3758074a68e2acf1f22afab3e620556a42d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4808e75a7276a6f6535969d19f270011d5cff63bc2c3adf3dbc837d23bda5a42"} -2023-12-15T23:52:14.914Z INFO initializing dbft {"height": 6395, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:14.914Z debug frostfs-node/morph.go:229 new block {"index": 6394} -2023-12-15T23:52:15.893Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6394, "blockHeight": 6394, "took": "7.599561ms"} -2023-12-15T23:52:15.913Z INFO sending PrepareRequest {"height": 6395, "view": 0} -2023-12-15T23:52:15.914Z INFO sending Commit {"height": 6395, "view": 0} -2023-12-15T23:52:15.914Z INFO approving block {"height": 6395, "hash": "af537eb89ce7dc2f6d9485c8bd0667b868224c0741b87c8ba553f3a5c9fecc26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a0eaf8b2c56c1a8e4742fb96c3a3758074a68e2acf1f22afab3e620556a42d3"} -2023-12-15T23:52:15.915Z INFO initializing dbft {"height": 6396, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:15.916Z debug frostfs-node/morph.go:229 new block {"index": 6395} -2023-12-15T23:52:16.894Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6395, "blockHeight": 6395, "took": "8.052414ms"} -2023-12-15T23:52:16.916Z INFO sending PrepareRequest {"height": 6396, "view": 0} -2023-12-15T23:52:16.916Z INFO sending Commit {"height": 6396, "view": 0} -2023-12-15T23:52:16.916Z INFO approving block {"height": 6396, "hash": "176e0af49f00a04d0d1a1db388687dd2065380cf1d21c9258ad3b34e92652430", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af537eb89ce7dc2f6d9485c8bd0667b868224c0741b87c8ba553f3a5c9fecc26"} -2023-12-15T23:52:16.918Z INFO initializing dbft {"height": 6397, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:16.919Z debug frostfs-node/morph.go:229 new block {"index": 6396} -2023-12-15T23:52:17.895Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6396, "blockHeight": 6396, "took": "6.951303ms"} -2023-12-15T23:52:17.918Z INFO sending PrepareRequest {"height": 6397, "view": 0} -2023-12-15T23:52:17.918Z INFO sending Commit {"height": 6397, "view": 0} -2023-12-15T23:52:17.918Z INFO approving block {"height": 6397, "hash": "24eb9e00e694e51a21bdd53a4ac5d1841b5f675fb02a4fce05070bb06fb89623", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "176e0af49f00a04d0d1a1db388687dd2065380cf1d21c9258ad3b34e92652430"} -2023-12-15T23:52:17.920Z INFO initializing dbft {"height": 6398, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:17.921Z debug frostfs-node/morph.go:229 new block {"index": 6397} -2023-12-15T23:52:18.897Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6397, "blockHeight": 6397, "took": "7.254082ms"} -2023-12-15T23:52:18.920Z INFO sending PrepareRequest {"height": 6398, "view": 0} -2023-12-15T23:52:18.920Z INFO sending Commit {"height": 6398, "view": 0} -2023-12-15T23:52:18.920Z INFO approving block {"height": 6398, "hash": "a05372f79d1af915f74533d91e9368b66a74646d5fcda9e023817bac60a97b9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24eb9e00e694e51a21bdd53a4ac5d1841b5f675fb02a4fce05070bb06fb89623"} -2023-12-15T23:52:18.922Z INFO initializing dbft {"height": 6399, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:18.923Z debug frostfs-node/morph.go:229 new block {"index": 6398} -2023-12-15T23:52:19.897Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6398, "blockHeight": 6398, "took": "6.895849ms"} -2023-12-15T23:52:19.922Z INFO sending PrepareRequest {"height": 6399, "view": 0} -2023-12-15T23:52:19.922Z INFO sending Commit {"height": 6399, "view": 0} -2023-12-15T23:52:19.922Z INFO approving block {"height": 6399, "hash": "96b0d65810a7426ecabc026714a8475a50149d438dd1587b082b711fb24f6dc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a05372f79d1af915f74533d91e9368b66a74646d5fcda9e023817bac60a97b9c"} -2023-12-15T23:52:19.924Z INFO initializing dbft {"height": 6400, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:19.925Z debug frostfs-node/morph.go:229 new block {"index": 6399} -2023-12-15T23:52:20.899Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 6399, "blockHeight": 6399, "took": "7.541731ms"} -2023-12-15T23:52:20.924Z INFO sending PrepareRequest {"height": 6400, "view": 0} -2023-12-15T23:52:20.924Z INFO sending Commit {"height": 6400, "view": 0} -2023-12-15T23:52:20.924Z INFO approving block {"height": 6400, "hash": "c2901339f40a185271cffc0c14f2672c3d86d92a41d765a7533f5aaea3cda902", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96b0d65810a7426ecabc026714a8475a50149d438dd1587b082b711fb24f6dc5"} -2023-12-15T23:52:20.926Z INFO initializing dbft {"height": 6401, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:20.927Z debug frostfs-node/morph.go:229 new block {"index": 6400} -2023-12-15T23:52:21.902Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6400, "blockHeight": 6400, "took": "9.568396ms"} -2023-12-15T23:52:21.926Z INFO sending PrepareRequest {"height": 6401, "view": 0} -2023-12-15T23:52:21.926Z INFO sending Commit {"height": 6401, "view": 0} -2023-12-15T23:52:21.926Z INFO approving block {"height": 6401, "hash": "4eb69748f225a6f621dd3ccd595ca5282d96a584fa6c6e4469a49b8c21c154b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2901339f40a185271cffc0c14f2672c3d86d92a41d765a7533f5aaea3cda902"} -2023-12-15T23:52:21.927Z INFO initializing dbft {"height": 6402, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:21.928Z debug frostfs-node/morph.go:229 new block {"index": 6401} -2023-12-15T23:52:22.902Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6401, "blockHeight": 6401, "took": "9.059094ms"} -2023-12-15T23:52:22.928Z INFO sending PrepareRequest {"height": 6402, "view": 0} -2023-12-15T23:52:22.928Z INFO sending Commit {"height": 6402, "view": 0} -2023-12-15T23:52:22.928Z INFO approving block {"height": 6402, "hash": "959161aa66e18a2b1f84e4db310d7a5c9bddebd17a8a9ddb0b03939658c270df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4eb69748f225a6f621dd3ccd595ca5282d96a584fa6c6e4469a49b8c21c154b5"} -2023-12-15T23:52:22.930Z INFO initializing dbft {"height": 6403, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:22.931Z debug frostfs-node/morph.go:229 new block {"index": 6402} -2023-12-15T23:52:23.904Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6402, "blockHeight": 6402, "took": "9.898479ms"} -2023-12-15T23:52:23.931Z INFO sending PrepareRequest {"height": 6403, "view": 0} -2023-12-15T23:52:23.931Z INFO sending Commit {"height": 6403, "view": 0} -2023-12-15T23:52:23.932Z INFO approving block {"height": 6403, "hash": "18dd24b80804d144027a0db148fd8ce23e96126a900e6f72dfc5a885c0d066f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "959161aa66e18a2b1f84e4db310d7a5c9bddebd17a8a9ddb0b03939658c270df"} -2023-12-15T23:52:23.934Z INFO initializing dbft {"height": 6404, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:23.934Z debug frostfs-node/morph.go:229 new block {"index": 6403} -2023-12-15T23:52:24.904Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6403, "blockHeight": 6403, "took": "8.659543ms"} -2023-12-15T23:52:24.933Z INFO sending PrepareRequest {"height": 6404, "view": 0} -2023-12-15T23:52:24.933Z INFO sending Commit {"height": 6404, "view": 0} -2023-12-15T23:52:24.933Z INFO approving block {"height": 6404, "hash": "304439999c641b5090ccac95c63aa1d132b2dbba99c1465a9117f1f3aace114e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18dd24b80804d144027a0db148fd8ce23e96126a900e6f72dfc5a885c0d066f9"} -2023-12-15T23:52:24.935Z INFO initializing dbft {"height": 6405, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:24.936Z debug frostfs-node/morph.go:229 new block {"index": 6404} -2023-12-15T23:52:25.903Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6404, "blockHeight": 6404, "took": "6.708495ms"} -2023-12-15T23:52:25.935Z INFO sending PrepareRequest {"height": 6405, "view": 0} -2023-12-15T23:52:25.935Z INFO sending Commit {"height": 6405, "view": 0} -2023-12-15T23:52:25.936Z INFO approving block {"height": 6405, "hash": "927a4815804374ee1a6c1ba71a6731d813ab2c06e336180d76ad3fa764ca54ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "304439999c641b5090ccac95c63aa1d132b2dbba99c1465a9117f1f3aace114e"} -2023-12-15T23:52:25.937Z INFO initializing dbft {"height": 6406, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:25.938Z debug frostfs-node/morph.go:229 new block {"index": 6405} -2023-12-15T23:52:26.904Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6405, "blockHeight": 6405, "took": "7.566657ms"} -2023-12-15T23:52:26.937Z INFO sending PrepareRequest {"height": 6406, "view": 0} -2023-12-15T23:52:26.938Z INFO sending Commit {"height": 6406, "view": 0} -2023-12-15T23:52:26.938Z INFO approving block {"height": 6406, "hash": "eb9d257f900b8330c0856162f938a3f4e1dfc262fbcc6f39cab920a3c46b2026", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "927a4815804374ee1a6c1ba71a6731d813ab2c06e336180d76ad3fa764ca54ae"} -2023-12-15T23:52:26.940Z INFO initializing dbft {"height": 6407, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:26.941Z debug frostfs-node/morph.go:229 new block {"index": 6406} -2023-12-15T23:52:27.905Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6406, "blockHeight": 6406, "took": "7.506659ms"} -2023-12-15T23:52:27.940Z INFO sending PrepareRequest {"height": 6407, "view": 0} -2023-12-15T23:52:27.940Z INFO sending Commit {"height": 6407, "view": 0} -2023-12-15T23:52:27.940Z INFO approving block {"height": 6407, "hash": "f856d66b9340807088d812a075ab0e18402e281c87e60c1dd8448a6edfd546e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb9d257f900b8330c0856162f938a3f4e1dfc262fbcc6f39cab920a3c46b2026"} -2023-12-15T23:52:27.942Z INFO initializing dbft {"height": 6408, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:27.943Z debug frostfs-node/morph.go:229 new block {"index": 6407} -2023-12-15T23:52:28.913Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6407, "blockHeight": 6407, "took": "13.933167ms"} -2023-12-15T23:52:28.942Z INFO sending PrepareRequest {"height": 6408, "view": 0} -2023-12-15T23:52:28.943Z INFO sending Commit {"height": 6408, "view": 0} -2023-12-15T23:52:28.943Z INFO approving block {"height": 6408, "hash": "db5becd5d0d466cf5743e7bc3b74ae58bf16b7a48ce996a594b5ec1cc4b9f90b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f856d66b9340807088d812a075ab0e18402e281c87e60c1dd8448a6edfd546e7"} -2023-12-15T23:52:28.945Z INFO initializing dbft {"height": 6409, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:28.946Z debug frostfs-node/morph.go:229 new block {"index": 6408} -2023-12-15T23:52:29.907Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6408, "blockHeight": 6408, "took": "7.373547ms"} -2023-12-15T23:52:29.945Z INFO sending PrepareRequest {"height": 6409, "view": 0} -2023-12-15T23:52:29.945Z INFO sending Commit {"height": 6409, "view": 0} -2023-12-15T23:52:29.946Z INFO approving block {"height": 6409, "hash": "d4da33ad8b387580af15a5a0aa03a850eb74a07d0b353d7dcf8edafa24caf1b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db5becd5d0d466cf5743e7bc3b74ae58bf16b7a48ce996a594b5ec1cc4b9f90b"} -2023-12-15T23:52:29.947Z INFO initializing dbft {"height": 6410, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:29.948Z debug frostfs-node/morph.go:229 new block {"index": 6409} -2023-12-15T23:52:30.911Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6409, "blockHeight": 6409, "took": "10.143668ms"} -2023-12-15T23:52:30.947Z INFO sending PrepareRequest {"height": 6410, "view": 0} -2023-12-15T23:52:30.948Z INFO sending Commit {"height": 6410, "view": 0} -2023-12-15T23:52:30.948Z INFO approving block {"height": 6410, "hash": "672dc74c77d91108abfe81a66ca689ba6945ac24e27cf31e28b41e1d3154707d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4da33ad8b387580af15a5a0aa03a850eb74a07d0b353d7dcf8edafa24caf1b5"} -2023-12-15T23:52:30.950Z INFO initializing dbft {"height": 6411, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:30.951Z debug frostfs-node/morph.go:229 new block {"index": 6410} -2023-12-15T23:52:31.912Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6410, "blockHeight": 6410, "took": "10.813834ms"} -2023-12-15T23:52:31.950Z INFO sending PrepareRequest {"height": 6411, "view": 0} -2023-12-15T23:52:31.950Z INFO sending Commit {"height": 6411, "view": 0} -2023-12-15T23:52:31.950Z INFO approving block {"height": 6411, "hash": "0921674ee4a042e822957043a2aa7e3f9c5d385d25a3cdfa6a166923abd3749f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "672dc74c77d91108abfe81a66ca689ba6945ac24e27cf31e28b41e1d3154707d"} -2023-12-15T23:52:31.952Z INFO initializing dbft {"height": 6412, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:31.953Z debug frostfs-node/morph.go:229 new block {"index": 6411} -2023-12-15T23:52:32.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6411, "blockHeight": 6411, "took": "7.504865ms"} -2023-12-15T23:52:32.952Z INFO sending PrepareRequest {"height": 6412, "view": 0} -2023-12-15T23:52:32.952Z INFO sending Commit {"height": 6412, "view": 0} -2023-12-15T23:52:32.952Z INFO approving block {"height": 6412, "hash": "d5261cb112e44feea009047064b5b1e8836663e788e7c5634f9ca8e7a7e2d014", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0921674ee4a042e822957043a2aa7e3f9c5d385d25a3cdfa6a166923abd3749f"} -2023-12-15T23:52:32.954Z INFO initializing dbft {"height": 6413, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:32.955Z debug frostfs-node/morph.go:229 new block {"index": 6412} -2023-12-15T23:52:33.913Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6412, "blockHeight": 6412, "took": "9.852509ms"} -2023-12-15T23:52:33.954Z INFO sending PrepareRequest {"height": 6413, "view": 0} -2023-12-15T23:52:33.954Z INFO sending Commit {"height": 6413, "view": 0} -2023-12-15T23:52:33.954Z INFO approving block {"height": 6413, "hash": "aac6543874c5fd633cdc5af27ec079007270120cf9edfbf51407fed0daf68cd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5261cb112e44feea009047064b5b1e8836663e788e7c5634f9ca8e7a7e2d014"} -2023-12-15T23:52:33.956Z INFO initializing dbft {"height": 6414, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:33.957Z debug frostfs-node/morph.go:229 new block {"index": 6413} -2023-12-15T23:52:34.911Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6413, "blockHeight": 6413, "took": "6.747788ms"} -2023-12-15T23:52:34.956Z INFO sending PrepareRequest {"height": 6414, "view": 0} -2023-12-15T23:52:34.956Z INFO sending Commit {"height": 6414, "view": 0} -2023-12-15T23:52:34.956Z INFO approving block {"height": 6414, "hash": "65e1b5f987cf8ee46181bcd0fb1324dd10f038d9c36794636da576fd019b8c62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aac6543874c5fd633cdc5af27ec079007270120cf9edfbf51407fed0daf68cd8"} -2023-12-15T23:52:34.958Z INFO initializing dbft {"height": 6415, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:34.959Z debug frostfs-node/morph.go:229 new block {"index": 6414} -2023-12-15T23:52:35.916Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6414, "blockHeight": 6414, "took": "10.668033ms"} -2023-12-15T23:52:35.958Z INFO sending PrepareRequest {"height": 6415, "view": 0} -2023-12-15T23:52:35.958Z INFO sending Commit {"height": 6415, "view": 0} -2023-12-15T23:52:35.959Z INFO approving block {"height": 6415, "hash": "81f96c191311322eca51d3180757d6ad5e54a17efb1004fdd9c7b23eb2a863ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65e1b5f987cf8ee46181bcd0fb1324dd10f038d9c36794636da576fd019b8c62"} -2023-12-15T23:52:35.961Z INFO initializing dbft {"height": 6416, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:35.962Z debug frostfs-node/morph.go:229 new block {"index": 6415} -2023-12-15T23:52:36.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6415, "blockHeight": 6415, "took": "11.181538ms"} -2023-12-15T23:52:36.960Z INFO sending PrepareRequest {"height": 6416, "view": 0} -2023-12-15T23:52:36.960Z INFO sending Commit {"height": 6416, "view": 0} -2023-12-15T23:52:36.961Z INFO approving block {"height": 6416, "hash": "febf1ffb122b34f7caabee893094feb318766e69d1cf29561274dbb71da8cfe7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81f96c191311322eca51d3180757d6ad5e54a17efb1004fdd9c7b23eb2a863ed"} -2023-12-15T23:52:36.962Z INFO initializing dbft {"height": 6417, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:36.963Z debug frostfs-node/morph.go:229 new block {"index": 6416} -2023-12-15T23:52:37.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6416, "blockHeight": 6416, "took": "10.622586ms"} -2023-12-15T23:52:37.962Z INFO sending PrepareRequest {"height": 6417, "view": 0} -2023-12-15T23:52:37.962Z INFO sending Commit {"height": 6417, "view": 0} -2023-12-15T23:52:37.962Z INFO approving block {"height": 6417, "hash": "8be4e749e3adbb3350dbf11cf199b9adb5cbc9654b9fc6998e2df72a91a8b591", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "febf1ffb122b34f7caabee893094feb318766e69d1cf29561274dbb71da8cfe7"} -2023-12-15T23:52:37.964Z INFO initializing dbft {"height": 6418, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:37.964Z debug frostfs-node/morph.go:229 new block {"index": 6417} -2023-12-15T23:52:37.968Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:52:37.973Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:52:37.973Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:52:38.916Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6417, "blockHeight": 6417, "took": "7.068468ms"} -2023-12-15T23:52:38.963Z INFO sending PrepareRequest {"height": 6418, "view": 0} -2023-12-15T23:52:38.963Z INFO sending Commit {"height": 6418, "view": 0} -2023-12-15T23:52:38.964Z INFO approving block {"height": 6418, "hash": "08ec0a384e794d9bca5488e373eb347ce820546a8db23d71e946a325129b83e0", "tx_count": 2, "merkle": "3627e09829ade430fa9546f45b2e4f184a52a8b170bc2ea0d09566ce82c16ca5", "prev": "8be4e749e3adbb3350dbf11cf199b9adb5cbc9654b9fc6998e2df72a91a8b591"} -2023-12-15T23:52:38.965Z INFO runtime log {"tx": "f530bd01d12f3ff45393764a715f3fe8f003a75108833e9b928a849b1ee50795", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:52:38.965Z INFO runtime log {"tx": "f530bd01d12f3ff45393764a715f3fe8f003a75108833e9b928a849b1ee50795", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:52:38.968Z INFO initializing dbft {"height": 6419, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:38.971Z debug frostfs-node/morph.go:229 new block {"index": 6418} -2023-12-15T23:52:39.926Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 6418, "blockHeight": 6418, "took": "15.682474ms"} -2023-12-15T23:52:39.965Z INFO sending PrepareRequest {"height": 6419, "view": 0} -2023-12-15T23:52:39.965Z INFO sending Commit {"height": 6419, "view": 0} -2023-12-15T23:52:39.966Z INFO approving block {"height": 6419, "hash": "5d07d7ed7095febfe5f2d9d2b99c322516bb495eb4d923e73d53b34f7e73e130", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08ec0a384e794d9bca5488e373eb347ce820546a8db23d71e946a325129b83e0"} -2023-12-15T23:52:39.967Z INFO initializing dbft {"height": 6420, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:39.968Z debug frostfs-node/morph.go:229 new block {"index": 6419} -2023-12-15T23:52:40.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6419, "blockHeight": 6419, "took": "9.196442ms"} -2023-12-15T23:52:40.966Z INFO sending PrepareRequest {"height": 6420, "view": 0} -2023-12-15T23:52:40.967Z INFO sending Commit {"height": 6420, "view": 0} -2023-12-15T23:52:40.967Z INFO approving block {"height": 6420, "hash": "beef44d29d0a4f87b944577c7a968553883d9d71524f63c7c1e18ddb40ea28c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d07d7ed7095febfe5f2d9d2b99c322516bb495eb4d923e73d53b34f7e73e130"} -2023-12-15T23:52:40.968Z INFO initializing dbft {"height": 6421, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:40.969Z debug frostfs-node/morph.go:229 new block {"index": 6420} -2023-12-15T23:52:41.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6420, "blockHeight": 6420, "took": "8.604961ms"} -2023-12-15T23:52:41.968Z INFO sending PrepareRequest {"height": 6421, "view": 0} -2023-12-15T23:52:41.968Z INFO sending Commit {"height": 6421, "view": 0} -2023-12-15T23:52:41.969Z INFO approving block {"height": 6421, "hash": "539112dd3c60edcf2bc3ffc02d39b2dc5844aad03bda0cee2c237218ca4b59e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "beef44d29d0a4f87b944577c7a968553883d9d71524f63c7c1e18ddb40ea28c5"} -2023-12-15T23:52:41.970Z INFO initializing dbft {"height": 6422, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:41.971Z debug frostfs-node/morph.go:229 new block {"index": 6421} -2023-12-15T23:52:42.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6421, "blockHeight": 6421, "took": "7.702205ms"} -2023-12-15T23:52:42.969Z INFO sending PrepareRequest {"height": 6422, "view": 0} -2023-12-15T23:52:42.970Z INFO sending Commit {"height": 6422, "view": 0} -2023-12-15T23:52:42.970Z INFO approving block {"height": 6422, "hash": "3e126ea6e443b888772820d1e37eb947d73d62ac7b5584c97a8cd0b1cd15b1b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "539112dd3c60edcf2bc3ffc02d39b2dc5844aad03bda0cee2c237218ca4b59e3"} -2023-12-15T23:52:42.971Z INFO initializing dbft {"height": 6423, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:42.972Z debug frostfs-node/morph.go:229 new block {"index": 6422} -2023-12-15T23:52:43.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6422, "blockHeight": 6422, "took": "6.777718ms"} -2023-12-15T23:52:43.972Z INFO sending PrepareRequest {"height": 6423, "view": 0} -2023-12-15T23:52:43.972Z INFO sending Commit {"height": 6423, "view": 0} -2023-12-15T23:52:43.972Z INFO approving block {"height": 6423, "hash": "046a424d210bffe21b361e7ad31a2c46269a7ccd2e89625e74a9f7c319ca83d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e126ea6e443b888772820d1e37eb947d73d62ac7b5584c97a8cd0b1cd15b1b5"} -2023-12-15T23:52:43.974Z INFO initializing dbft {"height": 6424, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:43.975Z debug frostfs-node/morph.go:229 new block {"index": 6423} -2023-12-15T23:52:44.922Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6423, "blockHeight": 6423, "took": "7.160859ms"} -2023-12-15T23:52:44.974Z INFO sending PrepareRequest {"height": 6424, "view": 0} -2023-12-15T23:52:44.974Z INFO sending Commit {"height": 6424, "view": 0} -2023-12-15T23:52:44.975Z INFO approving block {"height": 6424, "hash": "5701a4281c6ee6d83ad49fc3497de1313cac0963e68c35f9822afbef92ac4ed8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "046a424d210bffe21b361e7ad31a2c46269a7ccd2e89625e74a9f7c319ca83d8"} -2023-12-15T23:52:44.976Z INFO initializing dbft {"height": 6425, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:44.977Z debug frostfs-node/morph.go:229 new block {"index": 6424} -2023-12-15T23:52:45.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6424, "blockHeight": 6424, "took": "8.626841ms"} -2023-12-15T23:52:45.977Z INFO sending PrepareRequest {"height": 6425, "view": 0} -2023-12-15T23:52:45.977Z INFO sending Commit {"height": 6425, "view": 0} -2023-12-15T23:52:45.978Z INFO approving block {"height": 6425, "hash": "44a45644d2693216f10793dbfc906c54dd1d1bf26f671a61bb59f7f90189a1bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5701a4281c6ee6d83ad49fc3497de1313cac0963e68c35f9822afbef92ac4ed8"} -2023-12-15T23:52:45.979Z INFO initializing dbft {"height": 6426, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:45.980Z debug frostfs-node/morph.go:229 new block {"index": 6425} -2023-12-15T23:52:46.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6425, "blockHeight": 6425, "took": "7.799508ms"} -2023-12-15T23:52:46.978Z INFO sending PrepareRequest {"height": 6426, "view": 0} -2023-12-15T23:52:46.979Z INFO sending Commit {"height": 6426, "view": 0} -2023-12-15T23:52:46.979Z INFO approving block {"height": 6426, "hash": "ea90fe7d866267ccf5a06715a54d1e30e960a39d842321402e3753dc429b8157", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44a45644d2693216f10793dbfc906c54dd1d1bf26f671a61bb59f7f90189a1bc"} -2023-12-15T23:52:46.981Z INFO initializing dbft {"height": 6427, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:46.981Z debug frostfs-node/morph.go:229 new block {"index": 6426} -2023-12-15T23:52:47.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6426, "blockHeight": 6426, "took": "6.591761ms"} -2023-12-15T23:52:47.980Z INFO sending PrepareRequest {"height": 6427, "view": 0} -2023-12-15T23:52:47.980Z INFO sending Commit {"height": 6427, "view": 0} -2023-12-15T23:52:47.981Z INFO approving block {"height": 6427, "hash": "180e9ea24da99f0e712cad90e05f4e9e9bf0c428034b1ff36c2dafc9fb8e6d11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea90fe7d866267ccf5a06715a54d1e30e960a39d842321402e3753dc429b8157"} -2023-12-15T23:52:47.982Z INFO initializing dbft {"height": 6428, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:47.983Z debug frostfs-node/morph.go:229 new block {"index": 6427} -2023-12-15T23:52:48.926Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6427, "blockHeight": 6427, "took": "8.122621ms"} -2023-12-15T23:52:48.982Z INFO sending PrepareRequest {"height": 6428, "view": 0} -2023-12-15T23:52:48.982Z INFO sending Commit {"height": 6428, "view": 0} -2023-12-15T23:52:48.982Z INFO approving block {"height": 6428, "hash": "bc559e92788c0dc37e51bf8906fc5cb6c34d7b9d1a671bf43444255eb38c5906", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "180e9ea24da99f0e712cad90e05f4e9e9bf0c428034b1ff36c2dafc9fb8e6d11"} -2023-12-15T23:52:48.984Z INFO initializing dbft {"height": 6429, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:48.985Z debug frostfs-node/morph.go:229 new block {"index": 6428} -2023-12-15T23:52:49.928Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6428, "blockHeight": 6428, "took": "8.517265ms"} -2023-12-15T23:52:49.983Z INFO sending PrepareRequest {"height": 6429, "view": 0} -2023-12-15T23:52:49.984Z INFO sending Commit {"height": 6429, "view": 0} -2023-12-15T23:52:49.984Z INFO approving block {"height": 6429, "hash": "e63da8335a38166c6adb279e7f257a1802bbb7f6090580b7a9b4ef6f8d0df04c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc559e92788c0dc37e51bf8906fc5cb6c34d7b9d1a671bf43444255eb38c5906"} -2023-12-15T23:52:49.986Z INFO initializing dbft {"height": 6430, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:49.987Z debug frostfs-node/morph.go:229 new block {"index": 6429} -2023-12-15T23:52:50.927Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6429, "blockHeight": 6429, "took": "6.48334ms"} -2023-12-15T23:52:50.985Z INFO sending PrepareRequest {"height": 6430, "view": 0} -2023-12-15T23:52:50.986Z INFO sending Commit {"height": 6430, "view": 0} -2023-12-15T23:52:50.986Z INFO approving block {"height": 6430, "hash": "ac63162b3b793873b402183213365f900bb849efd4de7baef65340ff9b2ab524", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e63da8335a38166c6adb279e7f257a1802bbb7f6090580b7a9b4ef6f8d0df04c"} -2023-12-15T23:52:50.988Z INFO initializing dbft {"height": 6431, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:50.988Z debug frostfs-node/morph.go:229 new block {"index": 6430} -2023-12-15T23:52:51.926Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6430, "blockHeight": 6430, "took": "5.017823ms"} -2023-12-15T23:52:51.987Z INFO sending PrepareRequest {"height": 6431, "view": 0} -2023-12-15T23:52:51.987Z INFO sending Commit {"height": 6431, "view": 0} -2023-12-15T23:52:51.988Z INFO approving block {"height": 6431, "hash": "79e7117c3b0d239bb200ecac6db8af4ed132dd2fce5920bc0d4d4b90bb860f7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac63162b3b793873b402183213365f900bb849efd4de7baef65340ff9b2ab524"} -2023-12-15T23:52:51.990Z INFO initializing dbft {"height": 6432, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:51.990Z debug frostfs-node/morph.go:229 new block {"index": 6431} -2023-12-15T23:52:52.929Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6431, "blockHeight": 6431, "took": "7.283511ms"} -2023-12-15T23:52:52.989Z INFO sending PrepareRequest {"height": 6432, "view": 0} -2023-12-15T23:52:52.989Z INFO sending Commit {"height": 6432, "view": 0} -2023-12-15T23:52:52.990Z INFO approving block {"height": 6432, "hash": "3cb273bc503e1634d7b91067a400fc9f94bd6f1d625fbfa1ea5a75a719033fbf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79e7117c3b0d239bb200ecac6db8af4ed132dd2fce5920bc0d4d4b90bb860f7a"} -2023-12-15T23:52:52.992Z INFO initializing dbft {"height": 6433, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:52.993Z debug frostfs-node/morph.go:229 new block {"index": 6432} -2023-12-15T23:52:53.932Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6432, "blockHeight": 6432, "took": "8.968893ms"} -2023-12-15T23:52:53.991Z INFO sending PrepareRequest {"height": 6433, "view": 0} -2023-12-15T23:52:53.991Z INFO sending Commit {"height": 6433, "view": 0} -2023-12-15T23:52:53.992Z INFO approving block {"height": 6433, "hash": "ff564412bf6d521652f65ae48cf2b82168f352e21b15fa0c530263d46554640f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cb273bc503e1634d7b91067a400fc9f94bd6f1d625fbfa1ea5a75a719033fbf"} -2023-12-15T23:52:53.994Z INFO initializing dbft {"height": 6434, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:53.995Z debug frostfs-node/morph.go:229 new block {"index": 6433} -2023-12-15T23:52:54.933Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6433, "blockHeight": 6433, "took": "10.086625ms"} -2023-12-15T23:52:54.994Z INFO sending PrepareRequest {"height": 6434, "view": 0} -2023-12-15T23:52:54.994Z INFO sending Commit {"height": 6434, "view": 0} -2023-12-15T23:52:54.995Z INFO approving block {"height": 6434, "hash": "e8da8a527f8728241cc43b90974fa0b3158744209e48f4c5219491b2ea06fea2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff564412bf6d521652f65ae48cf2b82168f352e21b15fa0c530263d46554640f"} -2023-12-15T23:52:54.996Z INFO initializing dbft {"height": 6435, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:54.997Z debug frostfs-node/morph.go:229 new block {"index": 6434} -2023-12-15T23:52:55.931Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6434, "blockHeight": 6434, "took": "6.881452ms"} -2023-12-15T23:52:55.996Z INFO sending PrepareRequest {"height": 6435, "view": 0} -2023-12-15T23:52:55.996Z INFO sending Commit {"height": 6435, "view": 0} -2023-12-15T23:52:55.996Z INFO approving block {"height": 6435, "hash": "47e8e0a8e18f6e111e2c4151b65b92186af669edef09fd9797012ef1843cb647", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8da8a527f8728241cc43b90974fa0b3158744209e48f4c5219491b2ea06fea2"} -2023-12-15T23:52:55.998Z INFO initializing dbft {"height": 6436, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:55.999Z debug frostfs-node/morph.go:229 new block {"index": 6435} -2023-12-15T23:52:56.937Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6435, "blockHeight": 6435, "took": "11.29873ms"} -2023-12-15T23:52:56.998Z INFO sending PrepareRequest {"height": 6436, "view": 0} -2023-12-15T23:52:56.998Z INFO sending Commit {"height": 6436, "view": 0} -2023-12-15T23:52:56.998Z INFO approving block {"height": 6436, "hash": "cab08ee2cdf912df29623715c5b87733d953149ffa87aac5380a3d9af5763b2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47e8e0a8e18f6e111e2c4151b65b92186af669edef09fd9797012ef1843cb647"} -2023-12-15T23:52:57.001Z INFO initializing dbft {"height": 6437, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:57.002Z debug frostfs-node/morph.go:229 new block {"index": 6436} -2023-12-15T23:52:57.936Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6436, "blockHeight": 6436, "took": "10.14836ms"} -2023-12-15T23:52:57.999Z INFO sending PrepareRequest {"height": 6437, "view": 0} -2023-12-15T23:52:57.999Z INFO sending Commit {"height": 6437, "view": 0} -2023-12-15T23:52:58.000Z INFO approving block {"height": 6437, "hash": "739548401a2dd588f078e95f11ba875d4f83bd90d7584dd2cff2f0236279c6fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cab08ee2cdf912df29623715c5b87733d953149ffa87aac5380a3d9af5763b2f"} -2023-12-15T23:52:58.001Z INFO initializing dbft {"height": 6438, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:58.001Z debug frostfs-node/morph.go:229 new block {"index": 6437} -2023-12-15T23:52:58.936Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6437, "blockHeight": 6437, "took": "9.526928ms"} -2023-12-15T23:52:59.001Z INFO sending PrepareRequest {"height": 6438, "view": 0} -2023-12-15T23:52:59.001Z INFO sending Commit {"height": 6438, "view": 0} -2023-12-15T23:52:59.002Z INFO approving block {"height": 6438, "hash": "e7c87459569411b5ef049b4dc928c177cf0b8bd89b2a8850fbd3434ced9e1f84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "739548401a2dd588f078e95f11ba875d4f83bd90d7584dd2cff2f0236279c6fa"} -2023-12-15T23:52:59.004Z INFO initializing dbft {"height": 6439, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:52:59.004Z debug frostfs-node/morph.go:229 new block {"index": 6438} -2023-12-15T23:52:59.938Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6438, "blockHeight": 6438, "took": "10.724863ms"} -2023-12-15T23:53:00.004Z INFO sending PrepareRequest {"height": 6439, "view": 0} -2023-12-15T23:53:00.004Z INFO sending Commit {"height": 6439, "view": 0} -2023-12-15T23:53:00.005Z INFO approving block {"height": 6439, "hash": "2c690e62c11ba83a06b1372a6965205f1338aaf0a3ade402edcc6c78a3aff565", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7c87459569411b5ef049b4dc928c177cf0b8bd89b2a8850fbd3434ced9e1f84"} -2023-12-15T23:53:00.007Z INFO initializing dbft {"height": 6440, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:00.008Z debug frostfs-node/morph.go:229 new block {"index": 6439} -2023-12-15T23:53:00.935Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6439, "blockHeight": 6439, "took": "6.888404ms"} -2023-12-15T23:53:01.006Z INFO sending PrepareRequest {"height": 6440, "view": 0} -2023-12-15T23:53:01.006Z INFO sending Commit {"height": 6440, "view": 0} -2023-12-15T23:53:01.007Z INFO approving block {"height": 6440, "hash": "51a861168d3704ed674f14c66654997cc3ae6783a0dddec6a3b85c8ca97339a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c690e62c11ba83a06b1372a6965205f1338aaf0a3ade402edcc6c78a3aff565"} -2023-12-15T23:53:01.008Z INFO initializing dbft {"height": 6441, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:01.009Z debug frostfs-node/morph.go:229 new block {"index": 6440} -2023-12-15T23:53:01.937Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6440, "blockHeight": 6440, "took": "6.941726ms"} -2023-12-15T23:53:02.007Z INFO sending PrepareRequest {"height": 6441, "view": 0} -2023-12-15T23:53:02.008Z INFO sending Commit {"height": 6441, "view": 0} -2023-12-15T23:53:02.008Z INFO approving block {"height": 6441, "hash": "656a208dadf4e407f8806b6bb8214c7c7f8654bb4bde097cc8dc2aaba5966e51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51a861168d3704ed674f14c66654997cc3ae6783a0dddec6a3b85c8ca97339a0"} -2023-12-15T23:53:02.010Z INFO initializing dbft {"height": 6442, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:02.011Z debug frostfs-node/morph.go:229 new block {"index": 6441} -2023-12-15T23:53:02.942Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6441, "blockHeight": 6441, "took": "11.66646ms"} -2023-12-15T23:53:03.009Z INFO sending PrepareRequest {"height": 6442, "view": 0} -2023-12-15T23:53:03.009Z INFO sending Commit {"height": 6442, "view": 0} -2023-12-15T23:53:03.010Z INFO approving block {"height": 6442, "hash": "89b387cc1f4462ebb1f223fd7774102804c967c83f797a5c6d1ec24bd2d28b76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "656a208dadf4e407f8806b6bb8214c7c7f8654bb4bde097cc8dc2aaba5966e51"} -2023-12-15T23:53:03.011Z INFO initializing dbft {"height": 6443, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:03.012Z debug frostfs-node/morph.go:229 new block {"index": 6442} -2023-12-15T23:53:03.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6442, "blockHeight": 6442, "took": "7.876177ms"} -2023-12-15T23:53:04.011Z INFO sending PrepareRequest {"height": 6443, "view": 0} -2023-12-15T23:53:04.011Z INFO sending Commit {"height": 6443, "view": 0} -2023-12-15T23:53:04.012Z INFO approving block {"height": 6443, "hash": "12cc589063eb2931b5f24d36c889012ab545a6ca21b5c598574a32f50a56f38a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89b387cc1f4462ebb1f223fd7774102804c967c83f797a5c6d1ec24bd2d28b76"} -2023-12-15T23:53:04.013Z INFO initializing dbft {"height": 6444, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:04.014Z debug frostfs-node/morph.go:229 new block {"index": 6443} -2023-12-15T23:53:04.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6443, "blockHeight": 6443, "took": "7.789226ms"} -2023-12-15T23:53:05.013Z INFO sending PrepareRequest {"height": 6444, "view": 0} -2023-12-15T23:53:05.013Z INFO sending Commit {"height": 6444, "view": 0} -2023-12-15T23:53:05.013Z INFO approving block {"height": 6444, "hash": "04c7cebd135c167b6b399937a8e39055798ada1fb73e29fc99e01087f5cd07a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12cc589063eb2931b5f24d36c889012ab545a6ca21b5c598574a32f50a56f38a"} -2023-12-15T23:53:05.015Z INFO initializing dbft {"height": 6445, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:05.016Z debug frostfs-node/morph.go:229 new block {"index": 6444} -2023-12-15T23:53:05.940Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6444, "blockHeight": 6444, "took": "7.84567ms"} -2023-12-15T23:53:06.015Z INFO sending PrepareRequest {"height": 6445, "view": 0} -2023-12-15T23:53:06.015Z INFO sending Commit {"height": 6445, "view": 0} -2023-12-15T23:53:06.015Z INFO approving block {"height": 6445, "hash": "f7ff9097ff90ff6427fffc8dfca12d39ddd2234023f57eef5c3a307cde75e913", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04c7cebd135c167b6b399937a8e39055798ada1fb73e29fc99e01087f5cd07a1"} -2023-12-15T23:53:06.016Z INFO initializing dbft {"height": 6446, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:06.018Z debug frostfs-node/morph.go:229 new block {"index": 6445} -2023-12-15T23:53:06.023Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 27, "iteration": 2, "error": "no data for 1 iteration in 27 epoch for consumers's trusts"} -2023-12-15T23:53:06.941Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6445, "blockHeight": 6445, "took": "8.326388ms"} -2023-12-15T23:53:07.016Z INFO sending PrepareRequest {"height": 6446, "view": 0} -2023-12-15T23:53:07.016Z INFO sending Commit {"height": 6446, "view": 0} -2023-12-15T23:53:07.017Z INFO approving block {"height": 6446, "hash": "03598ac992883c4a4c0ec302a143df8f0b7d13d2b5a2acfc5de702a505cbc075", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7ff9097ff90ff6427fffc8dfca12d39ddd2234023f57eef5c3a307cde75e913"} -2023-12-15T23:53:07.018Z INFO initializing dbft {"height": 6447, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:07.019Z debug frostfs-node/morph.go:229 new block {"index": 6446} -2023-12-15T23:53:07.027Z info settlement/calls.go:106 start basic income distribution {"epoch": 27} -2023-12-15T23:53:07.943Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6446, "blockHeight": 6446, "took": "9.120099ms"} -2023-12-15T23:53:08.018Z INFO sending PrepareRequest {"height": 6447, "view": 0} -2023-12-15T23:53:08.018Z INFO sending Commit {"height": 6447, "view": 0} -2023-12-15T23:53:08.019Z INFO approving block {"height": 6447, "hash": "7e90194de2e319268001ec209f66d38551a0e26546d4ff6e9bf2b9b6510b1da1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03598ac992883c4a4c0ec302a143df8f0b7d13d2b5a2acfc5de702a505cbc075"} -2023-12-15T23:53:08.021Z INFO initializing dbft {"height": 6448, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:08.022Z debug frostfs-node/morph.go:229 new block {"index": 6447} -2023-12-15T23:53:08.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6447, "blockHeight": 6447, "took": "10.329822ms"} -2023-12-15T23:53:09.020Z INFO sending PrepareRequest {"height": 6448, "view": 0} -2023-12-15T23:53:09.020Z INFO sending Commit {"height": 6448, "view": 0} -2023-12-15T23:53:09.020Z INFO approving block {"height": 6448, "hash": "9117fb590de1475b99411c6fccadf539202599de0b8df9c9737059cfbd3a89dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e90194de2e319268001ec209f66d38551a0e26546d4ff6e9bf2b9b6510b1da1"} -2023-12-15T23:53:09.022Z INFO initializing dbft {"height": 6449, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:09.023Z debug frostfs-node/morph.go:229 new block {"index": 6448} -2023-12-15T23:53:09.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6448, "blockHeight": 6448, "took": "12.257932ms"} -2023-12-15T23:53:10.021Z INFO sending PrepareRequest {"height": 6449, "view": 0} -2023-12-15T23:53:10.021Z INFO sending Commit {"height": 6449, "view": 0} -2023-12-15T23:53:10.022Z INFO approving block {"height": 6449, "hash": "23c7d80627b945b790ccc8558281be47d0a835faaa7be63e7262af9905f0e36d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9117fb590de1475b99411c6fccadf539202599de0b8df9c9737059cfbd3a89dd"} -2023-12-15T23:53:10.024Z INFO initializing dbft {"height": 6450, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:10.025Z debug frostfs-node/morph.go:229 new block {"index": 6449} -2023-12-15T23:53:10.948Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6449, "blockHeight": 6449, "took": "9.63008ms"} -2023-12-15T23:53:11.023Z INFO sending PrepareRequest {"height": 6450, "view": 0} -2023-12-15T23:53:11.023Z INFO sending Commit {"height": 6450, "view": 0} -2023-12-15T23:53:11.024Z INFO approving block {"height": 6450, "hash": "3a976b0ff3126f1e7b4b4d8718d25ca4d076272f0caedd1b3b5696cc0a635490", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23c7d80627b945b790ccc8558281be47d0a835faaa7be63e7262af9905f0e36d"} -2023-12-15T23:53:11.025Z INFO initializing dbft {"height": 6451, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:11.026Z debug frostfs-node/morph.go:229 new block {"index": 6450} -2023-12-15T23:53:11.948Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6450, "blockHeight": 6450, "took": "9.344051ms"} -2023-12-15T23:53:12.026Z INFO sending PrepareRequest {"height": 6451, "view": 0} -2023-12-15T23:53:12.026Z INFO sending Commit {"height": 6451, "view": 0} -2023-12-15T23:53:12.026Z INFO approving block {"height": 6451, "hash": "c3e82766901c2d0270f3d602d1e41677211ea4a7971577c8969bdd690ffe66ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a976b0ff3126f1e7b4b4d8718d25ca4d076272f0caedd1b3b5696cc0a635490"} -2023-12-15T23:53:12.028Z INFO initializing dbft {"height": 6452, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:12.029Z debug frostfs-node/morph.go:229 new block {"index": 6451} -2023-12-15T23:53:12.950Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6451, "blockHeight": 6451, "took": "10.248959ms"} -2023-12-15T23:53:13.028Z INFO sending PrepareRequest {"height": 6452, "view": 0} -2023-12-15T23:53:13.028Z INFO sending Commit {"height": 6452, "view": 0} -2023-12-15T23:53:13.029Z INFO approving block {"height": 6452, "hash": "cac8993d11b328fd3a7674a36293f3812a99f82a4d78139f6284057e94661f09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3e82766901c2d0270f3d602d1e41677211ea4a7971577c8969bdd690ffe66ec"} -2023-12-15T23:53:13.030Z INFO initializing dbft {"height": 6453, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:13.031Z debug frostfs-node/morph.go:229 new block {"index": 6452} -2023-12-15T23:53:13.947Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6452, "blockHeight": 6452, "took": "7.569551ms"} -2023-12-15T23:53:14.030Z INFO sending PrepareRequest {"height": 6453, "view": 0} -2023-12-15T23:53:14.030Z INFO sending Commit {"height": 6453, "view": 0} -2023-12-15T23:53:14.031Z INFO approving block {"height": 6453, "hash": "6e0323d9e677bb967b75ac9492c5d44ba695c56f88bf364e1bdc91d66a944d77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cac8993d11b328fd3a7674a36293f3812a99f82a4d78139f6284057e94661f09"} -2023-12-15T23:53:14.032Z INFO initializing dbft {"height": 6454, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:14.034Z debug frostfs-node/morph.go:229 new block {"index": 6453} -2023-12-15T23:53:14.953Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6453, "blockHeight": 6453, "took": "12.664755ms"} -2023-12-15T23:53:15.033Z INFO sending PrepareRequest {"height": 6454, "view": 0} -2023-12-15T23:53:15.033Z INFO sending Commit {"height": 6454, "view": 0} -2023-12-15T23:53:15.033Z INFO approving block {"height": 6454, "hash": "adefa55ee82e34d3f7914aba2b77a0f5e349a2995e0bb3cdd949938920222e32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e0323d9e677bb967b75ac9492c5d44ba695c56f88bf364e1bdc91d66a944d77"} -2023-12-15T23:53:15.035Z INFO initializing dbft {"height": 6455, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:15.036Z debug frostfs-node/morph.go:229 new block {"index": 6454} -2023-12-15T23:53:15.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6454, "blockHeight": 6454, "took": "10.95164ms"} -2023-12-15T23:53:16.035Z INFO sending PrepareRequest {"height": 6455, "view": 0} -2023-12-15T23:53:16.035Z INFO sending Commit {"height": 6455, "view": 0} -2023-12-15T23:53:16.035Z INFO approving block {"height": 6455, "hash": "5e9d3a36ff796ed66f1a148ce43f57f37d3254305424514f093fd3463e7fd3a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adefa55ee82e34d3f7914aba2b77a0f5e349a2995e0bb3cdd949938920222e32"} -2023-12-15T23:53:16.037Z INFO initializing dbft {"height": 6456, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:16.038Z debug frostfs-node/morph.go:229 new block {"index": 6455} -2023-12-15T23:53:16.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6455, "blockHeight": 6455, "took": "7.750635ms"} -2023-12-15T23:53:17.037Z INFO sending PrepareRequest {"height": 6456, "view": 0} -2023-12-15T23:53:17.038Z INFO sending Commit {"height": 6456, "view": 0} -2023-12-15T23:53:17.038Z INFO approving block {"height": 6456, "hash": "a6d6bf737461132082a8740b2f17a29e15014e14cc5a704405a61f61977e2002", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e9d3a36ff796ed66f1a148ce43f57f37d3254305424514f093fd3463e7fd3a4"} -2023-12-15T23:53:17.041Z INFO initializing dbft {"height": 6457, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:17.042Z debug frostfs-node/morph.go:229 new block {"index": 6456} -2023-12-15T23:53:17.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6456, "blockHeight": 6456, "took": "8.543303ms"} -2023-12-15T23:53:18.039Z INFO sending PrepareRequest {"height": 6457, "view": 0} -2023-12-15T23:53:18.039Z INFO sending Commit {"height": 6457, "view": 0} -2023-12-15T23:53:18.040Z INFO approving block {"height": 6457, "hash": "db3be4157b392fec5e5f43eaa677f68c94d0ae749f184506cbcb024af1eb3141", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6d6bf737461132082a8740b2f17a29e15014e14cc5a704405a61f61977e2002"} -2023-12-15T23:53:18.042Z INFO initializing dbft {"height": 6458, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:18.043Z debug frostfs-node/morph.go:229 new block {"index": 6457} -2023-12-15T23:53:18.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6457, "blockHeight": 6457, "took": "7.567748ms"} -2023-12-15T23:53:19.041Z INFO sending PrepareRequest {"height": 6458, "view": 0} -2023-12-15T23:53:19.042Z INFO sending Commit {"height": 6458, "view": 0} -2023-12-15T23:53:19.042Z INFO approving block {"height": 6458, "hash": "6a331653003d9e55f0fa7a068d6aea3f4097f9ba39fa0f010d66f334b0c998e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db3be4157b392fec5e5f43eaa677f68c94d0ae749f184506cbcb024af1eb3141"} -2023-12-15T23:53:19.044Z INFO initializing dbft {"height": 6459, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:19.045Z debug frostfs-node/morph.go:229 new block {"index": 6458} -2023-12-15T23:53:19.952Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6458, "blockHeight": 6458, "took": "7.761396ms"} -2023-12-15T23:53:20.044Z INFO sending PrepareRequest {"height": 6459, "view": 0} -2023-12-15T23:53:20.044Z INFO sending Commit {"height": 6459, "view": 0} -2023-12-15T23:53:20.045Z INFO approving block {"height": 6459, "hash": "f09c3eec580b67bffb9d9d3d90b5d92cd9c20a57b70339ad537f8a576dd16db0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a331653003d9e55f0fa7a068d6aea3f4097f9ba39fa0f010d66f334b0c998e8"} -2023-12-15T23:53:20.047Z INFO initializing dbft {"height": 6460, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:20.047Z debug frostfs-node/morph.go:229 new block {"index": 6459} -2023-12-15T23:53:20.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6459, "blockHeight": 6459, "took": "13.756146ms"} -2023-12-15T23:53:21.046Z INFO sending PrepareRequest {"height": 6460, "view": 0} -2023-12-15T23:53:21.046Z INFO sending Commit {"height": 6460, "view": 0} -2023-12-15T23:53:21.047Z INFO approving block {"height": 6460, "hash": "c72218e26e745da1584ae6b9a96878661bc6fece7565b4f9532b4064171c255d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f09c3eec580b67bffb9d9d3d90b5d92cd9c20a57b70339ad537f8a576dd16db0"} -2023-12-15T23:53:21.048Z INFO initializing dbft {"height": 6461, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:21.049Z debug frostfs-node/morph.go:229 new block {"index": 6460} -2023-12-15T23:53:21.957Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6460, "blockHeight": 6460, "took": "9.964631ms"} -2023-12-15T23:53:22.049Z INFO sending PrepareRequest {"height": 6461, "view": 0} -2023-12-15T23:53:22.049Z INFO sending Commit {"height": 6461, "view": 0} -2023-12-15T23:53:22.049Z INFO approving block {"height": 6461, "hash": "7a2079a93c0b61e7b0dcd4b728e75fb23b2c31bc139462cc39d6e6bbf145f1c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c72218e26e745da1584ae6b9a96878661bc6fece7565b4f9532b4064171c255d"} -2023-12-15T23:53:22.051Z INFO initializing dbft {"height": 6462, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:22.052Z debug frostfs-node/morph.go:229 new block {"index": 6461} -2023-12-15T23:53:22.958Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6461, "blockHeight": 6461, "took": "10.475559ms"} -2023-12-15T23:53:23.050Z INFO sending PrepareRequest {"height": 6462, "view": 0} -2023-12-15T23:53:23.050Z INFO sending Commit {"height": 6462, "view": 0} -2023-12-15T23:53:23.051Z INFO approving block {"height": 6462, "hash": "a8f00bf570ed5d49e98079063b1755936d5f4c86ad01afee8d85c34a60da9da0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a2079a93c0b61e7b0dcd4b728e75fb23b2c31bc139462cc39d6e6bbf145f1c0"} -2023-12-15T23:53:23.053Z INFO initializing dbft {"height": 6463, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:23.054Z debug frostfs-node/morph.go:229 new block {"index": 6462} -2023-12-15T23:53:23.956Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6462, "blockHeight": 6462, "took": "7.896779ms"} -2023-12-15T23:53:24.052Z INFO sending PrepareRequest {"height": 6463, "view": 0} -2023-12-15T23:53:24.052Z INFO sending Commit {"height": 6463, "view": 0} -2023-12-15T23:53:24.053Z INFO approving block {"height": 6463, "hash": "881d280db351b5b0e6667a42c2aabf3a6212a818af407d848cd7308acc0194db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8f00bf570ed5d49e98079063b1755936d5f4c86ad01afee8d85c34a60da9da0"} -2023-12-15T23:53:24.054Z INFO initializing dbft {"height": 6464, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:24.055Z debug frostfs-node/morph.go:229 new block {"index": 6463} -2023-12-15T23:53:24.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6463, "blockHeight": 6463, "took": "10.216417ms"} -2023-12-15T23:53:25.054Z INFO sending PrepareRequest {"height": 6464, "view": 0} -2023-12-15T23:53:25.054Z INFO sending Commit {"height": 6464, "view": 0} -2023-12-15T23:53:25.054Z INFO approving block {"height": 6464, "hash": "f02160162aa82d06e02f030c798e2827b6b9bccd2186910fcedadfe8f5c6f81b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "881d280db351b5b0e6667a42c2aabf3a6212a818af407d848cd7308acc0194db"} -2023-12-15T23:53:25.056Z INFO initializing dbft {"height": 6465, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:25.057Z debug frostfs-node/morph.go:229 new block {"index": 6464} -2023-12-15T23:53:25.958Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6464, "blockHeight": 6464, "took": "7.103067ms"} -2023-12-15T23:53:26.056Z INFO sending PrepareRequest {"height": 6465, "view": 0} -2023-12-15T23:53:26.056Z INFO sending Commit {"height": 6465, "view": 0} -2023-12-15T23:53:26.056Z INFO approving block {"height": 6465, "hash": "b5b06905f00d75494b1ee568c77700830719ea9efd3e3f08d361ff2443770340", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f02160162aa82d06e02f030c798e2827b6b9bccd2186910fcedadfe8f5c6f81b"} -2023-12-15T23:53:26.058Z INFO initializing dbft {"height": 6466, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:26.058Z debug frostfs-node/morph.go:229 new block {"index": 6465} -2023-12-15T23:53:26.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6465, "blockHeight": 6465, "took": "11.432848ms"} -2023-12-15T23:53:27.058Z INFO sending PrepareRequest {"height": 6466, "view": 0} -2023-12-15T23:53:27.059Z INFO sending Commit {"height": 6466, "view": 0} -2023-12-15T23:53:27.059Z INFO approving block {"height": 6466, "hash": "316926d4bc21f35f1c040505054aadd35406b98d1690e72a55a28b7163c71a3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5b06905f00d75494b1ee568c77700830719ea9efd3e3f08d361ff2443770340"} -2023-12-15T23:53:27.061Z INFO initializing dbft {"height": 6467, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:27.061Z debug frostfs-node/morph.go:229 new block {"index": 6466} -2023-12-15T23:53:27.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6466, "blockHeight": 6466, "took": "7.986903ms"} -2023-12-15T23:53:28.060Z INFO sending PrepareRequest {"height": 6467, "view": 0} -2023-12-15T23:53:28.061Z INFO sending Commit {"height": 6467, "view": 0} -2023-12-15T23:53:28.061Z INFO approving block {"height": 6467, "hash": "c78587d344da23186d45392bf87307684844d1027d4464e7ab918c55aaebb7ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "316926d4bc21f35f1c040505054aadd35406b98d1690e72a55a28b7163c71a3b"} -2023-12-15T23:53:28.063Z INFO initializing dbft {"height": 6468, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:28.064Z debug frostfs-node/morph.go:229 new block {"index": 6467} -2023-12-15T23:53:28.067Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:53:28.074Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:53:28.074Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:53:28.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6467, "blockHeight": 6467, "took": "10.198097ms"} -2023-12-15T23:53:29.062Z INFO sending PrepareRequest {"height": 6468, "view": 0} -2023-12-15T23:53:29.062Z INFO sending Commit {"height": 6468, "view": 0} -2023-12-15T23:53:29.063Z INFO approving block {"height": 6468, "hash": "e81be39c3b5ea29c6a6cd21b7f7675fea705efb01fb35dfda59c188acf248fa5", "tx_count": 2, "merkle": "eec8cf060935424c7eee9efe900b83b2c224cb92f0c5b4457e2bcd309f66d5d9", "prev": "c78587d344da23186d45392bf87307684844d1027d4464e7ab918c55aaebb7ad"} -2023-12-15T23:53:29.064Z INFO runtime log {"tx": "e2e3ee5afbab34447f0b5b4be4326003e7465316949d54e9bf17d7405d9dad0b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:53:29.064Z INFO runtime log {"tx": "e2e3ee5afbab34447f0b5b4be4326003e7465316949d54e9bf17d7405d9dad0b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:53:29.065Z INFO initializing dbft {"height": 6469, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:29.066Z debug frostfs-node/morph.go:229 new block {"index": 6468} -2023-12-15T23:53:29.966Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6468, "blockHeight": 6468, "took": "12.288848ms"} -2023-12-15T23:53:30.064Z INFO sending PrepareRequest {"height": 6469, "view": 0} -2023-12-15T23:53:30.064Z INFO sending Commit {"height": 6469, "view": 0} -2023-12-15T23:53:30.065Z INFO approving block {"height": 6469, "hash": "e0fb0b961175390a28b33557b2a21c00e9de27e9d28bfd77477a4b78d2cf7942", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e81be39c3b5ea29c6a6cd21b7f7675fea705efb01fb35dfda59c188acf248fa5"} -2023-12-15T23:53:30.066Z INFO initializing dbft {"height": 6470, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:30.067Z debug frostfs-node/morph.go:229 new block {"index": 6469} -2023-12-15T23:53:30.962Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6469, "blockHeight": 6469, "took": "6.901311ms"} -2023-12-15T23:53:31.066Z INFO sending PrepareRequest {"height": 6470, "view": 0} -2023-12-15T23:53:31.066Z INFO sending Commit {"height": 6470, "view": 0} -2023-12-15T23:53:31.067Z INFO approving block {"height": 6470, "hash": "b0d1a20c7c96f008bbf8786e4afbc3d1dc85ca7c113e12b290ec74d1af8a1605", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0fb0b961175390a28b33557b2a21c00e9de27e9d28bfd77477a4b78d2cf7942"} -2023-12-15T23:53:31.069Z INFO initializing dbft {"height": 6471, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:31.069Z debug frostfs-node/morph.go:229 new block {"index": 6470} -2023-12-15T23:53:31.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6470, "blockHeight": 6470, "took": "7.104753ms"} -2023-12-15T23:53:32.068Z INFO sending PrepareRequest {"height": 6471, "view": 0} -2023-12-15T23:53:32.069Z INFO sending Commit {"height": 6471, "view": 0} -2023-12-15T23:53:32.069Z INFO approving block {"height": 6471, "hash": "9a9abd71a4905806394af66392bffbcdb711d91272864c7d6b0c5b640f8e42a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0d1a20c7c96f008bbf8786e4afbc3d1dc85ca7c113e12b290ec74d1af8a1605"} -2023-12-15T23:53:32.071Z INFO initializing dbft {"height": 6472, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:32.072Z debug frostfs-node/morph.go:229 new block {"index": 6471} -2023-12-15T23:53:32.965Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6471, "blockHeight": 6471, "took": "8.501218ms"} -2023-12-15T23:53:33.071Z INFO sending PrepareRequest {"height": 6472, "view": 0} -2023-12-15T23:53:33.072Z INFO sending Commit {"height": 6472, "view": 0} -2023-12-15T23:53:33.072Z INFO approving block {"height": 6472, "hash": "286ab0d5022c609cd8cb2fa07697803185428e7961bed3698cb9d003d751332b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a9abd71a4905806394af66392bffbcdb711d91272864c7d6b0c5b640f8e42a5"} -2023-12-15T23:53:33.074Z INFO initializing dbft {"height": 6473, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:33.075Z debug frostfs-node/morph.go:229 new block {"index": 6472} -2023-12-15T23:53:33.966Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6472, "blockHeight": 6472, "took": "7.821529ms"} -2023-12-15T23:53:34.073Z INFO sending PrepareRequest {"height": 6473, "view": 0} -2023-12-15T23:53:34.073Z INFO sending Commit {"height": 6473, "view": 0} -2023-12-15T23:53:34.074Z INFO approving block {"height": 6473, "hash": "eda6fe3292fc2d787c2bff37a80233f12435cdf5997c8595b8a066a33d9e726b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "286ab0d5022c609cd8cb2fa07697803185428e7961bed3698cb9d003d751332b"} -2023-12-15T23:53:34.075Z INFO initializing dbft {"height": 6474, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:34.076Z debug frostfs-node/morph.go:229 new block {"index": 6473} -2023-12-15T23:53:34.965Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6473, "blockHeight": 6473, "took": "6.480808ms"} -2023-12-15T23:53:35.075Z INFO sending PrepareRequest {"height": 6474, "view": 0} -2023-12-15T23:53:35.075Z INFO sending Commit {"height": 6474, "view": 0} -2023-12-15T23:53:35.075Z INFO approving block {"height": 6474, "hash": "249d2ecbe615b759b59db2997dbd2c3e2852a6e22bc6324c02538e123db78246", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eda6fe3292fc2d787c2bff37a80233f12435cdf5997c8595b8a066a33d9e726b"} -2023-12-15T23:53:35.077Z INFO initializing dbft {"height": 6475, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:35.078Z debug frostfs-node/morph.go:229 new block {"index": 6474} -2023-12-15T23:53:35.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6474, "blockHeight": 6474, "took": "8.84184ms"} -2023-12-15T23:53:36.077Z INFO sending PrepareRequest {"height": 6475, "view": 0} -2023-12-15T23:53:36.077Z INFO sending Commit {"height": 6475, "view": 0} -2023-12-15T23:53:36.077Z INFO approving block {"height": 6475, "hash": "9fcb8103977134542d3682455ea5708ed955282b9c1b9fc3218bf2d868f2dd88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "249d2ecbe615b759b59db2997dbd2c3e2852a6e22bc6324c02538e123db78246"} -2023-12-15T23:53:36.079Z INFO initializing dbft {"height": 6476, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:36.080Z debug frostfs-node/morph.go:229 new block {"index": 6475} -2023-12-15T23:53:36.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6475, "blockHeight": 6475, "took": "9.682451ms"} -2023-12-15T23:53:37.079Z INFO sending PrepareRequest {"height": 6476, "view": 0} -2023-12-15T23:53:37.079Z INFO sending Commit {"height": 6476, "view": 0} -2023-12-15T23:53:37.079Z INFO approving block {"height": 6476, "hash": "6dc758447f274f2a1c2aeed9fd9b4698be3bf14f0f1ee9deb98480d3544b9be2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fcb8103977134542d3682455ea5708ed955282b9c1b9fc3218bf2d868f2dd88"} -2023-12-15T23:53:37.081Z INFO initializing dbft {"height": 6477, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:37.082Z debug frostfs-node/morph.go:229 new block {"index": 6476} -2023-12-15T23:53:37.969Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6476, "blockHeight": 6476, "took": "7.475477ms"} -2023-12-15T23:53:38.081Z INFO sending PrepareRequest {"height": 6477, "view": 0} -2023-12-15T23:53:38.081Z INFO sending Commit {"height": 6477, "view": 0} -2023-12-15T23:53:38.082Z INFO approving block {"height": 6477, "hash": "4f93d124e6ec6d33fee5c0d42328b4b463dd123d69e7a381af5bff9ec9b607d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dc758447f274f2a1c2aeed9fd9b4698be3bf14f0f1ee9deb98480d3544b9be2"} -2023-12-15T23:53:38.083Z INFO initializing dbft {"height": 6478, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:38.084Z debug frostfs-node/morph.go:229 new block {"index": 6477} -2023-12-15T23:53:38.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6477, "blockHeight": 6477, "took": "8.435047ms"} -2023-12-15T23:53:39.084Z INFO sending PrepareRequest {"height": 6478, "view": 0} -2023-12-15T23:53:39.084Z INFO sending Commit {"height": 6478, "view": 0} -2023-12-15T23:53:39.084Z INFO approving block {"height": 6478, "hash": "48f4f22e84a0f8cb5bb65874423730b680d03d344c8c205c5c63c8b36063eeae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f93d124e6ec6d33fee5c0d42328b4b463dd123d69e7a381af5bff9ec9b607d7"} -2023-12-15T23:53:39.086Z INFO initializing dbft {"height": 6479, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:39.087Z debug frostfs-node/morph.go:229 new block {"index": 6478} -2023-12-15T23:53:39.969Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6478, "blockHeight": 6478, "took": "7.006273ms"} -2023-12-15T23:53:40.086Z INFO sending PrepareRequest {"height": 6479, "view": 0} -2023-12-15T23:53:40.086Z INFO sending Commit {"height": 6479, "view": 0} -2023-12-15T23:53:40.086Z INFO approving block {"height": 6479, "hash": "ee83ef9cdae056adf77a5088d15e71e613cef755cfb854a6eb0b19bcab1efb1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48f4f22e84a0f8cb5bb65874423730b680d03d344c8c205c5c63c8b36063eeae"} -2023-12-15T23:53:40.088Z INFO initializing dbft {"height": 6480, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:40.089Z debug frostfs-node/morph.go:229 new block {"index": 6479} -2023-12-15T23:53:40.973Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6479, "blockHeight": 6479, "took": "9.920906ms"} -2023-12-15T23:53:41.088Z INFO sending PrepareRequest {"height": 6480, "view": 0} -2023-12-15T23:53:41.089Z INFO sending Commit {"height": 6480, "view": 0} -2023-12-15T23:53:41.089Z INFO approving block {"height": 6480, "hash": "826fa4da27e3e2477bb25aed2152de88274332ae4290766472997e1e9439d5dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee83ef9cdae056adf77a5088d15e71e613cef755cfb854a6eb0b19bcab1efb1a"} -2023-12-15T23:53:41.091Z INFO initializing dbft {"height": 6481, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:41.091Z debug frostfs-node/morph.go:229 new block {"index": 6480} -2023-12-15T23:53:41.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6480, "blockHeight": 6480, "took": "6.088028ms"} -2023-12-15T23:53:42.091Z INFO sending PrepareRequest {"height": 6481, "view": 0} -2023-12-15T23:53:42.091Z INFO sending Commit {"height": 6481, "view": 0} -2023-12-15T23:53:42.091Z INFO approving block {"height": 6481, "hash": "045b767ca4d2485596c159a0fd0cfa6250f5cad58531de6f93d6fa8a11995e84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "826fa4da27e3e2477bb25aed2152de88274332ae4290766472997e1e9439d5dd"} -2023-12-15T23:53:42.093Z INFO initializing dbft {"height": 6482, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:42.094Z debug frostfs-node/morph.go:229 new block {"index": 6481} -2023-12-15T23:53:42.973Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6481, "blockHeight": 6481, "took": "7.632635ms"} -2023-12-15T23:53:43.092Z INFO sending PrepareRequest {"height": 6482, "view": 0} -2023-12-15T23:53:43.093Z INFO sending Commit {"height": 6482, "view": 0} -2023-12-15T23:53:43.093Z INFO approving block {"height": 6482, "hash": "c6fc41bf3125da17fa57f2e9db032f2708a897e268710c37a05de17dfbb4d0ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "045b767ca4d2485596c159a0fd0cfa6250f5cad58531de6f93d6fa8a11995e84"} -2023-12-15T23:53:43.095Z INFO initializing dbft {"height": 6483, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:43.096Z debug frostfs-node/morph.go:229 new block {"index": 6482} -2023-12-15T23:53:43.973Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6482, "blockHeight": 6482, "took": "6.095678ms"} -2023-12-15T23:53:44.094Z INFO sending PrepareRequest {"height": 6483, "view": 0} -2023-12-15T23:53:44.094Z INFO sending Commit {"height": 6483, "view": 0} -2023-12-15T23:53:44.095Z INFO approving block {"height": 6483, "hash": "d82ef756fa3f978f4c0111c59ede1524d514ac1cc8b60533ac24547e296fabd3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6fc41bf3125da17fa57f2e9db032f2708a897e268710c37a05de17dfbb4d0ff"} -2023-12-15T23:53:44.096Z INFO initializing dbft {"height": 6484, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:44.097Z debug frostfs-node/morph.go:229 new block {"index": 6483} -2023-12-15T23:53:44.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6483, "blockHeight": 6483, "took": "7.465539ms"} -2023-12-15T23:53:45.096Z INFO sending PrepareRequest {"height": 6484, "view": 0} -2023-12-15T23:53:45.096Z INFO sending Commit {"height": 6484, "view": 0} -2023-12-15T23:53:45.097Z INFO approving block {"height": 6484, "hash": "6bb83bf3c9e77c4c392ceabdef713f3ef4df42974d7a5198e54289da54f80b99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d82ef756fa3f978f4c0111c59ede1524d514ac1cc8b60533ac24547e296fabd3"} -2023-12-15T23:53:45.098Z INFO initializing dbft {"height": 6485, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:45.099Z debug frostfs-node/morph.go:229 new block {"index": 6484} -2023-12-15T23:53:45.977Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6484, "blockHeight": 6484, "took": "8.710876ms"} -2023-12-15T23:53:46.098Z INFO sending PrepareRequest {"height": 6485, "view": 0} -2023-12-15T23:53:46.098Z INFO sending Commit {"height": 6485, "view": 0} -2023-12-15T23:53:46.099Z INFO approving block {"height": 6485, "hash": "e9155a0d127250a53905aec9bfbafd93395aedad7d393258f2c49c596a249afc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bb83bf3c9e77c4c392ceabdef713f3ef4df42974d7a5198e54289da54f80b99"} -2023-12-15T23:53:46.100Z INFO initializing dbft {"height": 6486, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:46.101Z debug frostfs-node/morph.go:229 new block {"index": 6485} -2023-12-15T23:53:46.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6485, "blockHeight": 6485, "took": "5.7796ms"} -2023-12-15T23:53:47.100Z INFO sending PrepareRequest {"height": 6486, "view": 0} -2023-12-15T23:53:47.101Z INFO sending Commit {"height": 6486, "view": 0} -2023-12-15T23:53:47.101Z INFO approving block {"height": 6486, "hash": "0d4d16a331b442a6c74989000c6804378129850d1859cb36ba8c3dca6be3a658", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9155a0d127250a53905aec9bfbafd93395aedad7d393258f2c49c596a249afc"} -2023-12-15T23:53:47.102Z INFO initializing dbft {"height": 6487, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:47.103Z debug frostfs-node/morph.go:229 new block {"index": 6486} -2023-12-15T23:53:47.979Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6486, "blockHeight": 6486, "took": "8.874292ms"} -2023-12-15T23:53:48.103Z INFO sending PrepareRequest {"height": 6487, "view": 0} -2023-12-15T23:53:48.103Z INFO sending Commit {"height": 6487, "view": 0} -2023-12-15T23:53:48.103Z INFO approving block {"height": 6487, "hash": "5f1919ea1e90e4bca689074d92a60243fbe461ff5ae7a598172ec1f229a91d09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d4d16a331b442a6c74989000c6804378129850d1859cb36ba8c3dca6be3a658"} -2023-12-15T23:53:48.105Z INFO initializing dbft {"height": 6488, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:48.106Z debug frostfs-node/morph.go:229 new block {"index": 6487} -2023-12-15T23:53:48.980Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6487, "blockHeight": 6487, "took": "8.105052ms"} -2023-12-15T23:53:49.105Z INFO sending PrepareRequest {"height": 6488, "view": 0} -2023-12-15T23:53:49.105Z INFO sending Commit {"height": 6488, "view": 0} -2023-12-15T23:53:49.105Z INFO approving block {"height": 6488, "hash": "f0ef9e30f87f1a8575539bb496df6475819710d612ecbb0f533e3b25fb793f43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f1919ea1e90e4bca689074d92a60243fbe461ff5ae7a598172ec1f229a91d09"} -2023-12-15T23:53:49.106Z INFO initializing dbft {"height": 6489, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:49.107Z debug frostfs-node/morph.go:229 new block {"index": 6488} -2023-12-15T23:53:49.981Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6488, "blockHeight": 6488, "took": "8.330805ms"} -2023-12-15T23:53:50.107Z INFO sending PrepareRequest {"height": 6489, "view": 0} -2023-12-15T23:53:50.107Z INFO sending Commit {"height": 6489, "view": 0} -2023-12-15T23:53:50.107Z INFO approving block {"height": 6489, "hash": "524c735d38bc1f4d3c9b16f03c91882b20bfae2c38ceec18c1240623d670fb62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0ef9e30f87f1a8575539bb496df6475819710d612ecbb0f533e3b25fb793f43"} -2023-12-15T23:53:50.109Z INFO initializing dbft {"height": 6490, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:50.110Z debug frostfs-node/morph.go:229 new block {"index": 6489} -2023-12-15T23:53:50.981Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6489, "blockHeight": 6489, "took": "7.88734ms"} -2023-12-15T23:53:51.109Z INFO sending PrepareRequest {"height": 6490, "view": 0} -2023-12-15T23:53:51.109Z INFO sending Commit {"height": 6490, "view": 0} -2023-12-15T23:53:51.110Z INFO approving block {"height": 6490, "hash": "4c59d844a4f1b8720b81ffdf1ecc333ce2403df6dae190127c58a84eb1eff542", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "524c735d38bc1f4d3c9b16f03c91882b20bfae2c38ceec18c1240623d670fb62"} -2023-12-15T23:53:51.112Z INFO initializing dbft {"height": 6491, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:51.113Z debug frostfs-node/morph.go:229 new block {"index": 6490} -2023-12-15T23:53:51.984Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6490, "blockHeight": 6490, "took": "10.532237ms"} -2023-12-15T23:53:52.112Z INFO sending PrepareRequest {"height": 6491, "view": 0} -2023-12-15T23:53:52.112Z INFO sending Commit {"height": 6491, "view": 0} -2023-12-15T23:53:52.112Z INFO approving block {"height": 6491, "hash": "7333727053cbf547531bb68cc196b5e21e1c894f2ff8df8f9c1675a9e8d56846", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c59d844a4f1b8720b81ffdf1ecc333ce2403df6dae190127c58a84eb1eff542"} -2023-12-15T23:53:52.114Z INFO initializing dbft {"height": 6492, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:52.115Z debug frostfs-node/morph.go:229 new block {"index": 6491} -2023-12-15T23:53:52.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6491, "blockHeight": 6491, "took": "8.004534ms"} -2023-12-15T23:53:53.113Z INFO sending PrepareRequest {"height": 6492, "view": 0} -2023-12-15T23:53:53.113Z INFO sending Commit {"height": 6492, "view": 0} -2023-12-15T23:53:53.114Z INFO approving block {"height": 6492, "hash": "edf002e60b0e56d16b81995d4c5d99515e014b0a9fd8a592420714f12ec79e95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7333727053cbf547531bb68cc196b5e21e1c894f2ff8df8f9c1675a9e8d56846"} -2023-12-15T23:53:53.116Z INFO initializing dbft {"height": 6493, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:53.116Z debug frostfs-node/morph.go:229 new block {"index": 6492} -2023-12-15T23:53:53.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6492, "blockHeight": 6492, "took": "12.123712ms"} -2023-12-15T23:53:54.115Z INFO sending PrepareRequest {"height": 6493, "view": 0} -2023-12-15T23:53:54.115Z INFO sending Commit {"height": 6493, "view": 0} -2023-12-15T23:53:54.115Z INFO approving block {"height": 6493, "hash": "9e6f7c94450840d258f2bc87939ed47513014dd35ba002abd025126049f7b335", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edf002e60b0e56d16b81995d4c5d99515e014b0a9fd8a592420714f12ec79e95"} -2023-12-15T23:53:54.117Z INFO initializing dbft {"height": 6494, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:54.117Z debug frostfs-node/morph.go:229 new block {"index": 6493} -2023-12-15T23:53:54.984Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6493, "blockHeight": 6493, "took": "8.050286ms"} -2023-12-15T23:53:55.117Z INFO sending PrepareRequest {"height": 6494, "view": 0} -2023-12-15T23:53:55.117Z INFO sending Commit {"height": 6494, "view": 0} -2023-12-15T23:53:55.118Z INFO approving block {"height": 6494, "hash": "79cdbe18e5eeeb40804fde491a5b5ebbf648b0cccf8b4dd304d9007da1cd37d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e6f7c94450840d258f2bc87939ed47513014dd35ba002abd025126049f7b335"} -2023-12-15T23:53:55.119Z INFO initializing dbft {"height": 6495, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:55.120Z debug frostfs-node/morph.go:229 new block {"index": 6494} -2023-12-15T23:53:55.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6494, "blockHeight": 6494, "took": "9.725458ms"} -2023-12-15T23:53:56.119Z INFO sending PrepareRequest {"height": 6495, "view": 0} -2023-12-15T23:53:56.119Z INFO sending Commit {"height": 6495, "view": 0} -2023-12-15T23:53:56.120Z INFO approving block {"height": 6495, "hash": "b5937a5572a88cbafbe1b09b7521ea67512895e6fc994a8dc0a625841daf0fd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79cdbe18e5eeeb40804fde491a5b5ebbf648b0cccf8b4dd304d9007da1cd37d1"} -2023-12-15T23:53:56.122Z INFO initializing dbft {"height": 6496, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:56.123Z debug frostfs-node/morph.go:229 new block {"index": 6495} -2023-12-15T23:53:56.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6495, "blockHeight": 6495, "took": "9.503948ms"} -2023-12-15T23:53:57.121Z INFO sending PrepareRequest {"height": 6496, "view": 0} -2023-12-15T23:53:57.121Z INFO sending Commit {"height": 6496, "view": 0} -2023-12-15T23:53:57.122Z INFO approving block {"height": 6496, "hash": "460d7ce695c7c9f935396595ae7352833a461546a93b10b59f8ea1141594007a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5937a5572a88cbafbe1b09b7521ea67512895e6fc994a8dc0a625841daf0fd0"} -2023-12-15T23:53:57.124Z INFO initializing dbft {"height": 6497, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:57.124Z debug frostfs-node/morph.go:229 new block {"index": 6496} -2023-12-15T23:53:57.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6496, "blockHeight": 6496, "took": "7.356529ms"} -2023-12-15T23:53:58.124Z INFO sending PrepareRequest {"height": 6497, "view": 0} -2023-12-15T23:53:58.124Z INFO sending Commit {"height": 6497, "view": 0} -2023-12-15T23:53:58.124Z INFO approving block {"height": 6497, "hash": "cedadd30ce4000964cebfbc9792f843125c91be7b94fc421604ab068d3672137", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "460d7ce695c7c9f935396595ae7352833a461546a93b10b59f8ea1141594007a"} -2023-12-15T23:53:58.126Z INFO initializing dbft {"height": 6498, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:58.127Z debug frostfs-node/morph.go:229 new block {"index": 6497} -2023-12-15T23:53:58.988Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6497, "blockHeight": 6497, "took": "8.212161ms"} -2023-12-15T23:53:59.125Z INFO sending PrepareRequest {"height": 6498, "view": 0} -2023-12-15T23:53:59.126Z INFO sending Commit {"height": 6498, "view": 0} -2023-12-15T23:53:59.126Z INFO approving block {"height": 6498, "hash": "1701d68165af68f59165dcd3fc2792f861c48e1259a171eb9aced772b816cafc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cedadd30ce4000964cebfbc9792f843125c91be7b94fc421604ab068d3672137"} -2023-12-15T23:53:59.129Z INFO initializing dbft {"height": 6499, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:53:59.129Z debug frostfs-node/morph.go:229 new block {"index": 6498} -2023-12-15T23:53:59.988Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6498, "blockHeight": 6498, "took": "6.744519ms"} -2023-12-15T23:54:00.127Z INFO sending PrepareRequest {"height": 6499, "view": 0} -2023-12-15T23:54:00.128Z INFO sending Commit {"height": 6499, "view": 0} -2023-12-15T23:54:00.128Z INFO approving block {"height": 6499, "hash": "ce3601983d179e3c6256f701af0cb617ffaf1418839631ed64f3e254bfbea12b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1701d68165af68f59165dcd3fc2792f861c48e1259a171eb9aced772b816cafc"} -2023-12-15T23:54:00.130Z INFO initializing dbft {"height": 6500, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:00.131Z debug frostfs-node/morph.go:229 new block {"index": 6499} -2023-12-15T23:54:00.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6499, "blockHeight": 6499, "took": "9.522729ms"} -2023-12-15T23:54:01.129Z INFO sending PrepareRequest {"height": 6500, "view": 0} -2023-12-15T23:54:01.130Z INFO sending Commit {"height": 6500, "view": 0} -2023-12-15T23:54:01.130Z INFO approving block {"height": 6500, "hash": "261b1229f1fdbfdc801c77088b67d96e91d924c5eae11d395d589da40068ec04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce3601983d179e3c6256f701af0cb617ffaf1418839631ed64f3e254bfbea12b"} -2023-12-15T23:54:01.132Z INFO initializing dbft {"height": 6501, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:01.132Z debug frostfs-node/morph.go:229 new block {"index": 6500} -2023-12-15T23:54:01.993Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6500, "blockHeight": 6500, "took": "9.939408ms"} -2023-12-15T23:54:02.131Z INFO sending PrepareRequest {"height": 6501, "view": 0} -2023-12-15T23:54:02.132Z INFO sending Commit {"height": 6501, "view": 0} -2023-12-15T23:54:02.132Z INFO approving block {"height": 6501, "hash": "8084a41b36220abbc8b2b014ff6192641744e31db36e9b6109c86b0e2e5bf1ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "261b1229f1fdbfdc801c77088b67d96e91d924c5eae11d395d589da40068ec04"} -2023-12-15T23:54:02.134Z INFO initializing dbft {"height": 6502, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:02.135Z debug frostfs-node/morph.go:229 new block {"index": 6501} -2023-12-15T23:54:02.994Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6501, "blockHeight": 6501, "took": "10.317232ms"} -2023-12-15T23:54:03.133Z INFO sending PrepareRequest {"height": 6502, "view": 0} -2023-12-15T23:54:03.133Z INFO sending Commit {"height": 6502, "view": 0} -2023-12-15T23:54:03.134Z INFO approving block {"height": 6502, "hash": "e2e8701e0df37c6bb8f8d811745fefffb0f1a891e01f43d9da1eb405ca54f9b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8084a41b36220abbc8b2b014ff6192641744e31db36e9b6109c86b0e2e5bf1ce"} -2023-12-15T23:54:03.135Z INFO initializing dbft {"height": 6503, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:03.136Z debug frostfs-node/morph.go:229 new block {"index": 6502} -2023-12-15T23:54:03.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6502, "blockHeight": 6502, "took": "10.387019ms"} -2023-12-15T23:54:04.135Z INFO sending PrepareRequest {"height": 6503, "view": 0} -2023-12-15T23:54:04.136Z INFO sending Commit {"height": 6503, "view": 0} -2023-12-15T23:54:04.136Z INFO approving block {"height": 6503, "hash": "fd415078b7a85f06214787ae0b5f0977201775a7a4a9060dbe65a99292c5a8b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2e8701e0df37c6bb8f8d811745fefffb0f1a891e01f43d9da1eb405ca54f9b3"} -2023-12-15T23:54:04.138Z INFO initializing dbft {"height": 6504, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:04.139Z debug frostfs-node/morph.go:229 new block {"index": 6503} -2023-12-15T23:54:04.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6503, "blockHeight": 6503, "took": "9.825087ms"} -2023-12-15T23:54:05.137Z INFO sending PrepareRequest {"height": 6504, "view": 0} -2023-12-15T23:54:05.138Z INFO sending Commit {"height": 6504, "view": 0} -2023-12-15T23:54:05.138Z INFO approving block {"height": 6504, "hash": "5a773bae8f9e886e8a761cfb02d0607ca3597c5829d256c6d899688c3677b924", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd415078b7a85f06214787ae0b5f0977201775a7a4a9060dbe65a99292c5a8b0"} -2023-12-15T23:54:05.139Z INFO initializing dbft {"height": 6505, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:05.140Z debug frostfs-node/morph.go:229 new block {"index": 6504} -2023-12-15T23:54:05.993Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6504, "blockHeight": 6504, "took": "6.355505ms"} -2023-12-15T23:54:06.140Z INFO sending PrepareRequest {"height": 6505, "view": 0} -2023-12-15T23:54:06.140Z INFO sending Commit {"height": 6505, "view": 0} -2023-12-15T23:54:06.140Z INFO approving block {"height": 6505, "hash": "2ffb320209fdd3569cb1527d43853577062ddb4a52496bddfe61f7c6398f34f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a773bae8f9e886e8a761cfb02d0607ca3597c5829d256c6d899688c3677b924"} -2023-12-15T23:54:06.142Z INFO initializing dbft {"height": 6506, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:06.143Z debug frostfs-node/morph.go:229 new block {"index": 6505} -2023-12-15T23:54:06.148Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 27, "iteration": 3, "error": "no data for 2 iteration in 27 epoch for consumers's trusts"} -2023-12-15T23:54:06.997Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6505, "blockHeight": 6505, "took": "9.011032ms"} -2023-12-15T23:54:07.141Z INFO sending PrepareRequest {"height": 6506, "view": 0} -2023-12-15T23:54:07.142Z INFO sending Commit {"height": 6506, "view": 0} -2023-12-15T23:54:07.142Z INFO approving block {"height": 6506, "hash": "801a9df6abb6e0bee76baaac59e0abcd1aad9a514d3f8a877290ce975b6e6ddd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ffb320209fdd3569cb1527d43853577062ddb4a52496bddfe61f7c6398f34f2"} -2023-12-15T23:54:07.145Z INFO initializing dbft {"height": 6507, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:07.146Z debug frostfs-node/morph.go:229 new block {"index": 6506} -2023-12-15T23:54:07.150Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:54:07.157Z INFO runtime log {"tx": "56772ae7c4af2c21fb37c20930900f3dfe00173ca4d4ac0d7c4a0864bd3a9254", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:54:07.994Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6506, "blockHeight": 6506, "took": "5.792739ms"} -2023-12-15T23:54:08.144Z INFO sending PrepareRequest {"height": 6507, "view": 0} -2023-12-15T23:54:08.144Z INFO sending Commit {"height": 6507, "view": 0} -2023-12-15T23:54:08.145Z INFO approving block {"height": 6507, "hash": "6dbe6f173a0e0c1016bff7b60feb736f0de58f0fff8af0a429bf41f013b2257c", "tx_count": 1, "merkle": "f93bd282a5652fed95eb195f67ff8fa159697041b031fde4f8cf6aba41b196fe", "prev": "801a9df6abb6e0bee76baaac59e0abcd1aad9a514d3f8a877290ce975b6e6ddd"} -2023-12-15T23:54:08.146Z INFO runtime log {"tx": "fe96b141ba6acff8e4fd31b041706959a18fff675f19eb95ed2f65a582d23bf9", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:54:08.148Z INFO initializing dbft {"height": 6508, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:08.149Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 29} -2023-12-15T23:54:08.149Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 29} -2023-12-15T23:54:08.149Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:54:08.149Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 29} -2023-12-15T23:54:08.149Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 29} -2023-12-15T23:54:08.150Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 29} -2023-12-15T23:54:08.150Z debug frostfs-node/morph.go:229 new block {"index": 6507} -2023-12-15T23:54:08.150Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:54:08.150Z debug controller/calls.go:95 starting to report local trust values {"epoch": 28} -2023-12-15T23:54:08.150Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 28} -2023-12-15T23:54:08.154Z debug controller/calls.go:146 reporting successfully finished {"epoch": 28} -2023-12-15T23:54:08.155Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 28} -2023-12-15T23:54:08.155Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:54:08.157Z INFO runtime log {"tx": "dc0084a29f1665391d970a724b71d4969f36928a725d59ba0d699c5128b6c46b", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:54:08.161Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6510, "tx_hash": "d37fa913ae3c7e1cd5b55bf497e8c416ca120babb61702dfdd533efbe7492fb7"} -2023-12-15T23:54:08.171Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:54:08.172Z info audit/handlers.go:13 new round of audit {"epoch": 29} -2023-12-15T23:54:08.172Z info settlement/calls.go:26 new audit settlement event {"epoch": 29} -2023-12-15T23:54:08.173Z info settlement/handlers.go:14 process audit settlements {"epoch": 29} -2023-12-15T23:54:08.173Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 29} -2023-12-15T23:54:08.176Z info settlement/handlers.go:18 audit processing finished {"epoch": 29} -2023-12-15T23:54:08.179Z info audit/process.go:39 select containers for audit {"epoch": 29, "amount": 0} -2023-12-15T23:54:08.184Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6510, "tx_hash": "505d1739cb9835cd5c9d33bb532014f820899fc496f92bd6e8bf9ebb70aba443"} -2023-12-15T23:54:09.004Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 6507, "blockHeight": 6507, "took": "14.691959ms"} -2023-12-15T23:54:09.145Z INFO sending PrepareRequest {"height": 6508, "view": 0} -2023-12-15T23:54:09.146Z INFO sending Commit {"height": 6508, "view": 0} -2023-12-15T23:54:09.146Z INFO approving block {"height": 6508, "hash": "cb066fd6fc19a87a3c91e9bbebb9c3d95a376ae873a845d3afcaeaad9ace0556", "tx_count": 3, "merkle": "5558c84a3cf59b5014afb3ee4aea753ea9a1b3f93fe3a5a5796548a1a2166109", "prev": "6dbe6f173a0e0c1016bff7b60feb736f0de58f0fff8af0a429bf41f013b2257c"} -2023-12-15T23:54:09.147Z INFO runtime log {"tx": "5d8778aa45bd60d3a6f1a0e9f20f939a6755e5ffb675955668cfef4753235155", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:54:09.150Z INFO initializing dbft {"height": 6509, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:09.151Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 28} -2023-12-15T23:54:09.151Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 28} -2023-12-15T23:54:09.151Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 28} -2023-12-15T23:54:09.151Z debug frostfs-node/morph.go:229 new block {"index": 6508} -2023-12-15T23:54:10.009Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 6508, "blockHeight": 6508, "took": "18.262025ms"} -2023-12-15T23:54:10.148Z INFO sending PrepareRequest {"height": 6509, "view": 0} -2023-12-15T23:54:10.148Z INFO sending Commit {"height": 6509, "view": 0} -2023-12-15T23:54:10.148Z INFO approving block {"height": 6509, "hash": "62a5db6f947d6789d88eddd21cd69d4c2a8dd507dc0905d5b8a2ba125cae6274", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb066fd6fc19a87a3c91e9bbebb9c3d95a376ae873a845d3afcaeaad9ace0556"} -2023-12-15T23:54:10.150Z INFO initializing dbft {"height": 6510, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:10.150Z debug frostfs-node/morph.go:229 new block {"index": 6509} -2023-12-15T23:54:11.006Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6509, "blockHeight": 6509, "took": "14.038778ms"} -2023-12-15T23:54:11.150Z INFO sending PrepareRequest {"height": 6510, "view": 0} -2023-12-15T23:54:11.150Z INFO sending Commit {"height": 6510, "view": 0} -2023-12-15T23:54:11.151Z INFO approving block {"height": 6510, "hash": "890b898e327c464b4983391a4a24e9be069dd876019cd8d893e510780163612b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62a5db6f947d6789d88eddd21cd69d4c2a8dd507dc0905d5b8a2ba125cae6274"} -2023-12-15T23:54:11.152Z INFO initializing dbft {"height": 6511, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:11.153Z debug frostfs-node/morph.go:229 new block {"index": 6510} -2023-12-15T23:54:12.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6510, "blockHeight": 6510, "took": "11.28186ms"} -2023-12-15T23:54:12.152Z INFO sending PrepareRequest {"height": 6511, "view": 0} -2023-12-15T23:54:12.153Z INFO sending Commit {"height": 6511, "view": 0} -2023-12-15T23:54:12.154Z INFO approving block {"height": 6511, "hash": "7763c15e8150847d360f6a6770f90137c8ca17d3529eaecb2533adad056dc89c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "890b898e327c464b4983391a4a24e9be069dd876019cd8d893e510780163612b"} -2023-12-15T23:54:12.156Z INFO initializing dbft {"height": 6512, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:12.157Z debug frostfs-node/morph.go:229 new block {"index": 6511} -2023-12-15T23:54:12.998Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6511, "blockHeight": 6511, "took": "5.175301ms"} -2023-12-15T23:54:13.156Z INFO sending PrepareRequest {"height": 6512, "view": 0} -2023-12-15T23:54:13.156Z INFO sending Commit {"height": 6512, "view": 0} -2023-12-15T23:54:13.156Z INFO approving block {"height": 6512, "hash": "748d54c090d705ddc5a9e646633fbeec17b272b128dbc440d5f5f7cc30907868", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7763c15e8150847d360f6a6770f90137c8ca17d3529eaecb2533adad056dc89c"} -2023-12-15T23:54:13.158Z INFO initializing dbft {"height": 6513, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:13.159Z debug frostfs-node/morph.go:229 new block {"index": 6512} -2023-12-15T23:54:14.001Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6512, "blockHeight": 6512, "took": "7.606411ms"} -2023-12-15T23:54:14.158Z INFO sending PrepareRequest {"height": 6513, "view": 0} -2023-12-15T23:54:14.158Z INFO sending Commit {"height": 6513, "view": 0} -2023-12-15T23:54:14.159Z INFO approving block {"height": 6513, "hash": "2563ce8b264a74d7b7f754aff7dc17c5f85d7b699fa5c06998afae50b6d45782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "748d54c090d705ddc5a9e646633fbeec17b272b128dbc440d5f5f7cc30907868"} -2023-12-15T23:54:14.162Z INFO initializing dbft {"height": 6514, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:14.163Z debug frostfs-node/morph.go:229 new block {"index": 6513} -2023-12-15T23:54:15.002Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6513, "blockHeight": 6513, "took": "8.187178ms"} -2023-12-15T23:54:15.160Z INFO sending PrepareRequest {"height": 6514, "view": 0} -2023-12-15T23:54:15.160Z INFO sending Commit {"height": 6514, "view": 0} -2023-12-15T23:54:15.161Z INFO approving block {"height": 6514, "hash": "e347beede754ea8b5cf48b3b20e5cc7c2917ff4ed791fa3d9fa9d731c6f1bc31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2563ce8b264a74d7b7f754aff7dc17c5f85d7b699fa5c06998afae50b6d45782"} -2023-12-15T23:54:15.162Z INFO initializing dbft {"height": 6515, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:15.163Z debug frostfs-node/morph.go:229 new block {"index": 6514} -2023-12-15T23:54:16.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6514, "blockHeight": 6514, "took": "7.247112ms"} -2023-12-15T23:54:16.162Z INFO sending PrepareRequest {"height": 6515, "view": 0} -2023-12-15T23:54:16.162Z INFO sending Commit {"height": 6515, "view": 0} -2023-12-15T23:54:16.162Z INFO approving block {"height": 6515, "hash": "5f95ca2ec4f3d7e8f4e73943d12580193b0a30d5cab26c9e87d5683eef994fd3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e347beede754ea8b5cf48b3b20e5cc7c2917ff4ed791fa3d9fa9d731c6f1bc31"} -2023-12-15T23:54:16.164Z INFO initializing dbft {"height": 6516, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:16.165Z debug frostfs-node/morph.go:229 new block {"index": 6515} -2023-12-15T23:54:17.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6515, "blockHeight": 6515, "took": "6.77681ms"} -2023-12-15T23:54:17.164Z INFO sending PrepareRequest {"height": 6516, "view": 0} -2023-12-15T23:54:17.164Z INFO sending Commit {"height": 6516, "view": 0} -2023-12-15T23:54:17.165Z INFO approving block {"height": 6516, "hash": "4c38c2d24a4475ce75700bc97e343f0aa2a8b96106e2fd87478ddae6e23abd98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f95ca2ec4f3d7e8f4e73943d12580193b0a30d5cab26c9e87d5683eef994fd3"} -2023-12-15T23:54:17.167Z INFO initializing dbft {"height": 6517, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:17.169Z debug frostfs-node/morph.go:229 new block {"index": 6516} -2023-12-15T23:54:18.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6516, "blockHeight": 6516, "took": "6.641153ms"} -2023-12-15T23:54:18.165Z INFO sending PrepareRequest {"height": 6517, "view": 0} -2023-12-15T23:54:18.166Z INFO sending Commit {"height": 6517, "view": 0} -2023-12-15T23:54:18.166Z INFO approving block {"height": 6517, "hash": "46bd37f588785f35a388e42f3cc73bd5d47405ea18c3ff5f71775519f4cf6ada", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c38c2d24a4475ce75700bc97e343f0aa2a8b96106e2fd87478ddae6e23abd98"} -2023-12-15T23:54:18.168Z INFO initializing dbft {"height": 6518, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:18.169Z debug frostfs-node/morph.go:229 new block {"index": 6517} -2023-12-15T23:54:18.172Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:54:18.173Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:54:18.174Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:54:19.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6517, "blockHeight": 6517, "took": "6.060996ms"} -2023-12-15T23:54:19.168Z INFO sending PrepareRequest {"height": 6518, "view": 0} -2023-12-15T23:54:19.168Z INFO sending Commit {"height": 6518, "view": 0} -2023-12-15T23:54:19.169Z INFO approving block {"height": 6518, "hash": "8645b2df6f47e3a8d8d694562bc477eb01d8cc0670e03618f81e19324af212ba", "tx_count": 2, "merkle": "6e701ac957eb1ec99a815a249525401f23423cc695fea5d79d695bb893f9bf42", "prev": "46bd37f588785f35a388e42f3cc73bd5d47405ea18c3ff5f71775519f4cf6ada"} -2023-12-15T23:54:19.171Z INFO runtime log {"tx": "312b546484f1a2ed694d1f0b8edd840e624de5da6176f900e109b6fc5696abd2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:54:19.171Z INFO runtime log {"tx": "312b546484f1a2ed694d1f0b8edd840e624de5da6176f900e109b6fc5696abd2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:54:19.173Z INFO initializing dbft {"height": 6519, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:19.174Z debug frostfs-node/morph.go:229 new block {"index": 6518} -2023-12-15T23:54:20.006Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6518, "blockHeight": 6518, "took": "7.092006ms"} -2023-12-15T23:54:20.170Z INFO sending PrepareRequest {"height": 6519, "view": 0} -2023-12-15T23:54:20.171Z INFO sending Commit {"height": 6519, "view": 0} -2023-12-15T23:54:20.171Z INFO approving block {"height": 6519, "hash": "3b7db5349cd0414134c71ab2fe013b61c6ca1e286c3ba817937b7efa4c24e1d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8645b2df6f47e3a8d8d694562bc477eb01d8cc0670e03618f81e19324af212ba"} -2023-12-15T23:54:20.173Z INFO initializing dbft {"height": 6520, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:20.174Z debug frostfs-node/morph.go:229 new block {"index": 6519} -2023-12-15T23:54:21.008Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6519, "blockHeight": 6519, "took": "7.626252ms"} -2023-12-15T23:54:21.173Z INFO sending PrepareRequest {"height": 6520, "view": 0} -2023-12-15T23:54:21.173Z INFO sending Commit {"height": 6520, "view": 0} -2023-12-15T23:54:21.174Z INFO approving block {"height": 6520, "hash": "f734cc7a3d4469e12632df028341f6d08c69056cef342c6519f88efcbc0355b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b7db5349cd0414134c71ab2fe013b61c6ca1e286c3ba817937b7efa4c24e1d8"} -2023-12-15T23:54:21.176Z INFO initializing dbft {"height": 6521, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:21.177Z debug frostfs-node/morph.go:229 new block {"index": 6520} -2023-12-15T23:54:22.010Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6520, "blockHeight": 6520, "took": "8.869648ms"} -2023-12-15T23:54:22.176Z INFO sending PrepareRequest {"height": 6521, "view": 0} -2023-12-15T23:54:22.176Z INFO sending Commit {"height": 6521, "view": 0} -2023-12-15T23:54:22.176Z INFO approving block {"height": 6521, "hash": "a973ae889e375a76563fc3cc3a99e5e844087a1a98feefb12897aea2cd0b753b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f734cc7a3d4469e12632df028341f6d08c69056cef342c6519f88efcbc0355b5"} -2023-12-15T23:54:22.178Z INFO initializing dbft {"height": 6522, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:22.179Z debug frostfs-node/morph.go:229 new block {"index": 6521} -2023-12-15T23:54:23.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6521, "blockHeight": 6521, "took": "6.861083ms"} -2023-12-15T23:54:23.178Z INFO sending PrepareRequest {"height": 6522, "view": 0} -2023-12-15T23:54:23.178Z INFO sending Commit {"height": 6522, "view": 0} -2023-12-15T23:54:23.178Z INFO approving block {"height": 6522, "hash": "77317c08834ec7fbb72d727d0391340e0a76afc85206a26b19484ddd12326255", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a973ae889e375a76563fc3cc3a99e5e844087a1a98feefb12897aea2cd0b753b"} -2023-12-15T23:54:23.180Z INFO initializing dbft {"height": 6523, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:23.181Z debug frostfs-node/morph.go:229 new block {"index": 6522} -2023-12-15T23:54:24.011Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6522, "blockHeight": 6522, "took": "7.80385ms"} -2023-12-15T23:54:24.180Z INFO sending PrepareRequest {"height": 6523, "view": 0} -2023-12-15T23:54:24.180Z INFO sending Commit {"height": 6523, "view": 0} -2023-12-15T23:54:24.181Z INFO approving block {"height": 6523, "hash": "e1b1061ae6e06ecc4bb5a22b5ce6fbf7c7326f340bc66ce2891cea241a92c5e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77317c08834ec7fbb72d727d0391340e0a76afc85206a26b19484ddd12326255"} -2023-12-15T23:54:24.183Z INFO initializing dbft {"height": 6524, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:24.184Z debug frostfs-node/morph.go:229 new block {"index": 6523} -2023-12-15T23:54:25.013Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6523, "blockHeight": 6523, "took": "8.849238ms"} -2023-12-15T23:54:25.182Z INFO sending PrepareRequest {"height": 6524, "view": 0} -2023-12-15T23:54:25.182Z INFO sending Commit {"height": 6524, "view": 0} -2023-12-15T23:54:25.183Z INFO approving block {"height": 6524, "hash": "ffb8a1807ca05668fa1ab52c10e5e1580d5144301ea3feab6c654854bf177bcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1b1061ae6e06ecc4bb5a22b5ce6fbf7c7326f340bc66ce2891cea241a92c5e1"} -2023-12-15T23:54:25.184Z INFO initializing dbft {"height": 6525, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:25.185Z debug frostfs-node/morph.go:229 new block {"index": 6524} -2023-12-15T23:54:26.015Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6524, "blockHeight": 6524, "took": "9.657701ms"} -2023-12-15T23:54:26.184Z INFO sending PrepareRequest {"height": 6525, "view": 0} -2023-12-15T23:54:26.184Z INFO sending Commit {"height": 6525, "view": 0} -2023-12-15T23:54:26.185Z INFO approving block {"height": 6525, "hash": "ae37ad2758b05256b5ba6e7e1001824429fbd4bfb90eadfbaa665f102e302997", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffb8a1807ca05668fa1ab52c10e5e1580d5144301ea3feab6c654854bf177bcc"} -2023-12-15T23:54:26.186Z INFO initializing dbft {"height": 6526, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:26.187Z debug frostfs-node/morph.go:229 new block {"index": 6525} -2023-12-15T23:54:27.015Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6525, "blockHeight": 6525, "took": "8.799625ms"} -2023-12-15T23:54:27.185Z INFO sending PrepareRequest {"height": 6526, "view": 0} -2023-12-15T23:54:27.186Z INFO sending Commit {"height": 6526, "view": 0} -2023-12-15T23:54:27.186Z INFO approving block {"height": 6526, "hash": "c5e8ec6ebdf3c57ff2df1058d2e033679fa1b56eaaddcf9aeb3e23e36058f63f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae37ad2758b05256b5ba6e7e1001824429fbd4bfb90eadfbaa665f102e302997"} -2023-12-15T23:54:27.188Z INFO initializing dbft {"height": 6527, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:27.188Z debug frostfs-node/morph.go:229 new block {"index": 6526} -2023-12-15T23:54:28.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6526, "blockHeight": 6526, "took": "7.23975ms"} -2023-12-15T23:54:28.187Z INFO sending PrepareRequest {"height": 6527, "view": 0} -2023-12-15T23:54:28.187Z INFO sending Commit {"height": 6527, "view": 0} -2023-12-15T23:54:28.188Z INFO approving block {"height": 6527, "hash": "1fb2a2a6946e65e3d9b6c4748a2d75200f81d2e7921a66b930972e12a25eb006", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5e8ec6ebdf3c57ff2df1058d2e033679fa1b56eaaddcf9aeb3e23e36058f63f"} -2023-12-15T23:54:28.189Z INFO initializing dbft {"height": 6528, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:28.190Z debug frostfs-node/morph.go:229 new block {"index": 6527} -2023-12-15T23:54:29.015Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6527, "blockHeight": 6527, "took": "7.186529ms"} -2023-12-15T23:54:29.190Z INFO sending PrepareRequest {"height": 6528, "view": 0} -2023-12-15T23:54:29.190Z INFO sending Commit {"height": 6528, "view": 0} -2023-12-15T23:54:29.190Z INFO approving block {"height": 6528, "hash": "1398cc9f0eaf738e63694d4711102d15e1f3ab26751b631b0a61f0376b51bac4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1fb2a2a6946e65e3d9b6c4748a2d75200f81d2e7921a66b930972e12a25eb006"} -2023-12-15T23:54:29.192Z INFO initializing dbft {"height": 6529, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:29.193Z debug frostfs-node/morph.go:229 new block {"index": 6528} -2023-12-15T23:54:30.016Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6528, "blockHeight": 6528, "took": "7.171659ms"} -2023-12-15T23:54:30.192Z INFO sending PrepareRequest {"height": 6529, "view": 0} -2023-12-15T23:54:30.192Z INFO sending Commit {"height": 6529, "view": 0} -2023-12-15T23:54:30.192Z INFO approving block {"height": 6529, "hash": "b8734591833500d7af56696eedfa75ccb9d1545d1b801d55b542facc58c90527", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1398cc9f0eaf738e63694d4711102d15e1f3ab26751b631b0a61f0376b51bac4"} -2023-12-15T23:54:30.194Z INFO initializing dbft {"height": 6530, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:30.194Z debug frostfs-node/morph.go:229 new block {"index": 6529} -2023-12-15T23:54:31.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6529, "blockHeight": 6529, "took": "8.593991ms"} -2023-12-15T23:54:31.194Z INFO sending PrepareRequest {"height": 6530, "view": 0} -2023-12-15T23:54:31.194Z INFO sending Commit {"height": 6530, "view": 0} -2023-12-15T23:54:31.195Z INFO approving block {"height": 6530, "hash": "087e95e13dbbd665949e0bf19d6f55483795787928c23fa06a5d64d1993e386c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8734591833500d7af56696eedfa75ccb9d1545d1b801d55b542facc58c90527"} -2023-12-15T23:54:31.197Z INFO initializing dbft {"height": 6531, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:31.197Z debug frostfs-node/morph.go:229 new block {"index": 6530} -2023-12-15T23:54:32.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6530, "blockHeight": 6530, "took": "7.387205ms"} -2023-12-15T23:54:32.196Z INFO sending PrepareRequest {"height": 6531, "view": 0} -2023-12-15T23:54:32.196Z INFO sending Commit {"height": 6531, "view": 0} -2023-12-15T23:54:32.197Z INFO approving block {"height": 6531, "hash": "6000d2ad8708588a14e30f497d02e332e67b9f5712c5b9bf002ec1ba9e1fb5c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "087e95e13dbbd665949e0bf19d6f55483795787928c23fa06a5d64d1993e386c"} -2023-12-15T23:54:32.199Z INFO initializing dbft {"height": 6532, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:32.199Z debug frostfs-node/morph.go:229 new block {"index": 6531} -2023-12-15T23:54:33.019Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6531, "blockHeight": 6531, "took": "7.362545ms"} -2023-12-15T23:54:33.198Z INFO sending PrepareRequest {"height": 6532, "view": 0} -2023-12-15T23:54:33.198Z INFO sending Commit {"height": 6532, "view": 0} -2023-12-15T23:54:33.199Z INFO approving block {"height": 6532, "hash": "375547cf88374ed23b897389d6189476cb605b951f75f0392602f8c5c33c32d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6000d2ad8708588a14e30f497d02e332e67b9f5712c5b9bf002ec1ba9e1fb5c3"} -2023-12-15T23:54:33.200Z INFO initializing dbft {"height": 6533, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:33.201Z debug frostfs-node/morph.go:229 new block {"index": 6532} -2023-12-15T23:54:34.020Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6532, "blockHeight": 6532, "took": "7.673349ms"} -2023-12-15T23:54:34.200Z INFO sending PrepareRequest {"height": 6533, "view": 0} -2023-12-15T23:54:34.200Z INFO sending Commit {"height": 6533, "view": 0} -2023-12-15T23:54:34.201Z INFO approving block {"height": 6533, "hash": "cffe8f15f3b140acd6dee8b910b942583590a5ced1facced1eff10cac64b9b6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "375547cf88374ed23b897389d6189476cb605b951f75f0392602f8c5c33c32d7"} -2023-12-15T23:54:34.203Z INFO initializing dbft {"height": 6534, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:34.204Z debug frostfs-node/morph.go:229 new block {"index": 6533} -2023-12-15T23:54:35.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6533, "blockHeight": 6533, "took": "8.471327ms"} -2023-12-15T23:54:35.203Z INFO sending PrepareRequest {"height": 6534, "view": 0} -2023-12-15T23:54:35.203Z INFO sending Commit {"height": 6534, "view": 0} -2023-12-15T23:54:35.203Z INFO approving block {"height": 6534, "hash": "a6327226fa439e531fa49cb0da5269977a1afc4b732b0207ae3f61e415c96e8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cffe8f15f3b140acd6dee8b910b942583590a5ced1facced1eff10cac64b9b6c"} -2023-12-15T23:54:35.205Z INFO initializing dbft {"height": 6535, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:35.206Z debug frostfs-node/morph.go:229 new block {"index": 6534} -2023-12-15T23:54:36.022Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6534, "blockHeight": 6534, "took": "7.072646ms"} -2023-12-15T23:54:36.204Z INFO sending PrepareRequest {"height": 6535, "view": 0} -2023-12-15T23:54:36.205Z INFO sending Commit {"height": 6535, "view": 0} -2023-12-15T23:54:36.205Z INFO approving block {"height": 6535, "hash": "0a0c777e1699ae771d75314293d96468ebcde22f7d68feb87e695aa728764023", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6327226fa439e531fa49cb0da5269977a1afc4b732b0207ae3f61e415c96e8b"} -2023-12-15T23:54:36.207Z INFO initializing dbft {"height": 6536, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:36.207Z debug frostfs-node/morph.go:229 new block {"index": 6535} -2023-12-15T23:54:37.024Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6535, "blockHeight": 6535, "took": "8.014434ms"} -2023-12-15T23:54:37.207Z INFO sending PrepareRequest {"height": 6536, "view": 0} -2023-12-15T23:54:37.207Z INFO sending Commit {"height": 6536, "view": 0} -2023-12-15T23:54:37.207Z INFO approving block {"height": 6536, "hash": "dde83ee0549dbb2d64c54801de908c819de053793f02cfbe58f735466893be28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a0c777e1699ae771d75314293d96468ebcde22f7d68feb87e695aa728764023"} -2023-12-15T23:54:37.209Z INFO initializing dbft {"height": 6537, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:37.210Z debug frostfs-node/morph.go:229 new block {"index": 6536} -2023-12-15T23:54:38.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6536, "blockHeight": 6536, "took": "8.737048ms"} -2023-12-15T23:54:38.209Z INFO sending PrepareRequest {"height": 6537, "view": 0} -2023-12-15T23:54:38.210Z INFO sending Commit {"height": 6537, "view": 0} -2023-12-15T23:54:38.210Z INFO approving block {"height": 6537, "hash": "912a5e2d94fd07fcb2fa05a8e840f5e9718e649eb57ecf5f8564231362c0f2db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dde83ee0549dbb2d64c54801de908c819de053793f02cfbe58f735466893be28"} -2023-12-15T23:54:38.212Z INFO initializing dbft {"height": 6538, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:38.213Z debug frostfs-node/morph.go:229 new block {"index": 6537} -2023-12-15T23:54:39.028Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6537, "blockHeight": 6537, "took": "10.3252ms"} -2023-12-15T23:54:39.211Z INFO sending PrepareRequest {"height": 6538, "view": 0} -2023-12-15T23:54:39.211Z INFO sending Commit {"height": 6538, "view": 0} -2023-12-15T23:54:39.212Z INFO approving block {"height": 6538, "hash": "ac1aa77f9ac09234b396ac7714f81ab6cc12ce28f3114479493baee9253109df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "912a5e2d94fd07fcb2fa05a8e840f5e9718e649eb57ecf5f8564231362c0f2db"} -2023-12-15T23:54:39.214Z INFO initializing dbft {"height": 6539, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:39.214Z debug frostfs-node/morph.go:229 new block {"index": 6538} -2023-12-15T23:54:40.035Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6538, "blockHeight": 6538, "took": "5.45743ms"} -2023-12-15T23:54:40.213Z INFO sending PrepareRequest {"height": 6539, "view": 0} -2023-12-15T23:54:40.213Z INFO sending Commit {"height": 6539, "view": 0} -2023-12-15T23:54:40.214Z INFO approving block {"height": 6539, "hash": "6517d2b957d8e40c28f0dcf854321f3315461325a9d8914f1240686b57a6789c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac1aa77f9ac09234b396ac7714f81ab6cc12ce28f3114479493baee9253109df"} -2023-12-15T23:54:40.215Z INFO initializing dbft {"height": 6540, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:40.216Z debug frostfs-node/morph.go:229 new block {"index": 6539} -2023-12-15T23:54:41.037Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6539, "blockHeight": 6539, "took": "6.739726ms"} -2023-12-15T23:54:41.215Z INFO sending PrepareRequest {"height": 6540, "view": 0} -2023-12-15T23:54:41.215Z INFO sending Commit {"height": 6540, "view": 0} -2023-12-15T23:54:41.216Z INFO approving block {"height": 6540, "hash": "03e9f87915d79333635e2a25162d0a52889557ff0ae8dcaa707eff930d32dcaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6517d2b957d8e40c28f0dcf854321f3315461325a9d8914f1240686b57a6789c"} -2023-12-15T23:54:41.217Z INFO initializing dbft {"height": 6541, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:41.218Z debug frostfs-node/morph.go:229 new block {"index": 6540} -2023-12-15T23:54:42.038Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6540, "blockHeight": 6540, "took": "6.663514ms"} -2023-12-15T23:54:42.217Z INFO sending PrepareRequest {"height": 6541, "view": 0} -2023-12-15T23:54:42.217Z INFO sending Commit {"height": 6541, "view": 0} -2023-12-15T23:54:42.218Z INFO approving block {"height": 6541, "hash": "cc110b1cadc3d1dac84fce937149be050cbf05f1cb6af55d1fcec97905eed619", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03e9f87915d79333635e2a25162d0a52889557ff0ae8dcaa707eff930d32dcaa"} -2023-12-15T23:54:42.219Z INFO initializing dbft {"height": 6542, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:42.220Z debug frostfs-node/morph.go:229 new block {"index": 6541} -2023-12-15T23:54:43.039Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6541, "blockHeight": 6541, "took": "6.603809ms"} -2023-12-15T23:54:43.220Z INFO sending PrepareRequest {"height": 6542, "view": 0} -2023-12-15T23:54:43.220Z INFO sending Commit {"height": 6542, "view": 0} -2023-12-15T23:54:43.220Z INFO approving block {"height": 6542, "hash": "f7c65138ec16c6abc7a8100500a1307385eac82900310fa36c7cc8f3b28b2f95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc110b1cadc3d1dac84fce937149be050cbf05f1cb6af55d1fcec97905eed619"} -2023-12-15T23:54:43.222Z INFO initializing dbft {"height": 6543, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:43.223Z debug frostfs-node/morph.go:229 new block {"index": 6542} -2023-12-15T23:54:44.039Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6542, "blockHeight": 6542, "took": "5.712237ms"} -2023-12-15T23:54:44.221Z INFO sending PrepareRequest {"height": 6543, "view": 0} -2023-12-15T23:54:44.222Z INFO sending Commit {"height": 6543, "view": 0} -2023-12-15T23:54:44.222Z INFO approving block {"height": 6543, "hash": "25c0f8d2f19953caecefe5fa83a73b6d3001905f47a0a9db8077971cae0a8400", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7c65138ec16c6abc7a8100500a1307385eac82900310fa36c7cc8f3b28b2f95"} -2023-12-15T23:54:44.224Z INFO initializing dbft {"height": 6544, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:44.225Z debug frostfs-node/morph.go:229 new block {"index": 6543} -2023-12-15T23:54:45.042Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6543, "blockHeight": 6543, "took": "7.866649ms"} -2023-12-15T23:54:45.224Z INFO sending PrepareRequest {"height": 6544, "view": 0} -2023-12-15T23:54:45.225Z INFO sending Commit {"height": 6544, "view": 0} -2023-12-15T23:54:45.225Z INFO approving block {"height": 6544, "hash": "72f113affccceac697f019807d2b748f412620f116555df8ce93b31fdea40748", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25c0f8d2f19953caecefe5fa83a73b6d3001905f47a0a9db8077971cae0a8400"} -2023-12-15T23:54:45.228Z INFO initializing dbft {"height": 6545, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:45.229Z debug frostfs-node/morph.go:229 new block {"index": 6544} -2023-12-15T23:54:46.043Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6544, "blockHeight": 6544, "took": "8.251201ms"} -2023-12-15T23:54:46.227Z INFO sending PrepareRequest {"height": 6545, "view": 0} -2023-12-15T23:54:46.227Z INFO sending Commit {"height": 6545, "view": 0} -2023-12-15T23:54:46.228Z INFO approving block {"height": 6545, "hash": "75fd55aca7725afa4fb1f2e8a825af5fd9c064c99bb4d9eca1d43e39af6972f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72f113affccceac697f019807d2b748f412620f116555df8ce93b31fdea40748"} -2023-12-15T23:54:46.230Z INFO initializing dbft {"height": 6546, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:46.230Z debug frostfs-node/morph.go:229 new block {"index": 6545} -2023-12-15T23:54:47.043Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6545, "blockHeight": 6545, "took": "7.073163ms"} -2023-12-15T23:54:47.229Z INFO sending PrepareRequest {"height": 6546, "view": 0} -2023-12-15T23:54:47.229Z INFO sending Commit {"height": 6546, "view": 0} -2023-12-15T23:54:47.229Z INFO approving block {"height": 6546, "hash": "86ccaf337362beac898aedae2a9800774c542bb8bcbb0b3ffa2040f3c0164641", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75fd55aca7725afa4fb1f2e8a825af5fd9c064c99bb4d9eca1d43e39af6972f3"} -2023-12-15T23:54:47.231Z INFO initializing dbft {"height": 6547, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:47.231Z debug frostfs-node/morph.go:229 new block {"index": 6546} -2023-12-15T23:54:48.043Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6546, "blockHeight": 6546, "took": "5.886279ms"} -2023-12-15T23:54:48.231Z INFO sending PrepareRequest {"height": 6547, "view": 0} -2023-12-15T23:54:48.231Z INFO sending Commit {"height": 6547, "view": 0} -2023-12-15T23:54:48.232Z INFO approving block {"height": 6547, "hash": "f193cfa137510c65b0ba683018ce9c1a810a6114f21db7a4d067b45c3a2541f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86ccaf337362beac898aedae2a9800774c542bb8bcbb0b3ffa2040f3c0164641"} -2023-12-15T23:54:48.233Z INFO initializing dbft {"height": 6548, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:48.234Z debug frostfs-node/morph.go:229 new block {"index": 6547} -2023-12-15T23:54:49.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6547, "blockHeight": 6547, "took": "7.084356ms"} -2023-12-15T23:54:49.234Z INFO sending PrepareRequest {"height": 6548, "view": 0} -2023-12-15T23:54:49.234Z INFO sending Commit {"height": 6548, "view": 0} -2023-12-15T23:54:49.235Z INFO approving block {"height": 6548, "hash": "89e6322869c1623b5faaea675ac2a58017da3c3048519c5adfe3285476aaaa06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f193cfa137510c65b0ba683018ce9c1a810a6114f21db7a4d067b45c3a2541f8"} -2023-12-15T23:54:49.236Z INFO initializing dbft {"height": 6549, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:49.237Z debug frostfs-node/morph.go:229 new block {"index": 6548} -2023-12-15T23:54:50.050Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6548, "blockHeight": 6548, "took": "11.412182ms"} -2023-12-15T23:54:50.236Z INFO sending PrepareRequest {"height": 6549, "view": 0} -2023-12-15T23:54:50.236Z INFO sending Commit {"height": 6549, "view": 0} -2023-12-15T23:54:50.237Z INFO approving block {"height": 6549, "hash": "2d06937baf6cbde487ddde818d45f51ab495ce410cb9c4f71945d6902d05eba8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89e6322869c1623b5faaea675ac2a58017da3c3048519c5adfe3285476aaaa06"} -2023-12-15T23:54:50.239Z INFO initializing dbft {"height": 6550, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:50.240Z debug frostfs-node/morph.go:229 new block {"index": 6549} -2023-12-15T23:54:51.046Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6549, "blockHeight": 6549, "took": "6.311879ms"} -2023-12-15T23:54:51.238Z INFO sending PrepareRequest {"height": 6550, "view": 0} -2023-12-15T23:54:51.238Z INFO sending Commit {"height": 6550, "view": 0} -2023-12-15T23:54:51.238Z INFO approving block {"height": 6550, "hash": "2c85bdced48b67577942411c88064b48ba993cf48901b50729f7da7719499952", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d06937baf6cbde487ddde818d45f51ab495ce410cb9c4f71945d6902d05eba8"} -2023-12-15T23:54:51.240Z INFO initializing dbft {"height": 6551, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:51.241Z debug frostfs-node/morph.go:229 new block {"index": 6550} -2023-12-15T23:54:52.049Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6550, "blockHeight": 6550, "took": "8.420771ms"} -2023-12-15T23:54:52.239Z INFO sending PrepareRequest {"height": 6551, "view": 0} -2023-12-15T23:54:52.239Z INFO sending Commit {"height": 6551, "view": 0} -2023-12-15T23:54:52.240Z INFO approving block {"height": 6551, "hash": "c78641c4e3414b9ada8dcd904194c53faae57538b0a4c9a5cbf2bd0b1a603df9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c85bdced48b67577942411c88064b48ba993cf48901b50729f7da7719499952"} -2023-12-15T23:54:52.241Z INFO initializing dbft {"height": 6552, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:52.242Z debug frostfs-node/morph.go:229 new block {"index": 6551} -2023-12-15T23:54:53.049Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6551, "blockHeight": 6551, "took": "7.581352ms"} -2023-12-15T23:54:53.241Z INFO sending PrepareRequest {"height": 6552, "view": 0} -2023-12-15T23:54:53.242Z INFO sending Commit {"height": 6552, "view": 0} -2023-12-15T23:54:53.242Z INFO approving block {"height": 6552, "hash": "580fc105dafc9bf50916781eccfed9d113bb51c9793534935fcb0f4f0d6f00fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c78641c4e3414b9ada8dcd904194c53faae57538b0a4c9a5cbf2bd0b1a603df9"} -2023-12-15T23:54:53.244Z INFO initializing dbft {"height": 6553, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:53.244Z debug frostfs-node/morph.go:229 new block {"index": 6552} -2023-12-15T23:54:54.050Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6552, "blockHeight": 6552, "took": "8.216303ms"} -2023-12-15T23:54:54.243Z INFO sending PrepareRequest {"height": 6553, "view": 0} -2023-12-15T23:54:54.244Z INFO sending Commit {"height": 6553, "view": 0} -2023-12-15T23:54:54.244Z INFO approving block {"height": 6553, "hash": "512c489a664a4640dd3d0b17efce9392dce105830942e2a67e470453394730d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "580fc105dafc9bf50916781eccfed9d113bb51c9793534935fcb0f4f0d6f00fb"} -2023-12-15T23:54:54.246Z INFO initializing dbft {"height": 6554, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:54.247Z debug frostfs-node/morph.go:229 new block {"index": 6553} -2023-12-15T23:54:55.053Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6553, "blockHeight": 6553, "took": "9.841997ms"} -2023-12-15T23:54:55.246Z INFO sending PrepareRequest {"height": 6554, "view": 0} -2023-12-15T23:54:55.246Z INFO sending Commit {"height": 6554, "view": 0} -2023-12-15T23:54:55.246Z INFO approving block {"height": 6554, "hash": "b3f580e9d4aea1248698647eaad79e81e8032e94cb058f171a5f719ce658600a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "512c489a664a4640dd3d0b17efce9392dce105830942e2a67e470453394730d0"} -2023-12-15T23:54:55.248Z INFO initializing dbft {"height": 6555, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:55.248Z debug frostfs-node/morph.go:229 new block {"index": 6554} -2023-12-15T23:54:56.056Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6554, "blockHeight": 6554, "took": "11.871377ms"} -2023-12-15T23:54:56.248Z INFO sending PrepareRequest {"height": 6555, "view": 0} -2023-12-15T23:54:56.248Z INFO sending Commit {"height": 6555, "view": 0} -2023-12-15T23:54:56.248Z INFO approving block {"height": 6555, "hash": "04538c9de4f25ce6cbc2ec0463e23b31eee485dd66f596ece9c7833873d50631", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3f580e9d4aea1248698647eaad79e81e8032e94cb058f171a5f719ce658600a"} -2023-12-15T23:54:56.250Z INFO initializing dbft {"height": 6556, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:56.251Z debug frostfs-node/morph.go:229 new block {"index": 6555} -2023-12-15T23:54:57.056Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6555, "blockHeight": 6555, "took": "11.089423ms"} -2023-12-15T23:54:57.249Z INFO sending PrepareRequest {"height": 6556, "view": 0} -2023-12-15T23:54:57.249Z INFO sending Commit {"height": 6556, "view": 0} -2023-12-15T23:54:57.250Z INFO approving block {"height": 6556, "hash": "bdff5694e078767ad118ed12c32844fe2aa1f5bc1609d27a09514200cda7dd20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04538c9de4f25ce6cbc2ec0463e23b31eee485dd66f596ece9c7833873d50631"} -2023-12-15T23:54:57.251Z INFO initializing dbft {"height": 6557, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:57.252Z debug frostfs-node/morph.go:229 new block {"index": 6556} -2023-12-15T23:54:58.054Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6556, "blockHeight": 6556, "took": "8.040174ms"} -2023-12-15T23:54:58.251Z INFO sending PrepareRequest {"height": 6557, "view": 0} -2023-12-15T23:54:58.252Z INFO sending Commit {"height": 6557, "view": 0} -2023-12-15T23:54:58.252Z INFO approving block {"height": 6557, "hash": "da4d6bb2b1076de2fea57048ba2dbf5a557b41918a9161ccdc56d37b43cb8ec6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdff5694e078767ad118ed12c32844fe2aa1f5bc1609d27a09514200cda7dd20"} -2023-12-15T23:54:58.253Z INFO initializing dbft {"height": 6558, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:58.255Z debug frostfs-node/morph.go:229 new block {"index": 6557} -2023-12-15T23:54:59.055Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6557, "blockHeight": 6557, "took": "9.28029ms"} -2023-12-15T23:54:59.253Z INFO sending PrepareRequest {"height": 6558, "view": 0} -2023-12-15T23:54:59.254Z INFO sending Commit {"height": 6558, "view": 0} -2023-12-15T23:54:59.254Z INFO approving block {"height": 6558, "hash": "b1f95622c10dc57feb5459ada1a73cc9e06957073f6f4544018ae8fc466272fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da4d6bb2b1076de2fea57048ba2dbf5a557b41918a9161ccdc56d37b43cb8ec6"} -2023-12-15T23:54:59.256Z INFO initializing dbft {"height": 6559, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:54:59.257Z debug frostfs-node/morph.go:229 new block {"index": 6558} -2023-12-15T23:55:00.055Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6558, "blockHeight": 6558, "took": "8.24318ms"} -2023-12-15T23:55:00.255Z INFO sending PrepareRequest {"height": 6559, "view": 0} -2023-12-15T23:55:00.256Z INFO sending Commit {"height": 6559, "view": 0} -2023-12-15T23:55:00.256Z INFO approving block {"height": 6559, "hash": "f03762f7a7e1927fad30f0122b33b441b13c54d32216f5b9a41d4b8698101ce4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1f95622c10dc57feb5459ada1a73cc9e06957073f6f4544018ae8fc466272fa"} -2023-12-15T23:55:00.257Z INFO initializing dbft {"height": 6560, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:00.258Z debug frostfs-node/morph.go:229 new block {"index": 6559} -2023-12-15T23:55:01.056Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6559, "blockHeight": 6559, "took": "8.099298ms"} -2023-12-15T23:55:01.257Z INFO sending PrepareRequest {"height": 6560, "view": 0} -2023-12-15T23:55:01.257Z INFO sending Commit {"height": 6560, "view": 0} -2023-12-15T23:55:01.257Z INFO approving block {"height": 6560, "hash": "2ad00ce98ffb669c741f97e4935111914e24a9a72423e894f227c35486248511", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f03762f7a7e1927fad30f0122b33b441b13c54d32216f5b9a41d4b8698101ce4"} -2023-12-15T23:55:01.259Z INFO initializing dbft {"height": 6561, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:01.260Z debug frostfs-node/morph.go:229 new block {"index": 6560} -2023-12-15T23:55:02.057Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6560, "blockHeight": 6560, "took": "7.766776ms"} -2023-12-15T23:55:02.259Z INFO sending PrepareRequest {"height": 6561, "view": 0} -2023-12-15T23:55:02.259Z INFO sending Commit {"height": 6561, "view": 0} -2023-12-15T23:55:02.260Z INFO approving block {"height": 6561, "hash": "dbce5710547a3b16a50b0ace651436bf2f292a046d288bf17aaacbdecc2ab016", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ad00ce98ffb669c741f97e4935111914e24a9a72423e894f227c35486248511"} -2023-12-15T23:55:02.261Z INFO initializing dbft {"height": 6562, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:02.262Z debug frostfs-node/morph.go:229 new block {"index": 6561} -2023-12-15T23:55:03.057Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6561, "blockHeight": 6561, "took": "7.539835ms"} -2023-12-15T23:55:03.261Z INFO sending PrepareRequest {"height": 6562, "view": 0} -2023-12-15T23:55:03.261Z INFO sending Commit {"height": 6562, "view": 0} -2023-12-15T23:55:03.262Z INFO approving block {"height": 6562, "hash": "a6ba84e89465d142d1f1e1571e922cffb9de7fa68467ad0de201b14dd5642f19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbce5710547a3b16a50b0ace651436bf2f292a046d288bf17aaacbdecc2ab016"} -2023-12-15T23:55:03.264Z INFO initializing dbft {"height": 6563, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:03.265Z debug frostfs-node/morph.go:229 new block {"index": 6562} -2023-12-15T23:55:04.059Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6562, "blockHeight": 6562, "took": "8.599333ms"} -2023-12-15T23:55:04.264Z INFO sending PrepareRequest {"height": 6563, "view": 0} -2023-12-15T23:55:04.264Z INFO sending Commit {"height": 6563, "view": 0} -2023-12-15T23:55:04.264Z INFO approving block {"height": 6563, "hash": "f127ab5d8a751b76aabfbf7c2358bec73b3a15aee3b071a4a0b3e4b638ac659e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6ba84e89465d142d1f1e1571e922cffb9de7fa68467ad0de201b14dd5642f19"} -2023-12-15T23:55:04.265Z INFO initializing dbft {"height": 6564, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:04.266Z debug frostfs-node/morph.go:229 new block {"index": 6563} -2023-12-15T23:55:05.058Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6563, "blockHeight": 6563, "took": "7.044809ms"} -2023-12-15T23:55:05.266Z INFO sending PrepareRequest {"height": 6564, "view": 0} -2023-12-15T23:55:05.266Z INFO sending Commit {"height": 6564, "view": 0} -2023-12-15T23:55:05.267Z INFO approving block {"height": 6564, "hash": "7febd5283dd4151b81a66d3d95801ea825001f3cd52f7820105884a40b01e747", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f127ab5d8a751b76aabfbf7c2358bec73b3a15aee3b071a4a0b3e4b638ac659e"} -2023-12-15T23:55:05.268Z INFO initializing dbft {"height": 6565, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:05.270Z debug frostfs-node/morph.go:229 new block {"index": 6564} -2023-12-15T23:55:06.059Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6564, "blockHeight": 6564, "took": "7.169018ms"} -2023-12-15T23:55:06.268Z INFO sending PrepareRequest {"height": 6565, "view": 0} -2023-12-15T23:55:06.268Z INFO sending Commit {"height": 6565, "view": 0} -2023-12-15T23:55:06.269Z INFO approving block {"height": 6565, "hash": "8e39847d02fd700edc3c8e01c39b05d6c11c874e5ac9545314c321fd0b2696b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7febd5283dd4151b81a66d3d95801ea825001f3cd52f7820105884a40b01e747"} -2023-12-15T23:55:06.270Z INFO initializing dbft {"height": 6566, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:06.271Z debug frostfs-node/morph.go:229 new block {"index": 6565} -2023-12-15T23:55:07.061Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6565, "blockHeight": 6565, "took": "8.428753ms"} -2023-12-15T23:55:07.269Z INFO sending PrepareRequest {"height": 6566, "view": 0} -2023-12-15T23:55:07.269Z INFO sending Commit {"height": 6566, "view": 0} -2023-12-15T23:55:07.270Z INFO approving block {"height": 6566, "hash": "a76b807408e5c3b27d21abae4ddc8f7a47f32bd272d0ffbc0b8ede93167b850c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e39847d02fd700edc3c8e01c39b05d6c11c874e5ac9545314c321fd0b2696b3"} -2023-12-15T23:55:07.271Z INFO initializing dbft {"height": 6567, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:07.271Z debug frostfs-node/morph.go:229 new block {"index": 6566} -2023-12-15T23:55:08.065Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6566, "blockHeight": 6566, "took": "11.829422ms"} -2023-12-15T23:55:08.271Z INFO sending PrepareRequest {"height": 6567, "view": 0} -2023-12-15T23:55:08.271Z INFO sending Commit {"height": 6567, "view": 0} -2023-12-15T23:55:08.272Z INFO approving block {"height": 6567, "hash": "4bbcdc347d29a84ef6008d70c5bd8168331c0429ea010b9b3cde3fe2980f4dd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a76b807408e5c3b27d21abae4ddc8f7a47f32bd272d0ffbc0b8ede93167b850c"} -2023-12-15T23:55:08.273Z INFO initializing dbft {"height": 6568, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:08.274Z debug frostfs-node/morph.go:229 new block {"index": 6567} -2023-12-15T23:55:08.281Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 28 epoch for daughters"} -2023-12-15T23:55:08.285Z INFO runtime log {"tx": "67be3b3136e701d03413186ad620ec1ba7178b2051eef06f889d4133380cf6ea", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:55:08.302Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:55:08.303Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:55:08.303Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:55:09.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6567, "blockHeight": 6567, "took": "8.643733ms"} -2023-12-15T23:55:09.274Z INFO sending PrepareRequest {"height": 6568, "view": 0} -2023-12-15T23:55:09.274Z INFO sending Commit {"height": 6568, "view": 0} -2023-12-15T23:55:09.275Z INFO approving block {"height": 6568, "hash": "d2413ad2c23f0c6fc5e1c0a932705cc1b015f3746abe42500c28fd00aa408e50", "tx_count": 3, "merkle": "b7a348d06c776e573d2048b7a5379ad1ac91113c31780c9d58a41daded9db2f5", "prev": "4bbcdc347d29a84ef6008d70c5bd8168331c0429ea010b9b3cde3fe2980f4dd5"} -2023-12-15T23:55:09.277Z INFO runtime log {"tx": "5811c191cb78e8ba34e2e050d8f9a93f563c76b490106ba24396b5368ebb2bb8", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:55:09.278Z INFO runtime log {"tx": "b9358aedf802c607732a96bb159ba8c935de1110758be7599d7888d5ddd31cb6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:55:09.278Z INFO runtime log {"tx": "b9358aedf802c607732a96bb159ba8c935de1110758be7599d7888d5ddd31cb6", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:55:09.282Z INFO initializing dbft {"height": 6569, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:09.283Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 28} -2023-12-15T23:55:09.283Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 28} -2023-12-15T23:55:09.284Z debug frostfs-node/morph.go:229 new block {"index": 6568} -2023-12-15T23:55:10.068Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 6568, "blockHeight": 6568, "took": "13.00724ms"} -2023-12-15T23:55:10.276Z INFO sending PrepareRequest {"height": 6569, "view": 0} -2023-12-15T23:55:10.277Z INFO sending Commit {"height": 6569, "view": 0} -2023-12-15T23:55:10.277Z INFO approving block {"height": 6569, "hash": "f8e0f5932b0599e92a4f712c6a15f50c3a5791266e440b9a6d7e27cd0fb36f04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2413ad2c23f0c6fc5e1c0a932705cc1b015f3746abe42500c28fd00aa408e50"} -2023-12-15T23:55:10.278Z INFO initializing dbft {"height": 6570, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:10.279Z debug frostfs-node/morph.go:229 new block {"index": 6569} -2023-12-15T23:55:11.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6569, "blockHeight": 6569, "took": "7.179879ms"} -2023-12-15T23:55:11.278Z INFO sending PrepareRequest {"height": 6570, "view": 0} -2023-12-15T23:55:11.279Z INFO sending Commit {"height": 6570, "view": 0} -2023-12-15T23:55:11.279Z INFO approving block {"height": 6570, "hash": "b2d190e0cdf28c580343443ff25dbfca60b26d694e474333fc3a698d1615675b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8e0f5932b0599e92a4f712c6a15f50c3a5791266e440b9a6d7e27cd0fb36f04"} -2023-12-15T23:55:11.281Z INFO initializing dbft {"height": 6571, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:11.282Z debug frostfs-node/morph.go:229 new block {"index": 6570} -2023-12-15T23:55:12.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6570, "blockHeight": 6570, "took": "9.494597ms"} -2023-12-15T23:55:12.280Z INFO sending PrepareRequest {"height": 6571, "view": 0} -2023-12-15T23:55:12.281Z INFO sending Commit {"height": 6571, "view": 0} -2023-12-15T23:55:12.281Z INFO approving block {"height": 6571, "hash": "50eb0a9bd547b6454bdccde9f664ba4035301995d2560d8d05d371fbadf313c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2d190e0cdf28c580343443ff25dbfca60b26d694e474333fc3a698d1615675b"} -2023-12-15T23:55:12.284Z INFO initializing dbft {"height": 6572, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:12.284Z debug frostfs-node/morph.go:229 new block {"index": 6571} -2023-12-15T23:55:13.067Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6571, "blockHeight": 6571, "took": "8.967598ms"} -2023-12-15T23:55:13.283Z INFO sending PrepareRequest {"height": 6572, "view": 0} -2023-12-15T23:55:13.283Z INFO sending Commit {"height": 6572, "view": 0} -2023-12-15T23:55:13.284Z INFO approving block {"height": 6572, "hash": "835b9b414657842a540129b635d09ce3f3c180ec75272ef3ccda305b27933989", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50eb0a9bd547b6454bdccde9f664ba4035301995d2560d8d05d371fbadf313c4"} -2023-12-15T23:55:13.286Z INFO initializing dbft {"height": 6573, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:13.287Z debug frostfs-node/morph.go:229 new block {"index": 6572} -2023-12-15T23:55:14.067Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6572, "blockHeight": 6572, "took": "7.845829ms"} -2023-12-15T23:55:14.285Z INFO sending PrepareRequest {"height": 6573, "view": 0} -2023-12-15T23:55:14.285Z INFO sending Commit {"height": 6573, "view": 0} -2023-12-15T23:55:14.286Z INFO approving block {"height": 6573, "hash": "b25ee9938d50ccea46c80b57761dc2c0be24a54c8d18dec1e5348cb55abe6133", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "835b9b414657842a540129b635d09ce3f3c180ec75272ef3ccda305b27933989"} -2023-12-15T23:55:14.288Z INFO initializing dbft {"height": 6574, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:14.288Z debug frostfs-node/morph.go:229 new block {"index": 6573} -2023-12-15T23:55:15.067Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6573, "blockHeight": 6573, "took": "6.869266ms"} -2023-12-15T23:55:15.287Z INFO sending PrepareRequest {"height": 6574, "view": 0} -2023-12-15T23:55:15.287Z INFO sending Commit {"height": 6574, "view": 0} -2023-12-15T23:55:15.287Z INFO approving block {"height": 6574, "hash": "d1a70377f761c627c936eb8c0d2914f0533da2b6a56dd64239ccad2d1426cb08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b25ee9938d50ccea46c80b57761dc2c0be24a54c8d18dec1e5348cb55abe6133"} -2023-12-15T23:55:15.288Z INFO initializing dbft {"height": 6575, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:15.289Z debug frostfs-node/morph.go:229 new block {"index": 6574} -2023-12-15T23:55:16.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6574, "blockHeight": 6574, "took": "5.82874ms"} -2023-12-15T23:55:16.289Z INFO sending PrepareRequest {"height": 6575, "view": 0} -2023-12-15T23:55:16.289Z INFO sending Commit {"height": 6575, "view": 0} -2023-12-15T23:55:16.290Z INFO approving block {"height": 6575, "hash": "b42b27b060368203a4160f8b1c1254e591dc2521ad46ab175a67cd7e4a65517e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1a70377f761c627c936eb8c0d2914f0533da2b6a56dd64239ccad2d1426cb08"} -2023-12-15T23:55:16.291Z INFO initializing dbft {"height": 6576, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:16.292Z debug frostfs-node/morph.go:229 new block {"index": 6575} -2023-12-15T23:55:17.068Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6575, "blockHeight": 6575, "took": "7.19757ms"} -2023-12-15T23:55:17.290Z INFO sending PrepareRequest {"height": 6576, "view": 0} -2023-12-15T23:55:17.291Z INFO sending Commit {"height": 6576, "view": 0} -2023-12-15T23:55:17.291Z INFO approving block {"height": 6576, "hash": "2592727c4ac021928273568ef49bef33ce6c98a22b16b3bb40c6835cf4c845c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b42b27b060368203a4160f8b1c1254e591dc2521ad46ab175a67cd7e4a65517e"} -2023-12-15T23:55:17.293Z INFO initializing dbft {"height": 6577, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:17.293Z debug frostfs-node/morph.go:229 new block {"index": 6576} -2023-12-15T23:55:18.070Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6576, "blockHeight": 6576, "took": "7.485376ms"} -2023-12-15T23:55:18.292Z INFO sending PrepareRequest {"height": 6577, "view": 0} -2023-12-15T23:55:18.292Z INFO sending Commit {"height": 6577, "view": 0} -2023-12-15T23:55:18.293Z INFO approving block {"height": 6577, "hash": "8b45e94e077ad3ebd628c35b2910e266c7ae83bfcc4a78633751122e7d6d3704", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2592727c4ac021928273568ef49bef33ce6c98a22b16b3bb40c6835cf4c845c2"} -2023-12-15T23:55:18.294Z INFO initializing dbft {"height": 6578, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:18.295Z debug frostfs-node/morph.go:229 new block {"index": 6577} -2023-12-15T23:55:19.070Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6577, "blockHeight": 6577, "took": "6.903551ms"} -2023-12-15T23:55:19.294Z INFO sending PrepareRequest {"height": 6578, "view": 0} -2023-12-15T23:55:19.294Z INFO sending Commit {"height": 6578, "view": 0} -2023-12-15T23:55:19.294Z INFO approving block {"height": 6578, "hash": "5c807599f01020cf73590d8fffb96043e0e4390678ed60bd15d475c239c2a3df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b45e94e077ad3ebd628c35b2910e266c7ae83bfcc4a78633751122e7d6d3704"} -2023-12-15T23:55:19.296Z INFO initializing dbft {"height": 6579, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:19.297Z debug frostfs-node/morph.go:229 new block {"index": 6578} -2023-12-15T23:55:20.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6578, "blockHeight": 6578, "took": "7.170418ms"} -2023-12-15T23:55:20.295Z INFO sending PrepareRequest {"height": 6579, "view": 0} -2023-12-15T23:55:20.296Z INFO sending Commit {"height": 6579, "view": 0} -2023-12-15T23:55:20.296Z INFO approving block {"height": 6579, "hash": "b759d7b3dad1ec7245a632718471f38a8c73b3ed55dced84d2ea81d4ee5c9639", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c807599f01020cf73590d8fffb96043e0e4390678ed60bd15d475c239c2a3df"} -2023-12-15T23:55:20.298Z INFO initializing dbft {"height": 6580, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:20.298Z debug frostfs-node/morph.go:229 new block {"index": 6579} -2023-12-15T23:55:21.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6579, "blockHeight": 6579, "took": "6.977054ms"} -2023-12-15T23:55:21.298Z INFO sending PrepareRequest {"height": 6580, "view": 0} -2023-12-15T23:55:21.298Z INFO sending Commit {"height": 6580, "view": 0} -2023-12-15T23:55:21.299Z INFO approving block {"height": 6580, "hash": "c041519ea71b7f984954aec1a22734135a600dba52de08a6038cac70e12846f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b759d7b3dad1ec7245a632718471f38a8c73b3ed55dced84d2ea81d4ee5c9639"} -2023-12-15T23:55:21.300Z INFO initializing dbft {"height": 6581, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:21.301Z debug frostfs-node/morph.go:229 new block {"index": 6580} -2023-12-15T23:55:22.073Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6580, "blockHeight": 6580, "took": "7.539247ms"} -2023-12-15T23:55:22.300Z INFO sending PrepareRequest {"height": 6581, "view": 0} -2023-12-15T23:55:22.300Z INFO sending Commit {"height": 6581, "view": 0} -2023-12-15T23:55:22.300Z INFO approving block {"height": 6581, "hash": "96527722df64d9b6d95a96a49c46d321b0e076cb26f4ce1c73193cb4068bddac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c041519ea71b7f984954aec1a22734135a600dba52de08a6038cac70e12846f3"} -2023-12-15T23:55:22.302Z INFO initializing dbft {"height": 6582, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:22.303Z debug frostfs-node/morph.go:229 new block {"index": 6581} -2023-12-15T23:55:23.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6581, "blockHeight": 6581, "took": "8.938855ms"} -2023-12-15T23:55:23.301Z INFO sending PrepareRequest {"height": 6582, "view": 0} -2023-12-15T23:55:23.302Z INFO sending Commit {"height": 6582, "view": 0} -2023-12-15T23:55:23.302Z INFO approving block {"height": 6582, "hash": "67bb2797fee31ce5dab7bf5fd4a14a26b80347825cd6feebcbe07bcc3f5c9617", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96527722df64d9b6d95a96a49c46d321b0e076cb26f4ce1c73193cb4068bddac"} -2023-12-15T23:55:23.303Z INFO initializing dbft {"height": 6583, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:23.304Z debug frostfs-node/morph.go:229 new block {"index": 6582} -2023-12-15T23:55:24.073Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6582, "blockHeight": 6582, "took": "5.982652ms"} -2023-12-15T23:55:24.304Z INFO sending PrepareRequest {"height": 6583, "view": 0} -2023-12-15T23:55:24.304Z INFO sending Commit {"height": 6583, "view": 0} -2023-12-15T23:55:24.304Z INFO approving block {"height": 6583, "hash": "299ad6f6cf393b9e4eeb5f69e9b241ec2b059e65bd5f3acc766efc8431a3b2c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67bb2797fee31ce5dab7bf5fd4a14a26b80347825cd6feebcbe07bcc3f5c9617"} -2023-12-15T23:55:24.306Z INFO initializing dbft {"height": 6584, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:24.306Z debug frostfs-node/morph.go:229 new block {"index": 6583} -2023-12-15T23:55:25.076Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6583, "blockHeight": 6583, "took": "7.88908ms"} -2023-12-15T23:55:25.306Z INFO sending PrepareRequest {"height": 6584, "view": 0} -2023-12-15T23:55:25.306Z INFO sending Commit {"height": 6584, "view": 0} -2023-12-15T23:55:25.307Z INFO approving block {"height": 6584, "hash": "d848a4552857a0cafc8dba6a92f54d7dd4c4c540d5adfa409228c3090cf333a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "299ad6f6cf393b9e4eeb5f69e9b241ec2b059e65bd5f3acc766efc8431a3b2c9"} -2023-12-15T23:55:25.308Z INFO initializing dbft {"height": 6585, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:25.309Z debug frostfs-node/morph.go:229 new block {"index": 6584} -2023-12-15T23:55:26.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6584, "blockHeight": 6584, "took": "6.13754ms"} -2023-12-15T23:55:26.308Z INFO sending PrepareRequest {"height": 6585, "view": 0} -2023-12-15T23:55:26.309Z INFO sending Commit {"height": 6585, "view": 0} -2023-12-15T23:55:26.309Z INFO approving block {"height": 6585, "hash": "9d13ede5c9b43912bee11af42f76a67369af3f2cb93efe6bd057a6429f56243d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d848a4552857a0cafc8dba6a92f54d7dd4c4c540d5adfa409228c3090cf333a3"} -2023-12-15T23:55:26.311Z INFO initializing dbft {"height": 6586, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:26.312Z debug frostfs-node/morph.go:229 new block {"index": 6585} -2023-12-15T23:55:27.077Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6585, "blockHeight": 6585, "took": "7.243871ms"} -2023-12-15T23:55:27.310Z INFO sending PrepareRequest {"height": 6586, "view": 0} -2023-12-15T23:55:27.311Z INFO sending Commit {"height": 6586, "view": 0} -2023-12-15T23:55:27.311Z INFO approving block {"height": 6586, "hash": "111adbce4d21def1d1f3e0f243f85a5e97d383007403aed21f03b7ba8a522474", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d13ede5c9b43912bee11af42f76a67369af3f2cb93efe6bd057a6429f56243d"} -2023-12-15T23:55:27.313Z INFO initializing dbft {"height": 6587, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:27.314Z debug frostfs-node/morph.go:229 new block {"index": 6586} -2023-12-15T23:55:28.079Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6586, "blockHeight": 6586, "took": "7.651026ms"} -2023-12-15T23:55:28.313Z INFO sending PrepareRequest {"height": 6587, "view": 0} -2023-12-15T23:55:28.313Z INFO sending Commit {"height": 6587, "view": 0} -2023-12-15T23:55:28.314Z INFO approving block {"height": 6587, "hash": "d399d1f0207599f9c071c02c156365987bf290498d939cf0622f3fddef95e5a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "111adbce4d21def1d1f3e0f243f85a5e97d383007403aed21f03b7ba8a522474"} -2023-12-15T23:55:28.315Z INFO initializing dbft {"height": 6588, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:28.316Z debug frostfs-node/morph.go:229 new block {"index": 6587} -2023-12-15T23:55:29.082Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6587, "blockHeight": 6587, "took": "8.926281ms"} -2023-12-15T23:55:29.315Z INFO sending PrepareRequest {"height": 6588, "view": 0} -2023-12-15T23:55:29.316Z INFO sending Commit {"height": 6588, "view": 0} -2023-12-15T23:55:29.316Z INFO approving block {"height": 6588, "hash": "5a9260b2a6d8a1fca3ffef9c5a3c6594c8e9b8a401172a7417ce73f994415243", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d399d1f0207599f9c071c02c156365987bf290498d939cf0622f3fddef95e5a8"} -2023-12-15T23:55:29.318Z INFO initializing dbft {"height": 6589, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:29.319Z debug frostfs-node/morph.go:229 new block {"index": 6588} -2023-12-15T23:55:30.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6588, "blockHeight": 6588, "took": "5.403578ms"} -2023-12-15T23:55:30.317Z INFO sending PrepareRequest {"height": 6589, "view": 0} -2023-12-15T23:55:30.317Z INFO sending Commit {"height": 6589, "view": 0} -2023-12-15T23:55:30.317Z INFO approving block {"height": 6589, "hash": "ae6ef36fe32668b5c0c3df48609da44cc4774c97253e2a1770d51a67a334bfb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a9260b2a6d8a1fca3ffef9c5a3c6594c8e9b8a401172a7417ce73f994415243"} -2023-12-15T23:55:30.318Z INFO initializing dbft {"height": 6590, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:30.319Z debug frostfs-node/morph.go:229 new block {"index": 6589} -2023-12-15T23:55:31.082Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6589, "blockHeight": 6589, "took": "7.645893ms"} -2023-12-15T23:55:31.318Z INFO sending PrepareRequest {"height": 6590, "view": 0} -2023-12-15T23:55:31.318Z INFO sending Commit {"height": 6590, "view": 0} -2023-12-15T23:55:31.319Z INFO approving block {"height": 6590, "hash": "7de97928040a957971f809e2901623035d12607dba68712046d13c42a9b72499", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae6ef36fe32668b5c0c3df48609da44cc4774c97253e2a1770d51a67a334bfb5"} -2023-12-15T23:55:31.320Z INFO initializing dbft {"height": 6591, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:31.321Z debug frostfs-node/morph.go:229 new block {"index": 6590} -2023-12-15T23:55:32.082Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6590, "blockHeight": 6590, "took": "7.242868ms"} -2023-12-15T23:55:32.320Z INFO sending PrepareRequest {"height": 6591, "view": 0} -2023-12-15T23:55:32.321Z INFO sending Commit {"height": 6591, "view": 0} -2023-12-15T23:55:32.321Z INFO approving block {"height": 6591, "hash": "702ad2e8d47bc9bb98abeadaa6d51ced535bd84d1804bf02bff961f2cc053dae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7de97928040a957971f809e2901623035d12607dba68712046d13c42a9b72499"} -2023-12-15T23:55:32.322Z INFO initializing dbft {"height": 6592, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:32.324Z debug frostfs-node/morph.go:229 new block {"index": 6591} -2023-12-15T23:55:33.081Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6591, "blockHeight": 6591, "took": "5.302195ms"} -2023-12-15T23:55:33.322Z INFO sending PrepareRequest {"height": 6592, "view": 0} -2023-12-15T23:55:33.322Z INFO sending Commit {"height": 6592, "view": 0} -2023-12-15T23:55:33.323Z INFO approving block {"height": 6592, "hash": "6670a45a4dd5b08893cac246ef8e2c2fc6acc23480ce165695c6683a8dc6c202", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "702ad2e8d47bc9bb98abeadaa6d51ced535bd84d1804bf02bff961f2cc053dae"} -2023-12-15T23:55:33.324Z INFO initializing dbft {"height": 6593, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:33.325Z debug frostfs-node/morph.go:229 new block {"index": 6592} -2023-12-15T23:55:34.084Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6592, "blockHeight": 6592, "took": "7.62499ms"} -2023-12-15T23:55:34.324Z INFO sending PrepareRequest {"height": 6593, "view": 0} -2023-12-15T23:55:34.324Z INFO sending Commit {"height": 6593, "view": 0} -2023-12-15T23:55:34.325Z INFO approving block {"height": 6593, "hash": "582381979bd70f953cf110a9f110aa1e0c996175880effd3fbbaadef5d561b18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6670a45a4dd5b08893cac246ef8e2c2fc6acc23480ce165695c6683a8dc6c202"} -2023-12-15T23:55:34.328Z INFO initializing dbft {"height": 6594, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:34.329Z debug frostfs-node/morph.go:229 new block {"index": 6593} -2023-12-15T23:55:35.084Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6593, "blockHeight": 6593, "took": "6.851612ms"} -2023-12-15T23:55:35.326Z INFO sending PrepareRequest {"height": 6594, "view": 0} -2023-12-15T23:55:35.326Z INFO sending Commit {"height": 6594, "view": 0} -2023-12-15T23:55:35.327Z INFO approving block {"height": 6594, "hash": "2e0e92e9fb4a693e00c3dc1ec7b6ccad3d2d186f929a9ec5321aa3345345b35e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "582381979bd70f953cf110a9f110aa1e0c996175880effd3fbbaadef5d561b18"} -2023-12-15T23:55:35.330Z INFO initializing dbft {"height": 6595, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:35.331Z debug frostfs-node/morph.go:229 new block {"index": 6594} -2023-12-15T23:55:36.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6594, "blockHeight": 6594, "took": "7.561181ms"} -2023-12-15T23:55:36.328Z INFO sending PrepareRequest {"height": 6595, "view": 0} -2023-12-15T23:55:36.328Z INFO sending Commit {"height": 6595, "view": 0} -2023-12-15T23:55:36.329Z INFO approving block {"height": 6595, "hash": "9d7f609c83321c2c717d6549f483d15dfb1cb01f9809cfa776d8d08a786c8361", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e0e92e9fb4a693e00c3dc1ec7b6ccad3d2d186f929a9ec5321aa3345345b35e"} -2023-12-15T23:55:36.330Z INFO initializing dbft {"height": 6596, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:36.331Z debug frostfs-node/morph.go:229 new block {"index": 6595} -2023-12-15T23:55:37.090Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6595, "blockHeight": 6595, "took": "11.11903ms"} -2023-12-15T23:55:37.330Z INFO sending PrepareRequest {"height": 6596, "view": 0} -2023-12-15T23:55:37.331Z INFO sending Commit {"height": 6596, "view": 0} -2023-12-15T23:55:37.331Z INFO approving block {"height": 6596, "hash": "88a8f823da83fb48516c841c7308ce1a55563cdc13f4a8b87f11480c5ea022be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d7f609c83321c2c717d6549f483d15dfb1cb01f9809cfa776d8d08a786c8361"} -2023-12-15T23:55:37.332Z INFO initializing dbft {"height": 6597, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:37.333Z debug frostfs-node/morph.go:229 new block {"index": 6596} -2023-12-15T23:55:38.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6596, "blockHeight": 6596, "took": "7.494746ms"} -2023-12-15T23:55:38.332Z INFO sending PrepareRequest {"height": 6597, "view": 0} -2023-12-15T23:55:38.333Z INFO sending Commit {"height": 6597, "view": 0} -2023-12-15T23:55:38.333Z INFO approving block {"height": 6597, "hash": "540fc62752f086e8a56a655b2c22cc2ad490fab9bb117eec481026ad01bfbb84", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88a8f823da83fb48516c841c7308ce1a55563cdc13f4a8b87f11480c5ea022be"} -2023-12-15T23:55:38.335Z INFO initializing dbft {"height": 6598, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:38.336Z debug frostfs-node/morph.go:229 new block {"index": 6597} -2023-12-15T23:55:39.088Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6597, "blockHeight": 6597, "took": "7.357464ms"} -2023-12-15T23:55:39.334Z INFO sending PrepareRequest {"height": 6598, "view": 0} -2023-12-15T23:55:39.335Z INFO sending Commit {"height": 6598, "view": 0} -2023-12-15T23:55:39.335Z INFO approving block {"height": 6598, "hash": "be6f37989ef25b741340e7cbf48de7e8a1c7a67212f71175633490fc419e87ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "540fc62752f086e8a56a655b2c22cc2ad490fab9bb117eec481026ad01bfbb84"} -2023-12-15T23:55:39.337Z INFO initializing dbft {"height": 6599, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:39.338Z debug frostfs-node/morph.go:229 new block {"index": 6598} -2023-12-15T23:55:40.093Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6598, "blockHeight": 6598, "took": "10.517893ms"} -2023-12-15T23:55:40.337Z INFO sending PrepareRequest {"height": 6599, "view": 0} -2023-12-15T23:55:40.337Z INFO sending Commit {"height": 6599, "view": 0} -2023-12-15T23:55:40.337Z INFO approving block {"height": 6599, "hash": "e7a8b8ba9a6bff63c0f1f416a431592a7c634ae3b1be29846add39d8adef8fee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be6f37989ef25b741340e7cbf48de7e8a1c7a67212f71175633490fc419e87ce"} -2023-12-15T23:55:40.339Z INFO initializing dbft {"height": 6600, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:40.340Z debug frostfs-node/morph.go:229 new block {"index": 6599} -2023-12-15T23:55:41.090Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6599, "blockHeight": 6599, "took": "6.996925ms"} -2023-12-15T23:55:41.338Z INFO sending PrepareRequest {"height": 6600, "view": 0} -2023-12-15T23:55:41.338Z INFO sending Commit {"height": 6600, "view": 0} -2023-12-15T23:55:41.339Z INFO approving block {"height": 6600, "hash": "8c5ece385fbc9b0655982c3a1f02df142ae0127e71d7d55bfb693853c7523853", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7a8b8ba9a6bff63c0f1f416a431592a7c634ae3b1be29846add39d8adef8fee"} -2023-12-15T23:55:41.341Z INFO initializing dbft {"height": 6601, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:41.341Z debug frostfs-node/morph.go:229 new block {"index": 6600} -2023-12-15T23:55:42.092Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6600, "blockHeight": 6600, "took": "7.89659ms"} -2023-12-15T23:55:42.340Z INFO sending PrepareRequest {"height": 6601, "view": 0} -2023-12-15T23:55:42.341Z INFO sending Commit {"height": 6601, "view": 0} -2023-12-15T23:55:42.341Z INFO approving block {"height": 6601, "hash": "43b3197d8b40fbd67c0a2a11c5295fd453918502442834f4033137e0b5a810a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c5ece385fbc9b0655982c3a1f02df142ae0127e71d7d55bfb693853c7523853"} -2023-12-15T23:55:42.343Z INFO initializing dbft {"height": 6602, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:42.344Z debug frostfs-node/morph.go:229 new block {"index": 6601} -2023-12-15T23:55:43.094Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6601, "blockHeight": 6601, "took": "8.843705ms"} -2023-12-15T23:55:43.343Z INFO sending PrepareRequest {"height": 6602, "view": 0} -2023-12-15T23:55:43.343Z INFO sending Commit {"height": 6602, "view": 0} -2023-12-15T23:55:43.343Z INFO approving block {"height": 6602, "hash": "0d8c70d23faa9f00d1bd0250b5403a3dd34f0eb29950a64f5364f858e43f485b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43b3197d8b40fbd67c0a2a11c5295fd453918502442834f4033137e0b5a810a1"} -2023-12-15T23:55:43.344Z INFO initializing dbft {"height": 6603, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:43.345Z debug frostfs-node/morph.go:229 new block {"index": 6602} -2023-12-15T23:55:44.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6602, "blockHeight": 6602, "took": "8.120245ms"} -2023-12-15T23:55:44.344Z INFO sending PrepareRequest {"height": 6603, "view": 0} -2023-12-15T23:55:44.344Z INFO sending Commit {"height": 6603, "view": 0} -2023-12-15T23:55:44.345Z INFO approving block {"height": 6603, "hash": "9de82b3108f663878190af8edaf20bc0768494ada8de73c325277a1b6bf6e6ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d8c70d23faa9f00d1bd0250b5403a3dd34f0eb29950a64f5364f858e43f485b"} -2023-12-15T23:55:44.347Z INFO initializing dbft {"height": 6604, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:44.347Z debug frostfs-node/morph.go:229 new block {"index": 6603} -2023-12-15T23:55:45.098Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6603, "blockHeight": 6603, "took": "10.336945ms"} -2023-12-15T23:55:45.346Z INFO sending PrepareRequest {"height": 6604, "view": 0} -2023-12-15T23:55:45.346Z INFO sending Commit {"height": 6604, "view": 0} -2023-12-15T23:55:45.346Z INFO approving block {"height": 6604, "hash": "41919541b3df402522047d75f83398ec293fe06b2304b4a605033ce396c0c1c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9de82b3108f663878190af8edaf20bc0768494ada8de73c325277a1b6bf6e6ec"} -2023-12-15T23:55:45.348Z INFO initializing dbft {"height": 6605, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:45.349Z debug frostfs-node/morph.go:229 new block {"index": 6604} -2023-12-15T23:55:46.098Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6604, "blockHeight": 6604, "took": "10.095915ms"} -2023-12-15T23:55:46.347Z INFO sending PrepareRequest {"height": 6605, "view": 0} -2023-12-15T23:55:46.347Z INFO sending Commit {"height": 6605, "view": 0} -2023-12-15T23:55:46.348Z INFO approving block {"height": 6605, "hash": "78000654395b2d90ee26afcf2333162d46fa0b304ba00125d6729491630b3a38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41919541b3df402522047d75f83398ec293fe06b2304b4a605033ce396c0c1c3"} -2023-12-15T23:55:46.349Z INFO initializing dbft {"height": 6606, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:46.350Z debug frostfs-node/morph.go:229 new block {"index": 6605} -2023-12-15T23:55:47.095Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6605, "blockHeight": 6605, "took": "6.591244ms"} -2023-12-15T23:55:47.349Z INFO sending PrepareRequest {"height": 6606, "view": 0} -2023-12-15T23:55:47.349Z INFO sending Commit {"height": 6606, "view": 0} -2023-12-15T23:55:47.349Z INFO approving block {"height": 6606, "hash": "106bb943762712220a7087863f465d1b37152b13a8491dc56c980688f57ae329", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78000654395b2d90ee26afcf2333162d46fa0b304ba00125d6729491630b3a38"} -2023-12-15T23:55:47.351Z INFO initializing dbft {"height": 6607, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:47.352Z debug frostfs-node/morph.go:229 new block {"index": 6606} -2023-12-15T23:55:48.097Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6606, "blockHeight": 6606, "took": "7.342547ms"} -2023-12-15T23:55:48.351Z INFO sending PrepareRequest {"height": 6607, "view": 0} -2023-12-15T23:55:48.351Z INFO sending Commit {"height": 6607, "view": 0} -2023-12-15T23:55:48.352Z INFO approving block {"height": 6607, "hash": "4c2c4f014b737ba8a1f81cfa25437b96dd205a6b9d1d3a7b8fa7ba93cd5a6143", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "106bb943762712220a7087863f465d1b37152b13a8491dc56c980688f57ae329"} -2023-12-15T23:55:48.354Z INFO initializing dbft {"height": 6608, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:48.354Z debug frostfs-node/morph.go:229 new block {"index": 6607} -2023-12-15T23:55:49.096Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6607, "blockHeight": 6607, "took": "5.645614ms"} -2023-12-15T23:55:49.353Z INFO sending PrepareRequest {"height": 6608, "view": 0} -2023-12-15T23:55:49.353Z INFO sending Commit {"height": 6608, "view": 0} -2023-12-15T23:55:49.353Z INFO approving block {"height": 6608, "hash": "b4fce219b82c7eb5a7c8f3b33db65e3b018725b399e54d9391ef2f005cca5a8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c2c4f014b737ba8a1f81cfa25437b96dd205a6b9d1d3a7b8fa7ba93cd5a6143"} -2023-12-15T23:55:49.354Z INFO initializing dbft {"height": 6609, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:49.355Z debug frostfs-node/morph.go:229 new block {"index": 6608} -2023-12-15T23:55:50.097Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6608, "blockHeight": 6608, "took": "5.807277ms"} -2023-12-15T23:55:50.354Z INFO sending PrepareRequest {"height": 6609, "view": 0} -2023-12-15T23:55:50.355Z INFO sending Commit {"height": 6609, "view": 0} -2023-12-15T23:55:50.355Z INFO approving block {"height": 6609, "hash": "3cb29f3a79e596857d212de3c1ccd46d3fc5eee01f0bc4702b1ce044ebd37a0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4fce219b82c7eb5a7c8f3b33db65e3b018725b399e54d9391ef2f005cca5a8f"} -2023-12-15T23:55:50.358Z INFO initializing dbft {"height": 6610, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:50.359Z debug frostfs-node/morph.go:229 new block {"index": 6609} -2023-12-15T23:55:51.100Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6609, "blockHeight": 6609, "took": "7.583728ms"} -2023-12-15T23:55:51.356Z INFO sending PrepareRequest {"height": 6610, "view": 0} -2023-12-15T23:55:51.357Z INFO sending Commit {"height": 6610, "view": 0} -2023-12-15T23:55:51.357Z INFO approving block {"height": 6610, "hash": "0dd1d7eba970ffff23b3a68867b476558fdf232812c556281e00cc4d1af545f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cb29f3a79e596857d212de3c1ccd46d3fc5eee01f0bc4702b1ce044ebd37a0f"} -2023-12-15T23:55:51.359Z INFO initializing dbft {"height": 6611, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:51.359Z debug frostfs-node/morph.go:229 new block {"index": 6610} -2023-12-15T23:55:52.101Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6610, "blockHeight": 6610, "took": "7.842249ms"} -2023-12-15T23:55:52.358Z INFO sending PrepareRequest {"height": 6611, "view": 0} -2023-12-15T23:55:52.358Z INFO sending Commit {"height": 6611, "view": 0} -2023-12-15T23:55:52.359Z INFO approving block {"height": 6611, "hash": "0a3ba68fb9c8d62350f5d4b72f649aa13e1c6775e1f04b63cb6eac03a1b4aabc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0dd1d7eba970ffff23b3a68867b476558fdf232812c556281e00cc4d1af545f8"} -2023-12-15T23:55:52.360Z INFO initializing dbft {"height": 6612, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:52.361Z debug frostfs-node/morph.go:229 new block {"index": 6611} -2023-12-15T23:55:53.103Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6611, "blockHeight": 6611, "took": "8.957102ms"} -2023-12-15T23:55:53.360Z INFO sending PrepareRequest {"height": 6612, "view": 0} -2023-12-15T23:55:53.361Z INFO sending Commit {"height": 6612, "view": 0} -2023-12-15T23:55:53.361Z INFO approving block {"height": 6612, "hash": "efe802a5cc368d45c6808d2fadd4a12f219a82a793abf9e9ce0c9635cca952de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a3ba68fb9c8d62350f5d4b72f649aa13e1c6775e1f04b63cb6eac03a1b4aabc"} -2023-12-15T23:55:53.363Z INFO initializing dbft {"height": 6613, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:53.364Z debug frostfs-node/morph.go:229 new block {"index": 6612} -2023-12-15T23:55:54.106Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6612, "blockHeight": 6612, "took": "10.567216ms"} -2023-12-15T23:55:54.362Z INFO sending PrepareRequest {"height": 6613, "view": 0} -2023-12-15T23:55:54.363Z INFO sending Commit {"height": 6613, "view": 0} -2023-12-15T23:55:54.364Z INFO approving block {"height": 6613, "hash": "7e34eb2cc9348dcaea9f63f12a076012cc9cc029cbebc6f4ed9c1926b7f4c564", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efe802a5cc368d45c6808d2fadd4a12f219a82a793abf9e9ce0c9635cca952de"} -2023-12-15T23:55:54.365Z INFO initializing dbft {"height": 6614, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:54.366Z debug frostfs-node/morph.go:229 new block {"index": 6613} -2023-12-15T23:55:55.105Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6613, "blockHeight": 6613, "took": "9.456986ms"} -2023-12-15T23:55:55.366Z INFO sending PrepareRequest {"height": 6614, "view": 0} -2023-12-15T23:55:55.366Z INFO sending Commit {"height": 6614, "view": 0} -2023-12-15T23:55:55.367Z INFO approving block {"height": 6614, "hash": "ee9f42684743e5c7439e13a491f26f645ed6bddf3545e0a853bcceae8155a4b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e34eb2cc9348dcaea9f63f12a076012cc9cc029cbebc6f4ed9c1926b7f4c564"} -2023-12-15T23:55:55.369Z INFO initializing dbft {"height": 6615, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:55.370Z debug frostfs-node/morph.go:229 new block {"index": 6614} -2023-12-15T23:55:56.109Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6614, "blockHeight": 6614, "took": "12.14577ms"} -2023-12-15T23:55:56.368Z INFO sending PrepareRequest {"height": 6615, "view": 0} -2023-12-15T23:55:56.368Z INFO sending Commit {"height": 6615, "view": 0} -2023-12-15T23:55:56.368Z INFO approving block {"height": 6615, "hash": "1cab91aa376b0076b9e426ded24d321e41b302fc4a770bb03ee29aee28af06d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee9f42684743e5c7439e13a491f26f645ed6bddf3545e0a853bcceae8155a4b6"} -2023-12-15T23:55:56.370Z INFO initializing dbft {"height": 6616, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:56.372Z debug frostfs-node/morph.go:229 new block {"index": 6615} -2023-12-15T23:55:57.109Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6615, "blockHeight": 6615, "took": "10.710955ms"} -2023-12-15T23:55:57.370Z INFO sending PrepareRequest {"height": 6616, "view": 0} -2023-12-15T23:55:57.370Z INFO sending Commit {"height": 6616, "view": 0} -2023-12-15T23:55:57.371Z INFO approving block {"height": 6616, "hash": "26e1198aa1f6b3f37e55866e4f2e34ddd3757c9f82874f2812cb317305b23ab9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cab91aa376b0076b9e426ded24d321e41b302fc4a770bb03ee29aee28af06d5"} -2023-12-15T23:55:57.373Z INFO initializing dbft {"height": 6617, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:57.373Z debug frostfs-node/morph.go:229 new block {"index": 6616} -2023-12-15T23:55:58.109Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6616, "blockHeight": 6616, "took": "8.898498ms"} -2023-12-15T23:55:58.372Z INFO sending PrepareRequest {"height": 6617, "view": 0} -2023-12-15T23:55:58.372Z INFO sending Commit {"height": 6617, "view": 0} -2023-12-15T23:55:58.372Z INFO approving block {"height": 6617, "hash": "3a9efda466a19339ff95b68b01428f0990aa1dc17b3e7b4db468e32e692f7ef6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26e1198aa1f6b3f37e55866e4f2e34ddd3757c9f82874f2812cb317305b23ab9"} -2023-12-15T23:55:58.374Z INFO initializing dbft {"height": 6618, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:58.375Z debug frostfs-node/morph.go:229 new block {"index": 6617} -2023-12-15T23:55:58.378Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:55:58.383Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:55:58.384Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:55:59.107Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6617, "blockHeight": 6617, "took": "6.561933ms"} -2023-12-15T23:55:59.374Z INFO sending PrepareRequest {"height": 6618, "view": 0} -2023-12-15T23:55:59.374Z INFO sending Commit {"height": 6618, "view": 0} -2023-12-15T23:55:59.376Z INFO approving block {"height": 6618, "hash": "3d08c4c8f9523b2ff5a4f4256e517eae146a099f7702a681583d5f38c6e13688", "tx_count": 2, "merkle": "6e24d5495803da5ac3dd8c6d1cd6e80f0f395fb81e54c05c5ca17d01b8dab397", "prev": "3a9efda466a19339ff95b68b01428f0990aa1dc17b3e7b4db468e32e692f7ef6"} -2023-12-15T23:55:59.377Z INFO runtime log {"tx": "02e8e7c662411c1042161bca3fd8d3031c711baff0739124f0fa09905661221e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:55:59.377Z INFO runtime log {"tx": "02e8e7c662411c1042161bca3fd8d3031c711baff0739124f0fa09905661221e", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:55:59.379Z INFO initializing dbft {"height": 6619, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:55:59.395Z debug frostfs-node/morph.go:229 new block {"index": 6618} -2023-12-15T23:56:00.112Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6618, "blockHeight": 6618, "took": "11.47445ms"} -2023-12-15T23:56:00.377Z INFO sending PrepareRequest {"height": 6619, "view": 0} -2023-12-15T23:56:00.378Z INFO sending Commit {"height": 6619, "view": 0} -2023-12-15T23:56:00.378Z INFO approving block {"height": 6619, "hash": "242de781134a7f791d5cfbf17d2aa94e62eb0976ef466aa0f3e8dc6e76f9ae70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d08c4c8f9523b2ff5a4f4256e517eae146a099f7702a681583d5f38c6e13688"} -2023-12-15T23:56:00.380Z INFO initializing dbft {"height": 6620, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:00.380Z debug frostfs-node/morph.go:229 new block {"index": 6619} -2023-12-15T23:56:01.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6619, "blockHeight": 6619, "took": "8.083732ms"} -2023-12-15T23:56:01.380Z INFO sending PrepareRequest {"height": 6620, "view": 0} -2023-12-15T23:56:01.380Z INFO sending Commit {"height": 6620, "view": 0} -2023-12-15T23:56:01.380Z INFO approving block {"height": 6620, "hash": "a307aba091c80fd3a34faa17a86105397070e5a274d317fc6c4ee76824403482", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "242de781134a7f791d5cfbf17d2aa94e62eb0976ef466aa0f3e8dc6e76f9ae70"} -2023-12-15T23:56:01.382Z INFO initializing dbft {"height": 6621, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:01.383Z debug frostfs-node/morph.go:229 new block {"index": 6620} -2023-12-15T23:56:02.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6620, "blockHeight": 6620, "took": "7.475767ms"} -2023-12-15T23:56:02.381Z INFO sending PrepareRequest {"height": 6621, "view": 0} -2023-12-15T23:56:02.382Z INFO sending Commit {"height": 6621, "view": 0} -2023-12-15T23:56:02.382Z INFO approving block {"height": 6621, "hash": "10e1812c12f377a94d01b85138eb76e212aeb6c9a27873ae5529586562404910", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a307aba091c80fd3a34faa17a86105397070e5a274d317fc6c4ee76824403482"} -2023-12-15T23:56:02.384Z INFO initializing dbft {"height": 6622, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:02.385Z debug frostfs-node/morph.go:229 new block {"index": 6621} -2023-12-15T23:56:03.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6621, "blockHeight": 6621, "took": "7.285305ms"} -2023-12-15T23:56:03.384Z INFO sending PrepareRequest {"height": 6622, "view": 0} -2023-12-15T23:56:03.384Z INFO sending Commit {"height": 6622, "view": 0} -2023-12-15T23:56:03.384Z INFO approving block {"height": 6622, "hash": "42c132f8bc4ce333b27030d43b26a43c85999b8a5be8253ac09d7af6add4529e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10e1812c12f377a94d01b85138eb76e212aeb6c9a27873ae5529586562404910"} -2023-12-15T23:56:03.386Z INFO initializing dbft {"height": 6623, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:03.387Z debug frostfs-node/morph.go:229 new block {"index": 6622} -2023-12-15T23:56:04.113Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6622, "blockHeight": 6622, "took": "8.000576ms"} -2023-12-15T23:56:04.385Z INFO sending PrepareRequest {"height": 6623, "view": 0} -2023-12-15T23:56:04.385Z INFO sending Commit {"height": 6623, "view": 0} -2023-12-15T23:56:04.386Z INFO approving block {"height": 6623, "hash": "8f636a05114836afb8e4a8cd657cef3b9ec6c4b9df120d289a9604ab6a897bd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42c132f8bc4ce333b27030d43b26a43c85999b8a5be8253ac09d7af6add4529e"} -2023-12-15T23:56:04.387Z INFO initializing dbft {"height": 6624, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:04.388Z debug frostfs-node/morph.go:229 new block {"index": 6623} -2023-12-15T23:56:05.113Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6623, "blockHeight": 6623, "took": "6.945825ms"} -2023-12-15T23:56:05.387Z INFO sending PrepareRequest {"height": 6624, "view": 0} -2023-12-15T23:56:05.388Z INFO sending Commit {"height": 6624, "view": 0} -2023-12-15T23:56:05.388Z INFO approving block {"height": 6624, "hash": "600182b86ac9033e05283ff52b027df8aa0c465c4cec693d66a07f5418cfdf18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f636a05114836afb8e4a8cd657cef3b9ec6c4b9df120d289a9604ab6a897bd5"} -2023-12-15T23:56:05.390Z INFO initializing dbft {"height": 6625, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:05.390Z debug frostfs-node/morph.go:229 new block {"index": 6624} -2023-12-15T23:56:06.115Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6624, "blockHeight": 6624, "took": "8.642389ms"} -2023-12-15T23:56:06.389Z INFO sending PrepareRequest {"height": 6625, "view": 0} -2023-12-15T23:56:06.390Z INFO sending Commit {"height": 6625, "view": 0} -2023-12-15T23:56:06.390Z INFO approving block {"height": 6625, "hash": "cc65b53e9140e83317db53541455c785f86493ec6fb598fd96a98e6f437628a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "600182b86ac9033e05283ff52b027df8aa0c465c4cec693d66a07f5418cfdf18"} -2023-12-15T23:56:06.392Z INFO initializing dbft {"height": 6626, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:06.393Z debug frostfs-node/morph.go:229 new block {"index": 6625} -2023-12-15T23:56:07.115Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6625, "blockHeight": 6625, "took": "7.366446ms"} -2023-12-15T23:56:07.391Z INFO sending PrepareRequest {"height": 6626, "view": 0} -2023-12-15T23:56:07.391Z INFO sending Commit {"height": 6626, "view": 0} -2023-12-15T23:56:07.392Z INFO approving block {"height": 6626, "hash": "d9d70cbf85b729027f27913a20a872c1f0330222d0528a92a8bd2ee7f968850d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc65b53e9140e83317db53541455c785f86493ec6fb598fd96a98e6f437628a4"} -2023-12-15T23:56:07.394Z INFO initializing dbft {"height": 6627, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:07.394Z debug frostfs-node/morph.go:229 new block {"index": 6626} -2023-12-15T23:56:08.115Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6626, "blockHeight": 6626, "took": "6.584612ms"} -2023-12-15T23:56:08.393Z INFO sending PrepareRequest {"height": 6627, "view": 0} -2023-12-15T23:56:08.393Z INFO sending Commit {"height": 6627, "view": 0} -2023-12-15T23:56:08.394Z INFO approving block {"height": 6627, "hash": "59069b1b9dcb459b7e4d8ee3d2d21abbd710f1b7630f5fcae7a7810da40d1b11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9d70cbf85b729027f27913a20a872c1f0330222d0528a92a8bd2ee7f968850d"} -2023-12-15T23:56:08.395Z INFO initializing dbft {"height": 6628, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:08.396Z debug frostfs-node/morph.go:229 new block {"index": 6627} -2023-12-15T23:56:08.400Z info settlement/calls.go:61 start basic income collection {"epoch": 28} -2023-12-15T23:56:08.402Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 28, "iteration": 1, "error": "no data for 0 iteration in 28 epoch for consumers's trusts"} -2023-12-15T23:56:09.121Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6627, "blockHeight": 6627, "took": "11.760386ms"} -2023-12-15T23:56:09.394Z INFO sending PrepareRequest {"height": 6628, "view": 0} -2023-12-15T23:56:09.395Z INFO sending Commit {"height": 6628, "view": 0} -2023-12-15T23:56:09.395Z INFO approving block {"height": 6628, "hash": "f7a062ce6503c217171a5d91a4237d10e8c898c55bb4e60f3887fbc70db1e06f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59069b1b9dcb459b7e4d8ee3d2d21abbd710f1b7630f5fcae7a7810da40d1b11"} -2023-12-15T23:56:09.396Z INFO initializing dbft {"height": 6629, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:09.397Z debug frostfs-node/morph.go:229 new block {"index": 6628} -2023-12-15T23:56:10.122Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6628, "blockHeight": 6628, "took": "11.861278ms"} -2023-12-15T23:56:10.396Z INFO sending PrepareRequest {"height": 6629, "view": 0} -2023-12-15T23:56:10.396Z INFO sending Commit {"height": 6629, "view": 0} -2023-12-15T23:56:10.396Z INFO approving block {"height": 6629, "hash": "b6bb942b679f73ba732558124fa230062550effa63de3cf0747eb0a3940f0cf5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7a062ce6503c217171a5d91a4237d10e8c898c55bb4e60f3887fbc70db1e06f"} -2023-12-15T23:56:10.398Z INFO initializing dbft {"height": 6630, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:10.399Z debug frostfs-node/morph.go:229 new block {"index": 6629} -2023-12-15T23:56:11.122Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6629, "blockHeight": 6629, "took": "11.177346ms"} -2023-12-15T23:56:11.398Z INFO sending PrepareRequest {"height": 6630, "view": 0} -2023-12-15T23:56:11.399Z INFO sending Commit {"height": 6630, "view": 0} -2023-12-15T23:56:11.399Z INFO approving block {"height": 6630, "hash": "e5d5ecb9198a2095cd565d3ebd50392495193cc432e5f7ab2b578f05569cb665", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6bb942b679f73ba732558124fa230062550effa63de3cf0747eb0a3940f0cf5"} -2023-12-15T23:56:11.401Z INFO initializing dbft {"height": 6631, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:11.402Z debug frostfs-node/morph.go:229 new block {"index": 6630} -2023-12-15T23:56:12.122Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6630, "blockHeight": 6630, "took": "9.999638ms"} -2023-12-15T23:56:12.400Z INFO sending PrepareRequest {"height": 6631, "view": 0} -2023-12-15T23:56:12.400Z INFO sending Commit {"height": 6631, "view": 0} -2023-12-15T23:56:12.401Z INFO approving block {"height": 6631, "hash": "6c30c58b4a58fe8cb9d2b31125616766258716f629d693c1feb841b0b547ed26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5d5ecb9198a2095cd565d3ebd50392495193cc432e5f7ab2b578f05569cb665"} -2023-12-15T23:56:12.402Z INFO initializing dbft {"height": 6632, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:12.403Z debug frostfs-node/morph.go:229 new block {"index": 6631} -2023-12-15T23:56:13.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6631, "blockHeight": 6631, "took": "6.50922ms"} -2023-12-15T23:56:13.401Z INFO sending PrepareRequest {"height": 6632, "view": 0} -2023-12-15T23:56:13.401Z INFO sending Commit {"height": 6632, "view": 0} -2023-12-15T23:56:13.402Z INFO approving block {"height": 6632, "hash": "0f2e5c357deac6bc1d647df4c4a100a91b202052028695b0ec8b5d0e8ed8c65a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c30c58b4a58fe8cb9d2b31125616766258716f629d693c1feb841b0b547ed26"} -2023-12-15T23:56:13.403Z INFO initializing dbft {"height": 6633, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:13.403Z debug frostfs-node/morph.go:229 new block {"index": 6632} -2023-12-15T23:56:14.125Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6632, "blockHeight": 6632, "took": "11.43763ms"} -2023-12-15T23:56:14.403Z INFO sending PrepareRequest {"height": 6633, "view": 0} -2023-12-15T23:56:14.403Z INFO sending Commit {"height": 6633, "view": 0} -2023-12-15T23:56:14.404Z INFO approving block {"height": 6633, "hash": "2d0b27f4c318922b1a922cf9d8101df211d247349881c174e6390aa22319e7d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f2e5c357deac6bc1d647df4c4a100a91b202052028695b0ec8b5d0e8ed8c65a"} -2023-12-15T23:56:14.405Z INFO initializing dbft {"height": 6634, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:14.407Z debug frostfs-node/morph.go:229 new block {"index": 6633} -2023-12-15T23:56:15.133Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6633, "blockHeight": 6633, "took": "17.830811ms"} -2023-12-15T23:56:15.406Z INFO sending PrepareRequest {"height": 6634, "view": 0} -2023-12-15T23:56:15.406Z INFO sending Commit {"height": 6634, "view": 0} -2023-12-15T23:56:15.407Z INFO approving block {"height": 6634, "hash": "43266d55242b8c2f54903261dab04f89c6a47b88cce882fe7285ea01d74d77f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d0b27f4c318922b1a922cf9d8101df211d247349881c174e6390aa22319e7d2"} -2023-12-15T23:56:15.408Z INFO initializing dbft {"height": 6635, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:15.409Z debug frostfs-node/morph.go:229 new block {"index": 6634} -2023-12-15T23:56:16.127Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6634, "blockHeight": 6634, "took": "11.617799ms"} -2023-12-15T23:56:16.408Z INFO sending PrepareRequest {"height": 6635, "view": 0} -2023-12-15T23:56:16.408Z INFO sending Commit {"height": 6635, "view": 0} -2023-12-15T23:56:16.408Z INFO approving block {"height": 6635, "hash": "72318a2dcaf464229b06cbdd045efcb19ab111220dd8140749d3ffc76f9e0d6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43266d55242b8c2f54903261dab04f89c6a47b88cce882fe7285ea01d74d77f7"} -2023-12-15T23:56:16.410Z INFO initializing dbft {"height": 6636, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:16.411Z debug frostfs-node/morph.go:229 new block {"index": 6635} -2023-12-15T23:56:17.127Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6635, "blockHeight": 6635, "took": "10.074255ms"} -2023-12-15T23:56:17.410Z INFO sending PrepareRequest {"height": 6636, "view": 0} -2023-12-15T23:56:17.410Z INFO sending Commit {"height": 6636, "view": 0} -2023-12-15T23:56:17.411Z INFO approving block {"height": 6636, "hash": "15c3d7f88f949d4cecffc8b761313a2df014b3202d1ae295f74ce73957f37f8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72318a2dcaf464229b06cbdd045efcb19ab111220dd8140749d3ffc76f9e0d6a"} -2023-12-15T23:56:17.413Z INFO initializing dbft {"height": 6637, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:17.413Z debug frostfs-node/morph.go:229 new block {"index": 6636} -2023-12-15T23:56:18.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6636, "blockHeight": 6636, "took": "8.551135ms"} -2023-12-15T23:56:18.412Z INFO sending PrepareRequest {"height": 6637, "view": 0} -2023-12-15T23:56:18.412Z INFO sending Commit {"height": 6637, "view": 0} -2023-12-15T23:56:18.413Z INFO approving block {"height": 6637, "hash": "a02b316955838508d344859c59ca389f1ccb6cf6092791556b7d239920a153e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15c3d7f88f949d4cecffc8b761313a2df014b3202d1ae295f74ce73957f37f8e"} -2023-12-15T23:56:18.415Z INFO initializing dbft {"height": 6638, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:18.417Z debug frostfs-node/morph.go:229 new block {"index": 6637} -2023-12-15T23:56:19.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6637, "blockHeight": 6637, "took": "7.878536ms"} -2023-12-15T23:56:19.415Z INFO sending PrepareRequest {"height": 6638, "view": 0} -2023-12-15T23:56:19.415Z INFO sending Commit {"height": 6638, "view": 0} -2023-12-15T23:56:19.416Z INFO approving block {"height": 6638, "hash": "bf10155c390c443e0c6188770f575f49f9dc31d5a7a29c12ea527bc09fad1b80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a02b316955838508d344859c59ca389f1ccb6cf6092791556b7d239920a153e5"} -2023-12-15T23:56:19.418Z INFO initializing dbft {"height": 6639, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:19.419Z debug frostfs-node/morph.go:229 new block {"index": 6638} -2023-12-15T23:56:20.129Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6638, "blockHeight": 6638, "took": "10.149916ms"} -2023-12-15T23:56:20.417Z INFO sending PrepareRequest {"height": 6639, "view": 0} -2023-12-15T23:56:20.417Z INFO sending Commit {"height": 6639, "view": 0} -2023-12-15T23:56:20.417Z INFO approving block {"height": 6639, "hash": "a1af9000e5ca9eddbb6e100964badd227dbbd021c55e5261d088e6e1454a94af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf10155c390c443e0c6188770f575f49f9dc31d5a7a29c12ea527bc09fad1b80"} -2023-12-15T23:56:20.418Z INFO initializing dbft {"height": 6640, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:20.419Z debug frostfs-node/morph.go:229 new block {"index": 6639} -2023-12-15T23:56:21.130Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6639, "blockHeight": 6639, "took": "9.836567ms"} -2023-12-15T23:56:21.418Z INFO sending PrepareRequest {"height": 6640, "view": 0} -2023-12-15T23:56:21.419Z INFO sending Commit {"height": 6640, "view": 0} -2023-12-15T23:56:21.419Z INFO approving block {"height": 6640, "hash": "d7049cfcb41fd1a8009f8f5d555b6de093ff257fc030005fed0efcb353d8030d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1af9000e5ca9eddbb6e100964badd227dbbd021c55e5261d088e6e1454a94af"} -2023-12-15T23:56:21.421Z INFO initializing dbft {"height": 6641, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:21.422Z debug frostfs-node/morph.go:229 new block {"index": 6640} -2023-12-15T23:56:22.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6640, "blockHeight": 6640, "took": "12.955748ms"} -2023-12-15T23:56:22.421Z INFO sending PrepareRequest {"height": 6641, "view": 0} -2023-12-15T23:56:22.421Z INFO sending Commit {"height": 6641, "view": 0} -2023-12-15T23:56:22.422Z INFO approving block {"height": 6641, "hash": "9896478a034ea4f740b4f1a802d4dedacb1656934e550024d7c1decee6411058", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7049cfcb41fd1a8009f8f5d555b6de093ff257fc030005fed0efcb353d8030d"} -2023-12-15T23:56:22.426Z debug frostfs-node/morph.go:229 new block {"index": 6641} -2023-12-15T23:56:22.424Z INFO initializing dbft {"height": 6642, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:23.131Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6641, "blockHeight": 6641, "took": "8.666675ms"} -2023-12-15T23:56:23.423Z INFO sending PrepareRequest {"height": 6642, "view": 0} -2023-12-15T23:56:23.423Z INFO sending Commit {"height": 6642, "view": 0} -2023-12-15T23:56:23.424Z INFO approving block {"height": 6642, "hash": "f2bae02b729e4e446e445ffd218017f4a73a67ffe5784a1bb75ed928dac9f7ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9896478a034ea4f740b4f1a802d4dedacb1656934e550024d7c1decee6411058"} -2023-12-15T23:56:23.426Z INFO initializing dbft {"height": 6643, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:23.426Z debug frostfs-node/morph.go:229 new block {"index": 6642} -2023-12-15T23:56:24.133Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6642, "blockHeight": 6642, "took": "10.483235ms"} -2023-12-15T23:56:24.425Z INFO sending PrepareRequest {"height": 6643, "view": 0} -2023-12-15T23:56:24.426Z INFO sending Commit {"height": 6643, "view": 0} -2023-12-15T23:56:24.426Z INFO approving block {"height": 6643, "hash": "df818a9526549d7cbebf00774840d742a5eb5b5d771936c820671e8028ef6e71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2bae02b729e4e446e445ffd218017f4a73a67ffe5784a1bb75ed928dac9f7ef"} -2023-12-15T23:56:24.427Z INFO initializing dbft {"height": 6644, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:24.428Z debug frostfs-node/morph.go:229 new block {"index": 6643} -2023-12-15T23:56:25.131Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6643, "blockHeight": 6643, "took": "7.680913ms"} -2023-12-15T23:56:25.427Z INFO sending PrepareRequest {"height": 6644, "view": 0} -2023-12-15T23:56:25.428Z INFO sending Commit {"height": 6644, "view": 0} -2023-12-15T23:56:25.428Z INFO approving block {"height": 6644, "hash": "39f77e5a7fb4d4136591a2655f610256841f1c9d4f26dbee7e2bc8a06e7b2358", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df818a9526549d7cbebf00774840d742a5eb5b5d771936c820671e8028ef6e71"} -2023-12-15T23:56:25.430Z INFO initializing dbft {"height": 6645, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:25.431Z debug frostfs-node/morph.go:229 new block {"index": 6644} -2023-12-15T23:56:26.132Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6644, "blockHeight": 6644, "took": "8.075526ms"} -2023-12-15T23:56:26.430Z INFO sending PrepareRequest {"height": 6645, "view": 0} -2023-12-15T23:56:26.430Z INFO sending Commit {"height": 6645, "view": 0} -2023-12-15T23:56:26.430Z INFO approving block {"height": 6645, "hash": "9a80bf0a38f012ca0bc84fee46a010333b2c815ba271a4c4d248145d4901bb3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39f77e5a7fb4d4136591a2655f610256841f1c9d4f26dbee7e2bc8a06e7b2358"} -2023-12-15T23:56:26.432Z INFO initializing dbft {"height": 6646, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:26.433Z debug frostfs-node/morph.go:229 new block {"index": 6645} -2023-12-15T23:56:27.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6645, "blockHeight": 6645, "took": "8.251463ms"} -2023-12-15T23:56:27.432Z INFO sending PrepareRequest {"height": 6646, "view": 0} -2023-12-15T23:56:27.432Z INFO sending Commit {"height": 6646, "view": 0} -2023-12-15T23:56:27.432Z INFO approving block {"height": 6646, "hash": "8dcfff9138bcee560c8f9acbd3ca76b7f59880a9f7f6a1e8a6b55b3a63480d06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a80bf0a38f012ca0bc84fee46a010333b2c815ba271a4c4d248145d4901bb3c"} -2023-12-15T23:56:27.434Z INFO initializing dbft {"height": 6647, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:27.435Z debug frostfs-node/morph.go:229 new block {"index": 6646} -2023-12-15T23:56:28.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6646, "blockHeight": 6646, "took": "7.331253ms"} -2023-12-15T23:56:28.434Z INFO sending PrepareRequest {"height": 6647, "view": 0} -2023-12-15T23:56:28.434Z INFO sending Commit {"height": 6647, "view": 0} -2023-12-15T23:56:28.435Z INFO approving block {"height": 6647, "hash": "0d5db4844fcb5f718464fbf08fa253e2663e0fe04fa2cfc1c1d12532def7d89a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8dcfff9138bcee560c8f9acbd3ca76b7f59880a9f7f6a1e8a6b55b3a63480d06"} -2023-12-15T23:56:28.437Z INFO initializing dbft {"height": 6648, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:28.438Z debug frostfs-node/morph.go:229 new block {"index": 6647} -2023-12-15T23:56:29.136Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6647, "blockHeight": 6647, "took": "9.026826ms"} -2023-12-15T23:56:29.436Z INFO sending PrepareRequest {"height": 6648, "view": 0} -2023-12-15T23:56:29.436Z INFO sending Commit {"height": 6648, "view": 0} -2023-12-15T23:56:29.436Z INFO approving block {"height": 6648, "hash": "5f90e639b832d8c048d528afa2795014e017a315510f97709351613e84d1884b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d5db4844fcb5f718464fbf08fa253e2663e0fe04fa2cfc1c1d12532def7d89a"} -2023-12-15T23:56:29.438Z INFO initializing dbft {"height": 6649, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:29.439Z debug frostfs-node/morph.go:229 new block {"index": 6648} -2023-12-15T23:56:30.138Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6648, "blockHeight": 6648, "took": "9.601622ms"} -2023-12-15T23:56:30.438Z INFO sending PrepareRequest {"height": 6649, "view": 0} -2023-12-15T23:56:30.438Z INFO sending Commit {"height": 6649, "view": 0} -2023-12-15T23:56:30.438Z INFO approving block {"height": 6649, "hash": "172abb71cb2f1aaeb03056a6dd83187bec960bb53600b58b775555b456db5133", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f90e639b832d8c048d528afa2795014e017a315510f97709351613e84d1884b"} -2023-12-15T23:56:30.440Z INFO initializing dbft {"height": 6650, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:30.441Z debug frostfs-node/morph.go:229 new block {"index": 6649} -2023-12-15T23:56:31.138Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6649, "blockHeight": 6649, "took": "8.516728ms"} -2023-12-15T23:56:31.440Z INFO sending PrepareRequest {"height": 6650, "view": 0} -2023-12-15T23:56:31.440Z INFO sending Commit {"height": 6650, "view": 0} -2023-12-15T23:56:31.440Z INFO approving block {"height": 6650, "hash": "60bf5b1b57bc05616aecb5fa252991a24641c55b74e4a7512a8e8bf93217aaca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "172abb71cb2f1aaeb03056a6dd83187bec960bb53600b58b775555b456db5133"} -2023-12-15T23:56:31.442Z INFO initializing dbft {"height": 6651, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:31.443Z debug frostfs-node/morph.go:229 new block {"index": 6650} -2023-12-15T23:56:32.137Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6650, "blockHeight": 6650, "took": "6.561653ms"} -2023-12-15T23:56:32.442Z INFO sending PrepareRequest {"height": 6651, "view": 0} -2023-12-15T23:56:32.443Z INFO sending Commit {"height": 6651, "view": 0} -2023-12-15T23:56:32.443Z INFO approving block {"height": 6651, "hash": "d0bf0c90158439acbf559355dd0689a2403c69f34137a0acf83c538e500f78dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60bf5b1b57bc05616aecb5fa252991a24641c55b74e4a7512a8e8bf93217aaca"} -2023-12-15T23:56:32.445Z INFO initializing dbft {"height": 6652, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:32.445Z debug frostfs-node/morph.go:229 new block {"index": 6651} -2023-12-15T23:56:33.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6651, "blockHeight": 6651, "took": "10.291991ms"} -2023-12-15T23:56:33.444Z INFO sending PrepareRequest {"height": 6652, "view": 0} -2023-12-15T23:56:33.444Z INFO sending Commit {"height": 6652, "view": 0} -2023-12-15T23:56:33.445Z INFO approving block {"height": 6652, "hash": "6ae550504b2aaa7810e4488f191edd869b89f31fdbebb7e3f917fc3ad4af98c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0bf0c90158439acbf559355dd0689a2403c69f34137a0acf83c538e500f78dd"} -2023-12-15T23:56:33.447Z INFO initializing dbft {"height": 6653, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:33.448Z debug frostfs-node/morph.go:229 new block {"index": 6652} -2023-12-15T23:56:34.144Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6652, "blockHeight": 6652, "took": "11.262332ms"} -2023-12-15T23:56:34.446Z INFO sending PrepareRequest {"height": 6653, "view": 0} -2023-12-15T23:56:34.447Z INFO sending Commit {"height": 6653, "view": 0} -2023-12-15T23:56:34.447Z INFO approving block {"height": 6653, "hash": "464b5dde8e3ce66e56b07a43f0d8efb3888e990c862bba5f571a867c2454e105", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ae550504b2aaa7810e4488f191edd869b89f31fdbebb7e3f917fc3ad4af98c7"} -2023-12-15T23:56:34.448Z INFO initializing dbft {"height": 6654, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:34.449Z debug frostfs-node/morph.go:229 new block {"index": 6653} -2023-12-15T23:56:35.145Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6653, "blockHeight": 6653, "took": "10.489486ms"} -2023-12-15T23:56:35.449Z INFO sending PrepareRequest {"height": 6654, "view": 0} -2023-12-15T23:56:35.449Z INFO sending Commit {"height": 6654, "view": 0} -2023-12-15T23:56:35.450Z INFO approving block {"height": 6654, "hash": "634eec1c239e4800f34d27787338a03568d81e9765ebe68d3cfdb057af12f115", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "464b5dde8e3ce66e56b07a43f0d8efb3888e990c862bba5f571a867c2454e105"} -2023-12-15T23:56:35.451Z INFO initializing dbft {"height": 6655, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:35.452Z debug frostfs-node/morph.go:229 new block {"index": 6654} -2023-12-15T23:56:36.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6654, "blockHeight": 6654, "took": "5.960142ms"} -2023-12-15T23:56:36.451Z INFO sending PrepareRequest {"height": 6655, "view": 0} -2023-12-15T23:56:36.451Z INFO sending Commit {"height": 6655, "view": 0} -2023-12-15T23:56:36.452Z INFO approving block {"height": 6655, "hash": "70958b00cfd00cf9cfc6f293aa2cd26a5deebc1fd5397c87a161ef520e025e27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "634eec1c239e4800f34d27787338a03568d81e9765ebe68d3cfdb057af12f115"} -2023-12-15T23:56:36.453Z INFO initializing dbft {"height": 6656, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:36.453Z debug frostfs-node/morph.go:229 new block {"index": 6655} -2023-12-15T23:56:37.143Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 6655, "blockHeight": 6655, "took": "7.114261ms"} -2023-12-15T23:56:37.453Z INFO sending PrepareRequest {"height": 6656, "view": 0} -2023-12-15T23:56:37.453Z INFO sending Commit {"height": 6656, "view": 0} -2023-12-15T23:56:37.453Z INFO approving block {"height": 6656, "hash": "e3891a8566b7b2fe273a313d5b584e14b5dcde752aee1123e822a77c0d6e5672", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70958b00cfd00cf9cfc6f293aa2cd26a5deebc1fd5397c87a161ef520e025e27"} -2023-12-15T23:56:37.455Z INFO initializing dbft {"height": 6657, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:37.455Z debug frostfs-node/morph.go:229 new block {"index": 6656} -2023-12-15T23:56:38.146Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6656, "blockHeight": 6656, "took": "9.907977ms"} -2023-12-15T23:56:38.455Z INFO sending PrepareRequest {"height": 6657, "view": 0} -2023-12-15T23:56:38.455Z INFO sending Commit {"height": 6657, "view": 0} -2023-12-15T23:56:38.456Z INFO approving block {"height": 6657, "hash": "73b0a4a72b9ece98641b1a1dce029894c1752779816522b6aca1d59f7d61ac4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3891a8566b7b2fe273a313d5b584e14b5dcde752aee1123e822a77c0d6e5672"} -2023-12-15T23:56:38.458Z INFO initializing dbft {"height": 6658, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:38.459Z debug frostfs-node/morph.go:229 new block {"index": 6657} -2023-12-15T23:56:39.148Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6657, "blockHeight": 6657, "took": "10.463876ms"} -2023-12-15T23:56:39.457Z INFO sending PrepareRequest {"height": 6658, "view": 0} -2023-12-15T23:56:39.457Z INFO sending Commit {"height": 6658, "view": 0} -2023-12-15T23:56:39.458Z INFO approving block {"height": 6658, "hash": "b785163a738153bba6ce8be0c5fcff23b337fd70ccecdb85e392e74f27718a5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73b0a4a72b9ece98641b1a1dce029894c1752779816522b6aca1d59f7d61ac4f"} -2023-12-15T23:56:39.459Z INFO initializing dbft {"height": 6659, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:39.460Z debug frostfs-node/morph.go:229 new block {"index": 6658} -2023-12-15T23:56:40.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6658, "blockHeight": 6658, "took": "10.830507ms"} -2023-12-15T23:56:40.459Z INFO sending PrepareRequest {"height": 6659, "view": 0} -2023-12-15T23:56:40.459Z INFO sending Commit {"height": 6659, "view": 0} -2023-12-15T23:56:40.459Z INFO approving block {"height": 6659, "hash": "d8e60913c9d6b0e1c13a2a5308cbe9e250dfcbb005f2cba91031d92fb8f3da8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b785163a738153bba6ce8be0c5fcff23b337fd70ccecdb85e392e74f27718a5a"} -2023-12-15T23:56:40.461Z INFO initializing dbft {"height": 6660, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:40.462Z debug frostfs-node/morph.go:229 new block {"index": 6659} -2023-12-15T23:56:41.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6659, "blockHeight": 6659, "took": "7.761007ms"} -2023-12-15T23:56:41.461Z INFO sending PrepareRequest {"height": 6660, "view": 0} -2023-12-15T23:56:41.461Z INFO sending Commit {"height": 6660, "view": 0} -2023-12-15T23:56:41.461Z INFO approving block {"height": 6660, "hash": "655a629b4879d33abcab8c77ca0aa89e3194dcd32dc5080241f010860f5ea18c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8e60913c9d6b0e1c13a2a5308cbe9e250dfcbb005f2cba91031d92fb8f3da8d"} -2023-12-15T23:56:41.463Z INFO initializing dbft {"height": 6661, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:41.464Z debug frostfs-node/morph.go:229 new block {"index": 6660} -2023-12-15T23:56:42.148Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6660, "blockHeight": 6660, "took": "7.256192ms"} -2023-12-15T23:56:42.463Z INFO sending PrepareRequest {"height": 6661, "view": 0} -2023-12-15T23:56:42.463Z INFO sending Commit {"height": 6661, "view": 0} -2023-12-15T23:56:42.464Z INFO approving block {"height": 6661, "hash": "01c858d06c0d3d00e3e8b15838c885bfc9df5d85a131c39c3ddce9f9d2b7ac73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "655a629b4879d33abcab8c77ca0aa89e3194dcd32dc5080241f010860f5ea18c"} -2023-12-15T23:56:42.465Z INFO initializing dbft {"height": 6662, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:42.466Z debug frostfs-node/morph.go:229 new block {"index": 6661} -2023-12-15T23:56:43.150Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6661, "blockHeight": 6661, "took": "8.409776ms"} -2023-12-15T23:56:43.465Z INFO sending PrepareRequest {"height": 6662, "view": 0} -2023-12-15T23:56:43.466Z INFO sending Commit {"height": 6662, "view": 0} -2023-12-15T23:56:43.466Z INFO approving block {"height": 6662, "hash": "d00c5426b16d28794f75194c43e689aad69ee579d051fc962b0353b990075dd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01c858d06c0d3d00e3e8b15838c885bfc9df5d85a131c39c3ddce9f9d2b7ac73"} -2023-12-15T23:56:43.467Z INFO initializing dbft {"height": 6663, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:43.468Z debug frostfs-node/morph.go:229 new block {"index": 6662} -2023-12-15T23:56:44.151Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6662, "blockHeight": 6662, "took": "9.059214ms"} -2023-12-15T23:56:44.467Z INFO sending PrepareRequest {"height": 6663, "view": 0} -2023-12-15T23:56:44.468Z INFO sending Commit {"height": 6663, "view": 0} -2023-12-15T23:56:44.468Z INFO approving block {"height": 6663, "hash": "98c036267ed655f4227b25df36691e5b12ff4278af9fc593cc581bb7729e2267", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d00c5426b16d28794f75194c43e689aad69ee579d051fc962b0353b990075dd5"} -2023-12-15T23:56:44.469Z INFO initializing dbft {"height": 6664, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:44.470Z debug frostfs-node/morph.go:229 new block {"index": 6663} -2023-12-15T23:56:45.150Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6663, "blockHeight": 6663, "took": "6.801578ms"} -2023-12-15T23:56:45.470Z INFO sending PrepareRequest {"height": 6664, "view": 0} -2023-12-15T23:56:45.470Z INFO sending Commit {"height": 6664, "view": 0} -2023-12-15T23:56:45.470Z INFO approving block {"height": 6664, "hash": "28725e0acfae63e571ba2d333b59d3de046434deead02ab2a1995834b2a327de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98c036267ed655f4227b25df36691e5b12ff4278af9fc593cc581bb7729e2267"} -2023-12-15T23:56:45.472Z INFO initializing dbft {"height": 6665, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:45.473Z debug frostfs-node/morph.go:229 new block {"index": 6664} -2023-12-15T23:56:46.154Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6664, "blockHeight": 6664, "took": "10.474859ms"} -2023-12-15T23:56:46.472Z INFO sending PrepareRequest {"height": 6665, "view": 0} -2023-12-15T23:56:46.473Z INFO sending Commit {"height": 6665, "view": 0} -2023-12-15T23:56:46.473Z INFO approving block {"height": 6665, "hash": "324cbe94f287c8a65a83c1922e4a40ffc65762f6f6619df5b37a64d028f6e259", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28725e0acfae63e571ba2d333b59d3de046434deead02ab2a1995834b2a327de"} -2023-12-15T23:56:46.475Z INFO initializing dbft {"height": 6666, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:46.476Z debug frostfs-node/morph.go:229 new block {"index": 6665} -2023-12-15T23:56:47.151Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6665, "blockHeight": 6665, "took": "6.106998ms"} -2023-12-15T23:56:47.474Z INFO sending PrepareRequest {"height": 6666, "view": 0} -2023-12-15T23:56:47.475Z INFO sending Commit {"height": 6666, "view": 0} -2023-12-15T23:56:47.475Z INFO approving block {"height": 6666, "hash": "89d326dc48264807985f664f535ec9db1006391ac3be39ca48bdbe9e7c833c47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "324cbe94f287c8a65a83c1922e4a40ffc65762f6f6619df5b37a64d028f6e259"} -2023-12-15T23:56:47.477Z INFO initializing dbft {"height": 6667, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:47.478Z debug frostfs-node/morph.go:229 new block {"index": 6666} -2023-12-15T23:56:48.154Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6666, "blockHeight": 6666, "took": "8.940052ms"} -2023-12-15T23:56:48.476Z INFO sending PrepareRequest {"height": 6667, "view": 0} -2023-12-15T23:56:48.476Z INFO sending Commit {"height": 6667, "view": 0} -2023-12-15T23:56:48.477Z INFO approving block {"height": 6667, "hash": "2e92234a57e7a480a81ca19745db446ce6b004febc798650fc7a1b169f22c256", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89d326dc48264807985f664f535ec9db1006391ac3be39ca48bdbe9e7c833c47"} -2023-12-15T23:56:48.479Z INFO initializing dbft {"height": 6668, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:48.479Z debug frostfs-node/morph.go:229 new block {"index": 6667} -2023-12-15T23:56:48.483Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:56:48.489Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:56:48.489Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:56:49.157Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6667, "blockHeight": 6667, "took": "11.34644ms"} -2023-12-15T23:56:49.478Z INFO sending PrepareRequest {"height": 6668, "view": 0} -2023-12-15T23:56:49.479Z INFO sending Commit {"height": 6668, "view": 0} -2023-12-15T23:56:49.479Z INFO approving block {"height": 6668, "hash": "cff4c0d73d2b52937fe92fd74445e6e41d5ceed8647973193c0983639bd203fe", "tx_count": 2, "merkle": "18076181123e3818dae1bd46cdf922a0829c886df487d790c3dcbdd9eb079ae7", "prev": "2e92234a57e7a480a81ca19745db446ce6b004febc798650fc7a1b169f22c256"} -2023-12-15T23:56:49.479Z INFO runtime log {"tx": "a010510af4559f47ebf03fa73f8bba5de74a3fac5a5d9a975dc50cc082fdf33c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:56:49.480Z INFO runtime log {"tx": "a010510af4559f47ebf03fa73f8bba5de74a3fac5a5d9a975dc50cc082fdf33c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:56:49.481Z INFO initializing dbft {"height": 6669, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:49.482Z debug frostfs-node/morph.go:229 new block {"index": 6668} -2023-12-15T23:56:50.163Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6668, "blockHeight": 6668, "took": "15.676076ms"} -2023-12-15T23:56:50.480Z INFO sending PrepareRequest {"height": 6669, "view": 0} -2023-12-15T23:56:50.481Z INFO sending Commit {"height": 6669, "view": 0} -2023-12-15T23:56:50.481Z INFO approving block {"height": 6669, "hash": "3f6fc29c8bba7531f59b9d645ab308154e7655c7cb32dc432f824dda9f9a06f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cff4c0d73d2b52937fe92fd74445e6e41d5ceed8647973193c0983639bd203fe"} -2023-12-15T23:56:50.483Z INFO initializing dbft {"height": 6670, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:50.484Z debug frostfs-node/morph.go:229 new block {"index": 6669} -2023-12-15T23:56:51.155Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6669, "blockHeight": 6669, "took": "6.563111ms"} -2023-12-15T23:56:51.482Z INFO sending PrepareRequest {"height": 6670, "view": 0} -2023-12-15T23:56:51.483Z INFO sending Commit {"height": 6670, "view": 0} -2023-12-15T23:56:51.483Z INFO approving block {"height": 6670, "hash": "657df0e496b4db1c6e6383ed8428ab0face5b0ed7d12ae1f3d6813494d7cadf7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f6fc29c8bba7531f59b9d645ab308154e7655c7cb32dc432f824dda9f9a06f5"} -2023-12-15T23:56:51.485Z INFO initializing dbft {"height": 6671, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:51.486Z debug frostfs-node/morph.go:229 new block {"index": 6670} -2023-12-15T23:56:52.156Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6670, "blockHeight": 6670, "took": "7.160488ms"} -2023-12-15T23:56:52.484Z INFO sending PrepareRequest {"height": 6671, "view": 0} -2023-12-15T23:56:52.485Z INFO sending Commit {"height": 6671, "view": 0} -2023-12-15T23:56:52.485Z INFO approving block {"height": 6671, "hash": "d2ff546a69040d33b7ab51b543f663c131f7e4a681998adb66c012237b08868a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "657df0e496b4db1c6e6383ed8428ab0face5b0ed7d12ae1f3d6813494d7cadf7"} -2023-12-15T23:56:52.487Z INFO initializing dbft {"height": 6672, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:52.488Z debug frostfs-node/morph.go:229 new block {"index": 6671} -2023-12-15T23:56:53.157Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6671, "blockHeight": 6671, "took": "6.660365ms"} -2023-12-15T23:56:53.486Z INFO sending PrepareRequest {"height": 6672, "view": 0} -2023-12-15T23:56:53.486Z INFO sending Commit {"height": 6672, "view": 0} -2023-12-15T23:56:53.487Z INFO approving block {"height": 6672, "hash": "a97653795326ea171ef2309d952512bf2249bdbe51926659df60fada11c514b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2ff546a69040d33b7ab51b543f663c131f7e4a681998adb66c012237b08868a"} -2023-12-15T23:56:53.489Z INFO initializing dbft {"height": 6673, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:53.490Z debug frostfs-node/morph.go:229 new block {"index": 6672} -2023-12-15T23:56:54.158Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6672, "blockHeight": 6672, "took": "7.259412ms"} -2023-12-15T23:56:54.488Z INFO sending PrepareRequest {"height": 6673, "view": 0} -2023-12-15T23:56:54.488Z INFO sending Commit {"height": 6673, "view": 0} -2023-12-15T23:56:54.489Z INFO approving block {"height": 6673, "hash": "007f129e99902f57572bb27f217a824d7eb366cbd2e17b133efbea705d7babf2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a97653795326ea171ef2309d952512bf2249bdbe51926659df60fada11c514b5"} -2023-12-15T23:56:54.491Z INFO initializing dbft {"height": 6674, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:54.491Z debug frostfs-node/morph.go:229 new block {"index": 6673} -2023-12-15T23:56:55.160Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6673, "blockHeight": 6673, "took": "7.90779ms"} -2023-12-15T23:56:55.491Z INFO sending PrepareRequest {"height": 6674, "view": 0} -2023-12-15T23:56:55.491Z INFO sending Commit {"height": 6674, "view": 0} -2023-12-15T23:56:55.491Z INFO approving block {"height": 6674, "hash": "52c0ec59bff48ada3b06237029f5547fd5f7886ceaf00431f7815458edda3173", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "007f129e99902f57572bb27f217a824d7eb366cbd2e17b133efbea705d7babf2"} -2023-12-15T23:56:55.493Z INFO initializing dbft {"height": 6675, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:55.494Z debug frostfs-node/morph.go:229 new block {"index": 6674} -2023-12-15T23:56:56.160Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6674, "blockHeight": 6674, "took": "7.296953ms"} -2023-12-15T23:56:56.493Z INFO sending PrepareRequest {"height": 6675, "view": 0} -2023-12-15T23:56:56.494Z INFO sending Commit {"height": 6675, "view": 0} -2023-12-15T23:56:56.494Z INFO approving block {"height": 6675, "hash": "bd16fffddecb112f6bf41ce7d1fa43d8e49d347945e3de3bf0e7e8aad1f50304", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52c0ec59bff48ada3b06237029f5547fd5f7886ceaf00431f7815458edda3173"} -2023-12-15T23:56:56.495Z INFO initializing dbft {"height": 6676, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:56.496Z debug frostfs-node/morph.go:229 new block {"index": 6675} -2023-12-15T23:56:57.162Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6675, "blockHeight": 6675, "took": "6.853249ms"} -2023-12-15T23:56:57.495Z INFO sending PrepareRequest {"height": 6676, "view": 0} -2023-12-15T23:56:57.495Z INFO sending Commit {"height": 6676, "view": 0} -2023-12-15T23:56:57.495Z INFO approving block {"height": 6676, "hash": "113431a6d248434e2a8198c8816675252932bca496244ede440f6a6f271f22c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd16fffddecb112f6bf41ce7d1fa43d8e49d347945e3de3bf0e7e8aad1f50304"} -2023-12-15T23:56:57.497Z INFO initializing dbft {"height": 6677, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:57.498Z debug frostfs-node/morph.go:229 new block {"index": 6676} -2023-12-15T23:56:58.162Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6676, "blockHeight": 6676, "took": "6.567861ms"} -2023-12-15T23:56:58.497Z INFO sending PrepareRequest {"height": 6677, "view": 0} -2023-12-15T23:56:58.497Z INFO sending Commit {"height": 6677, "view": 0} -2023-12-15T23:56:58.497Z INFO approving block {"height": 6677, "hash": "f840159cc0ac9321bb8f866b427f4caf2f0df9288d5d8023af2773e348ea3363", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "113431a6d248434e2a8198c8816675252932bca496244ede440f6a6f271f22c9"} -2023-12-15T23:56:58.499Z INFO initializing dbft {"height": 6678, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:58.500Z debug frostfs-node/morph.go:229 new block {"index": 6677} -2023-12-15T23:56:59.164Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6677, "blockHeight": 6677, "took": "7.76303ms"} -2023-12-15T23:56:59.499Z INFO sending PrepareRequest {"height": 6678, "view": 0} -2023-12-15T23:56:59.499Z INFO sending Commit {"height": 6678, "view": 0} -2023-12-15T23:56:59.499Z INFO approving block {"height": 6678, "hash": "7fa2f4fc17157ffde5b585e3166ecdd5be2a07aa83582c3235d8213ee13ce59a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f840159cc0ac9321bb8f866b427f4caf2f0df9288d5d8023af2773e348ea3363"} -2023-12-15T23:56:59.501Z INFO initializing dbft {"height": 6679, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:56:59.501Z debug frostfs-node/morph.go:229 new block {"index": 6678} -2023-12-15T23:57:00.164Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6678, "blockHeight": 6678, "took": "6.429288ms"} -2023-12-15T23:57:00.501Z INFO sending PrepareRequest {"height": 6679, "view": 0} -2023-12-15T23:57:00.501Z INFO sending Commit {"height": 6679, "view": 0} -2023-12-15T23:57:00.501Z INFO approving block {"height": 6679, "hash": "06db65d7a4da51177318c8f2cb587a5ad5cd13bc69bda39640d11ef31c492da1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fa2f4fc17157ffde5b585e3166ecdd5be2a07aa83582c3235d8213ee13ce59a"} -2023-12-15T23:57:00.502Z INFO initializing dbft {"height": 6680, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:00.503Z debug frostfs-node/morph.go:229 new block {"index": 6679} -2023-12-15T23:57:01.167Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6679, "blockHeight": 6679, "took": "8.208989ms"} -2023-12-15T23:57:01.502Z INFO sending PrepareRequest {"height": 6680, "view": 0} -2023-12-15T23:57:01.503Z INFO sending Commit {"height": 6680, "view": 0} -2023-12-15T23:57:01.503Z INFO approving block {"height": 6680, "hash": "c8db9ba78042f94b31a4e02869aa67f6ad6b395e8e394167a7c57d1beeee11eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06db65d7a4da51177318c8f2cb587a5ad5cd13bc69bda39640d11ef31c492da1"} -2023-12-15T23:57:01.504Z INFO initializing dbft {"height": 6681, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:01.505Z debug frostfs-node/morph.go:229 new block {"index": 6680} -2023-12-15T23:57:02.166Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6680, "blockHeight": 6680, "took": "6.288254ms"} -2023-12-15T23:57:02.504Z INFO sending PrepareRequest {"height": 6681, "view": 0} -2023-12-15T23:57:02.504Z INFO sending Commit {"height": 6681, "view": 0} -2023-12-15T23:57:02.505Z INFO approving block {"height": 6681, "hash": "3b491c9772f2bc6c7ec99ba9f84bd84660f34fd4f8b4e772d4fc38cfc1477717", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8db9ba78042f94b31a4e02869aa67f6ad6b395e8e394167a7c57d1beeee11eb"} -2023-12-15T23:57:02.506Z INFO initializing dbft {"height": 6682, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:02.507Z debug frostfs-node/morph.go:229 new block {"index": 6681} -2023-12-15T23:57:03.167Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6681, "blockHeight": 6681, "took": "6.608468ms"} -2023-12-15T23:57:03.506Z INFO sending PrepareRequest {"height": 6682, "view": 0} -2023-12-15T23:57:03.507Z INFO sending Commit {"height": 6682, "view": 0} -2023-12-15T23:57:03.507Z INFO approving block {"height": 6682, "hash": "c1bcdaea666d4b8f89cf7e2d3f0052d6765463dcacabde7e3a3e01de56860822", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b491c9772f2bc6c7ec99ba9f84bd84660f34fd4f8b4e772d4fc38cfc1477717"} -2023-12-15T23:57:03.509Z INFO initializing dbft {"height": 6683, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:03.510Z debug frostfs-node/morph.go:229 new block {"index": 6682} -2023-12-15T23:57:04.168Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6682, "blockHeight": 6682, "took": "7.247056ms"} -2023-12-15T23:57:04.509Z INFO sending PrepareRequest {"height": 6683, "view": 0} -2023-12-15T23:57:04.509Z INFO sending Commit {"height": 6683, "view": 0} -2023-12-15T23:57:04.509Z INFO approving block {"height": 6683, "hash": "11155904080d7bde01b761cb271212f02d4108aed7e2bb62ff601f27eee88ecf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1bcdaea666d4b8f89cf7e2d3f0052d6765463dcacabde7e3a3e01de56860822"} -2023-12-15T23:57:04.511Z INFO initializing dbft {"height": 6684, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:04.511Z debug frostfs-node/morph.go:229 new block {"index": 6683} -2023-12-15T23:57:05.168Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6683, "blockHeight": 6683, "took": "6.871255ms"} -2023-12-15T23:57:05.511Z INFO sending PrepareRequest {"height": 6684, "view": 0} -2023-12-15T23:57:05.511Z INFO sending Commit {"height": 6684, "view": 0} -2023-12-15T23:57:05.512Z INFO approving block {"height": 6684, "hash": "28a5cdccaa737b1630bfe7cdabeefe861dea708222557a699ae7038a6956932c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11155904080d7bde01b761cb271212f02d4108aed7e2bb62ff601f27eee88ecf"} -2023-12-15T23:57:05.513Z INFO initializing dbft {"height": 6685, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:05.514Z debug frostfs-node/morph.go:229 new block {"index": 6684} -2023-12-15T23:57:06.170Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6684, "blockHeight": 6684, "took": "6.769307ms"} -2023-12-15T23:57:06.513Z INFO sending PrepareRequest {"height": 6685, "view": 0} -2023-12-15T23:57:06.513Z INFO sending Commit {"height": 6685, "view": 0} -2023-12-15T23:57:06.513Z INFO approving block {"height": 6685, "hash": "4230264a428c628b965d292832ffcacffa4210f2245bbeeb9b509fd4648445d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28a5cdccaa737b1630bfe7cdabeefe861dea708222557a699ae7038a6956932c"} -2023-12-15T23:57:06.515Z INFO initializing dbft {"height": 6686, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:06.516Z debug frostfs-node/morph.go:229 new block {"index": 6685} -2023-12-15T23:57:07.171Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6685, "blockHeight": 6685, "took": "6.84264ms"} -2023-12-15T23:57:07.514Z INFO sending PrepareRequest {"height": 6686, "view": 0} -2023-12-15T23:57:07.515Z INFO sending Commit {"height": 6686, "view": 0} -2023-12-15T23:57:07.515Z INFO approving block {"height": 6686, "hash": "759a0cfb79c260637fa468d340306c718aa06e8eaacc0763db40cd475731855b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4230264a428c628b965d292832ffcacffa4210f2245bbeeb9b509fd4648445d3"} -2023-12-15T23:57:07.517Z INFO initializing dbft {"height": 6687, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:07.518Z debug frostfs-node/morph.go:229 new block {"index": 6686} -2023-12-15T23:57:08.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6686, "blockHeight": 6686, "took": "8.066225ms"} -2023-12-15T23:57:08.516Z INFO sending PrepareRequest {"height": 6687, "view": 0} -2023-12-15T23:57:08.517Z INFO sending Commit {"height": 6687, "view": 0} -2023-12-15T23:57:08.517Z INFO approving block {"height": 6687, "hash": "bf94911e344bccf93c7008626dd470d690a245ad0ac3bb01b10ab279cb2e6d38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "759a0cfb79c260637fa468d340306c718aa06e8eaacc0763db40cd475731855b"} -2023-12-15T23:57:08.519Z INFO initializing dbft {"height": 6688, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:08.520Z debug frostfs-node/morph.go:229 new block {"index": 6687} -2023-12-15T23:57:08.525Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 28, "iteration": 2, "error": "no data for 1 iteration in 28 epoch for consumers's trusts"} -2023-12-15T23:57:08.526Z info settlement/calls.go:106 start basic income distribution {"epoch": 28} -2023-12-15T23:57:09.176Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6687, "blockHeight": 6687, "took": "10.30931ms"} -2023-12-15T23:57:09.518Z INFO sending PrepareRequest {"height": 6688, "view": 0} -2023-12-15T23:57:09.518Z INFO sending Commit {"height": 6688, "view": 0} -2023-12-15T23:57:09.519Z INFO approving block {"height": 6688, "hash": "dc61c25e2916e13b758f8c1b76e8f482312304dc8aae833b6f4fc40696efe68d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf94911e344bccf93c7008626dd470d690a245ad0ac3bb01b10ab279cb2e6d38"} -2023-12-15T23:57:09.520Z INFO initializing dbft {"height": 6689, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:09.521Z debug frostfs-node/morph.go:229 new block {"index": 6688} -2023-12-15T23:57:10.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6688, "blockHeight": 6688, "took": "6.751053ms"} -2023-12-15T23:57:10.520Z INFO sending PrepareRequest {"height": 6689, "view": 0} -2023-12-15T23:57:10.520Z INFO sending Commit {"height": 6689, "view": 0} -2023-12-15T23:57:10.521Z INFO approving block {"height": 6689, "hash": "58e16e5e1f373ab75900e9112a505810b27c03651f6033d0500debb8bcab7f5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc61c25e2916e13b758f8c1b76e8f482312304dc8aae833b6f4fc40696efe68d"} -2023-12-15T23:57:10.522Z INFO initializing dbft {"height": 6690, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:10.523Z debug frostfs-node/morph.go:229 new block {"index": 6689} -2023-12-15T23:57:11.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6689, "blockHeight": 6689, "took": "10.211938ms"} -2023-12-15T23:57:11.522Z INFO sending PrepareRequest {"height": 6690, "view": 0} -2023-12-15T23:57:11.522Z INFO sending Commit {"height": 6690, "view": 0} -2023-12-15T23:57:11.523Z INFO approving block {"height": 6690, "hash": "5602c5bfda3ca69c01c5ac879e5f05b8451a6d885b0d54b5b0f1c7c1f14e85fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58e16e5e1f373ab75900e9112a505810b27c03651f6033d0500debb8bcab7f5a"} -2023-12-15T23:57:11.525Z INFO initializing dbft {"height": 6691, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:11.525Z debug frostfs-node/morph.go:229 new block {"index": 6690} -2023-12-15T23:57:12.176Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6690, "blockHeight": 6690, "took": "7.600122ms"} -2023-12-15T23:57:12.524Z INFO sending PrepareRequest {"height": 6691, "view": 0} -2023-12-15T23:57:12.524Z INFO sending Commit {"height": 6691, "view": 0} -2023-12-15T23:57:12.525Z INFO approving block {"height": 6691, "hash": "c58f5f08127f5b16950509b350fdee719ff4718731948405bba8361e8bfa3982", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5602c5bfda3ca69c01c5ac879e5f05b8451a6d885b0d54b5b0f1c7c1f14e85fd"} -2023-12-15T23:57:12.527Z INFO initializing dbft {"height": 6692, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:12.527Z debug frostfs-node/morph.go:229 new block {"index": 6691} -2023-12-15T23:57:13.180Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6691, "blockHeight": 6691, "took": "10.209018ms"} -2023-12-15T23:57:13.526Z INFO sending PrepareRequest {"height": 6692, "view": 0} -2023-12-15T23:57:13.527Z INFO sending Commit {"height": 6692, "view": 0} -2023-12-15T23:57:13.527Z INFO approving block {"height": 6692, "hash": "dd942c5cc753938ec4e28117997fc7a0d733dd45a5d0a5a65e5389a938e3bdf8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c58f5f08127f5b16950509b350fdee719ff4718731948405bba8361e8bfa3982"} -2023-12-15T23:57:13.529Z INFO initializing dbft {"height": 6693, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:13.529Z debug frostfs-node/morph.go:229 new block {"index": 6692} -2023-12-15T23:57:14.176Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6692, "blockHeight": 6692, "took": "5.318304ms"} -2023-12-15T23:57:14.528Z INFO sending PrepareRequest {"height": 6693, "view": 0} -2023-12-15T23:57:14.528Z INFO sending Commit {"height": 6693, "view": 0} -2023-12-15T23:57:14.528Z INFO approving block {"height": 6693, "hash": "99bd2b7edae41ed49e8ad110fe7a1ec4918b760aa32748325b8d4bd2efb2870f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd942c5cc753938ec4e28117997fc7a0d733dd45a5d0a5a65e5389a938e3bdf8"} -2023-12-15T23:57:14.530Z INFO initializing dbft {"height": 6694, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:14.531Z debug frostfs-node/morph.go:229 new block {"index": 6693} -2023-12-15T23:57:15.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6693, "blockHeight": 6693, "took": "6.907071ms"} -2023-12-15T23:57:15.530Z INFO sending PrepareRequest {"height": 6694, "view": 0} -2023-12-15T23:57:15.530Z INFO sending Commit {"height": 6694, "view": 0} -2023-12-15T23:57:15.531Z INFO approving block {"height": 6694, "hash": "07f950c1b1208a0a5057b361e8ef8ce30f0326f16a6d9943da28e9a54a7c5675", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99bd2b7edae41ed49e8ad110fe7a1ec4918b760aa32748325b8d4bd2efb2870f"} -2023-12-15T23:57:15.533Z INFO initializing dbft {"height": 6695, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:15.534Z debug frostfs-node/morph.go:229 new block {"index": 6694} -2023-12-15T23:57:16.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6694, "blockHeight": 6694, "took": "6.748597ms"} -2023-12-15T23:57:16.532Z INFO sending PrepareRequest {"height": 6695, "view": 0} -2023-12-15T23:57:16.532Z INFO sending Commit {"height": 6695, "view": 0} -2023-12-15T23:57:16.532Z INFO approving block {"height": 6695, "hash": "6a45feb3e13887a912d27990f884fa0aa3ae8b43eed881a9fd84b998e4bdcaf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07f950c1b1208a0a5057b361e8ef8ce30f0326f16a6d9943da28e9a54a7c5675"} -2023-12-15T23:57:16.534Z INFO initializing dbft {"height": 6696, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:16.535Z debug frostfs-node/morph.go:229 new block {"index": 6695} -2023-12-15T23:57:17.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6695, "blockHeight": 6695, "took": "8.575281ms"} -2023-12-15T23:57:17.533Z INFO sending PrepareRequest {"height": 6696, "view": 0} -2023-12-15T23:57:17.534Z INFO sending Commit {"height": 6696, "view": 0} -2023-12-15T23:57:17.534Z INFO approving block {"height": 6696, "hash": "83c6f42ed2ee9e192fe4c878d858908a4d69ec070c982ebb1bd06bc2a4c5dee5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a45feb3e13887a912d27990f884fa0aa3ae8b43eed881a9fd84b998e4bdcaf9"} -2023-12-15T23:57:17.535Z INFO initializing dbft {"height": 6697, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:17.536Z debug frostfs-node/morph.go:229 new block {"index": 6696} -2023-12-15T23:57:18.182Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6696, "blockHeight": 6696, "took": "8.635671ms"} -2023-12-15T23:57:18.536Z INFO sending PrepareRequest {"height": 6697, "view": 0} -2023-12-15T23:57:18.536Z INFO sending Commit {"height": 6697, "view": 0} -2023-12-15T23:57:18.536Z INFO approving block {"height": 6697, "hash": "2ae0f326411bba8154ad2a865cd25663196dacb2c8709564ce70d5108657b4e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83c6f42ed2ee9e192fe4c878d858908a4d69ec070c982ebb1bd06bc2a4c5dee5"} -2023-12-15T23:57:18.539Z INFO initializing dbft {"height": 6698, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:18.539Z debug frostfs-node/morph.go:229 new block {"index": 6697} -2023-12-15T23:57:19.183Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6697, "blockHeight": 6697, "took": "8.404325ms"} -2023-12-15T23:57:19.538Z INFO sending PrepareRequest {"height": 6698, "view": 0} -2023-12-15T23:57:19.538Z INFO sending Commit {"height": 6698, "view": 0} -2023-12-15T23:57:19.538Z INFO approving block {"height": 6698, "hash": "0b41fa1c69fe14c8363d8011bc1ed3d161603dc8001a7982207774e605f27694", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ae0f326411bba8154ad2a865cd25663196dacb2c8709564ce70d5108657b4e6"} -2023-12-15T23:57:19.540Z INFO initializing dbft {"height": 6699, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:19.541Z debug frostfs-node/morph.go:229 new block {"index": 6698} -2023-12-15T23:57:20.183Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6698, "blockHeight": 6698, "took": "7.941722ms"} -2023-12-15T23:57:20.539Z INFO sending PrepareRequest {"height": 6699, "view": 0} -2023-12-15T23:57:20.540Z INFO sending Commit {"height": 6699, "view": 0} -2023-12-15T23:57:20.540Z INFO approving block {"height": 6699, "hash": "50c500376222cfd718696c7c844c6f34b51f63c8c3334ea60a3bcba8387292cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b41fa1c69fe14c8363d8011bc1ed3d161603dc8001a7982207774e605f27694"} -2023-12-15T23:57:20.542Z INFO initializing dbft {"height": 6700, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:20.543Z debug frostfs-node/morph.go:229 new block {"index": 6699} -2023-12-15T23:57:21.186Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6699, "blockHeight": 6699, "took": "9.729377ms"} -2023-12-15T23:57:21.542Z INFO sending PrepareRequest {"height": 6700, "view": 0} -2023-12-15T23:57:21.542Z INFO sending Commit {"height": 6700, "view": 0} -2023-12-15T23:57:21.543Z INFO approving block {"height": 6700, "hash": "42723429de5fb783133d3702ccf114b1cb2bb7de335a64a0c592a89509fb5c49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50c500376222cfd718696c7c844c6f34b51f63c8c3334ea60a3bcba8387292cf"} -2023-12-15T23:57:21.544Z INFO initializing dbft {"height": 6701, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:21.545Z debug frostfs-node/morph.go:229 new block {"index": 6700} -2023-12-15T23:57:22.186Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6700, "blockHeight": 6700, "took": "9.199469ms"} -2023-12-15T23:57:22.543Z INFO sending PrepareRequest {"height": 6701, "view": 0} -2023-12-15T23:57:22.543Z INFO sending Commit {"height": 6701, "view": 0} -2023-12-15T23:57:22.544Z INFO approving block {"height": 6701, "hash": "cbde8564c841b38bc0f57aa7e5382a42000af22486c242565f51b621de6d368d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42723429de5fb783133d3702ccf114b1cb2bb7de335a64a0c592a89509fb5c49"} -2023-12-15T23:57:22.545Z INFO initializing dbft {"height": 6702, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:22.546Z debug frostfs-node/morph.go:229 new block {"index": 6701} -2023-12-15T23:57:23.185Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6701, "blockHeight": 6701, "took": "6.997967ms"} -2023-12-15T23:57:23.545Z INFO sending PrepareRequest {"height": 6702, "view": 0} -2023-12-15T23:57:23.545Z INFO sending Commit {"height": 6702, "view": 0} -2023-12-15T23:57:23.545Z INFO approving block {"height": 6702, "hash": "c7e14134db2dd9a9aab57375ae3ca111784a267c644c0ac978ae3316cd61a2cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbde8564c841b38bc0f57aa7e5382a42000af22486c242565f51b621de6d368d"} -2023-12-15T23:57:23.546Z INFO initializing dbft {"height": 6703, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:23.547Z debug frostfs-node/morph.go:229 new block {"index": 6702} -2023-12-15T23:57:24.185Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6702, "blockHeight": 6702, "took": "7.10978ms"} -2023-12-15T23:57:24.547Z INFO sending PrepareRequest {"height": 6703, "view": 0} -2023-12-15T23:57:24.547Z INFO sending Commit {"height": 6703, "view": 0} -2023-12-15T23:57:24.548Z INFO approving block {"height": 6703, "hash": "bef33a1be0feef532b80118f80ca896cef2b071e74b0deb7de120788c28e96f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7e14134db2dd9a9aab57375ae3ca111784a267c644c0ac978ae3316cd61a2cf"} -2023-12-15T23:57:24.549Z INFO initializing dbft {"height": 6704, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:24.550Z debug frostfs-node/morph.go:229 new block {"index": 6703} -2023-12-15T23:57:25.189Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6703, "blockHeight": 6703, "took": "9.716373ms"} -2023-12-15T23:57:25.550Z INFO sending PrepareRequest {"height": 6704, "view": 0} -2023-12-15T23:57:25.550Z INFO sending Commit {"height": 6704, "view": 0} -2023-12-15T23:57:25.550Z INFO approving block {"height": 6704, "hash": "072967958267a52e4d32225afbdc539c502ce72c55703431fff18c6b926b45bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bef33a1be0feef532b80118f80ca896cef2b071e74b0deb7de120788c28e96f2"} -2023-12-15T23:57:25.552Z INFO initializing dbft {"height": 6705, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:25.553Z debug frostfs-node/morph.go:229 new block {"index": 6704} -2023-12-15T23:57:26.189Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6704, "blockHeight": 6704, "took": "8.335314ms"} -2023-12-15T23:57:26.551Z INFO sending PrepareRequest {"height": 6705, "view": 0} -2023-12-15T23:57:26.551Z INFO sending Commit {"height": 6705, "view": 0} -2023-12-15T23:57:26.552Z INFO approving block {"height": 6705, "hash": "5c1125cf67cc3b89d4ca88743dd5b1f646ddb67a80a33f877f3dceae60d1cd6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "072967958267a52e4d32225afbdc539c502ce72c55703431fff18c6b926b45bd"} -2023-12-15T23:57:26.554Z INFO initializing dbft {"height": 6706, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:26.556Z debug frostfs-node/morph.go:229 new block {"index": 6705} -2023-12-15T23:57:27.192Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6705, "blockHeight": 6705, "took": "10.533807ms"} -2023-12-15T23:57:27.553Z INFO sending PrepareRequest {"height": 6706, "view": 0} -2023-12-15T23:57:27.553Z INFO sending Commit {"height": 6706, "view": 0} -2023-12-15T23:57:27.553Z INFO approving block {"height": 6706, "hash": "edb80a31da795b7442a6559be76006ffeca13926448e9c7eb15098a48ba329af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c1125cf67cc3b89d4ca88743dd5b1f646ddb67a80a33f877f3dceae60d1cd6e"} -2023-12-15T23:57:27.555Z INFO initializing dbft {"height": 6707, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:27.556Z debug frostfs-node/morph.go:229 new block {"index": 6706} -2023-12-15T23:57:28.192Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6706, "blockHeight": 6706, "took": "9.218228ms"} -2023-12-15T23:57:28.554Z INFO sending PrepareRequest {"height": 6707, "view": 0} -2023-12-15T23:57:28.555Z INFO sending Commit {"height": 6707, "view": 0} -2023-12-15T23:57:28.555Z INFO approving block {"height": 6707, "hash": "02708ba0d08764a324ef45fb9f1ad4dc88f9a5ccb7c151bdcf28fe7f8e9ad174", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edb80a31da795b7442a6559be76006ffeca13926448e9c7eb15098a48ba329af"} -2023-12-15T23:57:28.557Z INFO initializing dbft {"height": 6708, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:28.558Z debug frostfs-node/morph.go:229 new block {"index": 6707} -2023-12-15T23:57:29.191Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6707, "blockHeight": 6707, "took": "7.20894ms"} -2023-12-15T23:57:29.556Z INFO sending PrepareRequest {"height": 6708, "view": 0} -2023-12-15T23:57:29.556Z INFO sending Commit {"height": 6708, "view": 0} -2023-12-15T23:57:29.556Z INFO approving block {"height": 6708, "hash": "9172e6ad886a9c2facbebc6d9224e73396792643ae88c214213d018959b4aa29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02708ba0d08764a324ef45fb9f1ad4dc88f9a5ccb7c151bdcf28fe7f8e9ad174"} -2023-12-15T23:57:29.558Z INFO initializing dbft {"height": 6709, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:29.559Z debug frostfs-node/morph.go:229 new block {"index": 6708} -2023-12-15T23:57:30.197Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6708, "blockHeight": 6708, "took": "12.534526ms"} -2023-12-15T23:57:30.558Z INFO sending PrepareRequest {"height": 6709, "view": 0} -2023-12-15T23:57:30.558Z INFO sending Commit {"height": 6709, "view": 0} -2023-12-15T23:57:30.558Z INFO approving block {"height": 6709, "hash": "a7f50a4d4a03a400125f3a61ac45ee59f040fd9d570135f1765a203da2803b4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9172e6ad886a9c2facbebc6d9224e73396792643ae88c214213d018959b4aa29"} -2023-12-15T23:57:30.560Z INFO initializing dbft {"height": 6710, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:30.561Z debug frostfs-node/morph.go:229 new block {"index": 6709} -2023-12-15T23:57:31.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6709, "blockHeight": 6709, "took": "11.46618ms"} -2023-12-15T23:57:31.559Z INFO sending PrepareRequest {"height": 6710, "view": 0} -2023-12-15T23:57:31.559Z INFO sending Commit {"height": 6710, "view": 0} -2023-12-15T23:57:31.560Z INFO approving block {"height": 6710, "hash": "7d94cbd921884fc9f22ca9e696b244b7b4a0f9c493f661151f1eb7493f506cee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7f50a4d4a03a400125f3a61ac45ee59f040fd9d570135f1765a203da2803b4c"} -2023-12-15T23:57:31.561Z INFO initializing dbft {"height": 6711, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:31.561Z debug frostfs-node/morph.go:229 new block {"index": 6710} -2023-12-15T23:57:32.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6710, "blockHeight": 6710, "took": "10.022233ms"} -2023-12-15T23:57:32.561Z INFO sending PrepareRequest {"height": 6711, "view": 0} -2023-12-15T23:57:32.561Z INFO sending Commit {"height": 6711, "view": 0} -2023-12-15T23:57:32.561Z INFO approving block {"height": 6711, "hash": "1ccfdd83e925e143252a121da7d357843a255ac92231a24a6eebaa9f70077ee0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d94cbd921884fc9f22ca9e696b244b7b4a0f9c493f661151f1eb7493f506cee"} -2023-12-15T23:57:32.563Z INFO initializing dbft {"height": 6712, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:32.564Z debug frostfs-node/morph.go:229 new block {"index": 6711} -2023-12-15T23:57:33.193Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6711, "blockHeight": 6711, "took": "6.640121ms"} -2023-12-15T23:57:33.563Z INFO sending PrepareRequest {"height": 6712, "view": 0} -2023-12-15T23:57:33.563Z INFO sending Commit {"height": 6712, "view": 0} -2023-12-15T23:57:33.564Z INFO approving block {"height": 6712, "hash": "0b419a0e5453cf2a0f921bedb2f7b0c7561ddc33df57650b6846149329fe6581", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ccfdd83e925e143252a121da7d357843a255ac92231a24a6eebaa9f70077ee0"} -2023-12-15T23:57:33.565Z INFO initializing dbft {"height": 6713, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:33.566Z debug frostfs-node/morph.go:229 new block {"index": 6712} -2023-12-15T23:57:34.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6712, "blockHeight": 6712, "took": "10.030722ms"} -2023-12-15T23:57:34.565Z INFO sending PrepareRequest {"height": 6713, "view": 0} -2023-12-15T23:57:34.565Z INFO sending Commit {"height": 6713, "view": 0} -2023-12-15T23:57:34.566Z INFO approving block {"height": 6713, "hash": "b9984feb38be0e31e1e5fe34decbb6be3ff6ed22730efaaeedccb750c1c3ef7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b419a0e5453cf2a0f921bedb2f7b0c7561ddc33df57650b6846149329fe6581"} -2023-12-15T23:57:34.567Z INFO initializing dbft {"height": 6714, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:34.568Z debug frostfs-node/morph.go:229 new block {"index": 6713} -2023-12-15T23:57:35.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6713, "blockHeight": 6713, "took": "7.188529ms"} -2023-12-15T23:57:35.568Z INFO sending PrepareRequest {"height": 6714, "view": 0} -2023-12-15T23:57:35.568Z INFO sending Commit {"height": 6714, "view": 0} -2023-12-15T23:57:35.568Z INFO approving block {"height": 6714, "hash": "dbebde772ceb1c9d02624af293b2c7db5b23ef906ad115ca031f7067ca72d304", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9984feb38be0e31e1e5fe34decbb6be3ff6ed22730efaaeedccb750c1c3ef7c"} -2023-12-15T23:57:35.570Z INFO initializing dbft {"height": 6715, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:35.571Z debug frostfs-node/morph.go:229 new block {"index": 6714} -2023-12-15T23:57:36.200Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6714, "blockHeight": 6714, "took": "10.873437ms"} -2023-12-15T23:57:36.570Z INFO sending PrepareRequest {"height": 6715, "view": 0} -2023-12-15T23:57:36.570Z INFO sending Commit {"height": 6715, "view": 0} -2023-12-15T23:57:36.571Z INFO approving block {"height": 6715, "hash": "2a90367e031055d097025b6ec382070d3dcf19c39412c6eaa5a6afe2102f9959", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dbebde772ceb1c9d02624af293b2c7db5b23ef906ad115ca031f7067ca72d304"} -2023-12-15T23:57:36.572Z INFO initializing dbft {"height": 6716, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:36.573Z debug frostfs-node/morph.go:229 new block {"index": 6715} -2023-12-15T23:57:37.199Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6715, "blockHeight": 6715, "took": "7.430103ms"} -2023-12-15T23:57:37.572Z INFO sending PrepareRequest {"height": 6716, "view": 0} -2023-12-15T23:57:37.572Z INFO sending Commit {"height": 6716, "view": 0} -2023-12-15T23:57:37.572Z INFO approving block {"height": 6716, "hash": "903d584c008f967154b019c99f656447d53fc6a99af0b8a44bae1032a58426dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a90367e031055d097025b6ec382070d3dcf19c39412c6eaa5a6afe2102f9959"} -2023-12-15T23:57:37.574Z INFO initializing dbft {"height": 6717, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:37.575Z debug frostfs-node/morph.go:229 new block {"index": 6716} -2023-12-15T23:57:38.202Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6716, "blockHeight": 6716, "took": "10.099034ms"} -2023-12-15T23:57:38.574Z INFO sending PrepareRequest {"height": 6717, "view": 0} -2023-12-15T23:57:38.574Z INFO sending Commit {"height": 6717, "view": 0} -2023-12-15T23:57:38.574Z INFO approving block {"height": 6717, "hash": "5958c2230832aba969810e130dce6a51f8ffa784c504b302d7dd51574f69266d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "903d584c008f967154b019c99f656447d53fc6a99af0b8a44bae1032a58426dd"} -2023-12-15T23:57:38.576Z INFO initializing dbft {"height": 6718, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:38.576Z debug frostfs-node/morph.go:229 new block {"index": 6717} -2023-12-15T23:57:38.580Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:57:38.584Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:57:38.585Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:57:39.202Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6717, "blockHeight": 6717, "took": "10.057832ms"} -2023-12-15T23:57:39.575Z INFO sending PrepareRequest {"height": 6718, "view": 0} -2023-12-15T23:57:39.576Z INFO sending Commit {"height": 6718, "view": 0} -2023-12-15T23:57:39.576Z INFO approving block {"height": 6718, "hash": "41e0f6d199c136f3db31f2c57c0b784d792b7791fe45846c04aa0a5116dce3de", "tx_count": 2, "merkle": "85a12f5f4bbd0309b6839dcd109f5399d039a18d88a8a869fbbbf3f694247bf4", "prev": "5958c2230832aba969810e130dce6a51f8ffa784c504b302d7dd51574f69266d"} -2023-12-15T23:57:39.577Z INFO runtime log {"tx": "d4c0db34ddf658693da88ab4f122e6fc3ea8135649b4b6092aeeb998fda7f944", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:57:39.577Z INFO runtime log {"tx": "d4c0db34ddf658693da88ab4f122e6fc3ea8135649b4b6092aeeb998fda7f944", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:57:39.579Z INFO initializing dbft {"height": 6719, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:39.580Z debug frostfs-node/morph.go:229 new block {"index": 6718} -2023-12-15T23:57:40.204Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6718, "blockHeight": 6718, "took": "11.208907ms"} -2023-12-15T23:57:40.577Z INFO sending PrepareRequest {"height": 6719, "view": 0} -2023-12-15T23:57:40.578Z INFO sending Commit {"height": 6719, "view": 0} -2023-12-15T23:57:40.578Z INFO approving block {"height": 6719, "hash": "e3473c963e1cd99873cb56fef594efc491ac3b340adec4dd8269c2f5e2ef122e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41e0f6d199c136f3db31f2c57c0b784d792b7791fe45846c04aa0a5116dce3de"} -2023-12-15T23:57:40.582Z INFO initializing dbft {"height": 6720, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:40.583Z debug frostfs-node/morph.go:229 new block {"index": 6719} -2023-12-15T23:57:41.200Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6719, "blockHeight": 6719, "took": "6.510616ms"} -2023-12-15T23:57:41.579Z INFO sending PrepareRequest {"height": 6720, "view": 0} -2023-12-15T23:57:41.580Z INFO sending Commit {"height": 6720, "view": 0} -2023-12-15T23:57:41.580Z INFO approving block {"height": 6720, "hash": "857831e44c06f77ff7386798706a1e54c75cd85a2799c234313bed766c94d501", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3473c963e1cd99873cb56fef594efc491ac3b340adec4dd8269c2f5e2ef122e"} -2023-12-15T23:57:41.582Z INFO initializing dbft {"height": 6721, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:41.583Z debug frostfs-node/morph.go:229 new block {"index": 6720} -2023-12-15T23:57:42.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6720, "blockHeight": 6720, "took": "8.758921ms"} -2023-12-15T23:57:42.581Z INFO sending PrepareRequest {"height": 6721, "view": 0} -2023-12-15T23:57:42.582Z INFO sending Commit {"height": 6721, "view": 0} -2023-12-15T23:57:42.582Z INFO approving block {"height": 6721, "hash": "a1ad0f4b23688c7c0a6987c4d6d4d508ca9a185a3a3a96bcdde57b8f777d9fdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "857831e44c06f77ff7386798706a1e54c75cd85a2799c234313bed766c94d501"} -2023-12-15T23:57:42.584Z INFO initializing dbft {"height": 6722, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:42.586Z debug frostfs-node/morph.go:229 new block {"index": 6721} -2023-12-15T23:57:43.202Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6721, "blockHeight": 6721, "took": "7.52745ms"} -2023-12-15T23:57:43.583Z INFO sending PrepareRequest {"height": 6722, "view": 0} -2023-12-15T23:57:43.583Z INFO sending Commit {"height": 6722, "view": 0} -2023-12-15T23:57:43.584Z INFO approving block {"height": 6722, "hash": "d0fba7e3dda569da6fa765de6a279ce613821b049ff6bbd03c8d007b813a8b38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1ad0f4b23688c7c0a6987c4d6d4d508ca9a185a3a3a96bcdde57b8f777d9fdb"} -2023-12-15T23:57:43.585Z INFO initializing dbft {"height": 6723, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:43.586Z debug frostfs-node/morph.go:229 new block {"index": 6722} -2023-12-15T23:57:44.204Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6722, "blockHeight": 6722, "took": "8.645402ms"} -2023-12-15T23:57:44.585Z INFO sending PrepareRequest {"height": 6723, "view": 0} -2023-12-15T23:57:44.585Z INFO sending Commit {"height": 6723, "view": 0} -2023-12-15T23:57:44.585Z INFO approving block {"height": 6723, "hash": "2f8cd3b6b726159e7be759bd106510b54037b33e495fea93ae659df92f037da9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0fba7e3dda569da6fa765de6a279ce613821b049ff6bbd03c8d007b813a8b38"} -2023-12-15T23:57:44.587Z INFO initializing dbft {"height": 6724, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:44.587Z debug frostfs-node/morph.go:229 new block {"index": 6723} -2023-12-15T23:57:45.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6723, "blockHeight": 6723, "took": "6.628013ms"} -2023-12-15T23:57:45.586Z INFO sending PrepareRequest {"height": 6724, "view": 0} -2023-12-15T23:57:45.587Z INFO sending Commit {"height": 6724, "view": 0} -2023-12-15T23:57:45.587Z INFO approving block {"height": 6724, "hash": "5e180770876ab15327c79a89520b242ff6e8c2e773f6a3feea81f32b9f90f010", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f8cd3b6b726159e7be759bd106510b54037b33e495fea93ae659df92f037da9"} -2023-12-15T23:57:45.588Z INFO initializing dbft {"height": 6725, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:45.589Z debug frostfs-node/morph.go:229 new block {"index": 6724} -2023-12-15T23:57:46.205Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6724, "blockHeight": 6724, "took": "7.745246ms"} -2023-12-15T23:57:46.588Z INFO sending PrepareRequest {"height": 6725, "view": 0} -2023-12-15T23:57:46.588Z INFO sending Commit {"height": 6725, "view": 0} -2023-12-15T23:57:46.589Z INFO approving block {"height": 6725, "hash": "8927e2a7f0c8e22f04cd117d7839f66416ca3a1def513ee74083728c432769ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e180770876ab15327c79a89520b242ff6e8c2e773f6a3feea81f32b9f90f010"} -2023-12-15T23:57:46.590Z INFO initializing dbft {"height": 6726, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:46.591Z debug frostfs-node/morph.go:229 new block {"index": 6725} -2023-12-15T23:57:47.204Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6725, "blockHeight": 6725, "took": "5.904182ms"} -2023-12-15T23:57:47.590Z INFO sending PrepareRequest {"height": 6726, "view": 0} -2023-12-15T23:57:47.591Z INFO sending Commit {"height": 6726, "view": 0} -2023-12-15T23:57:47.591Z INFO approving block {"height": 6726, "hash": "2ca9f13911eb0a0825ec25e0cdf4cbe922dc906631d5a800b5d54a1a297b0927", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8927e2a7f0c8e22f04cd117d7839f66416ca3a1def513ee74083728c432769ec"} -2023-12-15T23:57:47.593Z INFO initializing dbft {"height": 6727, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:47.593Z debug frostfs-node/morph.go:229 new block {"index": 6726} -2023-12-15T23:57:48.206Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6726, "blockHeight": 6726, "took": "6.737017ms"} -2023-12-15T23:57:48.592Z INFO sending PrepareRequest {"height": 6727, "view": 0} -2023-12-15T23:57:48.592Z INFO sending Commit {"height": 6727, "view": 0} -2023-12-15T23:57:48.593Z INFO approving block {"height": 6727, "hash": "375fb1368df4eb4e24ce306761dab4a48b60e1967ffe8a10df27f16cd8bb5d73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ca9f13911eb0a0825ec25e0cdf4cbe922dc906631d5a800b5d54a1a297b0927"} -2023-12-15T23:57:48.594Z INFO initializing dbft {"height": 6728, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:48.595Z debug frostfs-node/morph.go:229 new block {"index": 6727} -2023-12-15T23:57:49.206Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6727, "blockHeight": 6727, "took": "7.097367ms"} -2023-12-15T23:57:49.594Z INFO sending PrepareRequest {"height": 6728, "view": 0} -2023-12-15T23:57:49.595Z INFO sending Commit {"height": 6728, "view": 0} -2023-12-15T23:57:49.595Z INFO approving block {"height": 6728, "hash": "6288ee37c8b832539d054476cfa4054da969b2cc6d886839149cf5519e39fc2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "375fb1368df4eb4e24ce306761dab4a48b60e1967ffe8a10df27f16cd8bb5d73"} -2023-12-15T23:57:49.597Z INFO initializing dbft {"height": 6729, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:49.598Z debug frostfs-node/morph.go:229 new block {"index": 6728} -2023-12-15T23:57:50.207Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6728, "blockHeight": 6728, "took": "7.103027ms"} -2023-12-15T23:57:50.596Z INFO sending PrepareRequest {"height": 6729, "view": 0} -2023-12-15T23:57:50.597Z INFO sending Commit {"height": 6729, "view": 0} -2023-12-15T23:57:50.597Z INFO approving block {"height": 6729, "hash": "847f213288fa7ae0a8da39d42b8375157dc23c2280409c90ee9e70c251efc03a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6288ee37c8b832539d054476cfa4054da969b2cc6d886839149cf5519e39fc2d"} -2023-12-15T23:57:50.599Z INFO initializing dbft {"height": 6730, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:50.600Z debug frostfs-node/morph.go:229 new block {"index": 6729} -2023-12-15T23:57:51.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6729, "blockHeight": 6729, "took": "11.788971ms"} -2023-12-15T23:57:51.598Z INFO sending PrepareRequest {"height": 6730, "view": 0} -2023-12-15T23:57:51.598Z INFO sending Commit {"height": 6730, "view": 0} -2023-12-15T23:57:51.599Z INFO approving block {"height": 6730, "hash": "3869211f04fd9c4563dfb9180b2020da49af7fa8196d9f4242a3cd68f7556b6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "847f213288fa7ae0a8da39d42b8375157dc23c2280409c90ee9e70c251efc03a"} -2023-12-15T23:57:51.600Z INFO initializing dbft {"height": 6731, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:51.601Z debug frostfs-node/morph.go:229 new block {"index": 6730} -2023-12-15T23:57:52.209Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6730, "blockHeight": 6730, "took": "7.466065ms"} -2023-12-15T23:57:52.600Z INFO sending PrepareRequest {"height": 6731, "view": 0} -2023-12-15T23:57:52.600Z INFO sending Commit {"height": 6731, "view": 0} -2023-12-15T23:57:52.601Z INFO approving block {"height": 6731, "hash": "c204c59a526797a71ac360d2ec4b045485bb6f1784412c17c3986d63c02a9489", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3869211f04fd9c4563dfb9180b2020da49af7fa8196d9f4242a3cd68f7556b6c"} -2023-12-15T23:57:52.602Z INFO initializing dbft {"height": 6732, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:52.603Z debug frostfs-node/morph.go:229 new block {"index": 6731} -2023-12-15T23:57:53.208Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6731, "blockHeight": 6731, "took": "6.018348ms"} -2023-12-15T23:57:53.602Z INFO sending PrepareRequest {"height": 6732, "view": 0} -2023-12-15T23:57:53.602Z INFO sending Commit {"height": 6732, "view": 0} -2023-12-15T23:57:53.602Z INFO approving block {"height": 6732, "hash": "1528891c5ff24e0040f1812837b3b32d72c150418e12d2e74e6a2a3401b6f62a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c204c59a526797a71ac360d2ec4b045485bb6f1784412c17c3986d63c02a9489"} -2023-12-15T23:57:53.603Z INFO initializing dbft {"height": 6733, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:53.604Z debug frostfs-node/morph.go:229 new block {"index": 6732} -2023-12-15T23:57:54.210Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6732, "blockHeight": 6732, "took": "6.8724ms"} -2023-12-15T23:57:54.603Z INFO sending PrepareRequest {"height": 6733, "view": 0} -2023-12-15T23:57:54.603Z INFO sending Commit {"height": 6733, "view": 0} -2023-12-15T23:57:54.603Z INFO approving block {"height": 6733, "hash": "c6c7c769a9e74362a5dc73114f515cfa203f5ccc56feec672aaddb3eb067e843", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1528891c5ff24e0040f1812837b3b32d72c150418e12d2e74e6a2a3401b6f62a"} -2023-12-15T23:57:54.605Z INFO initializing dbft {"height": 6734, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:54.606Z debug frostfs-node/morph.go:229 new block {"index": 6733} -2023-12-15T23:57:55.212Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6733, "blockHeight": 6733, "took": "7.149008ms"} -2023-12-15T23:57:55.605Z INFO sending PrepareRequest {"height": 6734, "view": 0} -2023-12-15T23:57:55.605Z INFO sending Commit {"height": 6734, "view": 0} -2023-12-15T23:57:55.605Z INFO approving block {"height": 6734, "hash": "c7f9e2e1a6c48c82e68bec0220b9b9073680c98484b91ad48db2c55a271e01bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6c7c769a9e74362a5dc73114f515cfa203f5ccc56feec672aaddb3eb067e843"} -2023-12-15T23:57:55.607Z INFO initializing dbft {"height": 6735, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:55.607Z debug frostfs-node/morph.go:229 new block {"index": 6734} -2023-12-15T23:57:56.215Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6734, "blockHeight": 6734, "took": "9.784711ms"} -2023-12-15T23:57:56.607Z INFO sending PrepareRequest {"height": 6735, "view": 0} -2023-12-15T23:57:56.607Z INFO sending Commit {"height": 6735, "view": 0} -2023-12-15T23:57:56.607Z INFO approving block {"height": 6735, "hash": "cb18dab4d072a5980b326f1ee18de7e229b98c40161f7bd5ad87cdd65ca57c8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7f9e2e1a6c48c82e68bec0220b9b9073680c98484b91ad48db2c55a271e01bc"} -2023-12-15T23:57:56.609Z INFO initializing dbft {"height": 6736, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:56.610Z debug frostfs-node/morph.go:229 new block {"index": 6735} -2023-12-15T23:57:57.212Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6735, "blockHeight": 6735, "took": "5.846492ms"} -2023-12-15T23:57:57.609Z INFO sending PrepareRequest {"height": 6736, "view": 0} -2023-12-15T23:57:57.609Z INFO sending Commit {"height": 6736, "view": 0} -2023-12-15T23:57:57.609Z INFO approving block {"height": 6736, "hash": "16974732f697d58e3b6e57ce98cbc4e56eb4caba479bcf908738b3dfc6f74fe3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb18dab4d072a5980b326f1ee18de7e229b98c40161f7bd5ad87cdd65ca57c8b"} -2023-12-15T23:57:57.611Z INFO initializing dbft {"height": 6737, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:57.612Z debug frostfs-node/morph.go:229 new block {"index": 6736} -2023-12-15T23:57:58.215Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6736, "blockHeight": 6736, "took": "7.769051ms"} -2023-12-15T23:57:58.611Z INFO sending PrepareRequest {"height": 6737, "view": 0} -2023-12-15T23:57:58.611Z INFO sending Commit {"height": 6737, "view": 0} -2023-12-15T23:57:58.611Z INFO approving block {"height": 6737, "hash": "c26c6abf7b8395d99a1b9db62324844854043c9786a9c1781f19ad7443ce2bb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16974732f697d58e3b6e57ce98cbc4e56eb4caba479bcf908738b3dfc6f74fe3"} -2023-12-15T23:57:58.613Z INFO initializing dbft {"height": 6738, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:58.613Z debug frostfs-node/morph.go:229 new block {"index": 6737} -2023-12-15T23:57:59.215Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6737, "blockHeight": 6737, "took": "6.84342ms"} -2023-12-15T23:57:59.613Z INFO sending PrepareRequest {"height": 6738, "view": 0} -2023-12-15T23:57:59.613Z INFO sending Commit {"height": 6738, "view": 0} -2023-12-15T23:57:59.614Z INFO approving block {"height": 6738, "hash": "58a7d2258b9c714665be7c7d280d4b3fc2ff72dcd1601d9f25617def03bd339e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c26c6abf7b8395d99a1b9db62324844854043c9786a9c1781f19ad7443ce2bb6"} -2023-12-15T23:57:59.615Z INFO initializing dbft {"height": 6739, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:57:59.616Z debug frostfs-node/morph.go:229 new block {"index": 6738} -2023-12-15T23:58:00.219Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6738, "blockHeight": 6738, "took": "10.92137ms"} -2023-12-15T23:58:00.615Z INFO sending PrepareRequest {"height": 6739, "view": 0} -2023-12-15T23:58:00.615Z INFO sending Commit {"height": 6739, "view": 0} -2023-12-15T23:58:00.616Z INFO approving block {"height": 6739, "hash": "5267eb45230a4aa3bb195a7a8d20ed4a9475591b64b393f113e8177071d39185", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58a7d2258b9c714665be7c7d280d4b3fc2ff72dcd1601d9f25617def03bd339e"} -2023-12-15T23:58:00.617Z INFO initializing dbft {"height": 6740, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:00.618Z debug frostfs-node/morph.go:229 new block {"index": 6739} -2023-12-15T23:58:01.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6739, "blockHeight": 6739, "took": "10.206149ms"} -2023-12-15T23:58:01.617Z INFO sending PrepareRequest {"height": 6740, "view": 0} -2023-12-15T23:58:01.617Z INFO sending Commit {"height": 6740, "view": 0} -2023-12-15T23:58:01.618Z INFO approving block {"height": 6740, "hash": "ebcd52995a8710ea64902a531c28f09e74350e7cd3bc3c5f194195688462d65f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5267eb45230a4aa3bb195a7a8d20ed4a9475591b64b393f113e8177071d39185"} -2023-12-15T23:58:01.619Z INFO initializing dbft {"height": 6741, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:01.620Z debug frostfs-node/morph.go:229 new block {"index": 6740} -2023-12-15T23:58:02.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6740, "blockHeight": 6740, "took": "9.605323ms"} -2023-12-15T23:58:02.619Z INFO sending PrepareRequest {"height": 6741, "view": 0} -2023-12-15T23:58:02.620Z INFO sending Commit {"height": 6741, "view": 0} -2023-12-15T23:58:02.620Z INFO approving block {"height": 6741, "hash": "23ca850b95896407acbb45178bd549cedbeea971037490f4a019c0c354a9925b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebcd52995a8710ea64902a531c28f09e74350e7cd3bc3c5f194195688462d65f"} -2023-12-15T23:58:02.621Z INFO initializing dbft {"height": 6742, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:02.622Z debug frostfs-node/morph.go:229 new block {"index": 6741} -2023-12-15T23:58:03.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6741, "blockHeight": 6741, "took": "5.038037ms"} -2023-12-15T23:58:03.621Z INFO sending PrepareRequest {"height": 6742, "view": 0} -2023-12-15T23:58:03.621Z INFO sending Commit {"height": 6742, "view": 0} -2023-12-15T23:58:03.622Z INFO approving block {"height": 6742, "hash": "3c4f14da3f148c02806f64ea8ec06294abfe5cfa811fc3449911b995a7136fad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23ca850b95896407acbb45178bd549cedbeea971037490f4a019c0c354a9925b"} -2023-12-15T23:58:03.623Z INFO initializing dbft {"height": 6743, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:03.624Z debug frostfs-node/morph.go:229 new block {"index": 6742} -2023-12-15T23:58:04.223Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6742, "blockHeight": 6742, "took": "10.248101ms"} -2023-12-15T23:58:04.623Z INFO sending PrepareRequest {"height": 6743, "view": 0} -2023-12-15T23:58:04.623Z INFO sending Commit {"height": 6743, "view": 0} -2023-12-15T23:58:04.623Z INFO approving block {"height": 6743, "hash": "f18fb8c770b92e399ecff477eb85a79483d9fd772708c8432dc989ad87d12546", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c4f14da3f148c02806f64ea8ec06294abfe5cfa811fc3449911b995a7136fad"} -2023-12-15T23:58:04.624Z INFO initializing dbft {"height": 6744, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:04.625Z debug frostfs-node/morph.go:229 new block {"index": 6743} -2023-12-15T23:58:05.221Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6743, "blockHeight": 6743, "took": "7.283843ms"} -2023-12-15T23:58:05.624Z INFO sending PrepareRequest {"height": 6744, "view": 0} -2023-12-15T23:58:05.624Z INFO sending Commit {"height": 6744, "view": 0} -2023-12-15T23:58:05.625Z INFO approving block {"height": 6744, "hash": "f163109e7beae5f68b2b10cba8cc4a595d48dbe074b2254e9d86c31298404182", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f18fb8c770b92e399ecff477eb85a79483d9fd772708c8432dc989ad87d12546"} -2023-12-15T23:58:05.626Z INFO initializing dbft {"height": 6745, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:05.627Z debug frostfs-node/morph.go:229 new block {"index": 6744} -2023-12-15T23:58:06.222Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6744, "blockHeight": 6744, "took": "8.25691ms"} -2023-12-15T23:58:06.626Z INFO sending PrepareRequest {"height": 6745, "view": 0} -2023-12-15T23:58:06.627Z INFO sending Commit {"height": 6745, "view": 0} -2023-12-15T23:58:06.627Z INFO approving block {"height": 6745, "hash": "972251da92059c3734b0271cd17a598f9702202c184ae4c67f4971157fcbf731", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f163109e7beae5f68b2b10cba8cc4a595d48dbe074b2254e9d86c31298404182"} -2023-12-15T23:58:06.629Z INFO initializing dbft {"height": 6746, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:06.630Z debug frostfs-node/morph.go:229 new block {"index": 6745} -2023-12-15T23:58:07.224Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6745, "blockHeight": 6745, "took": "9.565799ms"} -2023-12-15T23:58:07.628Z INFO sending PrepareRequest {"height": 6746, "view": 0} -2023-12-15T23:58:07.629Z INFO sending Commit {"height": 6746, "view": 0} -2023-12-15T23:58:07.629Z INFO approving block {"height": 6746, "hash": "f5d9f39a334887b1cc3bd5e4f73ba79076353cfa9db6ed726cf339a27548b920", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "972251da92059c3734b0271cd17a598f9702202c184ae4c67f4971157fcbf731"} -2023-12-15T23:58:07.630Z INFO initializing dbft {"height": 6747, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:07.631Z debug frostfs-node/morph.go:229 new block {"index": 6746} -2023-12-15T23:58:08.224Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6746, "blockHeight": 6746, "took": "7.97095ms"} -2023-12-15T23:58:08.631Z INFO sending PrepareRequest {"height": 6747, "view": 0} -2023-12-15T23:58:08.632Z INFO sending Commit {"height": 6747, "view": 0} -2023-12-15T23:58:08.632Z INFO approving block {"height": 6747, "hash": "d5dd82760f98691958f16388108bb9a78fc81f1aa61acb106fa15eb4fc69bbfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5d9f39a334887b1cc3bd5e4f73ba79076353cfa9db6ed726cf339a27548b920"} -2023-12-15T23:58:08.634Z INFO initializing dbft {"height": 6748, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:08.635Z debug frostfs-node/morph.go:229 new block {"index": 6747} -2023-12-15T23:58:08.639Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-15T23:58:08.641Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 28, "iteration": 3, "error": "no data for 2 iteration in 28 epoch for consumers's trusts"} -2023-12-15T23:58:08.648Z INFO runtime log {"tx": "5b07a8d571c4cd1de3a5327eb81ee6274e39dab0a5be1f24b7d68f4eb178e8ed", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:58:09.224Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6747, "blockHeight": 6747, "took": "7.630772ms"} -2023-12-15T23:58:09.634Z INFO sending PrepareRequest {"height": 6748, "view": 0} -2023-12-15T23:58:09.634Z INFO sending Commit {"height": 6748, "view": 0} -2023-12-15T23:58:09.634Z INFO approving block {"height": 6748, "hash": "0ad3efe89a428d5e3837804a3bfabee4c7a142b2549ec94021c512100b212968", "tx_count": 1, "merkle": "31c4bc3ebb8905258f994660cc3f2b88a6bae13195b0990ed16b9035977bc413", "prev": "d5dd82760f98691958f16388108bb9a78fc81f1aa61acb106fa15eb4fc69bbfa"} -2023-12-15T23:58:09.635Z INFO runtime log {"tx": "13c47b9735906bd10e99b09531e1baa6882b3fcc6046998f250589bb3ebcc431", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-15T23:58:09.637Z INFO initializing dbft {"height": 6749, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:09.638Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 30} -2023-12-15T23:58:09.638Z debug tree/sync.go:298 syncing trees... -2023-12-15T23:58:09.638Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 30} -2023-12-15T23:58:09.638Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 30} -2023-12-15T23:58:09.638Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-15T23:58:09.638Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 30} -2023-12-15T23:58:09.638Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-15T23:58:09.638Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 30} -2023-12-15T23:58:09.638Z debug controller/calls.go:95 starting to report local trust values {"epoch": 29} -2023-12-15T23:58:09.638Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 29} -2023-12-15T23:58:09.639Z debug frostfs-node/morph.go:229 new block {"index": 6748} -2023-12-15T23:58:09.643Z debug controller/calls.go:146 reporting successfully finished {"epoch": 29} -2023-12-15T23:58:09.644Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 29} -2023-12-15T23:58:09.650Z INFO runtime log {"tx": "63339ef421b71265bb8e1691da561e1be41076354b727f6cdf6fc5aa898305f8", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:58:09.652Z debug tree/sync.go:312 trees have been synchronized -2023-12-15T23:58:09.655Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6751, "tx_hash": "c3eaa776c06cf6fae4bb11a6619805d3cf0c8332cf7b085346e33b640a2979b7"} -2023-12-15T23:58:09.667Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 6800, "fallback_valid_for": 40, "tx_hash": "04523064ed273ac4db637b400e7f608706f47f3bfc6cbb5c6a58585aa3f9f0e0"} -2023-12-15T23:58:09.672Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-15T23:58:09.672Z info audit/handlers.go:13 new round of audit {"epoch": 30} -2023-12-15T23:58:09.672Z info settlement/calls.go:26 new audit settlement event {"epoch": 30} -2023-12-15T23:58:09.673Z info settlement/handlers.go:14 process audit settlements {"epoch": 30} -2023-12-15T23:58:09.673Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 30} -2023-12-15T23:58:09.675Z info settlement/handlers.go:18 audit processing finished {"epoch": 30} -2023-12-15T23:58:09.675Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-15T23:58:09.678Z info audit/process.go:39 select containers for audit {"epoch": 30, "amount": 0} -2023-12-15T23:58:09.685Z info client/notary.go:214 notary deposit invoke {"amount": 337783685815, "expire_at": 4294967295, "vub": 6751, "tx_hash": "9f9f25c07c70883e3f949b133c4aa45e0a335739ff1efddcdc82089846eda827"} -2023-12-15T23:58:10.234Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 6748, "blockHeight": 6748, "took": "17.259927ms"} -2023-12-15T23:58:10.635Z INFO sending PrepareRequest {"height": 6749, "view": 0} -2023-12-15T23:58:10.636Z INFO sending Commit {"height": 6749, "view": 0} -2023-12-15T23:58:10.636Z INFO approving block {"height": 6749, "hash": "cb7ab1cf7164434b5b20dda2ec1bf179b1bf22a359ac3b2c897a0e124a252f2b", "tx_count": 3, "merkle": "46c6604ea6be5e37c543fa95b89bee7f4d44d60130175c1ce4b62fe56972d13f", "prev": "0ad3efe89a428d5e3837804a3bfabee4c7a142b2549ec94021c512100b212968"} -2023-12-15T23:58:10.637Z INFO runtime log {"tx": "98dff3881d749bd072462cf64026fc3489d5df36f346840005996b4fed6a3496", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:58:10.640Z INFO initializing dbft {"height": 6750, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:10.641Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 29} -2023-12-15T23:58:10.641Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 29} -2023-12-15T23:58:10.641Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 29} -2023-12-15T23:58:10.642Z debug frostfs-node/morph.go:229 new block {"index": 6749} -2023-12-15T23:58:11.229Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 6749, "blockHeight": 6749, "took": "11.554998ms"} -2023-12-15T23:58:11.637Z INFO sending PrepareRequest {"height": 6750, "view": 0} -2023-12-15T23:58:11.637Z INFO sending Commit {"height": 6750, "view": 0} -2023-12-15T23:58:11.637Z INFO approving block {"height": 6750, "hash": "c924ad1e61bc9d632d88db730843b5a87981326fe2d7bb823ae8b179113b82f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb7ab1cf7164434b5b20dda2ec1bf179b1bf22a359ac3b2c897a0e124a252f2b"} -2023-12-15T23:58:11.640Z INFO initializing dbft {"height": 6751, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:11.640Z debug frostfs-node/morph.go:229 new block {"index": 6750} -2023-12-15T23:58:12.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6750, "blockHeight": 6750, "took": "7.613553ms"} -2023-12-15T23:58:12.638Z INFO sending PrepareRequest {"height": 6751, "view": 0} -2023-12-15T23:58:12.639Z INFO sending Commit {"height": 6751, "view": 0} -2023-12-15T23:58:12.639Z INFO approving block {"height": 6751, "hash": "fb43e83283b1e869ffde5ab672ca7ff8a6b406e8226faae09ad53bc536287b71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c924ad1e61bc9d632d88db730843b5a87981326fe2d7bb823ae8b179113b82f5"} -2023-12-15T23:58:12.641Z INFO initializing dbft {"height": 6752, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:12.642Z debug frostfs-node/morph.go:229 new block {"index": 6751} -2023-12-15T23:58:13.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6751, "blockHeight": 6751, "took": "6.8484ms"} -2023-12-15T23:58:13.640Z INFO sending PrepareRequest {"height": 6752, "view": 0} -2023-12-15T23:58:13.641Z INFO sending Commit {"height": 6752, "view": 0} -2023-12-15T23:58:13.641Z INFO approving block {"height": 6752, "hash": "63a81a801b6666b4f7cd5ba5f756efb673f9a83cfc73c3b3b17d1a0a7e3b867e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb43e83283b1e869ffde5ab672ca7ff8a6b406e8226faae09ad53bc536287b71"} -2023-12-15T23:58:13.643Z INFO initializing dbft {"height": 6753, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:13.644Z debug frostfs-node/morph.go:229 new block {"index": 6752} -2023-12-15T23:58:14.227Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6752, "blockHeight": 6752, "took": "7.340176ms"} -2023-12-15T23:58:14.642Z INFO sending PrepareRequest {"height": 6753, "view": 0} -2023-12-15T23:58:14.642Z INFO sending Commit {"height": 6753, "view": 0} -2023-12-15T23:58:14.643Z INFO approving block {"height": 6753, "hash": "efe5966016e93c1f5b5c785b6659743837139f69fa76af7437e2b4a9f9a65a5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63a81a801b6666b4f7cd5ba5f756efb673f9a83cfc73c3b3b17d1a0a7e3b867e"} -2023-12-15T23:58:14.644Z INFO initializing dbft {"height": 6754, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:14.645Z debug frostfs-node/morph.go:229 new block {"index": 6753} -2023-12-15T23:58:15.227Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6753, "blockHeight": 6753, "took": "6.763967ms"} -2023-12-15T23:58:15.644Z INFO sending PrepareRequest {"height": 6754, "view": 0} -2023-12-15T23:58:15.644Z INFO sending Commit {"height": 6754, "view": 0} -2023-12-15T23:58:15.645Z INFO approving block {"height": 6754, "hash": "2699b239939d3c152e1fcf6c56d9d05d20ac8e0fa3ed3bc9050eab2da14b378f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efe5966016e93c1f5b5c785b6659743837139f69fa76af7437e2b4a9f9a65a5d"} -2023-12-15T23:58:15.647Z INFO initializing dbft {"height": 6755, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:15.647Z debug frostfs-node/morph.go:229 new block {"index": 6754} -2023-12-15T23:58:16.227Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6754, "blockHeight": 6754, "took": "6.52426ms"} -2023-12-15T23:58:16.646Z INFO sending PrepareRequest {"height": 6755, "view": 0} -2023-12-15T23:58:16.646Z INFO sending Commit {"height": 6755, "view": 0} -2023-12-15T23:58:16.647Z INFO approving block {"height": 6755, "hash": "21b159f1f0faeed82676de48fe96a98c52bc96d8411c69eeb0484b55c940492b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2699b239939d3c152e1fcf6c56d9d05d20ac8e0fa3ed3bc9050eab2da14b378f"} -2023-12-15T23:58:16.650Z INFO initializing dbft {"height": 6756, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:16.650Z debug frostfs-node/morph.go:229 new block {"index": 6755} -2023-12-15T23:58:17.232Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6755, "blockHeight": 6755, "took": "10.357854ms"} -2023-12-15T23:58:17.649Z INFO sending PrepareRequest {"height": 6756, "view": 0} -2023-12-15T23:58:17.649Z INFO sending Commit {"height": 6756, "view": 0} -2023-12-15T23:58:17.650Z INFO approving block {"height": 6756, "hash": "ce3dfa91fd0c207e9872681598bb8d1ddb301aaa38ba1fa5797946641a208792", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21b159f1f0faeed82676de48fe96a98c52bc96d8411c69eeb0484b55c940492b"} -2023-12-15T23:58:17.652Z INFO initializing dbft {"height": 6757, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:17.653Z debug frostfs-node/morph.go:229 new block {"index": 6756} -2023-12-15T23:58:18.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6756, "blockHeight": 6756, "took": "6.997564ms"} -2023-12-15T23:58:18.650Z INFO sending PrepareRequest {"height": 6757, "view": 0} -2023-12-15T23:58:18.651Z INFO sending Commit {"height": 6757, "view": 0} -2023-12-15T23:58:18.651Z INFO approving block {"height": 6757, "hash": "cfa61225bd2391278f268a4ec724730a9d1d5ff960a1886f39231c0ed41e53d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce3dfa91fd0c207e9872681598bb8d1ddb301aaa38ba1fa5797946641a208792"} -2023-12-15T23:58:18.653Z INFO initializing dbft {"height": 6758, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:18.654Z debug frostfs-node/morph.go:229 new block {"index": 6757} -2023-12-15T23:58:19.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6757, "blockHeight": 6757, "took": "5.999835ms"} -2023-12-15T23:58:19.652Z INFO sending PrepareRequest {"height": 6758, "view": 0} -2023-12-15T23:58:19.653Z INFO sending Commit {"height": 6758, "view": 0} -2023-12-15T23:58:19.653Z INFO approving block {"height": 6758, "hash": "218e61e3b9a538950d9422b6926ae129da0c852c50041b4fe132d951dc9cc933", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfa61225bd2391278f268a4ec724730a9d1d5ff960a1886f39231c0ed41e53d6"} -2023-12-15T23:58:19.656Z INFO initializing dbft {"height": 6759, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:19.657Z debug frostfs-node/morph.go:229 new block {"index": 6758} -2023-12-15T23:58:20.231Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6758, "blockHeight": 6758, "took": "7.008006ms"} -2023-12-15T23:58:20.655Z INFO sending PrepareRequest {"height": 6759, "view": 0} -2023-12-15T23:58:20.655Z INFO sending Commit {"height": 6759, "view": 0} -2023-12-15T23:58:20.655Z INFO approving block {"height": 6759, "hash": "8bb5000b973d778d7d1ad824046c417c57e05965abad4b0963b27b23dd3c0e28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "218e61e3b9a538950d9422b6926ae129da0c852c50041b4fe132d951dc9cc933"} -2023-12-15T23:58:20.657Z INFO initializing dbft {"height": 6760, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:20.658Z debug frostfs-node/morph.go:229 new block {"index": 6759} -2023-12-15T23:58:21.232Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6759, "blockHeight": 6759, "took": "6.428541ms"} -2023-12-15T23:58:21.657Z INFO sending PrepareRequest {"height": 6760, "view": 0} -2023-12-15T23:58:21.657Z INFO sending Commit {"height": 6760, "view": 0} -2023-12-15T23:58:21.658Z INFO approving block {"height": 6760, "hash": "ee2e728628992633855460565da2bba1234d9cf591fb817908598c321479d13f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bb5000b973d778d7d1ad824046c417c57e05965abad4b0963b27b23dd3c0e28"} -2023-12-15T23:58:21.660Z INFO initializing dbft {"height": 6761, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:21.665Z debug frostfs-node/morph.go:229 new block {"index": 6760} -2023-12-15T23:58:22.232Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6760, "blockHeight": 6760, "took": "5.696817ms"} -2023-12-15T23:58:22.659Z INFO sending PrepareRequest {"height": 6761, "view": 0} -2023-12-15T23:58:22.659Z INFO sending Commit {"height": 6761, "view": 0} -2023-12-15T23:58:22.660Z INFO approving block {"height": 6761, "hash": "b7329f6d87014cd59d95090508483d0abdc74242c4439f1d1e424b326235bb2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee2e728628992633855460565da2bba1234d9cf591fb817908598c321479d13f"} -2023-12-15T23:58:22.662Z INFO initializing dbft {"height": 6762, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:22.663Z debug frostfs-node/morph.go:229 new block {"index": 6761} -2023-12-15T23:58:23.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6761, "blockHeight": 6761, "took": "6.729124ms"} -2023-12-15T23:58:23.661Z INFO sending PrepareRequest {"height": 6762, "view": 0} -2023-12-15T23:58:23.661Z INFO sending Commit {"height": 6762, "view": 0} -2023-12-15T23:58:23.662Z INFO approving block {"height": 6762, "hash": "074a7f77a12ca5ccc1dd20d55f523e0c370562d32702b2962adc0d2346949d50", "tx_count": 1, "merkle": "a82751a480eabfd94f121170b51d9cd7b8f72611fea04a741dc6db46f056fbf0", "prev": "b7329f6d87014cd59d95090508483d0abdc74242c4439f1d1e424b326235bb2c"} -2023-12-15T23:58:23.666Z INFO initializing dbft {"height": 6763, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:23.671Z debug frostfs-node/morph.go:229 new block {"index": 6762} -2023-12-15T23:58:23.674Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-15T23:58:24.240Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 6762, "blockHeight": 6762, "took": "10.782226ms"} -2023-12-15T23:58:24.664Z INFO sending PrepareRequest {"height": 6763, "view": 0} -2023-12-15T23:58:24.664Z INFO sending Commit {"height": 6763, "view": 0} -2023-12-15T23:58:24.665Z INFO approving block {"height": 6763, "hash": "c767745cff13171a340d76ae170f9b92ce9fa6df0749698c3b0c53badfb8dcea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "074a7f77a12ca5ccc1dd20d55f523e0c370562d32702b2962adc0d2346949d50"} -2023-12-15T23:58:24.667Z INFO initializing dbft {"height": 6764, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:24.668Z debug frostfs-node/morph.go:229 new block {"index": 6763} -2023-12-15T23:58:25.238Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6763, "blockHeight": 6763, "took": "8.444296ms"} -2023-12-15T23:58:25.666Z INFO sending PrepareRequest {"height": 6764, "view": 0} -2023-12-15T23:58:25.666Z INFO sending Commit {"height": 6764, "view": 0} -2023-12-15T23:58:25.667Z INFO approving block {"height": 6764, "hash": "fed6cc776e761de2da695c03ee00de4f41a9eb4e63c5235f742b2273749649e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c767745cff13171a340d76ae170f9b92ce9fa6df0749698c3b0c53badfb8dcea"} -2023-12-15T23:58:25.669Z INFO initializing dbft {"height": 6765, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:25.669Z debug frostfs-node/morph.go:229 new block {"index": 6764} -2023-12-15T23:58:26.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6764, "blockHeight": 6764, "took": "5.196681ms"} -2023-12-15T23:58:26.668Z INFO sending PrepareRequest {"height": 6765, "view": 0} -2023-12-15T23:58:26.668Z INFO sending Commit {"height": 6765, "view": 0} -2023-12-15T23:58:26.668Z INFO approving block {"height": 6765, "hash": "84f78271711b5184a3cc36e8a9109d685588f7ad0cc4caa1149acd47c52481c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fed6cc776e761de2da695c03ee00de4f41a9eb4e63c5235f742b2273749649e1"} -2023-12-15T23:58:26.670Z INFO initializing dbft {"height": 6766, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:26.672Z debug frostfs-node/morph.go:229 new block {"index": 6765} -2023-12-15T23:58:27.238Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6765, "blockHeight": 6765, "took": "6.799508ms"} -2023-12-15T23:58:27.669Z INFO sending PrepareRequest {"height": 6766, "view": 0} -2023-12-15T23:58:27.669Z INFO sending Commit {"height": 6766, "view": 0} -2023-12-15T23:58:27.670Z INFO approving block {"height": 6766, "hash": "30faa7a4f49d4486783c407eb1667d70d716d4e5a689c39fb79fbe6804545762", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84f78271711b5184a3cc36e8a9109d685588f7ad0cc4caa1149acd47c52481c0"} -2023-12-15T23:58:27.671Z INFO initializing dbft {"height": 6767, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:27.672Z debug frostfs-node/morph.go:229 new block {"index": 6766} -2023-12-15T23:58:28.242Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6766, "blockHeight": 6766, "took": "9.664435ms"} -2023-12-15T23:58:28.670Z INFO sending PrepareRequest {"height": 6767, "view": 0} -2023-12-15T23:58:28.671Z INFO sending Commit {"height": 6767, "view": 0} -2023-12-15T23:58:28.671Z INFO approving block {"height": 6767, "hash": "d1227ff30043c70cb352685702bee2be875aee9585b9de8782ac6be2f5509253", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30faa7a4f49d4486783c407eb1667d70d716d4e5a689c39fb79fbe6804545762"} -2023-12-15T23:58:28.672Z INFO initializing dbft {"height": 6768, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:28.673Z debug frostfs-node/morph.go:229 new block {"index": 6767} -2023-12-15T23:58:28.676Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:58:28.680Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:58:28.680Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:58:29.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6767, "blockHeight": 6767, "took": "7.029278ms"} -2023-12-15T23:58:29.672Z INFO sending PrepareRequest {"height": 6768, "view": 0} -2023-12-15T23:58:29.672Z INFO sending Commit {"height": 6768, "view": 0} -2023-12-15T23:58:29.673Z INFO approving block {"height": 6768, "hash": "6bc75660a63a8393d4b144c3a8856ee88aa3d566a5aa7a74a03f7d444cd41337", "tx_count": 2, "merkle": "581382088ece424c3266f58a054642ea77e0adc071a3cc81723ff97fb4306178", "prev": "d1227ff30043c70cb352685702bee2be875aee9585b9de8782ac6be2f5509253"} -2023-12-15T23:58:29.674Z INFO runtime log {"tx": "df29f18a2139a058f4fd3defcdabae3759acb0698ff56b70280f2bdccf580a54", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:58:29.674Z INFO runtime log {"tx": "df29f18a2139a058f4fd3defcdabae3759acb0698ff56b70280f2bdccf580a54", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:58:29.676Z INFO initializing dbft {"height": 6769, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:29.677Z debug frostfs-node/morph.go:229 new block {"index": 6768} -2023-12-15T23:58:30.244Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6768, "blockHeight": 6768, "took": "10.65127ms"} -2023-12-15T23:58:30.674Z INFO sending PrepareRequest {"height": 6769, "view": 0} -2023-12-15T23:58:30.674Z INFO sending Commit {"height": 6769, "view": 0} -2023-12-15T23:58:30.675Z INFO approving block {"height": 6769, "hash": "e181b2e94bb0b50f153f76a08905c4b21554b95c65df522e8461373a5fca4579", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bc75660a63a8393d4b144c3a8856ee88aa3d566a5aa7a74a03f7d444cd41337"} -2023-12-15T23:58:30.676Z INFO initializing dbft {"height": 6770, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:30.677Z debug frostfs-node/morph.go:229 new block {"index": 6769} -2023-12-15T23:58:31.242Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6769, "blockHeight": 6769, "took": "7.375295ms"} -2023-12-15T23:58:31.676Z INFO sending PrepareRequest {"height": 6770, "view": 0} -2023-12-15T23:58:31.676Z INFO sending Commit {"height": 6770, "view": 0} -2023-12-15T23:58:31.677Z INFO approving block {"height": 6770, "hash": "ea50b96ce1756bfe6cb6d93f2e04c5b2c5b1071bc4f6411e7283e667a982257b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e181b2e94bb0b50f153f76a08905c4b21554b95c65df522e8461373a5fca4579"} -2023-12-15T23:58:31.678Z INFO initializing dbft {"height": 6771, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:31.681Z debug frostfs-node/morph.go:229 new block {"index": 6770} -2023-12-15T23:58:32.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6770, "blockHeight": 6770, "took": "7.363435ms"} -2023-12-15T23:58:32.678Z INFO sending PrepareRequest {"height": 6771, "view": 0} -2023-12-15T23:58:32.678Z INFO sending Commit {"height": 6771, "view": 0} -2023-12-15T23:58:32.678Z INFO approving block {"height": 6771, "hash": "75550d20b6822dc1ad90d00cf295d94c1bda187a08bc2870128f324a4a96e012", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea50b96ce1756bfe6cb6d93f2e04c5b2c5b1071bc4f6411e7283e667a982257b"} -2023-12-15T23:58:32.680Z INFO initializing dbft {"height": 6772, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:32.682Z debug frostfs-node/morph.go:229 new block {"index": 6771} -2023-12-15T23:58:33.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6771, "blockHeight": 6771, "took": "9.234689ms"} -2023-12-15T23:58:33.680Z INFO sending PrepareRequest {"height": 6772, "view": 0} -2023-12-15T23:58:33.681Z INFO sending Commit {"height": 6772, "view": 0} -2023-12-15T23:58:33.681Z INFO approving block {"height": 6772, "hash": "930a8c5a7854dcf0d471ae3a04a77fa60671aee4b6979beab2163cadfed187fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75550d20b6822dc1ad90d00cf295d94c1bda187a08bc2870128f324a4a96e012"} -2023-12-15T23:58:33.683Z INFO initializing dbft {"height": 6773, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:33.684Z debug frostfs-node/morph.go:229 new block {"index": 6772} -2023-12-15T23:58:34.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6772, "blockHeight": 6772, "took": "5.585303ms"} -2023-12-15T23:58:34.682Z INFO sending PrepareRequest {"height": 6773, "view": 0} -2023-12-15T23:58:34.682Z INFO sending Commit {"height": 6773, "view": 0} -2023-12-15T23:58:34.683Z INFO approving block {"height": 6773, "hash": "ecb5da1b2a1912c25828fb0bfe1d5327f486b51e6b3bed88c0f4a0ce72e1aa3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "930a8c5a7854dcf0d471ae3a04a77fa60671aee4b6979beab2163cadfed187fd"} -2023-12-15T23:58:34.685Z INFO initializing dbft {"height": 6774, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:34.685Z debug frostfs-node/morph.go:229 new block {"index": 6773} -2023-12-15T23:58:35.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6773, "blockHeight": 6773, "took": "7.516049ms"} -2023-12-15T23:58:35.684Z INFO sending PrepareRequest {"height": 6774, "view": 0} -2023-12-15T23:58:35.684Z INFO sending Commit {"height": 6774, "view": 0} -2023-12-15T23:58:35.685Z INFO approving block {"height": 6774, "hash": "efa545ddcc8c6c87e7b18a5cfc2cb2450dac8a82c57eea4ffac2cce1f789c10c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecb5da1b2a1912c25828fb0bfe1d5327f486b51e6b3bed88c0f4a0ce72e1aa3a"} -2023-12-15T23:58:35.686Z INFO initializing dbft {"height": 6775, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:35.687Z debug frostfs-node/morph.go:229 new block {"index": 6774} -2023-12-15T23:58:36.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6774, "blockHeight": 6774, "took": "12.051871ms"} -2023-12-15T23:58:36.687Z INFO sending PrepareRequest {"height": 6775, "view": 0} -2023-12-15T23:58:36.688Z INFO sending Commit {"height": 6775, "view": 0} -2023-12-15T23:58:36.688Z INFO approving block {"height": 6775, "hash": "c26ae0296d572d8f7ea2d9fd8fa52a3a11a5828e58af2a2d03ae59f3f92984f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efa545ddcc8c6c87e7b18a5cfc2cb2450dac8a82c57eea4ffac2cce1f789c10c"} -2023-12-15T23:58:36.690Z INFO initializing dbft {"height": 6776, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:36.692Z debug frostfs-node/morph.go:229 new block {"index": 6775} -2023-12-15T23:58:37.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6775, "blockHeight": 6775, "took": "6.454747ms"} -2023-12-15T23:58:37.689Z INFO sending PrepareRequest {"height": 6776, "view": 0} -2023-12-15T23:58:37.689Z INFO sending Commit {"height": 6776, "view": 0} -2023-12-15T23:58:37.690Z INFO approving block {"height": 6776, "hash": "aa21846ea18f08a77238a59d6315cdc18a62e433906042d623cd0b4439d961c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c26ae0296d572d8f7ea2d9fd8fa52a3a11a5828e58af2a2d03ae59f3f92984f5"} -2023-12-15T23:58:37.693Z INFO initializing dbft {"height": 6777, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:37.694Z debug frostfs-node/morph.go:229 new block {"index": 6776} -2023-12-15T23:58:38.247Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6776, "blockHeight": 6776, "took": "7.176871ms"} -2023-12-15T23:58:38.691Z INFO sending PrepareRequest {"height": 6777, "view": 0} -2023-12-15T23:58:38.691Z INFO sending Commit {"height": 6777, "view": 0} -2023-12-15T23:58:38.691Z INFO approving block {"height": 6777, "hash": "c9608af1cc4dd29245a45869170508102d243e1b79f0b7e1664b268a3112bb4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa21846ea18f08a77238a59d6315cdc18a62e433906042d623cd0b4439d961c3"} -2023-12-15T23:58:38.693Z INFO initializing dbft {"height": 6778, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:38.694Z debug frostfs-node/morph.go:229 new block {"index": 6777} -2023-12-15T23:58:39.248Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6777, "blockHeight": 6777, "took": "6.923792ms"} -2023-12-15T23:58:39.694Z INFO sending PrepareRequest {"height": 6778, "view": 0} -2023-12-15T23:58:39.694Z INFO sending Commit {"height": 6778, "view": 0} -2023-12-15T23:58:39.694Z INFO approving block {"height": 6778, "hash": "812be1070db93aceaee5390399f238fe61f23834f179cb18afdafad143d8a97c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9608af1cc4dd29245a45869170508102d243e1b79f0b7e1664b268a3112bb4e"} -2023-12-15T23:58:39.696Z INFO initializing dbft {"height": 6779, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:39.697Z debug frostfs-node/morph.go:229 new block {"index": 6778} -2023-12-15T23:58:40.250Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6778, "blockHeight": 6778, "took": "7.464287ms"} -2023-12-15T23:58:40.696Z INFO sending PrepareRequest {"height": 6779, "view": 0} -2023-12-15T23:58:40.696Z INFO sending Commit {"height": 6779, "view": 0} -2023-12-15T23:58:40.696Z INFO approving block {"height": 6779, "hash": "cca66250a31d1328e91ccbd3190c63012fd6eb5960d46cb9035e79824d1669fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "812be1070db93aceaee5390399f238fe61f23834f179cb18afdafad143d8a97c"} -2023-12-15T23:58:40.698Z INFO initializing dbft {"height": 6780, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:40.699Z debug frostfs-node/morph.go:229 new block {"index": 6779} -2023-12-15T23:58:41.250Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6779, "blockHeight": 6779, "took": "6.43584ms"} -2023-12-15T23:58:41.698Z INFO sending PrepareRequest {"height": 6780, "view": 0} -2023-12-15T23:58:41.698Z INFO sending Commit {"height": 6780, "view": 0} -2023-12-15T23:58:41.698Z INFO approving block {"height": 6780, "hash": "ea5b02c0b66f0504331f8fbcfc31de31f1e6aa519d48ed42625267827b066c98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cca66250a31d1328e91ccbd3190c63012fd6eb5960d46cb9035e79824d1669fc"} -2023-12-15T23:58:41.700Z INFO initializing dbft {"height": 6781, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:41.702Z debug frostfs-node/morph.go:229 new block {"index": 6780} -2023-12-15T23:58:42.252Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6780, "blockHeight": 6780, "took": "6.882903ms"} -2023-12-15T23:58:42.700Z INFO sending PrepareRequest {"height": 6781, "view": 0} -2023-12-15T23:58:42.700Z INFO sending Commit {"height": 6781, "view": 0} -2023-12-15T23:58:42.700Z INFO approving block {"height": 6781, "hash": "c0ca1024e51fc1c432df92cd2e84e73c0fb923acc161a27798492c44cccf321a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea5b02c0b66f0504331f8fbcfc31de31f1e6aa519d48ed42625267827b066c98"} -2023-12-15T23:58:42.702Z INFO initializing dbft {"height": 6782, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:42.703Z debug frostfs-node/morph.go:229 new block {"index": 6781} -2023-12-15T23:58:43.253Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6781, "blockHeight": 6781, "took": "6.800479ms"} -2023-12-15T23:58:43.701Z INFO sending PrepareRequest {"height": 6782, "view": 0} -2023-12-15T23:58:43.702Z INFO sending Commit {"height": 6782, "view": 0} -2023-12-15T23:58:43.702Z INFO approving block {"height": 6782, "hash": "d9b6730230ac3bd2c5af43b1d65286aebba21643a9896bd123c9728617cb20dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0ca1024e51fc1c432df92cd2e84e73c0fb923acc161a27798492c44cccf321a"} -2023-12-15T23:58:43.703Z INFO initializing dbft {"height": 6783, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:43.704Z debug frostfs-node/morph.go:229 new block {"index": 6782} -2023-12-15T23:58:44.254Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6782, "blockHeight": 6782, "took": "6.936402ms"} -2023-12-15T23:58:44.704Z INFO sending PrepareRequest {"height": 6783, "view": 0} -2023-12-15T23:58:44.704Z INFO sending Commit {"height": 6783, "view": 0} -2023-12-15T23:58:44.704Z INFO approving block {"height": 6783, "hash": "af71431a5832f97dfc8f340eaa355c89204735cfc1a37701596b20144b9d114c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9b6730230ac3bd2c5af43b1d65286aebba21643a9896bd123c9728617cb20dc"} -2023-12-15T23:58:44.706Z INFO initializing dbft {"height": 6784, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:44.707Z debug frostfs-node/morph.go:229 new block {"index": 6783} -2023-12-15T23:58:45.255Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6783, "blockHeight": 6783, "took": "7.081268ms"} -2023-12-15T23:58:45.705Z INFO sending PrepareRequest {"height": 6784, "view": 0} -2023-12-15T23:58:45.706Z INFO sending Commit {"height": 6784, "view": 0} -2023-12-15T23:58:45.706Z INFO approving block {"height": 6784, "hash": "10f58fabdbf09dd36167b57d4f618ade595c03662de8b8ea2823cd3ab7aec1c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af71431a5832f97dfc8f340eaa355c89204735cfc1a37701596b20144b9d114c"} -2023-12-15T23:58:45.708Z INFO initializing dbft {"height": 6785, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:45.709Z debug frostfs-node/morph.go:229 new block {"index": 6784} -2023-12-15T23:58:46.255Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6784, "blockHeight": 6784, "took": "7.522425ms"} -2023-12-15T23:58:46.708Z INFO sending PrepareRequest {"height": 6785, "view": 0} -2023-12-15T23:58:46.708Z INFO sending Commit {"height": 6785, "view": 0} -2023-12-15T23:58:46.708Z INFO approving block {"height": 6785, "hash": "b799ee7596990410d96795886d32b5f19952b9e610ecff780a95cf4b56ecc248", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10f58fabdbf09dd36167b57d4f618ade595c03662de8b8ea2823cd3ab7aec1c8"} -2023-12-15T23:58:46.710Z INFO initializing dbft {"height": 6786, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:46.711Z debug frostfs-node/morph.go:229 new block {"index": 6785} -2023-12-15T23:58:47.256Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6785, "blockHeight": 6785, "took": "7.266893ms"} -2023-12-15T23:58:47.709Z INFO sending PrepareRequest {"height": 6786, "view": 0} -2023-12-15T23:58:47.709Z INFO sending Commit {"height": 6786, "view": 0} -2023-12-15T23:58:47.710Z INFO approving block {"height": 6786, "hash": "59ac1942ff7f10f61e8b78ecb9d5f9b5fedecd035aab1e04184615128b57b2f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b799ee7596990410d96795886d32b5f19952b9e610ecff780a95cf4b56ecc248"} -2023-12-15T23:58:47.712Z INFO initializing dbft {"height": 6787, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:47.713Z debug frostfs-node/morph.go:229 new block {"index": 6786} -2023-12-15T23:58:48.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6786, "blockHeight": 6786, "took": "7.748267ms"} -2023-12-15T23:58:48.711Z INFO sending PrepareRequest {"height": 6787, "view": 0} -2023-12-15T23:58:48.711Z INFO sending Commit {"height": 6787, "view": 0} -2023-12-15T23:58:48.711Z INFO approving block {"height": 6787, "hash": "bcf976392c83411139a2aa5962a2ee9edcf96f9fbfd77a839d766a41f43d6dcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59ac1942ff7f10f61e8b78ecb9d5f9b5fedecd035aab1e04184615128b57b2f9"} -2023-12-15T23:58:48.713Z INFO initializing dbft {"height": 6788, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:48.713Z debug frostfs-node/morph.go:229 new block {"index": 6787} -2023-12-15T23:58:49.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6787, "blockHeight": 6787, "took": "6.702558ms"} -2023-12-15T23:58:49.713Z INFO sending PrepareRequest {"height": 6788, "view": 0} -2023-12-15T23:58:49.713Z INFO sending Commit {"height": 6788, "view": 0} -2023-12-15T23:58:49.714Z INFO approving block {"height": 6788, "hash": "2b101ee6c1b758f8dc4c805ab65fb8337fe6a56068eccd26c4b614cd7fe19d3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcf976392c83411139a2aa5962a2ee9edcf96f9fbfd77a839d766a41f43d6dcf"} -2023-12-15T23:58:49.716Z INFO initializing dbft {"height": 6789, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:49.717Z debug frostfs-node/morph.go:229 new block {"index": 6788} -2023-12-15T23:58:50.258Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6788, "blockHeight": 6788, "took": "6.937511ms"} -2023-12-15T23:58:50.715Z INFO sending PrepareRequest {"height": 6789, "view": 0} -2023-12-15T23:58:50.715Z INFO sending Commit {"height": 6789, "view": 0} -2023-12-15T23:58:50.715Z INFO approving block {"height": 6789, "hash": "814f3af09189aeee370fddf1eece0867bfc0ebc2759b146dae29c6806e9052b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b101ee6c1b758f8dc4c805ab65fb8337fe6a56068eccd26c4b614cd7fe19d3a"} -2023-12-15T23:58:50.718Z INFO initializing dbft {"height": 6790, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:50.719Z debug frostfs-node/morph.go:229 new block {"index": 6789} -2023-12-15T23:58:51.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6789, "blockHeight": 6789, "took": "6.670235ms"} -2023-12-15T23:58:51.716Z INFO sending PrepareRequest {"height": 6790, "view": 0} -2023-12-15T23:58:51.717Z INFO sending Commit {"height": 6790, "view": 0} -2023-12-15T23:58:51.717Z INFO approving block {"height": 6790, "hash": "aaa50e8789c85f772dd0fd3edab080cf7fe720de9f6f1ae0122de7d8f3f93f3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "814f3af09189aeee370fddf1eece0867bfc0ebc2759b146dae29c6806e9052b3"} -2023-12-15T23:58:51.719Z INFO initializing dbft {"height": 6791, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:51.719Z debug frostfs-node/morph.go:229 new block {"index": 6790} -2023-12-15T23:58:52.260Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6790, "blockHeight": 6790, "took": "7.359527ms"} -2023-12-15T23:58:52.719Z INFO sending PrepareRequest {"height": 6791, "view": 0} -2023-12-15T23:58:52.719Z INFO sending Commit {"height": 6791, "view": 0} -2023-12-15T23:58:52.719Z INFO approving block {"height": 6791, "hash": "00642f5db4e54142169b19a47a8f3ad57461c8b5e7766e8b536d945ba6c28d82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aaa50e8789c85f772dd0fd3edab080cf7fe720de9f6f1ae0122de7d8f3f93f3e"} -2023-12-15T23:58:52.721Z INFO initializing dbft {"height": 6792, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:52.722Z debug frostfs-node/morph.go:229 new block {"index": 6791} -2023-12-15T23:58:53.264Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6791, "blockHeight": 6791, "took": "9.391362ms"} -2023-12-15T23:58:53.721Z INFO sending PrepareRequest {"height": 6792, "view": 0} -2023-12-15T23:58:53.721Z INFO sending Commit {"height": 6792, "view": 0} -2023-12-15T23:58:53.722Z INFO approving block {"height": 6792, "hash": "4219b6f36303d9d01b2407f6463412cadcb815fc998f1f01be9769f90a9d45a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00642f5db4e54142169b19a47a8f3ad57461c8b5e7766e8b536d945ba6c28d82"} -2023-12-15T23:58:53.723Z INFO initializing dbft {"height": 6793, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:53.724Z debug frostfs-node/morph.go:229 new block {"index": 6792} -2023-12-15T23:58:54.263Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6792, "blockHeight": 6792, "took": "7.007364ms"} -2023-12-15T23:58:54.723Z INFO sending PrepareRequest {"height": 6793, "view": 0} -2023-12-15T23:58:54.723Z INFO sending Commit {"height": 6793, "view": 0} -2023-12-15T23:58:54.724Z INFO approving block {"height": 6793, "hash": "81ef822599fd10d8d0ad25dae698f694b0e8431c03ac933dc28d297d1dbdc485", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4219b6f36303d9d01b2407f6463412cadcb815fc998f1f01be9769f90a9d45a2"} -2023-12-15T23:58:54.725Z INFO initializing dbft {"height": 6794, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:54.726Z debug frostfs-node/morph.go:229 new block {"index": 6793} -2023-12-15T23:58:55.264Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6793, "blockHeight": 6793, "took": "7.274922ms"} -2023-12-15T23:58:55.725Z INFO sending PrepareRequest {"height": 6794, "view": 0} -2023-12-15T23:58:55.725Z INFO sending Commit {"height": 6794, "view": 0} -2023-12-15T23:58:55.726Z INFO approving block {"height": 6794, "hash": "25e9b13a1bf46d4faadf87051f66f85c65e5c04dc9eb4dfc6696b906a7c44015", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81ef822599fd10d8d0ad25dae698f694b0e8431c03ac933dc28d297d1dbdc485"} -2023-12-15T23:58:55.727Z INFO initializing dbft {"height": 6795, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:55.728Z debug frostfs-node/morph.go:229 new block {"index": 6794} -2023-12-15T23:58:56.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6794, "blockHeight": 6794, "took": "7.968239ms"} -2023-12-15T23:58:56.727Z INFO sending PrepareRequest {"height": 6795, "view": 0} -2023-12-15T23:58:56.727Z INFO sending Commit {"height": 6795, "view": 0} -2023-12-15T23:58:56.728Z INFO approving block {"height": 6795, "hash": "4c1c91a589e81551cc59ff7480eae67b13b5cf9710e96cb8692d87cc860e9d20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25e9b13a1bf46d4faadf87051f66f85c65e5c04dc9eb4dfc6696b906a7c44015"} -2023-12-15T23:58:56.730Z INFO initializing dbft {"height": 6796, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:56.730Z debug frostfs-node/morph.go:229 new block {"index": 6795} -2023-12-15T23:58:57.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6795, "blockHeight": 6795, "took": "6.736817ms"} -2023-12-15T23:58:57.729Z INFO sending PrepareRequest {"height": 6796, "view": 0} -2023-12-15T23:58:57.729Z INFO sending Commit {"height": 6796, "view": 0} -2023-12-15T23:58:57.729Z INFO approving block {"height": 6796, "hash": "510dce14765dbc9af3d4826565cc5d8101bcf29f71e75c841623ab9b4eabf538", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c1c91a589e81551cc59ff7480eae67b13b5cf9710e96cb8692d87cc860e9d20"} -2023-12-15T23:58:57.731Z INFO initializing dbft {"height": 6797, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:57.732Z debug frostfs-node/morph.go:229 new block {"index": 6796} -2023-12-15T23:58:58.269Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6796, "blockHeight": 6796, "took": "10.075395ms"} -2023-12-15T23:58:58.731Z INFO sending PrepareRequest {"height": 6797, "view": 0} -2023-12-15T23:58:58.731Z INFO sending Commit {"height": 6797, "view": 0} -2023-12-15T23:58:58.731Z INFO approving block {"height": 6797, "hash": "a2e81dcacc3b9a29d61ed59be3bc6dcb468cf8c4e3c7e1a3d2b0e505215af38b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "510dce14765dbc9af3d4826565cc5d8101bcf29f71e75c841623ab9b4eabf538"} -2023-12-15T23:58:58.733Z INFO initializing dbft {"height": 6798, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:58.734Z debug frostfs-node/morph.go:229 new block {"index": 6797} -2023-12-15T23:58:59.271Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6797, "blockHeight": 6797, "took": "10.126346ms"} -2023-12-15T23:58:59.733Z INFO sending PrepareRequest {"height": 6798, "view": 0} -2023-12-15T23:58:59.733Z INFO sending Commit {"height": 6798, "view": 0} -2023-12-15T23:58:59.734Z INFO approving block {"height": 6798, "hash": "3620f2b14c90a9ea2e37432946232593e02d7278f29960e8a4342b1abdc6f682", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2e81dcacc3b9a29d61ed59be3bc6dcb468cf8c4e3c7e1a3d2b0e505215af38b"} -2023-12-15T23:58:59.735Z INFO initializing dbft {"height": 6799, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:58:59.736Z debug frostfs-node/morph.go:229 new block {"index": 6798} -2023-12-15T23:59:00.269Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6798, "blockHeight": 6798, "took": "7.405906ms"} -2023-12-15T23:59:00.735Z INFO sending PrepareRequest {"height": 6799, "view": 0} -2023-12-15T23:59:00.735Z INFO sending Commit {"height": 6799, "view": 0} -2023-12-15T23:59:00.735Z INFO approving block {"height": 6799, "hash": "3cc041ec08cf70f7d63b455a87aa24636eefb4dc711842d32f7ed473fd4fca5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3620f2b14c90a9ea2e37432946232593e02d7278f29960e8a4342b1abdc6f682"} -2023-12-15T23:59:00.737Z INFO initializing dbft {"height": 6800, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:00.737Z debug frostfs-node/morph.go:229 new block {"index": 6799} -2023-12-15T23:59:01.269Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6799, "blockHeight": 6799, "took": "6.682004ms"} -2023-12-15T23:59:01.737Z INFO sending PrepareRequest {"height": 6800, "view": 0} -2023-12-15T23:59:01.737Z INFO sending Commit {"height": 6800, "view": 0} -2023-12-15T23:59:01.738Z INFO approving block {"height": 6800, "hash": "6c626bc10368ad3e3754a8abc0fa685c6180f7e4ab5388317ab8e615b7bf840b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cc041ec08cf70f7d63b455a87aa24636eefb4dc711842d32f7ed473fd4fca5b"} -2023-12-15T23:59:01.740Z INFO initializing dbft {"height": 6801, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:01.741Z debug frostfs-node/morph.go:229 new block {"index": 6800} -2023-12-15T23:59:02.271Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6800, "blockHeight": 6800, "took": "6.913472ms"} -2023-12-15T23:59:02.739Z INFO sending PrepareRequest {"height": 6801, "view": 0} -2023-12-15T23:59:02.740Z INFO sending Commit {"height": 6801, "view": 0} -2023-12-15T23:59:02.740Z INFO approving block {"height": 6801, "hash": "d75baf52550f0b4ccb94ca19c34cea9a5f6619f4005aa46584c9de340133494f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c626bc10368ad3e3754a8abc0fa685c6180f7e4ab5388317ab8e615b7bf840b"} -2023-12-15T23:59:02.741Z INFO initializing dbft {"height": 6802, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:02.742Z debug frostfs-node/morph.go:229 new block {"index": 6801} -2023-12-15T23:59:03.275Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6801, "blockHeight": 6801, "took": "10.017874ms"} -2023-12-15T23:59:03.741Z INFO sending PrepareRequest {"height": 6802, "view": 0} -2023-12-15T23:59:03.741Z INFO sending Commit {"height": 6802, "view": 0} -2023-12-15T23:59:03.741Z INFO approving block {"height": 6802, "hash": "0d743d02692a0e507603244c445aabadaca75cc08edc5a5c83d3a756c014397b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d75baf52550f0b4ccb94ca19c34cea9a5f6619f4005aa46584c9de340133494f"} -2023-12-15T23:59:03.743Z INFO initializing dbft {"height": 6803, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:03.744Z debug frostfs-node/morph.go:229 new block {"index": 6802} -2023-12-15T23:59:04.273Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6802, "blockHeight": 6802, "took": "7.066247ms"} -2023-12-15T23:59:04.743Z INFO sending PrepareRequest {"height": 6803, "view": 0} -2023-12-15T23:59:04.743Z INFO sending Commit {"height": 6803, "view": 0} -2023-12-15T23:59:04.743Z INFO approving block {"height": 6803, "hash": "aae9347ebdf5031693e7fe2240f94a7925db4f4627aabfabf6a178e8f536676d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d743d02692a0e507603244c445aabadaca75cc08edc5a5c83d3a756c014397b"} -2023-12-15T23:59:04.745Z INFO initializing dbft {"height": 6804, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:04.746Z debug frostfs-node/morph.go:229 new block {"index": 6803} -2023-12-15T23:59:05.274Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6803, "blockHeight": 6803, "took": "7.454917ms"} -2023-12-15T23:59:05.744Z INFO sending PrepareRequest {"height": 6804, "view": 0} -2023-12-15T23:59:05.745Z INFO sending Commit {"height": 6804, "view": 0} -2023-12-15T23:59:05.745Z INFO approving block {"height": 6804, "hash": "09a1ae9912a7131420187df15fec3ef5969919be5996974bbbd8b2c0fcd886a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aae9347ebdf5031693e7fe2240f94a7925db4f4627aabfabf6a178e8f536676d"} -2023-12-15T23:59:05.746Z INFO initializing dbft {"height": 6805, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:05.748Z debug frostfs-node/morph.go:229 new block {"index": 6804} -2023-12-15T23:59:06.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6804, "blockHeight": 6804, "took": "9.730093ms"} -2023-12-15T23:59:06.746Z INFO sending PrepareRequest {"height": 6805, "view": 0} -2023-12-15T23:59:06.747Z INFO sending Commit {"height": 6805, "view": 0} -2023-12-15T23:59:06.747Z INFO approving block {"height": 6805, "hash": "f5e7a6e1d03502a2501e8a4748e18fda5f6f3cfff51035b86e9cf29207171677", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09a1ae9912a7131420187df15fec3ef5969919be5996974bbbd8b2c0fcd886a3"} -2023-12-15T23:59:06.749Z INFO initializing dbft {"height": 6806, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:06.750Z debug frostfs-node/morph.go:229 new block {"index": 6805} -2023-12-15T23:59:07.276Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6805, "blockHeight": 6805, "took": "7.739216ms"} -2023-12-15T23:59:07.748Z INFO sending PrepareRequest {"height": 6806, "view": 0} -2023-12-15T23:59:07.749Z INFO sending Commit {"height": 6806, "view": 0} -2023-12-15T23:59:07.749Z INFO approving block {"height": 6806, "hash": "e12d98066f9d2a03da81f44b78d4c81cde0210a37b6a0ff565b3b3ae918a50c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5e7a6e1d03502a2501e8a4748e18fda5f6f3cfff51035b86e9cf29207171677"} -2023-12-15T23:59:07.751Z INFO initializing dbft {"height": 6807, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:07.751Z debug frostfs-node/morph.go:229 new block {"index": 6806} -2023-12-15T23:59:08.276Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6806, "blockHeight": 6806, "took": "6.690016ms"} -2023-12-15T23:59:08.750Z INFO sending PrepareRequest {"height": 6807, "view": 0} -2023-12-15T23:59:08.751Z INFO sending Commit {"height": 6807, "view": 0} -2023-12-15T23:59:08.751Z INFO approving block {"height": 6807, "hash": "c29b14a260b14917e4b7daeb492de4fc12491de4f20d75eb53bdc7bd7ababe6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e12d98066f9d2a03da81f44b78d4c81cde0210a37b6a0ff565b3b3ae918a50c9"} -2023-12-15T23:59:08.752Z INFO initializing dbft {"height": 6808, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:08.753Z debug frostfs-node/morph.go:229 new block {"index": 6807} -2023-12-15T23:59:09.279Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6807, "blockHeight": 6807, "took": "9.351443ms"} -2023-12-15T23:59:09.752Z INFO sending PrepareRequest {"height": 6808, "view": 0} -2023-12-15T23:59:09.752Z INFO sending Commit {"height": 6808, "view": 0} -2023-12-15T23:59:09.753Z INFO approving block {"height": 6808, "hash": "33295d5f371419e97b227abe82eadecd9fde6aaa5fe60d8999d2d8592211979e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c29b14a260b14917e4b7daeb492de4fc12491de4f20d75eb53bdc7bd7ababe6e"} -2023-12-15T23:59:09.757Z INFO initializing dbft {"height": 6809, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:09.758Z debug frostfs-node/morph.go:229 new block {"index": 6808} -2023-12-15T23:59:09.765Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 29 epoch for daughters"} -2023-12-15T23:59:09.767Z INFO runtime log {"tx": "7e994ee10c038b03f84bddb61c701395b1296dfb9b5c74de4ac47f5d9ada5d48", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:59:10.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6808, "blockHeight": 6808, "took": "8.951393ms"} -2023-12-15T23:59:10.754Z INFO sending PrepareRequest {"height": 6809, "view": 0} -2023-12-15T23:59:10.754Z INFO sending Commit {"height": 6809, "view": 0} -2023-12-15T23:59:10.754Z INFO approving block {"height": 6809, "hash": "4d870efb686d34d22250c1ba50111e82f08fcd203da495eb0965b457daef01df", "tx_count": 1, "merkle": "148e78ab23cf322db4bdf1585a495f743e6b0dd9132f2812e3b72c6cf86d8b72", "prev": "33295d5f371419e97b227abe82eadecd9fde6aaa5fe60d8999d2d8592211979e"} -2023-12-15T23:59:10.755Z INFO runtime log {"tx": "728b6df86c2cb7e312282f13d90d6b3e745f495a58f1bdb42d32cf23ab788e14", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-15T23:59:10.757Z INFO initializing dbft {"height": 6810, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:10.757Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 29} -2023-12-15T23:59:10.757Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 29} -2023-12-15T23:59:10.759Z debug frostfs-node/morph.go:229 new block {"index": 6809} -2023-12-15T23:59:11.282Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 6809, "blockHeight": 6809, "took": "9.906163ms"} -2023-12-15T23:59:11.755Z INFO sending PrepareRequest {"height": 6810, "view": 0} -2023-12-15T23:59:11.756Z INFO sending Commit {"height": 6810, "view": 0} -2023-12-15T23:59:11.756Z INFO approving block {"height": 6810, "hash": "81d44e76661e53250b86ad28587feb87acc92b38d8c1ad82875fe9a07875f39a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d870efb686d34d22250c1ba50111e82f08fcd203da495eb0965b457daef01df"} -2023-12-15T23:59:11.757Z INFO initializing dbft {"height": 6811, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:11.759Z debug frostfs-node/morph.go:229 new block {"index": 6810} -2023-12-15T23:59:12.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6810, "blockHeight": 6810, "took": "7.106437ms"} -2023-12-15T23:59:12.757Z INFO sending PrepareRequest {"height": 6811, "view": 0} -2023-12-15T23:59:12.758Z INFO sending Commit {"height": 6811, "view": 0} -2023-12-15T23:59:12.758Z INFO approving block {"height": 6811, "hash": "a34c20d94a7f83e0ce529070aa290dbb43cd566820c0ecff8c3ff0865c3b1c2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81d44e76661e53250b86ad28587feb87acc92b38d8c1ad82875fe9a07875f39a"} -2023-12-15T23:59:12.760Z INFO initializing dbft {"height": 6812, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:12.760Z debug frostfs-node/morph.go:229 new block {"index": 6811} -2023-12-15T23:59:13.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6811, "blockHeight": 6811, "took": "7.539051ms"} -2023-12-15T23:59:13.759Z INFO sending PrepareRequest {"height": 6812, "view": 0} -2023-12-15T23:59:13.759Z INFO sending Commit {"height": 6812, "view": 0} -2023-12-15T23:59:13.760Z INFO approving block {"height": 6812, "hash": "3d3505fe6fa9d2269a938b1c40a49e4b31ba2980d1676db55e3f29ba60a870d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a34c20d94a7f83e0ce529070aa290dbb43cd566820c0ecff8c3ff0865c3b1c2b"} -2023-12-15T23:59:13.762Z INFO initializing dbft {"height": 6813, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:13.762Z debug frostfs-node/morph.go:229 new block {"index": 6812} -2023-12-15T23:59:14.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6812, "blockHeight": 6812, "took": "7.224791ms"} -2023-12-15T23:59:14.762Z INFO sending PrepareRequest {"height": 6813, "view": 0} -2023-12-15T23:59:14.762Z INFO sending Commit {"height": 6813, "view": 0} -2023-12-15T23:59:14.762Z INFO approving block {"height": 6813, "hash": "2c2ed2095e26a78ffdc17cd45bfff639794ed6a7f43802ed341f7fec2163ed85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d3505fe6fa9d2269a938b1c40a49e4b31ba2980d1676db55e3f29ba60a870d9"} -2023-12-15T23:59:14.764Z INFO initializing dbft {"height": 6814, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:14.766Z debug frostfs-node/morph.go:229 new block {"index": 6813} -2023-12-15T23:59:15.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6813, "blockHeight": 6813, "took": "7.394735ms"} -2023-12-15T23:59:15.763Z INFO sending PrepareRequest {"height": 6814, "view": 0} -2023-12-15T23:59:15.763Z INFO sending Commit {"height": 6814, "view": 0} -2023-12-15T23:59:15.764Z INFO approving block {"height": 6814, "hash": "d2211b48a4237d8fd8c11ddcd533161dc6caf0db93508a626fad1f58d6a9aed1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c2ed2095e26a78ffdc17cd45bfff639794ed6a7f43802ed341f7fec2163ed85"} -2023-12-15T23:59:15.765Z INFO initializing dbft {"height": 6815, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:15.766Z debug frostfs-node/morph.go:229 new block {"index": 6814} -2023-12-15T23:59:16.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6814, "blockHeight": 6814, "took": "7.045775ms"} -2023-12-15T23:59:16.766Z INFO sending PrepareRequest {"height": 6815, "view": 0} -2023-12-15T23:59:16.766Z INFO sending Commit {"height": 6815, "view": 0} -2023-12-15T23:59:16.766Z INFO approving block {"height": 6815, "hash": "f8beeee2d1321d4f57fd5c790dd7e9273511ddd1293711cdffe026c98a316008", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2211b48a4237d8fd8c11ddcd533161dc6caf0db93508a626fad1f58d6a9aed1"} -2023-12-15T23:59:16.768Z INFO initializing dbft {"height": 6816, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:16.769Z debug frostfs-node/morph.go:229 new block {"index": 6815} -2023-12-15T23:59:17.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6815, "blockHeight": 6815, "took": "8.408006ms"} -2023-12-15T23:59:17.767Z INFO sending PrepareRequest {"height": 6816, "view": 0} -2023-12-15T23:59:17.768Z INFO sending Commit {"height": 6816, "view": 0} -2023-12-15T23:59:17.768Z INFO approving block {"height": 6816, "hash": "19a6dc9056f95a3e5366e56b5570c66f54767643fea8d29ce9383f58546f5fa2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8beeee2d1321d4f57fd5c790dd7e9273511ddd1293711cdffe026c98a316008"} -2023-12-15T23:59:17.769Z INFO initializing dbft {"height": 6817, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:17.771Z debug frostfs-node/morph.go:229 new block {"index": 6816} -2023-12-15T23:59:18.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6816, "blockHeight": 6816, "took": "7.703915ms"} -2023-12-15T23:59:18.770Z INFO sending PrepareRequest {"height": 6817, "view": 0} -2023-12-15T23:59:18.770Z INFO sending Commit {"height": 6817, "view": 0} -2023-12-15T23:59:18.771Z INFO approving block {"height": 6817, "hash": "600aa4bb807d28fd1ab4ccc30bf79b023024b07728047a3755fdfe8cdcaeb618", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19a6dc9056f95a3e5366e56b5570c66f54767643fea8d29ce9383f58546f5fa2"} -2023-12-15T23:59:18.773Z INFO initializing dbft {"height": 6818, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:18.773Z debug frostfs-node/morph.go:229 new block {"index": 6817} -2023-12-15T23:59:18.777Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-15T23:59:18.779Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:59:18.779Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:59:19.287Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6817, "blockHeight": 6817, "took": "10.20869ms"} -2023-12-15T23:59:19.772Z INFO sending PrepareRequest {"height": 6818, "view": 0} -2023-12-15T23:59:19.772Z INFO sending Commit {"height": 6818, "view": 0} -2023-12-15T23:59:19.773Z INFO approving block {"height": 6818, "hash": "db31660802f08665da7e33f22b7b90c70803d302ada0e8e925f6584a82420a1d", "tx_count": 2, "merkle": "ccf70e1f82ea6b196a27967d4c5570e1668d7b8568d8d1c0bc4c793174398429", "prev": "600aa4bb807d28fd1ab4ccc30bf79b023024b07728047a3755fdfe8cdcaeb618"} -2023-12-15T23:59:19.774Z INFO runtime log {"tx": "9759f0564e22e31742608f2febe3d4275a6e0149d4545f301a8d6c7038c40852", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-15T23:59:19.774Z INFO runtime log {"tx": "9759f0564e22e31742608f2febe3d4275a6e0149d4545f301a8d6c7038c40852", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-15T23:59:19.775Z INFO initializing dbft {"height": 6819, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:19.777Z debug frostfs-node/morph.go:229 new block {"index": 6818} -2023-12-15T23:59:20.288Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6818, "blockHeight": 6818, "took": "10.133756ms"} -2023-12-15T23:59:20.775Z INFO sending PrepareRequest {"height": 6819, "view": 0} -2023-12-15T23:59:20.775Z INFO sending Commit {"height": 6819, "view": 0} -2023-12-15T23:59:20.775Z INFO approving block {"height": 6819, "hash": "45593234fbb4c4b8c9a21049be433ea233b61316db63dbcaa5d9bc0b80523cfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db31660802f08665da7e33f22b7b90c70803d302ada0e8e925f6584a82420a1d"} -2023-12-15T23:59:20.776Z INFO initializing dbft {"height": 6820, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:20.777Z debug frostfs-node/morph.go:229 new block {"index": 6819} -2023-12-15T23:59:21.285Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6819, "blockHeight": 6819, "took": "5.486041ms"} -2023-12-15T23:59:21.777Z INFO sending PrepareRequest {"height": 6820, "view": 0} -2023-12-15T23:59:21.777Z INFO sending Commit {"height": 6820, "view": 0} -2023-12-15T23:59:21.777Z INFO approving block {"height": 6820, "hash": "e6bfffa65496cf6575aaa78314818481829400e1054bfd96cce96796b8c0cfe1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45593234fbb4c4b8c9a21049be433ea233b61316db63dbcaa5d9bc0b80523cfc"} -2023-12-15T23:59:21.779Z INFO initializing dbft {"height": 6821, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:21.780Z debug frostfs-node/morph.go:229 new block {"index": 6820} -2023-12-15T23:59:22.288Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6820, "blockHeight": 6820, "took": "7.809802ms"} -2023-12-15T23:59:22.779Z INFO sending PrepareRequest {"height": 6821, "view": 0} -2023-12-15T23:59:22.779Z INFO sending Commit {"height": 6821, "view": 0} -2023-12-15T23:59:22.779Z INFO approving block {"height": 6821, "hash": "a4f29ebb0442b938326aacc9a9e1c3b1bb32ccbd0c7f270dbce5f4bb242ea416", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6bfffa65496cf6575aaa78314818481829400e1054bfd96cce96796b8c0cfe1"} -2023-12-15T23:59:22.781Z INFO initializing dbft {"height": 6822, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:22.783Z debug frostfs-node/morph.go:229 new block {"index": 6821} -2023-12-15T23:59:23.288Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6821, "blockHeight": 6821, "took": "7.225346ms"} -2023-12-15T23:59:23.780Z INFO sending PrepareRequest {"height": 6822, "view": 0} -2023-12-15T23:59:23.781Z INFO sending Commit {"height": 6822, "view": 0} -2023-12-15T23:59:23.782Z INFO approving block {"height": 6822, "hash": "f0bcb02b9b9b0fb54f02eb50dadb80dbeef8783d65852c7bae7f588082dce4fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4f29ebb0442b938326aacc9a9e1c3b1bb32ccbd0c7f270dbce5f4bb242ea416"} -2023-12-15T23:59:23.784Z INFO initializing dbft {"height": 6823, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:23.785Z debug frostfs-node/morph.go:229 new block {"index": 6822} -2023-12-15T23:59:24.289Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6822, "blockHeight": 6822, "took": "7.548171ms"} -2023-12-15T23:59:24.783Z INFO sending PrepareRequest {"height": 6823, "view": 0} -2023-12-15T23:59:24.783Z INFO sending Commit {"height": 6823, "view": 0} -2023-12-15T23:59:24.784Z INFO approving block {"height": 6823, "hash": "c033d52e245ca8d7dfc48ea492ff521fd20b07346a3d1a241a6980307a15e937", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0bcb02b9b9b0fb54f02eb50dadb80dbeef8783d65852c7bae7f588082dce4fc"} -2023-12-15T23:59:24.786Z INFO initializing dbft {"height": 6824, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:24.786Z debug frostfs-node/morph.go:229 new block {"index": 6823} -2023-12-15T23:59:25.289Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6823, "blockHeight": 6823, "took": "6.756627ms"} -2023-12-15T23:59:25.785Z INFO sending PrepareRequest {"height": 6824, "view": 0} -2023-12-15T23:59:25.785Z INFO sending Commit {"height": 6824, "view": 0} -2023-12-15T23:59:25.786Z INFO approving block {"height": 6824, "hash": "db60a4e1399148932bf89cff90c4bde28ccdd8f849d1a13e235ca8f1b370af85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c033d52e245ca8d7dfc48ea492ff521fd20b07346a3d1a241a6980307a15e937"} -2023-12-15T23:59:25.787Z INFO initializing dbft {"height": 6825, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:25.788Z debug frostfs-node/morph.go:229 new block {"index": 6824} -2023-12-15T23:59:26.290Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6824, "blockHeight": 6824, "took": "6.354116ms"} -2023-12-15T23:59:26.787Z INFO sending PrepareRequest {"height": 6825, "view": 0} -2023-12-15T23:59:26.787Z INFO sending Commit {"height": 6825, "view": 0} -2023-12-15T23:59:26.788Z INFO approving block {"height": 6825, "hash": "bb6f11cd72ba2618230721e55ef052aa36b643b84fce4af2b76a00f57425fbff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db60a4e1399148932bf89cff90c4bde28ccdd8f849d1a13e235ca8f1b370af85"} -2023-12-15T23:59:26.790Z INFO initializing dbft {"height": 6826, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:26.790Z debug frostfs-node/morph.go:229 new block {"index": 6825} -2023-12-15T23:59:27.291Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6825, "blockHeight": 6825, "took": "6.764329ms"} -2023-12-15T23:59:27.790Z INFO sending PrepareRequest {"height": 6826, "view": 0} -2023-12-15T23:59:27.790Z INFO sending Commit {"height": 6826, "view": 0} -2023-12-15T23:59:27.790Z INFO approving block {"height": 6826, "hash": "07b529cfb7bf2a94e9a356346d741c4ed0fafed63c37d712207f8e62ea219eff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb6f11cd72ba2618230721e55ef052aa36b643b84fce4af2b76a00f57425fbff"} -2023-12-15T23:59:27.792Z INFO initializing dbft {"height": 6827, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:27.793Z debug frostfs-node/morph.go:229 new block {"index": 6826} -2023-12-15T23:59:28.293Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6826, "blockHeight": 6826, "took": "7.751363ms"} -2023-12-15T23:59:28.791Z INFO sending PrepareRequest {"height": 6827, "view": 0} -2023-12-15T23:59:28.792Z INFO sending Commit {"height": 6827, "view": 0} -2023-12-15T23:59:28.792Z INFO approving block {"height": 6827, "hash": "3e7301467048659dc377d4207dbf32a3559713cc52a8e40462abe3b218515a0c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07b529cfb7bf2a94e9a356346d741c4ed0fafed63c37d712207f8e62ea219eff"} -2023-12-15T23:59:28.794Z INFO initializing dbft {"height": 6828, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:28.795Z debug frostfs-node/morph.go:229 new block {"index": 6827} -2023-12-15T23:59:29.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6827, "blockHeight": 6827, "took": "6.769137ms"} -2023-12-15T23:59:29.793Z INFO sending PrepareRequest {"height": 6828, "view": 0} -2023-12-15T23:59:29.793Z INFO sending Commit {"height": 6828, "view": 0} -2023-12-15T23:59:29.794Z INFO approving block {"height": 6828, "hash": "039356f958eb5cc7d70efab0facb84ab2cd5d2bb56d378380c431c5a0c58c13a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e7301467048659dc377d4207dbf32a3559713cc52a8e40462abe3b218515a0c"} -2023-12-15T23:59:29.796Z INFO initializing dbft {"height": 6829, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:29.797Z debug frostfs-node/morph.go:229 new block {"index": 6828} -2023-12-15T23:59:30.294Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6828, "blockHeight": 6828, "took": "7.367789ms"} -2023-12-15T23:59:30.795Z INFO sending PrepareRequest {"height": 6829, "view": 0} -2023-12-15T23:59:30.795Z INFO sending Commit {"height": 6829, "view": 0} -2023-12-15T23:59:30.795Z INFO approving block {"height": 6829, "hash": "bc22335f473c8b4197c1a74cb869e934d103f0fc45cb3e1aa81f878f5b5dc41c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "039356f958eb5cc7d70efab0facb84ab2cd5d2bb56d378380c431c5a0c58c13a"} -2023-12-15T23:59:30.796Z INFO initializing dbft {"height": 6830, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:30.797Z debug frostfs-node/morph.go:229 new block {"index": 6829} -2023-12-15T23:59:31.295Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6829, "blockHeight": 6829, "took": "8.206694ms"} -2023-12-15T23:59:31.796Z INFO sending PrepareRequest {"height": 6830, "view": 0} -2023-12-15T23:59:31.796Z INFO sending Commit {"height": 6830, "view": 0} -2023-12-15T23:59:31.797Z INFO approving block {"height": 6830, "hash": "c7a668244597cb75ac08301cfe9ef4a27a8140ae53aff59e3b231c4041f735df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc22335f473c8b4197c1a74cb869e934d103f0fc45cb3e1aa81f878f5b5dc41c"} -2023-12-15T23:59:31.798Z INFO initializing dbft {"height": 6831, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:31.799Z debug frostfs-node/morph.go:229 new block {"index": 6830} -2023-12-15T23:59:32.294Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6830, "blockHeight": 6830, "took": "6.476094ms"} -2023-12-15T23:59:32.798Z INFO sending PrepareRequest {"height": 6831, "view": 0} -2023-12-15T23:59:32.798Z INFO sending Commit {"height": 6831, "view": 0} -2023-12-15T23:59:32.799Z INFO approving block {"height": 6831, "hash": "1485ff3c4622c2caa6aa7f024beb0ea32e7b005148fd84fa5ca049257861dade", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7a668244597cb75ac08301cfe9ef4a27a8140ae53aff59e3b231c4041f735df"} -2023-12-15T23:59:32.800Z INFO initializing dbft {"height": 6832, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:32.801Z debug frostfs-node/morph.go:229 new block {"index": 6831} -2023-12-15T23:59:33.294Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6831, "blockHeight": 6831, "took": "5.880302ms"} -2023-12-15T23:59:33.800Z INFO sending PrepareRequest {"height": 6832, "view": 0} -2023-12-15T23:59:33.800Z INFO sending Commit {"height": 6832, "view": 0} -2023-12-15T23:59:33.800Z INFO approving block {"height": 6832, "hash": "985e06b91f2ed51e5bb916c4ed37f334f1d597cdb277d6596bd27c4551364ebe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1485ff3c4622c2caa6aa7f024beb0ea32e7b005148fd84fa5ca049257861dade"} -2023-12-15T23:59:33.802Z INFO initializing dbft {"height": 6833, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:33.803Z debug frostfs-node/morph.go:229 new block {"index": 6832} -2023-12-15T23:59:34.296Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6832, "blockHeight": 6832, "took": "6.981183ms"} -2023-12-15T23:59:34.802Z INFO sending PrepareRequest {"height": 6833, "view": 0} -2023-12-15T23:59:34.802Z INFO sending Commit {"height": 6833, "view": 0} -2023-12-15T23:59:34.802Z INFO approving block {"height": 6833, "hash": "21587f16c62e2c58d4c1df3a31be2f1da193e218cc0c07c3062e29a6fdcbbcfb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "985e06b91f2ed51e5bb916c4ed37f334f1d597cdb277d6596bd27c4551364ebe"} -2023-12-15T23:59:34.804Z INFO initializing dbft {"height": 6834, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:34.805Z debug frostfs-node/morph.go:229 new block {"index": 6833} -2023-12-15T23:59:35.297Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6833, "blockHeight": 6833, "took": "6.769378ms"} -2023-12-15T23:59:35.804Z INFO sending PrepareRequest {"height": 6834, "view": 0} -2023-12-15T23:59:35.804Z INFO sending Commit {"height": 6834, "view": 0} -2023-12-15T23:59:35.804Z INFO approving block {"height": 6834, "hash": "d4c218065fa56138d4f468ba938ab4bc680dba307f2dba6b12aa3d2b0dbe678a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21587f16c62e2c58d4c1df3a31be2f1da193e218cc0c07c3062e29a6fdcbbcfb"} -2023-12-15T23:59:35.806Z INFO initializing dbft {"height": 6835, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:35.807Z debug frostfs-node/morph.go:229 new block {"index": 6834} -2023-12-15T23:59:36.297Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6834, "blockHeight": 6834, "took": "5.66623ms"} -2023-12-15T23:59:36.805Z INFO sending PrepareRequest {"height": 6835, "view": 0} -2023-12-15T23:59:36.806Z INFO sending Commit {"height": 6835, "view": 0} -2023-12-15T23:59:36.806Z INFO approving block {"height": 6835, "hash": "56d7a7f5e6bf72b6ec9dbcddb9f1495809240f56a56210e8f4c3a01d6627d22b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4c218065fa56138d4f468ba938ab4bc680dba307f2dba6b12aa3d2b0dbe678a"} -2023-12-15T23:59:36.807Z INFO initializing dbft {"height": 6836, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:36.808Z debug frostfs-node/morph.go:229 new block {"index": 6835} -2023-12-15T23:59:37.301Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6835, "blockHeight": 6835, "took": "9.328977ms"} -2023-12-15T23:59:37.807Z INFO sending PrepareRequest {"height": 6836, "view": 0} -2023-12-15T23:59:37.808Z INFO sending Commit {"height": 6836, "view": 0} -2023-12-15T23:59:37.808Z INFO approving block {"height": 6836, "hash": "ec3ff52e8ef88f9874a622e317174cc728710c73dff8bd32c1b87d8615ad2dbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56d7a7f5e6bf72b6ec9dbcddb9f1495809240f56a56210e8f4c3a01d6627d22b"} -2023-12-15T23:59:37.811Z INFO initializing dbft {"height": 6837, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:37.811Z debug frostfs-node/morph.go:229 new block {"index": 6836} -2023-12-15T23:59:38.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6836, "blockHeight": 6836, "took": "7.373605ms"} -2023-12-15T23:59:38.809Z INFO sending PrepareRequest {"height": 6837, "view": 0} -2023-12-15T23:59:38.809Z INFO sending Commit {"height": 6837, "view": 0} -2023-12-15T23:59:38.810Z INFO approving block {"height": 6837, "hash": "994ac8e5d24702a03ed007a3a8cb3ba092ee24c4cab05e75c7bd5feb7e9cfcc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec3ff52e8ef88f9874a622e317174cc728710c73dff8bd32c1b87d8615ad2dbc"} -2023-12-15T23:59:38.811Z INFO initializing dbft {"height": 6838, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:38.812Z debug frostfs-node/morph.go:229 new block {"index": 6837} -2023-12-15T23:59:39.301Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6837, "blockHeight": 6837, "took": "7.079627ms"} -2023-12-15T23:59:39.812Z INFO sending PrepareRequest {"height": 6838, "view": 0} -2023-12-15T23:59:39.812Z INFO sending Commit {"height": 6838, "view": 0} -2023-12-15T23:59:39.812Z INFO approving block {"height": 6838, "hash": "c11bbf4d6913b7a86938b9745d4ce190804a5ec5d1912959ac0b382d3d8563aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "994ac8e5d24702a03ed007a3a8cb3ba092ee24c4cab05e75c7bd5feb7e9cfcc0"} -2023-12-15T23:59:39.815Z INFO initializing dbft {"height": 6839, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:39.816Z debug frostfs-node/morph.go:229 new block {"index": 6838} -2023-12-15T23:59:40.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6838, "blockHeight": 6838, "took": "7.138548ms"} -2023-12-15T23:59:40.814Z INFO sending PrepareRequest {"height": 6839, "view": 0} -2023-12-15T23:59:40.814Z INFO sending Commit {"height": 6839, "view": 0} -2023-12-15T23:59:40.815Z INFO approving block {"height": 6839, "hash": "6ef9dd3a496980c8577997a76ca73eefe499ba1a10264baf8b4930c5d104fc80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c11bbf4d6913b7a86938b9745d4ce190804a5ec5d1912959ac0b382d3d8563aa"} -2023-12-15T23:59:40.817Z INFO initializing dbft {"height": 6840, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:40.818Z debug frostfs-node/morph.go:229 new block {"index": 6839} -2023-12-15T23:59:41.303Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6839, "blockHeight": 6839, "took": "7.209321ms"} -2023-12-15T23:59:41.816Z INFO sending PrepareRequest {"height": 6840, "view": 0} -2023-12-15T23:59:41.816Z INFO sending Commit {"height": 6840, "view": 0} -2023-12-15T23:59:41.816Z INFO approving block {"height": 6840, "hash": "cd7ffa26b7b1feb508f71701dfe159a0dcf39b6a748f38a71d03862a8bd2d38c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ef9dd3a496980c8577997a76ca73eefe499ba1a10264baf8b4930c5d104fc80"} -2023-12-15T23:59:41.819Z INFO initializing dbft {"height": 6841, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:41.820Z debug frostfs-node/morph.go:229 new block {"index": 6840} -2023-12-15T23:59:42.303Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6840, "blockHeight": 6840, "took": "6.15849ms"} -2023-12-15T23:59:42.818Z INFO sending PrepareRequest {"height": 6841, "view": 0} -2023-12-15T23:59:42.819Z INFO sending Commit {"height": 6841, "view": 0} -2023-12-15T23:59:42.819Z INFO approving block {"height": 6841, "hash": "b10b1d902e93d511cdb5d77dc188d694dff2c78e5add9e6292be17506a33e722", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd7ffa26b7b1feb508f71701dfe159a0dcf39b6a748f38a71d03862a8bd2d38c"} -2023-12-15T23:59:42.821Z INFO initializing dbft {"height": 6842, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:42.822Z debug frostfs-node/morph.go:229 new block {"index": 6841} -2023-12-15T23:59:43.305Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6841, "blockHeight": 6841, "took": "7.318994ms"} -2023-12-15T23:59:43.820Z INFO sending PrepareRequest {"height": 6842, "view": 0} -2023-12-15T23:59:43.820Z INFO sending Commit {"height": 6842, "view": 0} -2023-12-15T23:59:43.821Z INFO approving block {"height": 6842, "hash": "f66755c176aa2f80222e8625325ec5a0775dea117d214cc3d7f543421e878f1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b10b1d902e93d511cdb5d77dc188d694dff2c78e5add9e6292be17506a33e722"} -2023-12-15T23:59:43.822Z INFO initializing dbft {"height": 6843, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:43.823Z debug frostfs-node/morph.go:229 new block {"index": 6842} -2023-12-15T23:59:44.305Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6842, "blockHeight": 6842, "took": "6.361526ms"} -2023-12-15T23:59:44.822Z INFO sending PrepareRequest {"height": 6843, "view": 0} -2023-12-15T23:59:44.822Z INFO sending Commit {"height": 6843, "view": 0} -2023-12-15T23:59:44.822Z INFO approving block {"height": 6843, "hash": "7d512f9fd765cdd9474c1e768ca86a39c8e8cdc2286336b30a5707b28a135574", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f66755c176aa2f80222e8625325ec5a0775dea117d214cc3d7f543421e878f1f"} -2023-12-15T23:59:44.824Z INFO initializing dbft {"height": 6844, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:44.825Z debug frostfs-node/morph.go:229 new block {"index": 6843} -2023-12-15T23:59:45.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6843, "blockHeight": 6843, "took": "8.770076ms"} -2023-12-15T23:59:45.824Z INFO sending PrepareRequest {"height": 6844, "view": 0} -2023-12-15T23:59:45.824Z INFO sending Commit {"height": 6844, "view": 0} -2023-12-15T23:59:45.824Z INFO approving block {"height": 6844, "hash": "d40382c4080fc866b079dc768311b4192c4500f5026172968171a7adb23a74ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d512f9fd765cdd9474c1e768ca86a39c8e8cdc2286336b30a5707b28a135574"} -2023-12-15T23:59:45.826Z INFO initializing dbft {"height": 6845, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:45.827Z debug frostfs-node/morph.go:229 new block {"index": 6844} -2023-12-15T23:59:46.310Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6844, "blockHeight": 6844, "took": "10.243861ms"} -2023-12-15T23:59:46.825Z INFO sending PrepareRequest {"height": 6845, "view": 0} -2023-12-15T23:59:46.826Z INFO sending Commit {"height": 6845, "view": 0} -2023-12-15T23:59:46.826Z INFO approving block {"height": 6845, "hash": "c9a16794eca891846a01cecce9c60b4140bf84d451ea1470bc39dfd9fa849a64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d40382c4080fc866b079dc768311b4192c4500f5026172968171a7adb23a74ba"} -2023-12-15T23:59:46.827Z INFO initializing dbft {"height": 6846, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:46.828Z debug frostfs-node/morph.go:229 new block {"index": 6845} -2023-12-15T23:59:47.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6845, "blockHeight": 6845, "took": "6.877969ms"} -2023-12-15T23:59:47.828Z INFO sending PrepareRequest {"height": 6846, "view": 0} -2023-12-15T23:59:47.828Z INFO sending Commit {"height": 6846, "view": 0} -2023-12-15T23:59:47.828Z INFO approving block {"height": 6846, "hash": "eabf3e32df21a19759b015f6d6aeec050f340c63b66b4fc62184158765767c47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9a16794eca891846a01cecce9c60b4140bf84d451ea1470bc39dfd9fa849a64"} -2023-12-15T23:59:47.830Z INFO initializing dbft {"height": 6847, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:47.831Z debug frostfs-node/morph.go:229 new block {"index": 6846} -2023-12-15T23:59:48.313Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6846, "blockHeight": 6846, "took": "10.887736ms"} -2023-12-15T23:59:48.830Z INFO sending PrepareRequest {"height": 6847, "view": 0} -2023-12-15T23:59:48.830Z INFO sending Commit {"height": 6847, "view": 0} -2023-12-15T23:59:48.830Z INFO approving block {"height": 6847, "hash": "e4d9d5abb18d903ff33160a982f090e675bb72fb51afb0ed370b045bb5218efc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eabf3e32df21a19759b015f6d6aeec050f340c63b66b4fc62184158765767c47"} -2023-12-15T23:59:48.832Z INFO initializing dbft {"height": 6848, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:48.833Z debug frostfs-node/morph.go:229 new block {"index": 6847} -2023-12-15T23:59:49.312Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6847, "blockHeight": 6847, "took": "9.589212ms"} -2023-12-15T23:59:49.831Z INFO sending PrepareRequest {"height": 6848, "view": 0} -2023-12-15T23:59:49.832Z INFO sending Commit {"height": 6848, "view": 0} -2023-12-15T23:59:49.832Z INFO approving block {"height": 6848, "hash": "b9b91e35357485dbd9c6bc06c7ec9e1a1a1cf24451c144c7a882d0017ff97de7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4d9d5abb18d903ff33160a982f090e675bb72fb51afb0ed370b045bb5218efc"} -2023-12-15T23:59:49.835Z INFO initializing dbft {"height": 6849, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:49.836Z debug frostfs-node/morph.go:229 new block {"index": 6848} -2023-12-15T23:59:50.313Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6848, "blockHeight": 6848, "took": "9.972563ms"} -2023-12-15T23:59:50.833Z INFO sending PrepareRequest {"height": 6849, "view": 0} -2023-12-15T23:59:50.833Z INFO sending Commit {"height": 6849, "view": 0} -2023-12-15T23:59:50.834Z INFO approving block {"height": 6849, "hash": "2fe636bc6695f430d62ecc48ef9f041b511400ff5d5088086473123cabd0c4b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9b91e35357485dbd9c6bc06c7ec9e1a1a1cf24451c144c7a882d0017ff97de7"} -2023-12-15T23:59:50.836Z INFO initializing dbft {"height": 6850, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:50.837Z debug frostfs-node/morph.go:229 new block {"index": 6849} -2023-12-15T23:59:51.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6849, "blockHeight": 6849, "took": "6.484341ms"} -2023-12-15T23:59:51.835Z INFO sending PrepareRequest {"height": 6850, "view": 0} -2023-12-15T23:59:51.835Z INFO sending Commit {"height": 6850, "view": 0} -2023-12-15T23:59:51.835Z INFO approving block {"height": 6850, "hash": "207ddce8b4693a61c47e8e3c72f04ffdfaf86abc3cab82534d4017664da3666c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fe636bc6695f430d62ecc48ef9f041b511400ff5d5088086473123cabd0c4b3"} -2023-12-15T23:59:51.837Z INFO initializing dbft {"height": 6851, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:51.838Z debug frostfs-node/morph.go:229 new block {"index": 6850} -2023-12-15T23:59:52.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6850, "blockHeight": 6850, "took": "6.316456ms"} -2023-12-15T23:59:52.837Z INFO sending PrepareRequest {"height": 6851, "view": 0} -2023-12-15T23:59:52.837Z INFO sending Commit {"height": 6851, "view": 0} -2023-12-15T23:59:52.837Z INFO approving block {"height": 6851, "hash": "09478cfa44fc2e0fe4dcb8e610d71714cca576afccfe640abe43169938b84acc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "207ddce8b4693a61c47e8e3c72f04ffdfaf86abc3cab82534d4017664da3666c"} -2023-12-15T23:59:52.839Z INFO initializing dbft {"height": 6852, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:52.840Z debug frostfs-node/morph.go:229 new block {"index": 6851} -2023-12-15T23:59:53.316Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6851, "blockHeight": 6851, "took": "9.512097ms"} -2023-12-15T23:59:53.838Z INFO sending PrepareRequest {"height": 6852, "view": 0} -2023-12-15T23:59:53.839Z INFO sending Commit {"height": 6852, "view": 0} -2023-12-15T23:59:53.839Z INFO approving block {"height": 6852, "hash": "5b2b41e58a4f3e8a151e36a627cca04c67cd61ffb5d84207b7e1c9b8aaf917fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09478cfa44fc2e0fe4dcb8e610d71714cca576afccfe640abe43169938b84acc"} -2023-12-15T23:59:53.841Z INFO initializing dbft {"height": 6853, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:53.842Z debug frostfs-node/morph.go:229 new block {"index": 6852} -2023-12-15T23:59:54.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6852, "blockHeight": 6852, "took": "9.822418ms"} -2023-12-15T23:59:54.840Z INFO sending PrepareRequest {"height": 6853, "view": 0} -2023-12-15T23:59:54.840Z INFO sending Commit {"height": 6853, "view": 0} -2023-12-15T23:59:54.841Z INFO approving block {"height": 6853, "hash": "125d83c0fec6b52775c4b795eca5d936c6b23982c5be648339f5d939f89f4960", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b2b41e58a4f3e8a151e36a627cca04c67cd61ffb5d84207b7e1c9b8aaf917fd"} -2023-12-15T23:59:54.842Z INFO initializing dbft {"height": 6854, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:54.843Z debug frostfs-node/morph.go:229 new block {"index": 6853} -2023-12-15T23:59:55.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6853, "blockHeight": 6853, "took": "12.396662ms"} -2023-12-15T23:59:55.842Z INFO sending PrepareRequest {"height": 6854, "view": 0} -2023-12-15T23:59:55.843Z INFO sending Commit {"height": 6854, "view": 0} -2023-12-15T23:59:55.843Z INFO approving block {"height": 6854, "hash": "01a0bef4a159ebd5bdb51550ed2f661038e840304dafeefe1dca742baccc650f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "125d83c0fec6b52775c4b795eca5d936c6b23982c5be648339f5d939f89f4960"} -2023-12-15T23:59:55.844Z INFO initializing dbft {"height": 6855, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:55.845Z debug frostfs-node/morph.go:229 new block {"index": 6854} -2023-12-15T23:59:56.316Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6854, "blockHeight": 6854, "took": "6.390368ms"} -2023-12-15T23:59:56.844Z INFO sending PrepareRequest {"height": 6855, "view": 0} -2023-12-15T23:59:56.844Z INFO sending Commit {"height": 6855, "view": 0} -2023-12-15T23:59:56.845Z INFO approving block {"height": 6855, "hash": "958f722426dfb33dd5cecd229aa5886bb610a5e8f305e0c6f4d2cc7e8283861f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01a0bef4a159ebd5bdb51550ed2f661038e840304dafeefe1dca742baccc650f"} -2023-12-15T23:59:56.846Z INFO initializing dbft {"height": 6856, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:56.847Z debug frostfs-node/morph.go:229 new block {"index": 6855} -2023-12-15T23:59:57.318Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6855, "blockHeight": 6855, "took": "7.400317ms"} -2023-12-15T23:59:57.846Z INFO sending PrepareRequest {"height": 6856, "view": 0} -2023-12-15T23:59:57.846Z INFO sending Commit {"height": 6856, "view": 0} -2023-12-15T23:59:57.846Z INFO approving block {"height": 6856, "hash": "875159eb501aa6e2e34ccbb2100a4b0651f8641c6dd9546d14d936ae301750d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "958f722426dfb33dd5cecd229aa5886bb610a5e8f305e0c6f4d2cc7e8283861f"} -2023-12-15T23:59:57.848Z INFO initializing dbft {"height": 6857, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:57.849Z debug frostfs-node/morph.go:229 new block {"index": 6856} -2023-12-15T23:59:58.320Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6856, "blockHeight": 6856, "took": "8.702963ms"} -2023-12-15T23:59:58.848Z INFO sending PrepareRequest {"height": 6857, "view": 0} -2023-12-15T23:59:58.848Z INFO sending Commit {"height": 6857, "view": 0} -2023-12-15T23:59:58.848Z INFO approving block {"height": 6857, "hash": "99ace47acebd7a9a8711503959eb42be44309e678523294fb8285ca70addb6cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "875159eb501aa6e2e34ccbb2100a4b0651f8641c6dd9546d14d936ae301750d5"} -2023-12-15T23:59:58.850Z INFO initializing dbft {"height": 6858, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:58.851Z debug frostfs-node/morph.go:229 new block {"index": 6857} -2023-12-15T23:59:59.319Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6857, "blockHeight": 6857, "took": "7.059346ms"} -2023-12-15T23:59:59.849Z INFO sending PrepareRequest {"height": 6858, "view": 0} -2023-12-15T23:59:59.850Z INFO sending Commit {"height": 6858, "view": 0} -2023-12-15T23:59:59.850Z INFO approving block {"height": 6858, "hash": "5c6a4c142162675abacc1d0548de9812b6980c155bcffd33993433a13efb1cf1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99ace47acebd7a9a8711503959eb42be44309e678523294fb8285ca70addb6cd"} -2023-12-15T23:59:59.851Z INFO initializing dbft {"height": 6859, "view": 0, "index": 0, "role": "Primary"} -2023-12-15T23:59:59.852Z debug frostfs-node/morph.go:229 new block {"index": 6858} -2023-12-16T00:00:00.323Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6858, "blockHeight": 6858, "took": "9.496657ms"} -2023-12-16T00:00:00.851Z INFO sending PrepareRequest {"height": 6859, "view": 0} -2023-12-16T00:00:00.851Z INFO sending Commit {"height": 6859, "view": 0} -2023-12-16T00:00:00.852Z INFO approving block {"height": 6859, "hash": "d38874e2d05632c93ce04826dfe594cda45110fcc9833ac15b58141df1d614e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c6a4c142162675abacc1d0548de9812b6980c155bcffd33993433a13efb1cf1"} -2023-12-16T00:00:00.854Z INFO initializing dbft {"height": 6860, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:00.854Z debug frostfs-node/morph.go:229 new block {"index": 6859} -2023-12-16T00:00:01.324Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6859, "blockHeight": 6859, "took": "9.661081ms"} -2023-12-16T00:00:01.853Z INFO sending PrepareRequest {"height": 6860, "view": 0} -2023-12-16T00:00:01.853Z INFO sending Commit {"height": 6860, "view": 0} -2023-12-16T00:00:01.854Z INFO approving block {"height": 6860, "hash": "63e9f9a7a6040c947c07f4eca6e009de56aab9d35546d2a22818bd1508afe523", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d38874e2d05632c93ce04826dfe594cda45110fcc9833ac15b58141df1d614e5"} -2023-12-16T00:00:01.855Z INFO initializing dbft {"height": 6861, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:01.856Z debug frostfs-node/morph.go:229 new block {"index": 6860} -2023-12-16T00:00:02.329Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6860, "blockHeight": 6860, "took": "12.37345ms"} -2023-12-16T00:00:02.855Z INFO sending PrepareRequest {"height": 6861, "view": 0} -2023-12-16T00:00:02.855Z INFO sending Commit {"height": 6861, "view": 0} -2023-12-16T00:00:02.855Z INFO approving block {"height": 6861, "hash": "ff6b4b3ef9790685192f59f2dd3519fcef59c3ab3b927ee59f785da431452c30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63e9f9a7a6040c947c07f4eca6e009de56aab9d35546d2a22818bd1508afe523"} -2023-12-16T00:00:02.857Z INFO initializing dbft {"height": 6862, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:02.858Z debug frostfs-node/morph.go:229 new block {"index": 6861} -2023-12-16T00:00:03.328Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6861, "blockHeight": 6861, "took": "10.503642ms"} -2023-12-16T00:00:03.857Z INFO sending PrepareRequest {"height": 6862, "view": 0} -2023-12-16T00:00:03.857Z INFO sending Commit {"height": 6862, "view": 0} -2023-12-16T00:00:03.857Z INFO approving block {"height": 6862, "hash": "d22da64a77fe9a5146402186dfd80d5151b742b1d8f8e809cc4f9aa8a35ff6fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff6b4b3ef9790685192f59f2dd3519fcef59c3ab3b927ee59f785da431452c30"} -2023-12-16T00:00:03.859Z INFO initializing dbft {"height": 6863, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:03.859Z debug frostfs-node/morph.go:229 new block {"index": 6862} -2023-12-16T00:00:04.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6862, "blockHeight": 6862, "took": "8.553408ms"} -2023-12-16T00:00:04.859Z INFO sending PrepareRequest {"height": 6863, "view": 0} -2023-12-16T00:00:04.859Z INFO sending Commit {"height": 6863, "view": 0} -2023-12-16T00:00:04.859Z INFO approving block {"height": 6863, "hash": "c0ed1ea9aa85fbf66ded4817b61c61bfbb7f741d42063e27f03bd10f1f5fef16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d22da64a77fe9a5146402186dfd80d5151b742b1d8f8e809cc4f9aa8a35ff6fe"} -2023-12-16T00:00:04.861Z INFO initializing dbft {"height": 6864, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:04.862Z debug frostfs-node/morph.go:229 new block {"index": 6863} -2023-12-16T00:00:05.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6863, "blockHeight": 6863, "took": "6.017838ms"} -2023-12-16T00:00:05.861Z INFO sending PrepareRequest {"height": 6864, "view": 0} -2023-12-16T00:00:05.862Z INFO sending Commit {"height": 6864, "view": 0} -2023-12-16T00:00:05.863Z INFO approving block {"height": 6864, "hash": "19ca76c8374e245e471142e7059d8761706c3d8225baa6fee5c200b8a41b8b3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0ed1ea9aa85fbf66ded4817b61c61bfbb7f741d42063e27f03bd10f1f5fef16"} -2023-12-16T00:00:05.865Z INFO initializing dbft {"height": 6865, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:05.866Z debug frostfs-node/morph.go:229 new block {"index": 6864} -2023-12-16T00:00:06.327Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6864, "blockHeight": 6864, "took": "7.199441ms"} -2023-12-16T00:00:06.864Z INFO sending PrepareRequest {"height": 6865, "view": 0} -2023-12-16T00:00:06.864Z INFO sending Commit {"height": 6865, "view": 0} -2023-12-16T00:00:06.864Z INFO approving block {"height": 6865, "hash": "f4e10e52e8ca943c51d532a2766372697f2725d3d9eb1c51e215d75d54602d45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19ca76c8374e245e471142e7059d8761706c3d8225baa6fee5c200b8a41b8b3d"} -2023-12-16T00:00:06.866Z INFO initializing dbft {"height": 6866, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:06.867Z debug frostfs-node/morph.go:229 new block {"index": 6865} -2023-12-16T00:00:07.330Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6865, "blockHeight": 6865, "took": "9.055535ms"} -2023-12-16T00:00:07.866Z INFO sending PrepareRequest {"height": 6866, "view": 0} -2023-12-16T00:00:07.866Z INFO sending Commit {"height": 6866, "view": 0} -2023-12-16T00:00:07.866Z INFO approving block {"height": 6866, "hash": "053dd01f4bd66986e411f2f76f1d040e4b5b9d3eea6f5d80c7b86907226c9365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4e10e52e8ca943c51d532a2766372697f2725d3d9eb1c51e215d75d54602d45"} -2023-12-16T00:00:07.868Z INFO initializing dbft {"height": 6867, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:07.869Z debug frostfs-node/morph.go:229 new block {"index": 6866} -2023-12-16T00:00:08.331Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6866, "blockHeight": 6866, "took": "8.772317ms"} -2023-12-16T00:00:08.868Z INFO sending PrepareRequest {"height": 6867, "view": 0} -2023-12-16T00:00:08.868Z INFO sending Commit {"height": 6867, "view": 0} -2023-12-16T00:00:08.868Z INFO approving block {"height": 6867, "hash": "d5f34793184998a45feac07312a5f1d8b23a503ad4c8b515db43b5893d091618", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "053dd01f4bd66986e411f2f76f1d040e4b5b9d3eea6f5d80c7b86907226c9365"} -2023-12-16T00:00:08.870Z INFO initializing dbft {"height": 6868, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:08.871Z debug frostfs-node/morph.go:229 new block {"index": 6867} -2023-12-16T00:00:08.874Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T00:00:08.879Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:00:08.879Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:00:09.333Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6867, "blockHeight": 6867, "took": "9.695069ms"} -2023-12-16T00:00:09.870Z INFO sending PrepareRequest {"height": 6868, "view": 0} -2023-12-16T00:00:09.870Z INFO sending Commit {"height": 6868, "view": 0} -2023-12-16T00:00:09.871Z INFO approving block {"height": 6868, "hash": "e3537f5c7c530438f59607dd9926679021ef89a8d0a6548f787bf9fd8b31074e", "tx_count": 2, "merkle": "5159a92a1c1b8534eb1192c76b63611b655250e0c62fff10ce66274b6834503e", "prev": "d5f34793184998a45feac07312a5f1d8b23a503ad4c8b515db43b5893d091618"} -2023-12-16T00:00:09.872Z INFO runtime log {"tx": "007d61733d04f81b231862b74f2a9afca177fc0ba292e75cb852008b29046b1b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:00:09.872Z INFO runtime log {"tx": "007d61733d04f81b231862b74f2a9afca177fc0ba292e75cb852008b29046b1b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:00:09.873Z INFO initializing dbft {"height": 6869, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:09.876Z debug frostfs-node/morph.go:229 new block {"index": 6868} -2023-12-16T00:00:09.877Z info settlement/calls.go:61 start basic income collection {"epoch": 29} -2023-12-16T00:00:09.881Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 29, "iteration": 1, "error": "no data for 0 iteration in 29 epoch for consumers's trusts"} -2023-12-16T00:00:10.337Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6868, "blockHeight": 6868, "took": "13.356824ms"} -2023-12-16T00:00:10.873Z INFO sending PrepareRequest {"height": 6869, "view": 0} -2023-12-16T00:00:10.873Z INFO sending Commit {"height": 6869, "view": 0} -2023-12-16T00:00:10.873Z INFO approving block {"height": 6869, "hash": "21ee35830039a9ba6e4b917432908accc62be71872efb1313c74a0754aab7879", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3537f5c7c530438f59607dd9926679021ef89a8d0a6548f787bf9fd8b31074e"} -2023-12-16T00:00:10.875Z INFO initializing dbft {"height": 6870, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:10.876Z debug frostfs-node/morph.go:229 new block {"index": 6869} -2023-12-16T00:00:11.333Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6869, "blockHeight": 6869, "took": "7.607402ms"} -2023-12-16T00:00:11.875Z INFO sending PrepareRequest {"height": 6870, "view": 0} -2023-12-16T00:00:11.875Z INFO sending Commit {"height": 6870, "view": 0} -2023-12-16T00:00:11.875Z INFO approving block {"height": 6870, "hash": "47f76eb0c70df74d1fc9d827222a6360d633cd2eb03c329783f0d5b504ea67a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21ee35830039a9ba6e4b917432908accc62be71872efb1313c74a0754aab7879"} -2023-12-16T00:00:11.877Z INFO initializing dbft {"height": 6871, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:11.877Z debug frostfs-node/morph.go:229 new block {"index": 6870} -2023-12-16T00:00:12.333Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6870, "blockHeight": 6870, "took": "7.418998ms"} -2023-12-16T00:00:12.876Z INFO sending PrepareRequest {"height": 6871, "view": 0} -2023-12-16T00:00:12.876Z INFO sending Commit {"height": 6871, "view": 0} -2023-12-16T00:00:12.877Z INFO approving block {"height": 6871, "hash": "66afee733e209e42d4856c5cd32e67d49d5e0be472810a055d1402a0fd6777a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47f76eb0c70df74d1fc9d827222a6360d633cd2eb03c329783f0d5b504ea67a8"} -2023-12-16T00:00:12.878Z INFO initializing dbft {"height": 6872, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:12.879Z debug frostfs-node/morph.go:229 new block {"index": 6871} -2023-12-16T00:00:13.333Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6871, "blockHeight": 6871, "took": "7.181659ms"} -2023-12-16T00:00:13.878Z INFO sending PrepareRequest {"height": 6872, "view": 0} -2023-12-16T00:00:13.878Z INFO sending Commit {"height": 6872, "view": 0} -2023-12-16T00:00:13.879Z INFO approving block {"height": 6872, "hash": "d433e53090daec1fcd6ddbb2c5388d4178345c712ce68aa82b2907124ac1178a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66afee733e209e42d4856c5cd32e67d49d5e0be472810a055d1402a0fd6777a3"} -2023-12-16T00:00:13.880Z INFO initializing dbft {"height": 6873, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:13.881Z debug frostfs-node/morph.go:229 new block {"index": 6872} -2023-12-16T00:00:14.335Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6872, "blockHeight": 6872, "took": "8.009276ms"} -2023-12-16T00:00:14.880Z INFO sending PrepareRequest {"height": 6873, "view": 0} -2023-12-16T00:00:14.880Z INFO sending Commit {"height": 6873, "view": 0} -2023-12-16T00:00:14.880Z INFO approving block {"height": 6873, "hash": "7360b2e6f71625cc0e71b3319ad632f51f5b53e0576741747d7dbdac9c6c97a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d433e53090daec1fcd6ddbb2c5388d4178345c712ce68aa82b2907124ac1178a"} -2023-12-16T00:00:14.881Z INFO initializing dbft {"height": 6874, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:14.882Z debug frostfs-node/morph.go:229 new block {"index": 6873} -2023-12-16T00:00:15.334Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6873, "blockHeight": 6873, "took": "6.897623ms"} -2023-12-16T00:00:15.882Z INFO sending PrepareRequest {"height": 6874, "view": 0} -2023-12-16T00:00:15.883Z INFO sending Commit {"height": 6874, "view": 0} -2023-12-16T00:00:15.883Z INFO approving block {"height": 6874, "hash": "592e02322bd7c5fd83f03e78d96bb21449d0021f9dcb947d8ce5178faa01d5c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7360b2e6f71625cc0e71b3319ad632f51f5b53e0576741747d7dbdac9c6c97a6"} -2023-12-16T00:00:15.886Z INFO initializing dbft {"height": 6875, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:15.887Z debug frostfs-node/morph.go:229 new block {"index": 6874} -2023-12-16T00:00:16.335Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6874, "blockHeight": 6874, "took": "7.1728ms"} -2023-12-16T00:00:16.885Z INFO sending PrepareRequest {"height": 6875, "view": 0} -2023-12-16T00:00:16.885Z INFO sending Commit {"height": 6875, "view": 0} -2023-12-16T00:00:16.886Z INFO approving block {"height": 6875, "hash": "2d64acd6a198512e0fc4057d50a7facdbe6c5089a99bdf7a13ecf50b7e0e5cda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "592e02322bd7c5fd83f03e78d96bb21449d0021f9dcb947d8ce5178faa01d5c9"} -2023-12-16T00:00:16.888Z INFO initializing dbft {"height": 6876, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:16.889Z debug frostfs-node/morph.go:229 new block {"index": 6875} -2023-12-16T00:00:17.336Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6875, "blockHeight": 6875, "took": "6.857321ms"} -2023-12-16T00:00:17.887Z INFO sending PrepareRequest {"height": 6876, "view": 0} -2023-12-16T00:00:17.887Z INFO sending Commit {"height": 6876, "view": 0} -2023-12-16T00:00:17.888Z INFO approving block {"height": 6876, "hash": "096d19d7df88469a08365a284c7036bbbac4f9832b1ac8c43b6cf2aaffb9af90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d64acd6a198512e0fc4057d50a7facdbe6c5089a99bdf7a13ecf50b7e0e5cda"} -2023-12-16T00:00:17.889Z INFO initializing dbft {"height": 6877, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:17.890Z debug frostfs-node/morph.go:229 new block {"index": 6876} -2023-12-16T00:00:18.337Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6876, "blockHeight": 6876, "took": "7.818129ms"} -2023-12-16T00:00:18.889Z INFO sending PrepareRequest {"height": 6877, "view": 0} -2023-12-16T00:00:18.889Z INFO sending Commit {"height": 6877, "view": 0} -2023-12-16T00:00:18.890Z INFO approving block {"height": 6877, "hash": "e7e9831dbe2562a4eeb331b500c3abbd978c8f3026bf61925da99ee6ef5ebe3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "096d19d7df88469a08365a284c7036bbbac4f9832b1ac8c43b6cf2aaffb9af90"} -2023-12-16T00:00:18.891Z INFO initializing dbft {"height": 6878, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:18.892Z debug frostfs-node/morph.go:229 new block {"index": 6877} -2023-12-16T00:00:19.338Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6877, "blockHeight": 6877, "took": "7.951831ms"} -2023-12-16T00:00:19.892Z INFO sending PrepareRequest {"height": 6878, "view": 0} -2023-12-16T00:00:19.892Z INFO sending Commit {"height": 6878, "view": 0} -2023-12-16T00:00:19.892Z INFO approving block {"height": 6878, "hash": "db496a5b32f3e5ca34c0402ee5bede539920a79d5859c9badb64c52be245b0fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7e9831dbe2562a4eeb331b500c3abbd978c8f3026bf61925da99ee6ef5ebe3b"} -2023-12-16T00:00:19.894Z INFO initializing dbft {"height": 6879, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:19.895Z debug frostfs-node/morph.go:229 new block {"index": 6878} -2023-12-16T00:00:20.339Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6878, "blockHeight": 6878, "took": "8.558672ms"} -2023-12-16T00:00:20.894Z INFO sending PrepareRequest {"height": 6879, "view": 0} -2023-12-16T00:00:20.894Z INFO sending Commit {"height": 6879, "view": 0} -2023-12-16T00:00:20.894Z INFO approving block {"height": 6879, "hash": "9aa6c4cde594f4d4f8aa010a55f1f652a7e2a8924538eb99caa2e97e0c851166", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db496a5b32f3e5ca34c0402ee5bede539920a79d5859c9badb64c52be245b0fe"} -2023-12-16T00:00:20.896Z INFO initializing dbft {"height": 6880, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:20.897Z debug frostfs-node/morph.go:229 new block {"index": 6879} -2023-12-16T00:00:21.338Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6879, "blockHeight": 6879, "took": "6.693327ms"} -2023-12-16T00:00:21.896Z INFO sending PrepareRequest {"height": 6880, "view": 0} -2023-12-16T00:00:21.896Z INFO sending Commit {"height": 6880, "view": 0} -2023-12-16T00:00:21.897Z INFO approving block {"height": 6880, "hash": "b0d971321fff3d6f2680bd91ee0f3df6a99e61bacfc0694d8f68cc125a17303f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9aa6c4cde594f4d4f8aa010a55f1f652a7e2a8924538eb99caa2e97e0c851166"} -2023-12-16T00:00:21.898Z INFO initializing dbft {"height": 6881, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:21.899Z debug frostfs-node/morph.go:229 new block {"index": 6880} -2023-12-16T00:00:22.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6880, "blockHeight": 6880, "took": "7.265263ms"} -2023-12-16T00:00:22.898Z INFO sending PrepareRequest {"height": 6881, "view": 0} -2023-12-16T00:00:22.898Z INFO sending Commit {"height": 6881, "view": 0} -2023-12-16T00:00:22.898Z INFO approving block {"height": 6881, "hash": "15dfa2433e475dbc6320a0254265bb729b65c0a5c93afd88ba1a232dad9ae922", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0d971321fff3d6f2680bd91ee0f3df6a99e61bacfc0694d8f68cc125a17303f"} -2023-12-16T00:00:22.900Z INFO initializing dbft {"height": 6882, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:22.901Z debug frostfs-node/morph.go:229 new block {"index": 6881} -2023-12-16T00:00:23.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6881, "blockHeight": 6881, "took": "6.786009ms"} -2023-12-16T00:00:23.900Z INFO sending PrepareRequest {"height": 6882, "view": 0} -2023-12-16T00:00:23.900Z INFO sending Commit {"height": 6882, "view": 0} -2023-12-16T00:00:23.901Z INFO approving block {"height": 6882, "hash": "7f2dc5ab21e9b80d069a8b5dcce076f946715ce9f4851c5485fe3077df45a739", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15dfa2433e475dbc6320a0254265bb729b65c0a5c93afd88ba1a232dad9ae922"} -2023-12-16T00:00:23.902Z INFO initializing dbft {"height": 6883, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:23.903Z debug frostfs-node/morph.go:229 new block {"index": 6882} -2023-12-16T00:00:24.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6882, "blockHeight": 6882, "took": "10.791611ms"} -2023-12-16T00:00:24.902Z INFO sending PrepareRequest {"height": 6883, "view": 0} -2023-12-16T00:00:24.902Z INFO sending Commit {"height": 6883, "view": 0} -2023-12-16T00:00:24.903Z INFO approving block {"height": 6883, "hash": "5322f6e7370b5ddd4e085bb8ac1b24ef045f900763c38386bc62011f90b21e3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f2dc5ab21e9b80d069a8b5dcce076f946715ce9f4851c5485fe3077df45a739"} -2023-12-16T00:00:24.905Z INFO initializing dbft {"height": 6884, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:24.906Z debug frostfs-node/morph.go:229 new block {"index": 6883} -2023-12-16T00:00:25.343Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6883, "blockHeight": 6883, "took": "7.461479ms"} -2023-12-16T00:00:25.904Z INFO sending PrepareRequest {"height": 6884, "view": 0} -2023-12-16T00:00:25.905Z INFO sending Commit {"height": 6884, "view": 0} -2023-12-16T00:00:25.905Z INFO approving block {"height": 6884, "hash": "d9aefe48b21ab82bebff53ccdd27bcb48a50119b3f121426f6b25287c33f8c10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5322f6e7370b5ddd4e085bb8ac1b24ef045f900763c38386bc62011f90b21e3c"} -2023-12-16T00:00:25.907Z INFO initializing dbft {"height": 6885, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:25.908Z debug frostfs-node/morph.go:229 new block {"index": 6884} -2023-12-16T00:00:26.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6884, "blockHeight": 6884, "took": "10.532458ms"} -2023-12-16T00:00:26.906Z INFO sending PrepareRequest {"height": 6885, "view": 0} -2023-12-16T00:00:26.906Z INFO sending Commit {"height": 6885, "view": 0} -2023-12-16T00:00:26.907Z INFO approving block {"height": 6885, "hash": "3efb7cb33c59c618b78a8eabfba3d2f7b03164e141c1b6ad1dba709e952b3f01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9aefe48b21ab82bebff53ccdd27bcb48a50119b3f121426f6b25287c33f8c10"} -2023-12-16T00:00:26.909Z INFO initializing dbft {"height": 6886, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:26.910Z debug frostfs-node/morph.go:229 new block {"index": 6885} -2023-12-16T00:00:27.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6885, "blockHeight": 6885, "took": "8.527625ms"} -2023-12-16T00:00:27.909Z INFO sending PrepareRequest {"height": 6886, "view": 0} -2023-12-16T00:00:27.909Z INFO sending Commit {"height": 6886, "view": 0} -2023-12-16T00:00:27.910Z INFO approving block {"height": 6886, "hash": "197186ee673db541e808ba938d96ce3337b7e88db2f2005943bc55f853957e47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3efb7cb33c59c618b78a8eabfba3d2f7b03164e141c1b6ad1dba709e952b3f01"} -2023-12-16T00:00:27.911Z INFO initializing dbft {"height": 6887, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:27.912Z debug frostfs-node/morph.go:229 new block {"index": 6886} -2023-12-16T00:00:28.351Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6886, "blockHeight": 6886, "took": "12.552351ms"} -2023-12-16T00:00:28.911Z INFO sending PrepareRequest {"height": 6887, "view": 0} -2023-12-16T00:00:28.911Z INFO sending Commit {"height": 6887, "view": 0} -2023-12-16T00:00:28.911Z INFO approving block {"height": 6887, "hash": "7b29324ab32e38c8ace8a5855a0ea59395589de3216a0b6b076d127b464f4696", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "197186ee673db541e808ba938d96ce3337b7e88db2f2005943bc55f853957e47"} -2023-12-16T00:00:28.913Z INFO initializing dbft {"height": 6888, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:28.914Z debug frostfs-node/morph.go:229 new block {"index": 6887} -2023-12-16T00:00:29.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6887, "blockHeight": 6887, "took": "7.5552ms"} -2023-12-16T00:00:29.914Z INFO sending PrepareRequest {"height": 6888, "view": 0} -2023-12-16T00:00:29.914Z INFO sending Commit {"height": 6888, "view": 0} -2023-12-16T00:00:29.915Z INFO approving block {"height": 6888, "hash": "d605d9df37fdb75d8599eec166991688ace0fd9623c79ad53553bd32efb7989c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b29324ab32e38c8ace8a5855a0ea59395589de3216a0b6b076d127b464f4696"} -2023-12-16T00:00:29.916Z INFO initializing dbft {"height": 6889, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:29.917Z debug frostfs-node/morph.go:229 new block {"index": 6888} -2023-12-16T00:00:30.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6888, "blockHeight": 6888, "took": "9.060454ms"} -2023-12-16T00:00:30.916Z INFO sending PrepareRequest {"height": 6889, "view": 0} -2023-12-16T00:00:30.917Z INFO sending Commit {"height": 6889, "view": 0} -2023-12-16T00:00:30.917Z INFO approving block {"height": 6889, "hash": "6824f61d92cdf24860c9aec0ee9cf4884c507b83e515b22c81e2a2f0c305a14a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d605d9df37fdb75d8599eec166991688ace0fd9623c79ad53553bd32efb7989c"} -2023-12-16T00:00:30.919Z INFO initializing dbft {"height": 6890, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:30.920Z debug frostfs-node/morph.go:229 new block {"index": 6889} -2023-12-16T00:00:31.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6889, "blockHeight": 6889, "took": "8.811897ms"} -2023-12-16T00:00:31.918Z INFO sending PrepareRequest {"height": 6890, "view": 0} -2023-12-16T00:00:31.918Z INFO sending Commit {"height": 6890, "view": 0} -2023-12-16T00:00:31.919Z INFO approving block {"height": 6890, "hash": "c6dda6c5de53ff3262507a13f088cb4f3b928d6bdf5dd78a81577c54adf9baa1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6824f61d92cdf24860c9aec0ee9cf4884c507b83e515b22c81e2a2f0c305a14a"} -2023-12-16T00:00:31.921Z INFO initializing dbft {"height": 6891, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:31.922Z debug frostfs-node/morph.go:229 new block {"index": 6890} -2023-12-16T00:00:32.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6890, "blockHeight": 6890, "took": "11.199637ms"} -2023-12-16T00:00:32.920Z INFO sending PrepareRequest {"height": 6891, "view": 0} -2023-12-16T00:00:32.921Z INFO sending Commit {"height": 6891, "view": 0} -2023-12-16T00:00:32.921Z INFO approving block {"height": 6891, "hash": "5f2dc5a44cfc91ff97033c7c1bd32d40ee0681de5c434094ba925ba637fe59b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6dda6c5de53ff3262507a13f088cb4f3b928d6bdf5dd78a81577c54adf9baa1"} -2023-12-16T00:00:32.924Z INFO initializing dbft {"height": 6892, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:32.925Z debug frostfs-node/morph.go:229 new block {"index": 6891} -2023-12-16T00:00:33.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6891, "blockHeight": 6891, "took": "7.454082ms"} -2023-12-16T00:00:33.923Z INFO sending PrepareRequest {"height": 6892, "view": 0} -2023-12-16T00:00:33.923Z INFO sending Commit {"height": 6892, "view": 0} -2023-12-16T00:00:33.923Z INFO approving block {"height": 6892, "hash": "0260a5c7d4690ddb3b1abd1774f7abe1d06d9c04aaaa8b3000c7983b390a6f97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f2dc5a44cfc91ff97033c7c1bd32d40ee0681de5c434094ba925ba637fe59b2"} -2023-12-16T00:00:33.925Z INFO initializing dbft {"height": 6893, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:33.926Z debug frostfs-node/morph.go:229 new block {"index": 6892} -2023-12-16T00:00:34.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6892, "blockHeight": 6892, "took": "7.468653ms"} -2023-12-16T00:00:34.924Z INFO sending PrepareRequest {"height": 6893, "view": 0} -2023-12-16T00:00:34.925Z INFO sending Commit {"height": 6893, "view": 0} -2023-12-16T00:00:34.925Z INFO approving block {"height": 6893, "hash": "bf1e052f92e246341930182a9b137d5a10c2055b1068e9b03474e90bc0025940", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0260a5c7d4690ddb3b1abd1774f7abe1d06d9c04aaaa8b3000c7983b390a6f97"} -2023-12-16T00:00:34.927Z INFO initializing dbft {"height": 6894, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:34.928Z debug frostfs-node/morph.go:229 new block {"index": 6893} -2023-12-16T00:00:35.354Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6893, "blockHeight": 6893, "took": "9.735271ms"} -2023-12-16T00:00:35.927Z INFO sending PrepareRequest {"height": 6894, "view": 0} -2023-12-16T00:00:35.927Z INFO sending Commit {"height": 6894, "view": 0} -2023-12-16T00:00:35.927Z INFO approving block {"height": 6894, "hash": "1c3d382841d1661c25e5efcacca265f9b3a031ef3d782ed10dd26f510c153037", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf1e052f92e246341930182a9b137d5a10c2055b1068e9b03474e90bc0025940"} -2023-12-16T00:00:35.929Z INFO initializing dbft {"height": 6895, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:35.930Z debug frostfs-node/morph.go:229 new block {"index": 6894} -2023-12-16T00:00:36.355Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6894, "blockHeight": 6894, "took": "10.297449ms"} -2023-12-16T00:00:36.928Z INFO sending PrepareRequest {"height": 6895, "view": 0} -2023-12-16T00:00:36.929Z INFO sending Commit {"height": 6895, "view": 0} -2023-12-16T00:00:36.929Z INFO approving block {"height": 6895, "hash": "c7745c0639409381b2975d8f3a2149c7f1007572a179ca2cad7a2916cf198eb8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c3d382841d1661c25e5efcacca265f9b3a031ef3d782ed10dd26f510c153037"} -2023-12-16T00:00:36.931Z INFO initializing dbft {"height": 6896, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:36.932Z debug frostfs-node/morph.go:229 new block {"index": 6895} -2023-12-16T00:00:37.352Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6895, "blockHeight": 6895, "took": "6.569909ms"} -2023-12-16T00:00:37.930Z INFO sending PrepareRequest {"height": 6896, "view": 0} -2023-12-16T00:00:37.931Z INFO sending Commit {"height": 6896, "view": 0} -2023-12-16T00:00:37.931Z INFO approving block {"height": 6896, "hash": "c189b4ea003194e3770906fa2f2e583b8a46234b467e10f1c5fa45aea79edbfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7745c0639409381b2975d8f3a2149c7f1007572a179ca2cad7a2916cf198eb8"} -2023-12-16T00:00:37.932Z INFO initializing dbft {"height": 6897, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:37.933Z debug frostfs-node/morph.go:229 new block {"index": 6896} -2023-12-16T00:00:38.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6896, "blockHeight": 6896, "took": "5.83947ms"} -2023-12-16T00:00:38.932Z INFO sending PrepareRequest {"height": 6897, "view": 0} -2023-12-16T00:00:38.933Z INFO sending Commit {"height": 6897, "view": 0} -2023-12-16T00:00:38.933Z INFO approving block {"height": 6897, "hash": "7a8b60ea289e7f088f64a162d56a929c4ee22182803885f75c07559d0f10409a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c189b4ea003194e3770906fa2f2e583b8a46234b467e10f1c5fa45aea79edbfd"} -2023-12-16T00:00:38.935Z INFO initializing dbft {"height": 6898, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:38.935Z debug frostfs-node/morph.go:229 new block {"index": 6897} -2023-12-16T00:00:39.356Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6897, "blockHeight": 6897, "took": "8.514889ms"} -2023-12-16T00:00:39.934Z INFO sending PrepareRequest {"height": 6898, "view": 0} -2023-12-16T00:00:39.934Z INFO sending Commit {"height": 6898, "view": 0} -2023-12-16T00:00:39.935Z INFO approving block {"height": 6898, "hash": "786312d33bf1a7f7b32c82c8840052e7994bd17f89aba10dd06ca6b1ae845038", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a8b60ea289e7f088f64a162d56a929c4ee22182803885f75c07559d0f10409a"} -2023-12-16T00:00:39.936Z INFO initializing dbft {"height": 6899, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:39.936Z debug frostfs-node/morph.go:229 new block {"index": 6898} -2023-12-16T00:00:40.355Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6898, "blockHeight": 6898, "took": "6.829348ms"} -2023-12-16T00:00:40.936Z INFO sending PrepareRequest {"height": 6899, "view": 0} -2023-12-16T00:00:40.936Z INFO sending Commit {"height": 6899, "view": 0} -2023-12-16T00:00:40.937Z INFO approving block {"height": 6899, "hash": "ead0671a1210899ff6eb3d4d2c2071584df17da07c4faa8165fdd547a823f930", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "786312d33bf1a7f7b32c82c8840052e7994bd17f89aba10dd06ca6b1ae845038"} -2023-12-16T00:00:40.938Z INFO initializing dbft {"height": 6900, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:40.939Z debug frostfs-node/morph.go:229 new block {"index": 6899} -2023-12-16T00:00:41.368Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6899, "blockHeight": 6899, "took": "18.156104ms"} -2023-12-16T00:00:41.938Z INFO sending PrepareRequest {"height": 6900, "view": 0} -2023-12-16T00:00:41.939Z INFO sending Commit {"height": 6900, "view": 0} -2023-12-16T00:00:41.939Z INFO approving block {"height": 6900, "hash": "6148b93f9be870e047651a9b3bdb1adc2409fa85812e9284b2c504dc3dc271ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ead0671a1210899ff6eb3d4d2c2071584df17da07c4faa8165fdd547a823f930"} -2023-12-16T00:00:41.941Z INFO initializing dbft {"height": 6901, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:41.942Z debug frostfs-node/morph.go:229 new block {"index": 6900} -2023-12-16T00:00:42.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6900, "blockHeight": 6900, "took": "8.098686ms"} -2023-12-16T00:00:42.940Z INFO sending PrepareRequest {"height": 6901, "view": 0} -2023-12-16T00:00:42.940Z INFO sending Commit {"height": 6901, "view": 0} -2023-12-16T00:00:42.941Z INFO approving block {"height": 6901, "hash": "9db6f5cc3ec0357f34a66214d5900e4c25e9f2c65204b3996900bd2a155c934c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6148b93f9be870e047651a9b3bdb1adc2409fa85812e9284b2c504dc3dc271ca"} -2023-12-16T00:00:42.942Z INFO initializing dbft {"height": 6902, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:42.943Z debug frostfs-node/morph.go:229 new block {"index": 6901} -2023-12-16T00:00:43.360Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6901, "blockHeight": 6901, "took": "8.56691ms"} -2023-12-16T00:00:43.942Z INFO sending PrepareRequest {"height": 6902, "view": 0} -2023-12-16T00:00:43.942Z INFO sending Commit {"height": 6902, "view": 0} -2023-12-16T00:00:43.943Z INFO approving block {"height": 6902, "hash": "36ef460163589e5c14038220b49f910340585dd4b2c8d7329d8d2ab30c1b7bc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9db6f5cc3ec0357f34a66214d5900e4c25e9f2c65204b3996900bd2a155c934c"} -2023-12-16T00:00:43.944Z INFO initializing dbft {"height": 6903, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:43.945Z debug frostfs-node/morph.go:229 new block {"index": 6902} -2023-12-16T00:00:44.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6902, "blockHeight": 6902, "took": "9.288641ms"} -2023-12-16T00:00:44.944Z INFO sending PrepareRequest {"height": 6903, "view": 0} -2023-12-16T00:00:44.944Z INFO sending Commit {"height": 6903, "view": 0} -2023-12-16T00:00:44.944Z INFO approving block {"height": 6903, "hash": "bb07e582a48d3033c3f301d673b247ed40273cb4423858ce01482e3d3e2b0e12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36ef460163589e5c14038220b49f910340585dd4b2c8d7329d8d2ab30c1b7bc5"} -2023-12-16T00:00:44.946Z INFO initializing dbft {"height": 6904, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:44.947Z debug frostfs-node/morph.go:229 new block {"index": 6903} -2023-12-16T00:00:45.363Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6903, "blockHeight": 6903, "took": "9.397911ms"} -2023-12-16T00:00:45.945Z INFO sending PrepareRequest {"height": 6904, "view": 0} -2023-12-16T00:00:45.946Z INFO sending Commit {"height": 6904, "view": 0} -2023-12-16T00:00:45.946Z INFO approving block {"height": 6904, "hash": "da0f5ebef84f4bcf244587c952ef3b7e22c6da708357babd74f85f47b727d9cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb07e582a48d3033c3f301d673b247ed40273cb4423858ce01482e3d3e2b0e12"} -2023-12-16T00:00:45.948Z INFO initializing dbft {"height": 6905, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:45.949Z debug frostfs-node/morph.go:229 new block {"index": 6904} -2023-12-16T00:00:46.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6904, "blockHeight": 6904, "took": "11.073802ms"} -2023-12-16T00:00:46.947Z INFO sending PrepareRequest {"height": 6905, "view": 0} -2023-12-16T00:00:46.948Z INFO sending Commit {"height": 6905, "view": 0} -2023-12-16T00:00:46.948Z INFO approving block {"height": 6905, "hash": "c96ad025e25a8d8157f9cf5f39206ff3ca068dd8d8ee431379e799f0c8346c5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da0f5ebef84f4bcf244587c952ef3b7e22c6da708357babd74f85f47b727d9cf"} -2023-12-16T00:00:46.950Z INFO initializing dbft {"height": 6906, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:46.951Z debug frostfs-node/morph.go:229 new block {"index": 6905} -2023-12-16T00:00:47.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6905, "blockHeight": 6905, "took": "7.546176ms"} -2023-12-16T00:00:47.949Z INFO sending PrepareRequest {"height": 6906, "view": 0} -2023-12-16T00:00:47.949Z INFO sending Commit {"height": 6906, "view": 0} -2023-12-16T00:00:47.950Z INFO approving block {"height": 6906, "hash": "1cc4c951cb65d9184fee1801c1381aed46497f0c6100487a6970974b41963647", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c96ad025e25a8d8157f9cf5f39206ff3ca068dd8d8ee431379e799f0c8346c5d"} -2023-12-16T00:00:47.951Z INFO initializing dbft {"height": 6907, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:47.952Z debug frostfs-node/morph.go:229 new block {"index": 6906} -2023-12-16T00:00:48.364Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6906, "blockHeight": 6906, "took": "8.445127ms"} -2023-12-16T00:00:48.951Z INFO sending PrepareRequest {"height": 6907, "view": 0} -2023-12-16T00:00:48.951Z INFO sending Commit {"height": 6907, "view": 0} -2023-12-16T00:00:48.952Z INFO approving block {"height": 6907, "hash": "20c02e517eec2867465eaedda593c83dba8ec062ff666267bf7b85535484011e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cc4c951cb65d9184fee1801c1381aed46497f0c6100487a6970974b41963647"} -2023-12-16T00:00:48.953Z INFO initializing dbft {"height": 6908, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:48.954Z debug frostfs-node/morph.go:229 new block {"index": 6907} -2023-12-16T00:00:49.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6907, "blockHeight": 6907, "took": "10.662522ms"} -2023-12-16T00:00:49.953Z INFO sending PrepareRequest {"height": 6908, "view": 0} -2023-12-16T00:00:49.953Z INFO sending Commit {"height": 6908, "view": 0} -2023-12-16T00:00:49.954Z INFO approving block {"height": 6908, "hash": "1dd6447c6d2e2403720e9f4970120dcf9d795cc8182ab76bb7294b1da16d383b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20c02e517eec2867465eaedda593c83dba8ec062ff666267bf7b85535484011e"} -2023-12-16T00:00:49.956Z INFO initializing dbft {"height": 6909, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:49.957Z debug frostfs-node/morph.go:229 new block {"index": 6908} -2023-12-16T00:00:50.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6908, "blockHeight": 6908, "took": "7.895141ms"} -2023-12-16T00:00:50.954Z INFO sending PrepareRequest {"height": 6909, "view": 0} -2023-12-16T00:00:50.955Z INFO sending Commit {"height": 6909, "view": 0} -2023-12-16T00:00:50.955Z INFO approving block {"height": 6909, "hash": "66abb7db872866124b6cbd06e461be52da406e81025a07da67f32619826166c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1dd6447c6d2e2403720e9f4970120dcf9d795cc8182ab76bb7294b1da16d383b"} -2023-12-16T00:00:50.956Z INFO initializing dbft {"height": 6910, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:50.957Z debug frostfs-node/morph.go:229 new block {"index": 6909} -2023-12-16T00:00:51.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6909, "blockHeight": 6909, "took": "9.49501ms"} -2023-12-16T00:00:51.956Z INFO sending PrepareRequest {"height": 6910, "view": 0} -2023-12-16T00:00:51.956Z INFO sending Commit {"height": 6910, "view": 0} -2023-12-16T00:00:51.957Z INFO approving block {"height": 6910, "hash": "1a17fc9f7dc9f337e752f0fba5fa1714e3c2f5f5d2048cd4682ef26d904b011a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66abb7db872866124b6cbd06e461be52da406e81025a07da67f32619826166c4"} -2023-12-16T00:00:51.958Z INFO initializing dbft {"height": 6911, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:51.959Z debug frostfs-node/morph.go:229 new block {"index": 6910} -2023-12-16T00:00:52.368Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6910, "blockHeight": 6910, "took": "10.029073ms"} -2023-12-16T00:00:52.958Z INFO sending PrepareRequest {"height": 6911, "view": 0} -2023-12-16T00:00:52.958Z INFO sending Commit {"height": 6911, "view": 0} -2023-12-16T00:00:52.959Z INFO approving block {"height": 6911, "hash": "f8838efed5f38ab9da64dfe78a866292a0d59a96598d8e38cd433cd1c077be91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a17fc9f7dc9f337e752f0fba5fa1714e3c2f5f5d2048cd4682ef26d904b011a"} -2023-12-16T00:00:52.960Z INFO initializing dbft {"height": 6912, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:52.961Z debug frostfs-node/morph.go:229 new block {"index": 6911} -2023-12-16T00:00:53.366Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 6911, "blockHeight": 6911, "took": "6.864591ms"} -2023-12-16T00:00:53.960Z INFO sending PrepareRequest {"height": 6912, "view": 0} -2023-12-16T00:00:53.960Z INFO sending Commit {"height": 6912, "view": 0} -2023-12-16T00:00:53.961Z INFO approving block {"height": 6912, "hash": "91fefc311b9c7d29e0a11a0c5aec6195980251c915f324ec9081fe914ac61c04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8838efed5f38ab9da64dfe78a866292a0d59a96598d8e38cd433cd1c077be91"} -2023-12-16T00:00:53.962Z INFO initializing dbft {"height": 6913, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:53.963Z debug frostfs-node/morph.go:229 new block {"index": 6912} -2023-12-16T00:00:54.368Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6912, "blockHeight": 6912, "took": "7.195879ms"} -2023-12-16T00:00:54.962Z INFO sending PrepareRequest {"height": 6913, "view": 0} -2023-12-16T00:00:54.962Z INFO sending Commit {"height": 6913, "view": 0} -2023-12-16T00:00:54.963Z INFO approving block {"height": 6913, "hash": "e2557d791d91e6e826363bc6cb7ab369177d399fa0fa3836eeb8b6be3173a7a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91fefc311b9c7d29e0a11a0c5aec6195980251c915f324ec9081fe914ac61c04"} -2023-12-16T00:00:54.964Z INFO initializing dbft {"height": 6914, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:54.965Z debug frostfs-node/morph.go:229 new block {"index": 6913} -2023-12-16T00:00:55.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6913, "blockHeight": 6913, "took": "10.85447ms"} -2023-12-16T00:00:55.964Z INFO sending PrepareRequest {"height": 6914, "view": 0} -2023-12-16T00:00:55.965Z INFO sending Commit {"height": 6914, "view": 0} -2023-12-16T00:00:55.965Z INFO approving block {"height": 6914, "hash": "4ea04b4d520a278182931c3ed71f8a617518a486f32cee3f1d97fd9050a95e11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2557d791d91e6e826363bc6cb7ab369177d399fa0fa3836eeb8b6be3173a7a0"} -2023-12-16T00:00:55.966Z INFO initializing dbft {"height": 6915, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:55.967Z debug frostfs-node/morph.go:229 new block {"index": 6914} -2023-12-16T00:00:56.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6914, "blockHeight": 6914, "took": "5.183531ms"} -2023-12-16T00:00:56.967Z INFO sending PrepareRequest {"height": 6915, "view": 0} -2023-12-16T00:00:56.967Z INFO sending Commit {"height": 6915, "view": 0} -2023-12-16T00:00:56.967Z INFO approving block {"height": 6915, "hash": "9d36b9c5036f60e75942c851eb65fab03637fdd9622c9b7bdbbe2f51aad79d58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ea04b4d520a278182931c3ed71f8a617518a486f32cee3f1d97fd9050a95e11"} -2023-12-16T00:00:56.968Z INFO initializing dbft {"height": 6916, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:56.969Z debug frostfs-node/morph.go:229 new block {"index": 6915} -2023-12-16T00:00:57.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6915, "blockHeight": 6915, "took": "10.072494ms"} -2023-12-16T00:00:57.969Z INFO sending PrepareRequest {"height": 6916, "view": 0} -2023-12-16T00:00:57.969Z INFO sending Commit {"height": 6916, "view": 0} -2023-12-16T00:00:57.970Z INFO approving block {"height": 6916, "hash": "962b36fe302287eb96e55acafe8edbd4b39a3c2bec239e2570b33d61ec276793", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d36b9c5036f60e75942c851eb65fab03637fdd9622c9b7bdbbe2f51aad79d58"} -2023-12-16T00:00:57.971Z INFO initializing dbft {"height": 6917, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:57.972Z debug frostfs-node/morph.go:229 new block {"index": 6916} -2023-12-16T00:00:58.375Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6916, "blockHeight": 6916, "took": "10.502267ms"} -2023-12-16T00:00:58.971Z INFO sending PrepareRequest {"height": 6917, "view": 0} -2023-12-16T00:00:58.971Z INFO sending Commit {"height": 6917, "view": 0} -2023-12-16T00:00:58.971Z INFO approving block {"height": 6917, "hash": "67250bac050e174a236ec5be3ed3dc7d0f85ec0a6cd2d32938e46821150d8b30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "962b36fe302287eb96e55acafe8edbd4b39a3c2bec239e2570b33d61ec276793"} -2023-12-16T00:00:58.973Z INFO initializing dbft {"height": 6918, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:58.974Z debug frostfs-node/morph.go:229 new block {"index": 6917} -2023-12-16T00:00:58.977Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T00:00:58.982Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:00:58.982Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:00:59.374Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6917, "blockHeight": 6917, "took": "9.811965ms"} -2023-12-16T00:00:59.973Z INFO sending PrepareRequest {"height": 6918, "view": 0} -2023-12-16T00:00:59.973Z INFO sending Commit {"height": 6918, "view": 0} -2023-12-16T00:00:59.973Z INFO approving block {"height": 6918, "hash": "4558e931afb719fce4fae8863d7212077b933f0de11087ad14f32a59587e0f35", "tx_count": 2, "merkle": "7863168ac0a31e9b0753e2154e2a142974967ada94651f81c86ad06e9e53c148", "prev": "67250bac050e174a236ec5be3ed3dc7d0f85ec0a6cd2d32938e46821150d8b30"} -2023-12-16T00:00:59.975Z INFO runtime log {"tx": "38b3e6f57888ab7cca124fa6a907fad1bcaea4feb9773b5bb5fcae2532679674", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:00:59.975Z INFO runtime log {"tx": "38b3e6f57888ab7cca124fa6a907fad1bcaea4feb9773b5bb5fcae2532679674", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:00:59.976Z INFO initializing dbft {"height": 6919, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:00:59.978Z debug frostfs-node/morph.go:229 new block {"index": 6918} -2023-12-16T00:01:00.378Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6918, "blockHeight": 6918, "took": "12.571678ms"} -2023-12-16T00:01:00.975Z INFO sending PrepareRequest {"height": 6919, "view": 0} -2023-12-16T00:01:00.975Z INFO sending Commit {"height": 6919, "view": 0} -2023-12-16T00:01:00.976Z INFO approving block {"height": 6919, "hash": "f98c42d6ba2bec7ce026bcdd4dd911dcde352ceadf221aef7c32c361038e2c8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4558e931afb719fce4fae8863d7212077b933f0de11087ad14f32a59587e0f35"} -2023-12-16T00:01:00.977Z INFO initializing dbft {"height": 6920, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:00.978Z debug frostfs-node/morph.go:229 new block {"index": 6919} -2023-12-16T00:01:01.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6919, "blockHeight": 6919, "took": "6.515758ms"} -2023-12-16T00:01:01.977Z INFO sending PrepareRequest {"height": 6920, "view": 0} -2023-12-16T00:01:01.977Z INFO sending Commit {"height": 6920, "view": 0} -2023-12-16T00:01:01.978Z INFO approving block {"height": 6920, "hash": "83d2a89c881cdbfab070909b51f274642141d9066fffd2459f9bbf3329e858a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f98c42d6ba2bec7ce026bcdd4dd911dcde352ceadf221aef7c32c361038e2c8f"} -2023-12-16T00:01:01.979Z INFO initializing dbft {"height": 6921, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:01.980Z debug frostfs-node/morph.go:229 new block {"index": 6920} -2023-12-16T00:01:02.374Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6920, "blockHeight": 6920, "took": "6.978763ms"} -2023-12-16T00:01:02.979Z INFO sending PrepareRequest {"height": 6921, "view": 0} -2023-12-16T00:01:02.979Z INFO sending Commit {"height": 6921, "view": 0} -2023-12-16T00:01:02.980Z INFO approving block {"height": 6921, "hash": "f9f22b2daa072a8eefc9175774dedc67d454c6366b4986688a45ed2f956e1092", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83d2a89c881cdbfab070909b51f274642141d9066fffd2459f9bbf3329e858a7"} -2023-12-16T00:01:02.981Z INFO initializing dbft {"height": 6922, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:02.982Z debug frostfs-node/morph.go:229 new block {"index": 6921} -2023-12-16T00:01:03.376Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6921, "blockHeight": 6921, "took": "7.955373ms"} -2023-12-16T00:01:03.981Z INFO sending PrepareRequest {"height": 6922, "view": 0} -2023-12-16T00:01:03.981Z INFO sending Commit {"height": 6922, "view": 0} -2023-12-16T00:01:03.982Z INFO approving block {"height": 6922, "hash": "99a39a3aa570eb9259782e6aa3a5e13a4e4e55ac5617e151d880ce0688bb1fa9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9f22b2daa072a8eefc9175774dedc67d454c6366b4986688a45ed2f956e1092"} -2023-12-16T00:01:03.983Z INFO initializing dbft {"height": 6923, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:03.984Z debug frostfs-node/morph.go:229 new block {"index": 6922} -2023-12-16T00:01:04.375Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6922, "blockHeight": 6922, "took": "6.808349ms"} -2023-12-16T00:01:04.983Z INFO sending PrepareRequest {"height": 6923, "view": 0} -2023-12-16T00:01:04.983Z INFO sending Commit {"height": 6923, "view": 0} -2023-12-16T00:01:04.984Z INFO approving block {"height": 6923, "hash": "0c78d2307248fd0108f6874e14bbced188bd2077fac2cfdfdecab24d7dc6e726", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99a39a3aa570eb9259782e6aa3a5e13a4e4e55ac5617e151d880ce0688bb1fa9"} -2023-12-16T00:01:04.985Z INFO initializing dbft {"height": 6924, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:04.986Z debug frostfs-node/morph.go:229 new block {"index": 6923} -2023-12-16T00:01:05.376Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6923, "blockHeight": 6923, "took": "6.47136ms"} -2023-12-16T00:01:05.985Z INFO sending PrepareRequest {"height": 6924, "view": 0} -2023-12-16T00:01:05.985Z INFO sending Commit {"height": 6924, "view": 0} -2023-12-16T00:01:05.986Z INFO approving block {"height": 6924, "hash": "5ea0778f564c7fdcb5a26a0544c6ce9a928fe173f1b559b577b04b5539291de4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c78d2307248fd0108f6874e14bbced188bd2077fac2cfdfdecab24d7dc6e726"} -2023-12-16T00:01:05.988Z INFO initializing dbft {"height": 6925, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:05.988Z debug frostfs-node/morph.go:229 new block {"index": 6924} -2023-12-16T00:01:06.378Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6924, "blockHeight": 6924, "took": "7.229781ms"} -2023-12-16T00:01:06.987Z INFO sending PrepareRequest {"height": 6925, "view": 0} -2023-12-16T00:01:06.987Z INFO sending Commit {"height": 6925, "view": 0} -2023-12-16T00:01:06.988Z INFO approving block {"height": 6925, "hash": "44768ab8e16de6e13a892443b4eafdcf7fd39f6d756096d618529a743687c161", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ea0778f564c7fdcb5a26a0544c6ce9a928fe173f1b559b577b04b5539291de4"} -2023-12-16T00:01:06.990Z INFO initializing dbft {"height": 6926, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:06.991Z debug frostfs-node/morph.go:229 new block {"index": 6925} -2023-12-16T00:01:07.379Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6925, "blockHeight": 6925, "took": "7.235502ms"} -2023-12-16T00:01:07.990Z INFO sending PrepareRequest {"height": 6926, "view": 0} -2023-12-16T00:01:07.990Z INFO sending Commit {"height": 6926, "view": 0} -2023-12-16T00:01:07.990Z INFO approving block {"height": 6926, "hash": "34900c29526a08193723119e66a8e3acd65392a70345bde33719379c9bfddfde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44768ab8e16de6e13a892443b4eafdcf7fd39f6d756096d618529a743687c161"} -2023-12-16T00:01:07.992Z INFO initializing dbft {"height": 6927, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:07.992Z debug frostfs-node/morph.go:229 new block {"index": 6926} -2023-12-16T00:01:08.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6926, "blockHeight": 6926, "took": "9.549986ms"} -2023-12-16T00:01:08.992Z INFO sending PrepareRequest {"height": 6927, "view": 0} -2023-12-16T00:01:08.992Z INFO sending Commit {"height": 6927, "view": 0} -2023-12-16T00:01:08.992Z INFO approving block {"height": 6927, "hash": "712e56b350285e6cf8eacba9f72e85fb41503f5e9a803a040f2fd8c0a45b7d27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34900c29526a08193723119e66a8e3acd65392a70345bde33719379c9bfddfde"} -2023-12-16T00:01:08.994Z INFO initializing dbft {"height": 6928, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:08.995Z debug frostfs-node/morph.go:229 new block {"index": 6927} -2023-12-16T00:01:09.380Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6927, "blockHeight": 6927, "took": "7.322184ms"} -2023-12-16T00:01:09.994Z INFO sending PrepareRequest {"height": 6928, "view": 0} -2023-12-16T00:01:09.994Z INFO sending Commit {"height": 6928, "view": 0} -2023-12-16T00:01:09.994Z INFO approving block {"height": 6928, "hash": "2984cfd03ec5c6575ae5d1d87657024fef7e6a3f781f812df1024021bec79e20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "712e56b350285e6cf8eacba9f72e85fb41503f5e9a803a040f2fd8c0a45b7d27"} -2023-12-16T00:01:09.996Z INFO initializing dbft {"height": 6929, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:09.997Z debug frostfs-node/morph.go:229 new block {"index": 6928} -2023-12-16T00:01:10.000Z info settlement/calls.go:106 start basic income distribution {"epoch": 29} -2023-12-16T00:01:10.002Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 29, "iteration": 2, "error": "no data for 1 iteration in 29 epoch for consumers's trusts"} -2023-12-16T00:01:10.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6928, "blockHeight": 6928, "took": "6.897121ms"} -2023-12-16T00:01:10.996Z INFO sending PrepareRequest {"height": 6929, "view": 0} -2023-12-16T00:01:10.996Z INFO sending Commit {"height": 6929, "view": 0} -2023-12-16T00:01:10.996Z INFO approving block {"height": 6929, "hash": "6bb339467cf79916a38573dfdea665912ff3d513ea4a5ef1ebe3f250d0f48d06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2984cfd03ec5c6575ae5d1d87657024fef7e6a3f781f812df1024021bec79e20"} -2023-12-16T00:01:10.998Z INFO initializing dbft {"height": 6930, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:10.999Z debug frostfs-node/morph.go:229 new block {"index": 6929} -2023-12-16T00:01:11.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6929, "blockHeight": 6929, "took": "6.49851ms"} -2023-12-16T00:01:11.997Z INFO sending PrepareRequest {"height": 6930, "view": 0} -2023-12-16T00:01:11.997Z INFO sending Commit {"height": 6930, "view": 0} -2023-12-16T00:01:11.998Z INFO approving block {"height": 6930, "hash": "21ea93bba05a10508df75ea7b97ddc340331d0f922517a7d1acf8f536f21a282", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bb339467cf79916a38573dfdea665912ff3d513ea4a5ef1ebe3f250d0f48d06"} -2023-12-16T00:01:11.999Z INFO initializing dbft {"height": 6931, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:12.000Z debug frostfs-node/morph.go:229 new block {"index": 6930} -2023-12-16T00:01:12.382Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6930, "blockHeight": 6930, "took": "6.770775ms"} -2023-12-16T00:01:12.999Z INFO sending PrepareRequest {"height": 6931, "view": 0} -2023-12-16T00:01:12.999Z INFO sending Commit {"height": 6931, "view": 0} -2023-12-16T00:01:13.000Z INFO approving block {"height": 6931, "hash": "3b01a0245a25150a3d376cdaffdf63c82322187ce6159dff44d91d53bb863fa7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21ea93bba05a10508df75ea7b97ddc340331d0f922517a7d1acf8f536f21a282"} -2023-12-16T00:01:13.001Z INFO initializing dbft {"height": 6932, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:13.002Z debug frostfs-node/morph.go:229 new block {"index": 6931} -2023-12-16T00:01:13.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6931, "blockHeight": 6931, "took": "9.853248ms"} -2023-12-16T00:01:14.001Z INFO sending PrepareRequest {"height": 6932, "view": 0} -2023-12-16T00:01:14.001Z INFO sending Commit {"height": 6932, "view": 0} -2023-12-16T00:01:14.002Z INFO approving block {"height": 6932, "hash": "a9ceed51bd2118d0d3696e5a7acbdb26123b03b92e3fada67893b9f57e917a53", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b01a0245a25150a3d376cdaffdf63c82322187ce6159dff44d91d53bb863fa7"} -2023-12-16T00:01:14.003Z INFO initializing dbft {"height": 6933, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:14.004Z debug frostfs-node/morph.go:229 new block {"index": 6932} -2023-12-16T00:01:14.383Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6932, "blockHeight": 6932, "took": "6.609533ms"} -2023-12-16T00:01:15.003Z INFO sending PrepareRequest {"height": 6933, "view": 0} -2023-12-16T00:01:15.004Z INFO sending Commit {"height": 6933, "view": 0} -2023-12-16T00:01:15.004Z INFO approving block {"height": 6933, "hash": "b3ab5adca6feccb6816469a2133958d239a248244cbe289bfc7214c686da2c54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9ceed51bd2118d0d3696e5a7acbdb26123b03b92e3fada67893b9f57e917a53"} -2023-12-16T00:01:15.006Z INFO initializing dbft {"height": 6934, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:15.007Z debug frostfs-node/morph.go:229 new block {"index": 6933} -2023-12-16T00:01:15.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6933, "blockHeight": 6933, "took": "6.637204ms"} -2023-12-16T00:01:16.006Z INFO sending PrepareRequest {"height": 6934, "view": 0} -2023-12-16T00:01:16.006Z INFO sending Commit {"height": 6934, "view": 0} -2023-12-16T00:01:16.006Z INFO approving block {"height": 6934, "hash": "08e6aa9971477c31566df3d693886162b81f842403f940ae3071064f10834082", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3ab5adca6feccb6816469a2133958d239a248244cbe289bfc7214c686da2c54"} -2023-12-16T00:01:16.008Z INFO initializing dbft {"height": 6935, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:16.009Z debug frostfs-node/morph.go:229 new block {"index": 6934} -2023-12-16T00:01:16.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6934, "blockHeight": 6934, "took": "7.13412ms"} -2023-12-16T00:01:17.008Z INFO sending PrepareRequest {"height": 6935, "view": 0} -2023-12-16T00:01:17.008Z INFO sending Commit {"height": 6935, "view": 0} -2023-12-16T00:01:17.008Z INFO approving block {"height": 6935, "hash": "57ede1bb0fba4ae9944207eaaafe5f56560f89bd843826fbeaab875d2917b107", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08e6aa9971477c31566df3d693886162b81f842403f940ae3071064f10834082"} -2023-12-16T00:01:17.010Z INFO initializing dbft {"height": 6936, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:17.012Z debug frostfs-node/morph.go:229 new block {"index": 6935} -2023-12-16T00:01:17.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6935, "blockHeight": 6935, "took": "11.860576ms"} -2023-12-16T00:01:18.009Z INFO sending PrepareRequest {"height": 6936, "view": 0} -2023-12-16T00:01:18.010Z INFO sending Commit {"height": 6936, "view": 0} -2023-12-16T00:01:18.010Z INFO approving block {"height": 6936, "hash": "11402f716a26eb8e13633bdd410ed1c75bde53514bbf18132258de77ccb8d9e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57ede1bb0fba4ae9944207eaaafe5f56560f89bd843826fbeaab875d2917b107"} -2023-12-16T00:01:18.011Z INFO initializing dbft {"height": 6937, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:18.012Z debug frostfs-node/morph.go:229 new block {"index": 6936} -2023-12-16T00:01:18.389Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6936, "blockHeight": 6936, "took": "8.481837ms"} -2023-12-16T00:01:19.012Z INFO sending PrepareRequest {"height": 6937, "view": 0} -2023-12-16T00:01:19.012Z INFO sending Commit {"height": 6937, "view": 0} -2023-12-16T00:01:19.012Z INFO approving block {"height": 6937, "hash": "33e00372703014030aae4ecaa5f3e16789c65864c3b6dcbd733826339cc1c072", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11402f716a26eb8e13633bdd410ed1c75bde53514bbf18132258de77ccb8d9e6"} -2023-12-16T00:01:19.014Z INFO initializing dbft {"height": 6938, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:19.015Z debug frostfs-node/morph.go:229 new block {"index": 6937} -2023-12-16T00:01:19.389Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6937, "blockHeight": 6937, "took": "6.884841ms"} -2023-12-16T00:01:20.014Z INFO sending PrepareRequest {"height": 6938, "view": 0} -2023-12-16T00:01:20.014Z INFO sending Commit {"height": 6938, "view": 0} -2023-12-16T00:01:20.015Z INFO approving block {"height": 6938, "hash": "e56f49350b82070af89b6af1096ace3df436ef28a7f2f6ff67e6e268fa207906", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33e00372703014030aae4ecaa5f3e16789c65864c3b6dcbd733826339cc1c072"} -2023-12-16T00:01:20.017Z INFO initializing dbft {"height": 6939, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:20.017Z debug frostfs-node/morph.go:229 new block {"index": 6938} -2023-12-16T00:01:20.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6938, "blockHeight": 6938, "took": "8.673133ms"} -2023-12-16T00:01:21.016Z INFO sending PrepareRequest {"height": 6939, "view": 0} -2023-12-16T00:01:21.016Z INFO sending Commit {"height": 6939, "view": 0} -2023-12-16T00:01:21.016Z INFO approving block {"height": 6939, "hash": "72875ee7893c4e572f0f8a9772027d72e4f97dc092445abe0387f7cbbf95147b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e56f49350b82070af89b6af1096ace3df436ef28a7f2f6ff67e6e268fa207906"} -2023-12-16T00:01:21.018Z INFO initializing dbft {"height": 6940, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:21.018Z debug frostfs-node/morph.go:229 new block {"index": 6939} -2023-12-16T00:01:21.391Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6939, "blockHeight": 6939, "took": "6.989124ms"} -2023-12-16T00:01:22.018Z INFO sending PrepareRequest {"height": 6940, "view": 0} -2023-12-16T00:01:22.018Z INFO sending Commit {"height": 6940, "view": 0} -2023-12-16T00:01:22.018Z INFO approving block {"height": 6940, "hash": "4b604aad2d9b07970a8931f8215bafe30c94f7d4ff6dc18b283ba0fa0aeaa54e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72875ee7893c4e572f0f8a9772027d72e4f97dc092445abe0387f7cbbf95147b"} -2023-12-16T00:01:22.020Z INFO initializing dbft {"height": 6941, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:22.021Z debug frostfs-node/morph.go:229 new block {"index": 6940} -2023-12-16T00:01:22.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6940, "blockHeight": 6940, "took": "7.516609ms"} -2023-12-16T00:01:23.020Z INFO sending PrepareRequest {"height": 6941, "view": 0} -2023-12-16T00:01:23.020Z INFO sending Commit {"height": 6941, "view": 0} -2023-12-16T00:01:23.020Z INFO approving block {"height": 6941, "hash": "da6c908e37fe518a77c4ec39afc06e46890bfd44534716095a1269e43e023d31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b604aad2d9b07970a8931f8215bafe30c94f7d4ff6dc18b283ba0fa0aeaa54e"} -2023-12-16T00:01:23.022Z INFO initializing dbft {"height": 6942, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:23.023Z debug frostfs-node/morph.go:229 new block {"index": 6941} -2023-12-16T00:01:23.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6941, "blockHeight": 6941, "took": "10.031456ms"} -2023-12-16T00:01:24.022Z INFO sending PrepareRequest {"height": 6942, "view": 0} -2023-12-16T00:01:24.022Z INFO sending Commit {"height": 6942, "view": 0} -2023-12-16T00:01:24.022Z INFO approving block {"height": 6942, "hash": "4d831139b63cbedbdf7c741a3c7d2f281141b15abf09c40c081da78b10968b9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da6c908e37fe518a77c4ec39afc06e46890bfd44534716095a1269e43e023d31"} -2023-12-16T00:01:24.024Z INFO initializing dbft {"height": 6943, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:24.025Z debug frostfs-node/morph.go:229 new block {"index": 6942} -2023-12-16T00:01:24.394Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6942, "blockHeight": 6942, "took": "7.269688ms"} -2023-12-16T00:01:25.024Z INFO sending PrepareRequest {"height": 6943, "view": 0} -2023-12-16T00:01:25.024Z INFO sending Commit {"height": 6943, "view": 0} -2023-12-16T00:01:25.024Z INFO approving block {"height": 6943, "hash": "5ff02bc408af7ea4f1f7dd8b6e6160d6ce0d9a344119958ee56dc314bdf8f59c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d831139b63cbedbdf7c741a3c7d2f281141b15abf09c40c081da78b10968b9f"} -2023-12-16T00:01:25.026Z INFO initializing dbft {"height": 6944, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:25.027Z debug frostfs-node/morph.go:229 new block {"index": 6943} -2023-12-16T00:01:25.394Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6943, "blockHeight": 6943, "took": "6.042776ms"} -2023-12-16T00:01:26.026Z INFO sending PrepareRequest {"height": 6944, "view": 0} -2023-12-16T00:01:26.026Z INFO sending Commit {"height": 6944, "view": 0} -2023-12-16T00:01:26.026Z INFO approving block {"height": 6944, "hash": "2a57966f573211a42d1f64a981f7eeea2e839a49efa957ffe9711ddb995c2511", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ff02bc408af7ea4f1f7dd8b6e6160d6ce0d9a344119958ee56dc314bdf8f59c"} -2023-12-16T00:01:26.028Z INFO initializing dbft {"height": 6945, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:26.029Z debug frostfs-node/morph.go:229 new block {"index": 6944} -2023-12-16T00:01:26.397Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6944, "blockHeight": 6944, "took": "7.75572ms"} -2023-12-16T00:01:27.028Z INFO sending PrepareRequest {"height": 6945, "view": 0} -2023-12-16T00:01:27.028Z INFO sending Commit {"height": 6945, "view": 0} -2023-12-16T00:01:27.028Z INFO approving block {"height": 6945, "hash": "5323bf7bdb062000b6b334b176d78c48e08f9d35965da9307c360200882c0fb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a57966f573211a42d1f64a981f7eeea2e839a49efa957ffe9711ddb995c2511"} -2023-12-16T00:01:27.030Z INFO initializing dbft {"height": 6946, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:27.031Z debug frostfs-node/morph.go:229 new block {"index": 6945} -2023-12-16T00:01:27.398Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6945, "blockHeight": 6945, "took": "7.549721ms"} -2023-12-16T00:01:28.030Z INFO sending PrepareRequest {"height": 6946, "view": 0} -2023-12-16T00:01:28.030Z INFO sending Commit {"height": 6946, "view": 0} -2023-12-16T00:01:28.030Z INFO approving block {"height": 6946, "hash": "7a26a4027e79fc3a63e48e6c0c50e66bd65ab27ecb3010b1d14cd1b25360f0e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5323bf7bdb062000b6b334b176d78c48e08f9d35965da9307c360200882c0fb0"} -2023-12-16T00:01:28.032Z INFO initializing dbft {"height": 6947, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:28.033Z debug frostfs-node/morph.go:229 new block {"index": 6946} -2023-12-16T00:01:28.397Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6946, "blockHeight": 6946, "took": "6.552701ms"} -2023-12-16T00:01:29.032Z INFO sending PrepareRequest {"height": 6947, "view": 0} -2023-12-16T00:01:29.032Z INFO sending Commit {"height": 6947, "view": 0} -2023-12-16T00:01:29.032Z INFO approving block {"height": 6947, "hash": "49784969ae09a33b883b78b78b201874c3c400c2f6aeef0e920bb63a52ad6312", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a26a4027e79fc3a63e48e6c0c50e66bd65ab27ecb3010b1d14cd1b25360f0e8"} -2023-12-16T00:01:29.034Z INFO initializing dbft {"height": 6948, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:29.035Z debug frostfs-node/morph.go:229 new block {"index": 6947} -2023-12-16T00:01:29.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6947, "blockHeight": 6947, "took": "8.027332ms"} -2023-12-16T00:01:30.034Z INFO sending PrepareRequest {"height": 6948, "view": 0} -2023-12-16T00:01:30.034Z INFO sending Commit {"height": 6948, "view": 0} -2023-12-16T00:01:30.035Z INFO approving block {"height": 6948, "hash": "5f499998807aa062508da4a72cc7897a0b7bb296e9bebb7e7ded1cd76ef16381", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49784969ae09a33b883b78b78b201874c3c400c2f6aeef0e920bb63a52ad6312"} -2023-12-16T00:01:30.036Z INFO initializing dbft {"height": 6949, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:30.037Z debug frostfs-node/morph.go:229 new block {"index": 6948} -2023-12-16T00:01:30.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6948, "blockHeight": 6948, "took": "6.590092ms"} -2023-12-16T00:01:31.036Z INFO sending PrepareRequest {"height": 6949, "view": 0} -2023-12-16T00:01:31.036Z INFO sending Commit {"height": 6949, "view": 0} -2023-12-16T00:01:31.036Z INFO approving block {"height": 6949, "hash": "6daea8dcc4a5667a4cb27c2dbd54b316a0be3e597a7c0e93678f8a91c1a058a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f499998807aa062508da4a72cc7897a0b7bb296e9bebb7e7ded1cd76ef16381"} -2023-12-16T00:01:31.038Z INFO initializing dbft {"height": 6950, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:31.039Z debug frostfs-node/morph.go:229 new block {"index": 6949} -2023-12-16T00:01:31.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6949, "blockHeight": 6949, "took": "6.812671ms"} -2023-12-16T00:01:32.038Z INFO sending PrepareRequest {"height": 6950, "view": 0} -2023-12-16T00:01:32.038Z INFO sending Commit {"height": 6950, "view": 0} -2023-12-16T00:01:32.039Z INFO approving block {"height": 6950, "hash": "cd4e321b0df7c9cd60c2e0cc6accc8b5c6d4677a4a28d96d9a3c68be74bbd30b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6daea8dcc4a5667a4cb27c2dbd54b316a0be3e597a7c0e93678f8a91c1a058a8"} -2023-12-16T00:01:32.043Z INFO initializing dbft {"height": 6951, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:32.044Z debug frostfs-node/morph.go:229 new block {"index": 6950} -2023-12-16T00:01:32.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6950, "blockHeight": 6950, "took": "9.698983ms"} -2023-12-16T00:01:33.040Z INFO sending PrepareRequest {"height": 6951, "view": 0} -2023-12-16T00:01:33.040Z INFO sending Commit {"height": 6951, "view": 0} -2023-12-16T00:01:33.041Z INFO approving block {"height": 6951, "hash": "d5bbb9f632cf28812afcc39e9a45fce58ca3890da63ebd8d2d2b47d086f7fc4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd4e321b0df7c9cd60c2e0cc6accc8b5c6d4677a4a28d96d9a3c68be74bbd30b"} -2023-12-16T00:01:33.042Z INFO initializing dbft {"height": 6952, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:33.043Z debug frostfs-node/morph.go:229 new block {"index": 6951} -2023-12-16T00:01:33.406Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6951, "blockHeight": 6951, "took": "9.567349ms"} -2023-12-16T00:01:34.042Z INFO sending PrepareRequest {"height": 6952, "view": 0} -2023-12-16T00:01:34.042Z INFO sending Commit {"height": 6952, "view": 0} -2023-12-16T00:01:34.042Z INFO approving block {"height": 6952, "hash": "558f1061e615ee35d87255791e634aba03c475fb522b41b32f8f74d99d964fa9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5bbb9f632cf28812afcc39e9a45fce58ca3890da63ebd8d2d2b47d086f7fc4d"} -2023-12-16T00:01:34.044Z INFO initializing dbft {"height": 6953, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:34.045Z debug frostfs-node/morph.go:229 new block {"index": 6952} -2023-12-16T00:01:34.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6952, "blockHeight": 6952, "took": "7.830164ms"} -2023-12-16T00:01:35.044Z INFO sending PrepareRequest {"height": 6953, "view": 0} -2023-12-16T00:01:35.044Z INFO sending Commit {"height": 6953, "view": 0} -2023-12-16T00:01:35.044Z INFO approving block {"height": 6953, "hash": "a23bd0f9f2410f3cbd40c02774bff7ba532982d17500e3546d84036d4feaed43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "558f1061e615ee35d87255791e634aba03c475fb522b41b32f8f74d99d964fa9"} -2023-12-16T00:01:35.046Z INFO initializing dbft {"height": 6954, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:35.046Z debug frostfs-node/morph.go:229 new block {"index": 6953} -2023-12-16T00:01:35.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6953, "blockHeight": 6953, "took": "11.049635ms"} -2023-12-16T00:01:36.046Z INFO sending PrepareRequest {"height": 6954, "view": 0} -2023-12-16T00:01:36.046Z INFO sending Commit {"height": 6954, "view": 0} -2023-12-16T00:01:36.046Z INFO approving block {"height": 6954, "hash": "8ba5b9d9d767ece651a9118511d10c59d8a7db264a7eecb1c4c674978d60ac73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a23bd0f9f2410f3cbd40c02774bff7ba532982d17500e3546d84036d4feaed43"} -2023-12-16T00:01:36.048Z INFO initializing dbft {"height": 6955, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:36.048Z debug frostfs-node/morph.go:229 new block {"index": 6954} -2023-12-16T00:01:36.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6954, "blockHeight": 6954, "took": "6.164182ms"} -2023-12-16T00:01:37.047Z INFO sending PrepareRequest {"height": 6955, "view": 0} -2023-12-16T00:01:37.048Z INFO sending Commit {"height": 6955, "view": 0} -2023-12-16T00:01:37.048Z INFO approving block {"height": 6955, "hash": "e163ef736c4f81a4a990d6f5e0c7cb87935d3037b7aa1566013d8948234eea87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ba5b9d9d767ece651a9118511d10c59d8a7db264a7eecb1c4c674978d60ac73"} -2023-12-16T00:01:37.050Z INFO initializing dbft {"height": 6956, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:37.050Z debug frostfs-node/morph.go:229 new block {"index": 6955} -2023-12-16T00:01:37.407Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6955, "blockHeight": 6955, "took": "6.848342ms"} -2023-12-16T00:01:38.049Z INFO sending PrepareRequest {"height": 6956, "view": 0} -2023-12-16T00:01:38.050Z INFO sending Commit {"height": 6956, "view": 0} -2023-12-16T00:01:38.050Z INFO approving block {"height": 6956, "hash": "479467ab9da9af1587376db8e455024d637b9cb86954f74b58b7b2b2cd887c4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e163ef736c4f81a4a990d6f5e0c7cb87935d3037b7aa1566013d8948234eea87"} -2023-12-16T00:01:38.052Z INFO initializing dbft {"height": 6957, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:38.053Z debug frostfs-node/morph.go:229 new block {"index": 6956} -2023-12-16T00:01:38.407Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6956, "blockHeight": 6956, "took": "6.423407ms"} -2023-12-16T00:01:39.052Z INFO sending PrepareRequest {"height": 6957, "view": 0} -2023-12-16T00:01:39.053Z INFO sending Commit {"height": 6957, "view": 0} -2023-12-16T00:01:39.053Z INFO approving block {"height": 6957, "hash": "d36bd2f4e577ff6a0db24400e43ebb0daa274aae88d01448ce138b7af73bab7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "479467ab9da9af1587376db8e455024d637b9cb86954f74b58b7b2b2cd887c4b"} -2023-12-16T00:01:39.055Z INFO initializing dbft {"height": 6958, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:39.055Z debug frostfs-node/morph.go:229 new block {"index": 6957} -2023-12-16T00:01:39.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6957, "blockHeight": 6957, "took": "10.606628ms"} -2023-12-16T00:01:40.055Z INFO sending PrepareRequest {"height": 6958, "view": 0} -2023-12-16T00:01:40.055Z INFO sending Commit {"height": 6958, "view": 0} -2023-12-16T00:01:40.056Z INFO approving block {"height": 6958, "hash": "e36acaa990a9601fc36ec91a869c84eed4d661d6968a9b431d671a41a0c7f0f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d36bd2f4e577ff6a0db24400e43ebb0daa274aae88d01448ce138b7af73bab7b"} -2023-12-16T00:01:40.059Z INFO initializing dbft {"height": 6959, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:40.061Z debug frostfs-node/morph.go:229 new block {"index": 6958} -2023-12-16T00:01:40.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6958, "blockHeight": 6958, "took": "9.435526ms"} -2023-12-16T00:01:41.057Z INFO sending PrepareRequest {"height": 6959, "view": 0} -2023-12-16T00:01:41.057Z INFO sending Commit {"height": 6959, "view": 0} -2023-12-16T00:01:41.057Z INFO approving block {"height": 6959, "hash": "cecbd53118b63a7a896f98ad4ed7bbea1c2f4f8fbd5d9d40b8f8de229bd55cc8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e36acaa990a9601fc36ec91a869c84eed4d661d6968a9b431d671a41a0c7f0f2"} -2023-12-16T00:01:41.059Z INFO initializing dbft {"height": 6960, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:41.060Z debug frostfs-node/morph.go:229 new block {"index": 6959} -2023-12-16T00:01:41.410Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6959, "blockHeight": 6959, "took": "7.045125ms"} -2023-12-16T00:01:42.058Z INFO sending PrepareRequest {"height": 6960, "view": 0} -2023-12-16T00:01:42.059Z INFO sending Commit {"height": 6960, "view": 0} -2023-12-16T00:01:42.060Z INFO approving block {"height": 6960, "hash": "29bfe99c446f6a5708636623460ca6fd99754b7dc2c4084a3f001d802716135e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cecbd53118b63a7a896f98ad4ed7bbea1c2f4f8fbd5d9d40b8f8de229bd55cc8"} -2023-12-16T00:01:42.062Z INFO initializing dbft {"height": 6961, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:42.063Z debug frostfs-node/morph.go:229 new block {"index": 6960} -2023-12-16T00:01:42.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6960, "blockHeight": 6960, "took": "8.336343ms"} -2023-12-16T00:01:43.060Z INFO sending PrepareRequest {"height": 6961, "view": 0} -2023-12-16T00:01:43.061Z INFO sending Commit {"height": 6961, "view": 0} -2023-12-16T00:01:43.061Z INFO approving block {"height": 6961, "hash": "6adca7d42414168e9b209f7959ce30790f3707d80fa8679e77eb3a2d0c617952", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29bfe99c446f6a5708636623460ca6fd99754b7dc2c4084a3f001d802716135e"} -2023-12-16T00:01:43.062Z INFO initializing dbft {"height": 6962, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:43.063Z debug frostfs-node/morph.go:229 new block {"index": 6961} -2023-12-16T00:01:43.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6961, "blockHeight": 6961, "took": "7.272447ms"} -2023-12-16T00:01:44.062Z INFO sending PrepareRequest {"height": 6962, "view": 0} -2023-12-16T00:01:44.063Z INFO sending Commit {"height": 6962, "view": 0} -2023-12-16T00:01:44.063Z INFO approving block {"height": 6962, "hash": "b135a6855f5f9fd50d75519ba28cf8600327224af6bccf1e04827727223fdb17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6adca7d42414168e9b209f7959ce30790f3707d80fa8679e77eb3a2d0c617952"} -2023-12-16T00:01:44.066Z INFO initializing dbft {"height": 6963, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:44.067Z debug frostfs-node/morph.go:229 new block {"index": 6962} -2023-12-16T00:01:44.413Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6962, "blockHeight": 6962, "took": "7.546895ms"} -2023-12-16T00:01:45.065Z INFO sending PrepareRequest {"height": 6963, "view": 0} -2023-12-16T00:01:45.065Z INFO sending Commit {"height": 6963, "view": 0} -2023-12-16T00:01:45.065Z INFO approving block {"height": 6963, "hash": "1d9bddd368c641938a5dee51e6b83e3a1a3dd758b9fcedf50b9de3e8a05c2e1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b135a6855f5f9fd50d75519ba28cf8600327224af6bccf1e04827727223fdb17"} -2023-12-16T00:01:45.067Z INFO initializing dbft {"height": 6964, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:45.068Z debug frostfs-node/morph.go:229 new block {"index": 6963} -2023-12-16T00:01:45.413Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6963, "blockHeight": 6963, "took": "6.058682ms"} -2023-12-16T00:01:46.067Z INFO sending PrepareRequest {"height": 6964, "view": 0} -2023-12-16T00:01:46.067Z INFO sending Commit {"height": 6964, "view": 0} -2023-12-16T00:01:46.068Z INFO approving block {"height": 6964, "hash": "e2e542c3e0f669ef7dde1dadf55508c99f2586af5ffbb6d108ec713ffe6e3228", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d9bddd368c641938a5dee51e6b83e3a1a3dd758b9fcedf50b9de3e8a05c2e1c"} -2023-12-16T00:01:46.069Z INFO initializing dbft {"height": 6965, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:46.070Z debug frostfs-node/morph.go:229 new block {"index": 6964} -2023-12-16T00:01:46.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6964, "blockHeight": 6964, "took": "6.597482ms"} -2023-12-16T00:01:47.069Z INFO sending PrepareRequest {"height": 6965, "view": 0} -2023-12-16T00:01:47.069Z INFO sending Commit {"height": 6965, "view": 0} -2023-12-16T00:01:47.070Z INFO approving block {"height": 6965, "hash": "786305b8205aaf86ce48172648dbc81ad5e470bed34240620518a2949077d1d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2e542c3e0f669ef7dde1dadf55508c99f2586af5ffbb6d108ec713ffe6e3228"} -2023-12-16T00:01:47.072Z INFO initializing dbft {"height": 6966, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:47.073Z debug frostfs-node/morph.go:229 new block {"index": 6965} -2023-12-16T00:01:47.439Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6965, "blockHeight": 6965, "took": "30.124934ms"} -2023-12-16T00:01:48.071Z INFO sending PrepareRequest {"height": 6966, "view": 0} -2023-12-16T00:01:48.072Z INFO sending Commit {"height": 6966, "view": 0} -2023-12-16T00:01:48.072Z INFO approving block {"height": 6966, "hash": "cc0e536724cd7ac27e0e5e8092644c5e2795b32947e2850e054ccbe01f416b5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "786305b8205aaf86ce48172648dbc81ad5e470bed34240620518a2949077d1d8"} -2023-12-16T00:01:48.073Z INFO initializing dbft {"height": 6967, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:48.074Z debug frostfs-node/morph.go:229 new block {"index": 6966} -2023-12-16T00:01:48.418Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6966, "blockHeight": 6966, "took": "8.913815ms"} -2023-12-16T00:01:49.073Z INFO sending PrepareRequest {"height": 6967, "view": 0} -2023-12-16T00:01:49.074Z INFO sending Commit {"height": 6967, "view": 0} -2023-12-16T00:01:49.074Z INFO approving block {"height": 6967, "hash": "2691c6d15596c6b6c32d7503e1f8aa4a4bd7d923242abddf6810f15385fa00bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc0e536724cd7ac27e0e5e8092644c5e2795b32947e2850e054ccbe01f416b5a"} -2023-12-16T00:01:49.076Z INFO initializing dbft {"height": 6968, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:49.077Z debug frostfs-node/morph.go:229 new block {"index": 6967} -2023-12-16T00:01:49.081Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T00:01:49.088Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:01:49.088Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:01:49.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6967, "blockHeight": 6967, "took": "8.123896ms"} -2023-12-16T00:01:50.075Z INFO sending PrepareRequest {"height": 6968, "view": 0} -2023-12-16T00:01:50.075Z INFO sending Commit {"height": 6968, "view": 0} -2023-12-16T00:01:50.075Z INFO approving block {"height": 6968, "hash": "95201ecd11d035af876aee2ec0ed5427fb78ee473879451f961677134c74f0de", "tx_count": 2, "merkle": "57a26fb2e68e3b0e25da6282d1516fddeb0635498e16623e465d001b68515be2", "prev": "2691c6d15596c6b6c32d7503e1f8aa4a4bd7d923242abddf6810f15385fa00bc"} -2023-12-16T00:01:50.077Z INFO runtime log {"tx": "e9ab923926f8ae4ae782c546336051bb3fe72696ee9b22437f614b4ef3080278", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:01:50.077Z INFO runtime log {"tx": "e9ab923926f8ae4ae782c546336051bb3fe72696ee9b22437f614b4ef3080278", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:01:50.078Z INFO initializing dbft {"height": 6969, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:50.079Z debug frostfs-node/morph.go:229 new block {"index": 6968} -2023-12-16T00:01:50.421Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 6968, "blockHeight": 6968, "took": "9.449308ms"} -2023-12-16T00:01:51.077Z INFO sending PrepareRequest {"height": 6969, "view": 0} -2023-12-16T00:01:51.077Z INFO sending Commit {"height": 6969, "view": 0} -2023-12-16T00:01:51.078Z INFO approving block {"height": 6969, "hash": "82d33e58bcc47b245664ea5ef2407e2babb2be2f8e690d35fb6828ca406d7647", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95201ecd11d035af876aee2ec0ed5427fb78ee473879451f961677134c74f0de"} -2023-12-16T00:01:51.080Z INFO initializing dbft {"height": 6970, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:51.081Z debug frostfs-node/morph.go:229 new block {"index": 6969} -2023-12-16T00:01:51.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6969, "blockHeight": 6969, "took": "9.252404ms"} -2023-12-16T00:01:52.079Z INFO sending PrepareRequest {"height": 6970, "view": 0} -2023-12-16T00:01:52.079Z INFO sending Commit {"height": 6970, "view": 0} -2023-12-16T00:01:52.079Z INFO approving block {"height": 6970, "hash": "ea84902e50fd8b2c4f7041c28c328c0287a43063b65168eb14d5a084130a0997", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82d33e58bcc47b245664ea5ef2407e2babb2be2f8e690d35fb6828ca406d7647"} -2023-12-16T00:01:52.081Z INFO initializing dbft {"height": 6971, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:52.082Z debug frostfs-node/morph.go:229 new block {"index": 6970} -2023-12-16T00:01:52.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6970, "blockHeight": 6970, "took": "6.709404ms"} -2023-12-16T00:01:53.080Z INFO sending PrepareRequest {"height": 6971, "view": 0} -2023-12-16T00:01:53.081Z INFO sending Commit {"height": 6971, "view": 0} -2023-12-16T00:01:53.081Z INFO approving block {"height": 6971, "hash": "9cfe38c2dd758b38a11d8d1acbccb942d62be6e6349e291d3ce9f7e094b566d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea84902e50fd8b2c4f7041c28c328c0287a43063b65168eb14d5a084130a0997"} -2023-12-16T00:01:53.083Z INFO initializing dbft {"height": 6972, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:53.084Z debug frostfs-node/morph.go:229 new block {"index": 6971} -2023-12-16T00:01:53.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6971, "blockHeight": 6971, "took": "7.52613ms"} -2023-12-16T00:01:54.082Z INFO sending PrepareRequest {"height": 6972, "view": 0} -2023-12-16T00:01:54.083Z INFO sending Commit {"height": 6972, "view": 0} -2023-12-16T00:01:54.083Z INFO approving block {"height": 6972, "hash": "e3b2e5aeffe2eedafc35ed2c841509c04c69e3d3da5f80e09666e29f797857d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cfe38c2dd758b38a11d8d1acbccb942d62be6e6349e291d3ce9f7e094b566d3"} -2023-12-16T00:01:54.085Z INFO initializing dbft {"height": 6973, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:54.086Z debug frostfs-node/morph.go:229 new block {"index": 6972} -2023-12-16T00:01:54.422Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6972, "blockHeight": 6972, "took": "7.485277ms"} -2023-12-16T00:01:55.084Z INFO sending PrepareRequest {"height": 6973, "view": 0} -2023-12-16T00:01:55.085Z INFO sending Commit {"height": 6973, "view": 0} -2023-12-16T00:01:55.085Z INFO approving block {"height": 6973, "hash": "99de24edf7e5da7405f244fc62e3832dd1aa4e015110a8009468f6480fac18ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3b2e5aeffe2eedafc35ed2c841509c04c69e3d3da5f80e09666e29f797857d4"} -2023-12-16T00:01:55.087Z INFO initializing dbft {"height": 6974, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:55.087Z debug frostfs-node/morph.go:229 new block {"index": 6973} -2023-12-16T00:01:55.422Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6973, "blockHeight": 6973, "took": "6.81338ms"} -2023-12-16T00:01:56.086Z INFO sending PrepareRequest {"height": 6974, "view": 0} -2023-12-16T00:01:56.086Z INFO sending Commit {"height": 6974, "view": 0} -2023-12-16T00:01:56.087Z INFO approving block {"height": 6974, "hash": "0fc54e317885ab5c33b9754c36113a013031e08fb6c8d9ff71d6be1a4f919827", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99de24edf7e5da7405f244fc62e3832dd1aa4e015110a8009468f6480fac18ef"} -2023-12-16T00:01:56.088Z INFO initializing dbft {"height": 6975, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:56.089Z debug frostfs-node/morph.go:229 new block {"index": 6974} -2023-12-16T00:01:56.424Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6974, "blockHeight": 6974, "took": "7.391375ms"} -2023-12-16T00:01:57.088Z INFO sending PrepareRequest {"height": 6975, "view": 0} -2023-12-16T00:01:57.089Z INFO sending Commit {"height": 6975, "view": 0} -2023-12-16T00:01:57.089Z INFO approving block {"height": 6975, "hash": "f7f372710f8129b6191c8667f7058ed2940eb224234d419e26e7029bc37b2157", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0fc54e317885ab5c33b9754c36113a013031e08fb6c8d9ff71d6be1a4f919827"} -2023-12-16T00:01:57.091Z INFO initializing dbft {"height": 6976, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:57.091Z debug frostfs-node/morph.go:229 new block {"index": 6975} -2023-12-16T00:01:57.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6975, "blockHeight": 6975, "took": "7.299712ms"} -2023-12-16T00:01:58.090Z INFO sending PrepareRequest {"height": 6976, "view": 0} -2023-12-16T00:01:58.091Z INFO sending Commit {"height": 6976, "view": 0} -2023-12-16T00:01:58.091Z INFO approving block {"height": 6976, "hash": "599cd524e89102d5553abc05b8d0fe819b2adb3f147497d42e46eb8ceb6dd624", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7f372710f8129b6191c8667f7058ed2940eb224234d419e26e7029bc37b2157"} -2023-12-16T00:01:58.093Z INFO initializing dbft {"height": 6977, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:58.094Z debug frostfs-node/morph.go:229 new block {"index": 6976} -2023-12-16T00:01:58.426Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6976, "blockHeight": 6976, "took": "7.356188ms"} -2023-12-16T00:01:59.092Z INFO sending PrepareRequest {"height": 6977, "view": 0} -2023-12-16T00:01:59.093Z INFO sending Commit {"height": 6977, "view": 0} -2023-12-16T00:01:59.093Z INFO approving block {"height": 6977, "hash": "3d8cb8fe9c2edd733b0b62490d23a1cf44a82bc356b1d12b1f0459900f7654b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "599cd524e89102d5553abc05b8d0fe819b2adb3f147497d42e46eb8ceb6dd624"} -2023-12-16T00:01:59.095Z INFO initializing dbft {"height": 6978, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:01:59.096Z debug frostfs-node/morph.go:229 new block {"index": 6977} -2023-12-16T00:01:59.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6977, "blockHeight": 6977, "took": "7.654295ms"} -2023-12-16T00:02:00.094Z INFO sending PrepareRequest {"height": 6978, "view": 0} -2023-12-16T00:02:00.095Z INFO sending Commit {"height": 6978, "view": 0} -2023-12-16T00:02:00.095Z INFO approving block {"height": 6978, "hash": "111866a8973bcc2eac6826c09365b583574374a2621fea6280e9c377c0a15361", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d8cb8fe9c2edd733b0b62490d23a1cf44a82bc356b1d12b1f0459900f7654b8"} -2023-12-16T00:02:00.097Z INFO initializing dbft {"height": 6979, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:00.098Z debug frostfs-node/morph.go:229 new block {"index": 6978} -2023-12-16T00:02:00.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6978, "blockHeight": 6978, "took": "6.83444ms"} -2023-12-16T00:02:01.096Z INFO sending PrepareRequest {"height": 6979, "view": 0} -2023-12-16T00:02:01.097Z INFO sending Commit {"height": 6979, "view": 0} -2023-12-16T00:02:01.097Z INFO approving block {"height": 6979, "hash": "2a2871ba6abc3ef42008638e294dd37c5051c53fb0c4f4748e6c2328d3d5ecc6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "111866a8973bcc2eac6826c09365b583574374a2621fea6280e9c377c0a15361"} -2023-12-16T00:02:01.099Z INFO initializing dbft {"height": 6980, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:01.100Z debug frostfs-node/morph.go:229 new block {"index": 6979} -2023-12-16T00:02:01.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6979, "blockHeight": 6979, "took": "7.596423ms"} -2023-12-16T00:02:02.098Z INFO sending PrepareRequest {"height": 6980, "view": 0} -2023-12-16T00:02:02.099Z INFO sending Commit {"height": 6980, "view": 0} -2023-12-16T00:02:02.099Z INFO approving block {"height": 6980, "hash": "fdc9f7a5a4e240230453cd3e77474706bc04d43fe86f889e6e382a058c81250c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a2871ba6abc3ef42008638e294dd37c5051c53fb0c4f4748e6c2328d3d5ecc6"} -2023-12-16T00:02:02.100Z INFO initializing dbft {"height": 6981, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:02.101Z debug frostfs-node/morph.go:229 new block {"index": 6980} -2023-12-16T00:02:02.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6980, "blockHeight": 6980, "took": "6.799213ms"} -2023-12-16T00:02:03.100Z INFO sending PrepareRequest {"height": 6981, "view": 0} -2023-12-16T00:02:03.100Z INFO sending Commit {"height": 6981, "view": 0} -2023-12-16T00:02:03.101Z INFO approving block {"height": 6981, "hash": "0f3348b107d28c70722f8396b41d5ee531635eab677a2a423b1f8d0610551c96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdc9f7a5a4e240230453cd3e77474706bc04d43fe86f889e6e382a058c81250c"} -2023-12-16T00:02:03.102Z INFO initializing dbft {"height": 6982, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:03.103Z debug frostfs-node/morph.go:229 new block {"index": 6981} -2023-12-16T00:02:03.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6981, "blockHeight": 6981, "took": "9.30084ms"} -2023-12-16T00:02:04.102Z INFO sending PrepareRequest {"height": 6982, "view": 0} -2023-12-16T00:02:04.103Z INFO sending Commit {"height": 6982, "view": 0} -2023-12-16T00:02:04.103Z INFO approving block {"height": 6982, "hash": "a758654ac0106608d68d9ac67274815e03c98175d7a929c6401ea86e177c5cd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f3348b107d28c70722f8396b41d5ee531635eab677a2a423b1f8d0610551c96"} -2023-12-16T00:02:04.105Z INFO initializing dbft {"height": 6983, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:04.105Z debug frostfs-node/morph.go:229 new block {"index": 6982} -2023-12-16T00:02:04.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6982, "blockHeight": 6982, "took": "7.022173ms"} -2023-12-16T00:02:05.104Z INFO sending PrepareRequest {"height": 6983, "view": 0} -2023-12-16T00:02:05.105Z INFO sending Commit {"height": 6983, "view": 0} -2023-12-16T00:02:05.105Z INFO approving block {"height": 6983, "hash": "7386457fa83d4514bc804c1026c5e6d97f6a67538cdfa07df5dc70cc1ac65ffd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a758654ac0106608d68d9ac67274815e03c98175d7a929c6401ea86e177c5cd5"} -2023-12-16T00:02:05.107Z INFO initializing dbft {"height": 6984, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:05.108Z debug frostfs-node/morph.go:229 new block {"index": 6983} -2023-12-16T00:02:05.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6983, "blockHeight": 6983, "took": "6.715269ms"} -2023-12-16T00:02:06.106Z INFO sending PrepareRequest {"height": 6984, "view": 0} -2023-12-16T00:02:06.107Z INFO sending Commit {"height": 6984, "view": 0} -2023-12-16T00:02:06.107Z INFO approving block {"height": 6984, "hash": "d680196315f52eb3c28a4fb1781f8f6492e10a80ebccf54a69b3b627f35a1ee0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7386457fa83d4514bc804c1026c5e6d97f6a67538cdfa07df5dc70cc1ac65ffd"} -2023-12-16T00:02:06.109Z INFO initializing dbft {"height": 6985, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:06.110Z debug frostfs-node/morph.go:229 new block {"index": 6984} -2023-12-16T00:02:06.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6984, "blockHeight": 6984, "took": "6.583695ms"} -2023-12-16T00:02:07.108Z INFO sending PrepareRequest {"height": 6985, "view": 0} -2023-12-16T00:02:07.108Z INFO sending Commit {"height": 6985, "view": 0} -2023-12-16T00:02:07.109Z INFO approving block {"height": 6985, "hash": "8d46a988d36ee50ed3350b1bd8e345d81cbc32c7be57d9466da736d23dbc3aad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d680196315f52eb3c28a4fb1781f8f6492e10a80ebccf54a69b3b627f35a1ee0"} -2023-12-16T00:02:07.111Z INFO initializing dbft {"height": 6986, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:07.112Z debug frostfs-node/morph.go:229 new block {"index": 6985} -2023-12-16T00:02:07.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6985, "blockHeight": 6985, "took": "5.131779ms"} -2023-12-16T00:02:08.110Z INFO sending PrepareRequest {"height": 6986, "view": 0} -2023-12-16T00:02:08.111Z INFO sending Commit {"height": 6986, "view": 0} -2023-12-16T00:02:08.111Z INFO approving block {"height": 6986, "hash": "3c56550e16ba54ce1b099d1a596071a4e0c7cdbb5a9a1b1c116d4ab6f907e02a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d46a988d36ee50ed3350b1bd8e345d81cbc32c7be57d9466da736d23dbc3aad"} -2023-12-16T00:02:08.113Z INFO initializing dbft {"height": 6987, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:08.113Z debug frostfs-node/morph.go:229 new block {"index": 6986} -2023-12-16T00:02:08.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6986, "blockHeight": 6986, "took": "8.419969ms"} -2023-12-16T00:02:09.113Z INFO sending PrepareRequest {"height": 6987, "view": 0} -2023-12-16T00:02:09.113Z INFO sending Commit {"height": 6987, "view": 0} -2023-12-16T00:02:09.114Z INFO approving block {"height": 6987, "hash": "50727cb382405bb13891c26ccd1f893ba79b4dbca7600b8954d9a3c7ba6addf1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c56550e16ba54ce1b099d1a596071a4e0c7cdbb5a9a1b1c116d4ab6f907e02a"} -2023-12-16T00:02:09.115Z INFO initializing dbft {"height": 6988, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:09.116Z debug frostfs-node/morph.go:229 new block {"index": 6987} -2023-12-16T00:02:09.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6987, "blockHeight": 6987, "took": "8.25672ms"} -2023-12-16T00:02:10.115Z INFO sending PrepareRequest {"height": 6988, "view": 0} -2023-12-16T00:02:10.115Z INFO sending Commit {"height": 6988, "view": 0} -2023-12-16T00:02:10.115Z INFO approving block {"height": 6988, "hash": "9e652611d215aa335647749a814cf3a252fecd70878f8f65819eb271b98520ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50727cb382405bb13891c26ccd1f893ba79b4dbca7600b8954d9a3c7ba6addf1"} -2023-12-16T00:02:10.117Z INFO initializing dbft {"height": 6989, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:10.118Z debug frostfs-node/morph.go:229 new block {"index": 6988} -2023-12-16T00:02:10.122Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T00:02:10.124Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 29, "iteration": 3, "error": "no data for 2 iteration in 29 epoch for consumers's trusts"} -2023-12-16T00:02:10.129Z INFO runtime log {"tx": "55b810f7a80a33686e7713a33c39e6272c3d3266c596374799a2963c210f7ebc", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T00:02:10.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6988, "blockHeight": 6988, "took": "6.909582ms"} -2023-12-16T00:02:11.117Z INFO sending PrepareRequest {"height": 6989, "view": 0} -2023-12-16T00:02:11.117Z INFO sending Commit {"height": 6989, "view": 0} -2023-12-16T00:02:11.117Z INFO approving block {"height": 6989, "hash": "ed7c7dce6fbd9017d184fedeced1e96e38f5258acdbd8f2830e4cea97a616485", "tx_count": 1, "merkle": "b2ffa616c7781f54e640d1cea45c78795983805425638c6bb972e96348b923d3", "prev": "9e652611d215aa335647749a814cf3a252fecd70878f8f65819eb271b98520ed"} -2023-12-16T00:02:11.118Z INFO runtime log {"tx": "d323b94863e972b96b8c63255480835979785ca4ced140e6541f78c716a6ffb2", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T00:02:11.121Z INFO initializing dbft {"height": 6990, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:11.121Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 31} -2023-12-16T00:02:11.121Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 31} -2023-12-16T00:02:11.122Z debug tree/sync.go:298 syncing trees... -2023-12-16T00:02:11.122Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T00:02:11.122Z debug controller/calls.go:95 starting to report local trust values {"epoch": 30} -2023-12-16T00:02:11.122Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 30} -2023-12-16T00:02:11.122Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 31} -2023-12-16T00:02:11.122Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 31} -2023-12-16T00:02:11.122Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 31} -2023-12-16T00:02:11.122Z debug frostfs-node/morph.go:229 new block {"index": 6989} -2023-12-16T00:02:11.125Z debug controller/calls.go:146 reporting successfully finished {"epoch": 30} -2023-12-16T00:02:11.125Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 30} -2023-12-16T00:02:11.128Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T00:02:11.129Z INFO runtime log {"tx": "02428c76619f374dcf85393f38ae39c9cb523a8dc096512b16965d383d184539", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T00:02:11.134Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6992, "tx_hash": "55ee0c861c2cc5d4cda9b24f41f0a6110f2e664ebdf191f9b2df4f692e66d191"} -2023-12-16T00:02:11.143Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T00:02:11.143Z info audit/handlers.go:13 new round of audit {"epoch": 31} -2023-12-16T00:02:11.143Z info settlement/calls.go:26 new audit settlement event {"epoch": 31} -2023-12-16T00:02:11.143Z info settlement/handlers.go:14 process audit settlements {"epoch": 31} -2023-12-16T00:02:11.143Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 31} -2023-12-16T00:02:11.145Z info settlement/handlers.go:18 audit processing finished {"epoch": 31} -2023-12-16T00:02:11.146Z info audit/process.go:39 select containers for audit {"epoch": 31, "amount": 0} -2023-12-16T00:02:11.151Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 6992, "tx_hash": "88720e5c7b0596c275c459c46eee98255d5fc6b5eae9670c3f5b8d26631e3786"} -2023-12-16T00:02:11.441Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 6989, "blockHeight": 6989, "took": "11.408715ms"} -2023-12-16T00:02:12.119Z INFO sending PrepareRequest {"height": 6990, "view": 0} -2023-12-16T00:02:12.119Z INFO sending Commit {"height": 6990, "view": 0} -2023-12-16T00:02:12.120Z INFO approving block {"height": 6990, "hash": "d89643040492d6558dc34f868176b3d5458fea39de27f045195d51f75e49f485", "tx_count": 3, "merkle": "87241ef7556d644b96aba4c9a6f2cdac6861e95d5505a928980c1f5b01d78bf1", "prev": "ed7c7dce6fbd9017d184fedeced1e96e38f5258acdbd8f2830e4cea97a616485"} -2023-12-16T00:02:12.121Z INFO runtime log {"tx": "f46ace3220b3e10225a422d0d5136f1ca96b220a54b229d9c671c5b948058065", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T00:02:12.123Z INFO initializing dbft {"height": 6991, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:12.123Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 30} -2023-12-16T00:02:12.123Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 30} -2023-12-16T00:02:12.124Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 30} -2023-12-16T00:02:12.125Z debug frostfs-node/morph.go:229 new block {"index": 6990} -2023-12-16T00:02:12.441Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 6990, "blockHeight": 6990, "took": "10.938907ms"} -2023-12-16T00:02:13.120Z INFO sending PrepareRequest {"height": 6991, "view": 0} -2023-12-16T00:02:13.120Z INFO sending Commit {"height": 6991, "view": 0} -2023-12-16T00:02:13.121Z INFO approving block {"height": 6991, "hash": "3ab72125aebfbc674941a992159d5009928eadeca7eb5907b077aa0ffd3224e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d89643040492d6558dc34f868176b3d5458fea39de27f045195d51f75e49f485"} -2023-12-16T00:02:13.122Z INFO initializing dbft {"height": 6992, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:13.123Z debug frostfs-node/morph.go:229 new block {"index": 6991} -2023-12-16T00:02:13.438Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6991, "blockHeight": 6991, "took": "7.260108ms"} -2023-12-16T00:02:14.121Z INFO sending PrepareRequest {"height": 6992, "view": 0} -2023-12-16T00:02:14.122Z INFO sending Commit {"height": 6992, "view": 0} -2023-12-16T00:02:14.122Z INFO approving block {"height": 6992, "hash": "0e1a4f6c40fa8c7c07ecec40349d2db2701902c19b95e00a72bb2dba98371bdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ab72125aebfbc674941a992159d5009928eadeca7eb5907b077aa0ffd3224e3"} -2023-12-16T00:02:14.124Z INFO initializing dbft {"height": 6993, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:14.125Z debug frostfs-node/morph.go:229 new block {"index": 6992} -2023-12-16T00:02:14.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6992, "blockHeight": 6992, "took": "8.241829ms"} -2023-12-16T00:02:15.123Z INFO sending PrepareRequest {"height": 6993, "view": 0} -2023-12-16T00:02:15.123Z INFO sending Commit {"height": 6993, "view": 0} -2023-12-16T00:02:15.124Z INFO approving block {"height": 6993, "hash": "7e985347a516b026766d7eedeeb3c042a9082f633988c1f9c5dcaf3a36728417", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e1a4f6c40fa8c7c07ecec40349d2db2701902c19b95e00a72bb2dba98371bdb"} -2023-12-16T00:02:15.125Z INFO initializing dbft {"height": 6994, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:15.126Z debug frostfs-node/morph.go:229 new block {"index": 6993} -2023-12-16T00:02:15.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6993, "blockHeight": 6993, "took": "5.643082ms"} -2023-12-16T00:02:16.126Z INFO sending PrepareRequest {"height": 6994, "view": 0} -2023-12-16T00:02:16.126Z INFO sending Commit {"height": 6994, "view": 0} -2023-12-16T00:02:16.127Z INFO approving block {"height": 6994, "hash": "6b4cb2751ca4a764e2853a87371daf6d77908f747944c26c0423d9345348025e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e985347a516b026766d7eedeeb3c042a9082f633988c1f9c5dcaf3a36728417"} -2023-12-16T00:02:16.129Z INFO initializing dbft {"height": 6995, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:16.131Z debug frostfs-node/morph.go:229 new block {"index": 6994} -2023-12-16T00:02:16.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6994, "blockHeight": 6994, "took": "11.37654ms"} -2023-12-16T00:02:17.129Z INFO sending PrepareRequest {"height": 6995, "view": 0} -2023-12-16T00:02:17.129Z INFO sending Commit {"height": 6995, "view": 0} -2023-12-16T00:02:17.129Z INFO approving block {"height": 6995, "hash": "68ca399a57701e41d7dda8eb012ad3d0b58c580b4ef86529aa3a121b1a0d75e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b4cb2751ca4a764e2853a87371daf6d77908f747944c26c0423d9345348025e"} -2023-12-16T00:02:17.131Z INFO initializing dbft {"height": 6996, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:17.131Z debug frostfs-node/morph.go:229 new block {"index": 6995} -2023-12-16T00:02:17.442Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6995, "blockHeight": 6995, "took": "7.608091ms"} -2023-12-16T00:02:18.131Z INFO sending PrepareRequest {"height": 6996, "view": 0} -2023-12-16T00:02:18.131Z INFO sending Commit {"height": 6996, "view": 0} -2023-12-16T00:02:18.131Z INFO approving block {"height": 6996, "hash": "2878224eb9de987c09649c244e3e04c9887d6219fd7006aaa656cbd69789bd66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68ca399a57701e41d7dda8eb012ad3d0b58c580b4ef86529aa3a121b1a0d75e0"} -2023-12-16T00:02:18.133Z INFO initializing dbft {"height": 6997, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:18.134Z debug frostfs-node/morph.go:229 new block {"index": 6996} -2023-12-16T00:02:18.442Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6996, "blockHeight": 6996, "took": "7.364184ms"} -2023-12-16T00:02:19.133Z INFO sending PrepareRequest {"height": 6997, "view": 0} -2023-12-16T00:02:19.133Z INFO sending Commit {"height": 6997, "view": 0} -2023-12-16T00:02:19.134Z INFO approving block {"height": 6997, "hash": "93290a931adc7673a719673800b78c4ea8761f534fd8565d46a001cfe51c7de3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2878224eb9de987c09649c244e3e04c9887d6219fd7006aaa656cbd69789bd66"} -2023-12-16T00:02:19.136Z INFO initializing dbft {"height": 6998, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:19.137Z debug frostfs-node/morph.go:229 new block {"index": 6997} -2023-12-16T00:02:19.442Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6997, "blockHeight": 6997, "took": "6.619635ms"} -2023-12-16T00:02:20.135Z INFO sending PrepareRequest {"height": 6998, "view": 0} -2023-12-16T00:02:20.135Z INFO sending Commit {"height": 6998, "view": 0} -2023-12-16T00:02:20.135Z INFO approving block {"height": 6998, "hash": "29cde6da67d7ccaa3db8b9f8d79ec65ef273662aefbb5af96740f8e076c291b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93290a931adc7673a719673800b78c4ea8761f534fd8565d46a001cfe51c7de3"} -2023-12-16T00:02:20.137Z INFO initializing dbft {"height": 6999, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:20.138Z debug frostfs-node/morph.go:229 new block {"index": 6998} -2023-12-16T00:02:20.443Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6998, "blockHeight": 6998, "took": "7.145582ms"} -2023-12-16T00:02:21.137Z INFO sending PrepareRequest {"height": 6999, "view": 0} -2023-12-16T00:02:21.137Z INFO sending Commit {"height": 6999, "view": 0} -2023-12-16T00:02:21.138Z INFO approving block {"height": 6999, "hash": "bb9f5bf7e2c4a1766a306591a3cdb47a186a5cd014969c38aa766e48a95944fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29cde6da67d7ccaa3db8b9f8d79ec65ef273662aefbb5af96740f8e076c291b8"} -2023-12-16T00:02:21.140Z INFO initializing dbft {"height": 7000, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:21.140Z debug frostfs-node/morph.go:229 new block {"index": 6999} -2023-12-16T00:02:21.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 6999, "blockHeight": 6999, "took": "9.572437ms"} -2023-12-16T00:02:22.139Z INFO sending PrepareRequest {"height": 7000, "view": 0} -2023-12-16T00:02:22.139Z INFO sending Commit {"height": 7000, "view": 0} -2023-12-16T00:02:22.140Z INFO approving block {"height": 7000, "hash": "53736c337d381e11aa2b021e07b22cae049449b0641db8de0842c1d9c8174ff9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb9f5bf7e2c4a1766a306591a3cdb47a186a5cd014969c38aa766e48a95944fc"} -2023-12-16T00:02:22.141Z INFO initializing dbft {"height": 7001, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:22.142Z debug frostfs-node/morph.go:229 new block {"index": 7000} -2023-12-16T00:02:22.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7000, "blockHeight": 7000, "took": "7.746246ms"} -2023-12-16T00:02:23.141Z INFO sending PrepareRequest {"height": 7001, "view": 0} -2023-12-16T00:02:23.141Z INFO sending Commit {"height": 7001, "view": 0} -2023-12-16T00:02:23.142Z INFO approving block {"height": 7001, "hash": "b79c9b47c8aba65895fc5091073558adb5e30b229a78cc12d8ede7b9cf147e90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53736c337d381e11aa2b021e07b22cae049449b0641db8de0842c1d9c8174ff9"} -2023-12-16T00:02:23.143Z INFO initializing dbft {"height": 7002, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:23.144Z debug frostfs-node/morph.go:229 new block {"index": 7001} -2023-12-16T00:02:23.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7001, "blockHeight": 7001, "took": "6.774295ms"} -2023-12-16T00:02:24.143Z INFO sending PrepareRequest {"height": 7002, "view": 0} -2023-12-16T00:02:24.144Z INFO sending Commit {"height": 7002, "view": 0} -2023-12-16T00:02:24.145Z INFO approving block {"height": 7002, "hash": "a7c86d3acbd77a1833ea206bd847bfd7981bcbcecdefed5ccd25c1590576fa74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b79c9b47c8aba65895fc5091073558adb5e30b229a78cc12d8ede7b9cf147e90"} -2023-12-16T00:02:24.147Z INFO initializing dbft {"height": 7003, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:24.147Z debug frostfs-node/morph.go:229 new block {"index": 7002} -2023-12-16T00:02:24.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7002, "blockHeight": 7002, "took": "6.454702ms"} -2023-12-16T00:02:25.145Z INFO sending PrepareRequest {"height": 7003, "view": 0} -2023-12-16T00:02:25.146Z INFO sending Commit {"height": 7003, "view": 0} -2023-12-16T00:02:25.146Z INFO approving block {"height": 7003, "hash": "f9bf080a5c9b62410cb7bf2e673510e4736315d8d429bcb838b3889e8fddde85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7c86d3acbd77a1833ea206bd847bfd7981bcbcecdefed5ccd25c1590576fa74"} -2023-12-16T00:02:25.148Z INFO initializing dbft {"height": 7004, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:25.148Z debug frostfs-node/morph.go:229 new block {"index": 7003} -2023-12-16T00:02:25.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7003, "blockHeight": 7003, "took": "4.50339ms"} -2023-12-16T00:02:26.147Z INFO sending PrepareRequest {"height": 7004, "view": 0} -2023-12-16T00:02:26.148Z INFO sending Commit {"height": 7004, "view": 0} -2023-12-16T00:02:26.148Z INFO approving block {"height": 7004, "hash": "7b38753f966e66dd269ac2bf6926d0cc292b5a7a79068df63cc2d2e55190ac9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9bf080a5c9b62410cb7bf2e673510e4736315d8d429bcb838b3889e8fddde85"} -2023-12-16T00:02:26.150Z INFO initializing dbft {"height": 7005, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:26.151Z debug frostfs-node/morph.go:229 new block {"index": 7004} -2023-12-16T00:02:26.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7004, "blockHeight": 7004, "took": "6.333023ms"} -2023-12-16T00:02:27.149Z INFO sending PrepareRequest {"height": 7005, "view": 0} -2023-12-16T00:02:27.150Z INFO sending Commit {"height": 7005, "view": 0} -2023-12-16T00:02:27.150Z INFO approving block {"height": 7005, "hash": "870909c9a8753eda6113a19a382cfc4e3b35e52f9407b6060e1c9eb7726ab594", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b38753f966e66dd269ac2bf6926d0cc292b5a7a79068df63cc2d2e55190ac9f"} -2023-12-16T00:02:27.152Z INFO initializing dbft {"height": 7006, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:27.153Z debug frostfs-node/morph.go:229 new block {"index": 7005} -2023-12-16T00:02:27.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7005, "blockHeight": 7005, "took": "5.084108ms"} -2023-12-16T00:02:28.151Z INFO sending PrepareRequest {"height": 7006, "view": 0} -2023-12-16T00:02:28.151Z INFO sending Commit {"height": 7006, "view": 0} -2023-12-16T00:02:28.152Z INFO approving block {"height": 7006, "hash": "bdc0ba1a4f8a3d10107e5ee55b2d1d5604a8b47c303331f4336cffbc6e845894", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "870909c9a8753eda6113a19a382cfc4e3b35e52f9407b6060e1c9eb7726ab594"} -2023-12-16T00:02:28.153Z INFO initializing dbft {"height": 7007, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:28.154Z debug frostfs-node/morph.go:229 new block {"index": 7006} -2023-12-16T00:02:28.451Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7006, "blockHeight": 7006, "took": "6.781201ms"} -2023-12-16T00:02:29.153Z INFO sending PrepareRequest {"height": 7007, "view": 0} -2023-12-16T00:02:29.153Z INFO sending Commit {"height": 7007, "view": 0} -2023-12-16T00:02:29.154Z INFO approving block {"height": 7007, "hash": "a4a2f560d699cd4d372a7f20281e9d3c0473728a114ff5534fd1f6309b6940a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdc0ba1a4f8a3d10107e5ee55b2d1d5604a8b47c303331f4336cffbc6e845894"} -2023-12-16T00:02:29.155Z INFO initializing dbft {"height": 7008, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:29.156Z debug frostfs-node/morph.go:229 new block {"index": 7007} -2023-12-16T00:02:29.453Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7007, "blockHeight": 7007, "took": "6.85988ms"} -2023-12-16T00:02:30.157Z INFO sending PrepareRequest {"height": 7008, "view": 0} -2023-12-16T00:02:30.157Z INFO sending Commit {"height": 7008, "view": 0} -2023-12-16T00:02:30.157Z INFO approving block {"height": 7008, "hash": "123f53f604d00405e1681279f54ea065389d450c91566818e905c5e3ca45d25c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4a2f560d699cd4d372a7f20281e9d3c0473728a114ff5534fd1f6309b6940a9"} -2023-12-16T00:02:30.159Z INFO initializing dbft {"height": 7009, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:30.160Z debug frostfs-node/morph.go:229 new block {"index": 7008} -2023-12-16T00:02:30.453Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7008, "blockHeight": 7008, "took": "5.856793ms"} -2023-12-16T00:02:31.159Z INFO sending PrepareRequest {"height": 7009, "view": 0} -2023-12-16T00:02:31.159Z INFO sending Commit {"height": 7009, "view": 0} -2023-12-16T00:02:31.159Z INFO approving block {"height": 7009, "hash": "4befc94e1b9a179e6f6bf5249651ea7bcdc97e2fbce77ab739510dea49dbdd97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "123f53f604d00405e1681279f54ea065389d450c91566818e905c5e3ca45d25c"} -2023-12-16T00:02:31.161Z INFO initializing dbft {"height": 7010, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:31.162Z debug frostfs-node/morph.go:229 new block {"index": 7009} -2023-12-16T00:02:31.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7009, "blockHeight": 7009, "took": "8.718552ms"} -2023-12-16T00:02:32.161Z INFO sending PrepareRequest {"height": 7010, "view": 0} -2023-12-16T00:02:32.161Z INFO sending Commit {"height": 7010, "view": 0} -2023-12-16T00:02:32.161Z INFO approving block {"height": 7010, "hash": "7ac74f0754719efad55884ec169b009a7344d304bc3b4b84eb37c23d3cdab2db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4befc94e1b9a179e6f6bf5249651ea7bcdc97e2fbce77ab739510dea49dbdd97"} -2023-12-16T00:02:32.162Z INFO initializing dbft {"height": 7011, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:32.163Z debug frostfs-node/morph.go:229 new block {"index": 7010} -2023-12-16T00:02:32.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7010, "blockHeight": 7010, "took": "5.85546ms"} -2023-12-16T00:02:33.162Z INFO sending PrepareRequest {"height": 7011, "view": 0} -2023-12-16T00:02:33.162Z INFO sending Commit {"height": 7011, "view": 0} -2023-12-16T00:02:33.163Z INFO approving block {"height": 7011, "hash": "b36f3abc3b5c06cfa2c05fe021e8554402cc08c18ed00baa7ab157f1d93f4efc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ac74f0754719efad55884ec169b009a7344d304bc3b4b84eb37c23d3cdab2db"} -2023-12-16T00:02:33.165Z INFO initializing dbft {"height": 7012, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:33.166Z debug frostfs-node/morph.go:229 new block {"index": 7011} -2023-12-16T00:02:33.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7011, "blockHeight": 7011, "took": "7.56554ms"} -2023-12-16T00:02:34.164Z INFO sending PrepareRequest {"height": 7012, "view": 0} -2023-12-16T00:02:34.165Z INFO sending Commit {"height": 7012, "view": 0} -2023-12-16T00:02:34.165Z INFO approving block {"height": 7012, "hash": "42bc13eb846236ddf62dd5a9f80a7c025b4360918a6e545f836fa76484acfa80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b36f3abc3b5c06cfa2c05fe021e8554402cc08c18ed00baa7ab157f1d93f4efc"} -2023-12-16T00:02:34.166Z INFO initializing dbft {"height": 7013, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:34.167Z debug frostfs-node/morph.go:229 new block {"index": 7012} -2023-12-16T00:02:34.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7012, "blockHeight": 7012, "took": "8.031831ms"} -2023-12-16T00:02:35.166Z INFO sending PrepareRequest {"height": 7013, "view": 0} -2023-12-16T00:02:35.166Z INFO sending Commit {"height": 7013, "view": 0} -2023-12-16T00:02:35.166Z INFO approving block {"height": 7013, "hash": "85da7a49f063b8e7fc9a598e5e51615b9977f823fe11538c28a7d27209a8128a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42bc13eb846236ddf62dd5a9f80a7c025b4360918a6e545f836fa76484acfa80"} -2023-12-16T00:02:35.168Z INFO initializing dbft {"height": 7014, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:35.168Z debug frostfs-node/morph.go:229 new block {"index": 7013} -2023-12-16T00:02:35.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7013, "blockHeight": 7013, "took": "8.635422ms"} -2023-12-16T00:02:36.168Z INFO sending PrepareRequest {"height": 7014, "view": 0} -2023-12-16T00:02:36.168Z INFO sending Commit {"height": 7014, "view": 0} -2023-12-16T00:02:36.168Z INFO approving block {"height": 7014, "hash": "8aa15875ef5bedfcf366ae2f1b2a648c7668ed02c3673388365d41932b2f179e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85da7a49f063b8e7fc9a598e5e51615b9977f823fe11538c28a7d27209a8128a"} -2023-12-16T00:02:36.170Z INFO initializing dbft {"height": 7015, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:36.171Z debug frostfs-node/morph.go:229 new block {"index": 7014} -2023-12-16T00:02:36.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7014, "blockHeight": 7014, "took": "8.113707ms"} -2023-12-16T00:02:37.170Z INFO sending PrepareRequest {"height": 7015, "view": 0} -2023-12-16T00:02:37.170Z INFO sending Commit {"height": 7015, "view": 0} -2023-12-16T00:02:37.170Z INFO approving block {"height": 7015, "hash": "cabfccf937a30513c162b007dacfeefc5d304ae78ed190150a3530e7f4d65951", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8aa15875ef5bedfcf366ae2f1b2a648c7668ed02c3673388365d41932b2f179e"} -2023-12-16T00:02:37.172Z INFO initializing dbft {"height": 7016, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:37.173Z debug frostfs-node/morph.go:229 new block {"index": 7015} -2023-12-16T00:02:37.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7015, "blockHeight": 7015, "took": "11.188731ms"} -2023-12-16T00:02:38.171Z INFO sending PrepareRequest {"height": 7016, "view": 0} -2023-12-16T00:02:38.171Z INFO sending Commit {"height": 7016, "view": 0} -2023-12-16T00:02:38.172Z INFO approving block {"height": 7016, "hash": "31686fac37ccfb5fbff61447af48c643d3526466a41247cb4b068796fe0db463", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cabfccf937a30513c162b007dacfeefc5d304ae78ed190150a3530e7f4d65951"} -2023-12-16T00:02:38.173Z INFO initializing dbft {"height": 7017, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:38.174Z debug frostfs-node/morph.go:229 new block {"index": 7016} -2023-12-16T00:02:38.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7016, "blockHeight": 7016, "took": "5.969164ms"} -2023-12-16T00:02:39.173Z INFO sending PrepareRequest {"height": 7017, "view": 0} -2023-12-16T00:02:39.173Z INFO sending Commit {"height": 7017, "view": 0} -2023-12-16T00:02:39.174Z INFO approving block {"height": 7017, "hash": "2f74bce1da279fe8b89f572452a91b3ed57ce3b2ef50fb6bec4ac4a6d130c495", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31686fac37ccfb5fbff61447af48c643d3526466a41247cb4b068796fe0db463"} -2023-12-16T00:02:39.175Z INFO initializing dbft {"height": 7018, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:39.176Z debug frostfs-node/morph.go:229 new block {"index": 7017} -2023-12-16T00:02:39.179Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T00:02:39.184Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:02:39.184Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:02:39.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7017, "blockHeight": 7017, "took": "6.057491ms"} -2023-12-16T00:02:40.175Z INFO sending PrepareRequest {"height": 7018, "view": 0} -2023-12-16T00:02:40.175Z INFO sending Commit {"height": 7018, "view": 0} -2023-12-16T00:02:40.176Z INFO approving block {"height": 7018, "hash": "e23101bc988f06eb571abd0d77f860823975956aae830d8324616754cce88004", "tx_count": 2, "merkle": "d9ac90dce24712c3164099bb9b91ec10252128fbe0ab5abaa03a93bf22784b88", "prev": "2f74bce1da279fe8b89f572452a91b3ed57ce3b2ef50fb6bec4ac4a6d130c495"} -2023-12-16T00:02:40.177Z INFO runtime log {"tx": "141d171c49a6220ab7b5a2a5200b7715cea6d5ffb99e3aa1b141e8ebfc9d87d4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:02:40.177Z INFO runtime log {"tx": "141d171c49a6220ab7b5a2a5200b7715cea6d5ffb99e3aa1b141e8ebfc9d87d4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:02:40.179Z INFO initializing dbft {"height": 7019, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:40.181Z debug frostfs-node/morph.go:229 new block {"index": 7018} -2023-12-16T00:02:40.472Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7018, "blockHeight": 7018, "took": "18.414829ms"} -2023-12-16T00:02:41.177Z INFO sending PrepareRequest {"height": 7019, "view": 0} -2023-12-16T00:02:41.177Z INFO sending Commit {"height": 7019, "view": 0} -2023-12-16T00:02:41.177Z INFO approving block {"height": 7019, "hash": "28d4aa4c316130a326a1b48d7bd936a27c090c9480c227697ff43c3b95344631", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e23101bc988f06eb571abd0d77f860823975956aae830d8324616754cce88004"} -2023-12-16T00:02:41.180Z INFO initializing dbft {"height": 7020, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:41.180Z debug frostfs-node/morph.go:229 new block {"index": 7019} -2023-12-16T00:02:41.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7019, "blockHeight": 7019, "took": "7.132986ms"} -2023-12-16T00:02:42.179Z INFO sending PrepareRequest {"height": 7020, "view": 0} -2023-12-16T00:02:42.179Z INFO sending Commit {"height": 7020, "view": 0} -2023-12-16T00:02:42.180Z INFO approving block {"height": 7020, "hash": "1221cb3d2910e7781ea2bed8e54f1858e3e1ab8c508b51f20ee30821b60fb581", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28d4aa4c316130a326a1b48d7bd936a27c090c9480c227697ff43c3b95344631"} -2023-12-16T00:02:42.181Z INFO initializing dbft {"height": 7021, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:42.183Z debug frostfs-node/morph.go:229 new block {"index": 7020} -2023-12-16T00:02:42.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7020, "blockHeight": 7020, "took": "4.979891ms"} -2023-12-16T00:02:43.181Z INFO sending PrepareRequest {"height": 7021, "view": 0} -2023-12-16T00:02:43.181Z INFO sending Commit {"height": 7021, "view": 0} -2023-12-16T00:02:43.181Z INFO approving block {"height": 7021, "hash": "a5b12b5f7a6477352919fdcc77c9f87490db5443b6cb60107729f7f6f199c4f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1221cb3d2910e7781ea2bed8e54f1858e3e1ab8c508b51f20ee30821b60fb581"} -2023-12-16T00:02:43.182Z INFO initializing dbft {"height": 7022, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:43.183Z debug frostfs-node/morph.go:229 new block {"index": 7021} -2023-12-16T00:02:43.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7021, "blockHeight": 7021, "took": "6.873466ms"} -2023-12-16T00:02:44.182Z INFO sending PrepareRequest {"height": 7022, "view": 0} -2023-12-16T00:02:44.182Z INFO sending Commit {"height": 7022, "view": 0} -2023-12-16T00:02:44.183Z INFO approving block {"height": 7022, "hash": "a9e81ee51ea50cdbcabe782884050f1c86e28e55cff4643a356e9c5d9cf6e569", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5b12b5f7a6477352919fdcc77c9f87490db5443b6cb60107729f7f6f199c4f8"} -2023-12-16T00:02:44.184Z INFO initializing dbft {"height": 7023, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:44.185Z debug frostfs-node/morph.go:229 new block {"index": 7022} -2023-12-16T00:02:44.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7022, "blockHeight": 7022, "took": "4.847991ms"} -2023-12-16T00:02:45.184Z INFO sending PrepareRequest {"height": 7023, "view": 0} -2023-12-16T00:02:45.184Z INFO sending Commit {"height": 7023, "view": 0} -2023-12-16T00:02:45.184Z INFO approving block {"height": 7023, "hash": "f2c73c3159b27e8a8e1372431072d5835eadfbea721a28bfc1971ec5f2e65c1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9e81ee51ea50cdbcabe782884050f1c86e28e55cff4643a356e9c5d9cf6e569"} -2023-12-16T00:02:45.185Z INFO initializing dbft {"height": 7024, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:45.186Z debug frostfs-node/morph.go:229 new block {"index": 7023} -2023-12-16T00:02:45.465Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7023, "blockHeight": 7023, "took": "6.757328ms"} -2023-12-16T00:02:46.185Z INFO sending PrepareRequest {"height": 7024, "view": 0} -2023-12-16T00:02:46.185Z INFO sending Commit {"height": 7024, "view": 0} -2023-12-16T00:02:46.186Z INFO approving block {"height": 7024, "hash": "5021b95c8d48e0c6537ebca8a73ef8fa676bd1d7320f3219a0b11fd9fd5a1f47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2c73c3159b27e8a8e1372431072d5835eadfbea721a28bfc1971ec5f2e65c1e"} -2023-12-16T00:02:46.187Z INFO initializing dbft {"height": 7025, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:46.187Z debug frostfs-node/morph.go:229 new block {"index": 7024} -2023-12-16T00:02:46.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7024, "blockHeight": 7024, "took": "11.86381ms"} -2023-12-16T00:02:47.187Z INFO sending PrepareRequest {"height": 7025, "view": 0} -2023-12-16T00:02:47.187Z INFO sending Commit {"height": 7025, "view": 0} -2023-12-16T00:02:47.188Z INFO approving block {"height": 7025, "hash": "9a2817eee0a74e7dabc1049c50a609bd159b92496ceebf31719d2a5ac5301662", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5021b95c8d48e0c6537ebca8a73ef8fa676bd1d7320f3219a0b11fd9fd5a1f47"} -2023-12-16T00:02:47.190Z INFO initializing dbft {"height": 7026, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:47.191Z debug frostfs-node/morph.go:229 new block {"index": 7025} -2023-12-16T00:02:47.467Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7025, "blockHeight": 7025, "took": "6.592432ms"} -2023-12-16T00:02:48.189Z INFO sending PrepareRequest {"height": 7026, "view": 0} -2023-12-16T00:02:48.189Z INFO sending Commit {"height": 7026, "view": 0} -2023-12-16T00:02:48.190Z INFO approving block {"height": 7026, "hash": "062a7dd76591924f527793ad4f6359745375a45f9e5801cb3f6f3f3de64b4f03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a2817eee0a74e7dabc1049c50a609bd159b92496ceebf31719d2a5ac5301662"} -2023-12-16T00:02:48.191Z INFO initializing dbft {"height": 7027, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:48.192Z debug frostfs-node/morph.go:229 new block {"index": 7026} -2023-12-16T00:02:48.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7026, "blockHeight": 7026, "took": "6.710062ms"} -2023-12-16T00:02:49.191Z INFO sending PrepareRequest {"height": 7027, "view": 0} -2023-12-16T00:02:49.191Z INFO sending Commit {"height": 7027, "view": 0} -2023-12-16T00:02:49.191Z INFO approving block {"height": 7027, "hash": "9fe24b7fd5e99a8885fc7ef131e96ac3a3d03ffbf251082086fa97156f471316", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "062a7dd76591924f527793ad4f6359745375a45f9e5801cb3f6f3f3de64b4f03"} -2023-12-16T00:02:49.193Z INFO initializing dbft {"height": 7028, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:49.194Z debug frostfs-node/morph.go:229 new block {"index": 7027} -2023-12-16T00:02:49.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7027, "blockHeight": 7027, "took": "6.011285ms"} -2023-12-16T00:02:50.193Z INFO sending PrepareRequest {"height": 7028, "view": 0} -2023-12-16T00:02:50.193Z INFO sending Commit {"height": 7028, "view": 0} -2023-12-16T00:02:50.193Z INFO approving block {"height": 7028, "hash": "dfad36fcb51455aa39faffc203098304f296690fee6309b5cc53039698213d09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fe24b7fd5e99a8885fc7ef131e96ac3a3d03ffbf251082086fa97156f471316"} -2023-12-16T00:02:50.195Z INFO initializing dbft {"height": 7029, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:50.196Z debug frostfs-node/morph.go:229 new block {"index": 7028} -2023-12-16T00:02:50.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7028, "blockHeight": 7028, "took": "4.661586ms"} -2023-12-16T00:02:51.194Z INFO sending PrepareRequest {"height": 7029, "view": 0} -2023-12-16T00:02:51.194Z INFO sending Commit {"height": 7029, "view": 0} -2023-12-16T00:02:51.195Z INFO approving block {"height": 7029, "hash": "a007845673d4d0b1d0e6652c6a5650c6b0ced22e1ab5625f753e3926bf2ed8b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfad36fcb51455aa39faffc203098304f296690fee6309b5cc53039698213d09"} -2023-12-16T00:02:51.196Z INFO initializing dbft {"height": 7030, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:51.196Z debug frostfs-node/morph.go:229 new block {"index": 7029} -2023-12-16T00:02:51.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7029, "blockHeight": 7029, "took": "4.581616ms"} -2023-12-16T00:02:52.196Z INFO sending PrepareRequest {"height": 7030, "view": 0} -2023-12-16T00:02:52.196Z INFO sending Commit {"height": 7030, "view": 0} -2023-12-16T00:02:52.197Z INFO approving block {"height": 7030, "hash": "7ca9c83016ca56019a3ad5247339dd29fc8a722d05ec4688abe1e6b7e5cb8e80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a007845673d4d0b1d0e6652c6a5650c6b0ced22e1ab5625f753e3926bf2ed8b5"} -2023-12-16T00:02:52.199Z INFO initializing dbft {"height": 7031, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:52.200Z debug frostfs-node/morph.go:229 new block {"index": 7030} -2023-12-16T00:02:52.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7030, "blockHeight": 7030, "took": "8.365656ms"} -2023-12-16T00:02:53.198Z INFO sending PrepareRequest {"height": 7031, "view": 0} -2023-12-16T00:02:53.198Z INFO sending Commit {"height": 7031, "view": 0} -2023-12-16T00:02:53.199Z INFO approving block {"height": 7031, "hash": "2e67abc8c619c8c4361d83696a4bff261688912eb422b27754e31c8167b212a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ca9c83016ca56019a3ad5247339dd29fc8a722d05ec4688abe1e6b7e5cb8e80"} -2023-12-16T00:02:53.200Z INFO initializing dbft {"height": 7032, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:53.201Z debug frostfs-node/morph.go:229 new block {"index": 7031} -2023-12-16T00:02:53.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7031, "blockHeight": 7031, "took": "5.464906ms"} -2023-12-16T00:02:54.201Z INFO sending PrepareRequest {"height": 7032, "view": 0} -2023-12-16T00:02:54.201Z INFO sending Commit {"height": 7032, "view": 0} -2023-12-16T00:02:54.201Z INFO approving block {"height": 7032, "hash": "e7223880e6158dabd6b41dd38fc6e815e332196da41bb094b98e101380c8038f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e67abc8c619c8c4361d83696a4bff261688912eb422b27754e31c8167b212a8"} -2023-12-16T00:02:54.202Z INFO initializing dbft {"height": 7033, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:54.203Z debug frostfs-node/morph.go:229 new block {"index": 7032} -2023-12-16T00:02:54.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7032, "blockHeight": 7032, "took": "5.693794ms"} -2023-12-16T00:02:55.203Z INFO sending PrepareRequest {"height": 7033, "view": 0} -2023-12-16T00:02:55.203Z INFO sending Commit {"height": 7033, "view": 0} -2023-12-16T00:02:55.203Z INFO approving block {"height": 7033, "hash": "e8b10315a57a00dd176b70fe55c3784a66d19770bd2d8866dc203b2a136beb91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7223880e6158dabd6b41dd38fc6e815e332196da41bb094b98e101380c8038f"} -2023-12-16T00:02:55.204Z INFO initializing dbft {"height": 7034, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:55.205Z debug frostfs-node/morph.go:229 new block {"index": 7033} -2023-12-16T00:02:55.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7033, "blockHeight": 7033, "took": "6.222578ms"} -2023-12-16T00:02:56.204Z INFO sending PrepareRequest {"height": 7034, "view": 0} -2023-12-16T00:02:56.204Z INFO sending Commit {"height": 7034, "view": 0} -2023-12-16T00:02:56.205Z INFO approving block {"height": 7034, "hash": "dfcfc4e361be7ef563177812051262d4157104af14f8ccbffe8b3673c88b7d57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8b10315a57a00dd176b70fe55c3784a66d19770bd2d8866dc203b2a136beb91"} -2023-12-16T00:02:56.206Z INFO initializing dbft {"height": 7035, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:56.207Z debug frostfs-node/morph.go:229 new block {"index": 7034} -2023-12-16T00:02:56.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7034, "blockHeight": 7034, "took": "6.511239ms"} -2023-12-16T00:02:57.206Z INFO sending PrepareRequest {"height": 7035, "view": 0} -2023-12-16T00:02:57.206Z INFO sending Commit {"height": 7035, "view": 0} -2023-12-16T00:02:57.207Z INFO approving block {"height": 7035, "hash": "a06f0c7460507d585394860e288d222306728badff2be934edf5b69c6dcc4d73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfcfc4e361be7ef563177812051262d4157104af14f8ccbffe8b3673c88b7d57"} -2023-12-16T00:02:57.208Z INFO initializing dbft {"height": 7036, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:57.209Z debug frostfs-node/morph.go:229 new block {"index": 7035} -2023-12-16T00:02:57.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7035, "blockHeight": 7035, "took": "6.000094ms"} -2023-12-16T00:02:58.207Z INFO sending PrepareRequest {"height": 7036, "view": 0} -2023-12-16T00:02:58.208Z INFO sending Commit {"height": 7036, "view": 0} -2023-12-16T00:02:58.208Z INFO approving block {"height": 7036, "hash": "5508079a38dee8b2f3b2024fb09260c665eb86002fcb05f4e1f28d7887626e35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a06f0c7460507d585394860e288d222306728badff2be934edf5b69c6dcc4d73"} -2023-12-16T00:02:58.209Z INFO initializing dbft {"height": 7037, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:58.210Z debug frostfs-node/morph.go:229 new block {"index": 7036} -2023-12-16T00:02:58.476Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7036, "blockHeight": 7036, "took": "7.420096ms"} -2023-12-16T00:02:59.209Z INFO sending PrepareRequest {"height": 7037, "view": 0} -2023-12-16T00:02:59.210Z INFO sending Commit {"height": 7037, "view": 0} -2023-12-16T00:02:59.210Z INFO approving block {"height": 7037, "hash": "a66b2ac537e9972affc8005f62f5a0c92ebe1353b93198d0b2b63835949d7386", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5508079a38dee8b2f3b2024fb09260c665eb86002fcb05f4e1f28d7887626e35"} -2023-12-16T00:02:59.212Z INFO initializing dbft {"height": 7038, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:02:59.213Z debug frostfs-node/morph.go:229 new block {"index": 7037} -2023-12-16T00:02:59.479Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7037, "blockHeight": 7037, "took": "9.893225ms"} -2023-12-16T00:03:00.212Z INFO sending PrepareRequest {"height": 7038, "view": 0} -2023-12-16T00:03:00.212Z INFO sending Commit {"height": 7038, "view": 0} -2023-12-16T00:03:00.212Z INFO approving block {"height": 7038, "hash": "236c06d1e533bc10f092f129a06aefe52d9e273eed1841a35bdec8356bfd7ce5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a66b2ac537e9972affc8005f62f5a0c92ebe1353b93198d0b2b63835949d7386"} -2023-12-16T00:03:00.214Z INFO initializing dbft {"height": 7039, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:00.215Z debug frostfs-node/morph.go:229 new block {"index": 7038} -2023-12-16T00:03:00.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7038, "blockHeight": 7038, "took": "9.870098ms"} -2023-12-16T00:03:01.214Z INFO sending PrepareRequest {"height": 7039, "view": 0} -2023-12-16T00:03:01.214Z INFO sending Commit {"height": 7039, "view": 0} -2023-12-16T00:03:01.215Z INFO approving block {"height": 7039, "hash": "8b5b52056a4dd1b5a38e9104750667d41581a7bad211d63cac5c63dba99b85e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "236c06d1e533bc10f092f129a06aefe52d9e273eed1841a35bdec8356bfd7ce5"} -2023-12-16T00:03:01.219Z INFO initializing dbft {"height": 7040, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:01.220Z debug frostfs-node/morph.go:229 new block {"index": 7039} -2023-12-16T00:03:01.482Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7039, "blockHeight": 7039, "took": "10.927109ms"} -2023-12-16T00:03:02.216Z INFO sending PrepareRequest {"height": 7040, "view": 0} -2023-12-16T00:03:02.216Z INFO sending Commit {"height": 7040, "view": 0} -2023-12-16T00:03:02.216Z INFO approving block {"height": 7040, "hash": "a52f1bf494bd512551f33458fe43ba9a0efcf08ae6aa20da64dbef9b78cc7bfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b5b52056a4dd1b5a38e9104750667d41581a7bad211d63cac5c63dba99b85e3"} -2023-12-16T00:03:02.219Z INFO initializing dbft {"height": 7041, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:02.220Z debug frostfs-node/morph.go:229 new block {"index": 7040} -2023-12-16T00:03:02.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7040, "blockHeight": 7040, "took": "7.698162ms"} -2023-12-16T00:03:03.218Z INFO sending PrepareRequest {"height": 7041, "view": 0} -2023-12-16T00:03:03.218Z INFO sending Commit {"height": 7041, "view": 0} -2023-12-16T00:03:03.218Z INFO approving block {"height": 7041, "hash": "443eac4806908343f93b7925031283f8ddd63ab6e0e26236a45c7a77e65d5e60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a52f1bf494bd512551f33458fe43ba9a0efcf08ae6aa20da64dbef9b78cc7bfe"} -2023-12-16T00:03:03.220Z INFO initializing dbft {"height": 7042, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:03.221Z debug frostfs-node/morph.go:229 new block {"index": 7041} -2023-12-16T00:03:03.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7041, "blockHeight": 7041, "took": "7.876089ms"} -2023-12-16T00:03:04.220Z INFO sending PrepareRequest {"height": 7042, "view": 0} -2023-12-16T00:03:04.220Z INFO sending Commit {"height": 7042, "view": 0} -2023-12-16T00:03:04.220Z INFO approving block {"height": 7042, "hash": "b5fd95f86083dfe752cc2687a157fcfe76ff55ac782c8dcba6434aa3f149f76e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "443eac4806908343f93b7925031283f8ddd63ab6e0e26236a45c7a77e65d5e60"} -2023-12-16T00:03:04.222Z INFO initializing dbft {"height": 7043, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:04.223Z debug frostfs-node/morph.go:229 new block {"index": 7042} -2023-12-16T00:03:04.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7042, "blockHeight": 7042, "took": "6.969654ms"} -2023-12-16T00:03:05.222Z INFO sending PrepareRequest {"height": 7043, "view": 0} -2023-12-16T00:03:05.222Z INFO sending Commit {"height": 7043, "view": 0} -2023-12-16T00:03:05.223Z INFO approving block {"height": 7043, "hash": "c3a28aff5395ea38bf489244e6c3ff884653b3d9a15ba60dc9e5ac0398d17beb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5fd95f86083dfe752cc2687a157fcfe76ff55ac782c8dcba6434aa3f149f76e"} -2023-12-16T00:03:05.224Z INFO initializing dbft {"height": 7044, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:05.225Z debug frostfs-node/morph.go:229 new block {"index": 7043} -2023-12-16T00:03:05.484Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7043, "blockHeight": 7043, "took": "9.028043ms"} -2023-12-16T00:03:06.224Z INFO sending PrepareRequest {"height": 7044, "view": 0} -2023-12-16T00:03:06.224Z INFO sending Commit {"height": 7044, "view": 0} -2023-12-16T00:03:06.225Z INFO approving block {"height": 7044, "hash": "ff621a41efb89316ddbfc143a7458b0c7760c180aa1a892e6ea5a938aaa5ef51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3a28aff5395ea38bf489244e6c3ff884653b3d9a15ba60dc9e5ac0398d17beb"} -2023-12-16T00:03:06.227Z INFO initializing dbft {"height": 7045, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:06.227Z debug frostfs-node/morph.go:229 new block {"index": 7044} -2023-12-16T00:03:06.483Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7044, "blockHeight": 7044, "took": "7.107317ms"} -2023-12-16T00:03:07.226Z INFO sending PrepareRequest {"height": 7045, "view": 0} -2023-12-16T00:03:07.226Z INFO sending Commit {"height": 7045, "view": 0} -2023-12-16T00:03:07.226Z INFO approving block {"height": 7045, "hash": "3ec76300709db30922997c7205f97d4c304a0091eee257b7189a4da9863eed6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff621a41efb89316ddbfc143a7458b0c7760c180aa1a892e6ea5a938aaa5ef51"} -2023-12-16T00:03:07.228Z INFO initializing dbft {"height": 7046, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:07.229Z debug frostfs-node/morph.go:229 new block {"index": 7045} -2023-12-16T00:03:07.484Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7045, "blockHeight": 7045, "took": "7.44207ms"} -2023-12-16T00:03:08.228Z INFO sending PrepareRequest {"height": 7046, "view": 0} -2023-12-16T00:03:08.228Z INFO sending Commit {"height": 7046, "view": 0} -2023-12-16T00:03:08.228Z INFO approving block {"height": 7046, "hash": "25aa095eb7097d3eba09d03793ff781d229dcdc32aca2d5b8430a3e9b6a94ea6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ec76300709db30922997c7205f97d4c304a0091eee257b7189a4da9863eed6a"} -2023-12-16T00:03:08.230Z INFO initializing dbft {"height": 7047, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:08.231Z debug frostfs-node/morph.go:229 new block {"index": 7046} -2023-12-16T00:03:08.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7046, "blockHeight": 7046, "took": "12.080267ms"} -2023-12-16T00:03:09.230Z INFO sending PrepareRequest {"height": 7047, "view": 0} -2023-12-16T00:03:09.230Z INFO sending Commit {"height": 7047, "view": 0} -2023-12-16T00:03:09.230Z INFO approving block {"height": 7047, "hash": "86680ca4de0bbd653e3cdce28889a75d91c42c5ebc93eb555251da0fe3247685", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25aa095eb7097d3eba09d03793ff781d229dcdc32aca2d5b8430a3e9b6a94ea6"} -2023-12-16T00:03:09.232Z INFO initializing dbft {"height": 7048, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:09.232Z debug frostfs-node/morph.go:229 new block {"index": 7047} -2023-12-16T00:03:09.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7047, "blockHeight": 7047, "took": "9.511808ms"} -2023-12-16T00:03:10.231Z INFO sending PrepareRequest {"height": 7048, "view": 0} -2023-12-16T00:03:10.232Z INFO sending Commit {"height": 7048, "view": 0} -2023-12-16T00:03:10.232Z INFO approving block {"height": 7048, "hash": "cafff3c8237986041f833f91a07585137a5ea0f5049a7a23217c0bacd92565eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86680ca4de0bbd653e3cdce28889a75d91c42c5ebc93eb555251da0fe3247685"} -2023-12-16T00:03:10.233Z INFO initializing dbft {"height": 7049, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:10.234Z debug frostfs-node/morph.go:229 new block {"index": 7048} -2023-12-16T00:03:10.241Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 30 epoch for daughters"} -2023-12-16T00:03:10.489Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7048, "blockHeight": 7048, "took": "10.243398ms"} -2023-12-16T00:03:11.233Z INFO sending PrepareRequest {"height": 7049, "view": 0} -2023-12-16T00:03:11.233Z INFO sending Commit {"height": 7049, "view": 0} -2023-12-16T00:03:11.234Z INFO approving block {"height": 7049, "hash": "6c5d8199aeb2f202572bf537be9b6c81ad7bc5fab853859817afd2680391058c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cafff3c8237986041f833f91a07585137a5ea0f5049a7a23217c0bacd92565eb"} -2023-12-16T00:03:11.236Z INFO initializing dbft {"height": 7050, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:11.237Z debug frostfs-node/morph.go:229 new block {"index": 7049} -2023-12-16T00:03:11.247Z INFO runtime log {"tx": "8bca3dcc1d817bed90f1318fa2f22bb885c03c322f1da88507099540829f5784", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T00:03:11.486Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7049, "blockHeight": 7049, "took": "6.041558ms"} -2023-12-16T00:03:12.235Z INFO sending PrepareRequest {"height": 7050, "view": 0} -2023-12-16T00:03:12.235Z INFO sending Commit {"height": 7050, "view": 0} -2023-12-16T00:03:12.236Z INFO approving block {"height": 7050, "hash": "5d4ae750198f559193483d25c2362ccf678b3ec851fe27017a15d618933e9d4c", "tx_count": 1, "merkle": "873be7ff2791442e8b71cc16ddea35e96c42c993d3e7362cb8f7f36c691c5d83", "prev": "6c5d8199aeb2f202572bf537be9b6c81ad7bc5fab853859817afd2680391058c"} -2023-12-16T00:03:12.237Z INFO runtime log {"tx": "835d1c696cf3f7b82c36e7d393c9426ce935eadd16cc718b2e449127ffe73b87", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T00:03:12.238Z INFO initializing dbft {"height": 7051, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:12.238Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 30} -2023-12-16T00:03:12.239Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 30} -2023-12-16T00:03:12.239Z debug frostfs-node/morph.go:229 new block {"index": 7050} -2023-12-16T00:03:12.493Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 7050, "blockHeight": 7050, "took": "10.889509ms"} -2023-12-16T00:03:13.237Z INFO sending PrepareRequest {"height": 7051, "view": 0} -2023-12-16T00:03:13.237Z INFO sending Commit {"height": 7051, "view": 0} -2023-12-16T00:03:13.237Z INFO approving block {"height": 7051, "hash": "b57a89b0aefeac2f95d35dae2f48e75c14a5d255279a5f41d8b4d2cbd80aad20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d4ae750198f559193483d25c2362ccf678b3ec851fe27017a15d618933e9d4c"} -2023-12-16T00:03:13.238Z INFO initializing dbft {"height": 7052, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:13.239Z debug frostfs-node/morph.go:229 new block {"index": 7051} -2023-12-16T00:03:13.491Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7051, "blockHeight": 7051, "took": "7.601593ms"} -2023-12-16T00:03:14.238Z INFO sending PrepareRequest {"height": 7052, "view": 0} -2023-12-16T00:03:14.238Z INFO sending Commit {"height": 7052, "view": 0} -2023-12-16T00:03:14.239Z INFO approving block {"height": 7052, "hash": "ec8e78755ecb849c96e30ae644fa4ff02ece3993dc69cd823ebcdfacd9c5ad08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b57a89b0aefeac2f95d35dae2f48e75c14a5d255279a5f41d8b4d2cbd80aad20"} -2023-12-16T00:03:14.240Z INFO initializing dbft {"height": 7053, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:14.241Z debug frostfs-node/morph.go:229 new block {"index": 7052} -2023-12-16T00:03:14.491Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7052, "blockHeight": 7052, "took": "6.84132ms"} -2023-12-16T00:03:15.240Z INFO sending PrepareRequest {"height": 7053, "view": 0} -2023-12-16T00:03:15.241Z INFO sending Commit {"height": 7053, "view": 0} -2023-12-16T00:03:15.241Z INFO approving block {"height": 7053, "hash": "8bd6e6574c04d886d14b7d504c615928740474ddecb943f19e3590a0c87cdd51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec8e78755ecb849c96e30ae644fa4ff02ece3993dc69cd823ebcdfacd9c5ad08"} -2023-12-16T00:03:15.242Z INFO initializing dbft {"height": 7054, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:15.243Z debug frostfs-node/morph.go:229 new block {"index": 7053} -2023-12-16T00:03:15.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7053, "blockHeight": 7053, "took": "7.579851ms"} -2023-12-16T00:03:16.242Z INFO sending PrepareRequest {"height": 7054, "view": 0} -2023-12-16T00:03:16.242Z INFO sending Commit {"height": 7054, "view": 0} -2023-12-16T00:03:16.242Z INFO approving block {"height": 7054, "hash": "0d789702d3d51805f98fd1e7afc7455013c2e548a7180a5c6e0b535bdbd3ff66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8bd6e6574c04d886d14b7d504c615928740474ddecb943f19e3590a0c87cdd51"} -2023-12-16T00:03:16.244Z INFO initializing dbft {"height": 7055, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:16.244Z debug frostfs-node/morph.go:229 new block {"index": 7054} -2023-12-16T00:03:16.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7054, "blockHeight": 7054, "took": "5.397567ms"} -2023-12-16T00:03:17.243Z INFO sending PrepareRequest {"height": 7055, "view": 0} -2023-12-16T00:03:17.244Z INFO sending Commit {"height": 7055, "view": 0} -2023-12-16T00:03:17.244Z INFO approving block {"height": 7055, "hash": "695e89118b169bcae331c3d80ee86b50507dd013ece9290eddba8f99266934ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d789702d3d51805f98fd1e7afc7455013c2e548a7180a5c6e0b535bdbd3ff66"} -2023-12-16T00:03:17.245Z INFO initializing dbft {"height": 7056, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:17.246Z debug frostfs-node/morph.go:229 new block {"index": 7055} -2023-12-16T00:03:17.495Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7055, "blockHeight": 7055, "took": "6.174654ms"} -2023-12-16T00:03:18.245Z INFO sending PrepareRequest {"height": 7056, "view": 0} -2023-12-16T00:03:18.245Z INFO sending Commit {"height": 7056, "view": 0} -2023-12-16T00:03:18.245Z INFO approving block {"height": 7056, "hash": "480a0330d18c53ec05ab2f3046370b59e28924b408450c5d5aff8ecd93de45f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "695e89118b169bcae331c3d80ee86b50507dd013ece9290eddba8f99266934ec"} -2023-12-16T00:03:18.246Z INFO initializing dbft {"height": 7057, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:18.247Z debug frostfs-node/morph.go:229 new block {"index": 7056} -2023-12-16T00:03:18.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7056, "blockHeight": 7056, "took": "6.112555ms"} -2023-12-16T00:03:19.246Z INFO sending PrepareRequest {"height": 7057, "view": 0} -2023-12-16T00:03:19.247Z INFO sending Commit {"height": 7057, "view": 0} -2023-12-16T00:03:19.247Z INFO approving block {"height": 7057, "hash": "3ff88a5ed738007067bb6bdad27b318b951471b1c56fdd2d803002ac78828b6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "480a0330d18c53ec05ab2f3046370b59e28924b408450c5d5aff8ecd93de45f4"} -2023-12-16T00:03:19.249Z INFO initializing dbft {"height": 7058, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:19.250Z debug frostfs-node/morph.go:229 new block {"index": 7057} -2023-12-16T00:03:19.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7057, "blockHeight": 7057, "took": "10.16497ms"} -2023-12-16T00:03:20.248Z INFO sending PrepareRequest {"height": 7058, "view": 0} -2023-12-16T00:03:20.248Z INFO sending Commit {"height": 7058, "view": 0} -2023-12-16T00:03:20.249Z INFO approving block {"height": 7058, "hash": "460229b2d30bdd2ed0701923e3e768cbe652ae0a4daa536884f1cfd7b5306f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ff88a5ed738007067bb6bdad27b318b951471b1c56fdd2d803002ac78828b6e"} -2023-12-16T00:03:20.251Z INFO initializing dbft {"height": 7059, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:20.252Z debug frostfs-node/morph.go:229 new block {"index": 7058} -2023-12-16T00:03:20.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7058, "blockHeight": 7058, "took": "6.732027ms"} -2023-12-16T00:03:21.250Z INFO sending PrepareRequest {"height": 7059, "view": 0} -2023-12-16T00:03:21.251Z INFO sending Commit {"height": 7059, "view": 0} -2023-12-16T00:03:21.251Z INFO approving block {"height": 7059, "hash": "18a866a6d6073ba53f2fef36139020c825e83dc0f68d0d6f6110b5470a3675b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "460229b2d30bdd2ed0701923e3e768cbe652ae0a4daa536884f1cfd7b5306f8b"} -2023-12-16T00:03:21.253Z INFO initializing dbft {"height": 7060, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:21.254Z debug frostfs-node/morph.go:229 new block {"index": 7059} -2023-12-16T00:03:21.500Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7059, "blockHeight": 7059, "took": "7.406298ms"} -2023-12-16T00:03:22.253Z INFO sending PrepareRequest {"height": 7060, "view": 0} -2023-12-16T00:03:22.253Z INFO sending Commit {"height": 7060, "view": 0} -2023-12-16T00:03:22.253Z INFO approving block {"height": 7060, "hash": "350e795548350cbddb4282c6c980cb671fd5647cbefa449a4a4163cff606f6e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18a866a6d6073ba53f2fef36139020c825e83dc0f68d0d6f6110b5470a3675b7"} -2023-12-16T00:03:22.255Z INFO initializing dbft {"height": 7061, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:22.256Z debug frostfs-node/morph.go:229 new block {"index": 7060} -2023-12-16T00:03:22.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7060, "blockHeight": 7060, "took": "7.189332ms"} -2023-12-16T00:03:23.254Z INFO sending PrepareRequest {"height": 7061, "view": 0} -2023-12-16T00:03:23.255Z INFO sending Commit {"height": 7061, "view": 0} -2023-12-16T00:03:23.255Z INFO approving block {"height": 7061, "hash": "8c731992924f60bafeafe74a4f4d97273fb828c242dbeeccdb9271844ed42c0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "350e795548350cbddb4282c6c980cb671fd5647cbefa449a4a4163cff606f6e2"} -2023-12-16T00:03:23.257Z INFO initializing dbft {"height": 7062, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:23.258Z debug frostfs-node/morph.go:229 new block {"index": 7061} -2023-12-16T00:03:23.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7061, "blockHeight": 7061, "took": "7.518031ms"} -2023-12-16T00:03:24.256Z INFO sending PrepareRequest {"height": 7062, "view": 0} -2023-12-16T00:03:24.256Z INFO sending Commit {"height": 7062, "view": 0} -2023-12-16T00:03:24.257Z INFO approving block {"height": 7062, "hash": "d838f22a5fd63b1c27b955f04bf6ab8c89d27ce14ce234b90c251a3343e87989", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c731992924f60bafeafe74a4f4d97273fb828c242dbeeccdb9271844ed42c0d"} -2023-12-16T00:03:24.259Z INFO initializing dbft {"height": 7063, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:24.260Z debug frostfs-node/morph.go:229 new block {"index": 7062} -2023-12-16T00:03:24.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7062, "blockHeight": 7062, "took": "9.093129ms"} -2023-12-16T00:03:25.258Z INFO sending PrepareRequest {"height": 7063, "view": 0} -2023-12-16T00:03:25.258Z INFO sending Commit {"height": 7063, "view": 0} -2023-12-16T00:03:25.259Z INFO approving block {"height": 7063, "hash": "b3545ea2799d04e167a492f8fe771966d16a0437a863ab80f0592a2dce5cc7be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d838f22a5fd63b1c27b955f04bf6ab8c89d27ce14ce234b90c251a3343e87989"} -2023-12-16T00:03:25.261Z INFO initializing dbft {"height": 7064, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:25.262Z debug frostfs-node/morph.go:229 new block {"index": 7063} -2023-12-16T00:03:25.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7063, "blockHeight": 7063, "took": "7.804862ms"} -2023-12-16T00:03:26.260Z INFO sending PrepareRequest {"height": 7064, "view": 0} -2023-12-16T00:03:26.260Z INFO sending Commit {"height": 7064, "view": 0} -2023-12-16T00:03:26.261Z INFO approving block {"height": 7064, "hash": "9024014edf68a7db16ef45ed86239ff2c439f85ff1ae1943fd5ff722be0acb9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3545ea2799d04e167a492f8fe771966d16a0437a863ab80f0592a2dce5cc7be"} -2023-12-16T00:03:26.262Z INFO initializing dbft {"height": 7065, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:26.263Z debug frostfs-node/morph.go:229 new block {"index": 7064} -2023-12-16T00:03:26.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7064, "blockHeight": 7064, "took": "7.373645ms"} -2023-12-16T00:03:27.261Z INFO sending PrepareRequest {"height": 7065, "view": 0} -2023-12-16T00:03:27.262Z INFO sending Commit {"height": 7065, "view": 0} -2023-12-16T00:03:27.262Z INFO approving block {"height": 7065, "hash": "a8e850b4a8a7e9eae2c654b4381ec4db5803182ddf35486dc8e63bd0ccbcd8e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9024014edf68a7db16ef45ed86239ff2c439f85ff1ae1943fd5ff722be0acb9d"} -2023-12-16T00:03:27.264Z INFO initializing dbft {"height": 7066, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:27.264Z debug frostfs-node/morph.go:229 new block {"index": 7065} -2023-12-16T00:03:27.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7065, "blockHeight": 7065, "took": "6.717545ms"} -2023-12-16T00:03:28.263Z INFO sending PrepareRequest {"height": 7066, "view": 0} -2023-12-16T00:03:28.264Z INFO sending Commit {"height": 7066, "view": 0} -2023-12-16T00:03:28.264Z INFO approving block {"height": 7066, "hash": "fdfb8d0fefd7027d503c7d243d2512c563e5a024402056bc213562c562b91967", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8e850b4a8a7e9eae2c654b4381ec4db5803182ddf35486dc8e63bd0ccbcd8e4"} -2023-12-16T00:03:28.266Z INFO initializing dbft {"height": 7067, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:28.267Z debug frostfs-node/morph.go:229 new block {"index": 7066} -2023-12-16T00:03:28.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7066, "blockHeight": 7066, "took": "8.533758ms"} -2023-12-16T00:03:29.265Z INFO sending PrepareRequest {"height": 7067, "view": 0} -2023-12-16T00:03:29.265Z INFO sending Commit {"height": 7067, "view": 0} -2023-12-16T00:03:29.266Z INFO approving block {"height": 7067, "hash": "415c8a6e42de17a6a0079bc692edd6f6e04bed7def1c5ee5051fcc82d1bfb60f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdfb8d0fefd7027d503c7d243d2512c563e5a024402056bc213562c562b91967"} -2023-12-16T00:03:29.267Z INFO initializing dbft {"height": 7068, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:29.268Z debug frostfs-node/morph.go:229 new block {"index": 7067} -2023-12-16T00:03:29.272Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T00:03:29.277Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:03:29.277Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:03:29.507Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7067, "blockHeight": 7067, "took": "6.881553ms"} -2023-12-16T00:03:30.267Z INFO sending PrepareRequest {"height": 7068, "view": 0} -2023-12-16T00:03:30.268Z INFO sending Commit {"height": 7068, "view": 0} -2023-12-16T00:03:30.268Z INFO approving block {"height": 7068, "hash": "801225ee1b165d3e19f6532a7a92fcac6e69fe72fe29ffe41b537d73b98c8bbb", "tx_count": 2, "merkle": "5c58962793a6c5be453ab39f007ad4a344f876ed2038ed36035648c098bea3be", "prev": "415c8a6e42de17a6a0079bc692edd6f6e04bed7def1c5ee5051fcc82d1bfb60f"} -2023-12-16T00:03:30.269Z INFO runtime log {"tx": "64833061d9c79a49168f11b9eaec90070505dce48164da397c4fc6829e1e3308", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T00:03:30.269Z INFO runtime log {"tx": "64833061d9c79a49168f11b9eaec90070505dce48164da397c4fc6829e1e3308", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T00:03:30.270Z INFO initializing dbft {"height": 7069, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:30.271Z debug frostfs-node/morph.go:229 new block {"index": 7068} -2023-12-16T00:03:30.513Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7068, "blockHeight": 7068, "took": "12.450945ms"} -2023-12-16T00:03:31.269Z INFO sending PrepareRequest {"height": 7069, "view": 0} -2023-12-16T00:03:31.269Z INFO sending Commit {"height": 7069, "view": 0} -2023-12-16T00:03:31.270Z INFO approving block {"height": 7069, "hash": "38fa75708617c9d93d41c1da7bdb9e0d3b4f8c47a25ec80a4306312770f18843", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "801225ee1b165d3e19f6532a7a92fcac6e69fe72fe29ffe41b537d73b98c8bbb"} -2023-12-16T00:03:31.271Z INFO initializing dbft {"height": 7070, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:31.272Z debug frostfs-node/morph.go:229 new block {"index": 7069} -2023-12-16T00:03:31.509Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7069, "blockHeight": 7069, "took": "7.012604ms"} -2023-12-16T00:03:32.271Z INFO sending PrepareRequest {"height": 7070, "view": 0} -2023-12-16T00:03:32.271Z INFO sending Commit {"height": 7070, "view": 0} -2023-12-16T00:03:32.272Z INFO approving block {"height": 7070, "hash": "2e9a06754cda561b3421b8171db51361d9627278f7642208103218f2f1316f76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38fa75708617c9d93d41c1da7bdb9e0d3b4f8c47a25ec80a4306312770f18843"} -2023-12-16T00:03:32.273Z INFO initializing dbft {"height": 7071, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:32.274Z debug frostfs-node/morph.go:229 new block {"index": 7070} -2023-12-16T00:03:32.510Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7070, "blockHeight": 7070, "took": "6.994535ms"} -2023-12-16T00:03:33.273Z INFO sending PrepareRequest {"height": 7071, "view": 0} -2023-12-16T00:03:33.273Z INFO sending Commit {"height": 7071, "view": 0} -2023-12-16T00:03:33.274Z INFO approving block {"height": 7071, "hash": "79b8cf93456d815fcd45765e1af366d2395a604a532d27d090d6376ddd2085b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e9a06754cda561b3421b8171db51361d9627278f7642208103218f2f1316f76"} -2023-12-16T00:03:33.275Z INFO initializing dbft {"height": 7072, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:33.276Z debug frostfs-node/morph.go:229 new block {"index": 7071} -2023-12-16T00:03:33.511Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7071, "blockHeight": 7071, "took": "6.651884ms"} -2023-12-16T00:03:34.275Z INFO sending PrepareRequest {"height": 7072, "view": 0} -2023-12-16T00:03:34.275Z INFO sending Commit {"height": 7072, "view": 0} -2023-12-16T00:03:34.275Z INFO approving block {"height": 7072, "hash": "ec3834b3230a941a72debd204d7bb234c62ba107468c844ee129c012d8f90379", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79b8cf93456d815fcd45765e1af366d2395a604a532d27d090d6376ddd2085b6"} -2023-12-16T00:03:34.277Z INFO initializing dbft {"height": 7073, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:34.278Z debug frostfs-node/morph.go:229 new block {"index": 7072} -2023-12-16T00:03:34.512Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7072, "blockHeight": 7072, "took": "6.583882ms"} -2023-12-16T00:03:35.276Z INFO sending PrepareRequest {"height": 7073, "view": 0} -2023-12-16T00:03:35.277Z INFO sending Commit {"height": 7073, "view": 0} -2023-12-16T00:03:35.277Z INFO approving block {"height": 7073, "hash": "bfbc63ca11d2852a0f133d930bc639fbdc6c3ed4bf306db575742a6cf8ccf87e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec3834b3230a941a72debd204d7bb234c62ba107468c844ee129c012d8f90379"} -2023-12-16T00:03:35.280Z INFO initializing dbft {"height": 7074, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:35.281Z debug frostfs-node/morph.go:229 new block {"index": 7073} -2023-12-16T00:03:35.512Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7073, "blockHeight": 7073, "took": "5.404918ms"} -2023-12-16T00:03:36.278Z INFO sending PrepareRequest {"height": 7074, "view": 0} -2023-12-16T00:03:36.278Z INFO sending Commit {"height": 7074, "view": 0} -2023-12-16T00:03:36.279Z INFO approving block {"height": 7074, "hash": "e054eb6028338f22d568a4b3755705a3cd3330cac2a2e8b95c42e86608988f93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfbc63ca11d2852a0f133d930bc639fbdc6c3ed4bf306db575742a6cf8ccf87e"} -2023-12-16T00:03:36.281Z INFO initializing dbft {"height": 7075, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:36.282Z debug frostfs-node/morph.go:229 new block {"index": 7074} -2023-12-16T00:03:36.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7074, "blockHeight": 7074, "took": "8.347841ms"} -2023-12-16T00:03:37.280Z INFO sending PrepareRequest {"height": 7075, "view": 0} -2023-12-16T00:03:37.281Z INFO sending Commit {"height": 7075, "view": 0} -2023-12-16T00:03:37.281Z INFO approving block {"height": 7075, "hash": "875d1b9f54c3bbcfc5d008d256b15e2caa5f3c5861457223d07a21e490eb5f38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e054eb6028338f22d568a4b3755705a3cd3330cac2a2e8b95c42e86608988f93"} -2023-12-16T00:03:37.283Z INFO initializing dbft {"height": 7076, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:37.284Z debug frostfs-node/morph.go:229 new block {"index": 7075} -2023-12-16T00:03:37.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7075, "blockHeight": 7075, "took": "7.586251ms"} -2023-12-16T00:03:38.282Z INFO sending PrepareRequest {"height": 7076, "view": 0} -2023-12-16T00:03:38.283Z INFO sending Commit {"height": 7076, "view": 0} -2023-12-16T00:03:38.283Z INFO approving block {"height": 7076, "hash": "1ebc72c6994d9b285188a66abe90f7e2db18a450cb83406b623c8c9341a48c75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "875d1b9f54c3bbcfc5d008d256b15e2caa5f3c5861457223d07a21e490eb5f38"} -2023-12-16T00:03:38.285Z INFO initializing dbft {"height": 7077, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:38.286Z debug frostfs-node/morph.go:229 new block {"index": 7076} -2023-12-16T00:03:38.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7076, "blockHeight": 7076, "took": "6.286216ms"} -2023-12-16T00:03:39.284Z INFO sending PrepareRequest {"height": 7077, "view": 0} -2023-12-16T00:03:39.285Z INFO sending Commit {"height": 7077, "view": 0} -2023-12-16T00:03:39.285Z INFO approving block {"height": 7077, "hash": "f3e8a6474e701b7e57486410dc861dc1a1e13d28166b90d91d869186026da336", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ebc72c6994d9b285188a66abe90f7e2db18a450cb83406b623c8c9341a48c75"} -2023-12-16T00:03:39.286Z INFO initializing dbft {"height": 7078, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:39.287Z debug frostfs-node/morph.go:229 new block {"index": 7077} -2023-12-16T00:03:39.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7077, "blockHeight": 7077, "took": "6.307424ms"} -2023-12-16T00:03:40.287Z INFO sending PrepareRequest {"height": 7078, "view": 0} -2023-12-16T00:03:40.287Z INFO sending Commit {"height": 7078, "view": 0} -2023-12-16T00:03:40.287Z INFO approving block {"height": 7078, "hash": "4609b979995eeb7f7db025f3ab46c63920703a02806535f46232927c6a4f843d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3e8a6474e701b7e57486410dc861dc1a1e13d28166b90d91d869186026da336"} -2023-12-16T00:03:40.289Z INFO initializing dbft {"height": 7079, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:40.290Z debug frostfs-node/morph.go:229 new block {"index": 7078} -2023-12-16T00:03:40.519Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7078, "blockHeight": 7078, "took": "6.568482ms"} -2023-12-16T00:03:41.289Z INFO sending PrepareRequest {"height": 7079, "view": 0} -2023-12-16T00:03:41.289Z INFO sending Commit {"height": 7079, "view": 0} -2023-12-16T00:03:41.289Z INFO approving block {"height": 7079, "hash": "12482e155353eb6bbffb08185884ef7fa32987adb39b07e02c94f2175229becb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4609b979995eeb7f7db025f3ab46c63920703a02806535f46232927c6a4f843d"} -2023-12-16T00:03:41.291Z INFO initializing dbft {"height": 7080, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:41.292Z debug frostfs-node/morph.go:229 new block {"index": 7079} -2023-12-16T00:03:41.520Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7079, "blockHeight": 7079, "took": "7.328464ms"} -2023-12-16T00:03:42.291Z INFO sending PrepareRequest {"height": 7080, "view": 0} -2023-12-16T00:03:42.291Z INFO sending Commit {"height": 7080, "view": 0} -2023-12-16T00:03:42.291Z INFO approving block {"height": 7080, "hash": "6a6a475dd7208c6d6af7c244a3589e5a9f7f27521dfff0ce451ce6fcd9e1caae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12482e155353eb6bbffb08185884ef7fa32987adb39b07e02c94f2175229becb"} -2023-12-16T00:03:42.293Z INFO initializing dbft {"height": 7081, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:42.294Z debug frostfs-node/morph.go:229 new block {"index": 7080} -2023-12-16T00:03:42.519Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7080, "blockHeight": 7080, "took": "5.691907ms"} -2023-12-16T00:03:43.293Z INFO sending PrepareRequest {"height": 7081, "view": 0} -2023-12-16T00:03:43.293Z INFO sending Commit {"height": 7081, "view": 0} -2023-12-16T00:03:43.294Z INFO approving block {"height": 7081, "hash": "1e7b8e6c4a65799deaaed3e5caee1b1afc68753b1ae21dc0bc48af6f14931a6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a6a475dd7208c6d6af7c244a3589e5a9f7f27521dfff0ce451ce6fcd9e1caae"} -2023-12-16T00:03:43.295Z INFO initializing dbft {"height": 7082, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:43.296Z debug frostfs-node/morph.go:229 new block {"index": 7081} -2023-12-16T00:03:43.523Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7081, "blockHeight": 7081, "took": "7.56155ms"} -2023-12-16T00:03:44.294Z INFO sending PrepareRequest {"height": 7082, "view": 0} -2023-12-16T00:03:44.295Z INFO sending Commit {"height": 7082, "view": 0} -2023-12-16T00:03:44.295Z INFO approving block {"height": 7082, "hash": "628fe691162111db485bf972a4b7c273bfab5e04151fb0116b8dd32037d973b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e7b8e6c4a65799deaaed3e5caee1b1afc68753b1ae21dc0bc48af6f14931a6c"} -2023-12-16T00:03:44.297Z INFO initializing dbft {"height": 7083, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:44.298Z debug frostfs-node/morph.go:229 new block {"index": 7082} -2023-12-16T00:03:44.525Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7082, "blockHeight": 7082, "took": "8.205247ms"} -2023-12-16T00:03:45.296Z INFO sending PrepareRequest {"height": 7083, "view": 0} -2023-12-16T00:03:45.297Z INFO sending Commit {"height": 7083, "view": 0} -2023-12-16T00:03:45.297Z INFO approving block {"height": 7083, "hash": "db935ff886b962467badceb0dc8ed8d98613d17757e75addc1759d23994a584a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "628fe691162111db485bf972a4b7c273bfab5e04151fb0116b8dd32037d973b6"} -2023-12-16T00:03:45.299Z INFO initializing dbft {"height": 7084, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:45.300Z debug frostfs-node/morph.go:229 new block {"index": 7083} -2023-12-16T00:03:45.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7083, "blockHeight": 7083, "took": "7.281639ms"} -2023-12-16T00:03:46.299Z INFO sending PrepareRequest {"height": 7084, "view": 0} -2023-12-16T00:03:46.299Z INFO sending Commit {"height": 7084, "view": 0} -2023-12-16T00:03:46.299Z INFO approving block {"height": 7084, "hash": "cfb5e258255cb28f50bdc8a52b8f6afba8863f001580ed34377869bd9af099ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db935ff886b962467badceb0dc8ed8d98613d17757e75addc1759d23994a584a"} -2023-12-16T00:03:46.301Z INFO initializing dbft {"height": 7085, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:46.303Z debug frostfs-node/morph.go:229 new block {"index": 7084} -2023-12-16T00:03:46.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7084, "blockHeight": 7084, "took": "7.262937ms"} -2023-12-16T00:03:47.300Z INFO sending PrepareRequest {"height": 7085, "view": 0} -2023-12-16T00:03:47.301Z INFO sending Commit {"height": 7085, "view": 0} -2023-12-16T00:03:47.301Z INFO approving block {"height": 7085, "hash": "ba55556440ae6d439fa12c3235534e8683d869ca370435b1c191c4d1068180f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfb5e258255cb28f50bdc8a52b8f6afba8863f001580ed34377869bd9af099ef"} -2023-12-16T00:03:47.303Z INFO initializing dbft {"height": 7086, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:47.304Z debug frostfs-node/morph.go:229 new block {"index": 7085} -2023-12-16T00:03:47.527Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7085, "blockHeight": 7085, "took": "7.455768ms"} -2023-12-16T00:03:48.302Z INFO sending PrepareRequest {"height": 7086, "view": 0} -2023-12-16T00:03:48.303Z INFO sending Commit {"height": 7086, "view": 0} -2023-12-16T00:03:48.303Z INFO approving block {"height": 7086, "hash": "939dd3d096e072ca3e73c56148d2cea6a2ce5a3764e22f04b83b90273174002f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba55556440ae6d439fa12c3235534e8683d869ca370435b1c191c4d1068180f4"} -2023-12-16T00:03:48.306Z INFO initializing dbft {"height": 7087, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:48.306Z debug frostfs-node/morph.go:229 new block {"index": 7086} -2023-12-16T00:03:48.741Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7086, "blockHeight": 7086, "took": "217.845365ms"} -2023-12-16T00:03:49.304Z INFO sending PrepareRequest {"height": 7087, "view": 0} -2023-12-16T00:03:49.305Z INFO sending Commit {"height": 7087, "view": 0} -2023-12-16T00:03:49.305Z INFO approving block {"height": 7087, "hash": "08199beb4f9a359d60bd03da32a365f376785014067c50a13c1f0592fc056bfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "939dd3d096e072ca3e73c56148d2cea6a2ce5a3764e22f04b83b90273174002f"} -2023-12-16T00:03:49.307Z INFO initializing dbft {"height": 7088, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:49.308Z debug frostfs-node/morph.go:229 new block {"index": 7087} -2023-12-16T00:03:49.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7087, "blockHeight": 7087, "took": "11.017842ms"} -2023-12-16T00:03:50.306Z INFO sending PrepareRequest {"height": 7088, "view": 0} -2023-12-16T00:03:50.307Z INFO sending Commit {"height": 7088, "view": 0} -2023-12-16T00:03:50.307Z INFO approving block {"height": 7088, "hash": "c06d4e095c7bd462c39dc72843d3337329777109457d170947eff98120d046aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08199beb4f9a359d60bd03da32a365f376785014067c50a13c1f0592fc056bfd"} -2023-12-16T00:03:50.308Z INFO initializing dbft {"height": 7089, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:50.309Z debug frostfs-node/morph.go:229 new block {"index": 7088} -2023-12-16T00:03:50.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7088, "blockHeight": 7088, "took": "6.535891ms"} -2023-12-16T00:03:51.309Z INFO sending PrepareRequest {"height": 7089, "view": 0} -2023-12-16T00:03:51.309Z INFO sending Commit {"height": 7089, "view": 0} -2023-12-16T00:03:51.309Z INFO approving block {"height": 7089, "hash": "62c5d053efdb3de79910031daf231265c43b80ac9d4652d8725141a660afba08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c06d4e095c7bd462c39dc72843d3337329777109457d170947eff98120d046aa"} -2023-12-16T00:03:51.311Z INFO initializing dbft {"height": 7090, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:51.312Z debug frostfs-node/morph.go:229 new block {"index": 7089} -2023-12-16T00:03:51.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7089, "blockHeight": 7089, "took": "6.629624ms"} -2023-12-16T00:03:52.310Z INFO sending PrepareRequest {"height": 7090, "view": 0} -2023-12-16T00:03:52.311Z INFO sending Commit {"height": 7090, "view": 0} -2023-12-16T00:03:52.311Z INFO approving block {"height": 7090, "hash": "8f9404650ec0e562f9d43b5afe26bb96e4948a56e7f36ef944a4ef6a3114bf30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62c5d053efdb3de79910031daf231265c43b80ac9d4652d8725141a660afba08"} -2023-12-16T00:03:52.313Z INFO initializing dbft {"height": 7091, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:52.314Z debug frostfs-node/morph.go:229 new block {"index": 7090} -2023-12-16T00:03:52.537Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7090, "blockHeight": 7090, "took": "8.288746ms"} -2023-12-16T00:03:53.312Z INFO sending PrepareRequest {"height": 7091, "view": 0} -2023-12-16T00:03:53.312Z INFO sending Commit {"height": 7091, "view": 0} -2023-12-16T00:03:53.312Z INFO approving block {"height": 7091, "hash": "39be99cf3368467b196771de4533cbc7b5164e15b2381595053bd50556cc84bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f9404650ec0e562f9d43b5afe26bb96e4948a56e7f36ef944a4ef6a3114bf30"} -2023-12-16T00:03:53.314Z INFO initializing dbft {"height": 7092, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:53.315Z debug frostfs-node/morph.go:229 new block {"index": 7091} -2023-12-16T00:03:53.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7091, "blockHeight": 7091, "took": "6.888377ms"} -2023-12-16T00:03:54.314Z INFO sending PrepareRequest {"height": 7092, "view": 0} -2023-12-16T00:03:54.314Z INFO sending Commit {"height": 7092, "view": 0} -2023-12-16T00:03:54.314Z INFO approving block {"height": 7092, "hash": "887c71036504f8474eb502b5bba07210768b3b3e081c24aea5c4a9414d5c9727", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39be99cf3368467b196771de4533cbc7b5164e15b2381595053bd50556cc84bd"} -2023-12-16T00:03:54.315Z INFO initializing dbft {"height": 7093, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:54.316Z debug frostfs-node/morph.go:229 new block {"index": 7092} -2023-12-16T00:03:54.538Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7092, "blockHeight": 7092, "took": "8.355541ms"} -2023-12-16T00:03:55.315Z INFO sending PrepareRequest {"height": 7093, "view": 0} -2023-12-16T00:03:55.316Z INFO sending Commit {"height": 7093, "view": 0} -2023-12-16T00:03:55.316Z INFO approving block {"height": 7093, "hash": "6a8c0900bef3cbf206dffa3c92aa413bb83221d261113b22bec2b16f0779f071", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "887c71036504f8474eb502b5bba07210768b3b3e081c24aea5c4a9414d5c9727"} -2023-12-16T00:03:55.317Z INFO initializing dbft {"height": 7094, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:55.318Z debug frostfs-node/morph.go:229 new block {"index": 7093} -2023-12-16T00:03:55.535Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7093, "blockHeight": 7093, "took": "4.583539ms"} -2023-12-16T00:03:56.317Z INFO sending PrepareRequest {"height": 7094, "view": 0} -2023-12-16T00:03:56.317Z INFO sending Commit {"height": 7094, "view": 0} -2023-12-16T00:03:56.318Z INFO approving block {"height": 7094, "hash": "f35e178b5f435afd248d64790985a4b027a1ae778d5b07d4507eada06c53459c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a8c0900bef3cbf206dffa3c92aa413bb83221d261113b22bec2b16f0779f071"} -2023-12-16T00:03:56.320Z INFO initializing dbft {"height": 7095, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:56.320Z debug frostfs-node/morph.go:229 new block {"index": 7094} -2023-12-16T00:03:56.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7094, "blockHeight": 7094, "took": "9.717734ms"} -2023-12-16T00:03:57.319Z INFO sending PrepareRequest {"height": 7095, "view": 0} -2023-12-16T00:03:57.319Z INFO sending Commit {"height": 7095, "view": 0} -2023-12-16T00:03:57.319Z INFO approving block {"height": 7095, "hash": "d235ae3a328902ad38c80d9637467c28bace78e5cb037b7fc12ed3309ae21cd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f35e178b5f435afd248d64790985a4b027a1ae778d5b07d4507eada06c53459c"} -2023-12-16T00:03:57.321Z INFO initializing dbft {"height": 7096, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:57.322Z debug frostfs-node/morph.go:229 new block {"index": 7095} -2023-12-16T00:03:57.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7095, "blockHeight": 7095, "took": "8.357291ms"} -2023-12-16T00:03:58.320Z INFO sending PrepareRequest {"height": 7096, "view": 0} -2023-12-16T00:03:58.320Z INFO sending Commit {"height": 7096, "view": 0} -2023-12-16T00:03:58.321Z INFO approving block {"height": 7096, "hash": "0d8bf8e865b6fb486340c20d80535494152b12244280016474a598940f9aa6e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d235ae3a328902ad38c80d9637467c28bace78e5cb037b7fc12ed3309ae21cd6"} -2023-12-16T00:03:58.322Z INFO initializing dbft {"height": 7097, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:58.323Z debug frostfs-node/morph.go:229 new block {"index": 7096} -2023-12-16T00:03:58.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7096, "blockHeight": 7096, "took": "6.985054ms"} -2023-12-16T00:03:59.322Z INFO sending PrepareRequest {"height": 7097, "view": 0} -2023-12-16T00:03:59.322Z INFO sending Commit {"height": 7097, "view": 0} -2023-12-16T00:03:59.323Z INFO approving block {"height": 7097, "hash": "6075add59f9562a778d4b55c5c477d09c3d3275cb31f212c8c0bb4b47fe97102", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d8bf8e865b6fb486340c20d80535494152b12244280016474a598940f9aa6e4"} -2023-12-16T00:03:59.324Z INFO initializing dbft {"height": 7098, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T00:03:59.325Z debug frostfs-node/morph.go:229 new block {"index": 7097} -2023-12-16T00:03:59.542Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7097, "blockHeight": 7097, "took": "7.155129ms"} -2023-12-16T14:07:16.532Z INFO initial gas supply is not set or wrong, setting default value {"InitialGASSupply": "52000000"} -2023-12-16T14:07:16.532Z INFO P2PNotaryRequestPayloadPool size is not set or wrong, setting default value {"P2PNotaryRequestPayloadPoolSize": 1000} -2023-12-16T14:07:16.532Z INFO MaxBlockSize is not set or wrong, setting default value {"MaxBlockSize": 262144} -2023-12-16T14:07:16.532Z INFO MaxBlockSystemFee is not set or wrong, setting default value {"MaxBlockSystemFee": 900000000000} -2023-12-16T14:07:16.532Z INFO MaxTransactionsPerBlock is not set or wrong, using default value {"MaxTransactionsPerBlock": 512} -2023-12-16T14:07:16.532Z INFO MaxValidUntilBlockIncrement is not set or wrong, using default value {"MaxValidUntilBlockIncrement": 86400} -2023-12-16T14:07:16.532Z INFO NativeActivations are not set, using default values -2023-12-16T14:07:16.532Z INFO Hardforks are not set, using default value -2023-12-16T14:07:16.549Z INFO restoring blockchain {"version": "0.2.8"} -2023-12-16T14:07:17.746Z INFO starting service {"service": "Prometheus", "endpoint": ":20001"} -2023-12-16T14:07:17.749Z INFO service hasn't started since it's disabled {"service": "Pprof"} -2023-12-16T14:07:17.750Z INFO ExtensiblePoolSize is not set or wrong, using default value {"ExtensiblePoolSize": 20} -2023-12-16T14:07:19.793Z INFO SessionExpirationTime is not set or wrong, setting default value {"SessionExpirationTime": 1} -2023-12-16T14:07:19.794Z INFO SessionPoolSize is not set or wrong, setting default value {"SessionPoolSize": 20} -2023-12-16T14:07:19.794Z INFO MaxWebSocketClients is not set or wrong, setting default value {"MaxWebSocketClients": 64} -2023-12-16T14:07:19.794Z INFO starting rpc-server {"endpoint": ":30333"} -2023-12-16T14:07:19.796Z INFO node started {"blockHeight": 7097, "headerHeight": 7097} -2023-12-16T14:07:19.796Z INFO node reached synchronized state, starting services -2023-12-16T14:07:19.796Z INFO starting notary service -2023-12-16T14:07:19.796Z INFO RPC server already started -2023-12-16T14:07:19.796Z INFO starting state validation service -2023-12-16T14:07:19.796Z INFO starting consensus service -2023-12-16T14:07:19.796Z INFO initializing dbft {"height": 7098, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:19.797Z INFO sending PrepareRequest {"height": 7098, "view": 0} -2023-12-16T14:07:19.798Z INFO sending Commit {"height": 7098, "view": 0} -2023-12-16T14:07:19.798Z INFO approving block {"height": 7098, "hash": "057cf121c52cfa559e650f3e79e0e259bc90141318b7ceadc6874e8a219484aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6075add59f9562a778d4b55c5c477d09c3d3275cb31f212c8c0bb4b47fe97102"} -2023-12-16T14:07:19.841Z INFO initializing dbft {"height": 7099, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:20.408Z INFO Error encountered with rpc request {"code": -32602, "cause": "invalid method 'GET', please retry with 'POST'", "method": "", "params": "[]"} -2023-12-16T14:07:20.553Z info frostfs-ir/main.go:124 pprof is disabled, skip -2023-12-16T14:07:20.554Z info frostfs-ir/main.go:124 prometheus is disabled, skip -2023-12-16T14:07:20.787Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7098, "blockHeight": 7098, "took": "37.757453ms"} -2023-12-16T14:07:20.799Z INFO sending PrepareRequest {"height": 7099, "view": 0} -2023-12-16T14:07:20.800Z INFO sending Commit {"height": 7099, "view": 0} -2023-12-16T14:07:20.800Z INFO approving block {"height": 7099, "hash": "7831fc0f066ec45b655aaf7bac3c07c24eeef8495390008996284b717ced7481", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "057cf121c52cfa559e650f3e79e0e259bc90141318b7ceadc6874e8a219484aa"} -2023-12-16T14:07:20.802Z INFO initializing dbft {"height": 7100, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:21.713Z info innerring/initialization.go:180 notary support {"sidechain_enabled": true, "mainchain_enabled": false} -2023-12-16T14:07:21.749Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary_type": "addPeer"} -2023-12-16T14:07:21.750Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary_type": "updateState"} -2023-12-16T14:07:21.750Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary type": "addPeer"} -2023-12-16T14:07:21.750Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "notary type": "updateState"} -2023-12-16T14:07:21.750Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "put"} -2023-12-16T14:07:21.750Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "putNamed"} -2023-12-16T14:07:21.750Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "delete"} -2023-12-16T14:07:21.750Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary_type": "setEACL"} -2023-12-16T14:07:21.750Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "put"} -2023-12-16T14:07:21.750Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "putNamed"} -2023-12-16T14:07:21.750Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "delete"} -2023-12-16T14:07:21.750Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "notary type": "setEACL"} -2023-12-16T14:07:21.751Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "d400cd570fd03f231607e203893ab6c0820de918", "notary_type": "put"} -2023-12-16T14:07:21.751Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "d400cd570fd03f231607e203893ab6c0820de918", "notary type": "put"} -2023-12-16T14:07:21.752Z info event/listener.go:555 registered new event parser {"chain": "morph", "mempool_type": "added", "contract": "35c53e321092c9c230bb8570b7c078658a7bca3a", "notary_type": "put"} -2023-12-16T14:07:21.752Z info event/listener.go:594 registered new event handler {"chain": "morph", "mempool_type": "added", "contract": "35c53e321092c9c230bb8570b7c078658a7bca3a", "notary type": "put"} -2023-12-16T14:07:21.771Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7102, "tx_hash": "dddb7913f6b445ba413b379ba4bf80e2e9728dc3144d55946fc4965d460d6ac8"} -2023-12-16T14:07:21.771Z info innerring/notary.go:89 waiting to accept side notary deposit -2023-12-16T14:07:21.771Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[dddb7913f6b445ba413b379ba4bf80e2e9728dc3144d55946fc4965d460d6ac8 Application]"} -2023-12-16T14:07:21.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7099, "blockHeight": 7099, "took": "42.323354ms"} -2023-12-16T14:07:21.801Z INFO sending PrepareRequest {"height": 7100, "view": 0} -2023-12-16T14:07:21.802Z INFO sending Commit {"height": 7100, "view": 0} -2023-12-16T14:07:21.802Z INFO approving block {"height": 7100, "hash": "d6a9ca21a9f3cdf794a5f4a14ee89ee6da1e8e8df28c6a1ecbf2205ed22e99da", "tx_count": 1, "merkle": "c86a0d465d96c46f94554d14c38d72e9e280bfa49b373b41ba45b4f61379dbdd", "prev": "7831fc0f066ec45b655aaf7bac3c07c24eeef8495390008996284b717ced7481"} -2023-12-16T14:07:21.814Z INFO initializing dbft {"height": 7101, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:22.281Z INFO runtime log {"tx": "846db781fb863ca22c6fb8464ea4fcc73251899f549f7930f4d80e341c3b810d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "az: successfully voted for validator"} -2023-12-16T14:07:22.297Z info frostfs-ir/main.go:83 application started {"version": "v0.36.0"} -2023-12-16T14:07:22.299Z info taskmanager/listen.go:15 process routine {"component": "Audit task manager", "queue_capacity": 100} -2023-12-16T14:07:22.801Z INFO persisted to disk {"blocks": 1, "keys": 42, "headerHeight": 7100, "blockHeight": 7100, "took": "50.430496ms"} -2023-12-16T14:07:22.804Z INFO sending PrepareRequest {"height": 7101, "view": 0} -2023-12-16T14:07:22.804Z INFO sending Commit {"height": 7101, "view": 0} -2023-12-16T14:07:22.805Z INFO approving block {"height": 7101, "hash": "52051a0fb97000e75eab7314705c30bcbe86253c21bbef5248352cc720563f8e", "tx_count": 1, "merkle": "9a0984cdc50e360ed4c72b5c1fd8912c850cee5fc294733b13db984d1ee3fc54", "prev": "d6a9ca21a9f3cdf794a5f4a14ee89ee6da1e8e8df28c6a1ecbf2205ed22e99da"} -2023-12-16T14:07:22.807Z INFO runtime log {"tx": "54fce31e4d98db133b7394c25fee0c852c91d81f5c2bc7d40e360ec5cd84099a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "az: successfully voted for validator"} -2023-12-16T14:07:22.824Z INFO initializing dbft {"height": 7102, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:23.805Z INFO sending PrepareRequest {"height": 7102, "view": 0} -2023-12-16T14:07:23.806Z INFO sending Commit {"height": 7102, "view": 0} -2023-12-16T14:07:23.810Z INFO approving block {"height": 7102, "hash": "ae1455418f6630abfcc5f3e3f361562fe662cd3970d28b26b2732296ac755a26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52051a0fb97000e75eab7314705c30bcbe86253c21bbef5248352cc720563f8e"} -2023-12-16T14:07:23.811Z INFO initializing dbft {"height": 7103, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:23.842Z INFO persisted to disk {"blocks": 1, "keys": 45, "headerHeight": 7101, "blockHeight": 7101, "took": "90.936618ms"} -2023-12-16T14:07:24.142Z info frostfs-node/main.go:73 initializing pprof service... -2023-12-16T14:07:24.143Z info frostfs-node/httpcomponent.go:24 pprof is disabled -2023-12-16T14:07:24.143Z info frostfs-node/main.go:75 pprof service has been successfully initialized -2023-12-16T14:07:24.143Z info frostfs-node/main.go:73 initializing metrics service... -2023-12-16T14:07:24.143Z info frostfs-node/httpcomponent.go:24 metrics is disabled -2023-12-16T14:07:24.143Z info frostfs-node/main.go:75 metrics service has been successfully initialized -2023-12-16T14:07:24.143Z info frostfs-node/main.go:73 initializing tracing service... -2023-12-16T14:07:24.144Z info frostfs-node/main.go:75 tracing service has been successfully initialized -2023-12-16T14:07:24.147Z debug metabase/control.go:28 created directory for Metabase {"path": "/data/metabase.db"} -2023-12-16T14:07:24.151Z debug metabase/control.go:49 opened boltDB instance for Metabase -2023-12-16T14:07:24.151Z debug metabase/control.go:51 checking metabase version -2023-12-16T14:07:24.152Z info frostfs-node/config.go:878 shard attached to engine {"id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-16T14:07:24.152Z info frostfs-node/main.go:73 initializing storage engine service... -2023-12-16T14:07:24.152Z debug blobstor/control.go:12 opening... {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-16T14:07:24.152Z debug metabase/control.go:28 created directory for Metabase {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "path": "/data/metabase.db"} -2023-12-16T14:07:24.153Z debug metabase/control.go:49 opened boltDB instance for Metabase {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-16T14:07:24.153Z debug metabase/control.go:51 checking metabase version {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-16T14:07:24.160Z debug blobstor/control.go:32 initializing... {"shard_id": "EZ7Sjau6xAKGque4vyXNYM"} -2023-12-16T14:07:24.174Z debug blobovniczatree/control.go:21 initializing Blobovnicza's -2023-12-16T14:07:24.174Z debug blobovnicza/control.go:17 creating directory for BoltDB {"component": "Blobovnicza", "path": "/data/blob/blobovnicza/0/0", "ro": false} -2023-12-16T14:07:24.177Z debug blobovnicza/control.go:31 opening BoltDB {"component": "Blobovnicza", "path": "/data/blob/blobovnicza/0/0", "permissions": "-rwxrwxrwx"} -2023-12-16T14:07:24.181Z debug blobovnicza/control.go:47 initializing... {"component": "Blobovnicza", "object size limit": 1048576, "storage size limit": 4294967296} -2023-12-16T14:07:24.181Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[0:32768]"} -2023-12-16T14:07:24.183Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[32769:65536]"} -2023-12-16T14:07:24.183Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[65537:131072]"} -2023-12-16T14:07:24.183Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[131073:262144]"} -2023-12-16T14:07:24.183Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[262145:524288]"} -2023-12-16T14:07:24.183Z debug blobovnicza/control.go:62 creating bucket for size range {"component": "Blobovnicza", "range": "[524289:1048576]"} -2023-12-16T14:07:24.190Z debug blobovniczatree/control.go:39 blobovnicza successfully initialized, closing... {"id": "0/0"} -2023-12-16T14:07:24.191Z debug blobovnicza/control.go:89 closing BoltDB {"component": "Blobovnicza", "path": "/data/blob/blobovnicza/0/0"} -2023-12-16T14:07:24.201Z info frostfs-node/main.go:75 storage engine service has been successfully initialized -2023-12-16T14:07:24.201Z info frostfs-node/main.go:73 initializing gRPC service... -2023-12-16T14:07:24.202Z info frostfs-node/main.go:75 gRPC service has been successfully initialized -2023-12-16T14:07:24.202Z info frostfs-node/main.go:73 initializing netmap service... -2023-12-16T14:07:24.266Z info frostfs-node/morph.go:83 notary support {"sidechain_enabled": true} -2023-12-16T14:07:24.266Z debug frostfs-node/morph.go:98 morph.cache_ttl fetched from network {"value": 1} -2023-12-16T14:07:24.275Z info frostfs-node/netmap.go:296 initial network state {"epoch": 31, "state": "online"} -2023-12-16T14:07:24.275Z info frostfs-node/main.go:75 netmap service has been successfully initialized -2023-12-16T14:07:24.275Z info frostfs-node/main.go:73 initializing accounting service... -2023-12-16T14:07:24.275Z info frostfs-node/main.go:75 accounting service has been successfully initialized -2023-12-16T14:07:24.275Z info frostfs-node/main.go:73 initializing container service... -2023-12-16T14:07:24.275Z info frostfs-node/main.go:75 container service has been successfully initialized -2023-12-16T14:07:24.275Z info frostfs-node/main.go:73 initializing session service... -2023-12-16T14:07:24.275Z info frostfs-node/main.go:75 session service has been successfully initialized -2023-12-16T14:07:24.275Z info frostfs-node/main.go:73 initializing reputation service... -2023-12-16T14:07:24.275Z info frostfs-node/main.go:75 reputation service has been successfully initialized -2023-12-16T14:07:24.275Z info frostfs-node/main.go:73 initializing notification service... -2023-12-16T14:07:24.275Z info frostfs-node/main.go:75 notification service has been successfully initialized -2023-12-16T14:07:24.275Z info frostfs-node/main.go:73 initializing object service... -2023-12-16T14:07:24.278Z info frostfs-node/main.go:75 object service has been successfully initialized -2023-12-16T14:07:24.278Z info frostfs-node/main.go:73 initializing tree service... -2023-12-16T14:07:24.278Z info frostfs-node/main.go:75 tree service has been successfully initialized -2023-12-16T14:07:24.278Z info frostfs-node/main.go:73 initializing control service... -2023-12-16T14:07:24.279Z info frostfs-node/main.go:75 control service has been successfully initialized -2023-12-16T14:07:24.279Z info frostfs-node/main.go:73 initializing morph notifications service... -2023-12-16T14:07:24.280Z debug event/listener.go:459 registered new event parser {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "a9dc350d936b140f93ecc85999e2392d915b8989", "event_type": "NewEpoch"} -2023-12-16T14:07:24.282Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "PutSuccess"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "PutSuccess"} -2023-12-16T14:07:24.282Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "DeleteSuccess"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "DeleteSuccess"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "DeleteSuccess"} -2023-12-16T14:07:24.282Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StartEstimation"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StartEstimation"} -2023-12-16T14:07:24.282Z debug event/listener.go:459 registered new event parser {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StopEstimation"} -2023-12-16T14:07:24.282Z debug event/listener.go:496 registered new event handler {"contract": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "event_type": "StopEstimation"} -2023-12-16T14:07:24.282Z info frostfs-node/main.go:75 morph notifications service has been successfully initialized -2023-12-16T14:07:24.283Z info frostfs-node/main.go:114 starting NATS service... -2023-12-16T14:07:24.283Z info frostfs-node/main.go:118 NATS service started successfully -2023-12-16T14:07:24.283Z info frostfs-node/main.go:114 starting gRPC service... -2023-12-16T14:07:24.283Z info frostfs-node/main.go:114 starting notary service... -2023-12-16T14:07:24.283Z info frostfs-node/grpc.go:103 start listening gRPC endpoint {"endpoint": "[::]:8080"} -2023-12-16T14:07:24.294Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7105, "tx_hash": "5626481c70a296ac05785c074d61636952068e306655152914129d03dd316b50"} -2023-12-16T14:07:24.295Z INFO Error encountered with rpc request {"code": -100, "cause": "failed to locate application log: key not found", "method": "getapplicationlog", "params": "[5626481c70a296ac05785c074d61636952068e306655152914129d03dd316b50 Application]"} -2023-12-16T14:07:24.812Z INFO sending PrepareRequest {"height": 7103, "view": 0} -2023-12-16T14:07:24.812Z INFO sending Commit {"height": 7103, "view": 0} -2023-12-16T14:07:24.813Z INFO approving block {"height": 7103, "hash": "16a4430a501bc98d42458ed4652df5946d575aed655abe27c97479c86e751e78", "tx_count": 1, "merkle": "506b31dd039d121429155566308e06526963614d075c7805ac96a2701c482656", "prev": "ae1455418f6630abfcc5f3e3f361562fe662cd3970d28b26b2732296ac755a26"} -2023-12-16T14:07:24.820Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7102, "blockHeight": 7102, "took": "69.104582ms"} -2023-12-16T14:07:24.821Z INFO initializing dbft {"height": 7104, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:25.304Z info frostfs-node/main.go:118 notary service started successfully -2023-12-16T14:07:25.304Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-16T14:07:25.325Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 7200, "fallback_valid_for": 40, "tx_hash": "c501187fa75fd3f4a5f2bedf20815bb053f5033b36c8be5e08f87ae9b9e9bc01"} -2023-12-16T14:07:25.325Z info frostfs-node/main.go:145 application started {"version": "v0.36.0"} -2023-12-16T14:07:25.325Z info frostfs-node/main.go:114 starting morph notification service... -2023-12-16T14:07:25.325Z info frostfs-node/main.go:114 starting control service... -2023-12-16T14:07:25.325Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:07:25.327Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-16T14:07:25.330Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:07:25.334Z info netmap/process_peers.go:65 approving network map candidate {"key": "022bb4041c50d607ff871dec7e4cd7778388e0ea6849d84ccbd9aa8f32e16a8131"} -2023-12-16T14:07:25.782Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 7103, "blockHeight": 7103, "took": "29.920134ms"} -2023-12-16T14:07:25.813Z INFO sending PrepareRequest {"height": 7104, "view": 0} -2023-12-16T14:07:25.814Z INFO sending Commit {"height": 7104, "view": 0} -2023-12-16T14:07:25.815Z INFO approving block {"height": 7104, "hash": "6b217aca021634d0b1966768129c4a4d2cc56abc8270f6eee2ccec7ddb0023bd", "tx_count": 1, "merkle": "2729e84df32446fb56011ed8ccba23dc0322d2a2d3851ae90e82f695dc228f8a", "prev": "16a4430a501bc98d42458ed4652df5946d575aed655abe27c97479c86e751e78"} -2023-12-16T14:07:25.829Z INFO initializing dbft {"height": 7105, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:25.830Z debug event/listener.go:330 event parser not set {"script hash LE": "a9dc350d936b140f93ecc85999e2392d915b8989", "event type": "AddPeerSuccess"} -2023-12-16T14:07:25.831Z debug frostfs-node/morph.go:229 new block {"index": 7104} -2023-12-16T14:07:26.792Z INFO persisted to disk {"blocks": 1, "keys": 37, "headerHeight": 7104, "blockHeight": 7104, "took": "39.025666ms"} -2023-12-16T14:07:26.816Z INFO sending PrepareRequest {"height": 7105, "view": 0} -2023-12-16T14:07:26.816Z INFO sending Commit {"height": 7105, "view": 0} -2023-12-16T14:07:26.817Z INFO approving block {"height": 7105, "hash": "372d557673b4c43b75dad4d2b34560afb0dfcfaa5a11f75713dc1f29e6b582dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b217aca021634d0b1966768129c4a4d2cc56abc8270f6eee2ccec7ddb0023bd"} -2023-12-16T14:07:26.818Z INFO initializing dbft {"height": 7106, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:26.819Z debug frostfs-node/morph.go:229 new block {"index": 7105} -2023-12-16T14:07:27.809Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7105, "blockHeight": 7105, "took": "55.480381ms"} -2023-12-16T14:07:27.818Z INFO sending PrepareRequest {"height": 7106, "view": 0} -2023-12-16T14:07:27.818Z INFO sending Commit {"height": 7106, "view": 0} -2023-12-16T14:07:27.818Z INFO approving block {"height": 7106, "hash": "1049f42eb0d8ea659b5e0c4323f57ea8e7bacfeb79fc2c0117920bd0c162795b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "372d557673b4c43b75dad4d2b34560afb0dfcfaa5a11f75713dc1f29e6b582dd"} -2023-12-16T14:07:27.820Z INFO initializing dbft {"height": 7107, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:27.821Z debug frostfs-node/morph.go:229 new block {"index": 7106} -2023-12-16T14:07:28.028Z info frostfs-http-gw/app.go:152 add connection {"address": "grpc://localhost:8080", "weight": 1, "priority": 1} -2023-12-16T14:07:28.071Z debug session/executor.go:31 serving request... {"component": "SessionService", "request": "Create"} -2023-12-16T14:07:28.092Z info frostfs-http-gw/app.go:327 starting application {"app_name": "frostfs-http-gw", "version": "v0.27.0"} -2023-12-16T14:07:28.093Z info frostfs-http-gw/app.go:450 added path /upload/{cid} -2023-12-16T14:07:28.093Z info frostfs-http-gw/app.go:453 added path /get/{cid}/{oid} -2023-12-16T14:07:28.093Z info frostfs-http-gw/app.go:456 added path /get_by_attribute/{cid}/{attr_key}/{attr_val:*} -2023-12-16T14:07:28.093Z info frostfs-http-gw/app.go:458 added path /zip/{cid}/{prefix} -2023-12-16T14:07:28.094Z info frostfs-http-gw/app.go:499 add server {"address": "0.0.0.0:8081", "tls enabled": false, "tls cert": "", "tls key": ""} -2023-12-16T14:07:28.095Z info frostfs-http-gw/app.go:350 starting server {"address": "0.0.0.0:8081"} -2023-12-16T14:07:28.093Z info metrics/service.go:33 service hasn't started since it's disabled {"service": "Pprof"} -2023-12-16T14:07:28.094Z info metrics/service.go:27 service is running {"service": "Prometheus", "endpoint": "localhost:8083"} -2023-12-16T14:07:28.118Z info s3-gw/app.go:239 using credentials {"FrostFS": "0312fe65b101565de74eedf477afb43417ff5f795732506cfddc8e044c5a030d76"} -2023-12-16T14:07:28.123Z info s3-gw/app_settings.go:175 added connection peer {"address": "localhost:8080", "weight": 1} -2023-12-16T14:07:28.123Z warn s3-gw/app_settings.go:163 skip, empty address -2023-12-16T14:07:28.157Z debug session/executor.go:31 serving request... {"component": "SessionService", "request": "Create"} -2023-12-16T14:07:28.191Z info s3-gw/app.go:123 init tree service {"endpoints": ["localhost:8080"]} -2023-12-16T14:07:28.195Z warn handler/api.go:69 notificator is disabled, s3 won't produce notification events -2023-12-16T14:07:28.195Z warn metrics/app.go:21 metrics are disabled -2023-12-16T14:07:28.198Z info s3-gw/app.go:502 add server {"address": "0.0.0.0:8084", "tls enabled": false, "tls cert": "", "tls key": ""} -2023-12-16T14:07:28.198Z info s3-gw/app.go:360 application started {"name": "frostfs-s3-gw", "version": "v0.27.0"} -2023-12-16T14:07:28.198Z info s3-gw/app.go:380 fetch domains, prepare to use API {"domains": []} -2023-12-16T14:07:28.213Z info s3-gw/service.go:27 service hasn't started since it's disabled {"service": "Pprof"} -2023-12-16T14:07:28.213Z info s3-gw/service.go:27 service hasn't started since it's disabled {"service": "Prometheus"} -2023-12-16T14:07:28.213Z info s3-gw/app.go:393 starting server {"address": "0.0.0.0:8084"} -2023-12-16T14:07:28.773Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7106, "blockHeight": 7106, "took": "19.202821ms"} -2023-12-16T14:07:28.819Z INFO sending PrepareRequest {"height": 7107, "view": 0} -2023-12-16T14:07:28.819Z INFO sending Commit {"height": 7107, "view": 0} -2023-12-16T14:07:28.820Z INFO approving block {"height": 7107, "hash": "5fa7b115d8b2f779f31a39be5b2c268903e624cf21338a93fac296490c45962d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1049f42eb0d8ea659b5e0c4323f57ea8e7bacfeb79fc2c0117920bd0c162795b"} -2023-12-16T14:07:28.821Z INFO initializing dbft {"height": 7108, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:28.822Z debug frostfs-node/morph.go:229 new block {"index": 7107} -2023-12-16T14:07:29.799Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7107, "blockHeight": 7107, "took": "44.027052ms"} -2023-12-16T14:07:29.821Z INFO sending PrepareRequest {"height": 7108, "view": 0} -2023-12-16T14:07:29.821Z INFO sending Commit {"height": 7108, "view": 0} -2023-12-16T14:07:29.822Z INFO approving block {"height": 7108, "hash": "3c1567b98f310061b2bfec038cbe2cccc4a7af6143e9b1f50195df37158bca43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5fa7b115d8b2f779f31a39be5b2c268903e624cf21338a93fac296490c45962d"} -2023-12-16T14:07:29.823Z INFO initializing dbft {"height": 7109, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:29.824Z debug frostfs-node/morph.go:229 new block {"index": 7108} -2023-12-16T14:07:30.774Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7108, "blockHeight": 7108, "took": "18.97754ms"} -2023-12-16T14:07:30.822Z INFO sending PrepareRequest {"height": 7109, "view": 0} -2023-12-16T14:07:30.823Z INFO sending Commit {"height": 7109, "view": 0} -2023-12-16T14:07:30.823Z INFO approving block {"height": 7109, "hash": "bfda67652681cc0a3093710735ceb829a0008fe634d852f1efdb0b4ac1605ee3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c1567b98f310061b2bfec038cbe2cccc4a7af6143e9b1f50195df37158bca43"} -2023-12-16T14:07:30.825Z INFO initializing dbft {"height": 7110, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:30.825Z debug frostfs-node/morph.go:229 new block {"index": 7109} -2023-12-16T14:07:31.800Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7109, "blockHeight": 7109, "took": "44.361223ms"} -2023-12-16T14:07:31.824Z INFO sending PrepareRequest {"height": 7110, "view": 0} -2023-12-16T14:07:31.825Z INFO sending Commit {"height": 7110, "view": 0} -2023-12-16T14:07:31.825Z INFO approving block {"height": 7110, "hash": "29554b7ad1645a295bae8c36568e5f22a450ae00cb2ba55277e62db1602e5b5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfda67652681cc0a3093710735ceb829a0008fe634d852f1efdb0b4ac1605ee3"} -2023-12-16T14:07:31.827Z INFO initializing dbft {"height": 7111, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:31.828Z debug frostfs-node/morph.go:229 new block {"index": 7110} -2023-12-16T14:07:32.826Z INFO sending PrepareRequest {"height": 7111, "view": 0} -2023-12-16T14:07:32.826Z INFO sending Commit {"height": 7111, "view": 0} -2023-12-16T14:07:32.826Z INFO approving block {"height": 7111, "hash": "a52bdb957965669c99f794e1b598732281e66c998290ecd2e3f4c75d97895b38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29554b7ad1645a295bae8c36568e5f22a450ae00cb2ba55277e62db1602e5b5b"} -2023-12-16T14:07:32.828Z INFO initializing dbft {"height": 7112, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:32.828Z debug frostfs-node/morph.go:229 new block {"index": 7111} -2023-12-16T14:07:32.913Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7110, "blockHeight": 7110, "took": "155.499776ms"} -2023-12-16T14:07:33.828Z INFO sending PrepareRequest {"height": 7112, "view": 0} -2023-12-16T14:07:33.828Z INFO sending Commit {"height": 7112, "view": 0} -2023-12-16T14:07:33.829Z INFO approving block {"height": 7112, "hash": "a5f953b8906fa63d7f03440c300a037096fcbb7749844ab2014e38dbb095ef05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a52bdb957965669c99f794e1b598732281e66c998290ecd2e3f4c75d97895b38"} -2023-12-16T14:07:33.830Z INFO initializing dbft {"height": 7113, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:33.831Z debug frostfs-node/morph.go:229 new block {"index": 7112} -2023-12-16T14:07:33.882Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7111, "blockHeight": 7111, "took": "123.806679ms"} -2023-12-16T14:07:34.829Z INFO sending PrepareRequest {"height": 7113, "view": 0} -2023-12-16T14:07:34.830Z INFO sending Commit {"height": 7113, "view": 0} -2023-12-16T14:07:34.830Z INFO approving block {"height": 7113, "hash": "f7e058737543fc5123ce0389a44707e47cf445d6d901c2e9647690e901bba203", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5f953b8906fa63d7f03440c300a037096fcbb7749844ab2014e38dbb095ef05"} -2023-12-16T14:07:34.831Z INFO initializing dbft {"height": 7114, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:34.832Z debug frostfs-node/morph.go:229 new block {"index": 7113} -2023-12-16T14:07:34.893Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7112, "blockHeight": 7112, "took": "133.713738ms"} -2023-12-16T14:07:35.831Z INFO sending PrepareRequest {"height": 7114, "view": 0} -2023-12-16T14:07:35.832Z INFO sending Commit {"height": 7114, "view": 0} -2023-12-16T14:07:35.832Z INFO approving block {"height": 7114, "hash": "19157d5ef45823cee817d3f7a05fdc8f3f76d723ca1a76ef7953b5afd07a5d36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7e058737543fc5123ce0389a44707e47cf445d6d901c2e9647690e901bba203"} -2023-12-16T14:07:35.833Z INFO initializing dbft {"height": 7115, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:35.834Z debug frostfs-node/morph.go:229 new block {"index": 7114} -2023-12-16T14:07:35.850Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7113, "blockHeight": 7113, "took": "89.675655ms"} -2023-12-16T14:07:36.822Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7114, "blockHeight": 7114, "took": "60.932039ms"} -2023-12-16T14:07:36.834Z INFO sending PrepareRequest {"height": 7115, "view": 0} -2023-12-16T14:07:36.834Z INFO sending Commit {"height": 7115, "view": 0} -2023-12-16T14:07:36.834Z INFO approving block {"height": 7115, "hash": "33a2d74e4e5494d166f695935b6d3df3a11f33a9732c99682efddd7b46858cbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19157d5ef45823cee817d3f7a05fdc8f3f76d723ca1a76ef7953b5afd07a5d36"} -2023-12-16T14:07:36.836Z INFO initializing dbft {"height": 7116, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:36.836Z debug frostfs-node/morph.go:229 new block {"index": 7115} -2023-12-16T14:07:37.791Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7115, "blockHeight": 7115, "took": "29.049862ms"} -2023-12-16T14:07:37.836Z INFO sending PrepareRequest {"height": 7116, "view": 0} -2023-12-16T14:07:37.836Z INFO sending Commit {"height": 7116, "view": 0} -2023-12-16T14:07:37.837Z INFO approving block {"height": 7116, "hash": "24504e82cf49f773db6ebada2c83345541e1672b3417c8a0052335b1fdd6f339", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33a2d74e4e5494d166f695935b6d3df3a11f33a9732c99682efddd7b46858cbd"} -2023-12-16T14:07:37.839Z INFO initializing dbft {"height": 7117, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:37.840Z debug frostfs-node/morph.go:229 new block {"index": 7116} -2023-12-16T14:07:38.784Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7116, "blockHeight": 7116, "took": "20.910493ms"} -2023-12-16T14:07:38.838Z INFO sending PrepareRequest {"height": 7117, "view": 0} -2023-12-16T14:07:38.838Z INFO sending Commit {"height": 7117, "view": 0} -2023-12-16T14:07:38.839Z INFO approving block {"height": 7117, "hash": "bcc933daf739be64d501acf1aa35885f52a7f935d2afbe359530f24a09d88b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24504e82cf49f773db6ebada2c83345541e1672b3417c8a0052335b1fdd6f339"} -2023-12-16T14:07:38.841Z INFO initializing dbft {"height": 7118, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:38.841Z debug frostfs-node/morph.go:229 new block {"index": 7117} -2023-12-16T14:07:39.787Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7117, "blockHeight": 7117, "took": "22.874535ms"} -2023-12-16T14:07:39.840Z INFO sending PrepareRequest {"height": 7118, "view": 0} -2023-12-16T14:07:39.841Z INFO sending Commit {"height": 7118, "view": 0} -2023-12-16T14:07:39.841Z INFO approving block {"height": 7118, "hash": "384b9adbfe7fbc99432b809d4ceccdbb0d7dc635339669b1c69bbe4866cc3bc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcc933daf739be64d501acf1aa35885f52a7f935d2afbe359530f24a09d88b39"} -2023-12-16T14:07:39.843Z INFO initializing dbft {"height": 7119, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:39.844Z debug frostfs-node/morph.go:229 new block {"index": 7118} -2023-12-16T14:07:40.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7118, "blockHeight": 7118, "took": "29.427946ms"} -2023-12-16T14:07:40.843Z INFO sending PrepareRequest {"height": 7119, "view": 0} -2023-12-16T14:07:40.844Z INFO sending Commit {"height": 7119, "view": 0} -2023-12-16T14:07:40.844Z INFO approving block {"height": 7119, "hash": "262eeb5d23a9258cea1965f99476fac3f9dbe643237a6ca50302d8ce9dacee6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "384b9adbfe7fbc99432b809d4ceccdbb0d7dc635339669b1c69bbe4866cc3bc0"} -2023-12-16T14:07:40.846Z INFO initializing dbft {"height": 7120, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:40.847Z debug frostfs-node/morph.go:229 new block {"index": 7119} -2023-12-16T14:07:41.791Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7119, "blockHeight": 7119, "took": "25.066657ms"} -2023-12-16T14:07:41.846Z INFO sending PrepareRequest {"height": 7120, "view": 0} -2023-12-16T14:07:41.847Z INFO sending Commit {"height": 7120, "view": 0} -2023-12-16T14:07:41.847Z INFO approving block {"height": 7120, "hash": "e246c31788fbbb3ef38ffbeb9450148a7a0fbee354db5cb0696823f74ff021be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "262eeb5d23a9258cea1965f99476fac3f9dbe643237a6ca50302d8ce9dacee6f"} -2023-12-16T14:07:41.849Z INFO initializing dbft {"height": 7121, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:41.850Z debug frostfs-node/morph.go:229 new block {"index": 7120} -2023-12-16T14:07:42.800Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7120, "blockHeight": 7120, "took": "33.083664ms"} -2023-12-16T14:07:42.849Z INFO sending PrepareRequest {"height": 7121, "view": 0} -2023-12-16T14:07:42.849Z INFO sending Commit {"height": 7121, "view": 0} -2023-12-16T14:07:42.850Z INFO approving block {"height": 7121, "hash": "0841582b4ac0bfa2dcf0a191f32c713c91ef59e6c9b116bda45dbb48c1dfd4ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e246c31788fbbb3ef38ffbeb9450148a7a0fbee354db5cb0696823f74ff021be"} -2023-12-16T14:07:42.852Z INFO initializing dbft {"height": 7122, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:42.853Z debug frostfs-node/morph.go:229 new block {"index": 7121} -2023-12-16T14:07:43.785Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7121, "blockHeight": 7121, "took": "18.117262ms"} -2023-12-16T14:07:43.852Z INFO sending PrepareRequest {"height": 7122, "view": 0} -2023-12-16T14:07:43.852Z INFO sending Commit {"height": 7122, "view": 0} -2023-12-16T14:07:43.852Z INFO approving block {"height": 7122, "hash": "af3d06f32ffdc7779abef7077492793443a212cd5448195b290b919223eb913c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0841582b4ac0bfa2dcf0a191f32c713c91ef59e6c9b116bda45dbb48c1dfd4ed"} -2023-12-16T14:07:43.854Z INFO initializing dbft {"height": 7123, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:43.855Z debug frostfs-node/morph.go:229 new block {"index": 7122} -2023-12-16T14:07:44.789Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7122, "blockHeight": 7122, "took": "21.322354ms"} -2023-12-16T14:07:44.854Z INFO sending PrepareRequest {"height": 7123, "view": 0} -2023-12-16T14:07:44.854Z INFO sending Commit {"height": 7123, "view": 0} -2023-12-16T14:07:44.855Z INFO approving block {"height": 7123, "hash": "643024d46af2ad47eb32e4570162a17591845769ee6410ca24a48416bea43bd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af3d06f32ffdc7779abef7077492793443a212cd5448195b290b919223eb913c"} -2023-12-16T14:07:44.857Z INFO initializing dbft {"height": 7124, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:44.858Z debug frostfs-node/morph.go:229 new block {"index": 7123} -2023-12-16T14:07:45.795Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7123, "blockHeight": 7123, "took": "26.396158ms"} -2023-12-16T14:07:45.857Z INFO sending PrepareRequest {"height": 7124, "view": 0} -2023-12-16T14:07:45.857Z INFO sending Commit {"height": 7124, "view": 0} -2023-12-16T14:07:45.857Z INFO approving block {"height": 7124, "hash": "dcfaab75a44a8eb95cb0bd019559ec2eb683cdd2718c21915b7b632d8c486720", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "643024d46af2ad47eb32e4570162a17591845769ee6410ca24a48416bea43bd7"} -2023-12-16T14:07:45.860Z INFO initializing dbft {"height": 7125, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:45.861Z debug frostfs-node/morph.go:229 new block {"index": 7124} -2023-12-16T14:07:46.822Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7124, "blockHeight": 7124, "took": "51.735021ms"} -2023-12-16T14:07:46.859Z INFO sending PrepareRequest {"height": 7125, "view": 0} -2023-12-16T14:07:46.860Z INFO sending Commit {"height": 7125, "view": 0} -2023-12-16T14:07:46.860Z INFO approving block {"height": 7125, "hash": "40ab03d00ebdf1026eb2f042315c1b1b030cf0a383595b890227052fdf94d6d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcfaab75a44a8eb95cb0bd019559ec2eb683cdd2718c21915b7b632d8c486720"} -2023-12-16T14:07:46.862Z INFO initializing dbft {"height": 7126, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:46.863Z debug frostfs-node/morph.go:229 new block {"index": 7125} -2023-12-16T14:07:47.788Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7125, "blockHeight": 7125, "took": "16.843579ms"} -2023-12-16T14:07:47.861Z INFO sending PrepareRequest {"height": 7126, "view": 0} -2023-12-16T14:07:47.861Z INFO sending Commit {"height": 7126, "view": 0} -2023-12-16T14:07:47.862Z INFO approving block {"height": 7126, "hash": "a2a72e4113161e1be8cdc60e3d2a164535b087dbbb5c7b10702cfb81f1171068", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40ab03d00ebdf1026eb2f042315c1b1b030cf0a383595b890227052fdf94d6d8"} -2023-12-16T14:07:47.864Z INFO initializing dbft {"height": 7127, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:47.866Z debug frostfs-node/morph.go:229 new block {"index": 7126} -2023-12-16T14:07:48.787Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7126, "blockHeight": 7126, "took": "15.279119ms"} -2023-12-16T14:07:48.864Z INFO sending PrepareRequest {"height": 7127, "view": 0} -2023-12-16T14:07:48.864Z INFO sending Commit {"height": 7127, "view": 0} -2023-12-16T14:07:48.864Z INFO approving block {"height": 7127, "hash": "1511b38c3a2c013da0aefa3000d48cfdd896cd41e05ae2e6e0b3c3e422a73861", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2a72e4113161e1be8cdc60e3d2a164535b087dbbb5c7b10702cfb81f1171068"} -2023-12-16T14:07:48.867Z INFO initializing dbft {"height": 7128, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:48.868Z debug frostfs-node/morph.go:229 new block {"index": 7127} -2023-12-16T14:07:49.790Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7127, "blockHeight": 7127, "took": "17.62028ms"} -2023-12-16T14:07:49.866Z INFO sending PrepareRequest {"height": 7128, "view": 0} -2023-12-16T14:07:49.867Z INFO sending Commit {"height": 7128, "view": 0} -2023-12-16T14:07:49.867Z INFO approving block {"height": 7128, "hash": "e0feb5a07e8dd2df9c841f9ca791aa315984527e836d67dbcb0cc958324e1052", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1511b38c3a2c013da0aefa3000d48cfdd896cd41e05ae2e6e0b3c3e422a73861"} -2023-12-16T14:07:49.869Z INFO initializing dbft {"height": 7129, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:49.870Z debug frostfs-node/morph.go:229 new block {"index": 7128} -2023-12-16T14:07:50.795Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7128, "blockHeight": 7128, "took": "22.045896ms"} -2023-12-16T14:07:50.869Z INFO sending PrepareRequest {"height": 7129, "view": 0} -2023-12-16T14:07:50.869Z INFO sending Commit {"height": 7129, "view": 0} -2023-12-16T14:07:50.870Z INFO approving block {"height": 7129, "hash": "bfa9c314b61dce7256dcdc2f0a1d5dc0cd49eeb76c8fee521a8d16215c8fc6e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0feb5a07e8dd2df9c841f9ca791aa315984527e836d67dbcb0cc958324e1052"} -2023-12-16T14:07:50.872Z INFO initializing dbft {"height": 7130, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:50.873Z debug frostfs-node/morph.go:229 new block {"index": 7129} -2023-12-16T14:07:51.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7129, "blockHeight": 7129, "took": "27.055088ms"} -2023-12-16T14:07:51.871Z INFO sending PrepareRequest {"height": 7130, "view": 0} -2023-12-16T14:07:51.872Z INFO sending Commit {"height": 7130, "view": 0} -2023-12-16T14:07:51.872Z INFO approving block {"height": 7130, "hash": "65596cb15c75cc2d99665def21c105797253054905cb925d6734cd984d434d98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfa9c314b61dce7256dcdc2f0a1d5dc0cd49eeb76c8fee521a8d16215c8fc6e5"} -2023-12-16T14:07:51.874Z INFO initializing dbft {"height": 7131, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:51.875Z debug frostfs-node/morph.go:229 new block {"index": 7130} -2023-12-16T14:07:52.820Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7130, "blockHeight": 7130, "took": "46.062962ms"} -2023-12-16T14:07:52.874Z INFO sending PrepareRequest {"height": 7131, "view": 0} -2023-12-16T14:07:52.875Z INFO sending Commit {"height": 7131, "view": 0} -2023-12-16T14:07:52.875Z INFO approving block {"height": 7131, "hash": "297de0c92a98958e27130aec4cba2e03d2a009045b8f16a6cb0cb865f5d8d68e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65596cb15c75cc2d99665def21c105797253054905cb925d6734cd984d434d98"} -2023-12-16T14:07:52.878Z INFO initializing dbft {"height": 7132, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:52.879Z debug frostfs-node/morph.go:229 new block {"index": 7131} -2023-12-16T14:07:53.830Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7131, "blockHeight": 7131, "took": "54.985769ms"} -2023-12-16T14:07:53.877Z INFO sending PrepareRequest {"height": 7132, "view": 0} -2023-12-16T14:07:53.877Z INFO sending Commit {"height": 7132, "view": 0} -2023-12-16T14:07:53.877Z INFO approving block {"height": 7132, "hash": "0a6dbbf5a4474c19a0c43d64dc52ccb06204ec1c7593b4f85387b04652ceaf2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "297de0c92a98958e27130aec4cba2e03d2a009045b8f16a6cb0cb865f5d8d68e"} -2023-12-16T14:07:53.879Z INFO initializing dbft {"height": 7133, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:53.880Z debug frostfs-node/morph.go:229 new block {"index": 7132} -2023-12-16T14:07:54.796Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7132, "blockHeight": 7132, "took": "19.783659ms"} -2023-12-16T14:07:54.878Z INFO sending PrepareRequest {"height": 7133, "view": 0} -2023-12-16T14:07:54.878Z INFO sending Commit {"height": 7133, "view": 0} -2023-12-16T14:07:54.879Z INFO approving block {"height": 7133, "hash": "21760c93484f1aef35c0da3d991c1780acd09e83f13d266ee9da2ec8896ebb19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a6dbbf5a4474c19a0c43d64dc52ccb06204ec1c7593b4f85387b04652ceaf2d"} -2023-12-16T14:07:54.880Z INFO initializing dbft {"height": 7134, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:54.882Z debug frostfs-node/morph.go:229 new block {"index": 7133} -2023-12-16T14:07:55.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7133, "blockHeight": 7133, "took": "28.105246ms"} -2023-12-16T14:07:55.880Z INFO sending PrepareRequest {"height": 7134, "view": 0} -2023-12-16T14:07:55.880Z INFO sending Commit {"height": 7134, "view": 0} -2023-12-16T14:07:55.881Z INFO approving block {"height": 7134, "hash": "1600dd5f4aadbb45547f8493347b11892da9f0af0f790681b935c35f7edbbcf4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21760c93484f1aef35c0da3d991c1780acd09e83f13d266ee9da2ec8896ebb19"} -2023-12-16T14:07:55.883Z INFO initializing dbft {"height": 7135, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:55.884Z debug frostfs-node/morph.go:229 new block {"index": 7134} -2023-12-16T14:07:56.796Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7134, "blockHeight": 7134, "took": "18.06777ms"} -2023-12-16T14:07:56.882Z INFO sending PrepareRequest {"height": 7135, "view": 0} -2023-12-16T14:07:56.882Z INFO sending Commit {"height": 7135, "view": 0} -2023-12-16T14:07:56.883Z INFO approving block {"height": 7135, "hash": "01804a6b008faa01ebd2476a253fc4e51c6fd8c9f9914a57d1b85cc1ef4f3e4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1600dd5f4aadbb45547f8493347b11892da9f0af0f790681b935c35f7edbbcf4"} -2023-12-16T14:07:56.884Z INFO initializing dbft {"height": 7136, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:56.885Z debug frostfs-node/morph.go:229 new block {"index": 7135} -2023-12-16T14:07:57.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7135, "blockHeight": 7135, "took": "27.700751ms"} -2023-12-16T14:07:57.890Z INFO sending PrepareRequest {"height": 7136, "view": 0} -2023-12-16T14:07:57.890Z INFO sending Commit {"height": 7136, "view": 0} -2023-12-16T14:07:57.891Z INFO approving block {"height": 7136, "hash": "829c7aeb2a1fed2f2b6c17f3c9226778e7b6e31757ead1c1b05fe93146f20365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01804a6b008faa01ebd2476a253fc4e51c6fd8c9f9914a57d1b85cc1ef4f3e4c"} -2023-12-16T14:07:57.893Z INFO initializing dbft {"height": 7137, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:57.894Z debug frostfs-node/morph.go:229 new block {"index": 7136} -2023-12-16T14:07:58.795Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7136, "blockHeight": 7136, "took": "15.998544ms"} -2023-12-16T14:07:58.893Z INFO sending PrepareRequest {"height": 7137, "view": 0} -2023-12-16T14:07:58.893Z INFO sending Commit {"height": 7137, "view": 0} -2023-12-16T14:07:58.894Z INFO approving block {"height": 7137, "hash": "c2ac332f60ed1b90d8c18eae3dd0f7991f94d29c43fa9c16cf6f8134b0eb8dde", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "829c7aeb2a1fed2f2b6c17f3c9226778e7b6e31757ead1c1b05fe93146f20365"} -2023-12-16T14:07:58.896Z INFO initializing dbft {"height": 7138, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:58.898Z debug frostfs-node/morph.go:229 new block {"index": 7137} -2023-12-16T14:07:59.820Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7137, "blockHeight": 7137, "took": "40.28098ms"} -2023-12-16T14:07:59.895Z INFO sending PrepareRequest {"height": 7138, "view": 0} -2023-12-16T14:07:59.896Z INFO sending Commit {"height": 7138, "view": 0} -2023-12-16T14:07:59.896Z INFO approving block {"height": 7138, "hash": "c47dc7b505810cf58d5bf07d8723cc81fe4e70cb679cc65ca16c7f1b4f3ecfca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2ac332f60ed1b90d8c18eae3dd0f7991f94d29c43fa9c16cf6f8134b0eb8dde"} -2023-12-16T14:07:59.898Z INFO initializing dbft {"height": 7139, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:07:59.899Z debug frostfs-node/morph.go:229 new block {"index": 7138} -2023-12-16T14:08:00.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7138, "blockHeight": 7138, "took": "77.62745ms"} -2023-12-16T14:08:00.899Z INFO sending PrepareRequest {"height": 7139, "view": 0} -2023-12-16T14:08:00.900Z INFO sending Commit {"height": 7139, "view": 0} -2023-12-16T14:08:00.901Z INFO approving block {"height": 7139, "hash": "9465ede639102730ac7eff7c400fb59bb9b9bcea935e5478e8e4e4584a9df914", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c47dc7b505810cf58d5bf07d8723cc81fe4e70cb679cc65ca16c7f1b4f3ecfca"} -2023-12-16T14:08:00.903Z INFO initializing dbft {"height": 7140, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:00.904Z debug frostfs-node/morph.go:229 new block {"index": 7139} -2023-12-16T14:08:01.817Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7139, "blockHeight": 7139, "took": "35.296991ms"} -2023-12-16T14:08:01.902Z INFO sending PrepareRequest {"height": 7140, "view": 0} -2023-12-16T14:08:01.903Z INFO sending Commit {"height": 7140, "view": 0} -2023-12-16T14:08:01.903Z INFO approving block {"height": 7140, "hash": "ef8fcebfebd21ea0a929a12cc490e0f36a5cf64a06e66c828a6e7a4399a0f80c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9465ede639102730ac7eff7c400fb59bb9b9bcea935e5478e8e4e4584a9df914"} -2023-12-16T14:08:01.906Z INFO initializing dbft {"height": 7141, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:01.906Z debug frostfs-node/morph.go:229 new block {"index": 7140} -2023-12-16T14:08:02.829Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7140, "blockHeight": 7140, "took": "22.969578ms"} -2023-12-16T14:08:02.913Z INFO sending PrepareRequest {"height": 7141, "view": 0} -2023-12-16T14:08:02.913Z INFO sending Commit {"height": 7141, "view": 0} -2023-12-16T14:08:02.914Z INFO approving block {"height": 7141, "hash": "1ed2ceb1eb4459745b4f0799bcd55aaa5c712424e16888c6f241c6611e3e15b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef8fcebfebd21ea0a929a12cc490e0f36a5cf64a06e66c828a6e7a4399a0f80c"} -2023-12-16T14:08:02.916Z INFO initializing dbft {"height": 7142, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:02.916Z debug frostfs-node/morph.go:229 new block {"index": 7141} -2023-12-16T14:08:03.862Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7141, "blockHeight": 7141, "took": "55.178627ms"} -2023-12-16T14:08:03.916Z INFO sending PrepareRequest {"height": 7142, "view": 0} -2023-12-16T14:08:03.916Z INFO sending Commit {"height": 7142, "view": 0} -2023-12-16T14:08:03.917Z INFO approving block {"height": 7142, "hash": "186b59781603d63515fafd8b79977a7ded47533497187a9beea95237ea18c7a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ed2ceb1eb4459745b4f0799bcd55aaa5c712424e16888c6f241c6611e3e15b8"} -2023-12-16T14:08:03.919Z INFO initializing dbft {"height": 7143, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:03.920Z debug frostfs-node/morph.go:229 new block {"index": 7142} -2023-12-16T14:08:04.843Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7142, "blockHeight": 7142, "took": "35.6612ms"} -2023-12-16T14:08:04.919Z INFO sending PrepareRequest {"height": 7143, "view": 0} -2023-12-16T14:08:04.919Z INFO sending Commit {"height": 7143, "view": 0} -2023-12-16T14:08:04.919Z INFO approving block {"height": 7143, "hash": "bf6a9460ffc108c8f2a488fa5660e9ca301c8edda84113c8845fd192839061b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "186b59781603d63515fafd8b79977a7ded47533497187a9beea95237ea18c7a4"} -2023-12-16T14:08:04.921Z INFO initializing dbft {"height": 7144, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:04.922Z debug frostfs-node/morph.go:229 new block {"index": 7143} -2023-12-16T14:08:05.841Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7143, "blockHeight": 7143, "took": "32.877114ms"} -2023-12-16T14:08:05.921Z INFO sending PrepareRequest {"height": 7144, "view": 0} -2023-12-16T14:08:05.922Z INFO sending Commit {"height": 7144, "view": 0} -2023-12-16T14:08:05.922Z INFO approving block {"height": 7144, "hash": "1bb252d6f53a62789df7ef1bab1e50fa2b6f90b80b974e74a8ed977285a0d138", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf6a9460ffc108c8f2a488fa5660e9ca301c8edda84113c8845fd192839061b5"} -2023-12-16T14:08:05.925Z INFO initializing dbft {"height": 7145, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:05.926Z debug frostfs-node/morph.go:229 new block {"index": 7144} -2023-12-16T14:08:06.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7144, "blockHeight": 7144, "took": "25.168951ms"} -2023-12-16T14:08:06.924Z INFO sending PrepareRequest {"height": 7145, "view": 0} -2023-12-16T14:08:06.924Z INFO sending Commit {"height": 7145, "view": 0} -2023-12-16T14:08:06.924Z INFO approving block {"height": 7145, "hash": "4789f3b26c819acc3d8d0abbff5339a90f83fe2bfe96cb8667e160d7ea3ddd97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bb252d6f53a62789df7ef1bab1e50fa2b6f90b80b974e74a8ed977285a0d138"} -2023-12-16T14:08:06.927Z INFO initializing dbft {"height": 7146, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:06.928Z debug frostfs-node/morph.go:229 new block {"index": 7145} -2023-12-16T14:08:07.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7145, "blockHeight": 7145, "took": "37.409624ms"} -2023-12-16T14:08:07.925Z INFO sending PrepareRequest {"height": 7146, "view": 0} -2023-12-16T14:08:07.926Z INFO sending Commit {"height": 7146, "view": 0} -2023-12-16T14:08:07.926Z INFO approving block {"height": 7146, "hash": "c52426bfeba0ba31557042fc3b2c34d7cfc436650d4e5e901316336fc23b9356", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4789f3b26c819acc3d8d0abbff5339a90f83fe2bfe96cb8667e160d7ea3ddd97"} -2023-12-16T14:08:07.929Z INFO initializing dbft {"height": 7147, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:07.930Z debug frostfs-node/morph.go:229 new block {"index": 7146} -2023-12-16T14:08:08.927Z INFO sending PrepareRequest {"height": 7147, "view": 0} -2023-12-16T14:08:08.928Z INFO sending Commit {"height": 7147, "view": 0} -2023-12-16T14:08:08.928Z INFO approving block {"height": 7147, "hash": "fa37bb6d7bd9b35af822d11a4fc841550a07bfe2e854d5d12f773bb6aaa8bda2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c52426bfeba0ba31557042fc3b2c34d7cfc436650d4e5e901316336fc23b9356"} -2023-12-16T14:08:08.930Z INFO initializing dbft {"height": 7148, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:08.931Z debug frostfs-node/morph.go:229 new block {"index": 7147} -2023-12-16T14:08:08.944Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7146, "blockHeight": 7146, "took": "133.54262ms"} -2023-12-16T14:08:09.885Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7147, "blockHeight": 7147, "took": "73.667423ms"} -2023-12-16T14:08:09.930Z INFO sending PrepareRequest {"height": 7148, "view": 0} -2023-12-16T14:08:09.930Z INFO sending Commit {"height": 7148, "view": 0} -2023-12-16T14:08:09.931Z INFO approving block {"height": 7148, "hash": "457d52cd8a9d330bda12dda4e1e44405d51b4b5043d83b008e49dc1d20df66ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa37bb6d7bd9b35af822d11a4fc841550a07bfe2e854d5d12f773bb6aaa8bda2"} -2023-12-16T14:08:09.933Z INFO initializing dbft {"height": 7149, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:09.933Z debug frostfs-node/morph.go:229 new block {"index": 7148} -2023-12-16T14:08:10.932Z INFO sending PrepareRequest {"height": 7149, "view": 0} -2023-12-16T14:08:10.932Z INFO sending Commit {"height": 7149, "view": 0} -2023-12-16T14:08:10.933Z INFO approving block {"height": 7149, "hash": "6364098a99c9a1cf07de2fbe989ec0791db115119e8c9aef1a3ac8dc4a774782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "457d52cd8a9d330bda12dda4e1e44405d51b4b5043d83b008e49dc1d20df66ea"} -2023-12-16T14:08:10.935Z INFO initializing dbft {"height": 7150, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:10.936Z debug frostfs-node/morph.go:229 new block {"index": 7149} -2023-12-16T14:08:11.008Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7148, "blockHeight": 7148, "took": "195.357101ms"} -2023-12-16T14:08:11.865Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7149, "blockHeight": 7149, "took": "52.398646ms"} -2023-12-16T14:08:11.934Z INFO sending PrepareRequest {"height": 7150, "view": 0} -2023-12-16T14:08:11.935Z INFO sending Commit {"height": 7150, "view": 0} -2023-12-16T14:08:11.935Z INFO approving block {"height": 7150, "hash": "fa5559cde487a7a76bb363468a649d22b99d6932ad27b7c3c14faee18c6c6a8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6364098a99c9a1cf07de2fbe989ec0791db115119e8c9aef1a3ac8dc4a774782"} -2023-12-16T14:08:11.937Z INFO initializing dbft {"height": 7151, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:11.938Z debug frostfs-node/morph.go:229 new block {"index": 7150} -2023-12-16T14:08:11.954Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:08:12.001Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:08:12.001Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:08:12.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7150, "blockHeight": 7150, "took": "50.356039ms"} -2023-12-16T14:08:12.936Z INFO sending PrepareRequest {"height": 7151, "view": 0} -2023-12-16T14:08:12.936Z INFO sending Commit {"height": 7151, "view": 0} -2023-12-16T14:08:12.937Z INFO approving block {"height": 7151, "hash": "ab91f23a642b70de0933718b5269de9efca08afa64d79d0b5928ba23da1394ac", "tx_count": 2, "merkle": "9d1eb1416e52bb70fe629eba95fb90e7a3714278b1553d6a04f528fb9954f6ef", "prev": "fa5559cde487a7a76bb363468a649d22b99d6932ad27b7c3c14faee18c6c6a8a"} -2023-12-16T14:08:12.938Z INFO runtime log {"tx": "7d5e4f17db5d04db1029ea266579123edaa5bf1866f1609d6c27a89782dee8ff", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:08:12.939Z INFO runtime log {"tx": "7d5e4f17db5d04db1029ea266579123edaa5bf1866f1609d6c27a89782dee8ff", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:08:12.940Z INFO initializing dbft {"height": 7152, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:12.941Z debug frostfs-node/morph.go:229 new block {"index": 7151} -2023-12-16T14:08:13.938Z INFO sending PrepareRequest {"height": 7152, "view": 0} -2023-12-16T14:08:13.938Z INFO sending Commit {"height": 7152, "view": 0} -2023-12-16T14:08:13.939Z INFO approving block {"height": 7152, "hash": "a7d1861edbd84f870c7f4275db3dc63ae582795714fae888dc67aaa0b3f03824", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab91f23a642b70de0933718b5269de9efca08afa64d79d0b5928ba23da1394ac"} -2023-12-16T14:08:13.940Z INFO initializing dbft {"height": 7153, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:13.941Z debug frostfs-node/morph.go:229 new block {"index": 7152} -2023-12-16T14:08:14.041Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7151, "blockHeight": 7151, "took": "226.261334ms"} -2023-12-16T14:08:14.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7152, "blockHeight": 7152, "took": "29.179287ms"} -2023-12-16T14:08:14.940Z INFO sending PrepareRequest {"height": 7153, "view": 0} -2023-12-16T14:08:14.940Z INFO sending Commit {"height": 7153, "view": 0} -2023-12-16T14:08:14.941Z INFO approving block {"height": 7153, "hash": "f2728b5e88809d477135c0c6181ef0acd910a5ea4fd8cbeda8cd4ececc162dd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7d1861edbd84f870c7f4275db3dc63ae582795714fae888dc67aaa0b3f03824"} -2023-12-16T14:08:14.942Z INFO initializing dbft {"height": 7154, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:14.943Z debug frostfs-node/morph.go:229 new block {"index": 7153} -2023-12-16T14:08:15.854Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7153, "blockHeight": 7153, "took": "37.71618ms"} -2023-12-16T14:08:15.942Z INFO sending PrepareRequest {"height": 7154, "view": 0} -2023-12-16T14:08:15.942Z INFO sending Commit {"height": 7154, "view": 0} -2023-12-16T14:08:15.942Z INFO approving block {"height": 7154, "hash": "7069cdcdd18d6d7b3180531ceccbcbff3836994390d2dddc3adf30cbfd858e68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f2728b5e88809d477135c0c6181ef0acd910a5ea4fd8cbeda8cd4ececc162dd6"} -2023-12-16T14:08:15.944Z INFO initializing dbft {"height": 7155, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:15.945Z debug frostfs-node/morph.go:229 new block {"index": 7154} -2023-12-16T14:08:16.853Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7154, "blockHeight": 7154, "took": "35.188763ms"} -2023-12-16T14:08:16.943Z INFO sending PrepareRequest {"height": 7155, "view": 0} -2023-12-16T14:08:16.944Z INFO sending Commit {"height": 7155, "view": 0} -2023-12-16T14:08:16.944Z INFO approving block {"height": 7155, "hash": "ae02904a163ba9fe7dce931111ca808e9ece6e9b32847b90c203ea34a07b74b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7069cdcdd18d6d7b3180531ceccbcbff3836994390d2dddc3adf30cbfd858e68"} -2023-12-16T14:08:16.946Z INFO initializing dbft {"height": 7156, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:16.947Z debug frostfs-node/morph.go:229 new block {"index": 7155} -2023-12-16T14:08:17.843Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7155, "blockHeight": 7155, "took": "24.862176ms"} -2023-12-16T14:08:17.945Z INFO sending PrepareRequest {"height": 7156, "view": 0} -2023-12-16T14:08:17.945Z INFO sending Commit {"height": 7156, "view": 0} -2023-12-16T14:08:17.946Z INFO approving block {"height": 7156, "hash": "d6d7844095edebdfa524b37034103ed87025e30e5eaecb4c6d45b5fe7d417fdc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae02904a163ba9fe7dce931111ca808e9ece6e9b32847b90c203ea34a07b74b1"} -2023-12-16T14:08:17.949Z INFO initializing dbft {"height": 7157, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:17.950Z debug frostfs-node/morph.go:229 new block {"index": 7156} -2023-12-16T14:08:18.839Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7156, "blockHeight": 7156, "took": "19.96208ms"} -2023-12-16T14:08:18.947Z INFO sending PrepareRequest {"height": 7157, "view": 0} -2023-12-16T14:08:18.947Z INFO sending Commit {"height": 7157, "view": 0} -2023-12-16T14:08:18.948Z INFO approving block {"height": 7157, "hash": "10cc095ec5ddf1a0644fd11ec80feff0b01d1941ec9c58b6d7a88c2f135cb759", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6d7844095edebdfa524b37034103ed87025e30e5eaecb4c6d45b5fe7d417fdc"} -2023-12-16T14:08:18.950Z INFO initializing dbft {"height": 7158, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:18.952Z debug frostfs-node/morph.go:229 new block {"index": 7157} -2023-12-16T14:08:19.853Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7157, "blockHeight": 7157, "took": "33.200846ms"} -2023-12-16T14:08:19.949Z INFO sending PrepareRequest {"height": 7158, "view": 0} -2023-12-16T14:08:19.950Z INFO sending Commit {"height": 7158, "view": 0} -2023-12-16T14:08:19.950Z INFO approving block {"height": 7158, "hash": "027364170fe1643cf0d784ccdbe63737ab1c6909cace62fd205cddc949cd90c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10cc095ec5ddf1a0644fd11ec80feff0b01d1941ec9c58b6d7a88c2f135cb759"} -2023-12-16T14:08:19.953Z INFO initializing dbft {"height": 7159, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:19.954Z debug frostfs-node/morph.go:229 new block {"index": 7158} -2023-12-16T14:08:20.850Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7158, "blockHeight": 7158, "took": "29.444534ms"} -2023-12-16T14:08:20.951Z INFO sending PrepareRequest {"height": 7159, "view": 0} -2023-12-16T14:08:20.951Z INFO sending Commit {"height": 7159, "view": 0} -2023-12-16T14:08:20.951Z INFO approving block {"height": 7159, "hash": "868ae05959975220d50095f71aabab0466dcca54dd0c0240c7572bee82790f5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "027364170fe1643cf0d784ccdbe63737ab1c6909cace62fd205cddc949cd90c5"} -2023-12-16T14:08:20.954Z INFO initializing dbft {"height": 7160, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:20.954Z debug frostfs-node/morph.go:229 new block {"index": 7159} -2023-12-16T14:08:21.841Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7159, "blockHeight": 7159, "took": "19.871043ms"} -2023-12-16T14:08:21.952Z INFO sending PrepareRequest {"height": 7160, "view": 0} -2023-12-16T14:08:21.953Z INFO sending Commit {"height": 7160, "view": 0} -2023-12-16T14:08:21.953Z INFO approving block {"height": 7160, "hash": "562c1b3487358228636ed5e2b8fce642085c63f0e35fd266962717adad94522f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "868ae05959975220d50095f71aabab0466dcca54dd0c0240c7572bee82790f5e"} -2023-12-16T14:08:21.954Z INFO initializing dbft {"height": 7161, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:21.955Z debug frostfs-node/morph.go:229 new block {"index": 7160} -2023-12-16T14:08:21.961Z INFO runtime log {"tx": "8bca3dcc1d817bed90f1318fa2f22bb885c03c322f1da88507099540829f5784", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:08:22.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7160, "blockHeight": 7160, "took": "25.971713ms"} -2023-12-16T14:08:22.954Z INFO sending PrepareRequest {"height": 7161, "view": 0} -2023-12-16T14:08:22.955Z INFO sending Commit {"height": 7161, "view": 0} -2023-12-16T14:08:22.956Z INFO approving block {"height": 7161, "hash": "d57acc495349e1d94e27643f6c583ab1ac684f1027bd8e511d7f412a6dd40f3d", "tx_count": 1, "merkle": "00a18acf956466a4616d0f6a5801c429f7fa3c30a35b2f8b88797a87e420ddf5", "prev": "562c1b3487358228636ed5e2b8fce642085c63f0e35fd266962717adad94522f"} -2023-12-16T14:08:22.958Z INFO runtime log {"tx": "f5dd20e4877a79888b2f5ba3303cfaf729c401586a0f6d61a4666495cf8aa100", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:08:22.965Z INFO initializing dbft {"height": 7162, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:22.965Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 30} -2023-12-16T14:08:22.966Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 30} -2023-12-16T14:08:22.966Z debug frostfs-node/morph.go:229 new block {"index": 7161} -2023-12-16T14:08:23.866Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 7161, "blockHeight": 7161, "took": "41.986922ms"} -2023-12-16T14:08:23.958Z INFO sending PrepareRequest {"height": 7162, "view": 0} -2023-12-16T14:08:23.959Z INFO sending Commit {"height": 7162, "view": 0} -2023-12-16T14:08:23.959Z INFO approving block {"height": 7162, "hash": "d4cfb36cba0729b06bcdff861fdba9fc97fc7fdbef21bbeaac02e34d0c7e3854", "tx_count": 1, "merkle": "7baa3b63de6740e780814164b93efda4a29cd035f711041616d147e9cf548d9c", "prev": "d57acc495349e1d94e27643f6c583ab1ac684f1027bd8e511d7f412a6dd40f3d"} -2023-12-16T14:08:23.962Z INFO initializing dbft {"height": 7163, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:23.964Z debug frostfs-node/morph.go:229 new block {"index": 7162} -2023-12-16T14:08:23.968Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-16T14:08:24.843Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 7162, "blockHeight": 7162, "took": "17.691645ms"} -2023-12-16T14:08:24.960Z INFO sending PrepareRequest {"height": 7163, "view": 0} -2023-12-16T14:08:24.960Z INFO sending Commit {"height": 7163, "view": 0} -2023-12-16T14:08:24.961Z INFO approving block {"height": 7163, "hash": "d9a6c79ad005a1c1282e7da8bff79bc9be2470a1d674fed5e14dc2e3f09d5aac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4cfb36cba0729b06bcdff861fdba9fc97fc7fdbef21bbeaac02e34d0c7e3854"} -2023-12-16T14:08:24.962Z INFO initializing dbft {"height": 7164, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:24.963Z debug frostfs-node/morph.go:229 new block {"index": 7163} -2023-12-16T14:08:25.841Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7163, "blockHeight": 7163, "took": "15.97563ms"} -2023-12-16T14:08:25.961Z INFO sending PrepareRequest {"height": 7164, "view": 0} -2023-12-16T14:08:25.962Z INFO sending Commit {"height": 7164, "view": 0} -2023-12-16T14:08:25.962Z INFO approving block {"height": 7164, "hash": "b70cbf98b27b482007e9e0ebf78edecc9645d54c2259bb7cfc9eecf5b71b947b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9a6c79ad005a1c1282e7da8bff79bc9be2470a1d674fed5e14dc2e3f09d5aac"} -2023-12-16T14:08:25.964Z INFO initializing dbft {"height": 7165, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:25.965Z debug frostfs-node/morph.go:229 new block {"index": 7164} -2023-12-16T14:08:26.843Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7164, "blockHeight": 7164, "took": "16.800282ms"} -2023-12-16T14:08:26.963Z INFO sending PrepareRequest {"height": 7165, "view": 0} -2023-12-16T14:08:26.963Z INFO sending Commit {"height": 7165, "view": 0} -2023-12-16T14:08:26.964Z INFO approving block {"height": 7165, "hash": "4676f03322fe5f5df30b2cbde1304a54b07b0967a69899540251abfad021b331", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b70cbf98b27b482007e9e0ebf78edecc9645d54c2259bb7cfc9eecf5b71b947b"} -2023-12-16T14:08:26.965Z INFO initializing dbft {"height": 7166, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:26.966Z debug frostfs-node/morph.go:229 new block {"index": 7165} -2023-12-16T14:08:27.845Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7165, "blockHeight": 7165, "took": "18.294337ms"} -2023-12-16T14:08:27.965Z INFO sending PrepareRequest {"height": 7166, "view": 0} -2023-12-16T14:08:27.965Z INFO sending Commit {"height": 7166, "view": 0} -2023-12-16T14:08:27.965Z INFO approving block {"height": 7166, "hash": "d08b0e889f2efeadfdcb109e51636524b1d427bbe7131ce50379735374d1ee1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4676f03322fe5f5df30b2cbde1304a54b07b0967a69899540251abfad021b331"} -2023-12-16T14:08:27.967Z INFO initializing dbft {"height": 7167, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:27.968Z debug frostfs-node/morph.go:229 new block {"index": 7166} -2023-12-16T14:08:28.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7166, "blockHeight": 7166, "took": "16.618954ms"} -2023-12-16T14:08:28.967Z INFO sending PrepareRequest {"height": 7167, "view": 0} -2023-12-16T14:08:28.967Z INFO sending Commit {"height": 7167, "view": 0} -2023-12-16T14:08:28.967Z INFO approving block {"height": 7167, "hash": "b761a2e6e985c6c414731e3ac7a64989ad2e4415a8db992a3ac05273473d644f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d08b0e889f2efeadfdcb109e51636524b1d427bbe7131ce50379735374d1ee1f"} -2023-12-16T14:08:28.969Z INFO initializing dbft {"height": 7168, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:28.970Z debug frostfs-node/morph.go:229 new block {"index": 7167} -2023-12-16T14:08:29.852Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 7167, "blockHeight": 7167, "took": "24.144918ms"} -2023-12-16T14:08:29.970Z INFO sending PrepareRequest {"height": 7168, "view": 0} -2023-12-16T14:08:29.970Z INFO sending Commit {"height": 7168, "view": 0} -2023-12-16T14:08:29.971Z INFO approving block {"height": 7168, "hash": "03293488974ac8772ccaf9f0dc8c319aca07f60300065c8f38d1318b2c32dd7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b761a2e6e985c6c414731e3ac7a64989ad2e4415a8db992a3ac05273473d644f"} -2023-12-16T14:08:29.973Z INFO initializing dbft {"height": 7169, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:29.974Z debug frostfs-node/morph.go:229 new block {"index": 7168} -2023-12-16T14:08:30.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7168, "blockHeight": 7168, "took": "29.217209ms"} -2023-12-16T14:08:30.971Z INFO sending PrepareRequest {"height": 7169, "view": 0} -2023-12-16T14:08:30.972Z INFO sending Commit {"height": 7169, "view": 0} -2023-12-16T14:08:30.972Z INFO approving block {"height": 7169, "hash": "7fee56f803cc6830b93c263d3517780b932cba0483f66483afa4b4a58fa765e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03293488974ac8772ccaf9f0dc8c319aca07f60300065c8f38d1318b2c32dd7c"} -2023-12-16T14:08:30.974Z INFO initializing dbft {"height": 7170, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:30.975Z debug frostfs-node/morph.go:229 new block {"index": 7169} -2023-12-16T14:08:31.855Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7169, "blockHeight": 7169, "took": "25.306483ms"} -2023-12-16T14:08:31.973Z INFO sending PrepareRequest {"height": 7170, "view": 0} -2023-12-16T14:08:31.974Z INFO sending Commit {"height": 7170, "view": 0} -2023-12-16T14:08:31.974Z INFO approving block {"height": 7170, "hash": "122adecc5777705fe5f7871e30e5af52a0a8a8382c12e3ce554930b72db5eeaf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fee56f803cc6830b93c263d3517780b932cba0483f66483afa4b4a58fa765e5"} -2023-12-16T14:08:31.975Z INFO initializing dbft {"height": 7171, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:31.976Z debug frostfs-node/morph.go:229 new block {"index": 7170} -2023-12-16T14:08:32.934Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7170, "blockHeight": 7170, "took": "102.645946ms"} -2023-12-16T14:08:32.975Z INFO sending PrepareRequest {"height": 7171, "view": 0} -2023-12-16T14:08:32.975Z INFO sending Commit {"height": 7171, "view": 0} -2023-12-16T14:08:32.976Z INFO approving block {"height": 7171, "hash": "efc6d41874e95f52e306462114823db559246b13a9d6c13b15748c01c298715b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "122adecc5777705fe5f7871e30e5af52a0a8a8382c12e3ce554930b72db5eeaf"} -2023-12-16T14:08:32.978Z INFO initializing dbft {"height": 7172, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:32.979Z debug frostfs-node/morph.go:229 new block {"index": 7171} -2023-12-16T14:08:33.952Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7171, "blockHeight": 7171, "took": "120.470373ms"} -2023-12-16T14:08:33.977Z INFO sending PrepareRequest {"height": 7172, "view": 0} -2023-12-16T14:08:33.978Z INFO sending Commit {"height": 7172, "view": 0} -2023-12-16T14:08:33.978Z INFO approving block {"height": 7172, "hash": "eff8f1e605ace3569cee78037c23e35031cc8f0f264710b192c7ce6b28f4feb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efc6d41874e95f52e306462114823db559246b13a9d6c13b15748c01c298715b"} -2023-12-16T14:08:33.980Z INFO initializing dbft {"height": 7173, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:33.981Z debug frostfs-node/morph.go:229 new block {"index": 7172} -2023-12-16T14:08:34.857Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7172, "blockHeight": 7172, "took": "24.532179ms"} -2023-12-16T14:08:34.980Z INFO sending PrepareRequest {"height": 7173, "view": 0} -2023-12-16T14:08:34.980Z INFO sending Commit {"height": 7173, "view": 0} -2023-12-16T14:08:34.981Z INFO approving block {"height": 7173, "hash": "2a1bf1cf0eb93f9f056152f31c83eeaa3ff4fb38fa37dafd57f80fe2ac926ead", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eff8f1e605ace3569cee78037c23e35031cc8f0f264710b192c7ce6b28f4feb4"} -2023-12-16T14:08:34.982Z INFO initializing dbft {"height": 7174, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:34.983Z debug frostfs-node/morph.go:229 new block {"index": 7173} -2023-12-16T14:08:35.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7173, "blockHeight": 7173, "took": "56.818285ms"} -2023-12-16T14:08:35.982Z INFO sending PrepareRequest {"height": 7174, "view": 0} -2023-12-16T14:08:35.982Z INFO sending Commit {"height": 7174, "view": 0} -2023-12-16T14:08:35.983Z INFO approving block {"height": 7174, "hash": "db36e35a7a7005a67baf8e257c1bcf0b408dfe0eede639721877d1215ad10b1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a1bf1cf0eb93f9f056152f31c83eeaa3ff4fb38fa37dafd57f80fe2ac926ead"} -2023-12-16T14:08:35.984Z INFO initializing dbft {"height": 7175, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:35.984Z debug frostfs-node/morph.go:229 new block {"index": 7174} -2023-12-16T14:08:36.860Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7174, "blockHeight": 7174, "took": "25.650971ms"} -2023-12-16T14:08:36.983Z INFO sending PrepareRequest {"height": 7175, "view": 0} -2023-12-16T14:08:36.984Z INFO sending Commit {"height": 7175, "view": 0} -2023-12-16T14:08:36.984Z INFO approving block {"height": 7175, "hash": "8c17556259e98355c236f4e3cd5842fed338815d83a9280cc5e1645ee440faf7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db36e35a7a7005a67baf8e257c1bcf0b408dfe0eede639721877d1215ad10b1f"} -2023-12-16T14:08:36.986Z INFO initializing dbft {"height": 7176, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:36.987Z debug frostfs-node/morph.go:229 new block {"index": 7175} -2023-12-16T14:08:37.985Z INFO sending PrepareRequest {"height": 7176, "view": 0} -2023-12-16T14:08:37.986Z INFO sending Commit {"height": 7176, "view": 0} -2023-12-16T14:08:37.986Z INFO approving block {"height": 7176, "hash": "573b396d3e40afff71bbec32eb8961afd0501063185b25b1cb3cb830f61963ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c17556259e98355c236f4e3cd5842fed338815d83a9280cc5e1645ee440faf7"} -2023-12-16T14:08:37.988Z INFO initializing dbft {"height": 7177, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:37.988Z debug frostfs-node/morph.go:229 new block {"index": 7176} -2023-12-16T14:08:38.005Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7175, "blockHeight": 7175, "took": "169.994755ms"} -2023-12-16T14:08:38.988Z INFO sending PrepareRequest {"height": 7177, "view": 0} -2023-12-16T14:08:38.988Z INFO sending Commit {"height": 7177, "view": 0} -2023-12-16T14:08:38.989Z INFO approving block {"height": 7177, "hash": "42b91e63c38dc369bac30d4a9d08853ad0809816941fe87aafa233ee113c4688", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "573b396d3e40afff71bbec32eb8961afd0501063185b25b1cb3cb830f61963ad"} -2023-12-16T14:08:38.990Z INFO initializing dbft {"height": 7178, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:38.991Z debug frostfs-node/morph.go:229 new block {"index": 7177} -2023-12-16T14:08:39.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7176, "blockHeight": 7176, "took": "230.57969ms"} -2023-12-16T14:08:39.913Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7177, "blockHeight": 7177, "took": "76.820418ms"} -2023-12-16T14:08:39.990Z INFO sending PrepareRequest {"height": 7178, "view": 0} -2023-12-16T14:08:39.990Z INFO sending Commit {"height": 7178, "view": 0} -2023-12-16T14:08:39.991Z INFO approving block {"height": 7178, "hash": "49fb76d4fa548f6958dbd328221ba8f164e71f46b7b6d23c3996e650a52e9b44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42b91e63c38dc369bac30d4a9d08853ad0809816941fe87aafa233ee113c4688"} -2023-12-16T14:08:39.992Z INFO initializing dbft {"height": 7179, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:39.993Z debug frostfs-node/morph.go:229 new block {"index": 7178} -2023-12-16T14:08:40.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7178, "blockHeight": 7178, "took": "26.862588ms"} -2023-12-16T14:08:40.992Z INFO sending PrepareRequest {"height": 7179, "view": 0} -2023-12-16T14:08:40.993Z INFO sending Commit {"height": 7179, "view": 0} -2023-12-16T14:08:40.995Z INFO approving block {"height": 7179, "hash": "2493e54d5ac7aa4e97e0ebe6b783caa6736011ab51b4a64fe15d44676ea3f8a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49fb76d4fa548f6958dbd328221ba8f164e71f46b7b6d23c3996e650a52e9b44"} -2023-12-16T14:08:40.997Z INFO initializing dbft {"height": 7180, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:41.000Z debug frostfs-node/morph.go:229 new block {"index": 7179} -2023-12-16T14:08:41.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7179, "blockHeight": 7179, "took": "52.394573ms"} -2023-12-16T14:08:41.996Z INFO sending PrepareRequest {"height": 7180, "view": 0} -2023-12-16T14:08:41.997Z INFO sending Commit {"height": 7180, "view": 0} -2023-12-16T14:08:41.997Z INFO approving block {"height": 7180, "hash": "d8304f152e060c271c93123ec657ff96888361e36680ed265ca0811a7c4c0806", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2493e54d5ac7aa4e97e0ebe6b783caa6736011ab51b4a64fe15d44676ea3f8a2"} -2023-12-16T14:08:41.999Z INFO initializing dbft {"height": 7181, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:41.999Z debug frostfs-node/morph.go:229 new block {"index": 7180} -2023-12-16T14:08:42.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7180, "blockHeight": 7180, "took": "10.104775ms"} -2023-12-16T14:08:42.998Z INFO sending PrepareRequest {"height": 7181, "view": 0} -2023-12-16T14:08:42.999Z INFO sending Commit {"height": 7181, "view": 0} -2023-12-16T14:08:42.999Z INFO approving block {"height": 7181, "hash": "f219ebca96ce7c4ff6a2a7c1d6770d381722e4c058d8330c8e53a376e729aafe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8304f152e060c271c93123ec657ff96888361e36680ed265ca0811a7c4c0806"} -2023-12-16T14:08:43.000Z INFO initializing dbft {"height": 7182, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:43.001Z debug frostfs-node/morph.go:229 new block {"index": 7181} -2023-12-16T14:08:43.853Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7181, "blockHeight": 7181, "took": "13.922597ms"} -2023-12-16T14:08:44.000Z INFO sending PrepareRequest {"height": 7182, "view": 0} -2023-12-16T14:08:44.001Z INFO sending Commit {"height": 7182, "view": 0} -2023-12-16T14:08:44.001Z INFO approving block {"height": 7182, "hash": "c6d983a50145e968a9f0def883db669f9e47f2182019d7768f19731655c71a25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f219ebca96ce7c4ff6a2a7c1d6770d381722e4c058d8330c8e53a376e729aafe"} -2023-12-16T14:08:44.003Z INFO initializing dbft {"height": 7183, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:44.004Z debug frostfs-node/morph.go:229 new block {"index": 7182} -2023-12-16T14:08:44.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7182, "blockHeight": 7182, "took": "23.338121ms"} -2023-12-16T14:08:45.003Z INFO sending PrepareRequest {"height": 7183, "view": 0} -2023-12-16T14:08:45.004Z INFO sending Commit {"height": 7183, "view": 0} -2023-12-16T14:08:45.004Z INFO approving block {"height": 7183, "hash": "91dc5df982cc53d1a7b2cec5abd2a9b3072f54e189e40b0dd2f198628eb7d338", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6d983a50145e968a9f0def883db669f9e47f2182019d7768f19731655c71a25"} -2023-12-16T14:08:45.006Z INFO initializing dbft {"height": 7184, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:45.007Z debug frostfs-node/morph.go:229 new block {"index": 7183} -2023-12-16T14:08:45.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7183, "blockHeight": 7183, "took": "15.639923ms"} -2023-12-16T14:08:46.006Z INFO sending PrepareRequest {"height": 7184, "view": 0} -2023-12-16T14:08:46.006Z INFO sending Commit {"height": 7184, "view": 0} -2023-12-16T14:08:46.007Z INFO approving block {"height": 7184, "hash": "25088ff92551f086217af6f43fdad053234a0d8a167295264e31f52487b535b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91dc5df982cc53d1a7b2cec5abd2a9b3072f54e189e40b0dd2f198628eb7d338"} -2023-12-16T14:08:46.008Z INFO initializing dbft {"height": 7185, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:46.009Z debug frostfs-node/morph.go:229 new block {"index": 7184} -2023-12-16T14:08:46.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7184, "blockHeight": 7184, "took": "19.33839ms"} -2023-12-16T14:08:47.009Z INFO sending PrepareRequest {"height": 7185, "view": 0} -2023-12-16T14:08:47.009Z INFO sending Commit {"height": 7185, "view": 0} -2023-12-16T14:08:47.010Z INFO approving block {"height": 7185, "hash": "b793f85072d3bbb72de132397a82fd361c2ba529a385f6f16e2d6fb11eaf4a99", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25088ff92551f086217af6f43fdad053234a0d8a167295264e31f52487b535b8"} -2023-12-16T14:08:47.012Z INFO initializing dbft {"height": 7186, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:47.013Z debug frostfs-node/morph.go:229 new block {"index": 7185} -2023-12-16T14:08:47.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7185, "blockHeight": 7185, "took": "67.763727ms"} -2023-12-16T14:08:48.011Z INFO sending PrepareRequest {"height": 7186, "view": 0} -2023-12-16T14:08:48.012Z INFO sending Commit {"height": 7186, "view": 0} -2023-12-16T14:08:48.012Z INFO approving block {"height": 7186, "hash": "40a381e0d2f4e1dfeec82e26e9754c5b903899b8673eddf4f150d868f72c542f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b793f85072d3bbb72de132397a82fd361c2ba529a385f6f16e2d6fb11eaf4a99"} -2023-12-16T14:08:48.016Z INFO initializing dbft {"height": 7187, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:48.033Z debug frostfs-node/morph.go:229 new block {"index": 7186} -2023-12-16T14:08:48.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7186, "blockHeight": 7186, "took": "55.136085ms"} -2023-12-16T14:08:49.013Z INFO sending PrepareRequest {"height": 7187, "view": 0} -2023-12-16T14:08:49.013Z INFO sending Commit {"height": 7187, "view": 0} -2023-12-16T14:08:49.014Z INFO approving block {"height": 7187, "hash": "7eaa74d989beb41cd337750594e7e57dbda578566cec61458882e17b97d52f62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40a381e0d2f4e1dfeec82e26e9754c5b903899b8673eddf4f150d868f72c542f"} -2023-12-16T14:08:49.015Z INFO initializing dbft {"height": 7188, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:49.016Z debug frostfs-node/morph.go:229 new block {"index": 7187} -2023-12-16T14:08:49.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7187, "blockHeight": 7187, "took": "20.46266ms"} -2023-12-16T14:08:50.015Z INFO sending PrepareRequest {"height": 7188, "view": 0} -2023-12-16T14:08:50.015Z INFO sending Commit {"height": 7188, "view": 0} -2023-12-16T14:08:50.016Z INFO approving block {"height": 7188, "hash": "e79dbfec50964e2e4acf5321b177b684da0c6072406907afd8406134aca5a87c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7eaa74d989beb41cd337750594e7e57dbda578566cec61458882e17b97d52f62"} -2023-12-16T14:08:50.018Z INFO initializing dbft {"height": 7189, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:50.018Z debug frostfs-node/morph.go:229 new block {"index": 7188} -2023-12-16T14:08:50.868Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7188, "blockHeight": 7188, "took": "23.856691ms"} -2023-12-16T14:08:51.017Z INFO sending PrepareRequest {"height": 7189, "view": 0} -2023-12-16T14:08:51.017Z INFO sending Commit {"height": 7189, "view": 0} -2023-12-16T14:08:51.018Z INFO approving block {"height": 7189, "hash": "b54ccd42f9e843528b5ddb61e805e5b2c8bca0f720c52f9eb3aca5dfc6bd9475", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e79dbfec50964e2e4acf5321b177b684da0c6072406907afd8406134aca5a87c"} -2023-12-16T14:08:51.019Z INFO initializing dbft {"height": 7190, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:51.020Z debug frostfs-node/morph.go:229 new block {"index": 7189} -2023-12-16T14:08:51.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7189, "blockHeight": 7189, "took": "16.280602ms"} -2023-12-16T14:08:52.018Z INFO sending PrepareRequest {"height": 7190, "view": 0} -2023-12-16T14:08:52.019Z INFO sending Commit {"height": 7190, "view": 0} -2023-12-16T14:08:52.019Z INFO approving block {"height": 7190, "hash": "5edd609cd75d8cb65fda2d7ce9f02e4834bd2e0ecd0a0011b1966afc25b1d7d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b54ccd42f9e843528b5ddb61e805e5b2c8bca0f720c52f9eb3aca5dfc6bd9475"} -2023-12-16T14:08:52.021Z INFO initializing dbft {"height": 7191, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:52.022Z debug frostfs-node/morph.go:229 new block {"index": 7190} -2023-12-16T14:08:52.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7190, "blockHeight": 7190, "took": "15.493711ms"} -2023-12-16T14:08:53.021Z INFO sending PrepareRequest {"height": 7191, "view": 0} -2023-12-16T14:08:53.021Z INFO sending Commit {"height": 7191, "view": 0} -2023-12-16T14:08:53.022Z INFO approving block {"height": 7191, "hash": "2f5dced988664ec496e03ed652d59a8b03fc2f09345fa8f56b5da7fee111e6bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5edd609cd75d8cb65fda2d7ce9f02e4834bd2e0ecd0a0011b1966afc25b1d7d4"} -2023-12-16T14:08:53.024Z INFO initializing dbft {"height": 7192, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:53.024Z debug frostfs-node/morph.go:229 new block {"index": 7191} -2023-12-16T14:08:53.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7191, "blockHeight": 7191, "took": "14.640275ms"} -2023-12-16T14:08:54.024Z INFO sending PrepareRequest {"height": 7192, "view": 0} -2023-12-16T14:08:54.024Z INFO sending Commit {"height": 7192, "view": 0} -2023-12-16T14:08:54.024Z INFO approving block {"height": 7192, "hash": "39e40b84e3e65b51834a242210c262013bd1a4a3386f810903c64c54bf4fb55c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f5dced988664ec496e03ed652d59a8b03fc2f09345fa8f56b5da7fee111e6bd"} -2023-12-16T14:08:54.025Z INFO initializing dbft {"height": 7193, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:54.026Z debug frostfs-node/morph.go:229 new block {"index": 7192} -2023-12-16T14:08:54.870Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7192, "blockHeight": 7192, "took": "23.297881ms"} -2023-12-16T14:08:55.026Z INFO sending PrepareRequest {"height": 7193, "view": 0} -2023-12-16T14:08:55.026Z INFO sending Commit {"height": 7193, "view": 0} -2023-12-16T14:08:55.027Z INFO approving block {"height": 7193, "hash": "4d24b5223137170095aa1f2b5718f06b027e12a1865fe4b1f190a32cd1554351", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39e40b84e3e65b51834a242210c262013bd1a4a3386f810903c64c54bf4fb55c"} -2023-12-16T14:08:55.029Z INFO initializing dbft {"height": 7194, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:55.029Z debug frostfs-node/morph.go:229 new block {"index": 7193} -2023-12-16T14:08:55.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7193, "blockHeight": 7193, "took": "26.595561ms"} -2023-12-16T14:08:56.029Z INFO sending PrepareRequest {"height": 7194, "view": 0} -2023-12-16T14:08:56.029Z INFO sending Commit {"height": 7194, "view": 0} -2023-12-16T14:08:56.030Z INFO approving block {"height": 7194, "hash": "95800fbe7edf93a822a1dec57aad0ace14666076a78f13e0fbb28f44baab2677", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d24b5223137170095aa1f2b5718f06b027e12a1865fe4b1f190a32cd1554351"} -2023-12-16T14:08:56.032Z INFO initializing dbft {"height": 7195, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:56.034Z debug frostfs-node/morph.go:229 new block {"index": 7194} -2023-12-16T14:08:56.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7194, "blockHeight": 7194, "took": "15.902471ms"} -2023-12-16T14:08:57.032Z INFO sending PrepareRequest {"height": 7195, "view": 0} -2023-12-16T14:08:57.032Z INFO sending Commit {"height": 7195, "view": 0} -2023-12-16T14:08:57.032Z INFO approving block {"height": 7195, "hash": "eb507b4d94937ad790c341632b97d9fb4946ad97f3dced355f49b9445ab1b1ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95800fbe7edf93a822a1dec57aad0ace14666076a78f13e0fbb28f44baab2677"} -2023-12-16T14:08:57.045Z INFO initializing dbft {"height": 7196, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:57.046Z debug frostfs-node/morph.go:229 new block {"index": 7195} -2023-12-16T14:08:57.873Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7195, "blockHeight": 7195, "took": "24.241925ms"} -2023-12-16T14:08:58.034Z INFO sending PrepareRequest {"height": 7196, "view": 0} -2023-12-16T14:08:58.034Z INFO sending Commit {"height": 7196, "view": 0} -2023-12-16T14:08:58.034Z INFO approving block {"height": 7196, "hash": "b5bda0aa6aad0c424d80441881b91283153fa66477f6922cd5db3ff66c10a26a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb507b4d94937ad790c341632b97d9fb4946ad97f3dced355f49b9445ab1b1ec"} -2023-12-16T14:08:58.036Z INFO initializing dbft {"height": 7197, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:58.037Z debug frostfs-node/morph.go:229 new block {"index": 7196} -2023-12-16T14:08:58.868Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7196, "blockHeight": 7196, "took": "18.527875ms"} -2023-12-16T14:08:59.036Z INFO sending PrepareRequest {"height": 7197, "view": 0} -2023-12-16T14:08:59.037Z INFO sending Commit {"height": 7197, "view": 0} -2023-12-16T14:08:59.038Z INFO approving block {"height": 7197, "hash": "4036fd8aeec1cdf3be2149a56db48b237a88a0c11f2608990d14384182dedbfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5bda0aa6aad0c424d80441881b91283153fa66477f6922cd5db3ff66c10a26a"} -2023-12-16T14:08:59.040Z INFO initializing dbft {"height": 7198, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:08:59.041Z debug frostfs-node/morph.go:229 new block {"index": 7197} -2023-12-16T14:08:59.870Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7197, "blockHeight": 7197, "took": "19.691875ms"} -2023-12-16T14:09:00.040Z INFO sending PrepareRequest {"height": 7198, "view": 0} -2023-12-16T14:09:00.040Z INFO sending Commit {"height": 7198, "view": 0} -2023-12-16T14:09:00.041Z INFO approving block {"height": 7198, "hash": "31cbf8b19c02127916786a14740231400783a17381b3e12c85e22e385dae01ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4036fd8aeec1cdf3be2149a56db48b237a88a0c11f2608990d14384182dedbfa"} -2023-12-16T14:09:00.043Z INFO initializing dbft {"height": 7199, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:00.044Z debug frostfs-node/morph.go:229 new block {"index": 7198} -2023-12-16T14:09:00.900Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7198, "blockHeight": 7198, "took": "49.325829ms"} -2023-12-16T14:09:01.043Z INFO sending PrepareRequest {"height": 7199, "view": 0} -2023-12-16T14:09:01.043Z INFO sending Commit {"height": 7199, "view": 0} -2023-12-16T14:09:01.043Z INFO approving block {"height": 7199, "hash": "ff9656c916a2bceb900227cad363226a408c51a8483059117ee41037fc74d05d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31cbf8b19c02127916786a14740231400783a17381b3e12c85e22e385dae01ce"} -2023-12-16T14:09:01.045Z INFO initializing dbft {"height": 7200, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:01.046Z debug frostfs-node/morph.go:229 new block {"index": 7199} -2023-12-16T14:09:01.943Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7199, "blockHeight": 7199, "took": "91.778088ms"} -2023-12-16T14:09:02.045Z INFO sending PrepareRequest {"height": 7200, "view": 0} -2023-12-16T14:09:02.045Z INFO sending Commit {"height": 7200, "view": 0} -2023-12-16T14:09:02.045Z INFO approving block {"height": 7200, "hash": "d1ca7b72a2e73a02160998cc71d9dd0c55f770736515385f70c55439ea294371", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff9656c916a2bceb900227cad363226a408c51a8483059117ee41037fc74d05d"} -2023-12-16T14:09:02.047Z INFO initializing dbft {"height": 7201, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:02.048Z debug frostfs-node/morph.go:229 new block {"index": 7200} -2023-12-16T14:09:02.073Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:09:02.108Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:09:02.108Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:09:02.886Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7200, "blockHeight": 7200, "took": "33.513666ms"} -2023-12-16T14:09:03.048Z INFO sending PrepareRequest {"height": 7201, "view": 0} -2023-12-16T14:09:03.049Z INFO sending Commit {"height": 7201, "view": 0} -2023-12-16T14:09:03.049Z INFO approving block {"height": 7201, "hash": "c8f9880b5feb8864afa21fe72a30711ef9145f3dc1f8f5fb07b8faa59d0d7223", "tx_count": 2, "merkle": "732edc23dc20d4739e5cd60798896f46de2a1bfdf66af12b11119648fd2557f1", "prev": "d1ca7b72a2e73a02160998cc71d9dd0c55f770736515385f70c55439ea294371"} -2023-12-16T14:09:03.050Z INFO runtime log {"tx": "cfaef9d70e391b6e31998b825efbc1aeb055d7f2af386eb7fc75577034057f45", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:09:03.050Z INFO runtime log {"tx": "cfaef9d70e391b6e31998b825efbc1aeb055d7f2af386eb7fc75577034057f45", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:09:03.068Z INFO initializing dbft {"height": 7202, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:03.069Z debug frostfs-node/morph.go:229 new block {"index": 7201} -2023-12-16T14:09:04.051Z INFO sending PrepareRequest {"height": 7202, "view": 0} -2023-12-16T14:09:04.051Z INFO sending Commit {"height": 7202, "view": 0} -2023-12-16T14:09:04.051Z INFO approving block {"height": 7202, "hash": "7f9a6b9781f21513ef02e3ac957d1670bd43262312061e66f7c30665476451f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8f9880b5feb8864afa21fe72a30711ef9145f3dc1f8f5fb07b8faa59d0d7223"} -2023-12-16T14:09:04.053Z INFO initializing dbft {"height": 7203, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:04.053Z debug frostfs-node/morph.go:229 new block {"index": 7202} -2023-12-16T14:09:04.796Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7201, "blockHeight": 7201, "took": "942.909726ms"} -2023-12-16T14:09:05.119Z INFO sending PrepareRequest {"height": 7203, "view": 0} -2023-12-16T14:09:05.120Z INFO sending Commit {"height": 7203, "view": 0} -2023-12-16T14:09:05.120Z INFO approving block {"height": 7203, "hash": "d2e0e6ab5c231631f58f56734c6830ff68302dd195cd8ab8f1353f5a6c03dc81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f9a6b9781f21513ef02e3ac957d1670bd43262312061e66f7c30665476451f8"} -2023-12-16T14:09:05.122Z INFO initializing dbft {"height": 7204, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:05.123Z debug frostfs-node/morph.go:229 new block {"index": 7203} -2023-12-16T14:09:05.804Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7202, "blockHeight": 7202, "took": "834.462341ms"} -2023-12-16T14:09:06.047Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7203, "blockHeight": 7203, "took": "77.699094ms"} -2023-12-16T14:09:06.122Z INFO sending PrepareRequest {"height": 7204, "view": 0} -2023-12-16T14:09:06.122Z INFO sending Commit {"height": 7204, "view": 0} -2023-12-16T14:09:06.123Z INFO approving block {"height": 7204, "hash": "fccb82ea8ecc226fe83c9487e61be3375f9b8de3d200fea0ae6ac5685f61a7c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2e0e6ab5c231631f58f56734c6830ff68302dd195cd8ab8f1353f5a6c03dc81"} -2023-12-16T14:09:06.124Z INFO initializing dbft {"height": 7205, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:06.125Z debug frostfs-node/morph.go:229 new block {"index": 7204} -2023-12-16T14:09:07.016Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7204, "blockHeight": 7204, "took": "46.361753ms"} -2023-12-16T14:09:07.124Z INFO sending PrepareRequest {"height": 7205, "view": 0} -2023-12-16T14:09:07.125Z INFO sending Commit {"height": 7205, "view": 0} -2023-12-16T14:09:07.125Z INFO approving block {"height": 7205, "hash": "b6df0c7b970ed7f8ab53b4e7b57e161a6d81981ff438602f1a0c2bd7757d7fb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fccb82ea8ecc226fe83c9487e61be3375f9b8de3d200fea0ae6ac5685f61a7c0"} -2023-12-16T14:09:07.174Z INFO initializing dbft {"height": 7206, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:07.175Z debug frostfs-node/morph.go:229 new block {"index": 7205} -2023-12-16T14:09:08.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7205, "blockHeight": 7205, "took": "73.57534ms"} -2023-12-16T14:09:08.131Z INFO sending PrepareRequest {"height": 7206, "view": 0} -2023-12-16T14:09:08.132Z INFO sending Commit {"height": 7206, "view": 0} -2023-12-16T14:09:08.132Z INFO approving block {"height": 7206, "hash": "5e311190248c332486af9b10c3c15782c0b1b58b6e87f93e1c4278c17c714968", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6df0c7b970ed7f8ab53b4e7b57e161a6d81981ff438602f1a0c2bd7757d7fb4"} -2023-12-16T14:09:08.134Z INFO initializing dbft {"height": 7207, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:08.134Z debug frostfs-node/morph.go:229 new block {"index": 7206} -2023-12-16T14:09:09.011Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7206, "blockHeight": 7206, "took": "39.326165ms"} -2023-12-16T14:09:09.133Z INFO sending PrepareRequest {"height": 7207, "view": 0} -2023-12-16T14:09:09.133Z INFO sending Commit {"height": 7207, "view": 0} -2023-12-16T14:09:09.134Z INFO approving block {"height": 7207, "hash": "4d8928d2c95b7c079db37d63aede90d7c9c09646922004349998b7eb4e528d46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e311190248c332486af9b10c3c15782c0b1b58b6e87f93e1c4278c17c714968"} -2023-12-16T14:09:09.135Z INFO initializing dbft {"height": 7208, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:09.136Z debug frostfs-node/morph.go:229 new block {"index": 7207} -2023-12-16T14:09:10.040Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7207, "blockHeight": 7207, "took": "67.916088ms"} -2023-12-16T14:09:10.135Z INFO sending PrepareRequest {"height": 7208, "view": 0} -2023-12-16T14:09:10.135Z INFO sending Commit {"height": 7208, "view": 0} -2023-12-16T14:09:10.136Z INFO approving block {"height": 7208, "hash": "8e16c0c9b1f3d19e6ac79d279dd0e5a7e8c6acdc3e5c0ad8fc78c1143ed4c188", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d8928d2c95b7c079db37d63aede90d7c9c09646922004349998b7eb4e528d46"} -2023-12-16T14:09:10.147Z INFO initializing dbft {"height": 7209, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:10.148Z debug frostfs-node/morph.go:229 new block {"index": 7208} -2023-12-16T14:09:11.034Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7208, "blockHeight": 7208, "took": "54.505908ms"} -2023-12-16T14:09:11.137Z INFO sending PrepareRequest {"height": 7209, "view": 0} -2023-12-16T14:09:11.138Z INFO sending Commit {"height": 7209, "view": 0} -2023-12-16T14:09:11.138Z INFO approving block {"height": 7209, "hash": "852da1550e1812c0c4d8661134bae1ab7a66c7768add86eaf7ecb735929a046c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e16c0c9b1f3d19e6ac79d279dd0e5a7e8c6acdc3e5c0ad8fc78c1143ed4c188"} -2023-12-16T14:09:11.140Z INFO initializing dbft {"height": 7210, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:11.141Z debug frostfs-node/morph.go:229 new block {"index": 7209} -2023-12-16T14:09:12.113Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7209, "blockHeight": 7209, "took": "132.282979ms"} -2023-12-16T14:09:12.140Z INFO sending PrepareRequest {"height": 7210, "view": 0} -2023-12-16T14:09:12.141Z INFO sending Commit {"height": 7210, "view": 0} -2023-12-16T14:09:12.141Z INFO approving block {"height": 7210, "hash": "db39545f47b15223798adc4d934d9d81881159998148f078a80ce08adfa13dc9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "852da1550e1812c0c4d8661134bae1ab7a66c7768add86eaf7ecb735929a046c"} -2023-12-16T14:09:12.143Z INFO initializing dbft {"height": 7211, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:12.144Z debug frostfs-node/morph.go:229 new block {"index": 7210} -2023-12-16T14:09:13.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7210, "blockHeight": 7210, "took": "63.55252ms"} -2023-12-16T14:09:13.142Z INFO sending PrepareRequest {"height": 7211, "view": 0} -2023-12-16T14:09:13.143Z INFO sending Commit {"height": 7211, "view": 0} -2023-12-16T14:09:13.143Z INFO approving block {"height": 7211, "hash": "fbea7e7eea2c2490808370b5e4e7744d23497f38e46e2bcd5733e2ef92e70e2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db39545f47b15223798adc4d934d9d81881159998148f078a80ce08adfa13dc9"} -2023-12-16T14:09:13.144Z INFO initializing dbft {"height": 7212, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:13.144Z debug frostfs-node/morph.go:229 new block {"index": 7211} -2023-12-16T14:09:14.144Z INFO sending PrepareRequest {"height": 7212, "view": 0} -2023-12-16T14:09:14.145Z INFO sending Commit {"height": 7212, "view": 0} -2023-12-16T14:09:14.145Z INFO approving block {"height": 7212, "hash": "a4fb1cda266de67bfe7d82011e3c04c22158e240be6a3d050b6e9a11341745e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbea7e7eea2c2490808370b5e4e7744d23497f38e46e2bcd5733e2ef92e70e2b"} -2023-12-16T14:09:14.152Z INFO initializing dbft {"height": 7213, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:14.153Z debug frostfs-node/morph.go:229 new block {"index": 7212} -2023-12-16T14:09:14.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7211, "blockHeight": 7211, "took": "328.595398ms"} -2023-12-16T14:09:15.091Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7212, "blockHeight": 7212, "took": "108.323452ms"} -2023-12-16T14:09:15.146Z INFO sending PrepareRequest {"height": 7213, "view": 0} -2023-12-16T14:09:15.146Z INFO sending Commit {"height": 7213, "view": 0} -2023-12-16T14:09:15.147Z INFO approving block {"height": 7213, "hash": "c0a6d4bb5d91d98f67d53082ce299dedb49b4ab16eda4102b6eec00029840e1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4fb1cda266de67bfe7d82011e3c04c22158e240be6a3d050b6e9a11341745e7"} -2023-12-16T14:09:15.148Z INFO initializing dbft {"height": 7214, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:15.149Z debug frostfs-node/morph.go:229 new block {"index": 7213} -2023-12-16T14:09:16.005Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7213, "blockHeight": 7213, "took": "21.789919ms"} -2023-12-16T14:09:16.148Z INFO sending PrepareRequest {"height": 7214, "view": 0} -2023-12-16T14:09:16.149Z INFO sending Commit {"height": 7214, "view": 0} -2023-12-16T14:09:16.150Z INFO approving block {"height": 7214, "hash": "af8db9aebec8d1ea8acf5272a6d026a63375440c40faab5d43a4b6d0efa137e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0a6d4bb5d91d98f67d53082ce299dedb49b4ab16eda4102b6eec00029840e1a"} -2023-12-16T14:09:16.151Z INFO initializing dbft {"height": 7215, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:16.152Z debug frostfs-node/morph.go:229 new block {"index": 7214} -2023-12-16T14:09:17.151Z INFO sending PrepareRequest {"height": 7215, "view": 0} -2023-12-16T14:09:17.151Z INFO sending Commit {"height": 7215, "view": 0} -2023-12-16T14:09:17.152Z INFO approving block {"height": 7215, "hash": "891119c7f514b73427f794271b5d5024da36da06a35537b3d5e7a538825c86c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af8db9aebec8d1ea8acf5272a6d026a63375440c40faab5d43a4b6d0efa137e7"} -2023-12-16T14:09:17.153Z INFO initializing dbft {"height": 7216, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:17.153Z debug frostfs-node/morph.go:229 new block {"index": 7215} -2023-12-16T14:09:17.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7214, "blockHeight": 7214, "took": "365.460678ms"} -2023-12-16T14:09:18.015Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7215, "blockHeight": 7215, "took": "30.310274ms"} -2023-12-16T14:09:18.153Z INFO sending PrepareRequest {"height": 7216, "view": 0} -2023-12-16T14:09:18.153Z INFO sending Commit {"height": 7216, "view": 0} -2023-12-16T14:09:18.154Z INFO approving block {"height": 7216, "hash": "17f790d074815def2d3d489a1dc2a9d04f8deaac9eaa383b262c041f3c87cd71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "891119c7f514b73427f794271b5d5024da36da06a35537b3d5e7a538825c86c4"} -2023-12-16T14:09:18.155Z INFO initializing dbft {"height": 7217, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:18.156Z debug frostfs-node/morph.go:229 new block {"index": 7216} -2023-12-16T14:09:19.005Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7216, "blockHeight": 7216, "took": "20.375897ms"} -2023-12-16T14:09:19.155Z INFO sending PrepareRequest {"height": 7217, "view": 0} -2023-12-16T14:09:19.156Z INFO sending Commit {"height": 7217, "view": 0} -2023-12-16T14:09:19.156Z INFO approving block {"height": 7217, "hash": "06c18c1dbf637aa5d20f11c0666a928c3ca0e3f6570201668497faf04c2079f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17f790d074815def2d3d489a1dc2a9d04f8deaac9eaa383b262c041f3c87cd71"} -2023-12-16T14:09:19.158Z INFO initializing dbft {"height": 7218, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:19.159Z debug frostfs-node/morph.go:229 new block {"index": 7217} -2023-12-16T14:09:20.008Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7217, "blockHeight": 7217, "took": "21.742237ms"} -2023-12-16T14:09:20.158Z INFO sending PrepareRequest {"height": 7218, "view": 0} -2023-12-16T14:09:20.159Z INFO sending Commit {"height": 7218, "view": 0} -2023-12-16T14:09:20.159Z INFO approving block {"height": 7218, "hash": "0ea9e5e2ec937356453436122b5de45d6d5f50e56dcc1fffbcd45f8316698eea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06c18c1dbf637aa5d20f11c0666a928c3ca0e3f6570201668497faf04c2079f1"} -2023-12-16T14:09:20.164Z INFO initializing dbft {"height": 7219, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:20.165Z debug frostfs-node/morph.go:229 new block {"index": 7218} -2023-12-16T14:09:20.999Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7218, "blockHeight": 7218, "took": "12.120747ms"} -2023-12-16T14:09:21.161Z INFO sending PrepareRequest {"height": 7219, "view": 0} -2023-12-16T14:09:21.161Z INFO sending Commit {"height": 7219, "view": 0} -2023-12-16T14:09:21.161Z INFO approving block {"height": 7219, "hash": "3b66d6d96c2e4f688ac827924b1b71706032f55efefd5a25ef2c123fdbf99931", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ea9e5e2ec937356453436122b5de45d6d5f50e56dcc1fffbcd45f8316698eea"} -2023-12-16T14:09:21.163Z INFO initializing dbft {"height": 7220, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:21.164Z debug frostfs-node/morph.go:229 new block {"index": 7219} -2023-12-16T14:09:22.011Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7219, "blockHeight": 7219, "took": "24.319098ms"} -2023-12-16T14:09:22.163Z INFO sending PrepareRequest {"height": 7220, "view": 0} -2023-12-16T14:09:22.163Z INFO sending Commit {"height": 7220, "view": 0} -2023-12-16T14:09:22.163Z INFO approving block {"height": 7220, "hash": "5b7b137fbd976cdb6f5a0a923491848007c2619768591927d41db891ef77a6cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b66d6d96c2e4f688ac827924b1b71706032f55efefd5a25ef2c123fdbf99931"} -2023-12-16T14:09:22.165Z INFO initializing dbft {"height": 7221, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:22.166Z debug frostfs-node/morph.go:229 new block {"index": 7220} -2023-12-16T14:09:22.179Z info settlement/calls.go:61 start basic income collection {"epoch": 30} -2023-12-16T14:09:23.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7220, "blockHeight": 7220, "took": "34.503466ms"} -2023-12-16T14:09:23.165Z INFO sending PrepareRequest {"height": 7221, "view": 0} -2023-12-16T14:09:23.165Z INFO sending Commit {"height": 7221, "view": 0} -2023-12-16T14:09:23.166Z INFO approving block {"height": 7221, "hash": "2e95918368a4399c50b274b061a7ed09ead73e26b121372a5cbc061a77b49254", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b7b137fbd976cdb6f5a0a923491848007c2619768591927d41db891ef77a6cc"} -2023-12-16T14:09:23.168Z INFO initializing dbft {"height": 7222, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:23.193Z debug frostfs-node/morph.go:229 new block {"index": 7221} -2023-12-16T14:09:24.016Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7221, "blockHeight": 7221, "took": "26.479895ms"} -2023-12-16T14:09:24.167Z INFO sending PrepareRequest {"height": 7222, "view": 0} -2023-12-16T14:09:24.168Z INFO sending Commit {"height": 7222, "view": 0} -2023-12-16T14:09:24.168Z INFO approving block {"height": 7222, "hash": "48bf30bd3cfecff21afd0754b5219ff36e0de5e43bee9f2b26a575625762ec66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e95918368a4399c50b274b061a7ed09ead73e26b121372a5cbc061a77b49254"} -2023-12-16T14:09:24.170Z INFO initializing dbft {"height": 7223, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:24.171Z debug frostfs-node/morph.go:229 new block {"index": 7222} -2023-12-16T14:09:25.007Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7222, "blockHeight": 7222, "took": "16.715146ms"} -2023-12-16T14:09:25.170Z INFO sending PrepareRequest {"height": 7223, "view": 0} -2023-12-16T14:09:25.170Z INFO sending Commit {"height": 7223, "view": 0} -2023-12-16T14:09:25.170Z INFO approving block {"height": 7223, "hash": "c0e47e5b7e30f102c50484024c5d9f1e2c47fad3c41fe3d1544483283cea80cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48bf30bd3cfecff21afd0754b5219ff36e0de5e43bee9f2b26a575625762ec66"} -2023-12-16T14:09:25.172Z INFO initializing dbft {"height": 7224, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:25.173Z debug frostfs-node/morph.go:229 new block {"index": 7223} -2023-12-16T14:09:26.021Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7223, "blockHeight": 7223, "took": "29.377088ms"} -2023-12-16T14:09:26.172Z INFO sending PrepareRequest {"height": 7224, "view": 0} -2023-12-16T14:09:26.173Z INFO sending Commit {"height": 7224, "view": 0} -2023-12-16T14:09:26.173Z INFO approving block {"height": 7224, "hash": "f15a686178ed9fe2ca4bedc414d27271b3dbd24a2ad214440259338e0edd66a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0e47e5b7e30f102c50484024c5d9f1e2c47fad3c41fe3d1544483283cea80cd"} -2023-12-16T14:09:26.175Z INFO initializing dbft {"height": 7225, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:26.176Z debug frostfs-node/morph.go:229 new block {"index": 7224} -2023-12-16T14:09:27.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7224, "blockHeight": 7224, "took": "34.521707ms"} -2023-12-16T14:09:27.174Z INFO sending PrepareRequest {"height": 7225, "view": 0} -2023-12-16T14:09:27.174Z INFO sending Commit {"height": 7225, "view": 0} -2023-12-16T14:09:27.175Z INFO approving block {"height": 7225, "hash": "6287c27df7d60ee93fe4daa45d4780ad9ca1ef774143b763c4b1b80d583da236", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f15a686178ed9fe2ca4bedc414d27271b3dbd24a2ad214440259338e0edd66a6"} -2023-12-16T14:09:27.177Z INFO initializing dbft {"height": 7226, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:27.178Z debug frostfs-node/morph.go:229 new block {"index": 7225} -2023-12-16T14:09:28.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7225, "blockHeight": 7225, "took": "25.268513ms"} -2023-12-16T14:09:28.176Z INFO sending PrepareRequest {"height": 7226, "view": 0} -2023-12-16T14:09:28.177Z INFO sending Commit {"height": 7226, "view": 0} -2023-12-16T14:09:28.179Z INFO approving block {"height": 7226, "hash": "b995ea27a84cbda96c2fdcc5c367af6abaf3fa9ccf65b2108ade025b784fbbc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6287c27df7d60ee93fe4daa45d4780ad9ca1ef774143b763c4b1b80d583da236"} -2023-12-16T14:09:28.182Z INFO initializing dbft {"height": 7227, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:28.183Z debug frostfs-node/morph.go:229 new block {"index": 7226} -2023-12-16T14:09:29.042Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7226, "blockHeight": 7226, "took": "48.765901ms"} -2023-12-16T14:09:29.179Z INFO sending PrepareRequest {"height": 7227, "view": 0} -2023-12-16T14:09:29.180Z INFO sending Commit {"height": 7227, "view": 0} -2023-12-16T14:09:29.180Z INFO approving block {"height": 7227, "hash": "5b0a5879dd6357a4d1be36d9f874f1f0b201e89da2d095b54c19b9ab3b9f388f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b995ea27a84cbda96c2fdcc5c367af6abaf3fa9ccf65b2108ade025b784fbbc1"} -2023-12-16T14:09:29.183Z INFO initializing dbft {"height": 7228, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:29.184Z debug frostfs-node/morph.go:229 new block {"index": 7227} -2023-12-16T14:09:30.012Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7227, "blockHeight": 7227, "took": "18.61692ms"} -2023-12-16T14:09:30.181Z INFO sending PrepareRequest {"height": 7228, "view": 0} -2023-12-16T14:09:30.182Z INFO sending Commit {"height": 7228, "view": 0} -2023-12-16T14:09:30.182Z INFO approving block {"height": 7228, "hash": "a5643b63d76d339a871920251cab32e9509e0152e98d16b0b0263d618f9b6e36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b0a5879dd6357a4d1be36d9f874f1f0b201e89da2d095b54c19b9ab3b9f388f"} -2023-12-16T14:09:30.184Z INFO initializing dbft {"height": 7229, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:30.193Z debug frostfs-node/morph.go:229 new block {"index": 7228} -2023-12-16T14:09:30.192Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:09:30.206Z INFO runtime log {"tx": "e7e0d50ac0c3ee7c9da188479c891ed409b53cd378d643c7fd25feb6c16ae4c0", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:09:31.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7228, "blockHeight": 7228, "took": "90.751188ms"} -2023-12-16T14:09:31.183Z INFO sending PrepareRequest {"height": 7229, "view": 0} -2023-12-16T14:09:31.184Z INFO sending Commit {"height": 7229, "view": 0} -2023-12-16T14:09:31.184Z INFO approving block {"height": 7229, "hash": "288fb0ee3a9315a70afb4ca2a454f1b9473e58821c742329b51ed068b2182362", "tx_count": 1, "merkle": "775f16d7ef010060621fdd14dfd9444b5bcf96f596a57807ca7c28bb65ec89b5", "prev": "a5643b63d76d339a871920251cab32e9509e0152e98d16b0b0263d618f9b6e36"} -2023-12-16T14:09:31.185Z INFO runtime log {"tx": "b589ec65bb287cca0778a596f596cf5b4b44d9df14dd1f62600001efd7165f77", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:09:31.237Z INFO initializing dbft {"height": 7230, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:31.241Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 32} -2023-12-16T14:09:31.244Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 32} -2023-12-16T14:09:31.248Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:09:31.248Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 32} -2023-12-16T14:09:31.256Z debug frostfs-node/morph.go:229 new block {"index": 7229} -2023-12-16T14:09:31.255Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:09:31.258Z debug controller/calls.go:95 starting to report local trust values {"epoch": 31} -2023-12-16T14:09:31.261Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 32} -2023-12-16T14:09:31.263Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 31} -2023-12-16T14:09:31.269Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 32} -2023-12-16T14:09:31.273Z INFO runtime log {"tx": "b48986c854771b5caadac1edc2ca50cb2d63ef281fc6f5c67bbd757a0cf9e67e", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:09:31.282Z debug controller/calls.go:146 reporting successfully finished {"epoch": 31} -2023-12-16T14:09:31.283Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 31} -2023-12-16T14:09:31.294Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:09:31.301Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:09:31.297Z info audit/handlers.go:13 new round of audit {"epoch": 32} -2023-12-16T14:09:31.313Z info settlement/calls.go:26 new audit settlement event {"epoch": 32} -2023-12-16T14:09:31.320Z info settlement/handlers.go:14 process audit settlements {"epoch": 32} -2023-12-16T14:09:31.320Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 32} -2023-12-16T14:09:31.326Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7232, "tx_hash": "1b9f812fa9584dd9551e319684692c6bf95f9d5a8e7ce5184ddb3eb482f01039"} -2023-12-16T14:09:31.332Z info settlement/handlers.go:18 audit processing finished {"epoch": 32} -2023-12-16T14:09:31.335Z info audit/process.go:39 select containers for audit {"epoch": 32, "amount": 0} -2023-12-16T14:09:31.334Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7232, "tx_hash": "5ead97730a5ad98fb30db78fa810d4d68f1c5be64df51777dcbb961c9d2ef4df"} -2023-12-16T14:09:32.090Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 7229, "blockHeight": 7229, "took": "94.867951ms"} -2023-12-16T14:09:32.185Z INFO sending PrepareRequest {"height": 7230, "view": 0} -2023-12-16T14:09:32.185Z INFO sending Commit {"height": 7230, "view": 0} -2023-12-16T14:09:32.185Z INFO approving block {"height": 7230, "hash": "a5b70e30b007140b8e1407bf93752a81cc2f3de2be96c4bd66b5e49479f3b405", "tx_count": 3, "merkle": "07955c2bcee5ecaf4793185b0d3b6a7e5467f1c23665c3882fddf7b5fbeb97b3", "prev": "288fb0ee3a9315a70afb4ca2a454f1b9473e58821c742329b51ed068b2182362"} -2023-12-16T14:09:32.190Z INFO runtime log {"tx": "a48ced2adf78980476bfb0950d37d320a75e7d7d8b62fbe6328c3eaac1718a8a", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:09:32.203Z INFO initializing dbft {"height": 7231, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:32.207Z debug frostfs-node/morph.go:229 new block {"index": 7230} -2023-12-16T14:09:32.214Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 31} -2023-12-16T14:09:32.226Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 31} -2023-12-16T14:09:32.227Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 31} -2023-12-16T14:09:33.069Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 7230, "blockHeight": 7230, "took": "73.006177ms"} -2023-12-16T14:09:33.187Z INFO sending PrepareRequest {"height": 7231, "view": 0} -2023-12-16T14:09:33.187Z INFO sending Commit {"height": 7231, "view": 0} -2023-12-16T14:09:33.187Z INFO approving block {"height": 7231, "hash": "37b30ba1c5a1a01aa9e18f5dcc7ddc57fe259cef9f2543a057b5aa4935b032ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5b70e30b007140b8e1407bf93752a81cc2f3de2be96c4bd66b5e49479f3b405"} -2023-12-16T14:09:33.189Z INFO initializing dbft {"height": 7232, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:33.189Z debug frostfs-node/morph.go:229 new block {"index": 7231} -2023-12-16T14:09:34.057Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7231, "blockHeight": 7231, "took": "60.041328ms"} -2023-12-16T14:09:34.189Z INFO sending PrepareRequest {"height": 7232, "view": 0} -2023-12-16T14:09:34.189Z INFO sending Commit {"height": 7232, "view": 0} -2023-12-16T14:09:34.189Z INFO approving block {"height": 7232, "hash": "cd5aa35203c71a27e450ab6de9a3c2ff014235afcc2e4f1f702a741a214bdfd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37b30ba1c5a1a01aa9e18f5dcc7ddc57fe259cef9f2543a057b5aa4935b032ba"} -2023-12-16T14:09:34.192Z INFO initializing dbft {"height": 7233, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:34.235Z debug frostfs-node/morph.go:229 new block {"index": 7232} -2023-12-16T14:09:35.190Z INFO sending PrepareRequest {"height": 7233, "view": 0} -2023-12-16T14:09:35.190Z INFO sending Commit {"height": 7233, "view": 0} -2023-12-16T14:09:35.191Z INFO approving block {"height": 7233, "hash": "6bae7b6475829ce9e302ee3c7dc4e5aa65726dc8ba3fea96a35dba549cf0a6b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd5aa35203c71a27e450ab6de9a3c2ff014235afcc2e4f1f702a741a214bdfd8"} -2023-12-16T14:09:35.192Z debug frostfs-node/morph.go:229 new block {"index": 7233} -2023-12-16T14:09:35.221Z INFO initializing dbft {"height": 7234, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:35.295Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7232, "blockHeight": 7232, "took": "298.277545ms"} -2023-12-16T14:09:36.104Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7233, "blockHeight": 7233, "took": "106.184787ms"} -2023-12-16T14:09:36.192Z INFO sending PrepareRequest {"height": 7234, "view": 0} -2023-12-16T14:09:36.192Z INFO sending Commit {"height": 7234, "view": 0} -2023-12-16T14:09:36.192Z INFO approving block {"height": 7234, "hash": "32b977505db5b38643a49b8b9a39faf5fe659e06a91fe3c0742cf1a598094463", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bae7b6475829ce9e302ee3c7dc4e5aa65726dc8ba3fea96a35dba549cf0a6b9"} -2023-12-16T14:09:36.194Z INFO initializing dbft {"height": 7235, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:36.203Z debug frostfs-node/morph.go:229 new block {"index": 7234} -2023-12-16T14:09:37.065Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7234, "blockHeight": 7234, "took": "66.14309ms"} -2023-12-16T14:09:37.194Z INFO sending PrepareRequest {"height": 7235, "view": 0} -2023-12-16T14:09:37.195Z INFO sending Commit {"height": 7235, "view": 0} -2023-12-16T14:09:37.195Z INFO approving block {"height": 7235, "hash": "0b7b565c38cd61e20f3f5ab415d28a79a056a8fc533c0a29ae43717983cd7943", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32b977505db5b38643a49b8b9a39faf5fe659e06a91fe3c0742cf1a598094463"} -2023-12-16T14:09:37.197Z INFO initializing dbft {"height": 7236, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:37.198Z debug frostfs-node/morph.go:229 new block {"index": 7235} -2023-12-16T14:09:38.105Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7235, "blockHeight": 7235, "took": "105.571897ms"} -2023-12-16T14:09:38.197Z INFO sending PrepareRequest {"height": 7236, "view": 0} -2023-12-16T14:09:38.198Z INFO sending Commit {"height": 7236, "view": 0} -2023-12-16T14:09:38.198Z INFO approving block {"height": 7236, "hash": "5c9d0f76d120579be9688368e526aa1081cda86c662f5e302e7b2b34cb20b58c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b7b565c38cd61e20f3f5ab415d28a79a056a8fc533c0a29ae43717983cd7943"} -2023-12-16T14:09:38.200Z INFO initializing dbft {"height": 7237, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:38.225Z debug frostfs-node/morph.go:229 new block {"index": 7236} -2023-12-16T14:09:39.200Z INFO sending PrepareRequest {"height": 7237, "view": 0} -2023-12-16T14:09:39.201Z INFO sending Commit {"height": 7237, "view": 0} -2023-12-16T14:09:39.201Z INFO approving block {"height": 7237, "hash": "f78ed187546accf136412996763516ade2b6ace3224c3c6e28a5c205dae3cb6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c9d0f76d120579be9688368e526aa1081cda86c662f5e302e7b2b34cb20b58c"} -2023-12-16T14:09:39.203Z INFO initializing dbft {"height": 7238, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:39.204Z debug frostfs-node/morph.go:229 new block {"index": 7237} -2023-12-16T14:09:39.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7236, "blockHeight": 7236, "took": "883.041342ms"} -2023-12-16T14:09:40.439Z INFO sending PrepareRequest {"height": 7238, "view": 0} -2023-12-16T14:09:40.440Z INFO sending Commit {"height": 7238, "view": 0} -2023-12-16T14:09:40.440Z INFO approving block {"height": 7238, "hash": "4f755b9148bc168bfc0ca1dbbe02a0e1660af1763de0cb1c4d62d357131aa517", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f78ed187546accf136412996763516ade2b6ace3224c3c6e28a5c205dae3cb6d"} -2023-12-16T14:09:40.466Z INFO initializing dbft {"height": 7239, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:40.466Z debug frostfs-node/morph.go:229 new block {"index": 7238} -2023-12-16T14:09:41.366Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7237, "blockHeight": 7237, "took": "1.363403431s"} -2023-12-16T14:09:41.442Z INFO sending PrepareRequest {"height": 7239, "view": 0} -2023-12-16T14:09:41.442Z INFO sending Commit {"height": 7239, "view": 0} -2023-12-16T14:09:41.442Z INFO approving block {"height": 7239, "hash": "7a735cf5ca489653290613632f8dfe715aa831b52b92a991eed377c81fb7cb9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f755b9148bc168bfc0ca1dbbe02a0e1660af1763de0cb1c4d62d357131aa517"} -2023-12-16T14:09:41.444Z INFO initializing dbft {"height": 7240, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:41.565Z debug frostfs-node/morph.go:229 new block {"index": 7239} -2023-12-16T14:09:41.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7238, "blockHeight": 7238, "took": "208.406228ms"} -2023-12-16T14:09:42.443Z INFO sending PrepareRequest {"height": 7240, "view": 0} -2023-12-16T14:09:42.443Z INFO sending Commit {"height": 7240, "view": 0} -2023-12-16T14:09:42.444Z INFO approving block {"height": 7240, "hash": "6c34ae54c9f0bd069c29dc21fcdc3e72ca96caf67d0bf3ba024d614d7be9377e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a735cf5ca489653290613632f8dfe715aa831b52b92a991eed377c81fb7cb9b"} -2023-12-16T14:09:42.445Z INFO initializing dbft {"height": 7241, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:42.445Z debug frostfs-node/morph.go:229 new block {"index": 7240} -2023-12-16T14:09:42.486Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7239, "blockHeight": 7239, "took": "118.579271ms"} -2023-12-16T14:09:43.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7240, "blockHeight": 7240, "took": "44.701886ms"} -2023-12-16T14:09:43.446Z INFO sending PrepareRequest {"height": 7241, "view": 0} -2023-12-16T14:09:43.446Z INFO sending Commit {"height": 7241, "view": 0} -2023-12-16T14:09:43.447Z INFO approving block {"height": 7241, "hash": "226c05c88b07d3b95a4220b85cde9ff1e6b899cf97cac77c20c3a5071a1872d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c34ae54c9f0bd069c29dc21fcdc3e72ca96caf67d0bf3ba024d614d7be9377e"} -2023-12-16T14:09:43.448Z INFO initializing dbft {"height": 7242, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:43.451Z debug frostfs-node/morph.go:229 new block {"index": 7241} -2023-12-16T14:09:44.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7241, "blockHeight": 7241, "took": "31.935409ms"} -2023-12-16T14:09:44.448Z INFO sending PrepareRequest {"height": 7242, "view": 0} -2023-12-16T14:09:44.449Z INFO sending Commit {"height": 7242, "view": 0} -2023-12-16T14:09:44.449Z INFO approving block {"height": 7242, "hash": "bd080041ba94ef67d083ff4f1f053e580a638673e63b3032e3dddc1183b72dc6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "226c05c88b07d3b95a4220b85cde9ff1e6b899cf97cac77c20c3a5071a1872d5"} -2023-12-16T14:09:44.451Z INFO initializing dbft {"height": 7243, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:44.454Z debug frostfs-node/morph.go:229 new block {"index": 7242} -2023-12-16T14:09:45.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7242, "blockHeight": 7242, "took": "26.513841ms"} -2023-12-16T14:09:45.451Z INFO sending PrepareRequest {"height": 7243, "view": 0} -2023-12-16T14:09:45.451Z INFO sending Commit {"height": 7243, "view": 0} -2023-12-16T14:09:45.451Z INFO approving block {"height": 7243, "hash": "e11eb9c1086ab0766ab5a5ac4e7570042561f3402ae35488cb50b8129083921e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd080041ba94ef67d083ff4f1f053e580a638673e63b3032e3dddc1183b72dc6"} -2023-12-16T14:09:45.453Z INFO initializing dbft {"height": 7244, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:45.454Z debug frostfs-node/morph.go:229 new block {"index": 7243} -2023-12-16T14:09:46.453Z INFO sending PrepareRequest {"height": 7244, "view": 0} -2023-12-16T14:09:46.453Z INFO sending Commit {"height": 7244, "view": 0} -2023-12-16T14:09:46.454Z INFO approving block {"height": 7244, "hash": "0961eb43f534f824a24000a6eec7f93b1423c48e14143cbc364670ba1519c3c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e11eb9c1086ab0766ab5a5ac4e7570042561f3402ae35488cb50b8129083921e"} -2023-12-16T14:09:46.467Z debug frostfs-node/morph.go:229 new block {"index": 7244} -2023-12-16T14:09:46.468Z INFO initializing dbft {"height": 7245, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:46.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7243, "blockHeight": 7243, "took": "126.072752ms"} -2023-12-16T14:09:47.393Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7244, "blockHeight": 7244, "took": "23.004315ms"} -2023-12-16T14:09:47.455Z INFO sending PrepareRequest {"height": 7245, "view": 0} -2023-12-16T14:09:47.456Z INFO sending Commit {"height": 7245, "view": 0} -2023-12-16T14:09:47.456Z INFO approving block {"height": 7245, "hash": "ac046519b2154bbed44f50d7f27f1dc5f7d71a89c0ec269d804e46820df3d345", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0961eb43f534f824a24000a6eec7f93b1423c48e14143cbc364670ba1519c3c5"} -2023-12-16T14:09:47.462Z INFO initializing dbft {"height": 7246, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:47.463Z debug frostfs-node/morph.go:229 new block {"index": 7245} -2023-12-16T14:09:48.385Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7245, "blockHeight": 7245, "took": "14.254199ms"} -2023-12-16T14:09:48.458Z INFO sending PrepareRequest {"height": 7246, "view": 0} -2023-12-16T14:09:48.458Z INFO sending Commit {"height": 7246, "view": 0} -2023-12-16T14:09:48.459Z INFO approving block {"height": 7246, "hash": "1d035d5162ce3aa0090de43c72e2683b93de7c6af4c38ca8261e5902c198525e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac046519b2154bbed44f50d7f27f1dc5f7d71a89c0ec269d804e46820df3d345"} -2023-12-16T14:09:48.461Z INFO initializing dbft {"height": 7247, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:48.462Z debug frostfs-node/morph.go:229 new block {"index": 7246} -2023-12-16T14:09:49.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7246, "blockHeight": 7246, "took": "24.683581ms"} -2023-12-16T14:09:49.460Z INFO sending PrepareRequest {"height": 7247, "view": 0} -2023-12-16T14:09:49.460Z INFO sending Commit {"height": 7247, "view": 0} -2023-12-16T14:09:49.460Z INFO approving block {"height": 7247, "hash": "16b6dc5fa17af43321366240a99ace05b0d5127111fdee32a02b8c7c6ee05b21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d035d5162ce3aa0090de43c72e2683b93de7c6af4c38ca8261e5902c198525e"} -2023-12-16T14:09:49.464Z INFO initializing dbft {"height": 7248, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:49.465Z debug frostfs-node/morph.go:229 new block {"index": 7247} -2023-12-16T14:09:50.397Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7247, "blockHeight": 7247, "took": "25.17223ms"} -2023-12-16T14:09:50.462Z INFO sending PrepareRequest {"height": 7248, "view": 0} -2023-12-16T14:09:50.463Z INFO sending Commit {"height": 7248, "view": 0} -2023-12-16T14:09:50.463Z INFO approving block {"height": 7248, "hash": "45a1899c6fa2735d4f6de5354660635b272bf79cf7f392ec524fca8d40cb2a3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16b6dc5fa17af43321366240a99ace05b0d5127111fdee32a02b8c7c6ee05b21"} -2023-12-16T14:09:50.465Z INFO initializing dbft {"height": 7249, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:50.467Z debug frostfs-node/morph.go:229 new block {"index": 7248} -2023-12-16T14:09:51.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7248, "blockHeight": 7248, "took": "28.717343ms"} -2023-12-16T14:09:51.465Z INFO sending PrepareRequest {"height": 7249, "view": 0} -2023-12-16T14:09:51.465Z INFO sending Commit {"height": 7249, "view": 0} -2023-12-16T14:09:51.466Z INFO approving block {"height": 7249, "hash": "0c8b12bc12a43e9d0b39ed0c1122ff8b78e9640479308b71ab8b2ea8e6747303", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45a1899c6fa2735d4f6de5354660635b272bf79cf7f392ec524fca8d40cb2a3d"} -2023-12-16T14:09:51.468Z INFO initializing dbft {"height": 7250, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:51.469Z debug frostfs-node/morph.go:229 new block {"index": 7249} -2023-12-16T14:09:52.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7249, "blockHeight": 7249, "took": "21.10409ms"} -2023-12-16T14:09:52.467Z INFO sending PrepareRequest {"height": 7250, "view": 0} -2023-12-16T14:09:52.467Z INFO sending Commit {"height": 7250, "view": 0} -2023-12-16T14:09:52.468Z INFO approving block {"height": 7250, "hash": "e7671a6ab9ecd4a2614573be6b958ac7503300436d01d37fc609c320c46f7be7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c8b12bc12a43e9d0b39ed0c1122ff8b78e9640479308b71ab8b2ea8e6747303"} -2023-12-16T14:09:52.469Z INFO initializing dbft {"height": 7251, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:52.471Z debug frostfs-node/morph.go:229 new block {"index": 7250} -2023-12-16T14:09:52.474Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:09:52.487Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:09:52.488Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:09:53.471Z INFO sending PrepareRequest {"height": 7251, "view": 0} -2023-12-16T14:09:53.472Z INFO sending Commit {"height": 7251, "view": 0} -2023-12-16T14:09:53.472Z INFO approving block {"height": 7251, "hash": "e07bbe3e4259a711cb9caca1755f28e4bf42cc31a74c5583e530654c88652896", "tx_count": 2, "merkle": "8569e055f78e951c9d087a8cf3bce5e1b3893a4d108a86f5bad1e429db4eef3f", "prev": "e7671a6ab9ecd4a2614573be6b958ac7503300436d01d37fc609c320c46f7be7"} -2023-12-16T14:09:53.473Z INFO runtime log {"tx": "e88687ce83e9b8750e38d08937f2ec7d0692c3b8378f3c8943cf7ecb8f09ca90", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:09:53.473Z INFO runtime log {"tx": "e88687ce83e9b8750e38d08937f2ec7d0692c3b8378f3c8943cf7ecb8f09ca90", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:09:53.474Z INFO initializing dbft {"height": 7252, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:53.475Z debug frostfs-node/morph.go:229 new block {"index": 7251} -2023-12-16T14:09:53.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7250, "blockHeight": 7250, "took": "132.774218ms"} -2023-12-16T14:09:54.411Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7251, "blockHeight": 7251, "took": "25.654864ms"} -2023-12-16T14:09:54.474Z INFO sending PrepareRequest {"height": 7252, "view": 0} -2023-12-16T14:09:54.474Z INFO sending Commit {"height": 7252, "view": 0} -2023-12-16T14:09:54.475Z INFO approving block {"height": 7252, "hash": "fd3a49f2027263deea8f534049a1faf65ae77fe88cf1847e3c2f299cbe239e91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e07bbe3e4259a711cb9caca1755f28e4bf42cc31a74c5583e530654c88652896"} -2023-12-16T14:09:54.477Z INFO initializing dbft {"height": 7253, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:54.477Z debug frostfs-node/morph.go:229 new block {"index": 7252} -2023-12-16T14:09:55.406Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7252, "blockHeight": 7252, "took": "19.240015ms"} -2023-12-16T14:09:55.476Z INFO sending PrepareRequest {"height": 7253, "view": 0} -2023-12-16T14:09:55.476Z INFO sending Commit {"height": 7253, "view": 0} -2023-12-16T14:09:55.477Z INFO approving block {"height": 7253, "hash": "51dc111bc6874da43a727e1a5a23005223c63d1ab00931a842f8227a153f4464", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd3a49f2027263deea8f534049a1faf65ae77fe88cf1847e3c2f299cbe239e91"} -2023-12-16T14:09:55.478Z INFO initializing dbft {"height": 7254, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:55.479Z debug frostfs-node/morph.go:229 new block {"index": 7253} -2023-12-16T14:09:56.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7253, "blockHeight": 7253, "took": "17.51027ms"} -2023-12-16T14:09:56.478Z INFO sending PrepareRequest {"height": 7254, "view": 0} -2023-12-16T14:09:56.479Z INFO sending Commit {"height": 7254, "view": 0} -2023-12-16T14:09:56.479Z INFO approving block {"height": 7254, "hash": "b30661511593e1d2cac862edc5831563b26d4017f4e2bf90e1a3dcc7fce04eaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51dc111bc6874da43a727e1a5a23005223c63d1ab00931a842f8227a153f4464"} -2023-12-16T14:09:56.481Z INFO initializing dbft {"height": 7255, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:56.482Z debug frostfs-node/morph.go:229 new block {"index": 7254} -2023-12-16T14:09:57.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7254, "blockHeight": 7254, "took": "16.350298ms"} -2023-12-16T14:09:57.482Z INFO sending PrepareRequest {"height": 7255, "view": 0} -2023-12-16T14:09:57.482Z INFO sending Commit {"height": 7255, "view": 0} -2023-12-16T14:09:57.483Z INFO approving block {"height": 7255, "hash": "f59b657fb1c1b4a938e432bfdca8a5d76c72cd476a2da7489723d5356cdc5c25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b30661511593e1d2cac862edc5831563b26d4017f4e2bf90e1a3dcc7fce04eaa"} -2023-12-16T14:09:57.488Z INFO initializing dbft {"height": 7256, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:57.489Z debug frostfs-node/morph.go:229 new block {"index": 7255} -2023-12-16T14:09:58.430Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7255, "blockHeight": 7255, "took": "40.579332ms"} -2023-12-16T14:09:58.485Z INFO sending PrepareRequest {"height": 7256, "view": 0} -2023-12-16T14:09:58.485Z INFO sending Commit {"height": 7256, "view": 0} -2023-12-16T14:09:58.486Z INFO approving block {"height": 7256, "hash": "8be8d4354adaa6f4ca4baa7a60b7683e7e5ba29ec705b09b31cc5e3d734781e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f59b657fb1c1b4a938e432bfdca8a5d76c72cd476a2da7489723d5356cdc5c25"} -2023-12-16T14:09:58.487Z INFO initializing dbft {"height": 7257, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:58.488Z debug frostfs-node/morph.go:229 new block {"index": 7256} -2023-12-16T14:09:59.410Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7256, "blockHeight": 7256, "took": "19.545509ms"} -2023-12-16T14:09:59.487Z INFO sending PrepareRequest {"height": 7257, "view": 0} -2023-12-16T14:09:59.487Z INFO sending Commit {"height": 7257, "view": 0} -2023-12-16T14:09:59.488Z INFO approving block {"height": 7257, "hash": "1ca6bd1f4438aa28152e15ab4dafec5301bdff55f8129e9e9425a34d174259d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8be8d4354adaa6f4ca4baa7a60b7683e7e5ba29ec705b09b31cc5e3d734781e6"} -2023-12-16T14:09:59.491Z INFO initializing dbft {"height": 7258, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:09:59.492Z debug frostfs-node/morph.go:229 new block {"index": 7257} -2023-12-16T14:10:00.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7257, "blockHeight": 7257, "took": "27.684444ms"} -2023-12-16T14:10:00.490Z INFO sending PrepareRequest {"height": 7258, "view": 0} -2023-12-16T14:10:00.490Z INFO sending Commit {"height": 7258, "view": 0} -2023-12-16T14:10:00.491Z INFO approving block {"height": 7258, "hash": "3fb3cdd9b9fd10cb0bc26dddf4c50d1d7f4ceeb80c39c4653f4164db218babd9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ca6bd1f4438aa28152e15ab4dafec5301bdff55f8129e9e9425a34d174259d7"} -2023-12-16T14:10:00.493Z INFO initializing dbft {"height": 7259, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:00.494Z debug frostfs-node/morph.go:229 new block {"index": 7258} -2023-12-16T14:10:01.410Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7258, "blockHeight": 7258, "took": "17.621955ms"} -2023-12-16T14:10:01.491Z INFO sending PrepareRequest {"height": 7259, "view": 0} -2023-12-16T14:10:01.492Z INFO sending Commit {"height": 7259, "view": 0} -2023-12-16T14:10:01.492Z INFO approving block {"height": 7259, "hash": "5f769444d8d04c24773721ddb44fdf19ba0db04af6506db6a10e56c50dac93fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3fb3cdd9b9fd10cb0bc26dddf4c50d1d7f4ceeb80c39c4653f4164db218babd9"} -2023-12-16T14:10:01.493Z INFO initializing dbft {"height": 7260, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:01.495Z debug frostfs-node/morph.go:229 new block {"index": 7259} -2023-12-16T14:10:02.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7259, "blockHeight": 7259, "took": "16.137593ms"} -2023-12-16T14:10:02.493Z INFO sending PrepareRequest {"height": 7260, "view": 0} -2023-12-16T14:10:02.494Z INFO sending Commit {"height": 7260, "view": 0} -2023-12-16T14:10:02.494Z INFO approving block {"height": 7260, "hash": "c5d703a6da5dd688c4eae49d739ef7151595971e745e8078008af2af88b8606c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f769444d8d04c24773721ddb44fdf19ba0db04af6506db6a10e56c50dac93fe"} -2023-12-16T14:10:02.497Z INFO initializing dbft {"height": 7261, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:02.498Z debug frostfs-node/morph.go:229 new block {"index": 7260} -2023-12-16T14:10:03.430Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7260, "blockHeight": 7260, "took": "35.824829ms"} -2023-12-16T14:10:03.496Z INFO sending PrepareRequest {"height": 7261, "view": 0} -2023-12-16T14:10:03.497Z INFO sending Commit {"height": 7261, "view": 0} -2023-12-16T14:10:03.497Z INFO approving block {"height": 7261, "hash": "04d1f1b983069c6beeee751534650cb2464d7f36007a658b018bf0a8ea60a56a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5d703a6da5dd688c4eae49d739ef7151595971e745e8078008af2af88b8606c"} -2023-12-16T14:10:03.500Z INFO initializing dbft {"height": 7262, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:03.500Z debug frostfs-node/morph.go:229 new block {"index": 7261} -2023-12-16T14:10:04.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7261, "blockHeight": 7261, "took": "20.63683ms"} -2023-12-16T14:10:04.499Z INFO sending PrepareRequest {"height": 7262, "view": 0} -2023-12-16T14:10:04.500Z INFO sending Commit {"height": 7262, "view": 0} -2023-12-16T14:10:04.500Z INFO approving block {"height": 7262, "hash": "e846cfc8d925402d2c4a752fb2e2f330a23b218ff2f274ffa0707c7fd6805e87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04d1f1b983069c6beeee751534650cb2464d7f36007a658b018bf0a8ea60a56a"} -2023-12-16T14:10:04.502Z INFO initializing dbft {"height": 7263, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:04.503Z debug frostfs-node/morph.go:229 new block {"index": 7262} -2023-12-16T14:10:05.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7262, "blockHeight": 7262, "took": "24.9079ms"} -2023-12-16T14:10:05.502Z INFO sending PrepareRequest {"height": 7263, "view": 0} -2023-12-16T14:10:05.502Z INFO sending Commit {"height": 7263, "view": 0} -2023-12-16T14:10:05.503Z INFO approving block {"height": 7263, "hash": "55f179fa63e771ebbe7534939b0b743633227c9fce259a3d2a09a7a947347e9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e846cfc8d925402d2c4a752fb2e2f330a23b218ff2f274ffa0707c7fd6805e87"} -2023-12-16T14:10:05.504Z INFO initializing dbft {"height": 7264, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:05.506Z debug frostfs-node/morph.go:229 new block {"index": 7263} -2023-12-16T14:10:06.417Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7263, "blockHeight": 7263, "took": "20.763729ms"} -2023-12-16T14:10:06.505Z INFO sending PrepareRequest {"height": 7264, "view": 0} -2023-12-16T14:10:06.505Z INFO sending Commit {"height": 7264, "view": 0} -2023-12-16T14:10:06.505Z INFO approving block {"height": 7264, "hash": "4d997e7a0000b559c77534d9939814a71778fa8f0b1f33f977bb65695836eb1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55f179fa63e771ebbe7534939b0b743633227c9fce259a3d2a09a7a947347e9e"} -2023-12-16T14:10:06.507Z INFO initializing dbft {"height": 7265, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:06.511Z debug frostfs-node/morph.go:229 new block {"index": 7264} -2023-12-16T14:10:07.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7264, "blockHeight": 7264, "took": "47.112326ms"} -2023-12-16T14:10:07.507Z INFO sending PrepareRequest {"height": 7265, "view": 0} -2023-12-16T14:10:07.507Z INFO sending Commit {"height": 7265, "view": 0} -2023-12-16T14:10:07.508Z INFO approving block {"height": 7265, "hash": "13c196c1e543040a67db70d198d69fda08ea5419fadce94363ed6b42d724ef9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d997e7a0000b559c77534d9939814a71778fa8f0b1f33f977bb65695836eb1c"} -2023-12-16T14:10:07.510Z INFO initializing dbft {"height": 7266, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:07.511Z debug frostfs-node/morph.go:229 new block {"index": 7265} -2023-12-16T14:10:08.509Z INFO sending PrepareRequest {"height": 7266, "view": 0} -2023-12-16T14:10:08.509Z INFO sending Commit {"height": 7266, "view": 0} -2023-12-16T14:10:08.509Z INFO approving block {"height": 7266, "hash": "48e31f7a7c05b298277622bd6379929a347eede0b4307d52b417af8776ba2a5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13c196c1e543040a67db70d198d69fda08ea5419fadce94363ed6b42d724ef9d"} -2023-12-16T14:10:08.510Z INFO initializing dbft {"height": 7267, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:08.511Z debug frostfs-node/morph.go:229 new block {"index": 7266} -2023-12-16T14:10:08.832Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7265, "blockHeight": 7265, "took": "434.50455ms"} -2023-12-16T14:10:09.434Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7266, "blockHeight": 7266, "took": "35.095488ms"} -2023-12-16T14:10:09.511Z INFO sending PrepareRequest {"height": 7267, "view": 0} -2023-12-16T14:10:09.512Z INFO sending Commit {"height": 7267, "view": 0} -2023-12-16T14:10:09.512Z INFO approving block {"height": 7267, "hash": "3e3dc205612a6c4fab03a7a79abc57cdab7d01231691bd4d475fedf203e9c14b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48e31f7a7c05b298277622bd6379929a347eede0b4307d52b417af8776ba2a5d"} -2023-12-16T14:10:09.515Z INFO initializing dbft {"height": 7268, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:09.517Z debug frostfs-node/morph.go:229 new block {"index": 7267} -2023-12-16T14:10:10.424Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7267, "blockHeight": 7267, "took": "25.070139ms"} -2023-12-16T14:10:10.513Z INFO sending PrepareRequest {"height": 7268, "view": 0} -2023-12-16T14:10:10.515Z INFO sending Commit {"height": 7268, "view": 0} -2023-12-16T14:10:10.515Z INFO approving block {"height": 7268, "hash": "10028ae98094052e5638586e87ee1862589b77124a257d43f32d10795f4cab38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e3dc205612a6c4fab03a7a79abc57cdab7d01231691bd4d475fedf203e9c14b"} -2023-12-16T14:10:10.517Z INFO initializing dbft {"height": 7269, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:10.518Z debug frostfs-node/morph.go:229 new block {"index": 7268} -2023-12-16T14:10:11.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7268, "blockHeight": 7268, "took": "35.637262ms"} -2023-12-16T14:10:11.516Z INFO sending PrepareRequest {"height": 7269, "view": 0} -2023-12-16T14:10:11.517Z INFO sending Commit {"height": 7269, "view": 0} -2023-12-16T14:10:11.517Z INFO approving block {"height": 7269, "hash": "b64703e275eafd0e24d8e792a8a0ba631eac28d9e149053668965ba96a45e74b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10028ae98094052e5638586e87ee1862589b77124a257d43f32d10795f4cab38"} -2023-12-16T14:10:11.519Z INFO initializing dbft {"height": 7270, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:11.520Z debug frostfs-node/morph.go:229 new block {"index": 7269} -2023-12-16T14:10:12.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7269, "blockHeight": 7269, "took": "11.620553ms"} -2023-12-16T14:10:12.519Z INFO sending PrepareRequest {"height": 7270, "view": 0} -2023-12-16T14:10:12.519Z INFO sending Commit {"height": 7270, "view": 0} -2023-12-16T14:10:12.519Z INFO approving block {"height": 7270, "hash": "578053e419d5abe30e419b15f1d3021896e16af45db7c17032d31f67ebd68a6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b64703e275eafd0e24d8e792a8a0ba631eac28d9e149053668965ba96a45e74b"} -2023-12-16T14:10:12.521Z INFO initializing dbft {"height": 7271, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:12.521Z debug frostfs-node/morph.go:229 new block {"index": 7270} -2023-12-16T14:10:13.418Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7270, "blockHeight": 7270, "took": "16.973805ms"} -2023-12-16T14:10:13.521Z INFO sending PrepareRequest {"height": 7271, "view": 0} -2023-12-16T14:10:13.521Z INFO sending Commit {"height": 7271, "view": 0} -2023-12-16T14:10:13.521Z INFO approving block {"height": 7271, "hash": "359a1b43bc01b32db6f7aca1c0abb6c38c41469571576fea2568d682f199babc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "578053e419d5abe30e419b15f1d3021896e16af45db7c17032d31f67ebd68a6c"} -2023-12-16T14:10:13.523Z INFO initializing dbft {"height": 7272, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:13.524Z debug frostfs-node/morph.go:229 new block {"index": 7271} -2023-12-16T14:10:14.416Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7271, "blockHeight": 7271, "took": "13.622886ms"} -2023-12-16T14:10:14.523Z INFO sending PrepareRequest {"height": 7272, "view": 0} -2023-12-16T14:10:14.523Z INFO sending Commit {"height": 7272, "view": 0} -2023-12-16T14:10:14.524Z INFO approving block {"height": 7272, "hash": "6b4b1d0bba8845d110e2e43e13e0fb7bc22d15ecbe81353e1ca74c27c77ff1d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "359a1b43bc01b32db6f7aca1c0abb6c38c41469571576fea2568d682f199babc"} -2023-12-16T14:10:14.525Z INFO initializing dbft {"height": 7273, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:14.526Z debug frostfs-node/morph.go:229 new block {"index": 7272} -2023-12-16T14:10:15.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7272, "blockHeight": 7272, "took": "11.477804ms"} -2023-12-16T14:10:15.525Z INFO sending PrepareRequest {"height": 7273, "view": 0} -2023-12-16T14:10:15.525Z INFO sending Commit {"height": 7273, "view": 0} -2023-12-16T14:10:15.527Z INFO approving block {"height": 7273, "hash": "0c0c603ab16a6840cec9a9966c477e3b401954a68b4bb61458fda37f0473d3ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b4b1d0bba8845d110e2e43e13e0fb7bc22d15ecbe81353e1ca74c27c77ff1d5"} -2023-12-16T14:10:15.529Z INFO initializing dbft {"height": 7274, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:15.530Z debug frostfs-node/morph.go:229 new block {"index": 7273} -2023-12-16T14:10:16.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7273, "blockHeight": 7273, "took": "18.702865ms"} -2023-12-16T14:10:16.529Z INFO sending PrepareRequest {"height": 7274, "view": 0} -2023-12-16T14:10:16.529Z INFO sending Commit {"height": 7274, "view": 0} -2023-12-16T14:10:16.529Z INFO approving block {"height": 7274, "hash": "49b84e6baf56c5ecf2b1852ae4661a1b67a80a169ad1c089cc7aaed5269949e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c0c603ab16a6840cec9a9966c477e3b401954a68b4bb61458fda37f0473d3ab"} -2023-12-16T14:10:16.530Z INFO initializing dbft {"height": 7275, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:16.532Z debug frostfs-node/morph.go:229 new block {"index": 7274} -2023-12-16T14:10:17.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7274, "blockHeight": 7274, "took": "15.883427ms"} -2023-12-16T14:10:17.531Z INFO sending PrepareRequest {"height": 7275, "view": 0} -2023-12-16T14:10:17.531Z INFO sending Commit {"height": 7275, "view": 0} -2023-12-16T14:10:17.531Z INFO approving block {"height": 7275, "hash": "a9d4e79e895e37c330f2c6e8df602ea6b56a6e4ad5e9d1619b24bf54b55ce477", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49b84e6baf56c5ecf2b1852ae4661a1b67a80a169ad1c089cc7aaed5269949e9"} -2023-12-16T14:10:17.532Z INFO initializing dbft {"height": 7276, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:17.533Z debug frostfs-node/morph.go:229 new block {"index": 7275} -2023-12-16T14:10:18.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7275, "blockHeight": 7275, "took": "16.863418ms"} -2023-12-16T14:10:18.532Z INFO sending PrepareRequest {"height": 7276, "view": 0} -2023-12-16T14:10:18.533Z INFO sending Commit {"height": 7276, "view": 0} -2023-12-16T14:10:18.533Z INFO approving block {"height": 7276, "hash": "d46c080a44c52a1cad73345f9cf2ea4b874a98326ecd3390b82ae3de804b4caa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9d4e79e895e37c330f2c6e8df602ea6b56a6e4ad5e9d1619b24bf54b55ce477"} -2023-12-16T14:10:18.535Z INFO initializing dbft {"height": 7277, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:18.536Z debug frostfs-node/morph.go:229 new block {"index": 7276} -2023-12-16T14:10:19.426Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7276, "blockHeight": 7276, "took": "18.827891ms"} -2023-12-16T14:10:19.534Z INFO sending PrepareRequest {"height": 7277, "view": 0} -2023-12-16T14:10:19.536Z INFO sending Commit {"height": 7277, "view": 0} -2023-12-16T14:10:19.537Z INFO approving block {"height": 7277, "hash": "5e057a5bc1daf4a6c76018dcd27a2486b5c30bad818cb2dd2f6de0770681630f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d46c080a44c52a1cad73345f9cf2ea4b874a98326ecd3390b82ae3de804b4caa"} -2023-12-16T14:10:19.539Z INFO initializing dbft {"height": 7278, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:19.540Z debug frostfs-node/morph.go:229 new block {"index": 7277} -2023-12-16T14:10:20.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7277, "blockHeight": 7277, "took": "19.31906ms"} -2023-12-16T14:10:20.538Z INFO sending PrepareRequest {"height": 7278, "view": 0} -2023-12-16T14:10:20.539Z INFO sending Commit {"height": 7278, "view": 0} -2023-12-16T14:10:20.539Z INFO approving block {"height": 7278, "hash": "4a5ad54c904e73c9f69816f91a11decde91906358d9443ab0c04da6b08c9d125", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e057a5bc1daf4a6c76018dcd27a2486b5c30bad818cb2dd2f6de0770681630f"} -2023-12-16T14:10:20.542Z INFO initializing dbft {"height": 7279, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:20.542Z debug frostfs-node/morph.go:229 new block {"index": 7278} -2023-12-16T14:10:21.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7278, "blockHeight": 7278, "took": "19.536179ms"} -2023-12-16T14:10:21.540Z INFO sending PrepareRequest {"height": 7279, "view": 0} -2023-12-16T14:10:21.540Z INFO sending Commit {"height": 7279, "view": 0} -2023-12-16T14:10:21.541Z INFO approving block {"height": 7279, "hash": "c31adb2dfa57e764064d70bdbd2a49b9993ea8c990dd8039101a4d1e1900dd6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a5ad54c904e73c9f69816f91a11decde91906358d9443ab0c04da6b08c9d125"} -2023-12-16T14:10:21.543Z INFO initializing dbft {"height": 7280, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:21.544Z debug frostfs-node/morph.go:229 new block {"index": 7279} -2023-12-16T14:10:22.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7279, "blockHeight": 7279, "took": "19.293189ms"} -2023-12-16T14:10:22.542Z INFO sending PrepareRequest {"height": 7280, "view": 0} -2023-12-16T14:10:22.542Z INFO sending Commit {"height": 7280, "view": 0} -2023-12-16T14:10:22.543Z INFO approving block {"height": 7280, "hash": "c3e9df06b81f0fd3e086c3e2bf4fb33483f9fa95c833a13234cb8ffdb3b5bbeb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c31adb2dfa57e764064d70bdbd2a49b9993ea8c990dd8039101a4d1e1900dd6b"} -2023-12-16T14:10:22.544Z INFO initializing dbft {"height": 7281, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:22.545Z debug frostfs-node/morph.go:229 new block {"index": 7280} -2023-12-16T14:10:23.426Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7280, "blockHeight": 7280, "took": "15.768017ms"} -2023-12-16T14:10:23.544Z INFO sending PrepareRequest {"height": 7281, "view": 0} -2023-12-16T14:10:23.544Z INFO sending Commit {"height": 7281, "view": 0} -2023-12-16T14:10:23.545Z INFO approving block {"height": 7281, "hash": "47ee89c5df22401800dd91b58066e0544f3e0cd2b2c013677e88f2de6bb745da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3e9df06b81f0fd3e086c3e2bf4fb33483f9fa95c833a13234cb8ffdb3b5bbeb"} -2023-12-16T14:10:23.547Z INFO initializing dbft {"height": 7282, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:23.548Z debug frostfs-node/morph.go:229 new block {"index": 7281} -2023-12-16T14:10:24.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7281, "blockHeight": 7281, "took": "17.784288ms"} -2023-12-16T14:10:24.546Z INFO sending PrepareRequest {"height": 7282, "view": 0} -2023-12-16T14:10:24.547Z INFO sending Commit {"height": 7282, "view": 0} -2023-12-16T14:10:24.547Z INFO approving block {"height": 7282, "hash": "093b24cefeb8aa020e583c55c913937a35f9ca620cacdcdbed56cf43679762a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47ee89c5df22401800dd91b58066e0544f3e0cd2b2c013677e88f2de6bb745da"} -2023-12-16T14:10:24.548Z INFO initializing dbft {"height": 7283, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:24.549Z debug frostfs-node/morph.go:229 new block {"index": 7282} -2023-12-16T14:10:25.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7282, "blockHeight": 7282, "took": "20.107533ms"} -2023-12-16T14:10:25.549Z INFO sending PrepareRequest {"height": 7283, "view": 0} -2023-12-16T14:10:25.549Z INFO sending Commit {"height": 7283, "view": 0} -2023-12-16T14:10:25.550Z INFO approving block {"height": 7283, "hash": "d7cebb85db2c6e613b847f11b92f89930cc6cb8393c291abcaf5c0dd60480be9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "093b24cefeb8aa020e583c55c913937a35f9ca620cacdcdbed56cf43679762a2"} -2023-12-16T14:10:25.551Z INFO initializing dbft {"height": 7284, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:25.557Z debug frostfs-node/morph.go:229 new block {"index": 7283} -2023-12-16T14:10:26.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7283, "blockHeight": 7283, "took": "11.793458ms"} -2023-12-16T14:10:26.551Z INFO sending PrepareRequest {"height": 7284, "view": 0} -2023-12-16T14:10:26.551Z INFO sending Commit {"height": 7284, "view": 0} -2023-12-16T14:10:26.551Z INFO approving block {"height": 7284, "hash": "b117a18d0cdf74cbf48c1151ed395b1720aa5d42b8ba5862ea36bbc0946ff325", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7cebb85db2c6e613b847f11b92f89930cc6cb8393c291abcaf5c0dd60480be9"} -2023-12-16T14:10:26.552Z INFO initializing dbft {"height": 7285, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:26.555Z debug frostfs-node/morph.go:229 new block {"index": 7284} -2023-12-16T14:10:27.428Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7284, "blockHeight": 7284, "took": "14.646082ms"} -2023-12-16T14:10:27.555Z INFO sending PrepareRequest {"height": 7285, "view": 0} -2023-12-16T14:10:27.555Z INFO sending Commit {"height": 7285, "view": 0} -2023-12-16T14:10:27.557Z INFO approving block {"height": 7285, "hash": "2c4c39533bbc7ffc275f6ab0ac23ebe4aa5f53d71a75823b164904a99e96aab5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b117a18d0cdf74cbf48c1151ed395b1720aa5d42b8ba5862ea36bbc0946ff325"} -2023-12-16T14:10:27.559Z INFO initializing dbft {"height": 7286, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:27.561Z debug frostfs-node/morph.go:229 new block {"index": 7285} -2023-12-16T14:10:28.438Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7285, "blockHeight": 7285, "took": "22.768491ms"} -2023-12-16T14:10:28.558Z INFO sending PrepareRequest {"height": 7286, "view": 0} -2023-12-16T14:10:28.559Z INFO sending Commit {"height": 7286, "view": 0} -2023-12-16T14:10:28.559Z INFO approving block {"height": 7286, "hash": "7a4f283139069be29dc1ecfe3f61cd0c16c4f89c75c4fff2aafe8dc0878c8d73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c4c39533bbc7ffc275f6ab0ac23ebe4aa5f53d71a75823b164904a99e96aab5"} -2023-12-16T14:10:28.561Z INFO initializing dbft {"height": 7287, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:28.562Z debug frostfs-node/morph.go:229 new block {"index": 7286} -2023-12-16T14:10:29.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7286, "blockHeight": 7286, "took": "16.162146ms"} -2023-12-16T14:10:29.561Z INFO sending PrepareRequest {"height": 7287, "view": 0} -2023-12-16T14:10:29.561Z INFO sending Commit {"height": 7287, "view": 0} -2023-12-16T14:10:29.561Z INFO approving block {"height": 7287, "hash": "3fa7acfb51e74c0ff60563f239eac873bff3143f29e5000ab11bbd1006598dbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a4f283139069be29dc1ecfe3f61cd0c16c4f89c75c4fff2aafe8dc0878c8d73"} -2023-12-16T14:10:29.562Z INFO initializing dbft {"height": 7288, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:29.563Z debug frostfs-node/morph.go:229 new block {"index": 7287} -2023-12-16T14:10:30.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7287, "blockHeight": 7287, "took": "13.341113ms"} -2023-12-16T14:10:30.563Z INFO sending PrepareRequest {"height": 7288, "view": 0} -2023-12-16T14:10:30.563Z INFO sending Commit {"height": 7288, "view": 0} -2023-12-16T14:10:30.564Z INFO approving block {"height": 7288, "hash": "3c94181569e605ac3e3ad44579018dd70e8d75a71faa0c1eba54772fd3b541da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3fa7acfb51e74c0ff60563f239eac873bff3143f29e5000ab11bbd1006598dbe"} -2023-12-16T14:10:30.566Z INFO initializing dbft {"height": 7289, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:30.567Z debug frostfs-node/morph.go:229 new block {"index": 7288} -2023-12-16T14:10:30.589Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 31 epoch for daughters"} -2023-12-16T14:10:31.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7288, "blockHeight": 7288, "took": "11.205129ms"} -2023-12-16T14:10:31.566Z INFO sending PrepareRequest {"height": 7289, "view": 0} -2023-12-16T14:10:31.566Z INFO sending Commit {"height": 7289, "view": 0} -2023-12-16T14:10:31.567Z INFO approving block {"height": 7289, "hash": "abcdd6c84048cedfaf11b4223f849c50ea64b35217f62050d3f07177f95d9132", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c94181569e605ac3e3ad44579018dd70e8d75a71faa0c1eba54772fd3b541da"} -2023-12-16T14:10:31.568Z INFO initializing dbft {"height": 7290, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:31.569Z debug frostfs-node/morph.go:229 new block {"index": 7289} -2023-12-16T14:10:31.579Z INFO runtime log {"tx": "a4968a02f15a3574fd1242f74152439a140223fde9e93fc125cf62291f0c357e", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:10:32.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7289, "blockHeight": 7289, "took": "10.133719ms"} -2023-12-16T14:10:32.568Z INFO sending PrepareRequest {"height": 7290, "view": 0} -2023-12-16T14:10:32.568Z INFO sending Commit {"height": 7290, "view": 0} -2023-12-16T14:10:32.569Z INFO approving block {"height": 7290, "hash": "18bc78ff5601a8631756610cccb0b4ec6b9868295ea6d7c60ce0d57d7374e2ae", "tx_count": 1, "merkle": "53937386cb6eec4463a7dfc3d69611e06f64471c0bf83f544457ef8a87f345df", "prev": "abcdd6c84048cedfaf11b4223f849c50ea64b35217f62050d3f07177f95d9132"} -2023-12-16T14:10:32.569Z INFO runtime log {"tx": "df45f3878aef5744543ff80b1c47646fe01196d6c3dfa76344ec6ecb86739353", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:10:32.571Z INFO initializing dbft {"height": 7291, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:32.572Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 31} -2023-12-16T14:10:32.572Z debug frostfs-node/morph.go:229 new block {"index": 7290} -2023-12-16T14:10:32.573Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 31} -2023-12-16T14:10:33.436Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 7290, "blockHeight": 7290, "took": "15.890349ms"} -2023-12-16T14:10:33.570Z INFO sending PrepareRequest {"height": 7291, "view": 0} -2023-12-16T14:10:33.570Z INFO sending Commit {"height": 7291, "view": 0} -2023-12-16T14:10:33.570Z INFO approving block {"height": 7291, "hash": "c8a3cc77a76d2c41db39f9a6a4f50c5085d6db3f56eef719c83ff841b820c3a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18bc78ff5601a8631756610cccb0b4ec6b9868295ea6d7c60ce0d57d7374e2ae"} -2023-12-16T14:10:33.571Z INFO initializing dbft {"height": 7292, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:33.572Z debug frostfs-node/morph.go:229 new block {"index": 7291} -2023-12-16T14:10:34.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7291, "blockHeight": 7291, "took": "15.527468ms"} -2023-12-16T14:10:34.572Z INFO sending PrepareRequest {"height": 7292, "view": 0} -2023-12-16T14:10:34.572Z INFO sending Commit {"height": 7292, "view": 0} -2023-12-16T14:10:34.572Z INFO approving block {"height": 7292, "hash": "a23a88f82a1025c5d8d648efcdb43ad07a9e49ac3077f0489a53114ce3a5bb7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8a3cc77a76d2c41db39f9a6a4f50c5085d6db3f56eef719c83ff841b820c3a2"} -2023-12-16T14:10:34.574Z INFO initializing dbft {"height": 7293, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:34.574Z debug frostfs-node/morph.go:229 new block {"index": 7292} -2023-12-16T14:10:35.438Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7292, "blockHeight": 7292, "took": "16.552874ms"} -2023-12-16T14:10:35.574Z INFO sending PrepareRequest {"height": 7293, "view": 0} -2023-12-16T14:10:35.574Z INFO sending Commit {"height": 7293, "view": 0} -2023-12-16T14:10:35.574Z INFO approving block {"height": 7293, "hash": "5c7d5adcee02d5b25e22ab0ee579d56c9e2725aa0867c678b7261618cb991c32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a23a88f82a1025c5d8d648efcdb43ad07a9e49ac3077f0489a53114ce3a5bb7a"} -2023-12-16T14:10:35.575Z INFO initializing dbft {"height": 7294, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:35.576Z debug frostfs-node/morph.go:229 new block {"index": 7293} -2023-12-16T14:10:36.435Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7293, "blockHeight": 7293, "took": "12.224739ms"} -2023-12-16T14:10:36.576Z INFO sending PrepareRequest {"height": 7294, "view": 0} -2023-12-16T14:10:36.576Z INFO sending Commit {"height": 7294, "view": 0} -2023-12-16T14:10:36.576Z INFO approving block {"height": 7294, "hash": "a7d5beeb063d8585af0a80f04b57d9bac37f8b099f8134f8266e1f8019f0f297", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5c7d5adcee02d5b25e22ab0ee579d56c9e2725aa0867c678b7261618cb991c32"} -2023-12-16T14:10:36.578Z INFO initializing dbft {"height": 7295, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:36.579Z debug frostfs-node/morph.go:229 new block {"index": 7294} -2023-12-16T14:10:37.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7294, "blockHeight": 7294, "took": "13.306387ms"} -2023-12-16T14:10:37.578Z INFO sending PrepareRequest {"height": 7295, "view": 0} -2023-12-16T14:10:37.578Z INFO sending Commit {"height": 7295, "view": 0} -2023-12-16T14:10:37.578Z INFO approving block {"height": 7295, "hash": "b0663424969e02d263d70f60c0fd936620c3a325928a478a77314cdbc946ac13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7d5beeb063d8585af0a80f04b57d9bac37f8b099f8134f8266e1f8019f0f297"} -2023-12-16T14:10:37.580Z INFO initializing dbft {"height": 7296, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:37.581Z debug frostfs-node/morph.go:229 new block {"index": 7295} -2023-12-16T14:10:38.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7295, "blockHeight": 7295, "took": "22.502023ms"} -2023-12-16T14:10:38.579Z INFO sending PrepareRequest {"height": 7296, "view": 0} -2023-12-16T14:10:38.580Z INFO sending Commit {"height": 7296, "view": 0} -2023-12-16T14:10:38.580Z INFO approving block {"height": 7296, "hash": "0b7fd15bcc22d5ab8ef680e2ad5ad49b11de0c7d826db1c4a0c7d821b42b3a42", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0663424969e02d263d70f60c0fd936620c3a325928a478a77314cdbc946ac13"} -2023-12-16T14:10:38.582Z INFO initializing dbft {"height": 7297, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:38.583Z debug frostfs-node/morph.go:229 new block {"index": 7296} -2023-12-16T14:10:39.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7296, "blockHeight": 7296, "took": "15.975737ms"} -2023-12-16T14:10:39.582Z INFO sending PrepareRequest {"height": 7297, "view": 0} -2023-12-16T14:10:39.582Z INFO sending Commit {"height": 7297, "view": 0} -2023-12-16T14:10:39.583Z INFO approving block {"height": 7297, "hash": "d3afc372999152443bd688c1500a9d565d71ad4217e038d6d3bc7e720cf50c5f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b7fd15bcc22d5ab8ef680e2ad5ad49b11de0c7d826db1c4a0c7d821b42b3a42"} -2023-12-16T14:10:39.584Z INFO initializing dbft {"height": 7298, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:39.585Z debug frostfs-node/morph.go:229 new block {"index": 7297} -2023-12-16T14:10:40.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7297, "blockHeight": 7297, "took": "15.080065ms"} -2023-12-16T14:10:40.584Z INFO sending PrepareRequest {"height": 7298, "view": 0} -2023-12-16T14:10:40.584Z INFO sending Commit {"height": 7298, "view": 0} -2023-12-16T14:10:40.584Z INFO approving block {"height": 7298, "hash": "5898ad08e0e0465947e5c2e665a7b97592958132495097f9c1da5aa02822a1e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3afc372999152443bd688c1500a9d565d71ad4217e038d6d3bc7e720cf50c5f"} -2023-12-16T14:10:40.586Z INFO initializing dbft {"height": 7299, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:40.587Z debug frostfs-node/morph.go:229 new block {"index": 7298} -2023-12-16T14:10:41.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7298, "blockHeight": 7298, "took": "12.082993ms"} -2023-12-16T14:10:41.586Z INFO sending PrepareRequest {"height": 7299, "view": 0} -2023-12-16T14:10:41.586Z INFO sending Commit {"height": 7299, "view": 0} -2023-12-16T14:10:41.586Z INFO approving block {"height": 7299, "hash": "787188cb4689629ef8cfc4191ee9cfd113528cfff196e2e9e3faa3c63bb4d439", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5898ad08e0e0465947e5c2e665a7b97592958132495097f9c1da5aa02822a1e6"} -2023-12-16T14:10:41.588Z INFO initializing dbft {"height": 7300, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:41.589Z debug frostfs-node/morph.go:229 new block {"index": 7299} -2023-12-16T14:10:42.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7299, "blockHeight": 7299, "took": "19.28023ms"} -2023-12-16T14:10:42.587Z INFO sending PrepareRequest {"height": 7300, "view": 0} -2023-12-16T14:10:42.588Z INFO sending Commit {"height": 7300, "view": 0} -2023-12-16T14:10:42.588Z INFO approving block {"height": 7300, "hash": "42fae9845a89eaac5d9710b47d6bcc7a645aab9acce18f2a76770a641029de7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "787188cb4689629ef8cfc4191ee9cfd113528cfff196e2e9e3faa3c63bb4d439"} -2023-12-16T14:10:42.591Z INFO initializing dbft {"height": 7301, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:42.591Z debug frostfs-node/morph.go:229 new block {"index": 7300} -2023-12-16T14:10:42.596Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:10:42.598Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:10:42.598Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:10:43.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7300, "blockHeight": 7300, "took": "21.058611ms"} -2023-12-16T14:10:43.590Z INFO sending PrepareRequest {"height": 7301, "view": 0} -2023-12-16T14:10:43.590Z INFO sending Commit {"height": 7301, "view": 0} -2023-12-16T14:10:43.590Z INFO approving block {"height": 7301, "hash": "c3213fa15c9a2e0ab1b0bf82e9409f0a1ead64dec5debce8c0404fd20f80ffba", "tx_count": 2, "merkle": "96c01b2a27cccda858a24d0bb2665510f7746baf7d0311b6c9a55f75a085b3e6", "prev": "42fae9845a89eaac5d9710b47d6bcc7a645aab9acce18f2a76770a641029de7d"} -2023-12-16T14:10:43.592Z INFO runtime log {"tx": "8a6c02cbaffc0e0248d855acd5d97d24e498df13e5d3ec0296e05cb1eb090976", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:10:43.592Z INFO runtime log {"tx": "8a6c02cbaffc0e0248d855acd5d97d24e498df13e5d3ec0296e05cb1eb090976", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:10:43.593Z INFO initializing dbft {"height": 7302, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:43.594Z debug frostfs-node/morph.go:229 new block {"index": 7301} -2023-12-16T14:10:44.460Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7301, "blockHeight": 7301, "took": "30.508839ms"} -2023-12-16T14:10:44.592Z INFO sending PrepareRequest {"height": 7302, "view": 0} -2023-12-16T14:10:44.592Z INFO sending Commit {"height": 7302, "view": 0} -2023-12-16T14:10:44.593Z INFO approving block {"height": 7302, "hash": "16d23cee65da9c90abc397b06600e89bd703dc59c75acd0aa628a4b5b9c57a82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3213fa15c9a2e0ab1b0bf82e9409f0a1ead64dec5debce8c0404fd20f80ffba"} -2023-12-16T14:10:44.594Z INFO initializing dbft {"height": 7303, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:44.595Z debug frostfs-node/morph.go:229 new block {"index": 7302} -2023-12-16T14:10:45.445Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7302, "blockHeight": 7302, "took": "14.237416ms"} -2023-12-16T14:10:45.594Z INFO sending PrepareRequest {"height": 7303, "view": 0} -2023-12-16T14:10:45.595Z INFO sending Commit {"height": 7303, "view": 0} -2023-12-16T14:10:45.595Z INFO approving block {"height": 7303, "hash": "dba8ada162553a0d9fef2e1bc543af490e3157266f1dfd56fbb13727b6e099cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16d23cee65da9c90abc397b06600e89bd703dc59c75acd0aa628a4b5b9c57a82"} -2023-12-16T14:10:45.597Z INFO initializing dbft {"height": 7304, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:45.598Z debug frostfs-node/morph.go:229 new block {"index": 7303} -2023-12-16T14:10:46.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7303, "blockHeight": 7303, "took": "14.207555ms"} -2023-12-16T14:10:46.596Z INFO sending PrepareRequest {"height": 7304, "view": 0} -2023-12-16T14:10:46.597Z INFO sending Commit {"height": 7304, "view": 0} -2023-12-16T14:10:46.597Z INFO approving block {"height": 7304, "hash": "fe6bf6824a3b69eb91fff9d4406c8aa9359040d9ebc01dd8f0140033df1dc3ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dba8ada162553a0d9fef2e1bc543af490e3157266f1dfd56fbb13727b6e099cc"} -2023-12-16T14:10:46.599Z INFO initializing dbft {"height": 7305, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:46.600Z debug frostfs-node/morph.go:229 new block {"index": 7304} -2023-12-16T14:10:47.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7304, "blockHeight": 7304, "took": "22.160967ms"} -2023-12-16T14:10:47.599Z INFO sending PrepareRequest {"height": 7305, "view": 0} -2023-12-16T14:10:47.599Z INFO sending Commit {"height": 7305, "view": 0} -2023-12-16T14:10:47.599Z INFO approving block {"height": 7305, "hash": "a2a067f678c2afdc782dfc1a5aea4d196c6295378f67f2a1e3f72933f5357aa4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe6bf6824a3b69eb91fff9d4406c8aa9359040d9ebc01dd8f0140033df1dc3ff"} -2023-12-16T14:10:47.600Z INFO initializing dbft {"height": 7306, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:47.601Z debug frostfs-node/morph.go:229 new block {"index": 7305} -2023-12-16T14:10:48.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7305, "blockHeight": 7305, "took": "12.702131ms"} -2023-12-16T14:10:48.600Z INFO sending PrepareRequest {"height": 7306, "view": 0} -2023-12-16T14:10:48.601Z INFO sending Commit {"height": 7306, "view": 0} -2023-12-16T14:10:48.601Z INFO approving block {"height": 7306, "hash": "0df848cd64474c0d1211e7f72b3a4ed425a684512aa3c874d0c48580fc259552", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2a067f678c2afdc782dfc1a5aea4d196c6295378f67f2a1e3f72933f5357aa4"} -2023-12-16T14:10:48.603Z INFO initializing dbft {"height": 7307, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:48.604Z debug frostfs-node/morph.go:229 new block {"index": 7306} -2023-12-16T14:10:49.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7306, "blockHeight": 7306, "took": "12.6499ms"} -2023-12-16T14:10:49.602Z INFO sending PrepareRequest {"height": 7307, "view": 0} -2023-12-16T14:10:49.602Z INFO sending Commit {"height": 7307, "view": 0} -2023-12-16T14:10:49.602Z INFO approving block {"height": 7307, "hash": "5b5350bddcd076acc6ad99bd4d9b944c2246874e822f520680a2c7fff9c76ecf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0df848cd64474c0d1211e7f72b3a4ed425a684512aa3c874d0c48580fc259552"} -2023-12-16T14:10:49.603Z INFO initializing dbft {"height": 7308, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:49.604Z debug frostfs-node/morph.go:229 new block {"index": 7307} -2023-12-16T14:10:50.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7307, "blockHeight": 7307, "took": "39.083359ms"} -2023-12-16T14:10:50.604Z INFO sending PrepareRequest {"height": 7308, "view": 0} -2023-12-16T14:10:50.604Z INFO sending Commit {"height": 7308, "view": 0} -2023-12-16T14:10:50.604Z INFO approving block {"height": 7308, "hash": "443c9d7724d0b68454d1657e5b4ad61ff9ccc5c8951e727468d517fb182609e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b5350bddcd076acc6ad99bd4d9b944c2246874e822f520680a2c7fff9c76ecf"} -2023-12-16T14:10:50.606Z INFO initializing dbft {"height": 7309, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:50.607Z debug frostfs-node/morph.go:229 new block {"index": 7308} -2023-12-16T14:10:51.509Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7308, "blockHeight": 7308, "took": "73.202429ms"} -2023-12-16T14:10:51.613Z INFO sending PrepareRequest {"height": 7309, "view": 0} -2023-12-16T14:10:51.614Z INFO sending Commit {"height": 7309, "view": 0} -2023-12-16T14:10:51.615Z INFO approving block {"height": 7309, "hash": "8c6c7135ad99041468b02e7f22469b219b86803214dc88a827f5e3c217e22421", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "443c9d7724d0b68454d1657e5b4ad61ff9ccc5c8951e727468d517fb182609e0"} -2023-12-16T14:10:51.619Z INFO initializing dbft {"height": 7310, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:51.620Z debug frostfs-node/morph.go:229 new block {"index": 7309} -2023-12-16T14:10:52.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7309, "blockHeight": 7309, "took": "36.431925ms"} -2023-12-16T14:10:52.617Z INFO sending PrepareRequest {"height": 7310, "view": 0} -2023-12-16T14:10:52.618Z INFO sending Commit {"height": 7310, "view": 0} -2023-12-16T14:10:52.618Z INFO approving block {"height": 7310, "hash": "bd460cfeca2e86007098137f045e7de17e44a0ca9c5d4006f41a9331e658c250", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c6c7135ad99041468b02e7f22469b219b86803214dc88a827f5e3c217e22421"} -2023-12-16T14:10:52.620Z INFO initializing dbft {"height": 7311, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:52.621Z debug frostfs-node/morph.go:229 new block {"index": 7310} -2023-12-16T14:10:53.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7310, "blockHeight": 7310, "took": "29.75384ms"} -2023-12-16T14:10:53.620Z INFO sending PrepareRequest {"height": 7311, "view": 0} -2023-12-16T14:10:53.621Z INFO sending Commit {"height": 7311, "view": 0} -2023-12-16T14:10:53.621Z INFO approving block {"height": 7311, "hash": "282be23c834a26b0b6a1551f3f7c00ff75979073061df68fc2352f5426d09b7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd460cfeca2e86007098137f045e7de17e44a0ca9c5d4006f41a9331e658c250"} -2023-12-16T14:10:53.625Z INFO initializing dbft {"height": 7312, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:53.626Z debug frostfs-node/morph.go:229 new block {"index": 7311} -2023-12-16T14:10:54.467Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7311, "blockHeight": 7311, "took": "28.081898ms"} -2023-12-16T14:10:54.623Z INFO sending PrepareRequest {"height": 7312, "view": 0} -2023-12-16T14:10:54.624Z INFO sending Commit {"height": 7312, "view": 0} -2023-12-16T14:10:54.624Z INFO approving block {"height": 7312, "hash": "405070f3dfa707ad7c3bcaa1bfba58ab4bd59f3eb965acbb905a6fcae666ab3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "282be23c834a26b0b6a1551f3f7c00ff75979073061df68fc2352f5426d09b7b"} -2023-12-16T14:10:54.627Z INFO initializing dbft {"height": 7313, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:54.628Z debug frostfs-node/morph.go:229 new block {"index": 7312} -2023-12-16T14:10:55.477Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7312, "blockHeight": 7312, "took": "36.623241ms"} -2023-12-16T14:10:55.626Z INFO sending PrepareRequest {"height": 7313, "view": 0} -2023-12-16T14:10:55.626Z INFO sending Commit {"height": 7313, "view": 0} -2023-12-16T14:10:55.627Z INFO approving block {"height": 7313, "hash": "31fdf4bccfbafa2534a125aa9b67774f78cd97dd92d49f519960d301623fb191", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "405070f3dfa707ad7c3bcaa1bfba58ab4bd59f3eb965acbb905a6fcae666ab3b"} -2023-12-16T14:10:55.628Z INFO initializing dbft {"height": 7314, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:55.630Z debug frostfs-node/morph.go:229 new block {"index": 7313} -2023-12-16T14:10:56.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7313, "blockHeight": 7313, "took": "19.811346ms"} -2023-12-16T14:10:56.628Z INFO sending PrepareRequest {"height": 7314, "view": 0} -2023-12-16T14:10:56.629Z INFO sending Commit {"height": 7314, "view": 0} -2023-12-16T14:10:56.629Z INFO approving block {"height": 7314, "hash": "6516a73eb6c5ebb33ba804570bf86d3e19ac689ae6c9d9343ada57c251081c3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31fdf4bccfbafa2534a125aa9b67774f78cd97dd92d49f519960d301623fb191"} -2023-12-16T14:10:56.632Z INFO initializing dbft {"height": 7315, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:56.633Z debug frostfs-node/morph.go:229 new block {"index": 7314} -2023-12-16T14:10:57.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7314, "blockHeight": 7314, "took": "21.74991ms"} -2023-12-16T14:10:57.630Z INFO sending PrepareRequest {"height": 7315, "view": 0} -2023-12-16T14:10:57.631Z INFO sending Commit {"height": 7315, "view": 0} -2023-12-16T14:10:57.631Z INFO approving block {"height": 7315, "hash": "66200322bd9e1d26ea361084cfb242fa20fd430b4ad040620c89ce9bdc771493", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6516a73eb6c5ebb33ba804570bf86d3e19ac689ae6c9d9343ada57c251081c3a"} -2023-12-16T14:10:57.633Z INFO initializing dbft {"height": 7316, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:57.634Z debug frostfs-node/morph.go:229 new block {"index": 7315} -2023-12-16T14:10:58.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7315, "blockHeight": 7315, "took": "29.122929ms"} -2023-12-16T14:10:58.633Z INFO sending PrepareRequest {"height": 7316, "view": 0} -2023-12-16T14:10:58.634Z INFO sending Commit {"height": 7316, "view": 0} -2023-12-16T14:10:58.634Z INFO approving block {"height": 7316, "hash": "c8e70d3b9d51d2d1e07d4cb056ead760f74bbdaa73d0031d7af5bfc2670545b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66200322bd9e1d26ea361084cfb242fa20fd430b4ad040620c89ce9bdc771493"} -2023-12-16T14:10:58.636Z INFO initializing dbft {"height": 7317, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:58.637Z debug frostfs-node/morph.go:229 new block {"index": 7316} -2023-12-16T14:10:59.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7316, "blockHeight": 7316, "took": "28.81861ms"} -2023-12-16T14:10:59.635Z INFO sending PrepareRequest {"height": 7317, "view": 0} -2023-12-16T14:10:59.635Z INFO sending Commit {"height": 7317, "view": 0} -2023-12-16T14:10:59.636Z INFO approving block {"height": 7317, "hash": "234619364e23df08a7a45840ad97011f36abbd606d2c5a811c0470094547ad49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8e70d3b9d51d2d1e07d4cb056ead760f74bbdaa73d0031d7af5bfc2670545b0"} -2023-12-16T14:10:59.637Z INFO initializing dbft {"height": 7318, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:10:59.638Z debug frostfs-node/morph.go:229 new block {"index": 7317} -2023-12-16T14:11:00.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7317, "blockHeight": 7317, "took": "17.840469ms"} -2023-12-16T14:11:00.637Z INFO sending PrepareRequest {"height": 7318, "view": 0} -2023-12-16T14:11:00.637Z INFO sending Commit {"height": 7318, "view": 0} -2023-12-16T14:11:00.638Z INFO approving block {"height": 7318, "hash": "b3d465be5c1a55c4db3b5fd0f7d5cafd8fa0e062be859d8c1ec9b49af391779b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "234619364e23df08a7a45840ad97011f36abbd606d2c5a811c0470094547ad49"} -2023-12-16T14:11:00.641Z INFO initializing dbft {"height": 7319, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:00.642Z debug frostfs-node/morph.go:229 new block {"index": 7318} -2023-12-16T14:11:01.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7318, "blockHeight": 7318, "took": "12.528771ms"} -2023-12-16T14:11:01.640Z INFO sending PrepareRequest {"height": 7319, "view": 0} -2023-12-16T14:11:01.640Z INFO sending Commit {"height": 7319, "view": 0} -2023-12-16T14:11:01.641Z INFO approving block {"height": 7319, "hash": "c0b6579e9dbdae825f136cf89e675c13505662df858179356ed2c215b474524b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3d465be5c1a55c4db3b5fd0f7d5cafd8fa0e062be859d8c1ec9b49af391779b"} -2023-12-16T14:11:01.643Z INFO initializing dbft {"height": 7320, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:01.644Z debug frostfs-node/morph.go:229 new block {"index": 7319} -2023-12-16T14:11:02.460Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7319, "blockHeight": 7319, "took": "13.868496ms"} -2023-12-16T14:11:02.643Z INFO sending PrepareRequest {"height": 7320, "view": 0} -2023-12-16T14:11:02.644Z INFO sending Commit {"height": 7320, "view": 0} -2023-12-16T14:11:02.645Z INFO approving block {"height": 7320, "hash": "660c9b1b9aa9bd512b8bea12270d52aa3052643a808b81e02af01c0bc3900822", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0b6579e9dbdae825f136cf89e675c13505662df858179356ed2c215b474524b"} -2023-12-16T14:11:02.647Z INFO initializing dbft {"height": 7321, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:02.648Z debug frostfs-node/morph.go:229 new block {"index": 7320} -2023-12-16T14:11:03.647Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7320, "blockHeight": 7320, "took": "199.318447ms"} -2023-12-16T14:11:03.647Z INFO sending PrepareRequest {"height": 7321, "view": 0} -2023-12-16T14:11:03.647Z INFO sending Commit {"height": 7321, "view": 0} -2023-12-16T14:11:03.648Z INFO approving block {"height": 7321, "hash": "28e58352e86595f56462925a176d23f403125f37aefa1eab07c55df5ec56dc54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "660c9b1b9aa9bd512b8bea12270d52aa3052643a808b81e02af01c0bc3900822"} -2023-12-16T14:11:03.650Z INFO initializing dbft {"height": 7322, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:03.651Z debug frostfs-node/morph.go:229 new block {"index": 7321} -2023-12-16T14:11:04.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7321, "blockHeight": 7321, "took": "23.54616ms"} -2023-12-16T14:11:04.650Z INFO sending PrepareRequest {"height": 7322, "view": 0} -2023-12-16T14:11:04.650Z INFO sending Commit {"height": 7322, "view": 0} -2023-12-16T14:11:04.651Z INFO approving block {"height": 7322, "hash": "746ce9c46d056b2e90e34f478a9d7fd7e44439f5b116170f7a45631b38269e8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28e58352e86595f56462925a176d23f403125f37aefa1eab07c55df5ec56dc54"} -2023-12-16T14:11:04.653Z INFO initializing dbft {"height": 7323, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:04.654Z debug frostfs-node/morph.go:229 new block {"index": 7322} -2023-12-16T14:11:05.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7322, "blockHeight": 7322, "took": "11.855869ms"} -2023-12-16T14:11:05.652Z INFO sending PrepareRequest {"height": 7323, "view": 0} -2023-12-16T14:11:05.652Z INFO sending Commit {"height": 7323, "view": 0} -2023-12-16T14:11:05.652Z INFO approving block {"height": 7323, "hash": "512ea48635abf59c706226db549625d98e39e2c433633fe1b26fa3355225ec9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "746ce9c46d056b2e90e34f478a9d7fd7e44439f5b116170f7a45631b38269e8a"} -2023-12-16T14:11:05.654Z INFO initializing dbft {"height": 7324, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:05.655Z debug frostfs-node/morph.go:229 new block {"index": 7323} -2023-12-16T14:11:06.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7323, "blockHeight": 7323, "took": "22.318341ms"} -2023-12-16T14:11:06.653Z INFO sending PrepareRequest {"height": 7324, "view": 0} -2023-12-16T14:11:06.654Z INFO sending Commit {"height": 7324, "view": 0} -2023-12-16T14:11:06.654Z INFO approving block {"height": 7324, "hash": "fcadf0b3e828ea8024e8112ebc44214c168cd868f3e76f370ea0fa3a0bbf35ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "512ea48635abf59c706226db549625d98e39e2c433633fe1b26fa3355225ec9b"} -2023-12-16T14:11:06.656Z INFO initializing dbft {"height": 7325, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:06.657Z debug frostfs-node/morph.go:229 new block {"index": 7324} -2023-12-16T14:11:07.469Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7324, "blockHeight": 7324, "took": "19.033578ms"} -2023-12-16T14:11:07.655Z INFO sending PrepareRequest {"height": 7325, "view": 0} -2023-12-16T14:11:07.656Z INFO sending Commit {"height": 7325, "view": 0} -2023-12-16T14:11:07.656Z INFO approving block {"height": 7325, "hash": "d5cc349249e2fe992e030d568fa0d8233496e49dd64d54d87d0da4bb635ac19c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcadf0b3e828ea8024e8112ebc44214c168cd868f3e76f370ea0fa3a0bbf35ec"} -2023-12-16T14:11:07.657Z INFO initializing dbft {"height": 7326, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:07.658Z debug frostfs-node/morph.go:229 new block {"index": 7325} -2023-12-16T14:11:08.467Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7325, "blockHeight": 7325, "took": "15.877154ms"} -2023-12-16T14:11:08.657Z INFO sending PrepareRequest {"height": 7326, "view": 0} -2023-12-16T14:11:08.658Z INFO sending Commit {"height": 7326, "view": 0} -2023-12-16T14:11:08.658Z INFO approving block {"height": 7326, "hash": "eff074b287b679d552df37f0f660007ee18ef325e12724dcdbd2732915cb5843", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5cc349249e2fe992e030d568fa0d8233496e49dd64d54d87d0da4bb635ac19c"} -2023-12-16T14:11:08.659Z INFO initializing dbft {"height": 7327, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:08.660Z debug frostfs-node/morph.go:229 new block {"index": 7326} -2023-12-16T14:11:09.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7326, "blockHeight": 7326, "took": "17.733836ms"} -2023-12-16T14:11:09.659Z INFO sending PrepareRequest {"height": 7327, "view": 0} -2023-12-16T14:11:09.660Z INFO sending Commit {"height": 7327, "view": 0} -2023-12-16T14:11:09.660Z INFO approving block {"height": 7327, "hash": "8561c2f7ef683d01cd4a01534d93917c9e29a9d796799e64fda3bc44cc5c2e45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eff074b287b679d552df37f0f660007ee18ef325e12724dcdbd2732915cb5843"} -2023-12-16T14:11:09.661Z INFO initializing dbft {"height": 7328, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:09.662Z debug frostfs-node/morph.go:229 new block {"index": 7327} -2023-12-16T14:11:10.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7327, "blockHeight": 7327, "took": "21.070086ms"} -2023-12-16T14:11:10.662Z INFO sending PrepareRequest {"height": 7328, "view": 0} -2023-12-16T14:11:10.662Z INFO sending Commit {"height": 7328, "view": 0} -2023-12-16T14:11:10.663Z INFO approving block {"height": 7328, "hash": "456f5389af58bcda39482ca4d3aef16db830a0909776dbcc3ccbdc5a4ac0b518", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8561c2f7ef683d01cd4a01534d93917c9e29a9d796799e64fda3bc44cc5c2e45"} -2023-12-16T14:11:10.665Z INFO initializing dbft {"height": 7329, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:10.666Z debug frostfs-node/morph.go:229 new block {"index": 7328} -2023-12-16T14:11:11.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7328, "blockHeight": 7328, "took": "18.19723ms"} -2023-12-16T14:11:11.664Z INFO sending PrepareRequest {"height": 7329, "view": 0} -2023-12-16T14:11:11.665Z INFO sending Commit {"height": 7329, "view": 0} -2023-12-16T14:11:11.665Z INFO approving block {"height": 7329, "hash": "53a53bf8276f8393d7547b8854ca487a6d346064a1208b58bcdaaa77495cee7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "456f5389af58bcda39482ca4d3aef16db830a0909776dbcc3ccbdc5a4ac0b518"} -2023-12-16T14:11:11.667Z INFO initializing dbft {"height": 7330, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:11.668Z debug frostfs-node/morph.go:229 new block {"index": 7329} -2023-12-16T14:11:12.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7329, "blockHeight": 7329, "took": "57.811297ms"} -2023-12-16T14:11:12.669Z INFO sending PrepareRequest {"height": 7330, "view": 0} -2023-12-16T14:11:12.669Z INFO sending Commit {"height": 7330, "view": 0} -2023-12-16T14:11:12.670Z INFO approving block {"height": 7330, "hash": "745159ac05befabc8ba7f78a0261d70043e46223c89da9a61f7b3d4434d6b81e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53a53bf8276f8393d7547b8854ca487a6d346064a1208b58bcdaaa77495cee7b"} -2023-12-16T14:11:12.671Z INFO initializing dbft {"height": 7331, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:12.672Z debug frostfs-node/morph.go:229 new block {"index": 7330} -2023-12-16T14:11:13.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7330, "blockHeight": 7330, "took": "17.686602ms"} -2023-12-16T14:11:13.671Z INFO sending PrepareRequest {"height": 7331, "view": 0} -2023-12-16T14:11:13.671Z INFO sending Commit {"height": 7331, "view": 0} -2023-12-16T14:11:13.672Z INFO approving block {"height": 7331, "hash": "2634022f4f60b99d57296b73d839f894046be7d1b0bb02e50664e313512e0ce6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "745159ac05befabc8ba7f78a0261d70043e46223c89da9a61f7b3d4434d6b81e"} -2023-12-16T14:11:13.673Z INFO initializing dbft {"height": 7332, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:13.674Z debug frostfs-node/morph.go:229 new block {"index": 7331} -2023-12-16T14:11:14.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7331, "blockHeight": 7331, "took": "11.245997ms"} -2023-12-16T14:11:14.673Z INFO sending PrepareRequest {"height": 7332, "view": 0} -2023-12-16T14:11:14.673Z INFO sending Commit {"height": 7332, "view": 0} -2023-12-16T14:11:14.674Z INFO approving block {"height": 7332, "hash": "f575cac0b8bc082cf8f824e2689582d8da440cc7fedfa4c169e803a1c8254a1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2634022f4f60b99d57296b73d839f894046be7d1b0bb02e50664e313512e0ce6"} -2023-12-16T14:11:14.675Z INFO initializing dbft {"height": 7333, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:14.676Z debug frostfs-node/morph.go:229 new block {"index": 7332} -2023-12-16T14:11:15.476Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7332, "blockHeight": 7332, "took": "18.037156ms"} -2023-12-16T14:11:15.675Z INFO sending PrepareRequest {"height": 7333, "view": 0} -2023-12-16T14:11:15.676Z INFO sending Commit {"height": 7333, "view": 0} -2023-12-16T14:11:15.676Z INFO approving block {"height": 7333, "hash": "73e8f5e16bc9ae8994ebfd090f520bec79d775589302e80ab1447f3060626094", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f575cac0b8bc082cf8f824e2689582d8da440cc7fedfa4c169e803a1c8254a1e"} -2023-12-16T14:11:15.678Z INFO initializing dbft {"height": 7334, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:15.679Z debug frostfs-node/morph.go:229 new block {"index": 7333} -2023-12-16T14:11:16.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7333, "blockHeight": 7333, "took": "20.814722ms"} -2023-12-16T14:11:16.677Z INFO sending PrepareRequest {"height": 7334, "view": 0} -2023-12-16T14:11:16.677Z INFO sending Commit {"height": 7334, "view": 0} -2023-12-16T14:11:16.678Z INFO approving block {"height": 7334, "hash": "94ec5a25df19f7b7ccfee309452a816039ba65a53f12c87d430df2ab6863c3d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73e8f5e16bc9ae8994ebfd090f520bec79d775589302e80ab1447f3060626094"} -2023-12-16T14:11:16.680Z INFO initializing dbft {"height": 7335, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:16.681Z debug frostfs-node/morph.go:229 new block {"index": 7334} -2023-12-16T14:11:17.479Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7334, "blockHeight": 7334, "took": "19.687388ms"} -2023-12-16T14:11:17.679Z INFO sending PrepareRequest {"height": 7335, "view": 0} -2023-12-16T14:11:17.679Z INFO sending Commit {"height": 7335, "view": 0} -2023-12-16T14:11:17.680Z INFO approving block {"height": 7335, "hash": "683d71369b8fdc70bb4ecef054d82a5f77e153b074b5584ce33d92aba84ffd39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94ec5a25df19f7b7ccfee309452a816039ba65a53f12c87d430df2ab6863c3d2"} -2023-12-16T14:11:17.681Z INFO initializing dbft {"height": 7336, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:17.682Z debug frostfs-node/morph.go:229 new block {"index": 7335} -2023-12-16T14:11:18.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7335, "blockHeight": 7335, "took": "17.361427ms"} -2023-12-16T14:11:18.681Z INFO sending PrepareRequest {"height": 7336, "view": 0} -2023-12-16T14:11:18.681Z INFO sending Commit {"height": 7336, "view": 0} -2023-12-16T14:11:18.682Z INFO approving block {"height": 7336, "hash": "4e3946d6b6ee96b945753ef8daa9de5cd6c8740ea6250593d6e664bb3806c94a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "683d71369b8fdc70bb4ecef054d82a5f77e153b074b5584ce33d92aba84ffd39"} -2023-12-16T14:11:18.684Z INFO initializing dbft {"height": 7337, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:18.685Z debug frostfs-node/morph.go:229 new block {"index": 7336} -2023-12-16T14:11:19.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7336, "blockHeight": 7336, "took": "18.577325ms"} -2023-12-16T14:11:19.684Z INFO sending PrepareRequest {"height": 7337, "view": 0} -2023-12-16T14:11:19.684Z INFO sending Commit {"height": 7337, "view": 0} -2023-12-16T14:11:19.684Z INFO approving block {"height": 7337, "hash": "be64864dbf1305405b4212632c2512ea15dc5f603c6d861047a2a37f9ff06a90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e3946d6b6ee96b945753ef8daa9de5cd6c8740ea6250593d6e664bb3806c94a"} -2023-12-16T14:11:19.686Z INFO initializing dbft {"height": 7338, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:19.687Z debug frostfs-node/morph.go:229 new block {"index": 7337} -2023-12-16T14:11:20.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7337, "blockHeight": 7337, "took": "16.20415ms"} -2023-12-16T14:11:20.686Z INFO sending PrepareRequest {"height": 7338, "view": 0} -2023-12-16T14:11:20.687Z INFO sending Commit {"height": 7338, "view": 0} -2023-12-16T14:11:20.687Z INFO approving block {"height": 7338, "hash": "4efdea755ec375282cd257889e37de9716c66a22539b937bd411a03c741894ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be64864dbf1305405b4212632c2512ea15dc5f603c6d861047a2a37f9ff06a90"} -2023-12-16T14:11:20.689Z INFO initializing dbft {"height": 7339, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:20.690Z debug frostfs-node/morph.go:229 new block {"index": 7338} -2023-12-16T14:11:21.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7338, "blockHeight": 7338, "took": "15.846261ms"} -2023-12-16T14:11:21.688Z INFO sending PrepareRequest {"height": 7339, "view": 0} -2023-12-16T14:11:21.689Z INFO sending Commit {"height": 7339, "view": 0} -2023-12-16T14:11:21.689Z INFO approving block {"height": 7339, "hash": "d6c7d675a9360388e26909756052fdfd6189d4bb841d06b91cbe66f3d8452b5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4efdea755ec375282cd257889e37de9716c66a22539b937bd411a03c741894ed"} -2023-12-16T14:11:21.691Z INFO initializing dbft {"height": 7340, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:21.692Z debug frostfs-node/morph.go:229 new block {"index": 7339} -2023-12-16T14:11:22.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7339, "blockHeight": 7339, "took": "14.77112ms"} -2023-12-16T14:11:22.691Z INFO sending PrepareRequest {"height": 7340, "view": 0} -2023-12-16T14:11:22.692Z INFO sending Commit {"height": 7340, "view": 0} -2023-12-16T14:11:22.692Z INFO approving block {"height": 7340, "hash": "16bcea439873b2f3b1d3335c281ac4556998573ef88f87fee162410fedf56b9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6c7d675a9360388e26909756052fdfd6189d4bb841d06b91cbe66f3d8452b5c"} -2023-12-16T14:11:22.694Z INFO initializing dbft {"height": 7341, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:22.696Z debug frostfs-node/morph.go:229 new block {"index": 7340} -2023-12-16T14:11:23.484Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7340, "blockHeight": 7340, "took": "19.693867ms"} -2023-12-16T14:11:23.694Z INFO sending PrepareRequest {"height": 7341, "view": 0} -2023-12-16T14:11:23.694Z INFO sending Commit {"height": 7341, "view": 0} -2023-12-16T14:11:23.694Z INFO approving block {"height": 7341, "hash": "20ce097d8de3095b87b7fde692e304b01a0bb347ea9eedd439b2ee26c36c0ac8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16bcea439873b2f3b1d3335c281ac4556998573ef88f87fee162410fedf56b9c"} -2023-12-16T14:11:23.696Z INFO initializing dbft {"height": 7342, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:23.696Z debug frostfs-node/morph.go:229 new block {"index": 7341} -2023-12-16T14:11:24.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7341, "blockHeight": 7341, "took": "15.436998ms"} -2023-12-16T14:11:24.696Z INFO sending PrepareRequest {"height": 7342, "view": 0} -2023-12-16T14:11:24.696Z INFO sending Commit {"height": 7342, "view": 0} -2023-12-16T14:11:24.697Z INFO approving block {"height": 7342, "hash": "966cf7625c370b35cac79967e9cf330d6de8dd4adcb7882bd5f62608db1857a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20ce097d8de3095b87b7fde692e304b01a0bb347ea9eedd439b2ee26c36c0ac8"} -2023-12-16T14:11:24.699Z INFO initializing dbft {"height": 7343, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:24.700Z debug frostfs-node/morph.go:229 new block {"index": 7342} -2023-12-16T14:11:25.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7342, "blockHeight": 7342, "took": "13.962421ms"} -2023-12-16T14:11:25.698Z INFO sending PrepareRequest {"height": 7343, "view": 0} -2023-12-16T14:11:25.699Z INFO sending Commit {"height": 7343, "view": 0} -2023-12-16T14:11:25.699Z INFO approving block {"height": 7343, "hash": "c1cf8ab74f4bd3c19c83bba64648d46bd09ae381558962348b23284d3be3842e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "966cf7625c370b35cac79967e9cf330d6de8dd4adcb7882bd5f62608db1857a2"} -2023-12-16T14:11:25.700Z INFO initializing dbft {"height": 7344, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:25.701Z debug frostfs-node/morph.go:229 new block {"index": 7343} -2023-12-16T14:11:26.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7343, "blockHeight": 7343, "took": "28.199971ms"} -2023-12-16T14:11:26.700Z INFO sending PrepareRequest {"height": 7344, "view": 0} -2023-12-16T14:11:26.700Z INFO sending Commit {"height": 7344, "view": 0} -2023-12-16T14:11:26.700Z INFO approving block {"height": 7344, "hash": "2bd9524c8ee45358d2624d72132dfaa2795630450810685456dea20ed535d886", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1cf8ab74f4bd3c19c83bba64648d46bd09ae381558962348b23284d3be3842e"} -2023-12-16T14:11:26.702Z INFO initializing dbft {"height": 7345, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:26.703Z debug frostfs-node/morph.go:229 new block {"index": 7344} -2023-12-16T14:11:27.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7344, "blockHeight": 7344, "took": "24.010725ms"} -2023-12-16T14:11:27.701Z INFO sending PrepareRequest {"height": 7345, "view": 0} -2023-12-16T14:11:27.701Z INFO sending Commit {"height": 7345, "view": 0} -2023-12-16T14:11:27.702Z INFO approving block {"height": 7345, "hash": "a0b38fa349fa9e170d213a93f90839769ff77b9cc0a3eff5970ad9fbc869fcd9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2bd9524c8ee45358d2624d72132dfaa2795630450810685456dea20ed535d886"} -2023-12-16T14:11:27.703Z INFO initializing dbft {"height": 7346, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:27.705Z debug frostfs-node/morph.go:229 new block {"index": 7345} -2023-12-16T14:11:28.499Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7345, "blockHeight": 7345, "took": "30.070075ms"} -2023-12-16T14:11:28.703Z INFO sending PrepareRequest {"height": 7346, "view": 0} -2023-12-16T14:11:28.703Z INFO sending Commit {"height": 7346, "view": 0} -2023-12-16T14:11:28.703Z INFO approving block {"height": 7346, "hash": "de31c264cd6cb2b77296bcd64bbac438acd77eb1f9c69f3fc84c97e248870587", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0b38fa349fa9e170d213a93f90839769ff77b9cc0a3eff5970ad9fbc869fcd9"} -2023-12-16T14:11:28.705Z INFO initializing dbft {"height": 7347, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:28.706Z debug frostfs-node/morph.go:229 new block {"index": 7346} -2023-12-16T14:11:29.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7346, "blockHeight": 7346, "took": "32.821796ms"} -2023-12-16T14:11:29.704Z INFO sending PrepareRequest {"height": 7347, "view": 0} -2023-12-16T14:11:29.705Z INFO sending Commit {"height": 7347, "view": 0} -2023-12-16T14:11:29.705Z INFO approving block {"height": 7347, "hash": "3e95c12544bbd1ad0a485c3a3436092424f78381f8c0b740ab73acdbc79d4e2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de31c264cd6cb2b77296bcd64bbac438acd77eb1f9c69f3fc84c97e248870587"} -2023-12-16T14:11:29.707Z INFO initializing dbft {"height": 7348, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:29.708Z debug frostfs-node/morph.go:229 new block {"index": 7347} -2023-12-16T14:11:30.487Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7347, "blockHeight": 7347, "took": "16.647705ms"} -2023-12-16T14:11:30.707Z INFO sending PrepareRequest {"height": 7348, "view": 0} -2023-12-16T14:11:30.707Z INFO sending Commit {"height": 7348, "view": 0} -2023-12-16T14:11:30.708Z INFO approving block {"height": 7348, "hash": "2c2ce47279041ae2803e0ab7febd4490f9f0fd0c56343b079cee2a67d905f896", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e95c12544bbd1ad0a485c3a3436092424f78381f8c0b740ab73acdbc79d4e2b"} -2023-12-16T14:11:30.710Z INFO initializing dbft {"height": 7349, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:30.711Z debug frostfs-node/morph.go:229 new block {"index": 7348} -2023-12-16T14:11:30.718Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 31, "iteration": 1, "error": "no data for 0 iteration in 31 epoch for consumers's trusts"} -2023-12-16T14:11:31.497Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7348, "blockHeight": 7348, "took": "25.983928ms"} -2023-12-16T14:11:31.709Z INFO sending PrepareRequest {"height": 7349, "view": 0} -2023-12-16T14:11:31.710Z INFO sending Commit {"height": 7349, "view": 0} -2023-12-16T14:11:31.710Z INFO approving block {"height": 7349, "hash": "7c84f54312d18b7b5287b744e53c073e5bc575dfa4850389436b5a96e728fc6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c2ce47279041ae2803e0ab7febd4490f9f0fd0c56343b079cee2a67d905f896"} -2023-12-16T14:11:31.711Z INFO initializing dbft {"height": 7350, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:31.712Z debug frostfs-node/morph.go:229 new block {"index": 7349} -2023-12-16T14:11:31.720Z info settlement/calls.go:61 start basic income collection {"epoch": 31} -2023-12-16T14:11:32.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7349, "blockHeight": 7349, "took": "23.928452ms"} -2023-12-16T14:11:32.712Z INFO sending PrepareRequest {"height": 7350, "view": 0} -2023-12-16T14:11:32.712Z INFO sending Commit {"height": 7350, "view": 0} -2023-12-16T14:11:32.712Z INFO approving block {"height": 7350, "hash": "41a5bbf17b86f449294d3b9050fa632c8bb96c1f8f46a907a5d5189685205a46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c84f54312d18b7b5287b744e53c073e5bc575dfa4850389436b5a96e728fc6f"} -2023-12-16T14:11:32.714Z INFO initializing dbft {"height": 7351, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:32.715Z debug frostfs-node/morph.go:229 new block {"index": 7350} -2023-12-16T14:11:32.718Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:11:32.720Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:11:32.720Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:11:33.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7350, "blockHeight": 7350, "took": "16.537212ms"} -2023-12-16T14:11:33.714Z INFO sending PrepareRequest {"height": 7351, "view": 0} -2023-12-16T14:11:33.714Z INFO sending Commit {"height": 7351, "view": 0} -2023-12-16T14:11:33.715Z INFO approving block {"height": 7351, "hash": "28e15d15c2032b1b3c38e5771b58f090e8e255fcb27a588967aea0fa17b77f63", "tx_count": 2, "merkle": "9f04b62036a7aad25f4a10cf719097b9ac2ad018dcadcefdc3620275fb82c11b", "prev": "41a5bbf17b86f449294d3b9050fa632c8bb96c1f8f46a907a5d5189685205a46"} -2023-12-16T14:11:33.716Z INFO runtime log {"tx": "91e2fac9c19cf9bc20d28d574fee29fbe3298daedcfb2e9a6126c0785a5a0434", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:11:33.716Z INFO runtime log {"tx": "91e2fac9c19cf9bc20d28d574fee29fbe3298daedcfb2e9a6126c0785a5a0434", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:11:33.719Z INFO initializing dbft {"height": 7352, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:33.720Z debug frostfs-node/morph.go:229 new block {"index": 7351} -2023-12-16T14:11:34.500Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7351, "blockHeight": 7351, "took": "26.23891ms"} -2023-12-16T14:11:34.716Z INFO sending PrepareRequest {"height": 7352, "view": 0} -2023-12-16T14:11:34.716Z INFO sending Commit {"height": 7352, "view": 0} -2023-12-16T14:11:34.717Z INFO approving block {"height": 7352, "hash": "893afe1681268da4f674bca4a59b1ec219a18d880a0c4e40c310a88e0032052d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28e15d15c2032b1b3c38e5771b58f090e8e255fcb27a588967aea0fa17b77f63"} -2023-12-16T14:11:34.718Z INFO initializing dbft {"height": 7353, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:34.720Z debug frostfs-node/morph.go:229 new block {"index": 7352} -2023-12-16T14:11:35.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7352, "blockHeight": 7352, "took": "12.519133ms"} -2023-12-16T14:11:35.718Z INFO sending PrepareRequest {"height": 7353, "view": 0} -2023-12-16T14:11:35.718Z INFO sending Commit {"height": 7353, "view": 0} -2023-12-16T14:11:35.718Z INFO approving block {"height": 7353, "hash": "6142a230fd669dcaa5c44c7d2d7c5ba31abccf694dc3fede2978bacb5988cd36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "893afe1681268da4f674bca4a59b1ec219a18d880a0c4e40c310a88e0032052d"} -2023-12-16T14:11:35.719Z INFO initializing dbft {"height": 7354, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:35.720Z debug frostfs-node/morph.go:229 new block {"index": 7353} -2023-12-16T14:11:36.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7353, "blockHeight": 7353, "took": "11.948677ms"} -2023-12-16T14:11:36.719Z INFO sending PrepareRequest {"height": 7354, "view": 0} -2023-12-16T14:11:36.719Z INFO sending Commit {"height": 7354, "view": 0} -2023-12-16T14:11:36.720Z INFO approving block {"height": 7354, "hash": "8020a8b8bcdddf8c353ac71926401bd36d64879c29bd7d5a0066f0f28ef81720", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6142a230fd669dcaa5c44c7d2d7c5ba31abccf694dc3fede2978bacb5988cd36"} -2023-12-16T14:11:36.721Z INFO initializing dbft {"height": 7355, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:36.722Z debug frostfs-node/morph.go:229 new block {"index": 7354} -2023-12-16T14:11:37.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7354, "blockHeight": 7354, "took": "17.362918ms"} -2023-12-16T14:11:37.721Z INFO sending PrepareRequest {"height": 7355, "view": 0} -2023-12-16T14:11:37.721Z INFO sending Commit {"height": 7355, "view": 0} -2023-12-16T14:11:37.721Z INFO approving block {"height": 7355, "hash": "460ef22b51b261b01aded30e7e3fd0a3a24b03b38283f11a0401671884420fa3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8020a8b8bcdddf8c353ac71926401bd36d64879c29bd7d5a0066f0f28ef81720"} -2023-12-16T14:11:37.722Z INFO initializing dbft {"height": 7356, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:37.724Z debug frostfs-node/morph.go:229 new block {"index": 7355} -2023-12-16T14:11:38.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7355, "blockHeight": 7355, "took": "15.39861ms"} -2023-12-16T14:11:38.723Z INFO sending PrepareRequest {"height": 7356, "view": 0} -2023-12-16T14:11:38.723Z INFO sending Commit {"height": 7356, "view": 0} -2023-12-16T14:11:38.724Z INFO approving block {"height": 7356, "hash": "a6f97f4100d6629d8b4e2ce1f162861a9e30d53863099d36442ad71920486884", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "460ef22b51b261b01aded30e7e3fd0a3a24b03b38283f11a0401671884420fa3"} -2023-12-16T14:11:38.727Z INFO initializing dbft {"height": 7357, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:38.728Z debug frostfs-node/morph.go:229 new block {"index": 7356} -2023-12-16T14:11:39.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7356, "blockHeight": 7356, "took": "14.959557ms"} -2023-12-16T14:11:39.725Z INFO sending PrepareRequest {"height": 7357, "view": 0} -2023-12-16T14:11:39.725Z INFO sending Commit {"height": 7357, "view": 0} -2023-12-16T14:11:39.725Z INFO approving block {"height": 7357, "hash": "7c019ee35fac17493bd43ea867763f00ed0bfd39af204b10cb9601e684bc1164", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6f97f4100d6629d8b4e2ce1f162861a9e30d53863099d36442ad71920486884"} -2023-12-16T14:11:39.727Z INFO initializing dbft {"height": 7358, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:39.728Z debug frostfs-node/morph.go:229 new block {"index": 7357} -2023-12-16T14:11:40.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7357, "blockHeight": 7357, "took": "13.996889ms"} -2023-12-16T14:11:40.727Z INFO sending PrepareRequest {"height": 7358, "view": 0} -2023-12-16T14:11:40.727Z INFO sending Commit {"height": 7358, "view": 0} -2023-12-16T14:11:40.727Z INFO approving block {"height": 7358, "hash": "cf2f6b3e525f8586cf7df0326429551cd178e40bca4aa06dc0640e6e4f6f517a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c019ee35fac17493bd43ea867763f00ed0bfd39af204b10cb9601e684bc1164"} -2023-12-16T14:11:40.729Z INFO initializing dbft {"height": 7359, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:40.730Z debug frostfs-node/morph.go:229 new block {"index": 7358} -2023-12-16T14:11:41.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7358, "blockHeight": 7358, "took": "13.207195ms"} -2023-12-16T14:11:41.729Z INFO sending PrepareRequest {"height": 7359, "view": 0} -2023-12-16T14:11:41.729Z INFO sending Commit {"height": 7359, "view": 0} -2023-12-16T14:11:41.729Z INFO approving block {"height": 7359, "hash": "9459e2ea424d6ccbb078b0dc08388e95effdf9d582edef658ab621b40fbe230b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf2f6b3e525f8586cf7df0326429551cd178e40bca4aa06dc0640e6e4f6f517a"} -2023-12-16T14:11:41.731Z INFO initializing dbft {"height": 7360, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:41.731Z debug frostfs-node/morph.go:229 new block {"index": 7359} -2023-12-16T14:11:42.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7359, "blockHeight": 7359, "took": "14.962779ms"} -2023-12-16T14:11:42.730Z INFO sending PrepareRequest {"height": 7360, "view": 0} -2023-12-16T14:11:42.731Z INFO sending Commit {"height": 7360, "view": 0} -2023-12-16T14:11:42.731Z INFO approving block {"height": 7360, "hash": "119cd644303b2213a2971251ae90b3036d0b025a148223553048481402ed7106", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9459e2ea424d6ccbb078b0dc08388e95effdf9d582edef658ab621b40fbe230b"} -2023-12-16T14:11:42.732Z INFO initializing dbft {"height": 7361, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:42.734Z debug frostfs-node/morph.go:229 new block {"index": 7360} -2023-12-16T14:11:43.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7360, "blockHeight": 7360, "took": "16.4731ms"} -2023-12-16T14:11:43.733Z INFO sending PrepareRequest {"height": 7361, "view": 0} -2023-12-16T14:11:43.733Z INFO sending Commit {"height": 7361, "view": 0} -2023-12-16T14:11:43.733Z INFO approving block {"height": 7361, "hash": "fb5a7fd43103603a497c8720b30c95471e543680c8c701c06bce3d57f9a27f64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "119cd644303b2213a2971251ae90b3036d0b025a148223553048481402ed7106"} -2023-12-16T14:11:43.734Z INFO initializing dbft {"height": 7362, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:43.736Z debug frostfs-node/morph.go:229 new block {"index": 7361} -2023-12-16T14:11:44.502Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7361, "blockHeight": 7361, "took": "19.659147ms"} -2023-12-16T14:11:44.734Z INFO sending PrepareRequest {"height": 7362, "view": 0} -2023-12-16T14:11:44.734Z INFO sending Commit {"height": 7362, "view": 0} -2023-12-16T14:11:44.735Z INFO approving block {"height": 7362, "hash": "5aeb8a2233070f3a299e9aa98245693f41b538f98c8c296606244914fa80a9fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb5a7fd43103603a497c8720b30c95471e543680c8c701c06bce3d57f9a27f64"} -2023-12-16T14:11:44.737Z INFO initializing dbft {"height": 7363, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:44.738Z debug frostfs-node/morph.go:229 new block {"index": 7362} -2023-12-16T14:11:45.495Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7362, "blockHeight": 7362, "took": "12.030709ms"} -2023-12-16T14:11:45.739Z INFO sending PrepareRequest {"height": 7363, "view": 0} -2023-12-16T14:11:45.740Z INFO sending Commit {"height": 7363, "view": 0} -2023-12-16T14:11:45.740Z INFO approving block {"height": 7363, "hash": "a6ddb147370757636c76d2b252845af09464170eb0d38c6254399a5528a77f77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aeb8a2233070f3a299e9aa98245693f41b538f98c8c296606244914fa80a9fb"} -2023-12-16T14:11:45.742Z INFO initializing dbft {"height": 7364, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:45.743Z debug frostfs-node/morph.go:229 new block {"index": 7363} -2023-12-16T14:11:46.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7363, "blockHeight": 7363, "took": "18.621773ms"} -2023-12-16T14:11:46.742Z INFO sending PrepareRequest {"height": 7364, "view": 0} -2023-12-16T14:11:46.742Z INFO sending Commit {"height": 7364, "view": 0} -2023-12-16T14:11:46.742Z INFO approving block {"height": 7364, "hash": "5e01a8d085d232587a6137187c9bb42d877fc1d480ac02b812b7161bfca8a139", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6ddb147370757636c76d2b252845af09464170eb0d38c6254399a5528a77f77"} -2023-12-16T14:11:46.744Z INFO initializing dbft {"height": 7365, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:46.745Z debug frostfs-node/morph.go:229 new block {"index": 7364} -2023-12-16T14:11:47.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7364, "blockHeight": 7364, "took": "19.139814ms"} -2023-12-16T14:11:47.744Z INFO sending PrepareRequest {"height": 7365, "view": 0} -2023-12-16T14:11:47.745Z INFO sending Commit {"height": 7365, "view": 0} -2023-12-16T14:11:47.749Z INFO approving block {"height": 7365, "hash": "7b0b9c8a82498de70b20fb412df64feae84efcde1bea4c5284a4486e8f8bb2fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e01a8d085d232587a6137187c9bb42d877fc1d480ac02b812b7161bfca8a139"} -2023-12-16T14:11:47.754Z INFO initializing dbft {"height": 7366, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:47.756Z debug frostfs-node/morph.go:229 new block {"index": 7365} -2023-12-16T14:11:48.500Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7365, "blockHeight": 7365, "took": "13.535959ms"} -2023-12-16T14:11:48.750Z INFO sending PrepareRequest {"height": 7366, "view": 0} -2023-12-16T14:11:48.751Z INFO sending Commit {"height": 7366, "view": 0} -2023-12-16T14:11:48.751Z INFO approving block {"height": 7366, "hash": "8b6c7c4690506be0137a5202b7c79584bbacd54d397031150fb2e8003f63e0f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b0b9c8a82498de70b20fb412df64feae84efcde1bea4c5284a4486e8f8bb2fd"} -2023-12-16T14:11:48.752Z INFO initializing dbft {"height": 7367, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:48.753Z debug frostfs-node/morph.go:229 new block {"index": 7366} -2023-12-16T14:11:49.512Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7366, "blockHeight": 7366, "took": "24.722569ms"} -2023-12-16T14:11:49.752Z INFO sending PrepareRequest {"height": 7367, "view": 0} -2023-12-16T14:11:49.753Z INFO sending Commit {"height": 7367, "view": 0} -2023-12-16T14:11:49.753Z INFO approving block {"height": 7367, "hash": "3b7abe4be2ec526eb038ce8e21337cfe7a4e70e7a96599469837ffb5040f7328", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b6c7c4690506be0137a5202b7c79584bbacd54d397031150fb2e8003f63e0f4"} -2023-12-16T14:11:49.756Z INFO initializing dbft {"height": 7368, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:49.756Z debug frostfs-node/morph.go:229 new block {"index": 7367} -2023-12-16T14:11:50.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7367, "blockHeight": 7367, "took": "16.561055ms"} -2023-12-16T14:11:50.755Z INFO sending PrepareRequest {"height": 7368, "view": 0} -2023-12-16T14:11:50.755Z INFO sending Commit {"height": 7368, "view": 0} -2023-12-16T14:11:50.755Z INFO approving block {"height": 7368, "hash": "5261bbf21c3b28a4db8d7e94da5a0a8d95c237eb6eef61040be4b2406ec21fc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b7abe4be2ec526eb038ce8e21337cfe7a4e70e7a96599469837ffb5040f7328"} -2023-12-16T14:11:50.757Z INFO initializing dbft {"height": 7369, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:50.758Z debug frostfs-node/morph.go:229 new block {"index": 7368} -2023-12-16T14:11:51.502Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7368, "blockHeight": 7368, "took": "13.957725ms"} -2023-12-16T14:11:51.757Z INFO sending PrepareRequest {"height": 7369, "view": 0} -2023-12-16T14:11:51.757Z INFO sending Commit {"height": 7369, "view": 0} -2023-12-16T14:11:51.758Z INFO approving block {"height": 7369, "hash": "6a7bf6c03dd83c99e4aebbd009e27e2dffe58cce97fbb5fb581676b5f92bc3b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5261bbf21c3b28a4db8d7e94da5a0a8d95c237eb6eef61040be4b2406ec21fc4"} -2023-12-16T14:11:51.759Z INFO initializing dbft {"height": 7370, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:51.761Z debug frostfs-node/morph.go:229 new block {"index": 7369} -2023-12-16T14:11:52.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7369, "blockHeight": 7369, "took": "15.191203ms"} -2023-12-16T14:11:52.759Z INFO sending PrepareRequest {"height": 7370, "view": 0} -2023-12-16T14:11:52.759Z INFO sending Commit {"height": 7370, "view": 0} -2023-12-16T14:11:52.759Z INFO approving block {"height": 7370, "hash": "93f42819c4b0f5b9770935a13145911d9089184abba499be567c12cc94be0872", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a7bf6c03dd83c99e4aebbd009e27e2dffe58cce97fbb5fb581676b5f92bc3b1"} -2023-12-16T14:11:52.760Z INFO initializing dbft {"height": 7371, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:52.761Z debug frostfs-node/morph.go:229 new block {"index": 7370} -2023-12-16T14:11:53.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7370, "blockHeight": 7370, "took": "13.802294ms"} -2023-12-16T14:11:53.760Z INFO sending PrepareRequest {"height": 7371, "view": 0} -2023-12-16T14:11:53.760Z INFO sending Commit {"height": 7371, "view": 0} -2023-12-16T14:11:53.761Z INFO approving block {"height": 7371, "hash": "d8c670861205859da5f05bc0e47d7fa857d95abca185f972d35563707d0ff197", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93f42819c4b0f5b9770935a13145911d9089184abba499be567c12cc94be0872"} -2023-12-16T14:11:53.762Z INFO initializing dbft {"height": 7372, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:53.763Z debug frostfs-node/morph.go:229 new block {"index": 7371} -2023-12-16T14:11:54.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7371, "blockHeight": 7371, "took": "21.898539ms"} -2023-12-16T14:11:54.762Z INFO sending PrepareRequest {"height": 7372, "view": 0} -2023-12-16T14:11:54.762Z INFO sending Commit {"height": 7372, "view": 0} -2023-12-16T14:11:54.762Z INFO approving block {"height": 7372, "hash": "cf4a0cbd1dcbd43ac7e71bde0485ef6f65492d840e92bb7d409ee176e4146c5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8c670861205859da5f05bc0e47d7fa857d95abca185f972d35563707d0ff197"} -2023-12-16T14:11:54.764Z INFO initializing dbft {"height": 7373, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:54.765Z debug frostfs-node/morph.go:229 new block {"index": 7372} -2023-12-16T14:11:55.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7372, "blockHeight": 7372, "took": "11.169595ms"} -2023-12-16T14:11:55.764Z INFO sending PrepareRequest {"height": 7373, "view": 0} -2023-12-16T14:11:55.764Z INFO sending Commit {"height": 7373, "view": 0} -2023-12-16T14:11:55.765Z INFO approving block {"height": 7373, "hash": "e9d9488f4cbc988ef8693f805c2555b55f7352dbb4cd3ee82891c348e870b302", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf4a0cbd1dcbd43ac7e71bde0485ef6f65492d840e92bb7d409ee176e4146c5e"} -2023-12-16T14:11:55.767Z INFO initializing dbft {"height": 7374, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:55.767Z debug frostfs-node/morph.go:229 new block {"index": 7373} -2023-12-16T14:11:56.510Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7373, "blockHeight": 7373, "took": "16.401849ms"} -2023-12-16T14:11:56.766Z INFO sending PrepareRequest {"height": 7374, "view": 0} -2023-12-16T14:11:56.766Z INFO sending Commit {"height": 7374, "view": 0} -2023-12-16T14:11:56.766Z INFO approving block {"height": 7374, "hash": "ebf3e2d6d58d45bc0ba7aee2af750861ae22b1a5b76b35cdce54a3b7c75dbb57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9d9488f4cbc988ef8693f805c2555b55f7352dbb4cd3ee82891c348e870b302"} -2023-12-16T14:11:56.768Z INFO initializing dbft {"height": 7375, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:56.769Z debug frostfs-node/morph.go:229 new block {"index": 7374} -2023-12-16T14:11:57.512Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7374, "blockHeight": 7374, "took": "18.151498ms"} -2023-12-16T14:11:57.767Z INFO sending PrepareRequest {"height": 7375, "view": 0} -2023-12-16T14:11:57.768Z INFO sending Commit {"height": 7375, "view": 0} -2023-12-16T14:11:57.768Z INFO approving block {"height": 7375, "hash": "630f3f20e72058ba0aa51beceda030970724c41bbec8fff307583d3459bb0df8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebf3e2d6d58d45bc0ba7aee2af750861ae22b1a5b76b35cdce54a3b7c75dbb57"} -2023-12-16T14:11:57.770Z INFO initializing dbft {"height": 7376, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:57.770Z debug frostfs-node/morph.go:229 new block {"index": 7375} -2023-12-16T14:11:58.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7375, "blockHeight": 7375, "took": "18.213911ms"} -2023-12-16T14:11:58.769Z INFO sending PrepareRequest {"height": 7376, "view": 0} -2023-12-16T14:11:58.770Z INFO sending Commit {"height": 7376, "view": 0} -2023-12-16T14:11:58.771Z INFO approving block {"height": 7376, "hash": "c95aaa44d77e9470af4ae16e5b0d8b0e3c2240b991a816d3aa9dbbf68cd22553", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "630f3f20e72058ba0aa51beceda030970724c41bbec8fff307583d3459bb0df8"} -2023-12-16T14:11:58.774Z INFO initializing dbft {"height": 7377, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:58.775Z debug frostfs-node/morph.go:229 new block {"index": 7376} -2023-12-16T14:11:59.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7376, "blockHeight": 7376, "took": "21.415254ms"} -2023-12-16T14:11:59.772Z INFO sending PrepareRequest {"height": 7377, "view": 0} -2023-12-16T14:11:59.773Z INFO sending Commit {"height": 7377, "view": 0} -2023-12-16T14:11:59.773Z INFO approving block {"height": 7377, "hash": "48b2164160845e1d6451075d53d05347a2b216df4fe8ad913cf2f4714a988fb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c95aaa44d77e9470af4ae16e5b0d8b0e3c2240b991a816d3aa9dbbf68cd22553"} -2023-12-16T14:11:59.775Z INFO initializing dbft {"height": 7378, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:11:59.776Z debug frostfs-node/morph.go:229 new block {"index": 7377} -2023-12-16T14:12:00.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7377, "blockHeight": 7377, "took": "18.671906ms"} -2023-12-16T14:12:00.775Z INFO sending PrepareRequest {"height": 7378, "view": 0} -2023-12-16T14:12:00.775Z INFO sending Commit {"height": 7378, "view": 0} -2023-12-16T14:12:00.775Z INFO approving block {"height": 7378, "hash": "c01d5b1efd6692e6ee73926f168994f401ae52da0e0c32df6d1276c8daa30700", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48b2164160845e1d6451075d53d05347a2b216df4fe8ad913cf2f4714a988fb2"} -2023-12-16T14:12:00.778Z INFO initializing dbft {"height": 7379, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:00.778Z debug frostfs-node/morph.go:229 new block {"index": 7378} -2023-12-16T14:12:01.511Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7378, "blockHeight": 7378, "took": "12.555028ms"} -2023-12-16T14:12:01.777Z INFO sending PrepareRequest {"height": 7379, "view": 0} -2023-12-16T14:12:01.777Z INFO sending Commit {"height": 7379, "view": 0} -2023-12-16T14:12:01.777Z INFO approving block {"height": 7379, "hash": "5cade1b4d6a900147fc59777bd8fdd51d69483e926753e04a3d5eb3460f58810", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c01d5b1efd6692e6ee73926f168994f401ae52da0e0c32df6d1276c8daa30700"} -2023-12-16T14:12:01.779Z INFO initializing dbft {"height": 7380, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:01.779Z debug frostfs-node/morph.go:229 new block {"index": 7379} -2023-12-16T14:12:02.523Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7379, "blockHeight": 7379, "took": "23.559027ms"} -2023-12-16T14:12:02.779Z INFO sending PrepareRequest {"height": 7380, "view": 0} -2023-12-16T14:12:02.779Z INFO sending Commit {"height": 7380, "view": 0} -2023-12-16T14:12:02.780Z INFO approving block {"height": 7380, "hash": "72676a9eda97316e2e6527c8ddb6927fe046bcf1ed5a28107d2f8f737b9cd7f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cade1b4d6a900147fc59777bd8fdd51d69483e926753e04a3d5eb3460f58810"} -2023-12-16T14:12:02.781Z INFO initializing dbft {"height": 7381, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:02.782Z debug frostfs-node/morph.go:229 new block {"index": 7380} -2023-12-16T14:12:03.519Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7380, "blockHeight": 7380, "took": "19.495388ms"} -2023-12-16T14:12:03.781Z INFO sending PrepareRequest {"height": 7381, "view": 0} -2023-12-16T14:12:03.781Z INFO sending Commit {"height": 7381, "view": 0} -2023-12-16T14:12:03.782Z INFO approving block {"height": 7381, "hash": "ebd6cb345971ef77065e8e1a9bbbf1221783dfa0d3d7be23b996a55871baf515", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72676a9eda97316e2e6527c8ddb6927fe046bcf1ed5a28107d2f8f737b9cd7f3"} -2023-12-16T14:12:03.784Z INFO initializing dbft {"height": 7382, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:03.785Z debug frostfs-node/morph.go:229 new block {"index": 7381} -2023-12-16T14:12:04.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7381, "blockHeight": 7381, "took": "20.391394ms"} -2023-12-16T14:12:04.783Z INFO sending PrepareRequest {"height": 7382, "view": 0} -2023-12-16T14:12:04.783Z INFO sending Commit {"height": 7382, "view": 0} -2023-12-16T14:12:04.783Z INFO approving block {"height": 7382, "hash": "e4ccd86f35edcf8df49caf222553db60394f4ec9ff5c5f69a913f6c99b46f316", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebd6cb345971ef77065e8e1a9bbbf1221783dfa0d3d7be23b996a55871baf515"} -2023-12-16T14:12:04.785Z INFO initializing dbft {"height": 7383, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:04.786Z debug frostfs-node/morph.go:229 new block {"index": 7382} -2023-12-16T14:12:05.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7382, "blockHeight": 7382, "took": "14.623516ms"} -2023-12-16T14:12:05.784Z INFO sending PrepareRequest {"height": 7383, "view": 0} -2023-12-16T14:12:05.785Z INFO sending Commit {"height": 7383, "view": 0} -2023-12-16T14:12:05.787Z INFO approving block {"height": 7383, "hash": "e610bf6bee4a1a8b333edbf6f062a97eadbb268f96d52aabe0110c6b1387a5f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4ccd86f35edcf8df49caf222553db60394f4ec9ff5c5f69a913f6c99b46f316"} -2023-12-16T14:12:05.788Z INFO initializing dbft {"height": 7384, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:05.789Z debug frostfs-node/morph.go:229 new block {"index": 7383} -2023-12-16T14:12:06.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7383, "blockHeight": 7383, "took": "21.971302ms"} -2023-12-16T14:12:06.788Z INFO sending PrepareRequest {"height": 7384, "view": 0} -2023-12-16T14:12:06.788Z INFO sending Commit {"height": 7384, "view": 0} -2023-12-16T14:12:06.789Z INFO approving block {"height": 7384, "hash": "0ece85e0ef9880c293327e5e965bc10a2ebb25472aac29edf06baec81d157dbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e610bf6bee4a1a8b333edbf6f062a97eadbb268f96d52aabe0110c6b1387a5f5"} -2023-12-16T14:12:06.790Z INFO initializing dbft {"height": 7385, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:06.791Z debug frostfs-node/morph.go:229 new block {"index": 7384} -2023-12-16T14:12:07.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7384, "blockHeight": 7384, "took": "14.766187ms"} -2023-12-16T14:12:07.791Z INFO sending PrepareRequest {"height": 7385, "view": 0} -2023-12-16T14:12:07.791Z INFO sending Commit {"height": 7385, "view": 0} -2023-12-16T14:12:07.791Z INFO approving block {"height": 7385, "hash": "46d5149387be23b57303166e95ad3f4278dcb33d951dd2c21e73b79c00857cc7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ece85e0ef9880c293327e5e965bc10a2ebb25472aac29edf06baec81d157dbc"} -2023-12-16T14:12:07.793Z INFO initializing dbft {"height": 7386, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:07.794Z debug frostfs-node/morph.go:229 new block {"index": 7385} -2023-12-16T14:12:08.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7385, "blockHeight": 7385, "took": "14.453593ms"} -2023-12-16T14:12:08.793Z INFO sending PrepareRequest {"height": 7386, "view": 0} -2023-12-16T14:12:08.793Z INFO sending Commit {"height": 7386, "view": 0} -2023-12-16T14:12:08.794Z INFO approving block {"height": 7386, "hash": "a8fd6945a347c65da28c755bc85a77d983f8bbb59526639f322be959075dfa21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46d5149387be23b57303166e95ad3f4278dcb33d951dd2c21e73b79c00857cc7"} -2023-12-16T14:12:08.795Z INFO initializing dbft {"height": 7387, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:08.796Z debug frostfs-node/morph.go:229 new block {"index": 7386} -2023-12-16T14:12:09.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7386, "blockHeight": 7386, "took": "13.74213ms"} -2023-12-16T14:12:09.795Z INFO sending PrepareRequest {"height": 7387, "view": 0} -2023-12-16T14:12:09.795Z INFO sending Commit {"height": 7387, "view": 0} -2023-12-16T14:12:09.796Z INFO approving block {"height": 7387, "hash": "c8d849b6cb718844980c0c15c4f870006d22d920fb102f0fae8a8150376a033c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8fd6945a347c65da28c755bc85a77d983f8bbb59526639f322be959075dfa21"} -2023-12-16T14:12:09.797Z INFO initializing dbft {"height": 7388, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:09.798Z debug frostfs-node/morph.go:229 new block {"index": 7387} -2023-12-16T14:12:10.525Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7387, "blockHeight": 7387, "took": "19.002653ms"} -2023-12-16T14:12:10.797Z INFO sending PrepareRequest {"height": 7388, "view": 0} -2023-12-16T14:12:10.797Z INFO sending Commit {"height": 7388, "view": 0} -2023-12-16T14:12:10.798Z INFO approving block {"height": 7388, "hash": "8506357bc5b696ad6242806384b71934391ccd8e330ed1b07884cb341b10e81a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8d849b6cb718844980c0c15c4f870006d22d920fb102f0fae8a8150376a033c"} -2023-12-16T14:12:10.799Z INFO initializing dbft {"height": 7389, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:10.799Z debug frostfs-node/morph.go:229 new block {"index": 7388} -2023-12-16T14:12:11.527Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7388, "blockHeight": 7388, "took": "19.921671ms"} -2023-12-16T14:12:11.799Z INFO sending PrepareRequest {"height": 7389, "view": 0} -2023-12-16T14:12:11.800Z INFO sending Commit {"height": 7389, "view": 0} -2023-12-16T14:12:11.800Z INFO approving block {"height": 7389, "hash": "d98be5ce737be9408df6c48a30dd119fc02854eeae0eb53116edcb2459f5a956", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8506357bc5b696ad6242806384b71934391ccd8e330ed1b07884cb341b10e81a"} -2023-12-16T14:12:11.802Z INFO initializing dbft {"height": 7390, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:11.803Z debug frostfs-node/morph.go:229 new block {"index": 7389} -2023-12-16T14:12:12.523Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7389, "blockHeight": 7389, "took": "15.657961ms"} -2023-12-16T14:12:12.802Z INFO sending PrepareRequest {"height": 7390, "view": 0} -2023-12-16T14:12:12.802Z INFO sending Commit {"height": 7390, "view": 0} -2023-12-16T14:12:12.803Z INFO approving block {"height": 7390, "hash": "812d786aa32e4a62d386aca4cc1eb8f9a2bc1b5a4eca6c50f6310a4ced119659", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d98be5ce737be9408df6c48a30dd119fc02854eeae0eb53116edcb2459f5a956"} -2023-12-16T14:12:12.804Z INFO initializing dbft {"height": 7391, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:12.806Z debug frostfs-node/morph.go:229 new block {"index": 7390} -2023-12-16T14:12:13.522Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7390, "blockHeight": 7390, "took": "13.989783ms"} -2023-12-16T14:12:13.804Z INFO sending PrepareRequest {"height": 7391, "view": 0} -2023-12-16T14:12:13.804Z INFO sending Commit {"height": 7391, "view": 0} -2023-12-16T14:12:13.804Z INFO approving block {"height": 7391, "hash": "2981ef02f042ef470736b70bded3b6118e33b253b69f75656304b12d1fabe099", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "812d786aa32e4a62d386aca4cc1eb8f9a2bc1b5a4eca6c50f6310a4ced119659"} -2023-12-16T14:12:13.805Z INFO initializing dbft {"height": 7392, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:13.807Z debug frostfs-node/morph.go:229 new block {"index": 7391} -2023-12-16T14:12:14.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7391, "blockHeight": 7391, "took": "16.589644ms"} -2023-12-16T14:12:14.806Z INFO sending PrepareRequest {"height": 7392, "view": 0} -2023-12-16T14:12:14.806Z INFO sending Commit {"height": 7392, "view": 0} -2023-12-16T14:12:14.806Z INFO approving block {"height": 7392, "hash": "eb7564fbd4a56d1d7eb2b9ccfbda26f09736deea60854a1329cfa2d6ba201d22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2981ef02f042ef470736b70bded3b6118e33b253b69f75656304b12d1fabe099"} -2023-12-16T14:12:14.807Z INFO initializing dbft {"height": 7393, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:14.808Z debug frostfs-node/morph.go:229 new block {"index": 7392} -2023-12-16T14:12:15.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7392, "blockHeight": 7392, "took": "23.996974ms"} -2023-12-16T14:12:15.808Z INFO sending PrepareRequest {"height": 7393, "view": 0} -2023-12-16T14:12:15.809Z INFO sending Commit {"height": 7393, "view": 0} -2023-12-16T14:12:15.809Z INFO approving block {"height": 7393, "hash": "dec8dfa4f94f150797908b0e6d91c3e17bb54d9feff4b169a4b841f5ada6c06b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb7564fbd4a56d1d7eb2b9ccfbda26f09736deea60854a1329cfa2d6ba201d22"} -2023-12-16T14:12:15.811Z INFO initializing dbft {"height": 7394, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:15.812Z debug frostfs-node/morph.go:229 new block {"index": 7393} -2023-12-16T14:12:16.528Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7393, "blockHeight": 7393, "took": "16.928667ms"} -2023-12-16T14:12:16.811Z INFO sending PrepareRequest {"height": 7394, "view": 0} -2023-12-16T14:12:16.812Z INFO sending Commit {"height": 7394, "view": 0} -2023-12-16T14:12:16.812Z INFO approving block {"height": 7394, "hash": "e7641649fd4077766cfce5d06f8fe6b8f6c187604f25f2b4cfce0874a5bce230", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dec8dfa4f94f150797908b0e6d91c3e17bb54d9feff4b169a4b841f5ada6c06b"} -2023-12-16T14:12:16.814Z INFO initializing dbft {"height": 7395, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:16.815Z debug frostfs-node/morph.go:229 new block {"index": 7394} -2023-12-16T14:12:17.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7394, "blockHeight": 7394, "took": "24.065214ms"} -2023-12-16T14:12:17.814Z INFO sending PrepareRequest {"height": 7395, "view": 0} -2023-12-16T14:12:17.814Z INFO sending Commit {"height": 7395, "view": 0} -2023-12-16T14:12:17.815Z INFO approving block {"height": 7395, "hash": "d365cc6454879a5306b6b34c81253729aaf5a0152c663f38bb640fb4a9797d7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7641649fd4077766cfce5d06f8fe6b8f6c187604f25f2b4cfce0874a5bce230"} -2023-12-16T14:12:17.817Z INFO initializing dbft {"height": 7396, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:17.818Z debug frostfs-node/morph.go:229 new block {"index": 7395} -2023-12-16T14:12:18.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7395, "blockHeight": 7395, "took": "30.62789ms"} -2023-12-16T14:12:18.817Z INFO sending PrepareRequest {"height": 7396, "view": 0} -2023-12-16T14:12:18.817Z INFO sending Commit {"height": 7396, "view": 0} -2023-12-16T14:12:18.818Z INFO approving block {"height": 7396, "hash": "901d24cef80cb7432b31c77e6784eaa92d79027bf316a5d44d35395e77e4ff29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d365cc6454879a5306b6b34c81253729aaf5a0152c663f38bb640fb4a9797d7a"} -2023-12-16T14:12:18.820Z INFO initializing dbft {"height": 7397, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:18.821Z debug frostfs-node/morph.go:229 new block {"index": 7396} -2023-12-16T14:12:19.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7396, "blockHeight": 7396, "took": "21.313096ms"} -2023-12-16T14:12:19.819Z INFO sending PrepareRequest {"height": 7397, "view": 0} -2023-12-16T14:12:19.819Z INFO sending Commit {"height": 7397, "view": 0} -2023-12-16T14:12:19.819Z INFO approving block {"height": 7397, "hash": "1cc4f9357d96e390bdff365636118b57ae5fc67a95099a3cd39215f9f63bf11b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "901d24cef80cb7432b31c77e6784eaa92d79027bf316a5d44d35395e77e4ff29"} -2023-12-16T14:12:19.821Z INFO initializing dbft {"height": 7398, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:19.822Z debug frostfs-node/morph.go:229 new block {"index": 7397} -2023-12-16T14:12:20.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7397, "blockHeight": 7397, "took": "18.189387ms"} -2023-12-16T14:12:20.820Z INFO sending PrepareRequest {"height": 7398, "view": 0} -2023-12-16T14:12:20.820Z INFO sending Commit {"height": 7398, "view": 0} -2023-12-16T14:12:20.821Z INFO approving block {"height": 7398, "hash": "14345f1c89cd99dfe2653a039ee4af801766eeed4d18d664e6de2f41da23026e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cc4f9357d96e390bdff365636118b57ae5fc67a95099a3cd39215f9f63bf11b"} -2023-12-16T14:12:20.822Z INFO initializing dbft {"height": 7399, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:20.823Z debug frostfs-node/morph.go:229 new block {"index": 7398} -2023-12-16T14:12:21.525Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7398, "blockHeight": 7398, "took": "10.403733ms"} -2023-12-16T14:12:21.822Z INFO sending PrepareRequest {"height": 7399, "view": 0} -2023-12-16T14:12:21.822Z INFO sending Commit {"height": 7399, "view": 0} -2023-12-16T14:12:21.823Z INFO approving block {"height": 7399, "hash": "efb0a5655fce9cdbd701c842f22567c77e07c45ed5fc5c902cb5723a2562fa93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14345f1c89cd99dfe2653a039ee4af801766eeed4d18d664e6de2f41da23026e"} -2023-12-16T14:12:21.825Z INFO initializing dbft {"height": 7400, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:21.826Z debug frostfs-node/morph.go:229 new block {"index": 7399} -2023-12-16T14:12:22.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7399, "blockHeight": 7399, "took": "27.876398ms"} -2023-12-16T14:12:22.825Z INFO sending PrepareRequest {"height": 7400, "view": 0} -2023-12-16T14:12:22.825Z INFO sending Commit {"height": 7400, "view": 0} -2023-12-16T14:12:22.826Z INFO approving block {"height": 7400, "hash": "4450eea59607cffff696f4ef2b94d442128021831e03a65352e113305e4f1127", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efb0a5655fce9cdbd701c842f22567c77e07c45ed5fc5c902cb5723a2562fa93"} -2023-12-16T14:12:22.829Z INFO initializing dbft {"height": 7401, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:22.831Z debug frostfs-node/morph.go:229 new block {"index": 7400} -2023-12-16T14:12:22.835Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:12:22.847Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:12:22.847Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:12:23.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7400, "blockHeight": 7400, "took": "16.654203ms"} -2023-12-16T14:12:23.828Z INFO sending PrepareRequest {"height": 7401, "view": 0} -2023-12-16T14:12:23.828Z INFO sending Commit {"height": 7401, "view": 0} -2023-12-16T14:12:23.829Z INFO approving block {"height": 7401, "hash": "2b27d1be553e02c8ca264f62815f1240f5daec10cc9136e60bfe6e69a5d53db5", "tx_count": 2, "merkle": "093e23b088f923c6cdc5c17bf1078a2bc93c61f2d20df82793b75572682f1b5f", "prev": "4450eea59607cffff696f4ef2b94d442128021831e03a65352e113305e4f1127"} -2023-12-16T14:12:23.830Z INFO runtime log {"tx": "2163e72bbde282551b70270ec14261b985853f668bd678a2614126b53e620c90", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:12:23.830Z INFO runtime log {"tx": "2163e72bbde282551b70270ec14261b985853f668bd678a2614126b53e620c90", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:12:23.832Z INFO initializing dbft {"height": 7402, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:23.833Z debug frostfs-node/morph.go:229 new block {"index": 7401} -2023-12-16T14:12:24.535Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7401, "blockHeight": 7401, "took": "17.948822ms"} -2023-12-16T14:12:24.830Z INFO sending PrepareRequest {"height": 7402, "view": 0} -2023-12-16T14:12:24.830Z INFO sending Commit {"height": 7402, "view": 0} -2023-12-16T14:12:24.830Z INFO approving block {"height": 7402, "hash": "22ce1f7bd0aa07899e0fd8aa5cae50ba2576be7999d1405828db8ca8ca979025", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b27d1be553e02c8ca264f62815f1240f5daec10cc9136e60bfe6e69a5d53db5"} -2023-12-16T14:12:24.831Z INFO initializing dbft {"height": 7403, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:24.832Z debug frostfs-node/morph.go:229 new block {"index": 7402} -2023-12-16T14:12:25.530Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7402, "blockHeight": 7402, "took": "12.865422ms"} -2023-12-16T14:12:25.831Z INFO sending PrepareRequest {"height": 7403, "view": 0} -2023-12-16T14:12:25.832Z INFO sending Commit {"height": 7403, "view": 0} -2023-12-16T14:12:25.832Z INFO approving block {"height": 7403, "hash": "d664dec75c6d8bb7c433ab97f8799d0280d9fe78da1846e284aa95b3e795caa8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22ce1f7bd0aa07899e0fd8aa5cae50ba2576be7999d1405828db8ca8ca979025"} -2023-12-16T14:12:25.835Z INFO initializing dbft {"height": 7404, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:25.836Z debug frostfs-node/morph.go:229 new block {"index": 7403} -2023-12-16T14:12:26.530Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7403, "blockHeight": 7403, "took": "11.724012ms"} -2023-12-16T14:12:26.834Z INFO sending PrepareRequest {"height": 7404, "view": 0} -2023-12-16T14:12:26.834Z INFO sending Commit {"height": 7404, "view": 0} -2023-12-16T14:12:26.834Z INFO approving block {"height": 7404, "hash": "cab796b23e3170182261d65c83128ac1a25c0ad41b48d951259c8c99f8ecaa9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d664dec75c6d8bb7c433ab97f8799d0280d9fe78da1846e284aa95b3e795caa8"} -2023-12-16T14:12:26.835Z INFO initializing dbft {"height": 7405, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:26.836Z debug frostfs-node/morph.go:229 new block {"index": 7404} -2023-12-16T14:12:27.538Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7404, "blockHeight": 7404, "took": "18.178057ms"} -2023-12-16T14:12:27.836Z INFO sending PrepareRequest {"height": 7405, "view": 0} -2023-12-16T14:12:27.836Z INFO sending Commit {"height": 7405, "view": 0} -2023-12-16T14:12:27.836Z INFO approving block {"height": 7405, "hash": "e47d03e9241fa837c5f23b96ebd1a4be960c9776ebf49da065706fc597f135ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cab796b23e3170182261d65c83128ac1a25c0ad41b48d951259c8c99f8ecaa9d"} -2023-12-16T14:12:27.838Z INFO initializing dbft {"height": 7406, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:27.839Z debug frostfs-node/morph.go:229 new block {"index": 7405} -2023-12-16T14:12:28.535Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7405, "blockHeight": 7405, "took": "14.799231ms"} -2023-12-16T14:12:28.837Z INFO sending PrepareRequest {"height": 7406, "view": 0} -2023-12-16T14:12:28.838Z INFO sending Commit {"height": 7406, "view": 0} -2023-12-16T14:12:28.838Z INFO approving block {"height": 7406, "hash": "fbc519d16fbd98c2c8b9e7a636aea9b66760f89a7f8ae4a1d853c126cb48ae92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e47d03e9241fa837c5f23b96ebd1a4be960c9776ebf49da065706fc597f135ff"} -2023-12-16T14:12:28.839Z INFO initializing dbft {"height": 7407, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:28.840Z debug frostfs-node/morph.go:229 new block {"index": 7406} -2023-12-16T14:12:29.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7406, "blockHeight": 7406, "took": "12.297898ms"} -2023-12-16T14:12:29.839Z INFO sending PrepareRequest {"height": 7407, "view": 0} -2023-12-16T14:12:29.839Z INFO sending Commit {"height": 7407, "view": 0} -2023-12-16T14:12:29.839Z INFO approving block {"height": 7407, "hash": "f9d1c9507055e5bac12bb11bd87dd8de58da66c965d2654b2faaf239bb916da3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbc519d16fbd98c2c8b9e7a636aea9b66760f89a7f8ae4a1d853c126cb48ae92"} -2023-12-16T14:12:29.841Z INFO initializing dbft {"height": 7408, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:29.842Z debug frostfs-node/morph.go:229 new block {"index": 7407} -2023-12-16T14:12:30.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7407, "blockHeight": 7407, "took": "10.460514ms"} -2023-12-16T14:12:30.841Z INFO sending PrepareRequest {"height": 7408, "view": 0} -2023-12-16T14:12:30.841Z INFO sending Commit {"height": 7408, "view": 0} -2023-12-16T14:12:30.841Z INFO approving block {"height": 7408, "hash": "ad041b0553d3b67481d35b04afb370055d493934d8bda2ab40b862124a382798", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9d1c9507055e5bac12bb11bd87dd8de58da66c965d2654b2faaf239bb916da3"} -2023-12-16T14:12:30.843Z INFO initializing dbft {"height": 7409, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:30.844Z debug frostfs-node/morph.go:229 new block {"index": 7408} -2023-12-16T14:12:30.849Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 31, "iteration": 2, "error": "no data for 1 iteration in 31 epoch for consumers's trusts"} -2023-12-16T14:12:31.544Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7408, "blockHeight": 7408, "took": "21.707782ms"} -2023-12-16T14:12:31.843Z INFO sending PrepareRequest {"height": 7409, "view": 0} -2023-12-16T14:12:31.843Z INFO sending Commit {"height": 7409, "view": 0} -2023-12-16T14:12:31.844Z INFO approving block {"height": 7409, "hash": "108a395c0ba8c88963e8b3795946419c348a60dc8e90250fcf6d6761dd84fa94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad041b0553d3b67481d35b04afb370055d493934d8bda2ab40b862124a382798"} -2023-12-16T14:12:31.845Z INFO initializing dbft {"height": 7410, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:31.846Z debug frostfs-node/morph.go:229 new block {"index": 7409} -2023-12-16T14:12:31.849Z info settlement/calls.go:106 start basic income distribution {"epoch": 31} -2023-12-16T14:12:32.547Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7409, "blockHeight": 7409, "took": "22.788271ms"} -2023-12-16T14:12:32.845Z INFO sending PrepareRequest {"height": 7410, "view": 0} -2023-12-16T14:12:32.845Z INFO sending Commit {"height": 7410, "view": 0} -2023-12-16T14:12:32.846Z INFO approving block {"height": 7410, "hash": "e18c23e671122e2da6adc6b7635ba19e5cee0b4d85da403e0beb436e123768e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "108a395c0ba8c88963e8b3795946419c348a60dc8e90250fcf6d6761dd84fa94"} -2023-12-16T14:12:32.847Z INFO initializing dbft {"height": 7411, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:32.848Z debug frostfs-node/morph.go:229 new block {"index": 7410} -2023-12-16T14:12:33.540Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7410, "blockHeight": 7410, "took": "14.899944ms"} -2023-12-16T14:12:33.847Z INFO sending PrepareRequest {"height": 7411, "view": 0} -2023-12-16T14:12:33.848Z INFO sending Commit {"height": 7411, "view": 0} -2023-12-16T14:12:33.848Z INFO approving block {"height": 7411, "hash": "f6652e29c72fba63ee14d67fdb829f8330d3c1bd4665b5fdca12882527b3751f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e18c23e671122e2da6adc6b7635ba19e5cee0b4d85da403e0beb436e123768e6"} -2023-12-16T14:12:33.850Z INFO initializing dbft {"height": 7412, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:33.851Z debug frostfs-node/morph.go:229 new block {"index": 7411} -2023-12-16T14:12:34.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7411, "blockHeight": 7411, "took": "17.813794ms"} -2023-12-16T14:12:34.850Z INFO sending PrepareRequest {"height": 7412, "view": 0} -2023-12-16T14:12:34.850Z INFO sending Commit {"height": 7412, "view": 0} -2023-12-16T14:12:34.850Z INFO approving block {"height": 7412, "hash": "def9b00ed0b828ffd1259c043733a81d76dbb27c0c047b7041b56b7dd8eac267", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6652e29c72fba63ee14d67fdb829f8330d3c1bd4665b5fdca12882527b3751f"} -2023-12-16T14:12:34.852Z INFO initializing dbft {"height": 7413, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:34.853Z debug frostfs-node/morph.go:229 new block {"index": 7412} -2023-12-16T14:12:35.542Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7412, "blockHeight": 7412, "took": "15.312247ms"} -2023-12-16T14:12:35.852Z INFO sending PrepareRequest {"height": 7413, "view": 0} -2023-12-16T14:12:35.852Z INFO sending Commit {"height": 7413, "view": 0} -2023-12-16T14:12:35.853Z INFO approving block {"height": 7413, "hash": "03a09eee6a9d85877368261bca5cc594cd4ed3ef4c251ef9b3778ff6f04b8792", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "def9b00ed0b828ffd1259c043733a81d76dbb27c0c047b7041b56b7dd8eac267"} -2023-12-16T14:12:35.854Z INFO initializing dbft {"height": 7414, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:35.855Z debug frostfs-node/morph.go:229 new block {"index": 7413} -2023-12-16T14:12:36.544Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7413, "blockHeight": 7413, "took": "15.555654ms"} -2023-12-16T14:12:36.854Z INFO sending PrepareRequest {"height": 7414, "view": 0} -2023-12-16T14:12:36.854Z INFO sending Commit {"height": 7414, "view": 0} -2023-12-16T14:12:36.854Z INFO approving block {"height": 7414, "hash": "72106816096a4d4e289719272a2bc11e5c47e641db260da585848c6719fba92c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03a09eee6a9d85877368261bca5cc594cd4ed3ef4c251ef9b3778ff6f04b8792"} -2023-12-16T14:12:36.856Z INFO initializing dbft {"height": 7415, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:36.857Z debug frostfs-node/morph.go:229 new block {"index": 7414} -2023-12-16T14:12:37.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7414, "blockHeight": 7414, "took": "16.564691ms"} -2023-12-16T14:12:37.856Z INFO sending PrepareRequest {"height": 7415, "view": 0} -2023-12-16T14:12:37.856Z INFO sending Commit {"height": 7415, "view": 0} -2023-12-16T14:12:37.856Z INFO approving block {"height": 7415, "hash": "6f1c0f621d23704dbc564db25b11f07f2ce910934f8966aeb4e348dd731c0ef0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72106816096a4d4e289719272a2bc11e5c47e641db260da585848c6719fba92c"} -2023-12-16T14:12:37.858Z INFO initializing dbft {"height": 7416, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:37.859Z debug frostfs-node/morph.go:229 new block {"index": 7415} -2023-12-16T14:12:38.542Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7415, "blockHeight": 7415, "took": "12.226517ms"} -2023-12-16T14:12:38.858Z INFO sending PrepareRequest {"height": 7416, "view": 0} -2023-12-16T14:12:38.858Z INFO sending Commit {"height": 7416, "view": 0} -2023-12-16T14:12:38.859Z INFO approving block {"height": 7416, "hash": "f72140554d4e22fca0856ba5b1104c7811de49afd188d2530ede6c0cf70ced49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f1c0f621d23704dbc564db25b11f07f2ce910934f8966aeb4e348dd731c0ef0"} -2023-12-16T14:12:38.860Z INFO initializing dbft {"height": 7417, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:38.861Z debug frostfs-node/morph.go:229 new block {"index": 7416} -2023-12-16T14:12:39.547Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7416, "blockHeight": 7416, "took": "16.790821ms"} -2023-12-16T14:12:39.860Z INFO sending PrepareRequest {"height": 7417, "view": 0} -2023-12-16T14:12:39.860Z INFO sending Commit {"height": 7417, "view": 0} -2023-12-16T14:12:39.861Z INFO approving block {"height": 7417, "hash": "2ae63f2d87843795362bb897b7eb0de93c793b4d4326fc0eb35f6590d6715dda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f72140554d4e22fca0856ba5b1104c7811de49afd188d2530ede6c0cf70ced49"} -2023-12-16T14:12:39.862Z INFO initializing dbft {"height": 7418, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:39.863Z debug frostfs-node/morph.go:229 new block {"index": 7417} -2023-12-16T14:12:40.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7417, "blockHeight": 7417, "took": "19.477053ms"} -2023-12-16T14:12:40.862Z INFO sending PrepareRequest {"height": 7418, "view": 0} -2023-12-16T14:12:40.862Z INFO sending Commit {"height": 7418, "view": 0} -2023-12-16T14:12:40.863Z INFO approving block {"height": 7418, "hash": "da1f791b2b859164a7fcad13c3607f33629b0429ab07a1ddb7e172dc31998ac6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ae63f2d87843795362bb897b7eb0de93c793b4d4326fc0eb35f6590d6715dda"} -2023-12-16T14:12:40.865Z INFO initializing dbft {"height": 7419, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:40.866Z debug frostfs-node/morph.go:229 new block {"index": 7418} -2023-12-16T14:12:41.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7418, "blockHeight": 7418, "took": "14.624007ms"} -2023-12-16T14:12:41.865Z INFO sending PrepareRequest {"height": 7419, "view": 0} -2023-12-16T14:12:41.865Z INFO sending Commit {"height": 7419, "view": 0} -2023-12-16T14:12:41.866Z INFO approving block {"height": 7419, "hash": "d4e3846865c22e8efa9976ee3218f986afceb5f55431ccba25975f891137306a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da1f791b2b859164a7fcad13c3607f33629b0429ab07a1ddb7e172dc31998ac6"} -2023-12-16T14:12:41.868Z INFO initializing dbft {"height": 7420, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:41.869Z debug frostfs-node/morph.go:229 new block {"index": 7419} -2023-12-16T14:12:42.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7419, "blockHeight": 7419, "took": "17.916251ms"} -2023-12-16T14:12:42.867Z INFO sending PrepareRequest {"height": 7420, "view": 0} -2023-12-16T14:12:42.867Z INFO sending Commit {"height": 7420, "view": 0} -2023-12-16T14:12:42.867Z INFO approving block {"height": 7420, "hash": "01f7e8369a102ac404abfce2b5acfff82e3deb05d5b6dbdd4f263a871112fb03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4e3846865c22e8efa9976ee3218f986afceb5f55431ccba25975f891137306a"} -2023-12-16T14:12:42.868Z INFO initializing dbft {"height": 7421, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:42.870Z debug frostfs-node/morph.go:229 new block {"index": 7420} -2023-12-16T14:12:43.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7420, "blockHeight": 7420, "took": "12.951939ms"} -2023-12-16T14:12:43.868Z INFO sending PrepareRequest {"height": 7421, "view": 0} -2023-12-16T14:12:43.868Z INFO sending Commit {"height": 7421, "view": 0} -2023-12-16T14:12:43.869Z INFO approving block {"height": 7421, "hash": "03e530eddbbb13294d60afb0d34ab783ad78094af1c03ed0958231b87f7ab2ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01f7e8369a102ac404abfce2b5acfff82e3deb05d5b6dbdd4f263a871112fb03"} -2023-12-16T14:12:43.870Z INFO initializing dbft {"height": 7422, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:43.871Z debug frostfs-node/morph.go:229 new block {"index": 7421} -2023-12-16T14:12:44.550Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7421, "blockHeight": 7421, "took": "15.985995ms"} -2023-12-16T14:12:44.870Z INFO sending PrepareRequest {"height": 7422, "view": 0} -2023-12-16T14:12:44.871Z INFO sending Commit {"height": 7422, "view": 0} -2023-12-16T14:12:44.871Z INFO approving block {"height": 7422, "hash": "7bf0abf035dd4bd54ad67040ecf0620beea7c463eb7025b343e9653b2cb91bcd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03e530eddbbb13294d60afb0d34ab783ad78094af1c03ed0958231b87f7ab2ee"} -2023-12-16T14:12:44.872Z INFO initializing dbft {"height": 7423, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:44.873Z debug frostfs-node/morph.go:229 new block {"index": 7422} -2023-12-16T14:12:45.552Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7422, "blockHeight": 7422, "took": "17.305064ms"} -2023-12-16T14:12:45.872Z INFO sending PrepareRequest {"height": 7423, "view": 0} -2023-12-16T14:12:45.872Z INFO sending Commit {"height": 7423, "view": 0} -2023-12-16T14:12:45.873Z INFO approving block {"height": 7423, "hash": "1bbaa8211037c09aa11f3d8bd2f92633b44dd647c2c4593accee644049c04319", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bf0abf035dd4bd54ad67040ecf0620beea7c463eb7025b343e9653b2cb91bcd"} -2023-12-16T14:12:45.874Z INFO initializing dbft {"height": 7424, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:45.875Z debug frostfs-node/morph.go:229 new block {"index": 7423} -2023-12-16T14:12:46.553Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 7423, "blockHeight": 7423, "took": "17.386687ms"} -2023-12-16T14:12:46.874Z INFO sending PrepareRequest {"height": 7424, "view": 0} -2023-12-16T14:12:46.874Z INFO sending Commit {"height": 7424, "view": 0} -2023-12-16T14:12:46.874Z INFO approving block {"height": 7424, "hash": "dfe15a984ff3eaa6da9221c04ad858d925ec2b8a7baef84fb375650a47cc2dfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bbaa8211037c09aa11f3d8bd2f92633b44dd647c2c4593accee644049c04319"} -2023-12-16T14:12:46.876Z INFO initializing dbft {"height": 7425, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:46.877Z debug frostfs-node/morph.go:229 new block {"index": 7424} -2023-12-16T14:12:47.552Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7424, "blockHeight": 7424, "took": "16.135901ms"} -2023-12-16T14:12:47.875Z INFO sending PrepareRequest {"height": 7425, "view": 0} -2023-12-16T14:12:47.876Z INFO sending Commit {"height": 7425, "view": 0} -2023-12-16T14:12:47.876Z INFO approving block {"height": 7425, "hash": "5e7236b688feb123653c80c4418be75ac1795bb0be2d9705975c460b3d935341", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfe15a984ff3eaa6da9221c04ad858d925ec2b8a7baef84fb375650a47cc2dfa"} -2023-12-16T14:12:47.877Z INFO initializing dbft {"height": 7426, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:47.878Z debug frostfs-node/morph.go:229 new block {"index": 7425} -2023-12-16T14:12:48.556Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7425, "blockHeight": 7425, "took": "18.775718ms"} -2023-12-16T14:12:48.877Z INFO sending PrepareRequest {"height": 7426, "view": 0} -2023-12-16T14:12:48.877Z INFO sending Commit {"height": 7426, "view": 0} -2023-12-16T14:12:48.878Z INFO approving block {"height": 7426, "hash": "c0aab10b56d3285364386c85250ecd0c13ed9f8a86055ba2df9de4cc9339461f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e7236b688feb123653c80c4418be75ac1795bb0be2d9705975c460b3d935341"} -2023-12-16T14:12:48.879Z INFO initializing dbft {"height": 7427, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:48.880Z debug frostfs-node/morph.go:229 new block {"index": 7426} -2023-12-16T14:12:49.554Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7426, "blockHeight": 7426, "took": "16.171576ms"} -2023-12-16T14:12:49.879Z INFO sending PrepareRequest {"height": 7427, "view": 0} -2023-12-16T14:12:49.879Z INFO sending Commit {"height": 7427, "view": 0} -2023-12-16T14:12:49.879Z INFO approving block {"height": 7427, "hash": "fb672c1f32d4d69256e79f062f16f6f80e7488c67e7ac168bf9a719c93c91f67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0aab10b56d3285364386c85250ecd0c13ed9f8a86055ba2df9de4cc9339461f"} -2023-12-16T14:12:49.880Z INFO initializing dbft {"height": 7428, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:49.881Z debug frostfs-node/morph.go:229 new block {"index": 7427} -2023-12-16T14:12:50.556Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7427, "blockHeight": 7427, "took": "17.388946ms"} -2023-12-16T14:12:50.880Z INFO sending PrepareRequest {"height": 7428, "view": 0} -2023-12-16T14:12:50.880Z INFO sending Commit {"height": 7428, "view": 0} -2023-12-16T14:12:50.881Z INFO approving block {"height": 7428, "hash": "79d45676b34cb5d3c74d898ae7713b87c5c8980240dbc8dd8f0e2172a1993d1f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb672c1f32d4d69256e79f062f16f6f80e7488c67e7ac168bf9a719c93c91f67"} -2023-12-16T14:12:50.882Z INFO initializing dbft {"height": 7429, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:50.883Z debug frostfs-node/morph.go:229 new block {"index": 7428} -2023-12-16T14:12:51.556Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7428, "blockHeight": 7428, "took": "16.930653ms"} -2023-12-16T14:12:51.882Z INFO sending PrepareRequest {"height": 7429, "view": 0} -2023-12-16T14:12:51.882Z INFO sending Commit {"height": 7429, "view": 0} -2023-12-16T14:12:51.883Z INFO approving block {"height": 7429, "hash": "904b140a9a05d08ee7b1515711cee6f804b78a6a5ff67e4df25233fcc79e0dbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79d45676b34cb5d3c74d898ae7713b87c5c8980240dbc8dd8f0e2172a1993d1f"} -2023-12-16T14:12:51.883Z INFO initializing dbft {"height": 7430, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:51.884Z debug frostfs-node/morph.go:229 new block {"index": 7429} -2023-12-16T14:12:52.554Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7429, "blockHeight": 7429, "took": "14.020559ms"} -2023-12-16T14:12:52.884Z INFO sending PrepareRequest {"height": 7430, "view": 0} -2023-12-16T14:12:52.885Z INFO sending Commit {"height": 7430, "view": 0} -2023-12-16T14:12:52.885Z INFO approving block {"height": 7430, "hash": "6d3812c1326d71687233a944bde574b35b85a7089b388e65b62f0ff7c9f3ac2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "904b140a9a05d08ee7b1515711cee6f804b78a6a5ff67e4df25233fcc79e0dbb"} -2023-12-16T14:12:52.886Z INFO initializing dbft {"height": 7431, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:52.887Z debug frostfs-node/morph.go:229 new block {"index": 7430} -2023-12-16T14:12:53.557Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7430, "blockHeight": 7430, "took": "15.840143ms"} -2023-12-16T14:12:53.887Z INFO sending PrepareRequest {"height": 7431, "view": 0} -2023-12-16T14:12:53.887Z INFO sending Commit {"height": 7431, "view": 0} -2023-12-16T14:12:53.887Z INFO approving block {"height": 7431, "hash": "daa9e8076f4723e64e8deab68cdea069c608414a9519b4608b607818dab42e7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d3812c1326d71687233a944bde574b35b85a7089b388e65b62f0ff7c9f3ac2c"} -2023-12-16T14:12:53.889Z INFO initializing dbft {"height": 7432, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:53.890Z debug frostfs-node/morph.go:229 new block {"index": 7431} -2023-12-16T14:12:54.562Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7431, "blockHeight": 7431, "took": "19.547415ms"} -2023-12-16T14:12:54.889Z INFO sending PrepareRequest {"height": 7432, "view": 0} -2023-12-16T14:12:54.889Z INFO sending Commit {"height": 7432, "view": 0} -2023-12-16T14:12:54.889Z INFO approving block {"height": 7432, "hash": "7ee9bc0faf86d5fb854a0bd9572a446dcffc79a6ee130896fcdfec368b202178", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "daa9e8076f4723e64e8deab68cdea069c608414a9519b4608b607818dab42e7b"} -2023-12-16T14:12:54.893Z INFO initializing dbft {"height": 7433, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:54.895Z debug frostfs-node/morph.go:229 new block {"index": 7432} -2023-12-16T14:12:55.562Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7432, "blockHeight": 7432, "took": "19.15714ms"} -2023-12-16T14:12:55.891Z INFO sending PrepareRequest {"height": 7433, "view": 0} -2023-12-16T14:12:55.891Z INFO sending Commit {"height": 7433, "view": 0} -2023-12-16T14:12:55.892Z INFO approving block {"height": 7433, "hash": "99b98271e9106f8e9e2c34cfb098c8319d1c1de749d988f1ae6a4b499913c252", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ee9bc0faf86d5fb854a0bd9572a446dcffc79a6ee130896fcdfec368b202178"} -2023-12-16T14:12:55.893Z INFO initializing dbft {"height": 7434, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:55.894Z debug frostfs-node/morph.go:229 new block {"index": 7433} -2023-12-16T14:12:56.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7433, "blockHeight": 7433, "took": "11.627361ms"} -2023-12-16T14:12:56.892Z INFO sending PrepareRequest {"height": 7434, "view": 0} -2023-12-16T14:12:56.893Z INFO sending Commit {"height": 7434, "view": 0} -2023-12-16T14:12:56.893Z INFO approving block {"height": 7434, "hash": "34ed6f2abe30ba3e268827efb2397146a1222a3a6e867eeb94e06a1f4a4b438f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99b98271e9106f8e9e2c34cfb098c8319d1c1de749d988f1ae6a4b499913c252"} -2023-12-16T14:12:56.894Z INFO initializing dbft {"height": 7435, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:56.895Z debug frostfs-node/morph.go:229 new block {"index": 7434} -2023-12-16T14:12:57.556Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7434, "blockHeight": 7434, "took": "11.684917ms"} -2023-12-16T14:12:57.894Z INFO sending PrepareRequest {"height": 7435, "view": 0} -2023-12-16T14:12:57.895Z INFO sending Commit {"height": 7435, "view": 0} -2023-12-16T14:12:57.895Z INFO approving block {"height": 7435, "hash": "540cd46c5199754e60b2fe7cd01adcff122448432e5ff48f0d9e4b52dc30908c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34ed6f2abe30ba3e268827efb2397146a1222a3a6e867eeb94e06a1f4a4b438f"} -2023-12-16T14:12:57.898Z INFO initializing dbft {"height": 7436, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:57.899Z debug frostfs-node/morph.go:229 new block {"index": 7435} -2023-12-16T14:12:58.560Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7435, "blockHeight": 7435, "took": "15.230918ms"} -2023-12-16T14:12:58.897Z INFO sending PrepareRequest {"height": 7436, "view": 0} -2023-12-16T14:12:58.897Z INFO sending Commit {"height": 7436, "view": 0} -2023-12-16T14:12:58.897Z INFO approving block {"height": 7436, "hash": "a26aff1fed9d91e5cb56df80d33d1b2a1290bbf9023c4c0d376ba4df62a9b54d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "540cd46c5199754e60b2fe7cd01adcff122448432e5ff48f0d9e4b52dc30908c"} -2023-12-16T14:12:58.898Z INFO initializing dbft {"height": 7437, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:58.899Z debug frostfs-node/morph.go:229 new block {"index": 7436} -2023-12-16T14:12:59.559Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7436, "blockHeight": 7436, "took": "13.649747ms"} -2023-12-16T14:12:59.899Z INFO sending PrepareRequest {"height": 7437, "view": 0} -2023-12-16T14:12:59.899Z INFO sending Commit {"height": 7437, "view": 0} -2023-12-16T14:12:59.899Z INFO approving block {"height": 7437, "hash": "c62a3e4d82f1defbcc4dffa036f8aa9c96cfed7955ca8928197d7ca79810a943", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a26aff1fed9d91e5cb56df80d33d1b2a1290bbf9023c4c0d376ba4df62a9b54d"} -2023-12-16T14:12:59.900Z INFO initializing dbft {"height": 7438, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:12:59.901Z debug frostfs-node/morph.go:229 new block {"index": 7437} -2023-12-16T14:13:00.565Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7437, "blockHeight": 7437, "took": "18.693675ms"} -2023-12-16T14:13:00.901Z INFO sending PrepareRequest {"height": 7438, "view": 0} -2023-12-16T14:13:00.901Z INFO sending Commit {"height": 7438, "view": 0} -2023-12-16T14:13:00.901Z INFO approving block {"height": 7438, "hash": "b9c59ac49f2e8f978fadd00ab503a4c78bc5794fc089254a56e553da3f62c0b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c62a3e4d82f1defbcc4dffa036f8aa9c96cfed7955ca8928197d7ca79810a943"} -2023-12-16T14:13:00.903Z INFO initializing dbft {"height": 7439, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:00.903Z debug frostfs-node/morph.go:229 new block {"index": 7438} -2023-12-16T14:13:01.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7438, "blockHeight": 7438, "took": "14.321107ms"} -2023-12-16T14:13:01.902Z INFO sending PrepareRequest {"height": 7439, "view": 0} -2023-12-16T14:13:01.902Z INFO sending Commit {"height": 7439, "view": 0} -2023-12-16T14:13:01.903Z INFO approving block {"height": 7439, "hash": "a700a3e3ac4d2280f186b398be138b6e5e9bbb0ce064f3b4c37334f6cbed637b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9c59ac49f2e8f978fadd00ab503a4c78bc5794fc089254a56e553da3f62c0b4"} -2023-12-16T14:13:01.903Z INFO initializing dbft {"height": 7440, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:01.904Z debug frostfs-node/morph.go:229 new block {"index": 7439} -2023-12-16T14:13:02.566Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7439, "blockHeight": 7439, "took": "18.26404ms"} -2023-12-16T14:13:02.904Z INFO sending PrepareRequest {"height": 7440, "view": 0} -2023-12-16T14:13:02.904Z INFO sending Commit {"height": 7440, "view": 0} -2023-12-16T14:13:02.904Z INFO approving block {"height": 7440, "hash": "8c5dd6bbc5d47f650019f22edf2f69c2892529a6d3944980448e528ab3f15a27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a700a3e3ac4d2280f186b398be138b6e5e9bbb0ce064f3b4c37334f6cbed637b"} -2023-12-16T14:13:02.906Z INFO initializing dbft {"height": 7441, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:02.907Z debug frostfs-node/morph.go:229 new block {"index": 7440} -2023-12-16T14:13:03.566Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7440, "blockHeight": 7440, "took": "18.12223ms"} -2023-12-16T14:13:03.906Z INFO sending PrepareRequest {"height": 7441, "view": 0} -2023-12-16T14:13:03.906Z INFO sending Commit {"height": 7441, "view": 0} -2023-12-16T14:13:03.907Z INFO approving block {"height": 7441, "hash": "bb2b54579798a9267657e5268d6e031a016072e8f1cfe0dbabfa2d61372d1cd2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c5dd6bbc5d47f650019f22edf2f69c2892529a6d3944980448e528ab3f15a27"} -2023-12-16T14:13:03.908Z INFO initializing dbft {"height": 7442, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:03.909Z debug frostfs-node/morph.go:229 new block {"index": 7441} -2023-12-16T14:13:04.563Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7441, "blockHeight": 7441, "took": "13.951424ms"} -2023-12-16T14:13:04.908Z INFO sending PrepareRequest {"height": 7442, "view": 0} -2023-12-16T14:13:04.908Z INFO sending Commit {"height": 7442, "view": 0} -2023-12-16T14:13:04.908Z INFO approving block {"height": 7442, "hash": "1173b9a19d775d70521577dfd777bc38a0f9cdb585306ed797620469c86a7cad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb2b54579798a9267657e5268d6e031a016072e8f1cfe0dbabfa2d61372d1cd2"} -2023-12-16T14:13:04.910Z INFO initializing dbft {"height": 7443, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:04.912Z debug frostfs-node/morph.go:229 new block {"index": 7442} -2023-12-16T14:13:05.568Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7442, "blockHeight": 7442, "took": "17.994084ms"} -2023-12-16T14:13:05.909Z INFO sending PrepareRequest {"height": 7443, "view": 0} -2023-12-16T14:13:05.910Z INFO sending Commit {"height": 7443, "view": 0} -2023-12-16T14:13:05.910Z INFO approving block {"height": 7443, "hash": "363265ce8c6126548a067bd18dbbd8fa417a2506105433f01635e01bf6918337", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1173b9a19d775d70521577dfd777bc38a0f9cdb585306ed797620469c86a7cad"} -2023-12-16T14:13:05.911Z INFO initializing dbft {"height": 7444, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:05.912Z debug frostfs-node/morph.go:229 new block {"index": 7443} -2023-12-16T14:13:06.563Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7443, "blockHeight": 7443, "took": "12.312992ms"} -2023-12-16T14:13:06.911Z INFO sending PrepareRequest {"height": 7444, "view": 0} -2023-12-16T14:13:06.911Z INFO sending Commit {"height": 7444, "view": 0} -2023-12-16T14:13:06.912Z INFO approving block {"height": 7444, "hash": "0bab9d4e2fbbb75b318a20d6245dea432b7eb844e98123c4b45b498c6e3c8a6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "363265ce8c6126548a067bd18dbbd8fa417a2506105433f01635e01bf6918337"} -2023-12-16T14:13:06.913Z INFO initializing dbft {"height": 7445, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:06.914Z debug frostfs-node/morph.go:229 new block {"index": 7444} -2023-12-16T14:13:07.566Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7444, "blockHeight": 7444, "took": "14.098722ms"} -2023-12-16T14:13:07.913Z INFO sending PrepareRequest {"height": 7445, "view": 0} -2023-12-16T14:13:07.913Z INFO sending Commit {"height": 7445, "view": 0} -2023-12-16T14:13:07.913Z INFO approving block {"height": 7445, "hash": "daa98c30585b99c17b919418e34cc883191f951692381ddec7b86966c1bbf199", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bab9d4e2fbbb75b318a20d6245dea432b7eb844e98123c4b45b498c6e3c8a6e"} -2023-12-16T14:13:07.918Z INFO initializing dbft {"height": 7446, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:07.919Z debug frostfs-node/morph.go:229 new block {"index": 7445} -2023-12-16T14:13:08.566Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7445, "blockHeight": 7445, "took": "13.836941ms"} -2023-12-16T14:13:08.914Z INFO sending PrepareRequest {"height": 7446, "view": 0} -2023-12-16T14:13:08.914Z INFO sending Commit {"height": 7446, "view": 0} -2023-12-16T14:13:08.914Z INFO approving block {"height": 7446, "hash": "802883c033d02513f01cb82f2ebcaf6b1ce265ea9f6c5815450d78385066f260", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "daa98c30585b99c17b919418e34cc883191f951692381ddec7b86966c1bbf199"} -2023-12-16T14:13:08.916Z INFO initializing dbft {"height": 7447, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:08.917Z debug frostfs-node/morph.go:229 new block {"index": 7446} -2023-12-16T14:13:09.587Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7446, "blockHeight": 7446, "took": "33.759329ms"} -2023-12-16T14:13:09.916Z INFO sending PrepareRequest {"height": 7447, "view": 0} -2023-12-16T14:13:09.916Z INFO sending Commit {"height": 7447, "view": 0} -2023-12-16T14:13:09.916Z INFO approving block {"height": 7447, "hash": "a33ba5d5550a728deded39a482fbefbdf0b7d935168e7e6ee9fad5d0a274c30b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "802883c033d02513f01cb82f2ebcaf6b1ce265ea9f6c5815450d78385066f260"} -2023-12-16T14:13:09.918Z INFO initializing dbft {"height": 7448, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:09.919Z debug frostfs-node/morph.go:229 new block {"index": 7447} -2023-12-16T14:13:10.572Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7447, "blockHeight": 7447, "took": "17.9381ms"} -2023-12-16T14:13:10.918Z INFO sending PrepareRequest {"height": 7448, "view": 0} -2023-12-16T14:13:10.918Z INFO sending Commit {"height": 7448, "view": 0} -2023-12-16T14:13:10.918Z INFO approving block {"height": 7448, "hash": "2c4060e572d40d919f0fcad013f807bddc984373ecf1f4744142951f41345c88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a33ba5d5550a728deded39a482fbefbdf0b7d935168e7e6ee9fad5d0a274c30b"} -2023-12-16T14:13:10.920Z INFO initializing dbft {"height": 7449, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:10.921Z debug frostfs-node/morph.go:229 new block {"index": 7448} -2023-12-16T14:13:11.568Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7448, "blockHeight": 7448, "took": "12.39368ms"} -2023-12-16T14:13:11.920Z INFO sending PrepareRequest {"height": 7449, "view": 0} -2023-12-16T14:13:11.920Z INFO sending Commit {"height": 7449, "view": 0} -2023-12-16T14:13:11.921Z INFO approving block {"height": 7449, "hash": "f680d114ddf2e8cdfdbf7f80caac3a1cf197de0e58509d3b01bb50ed92374c85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c4060e572d40d919f0fcad013f807bddc984373ecf1f4744142951f41345c88"} -2023-12-16T14:13:11.922Z INFO initializing dbft {"height": 7450, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:11.923Z debug frostfs-node/morph.go:229 new block {"index": 7449} -2023-12-16T14:13:12.571Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7449, "blockHeight": 7449, "took": "15.79143ms"} -2023-12-16T14:13:12.923Z INFO sending PrepareRequest {"height": 7450, "view": 0} -2023-12-16T14:13:12.923Z INFO sending Commit {"height": 7450, "view": 0} -2023-12-16T14:13:12.923Z INFO approving block {"height": 7450, "hash": "cc47cf6bf370f8fd20898198b02c781a2944e87d38585f0d1948ea3335bba7ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f680d114ddf2e8cdfdbf7f80caac3a1cf197de0e58509d3b01bb50ed92374c85"} -2023-12-16T14:13:12.925Z INFO initializing dbft {"height": 7451, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:12.926Z debug frostfs-node/morph.go:229 new block {"index": 7450} -2023-12-16T14:13:12.929Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:13:12.937Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:13:12.937Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:13:13.573Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7450, "blockHeight": 7450, "took": "16.470061ms"} -2023-12-16T14:13:13.925Z INFO sending PrepareRequest {"height": 7451, "view": 0} -2023-12-16T14:13:13.925Z INFO sending Commit {"height": 7451, "view": 0} -2023-12-16T14:13:13.926Z INFO approving block {"height": 7451, "hash": "da1a45f0459a7e7f7fea27667b28adc90d3a8befb4b4af95052f95bde1697985", "tx_count": 2, "merkle": "949e8dd7aa7ba479ccb07e0bba2db66ff7ec7cb5a948b9d63da6f870ceecbe40", "prev": "cc47cf6bf370f8fd20898198b02c781a2944e87d38585f0d1948ea3335bba7ef"} -2023-12-16T14:13:13.927Z INFO runtime log {"tx": "13f86cddb7a77a4b0109a90f61f564d66457fe9ff7e12d73a82084a8c178996a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:13:13.927Z INFO runtime log {"tx": "13f86cddb7a77a4b0109a90f61f564d66457fe9ff7e12d73a82084a8c178996a", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:13:13.928Z INFO initializing dbft {"height": 7452, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:13.930Z debug frostfs-node/morph.go:229 new block {"index": 7451} -2023-12-16T14:13:14.578Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7451, "blockHeight": 7451, "took": "20.690352ms"} -2023-12-16T14:13:14.927Z INFO sending PrepareRequest {"height": 7452, "view": 0} -2023-12-16T14:13:14.927Z INFO sending Commit {"height": 7452, "view": 0} -2023-12-16T14:13:14.927Z INFO approving block {"height": 7452, "hash": "a85711ca9bea84d15b1629fd678396b881f8f9dd7d13170cc55deb6b2c35a779", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da1a45f0459a7e7f7fea27667b28adc90d3a8befb4b4af95052f95bde1697985"} -2023-12-16T14:13:14.929Z INFO initializing dbft {"height": 7453, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:14.931Z debug frostfs-node/morph.go:229 new block {"index": 7452} -2023-12-16T14:13:15.573Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7452, "blockHeight": 7452, "took": "14.670438ms"} -2023-12-16T14:13:15.928Z INFO sending PrepareRequest {"height": 7453, "view": 0} -2023-12-16T14:13:15.928Z INFO sending Commit {"height": 7453, "view": 0} -2023-12-16T14:13:15.929Z INFO approving block {"height": 7453, "hash": "c6a767cf954655a77ed218bf523948b5ef2ccf4715853795673c01746ae21a02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a85711ca9bea84d15b1629fd678396b881f8f9dd7d13170cc55deb6b2c35a779"} -2023-12-16T14:13:15.930Z INFO initializing dbft {"height": 7454, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:15.930Z debug frostfs-node/morph.go:229 new block {"index": 7453} -2023-12-16T14:13:16.572Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7453, "blockHeight": 7453, "took": "12.520006ms"} -2023-12-16T14:13:16.929Z INFO sending PrepareRequest {"height": 7454, "view": 0} -2023-12-16T14:13:16.930Z INFO sending Commit {"height": 7454, "view": 0} -2023-12-16T14:13:16.930Z INFO approving block {"height": 7454, "hash": "20287a1a6209d9b88320e7e95bc9bf67b2979616fcda7805f9743f71e4b86a6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6a767cf954655a77ed218bf523948b5ef2ccf4715853795673c01746ae21a02"} -2023-12-16T14:13:16.932Z INFO initializing dbft {"height": 7455, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:16.934Z debug frostfs-node/morph.go:229 new block {"index": 7454} -2023-12-16T14:13:17.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7454, "blockHeight": 7454, "took": "15.389554ms"} -2023-12-16T14:13:17.931Z INFO sending PrepareRequest {"height": 7455, "view": 0} -2023-12-16T14:13:17.932Z INFO sending Commit {"height": 7455, "view": 0} -2023-12-16T14:13:17.932Z INFO approving block {"height": 7455, "hash": "5321f58ed09f363fdea9c0dc0aaac300d2294e06afdf2a24d57a15881c3f2802", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20287a1a6209d9b88320e7e95bc9bf67b2979616fcda7805f9743f71e4b86a6c"} -2023-12-16T14:13:17.934Z INFO initializing dbft {"height": 7456, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:17.934Z debug frostfs-node/morph.go:229 new block {"index": 7455} -2023-12-16T14:13:18.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7455, "blockHeight": 7455, "took": "14.950067ms"} -2023-12-16T14:13:18.933Z INFO sending PrepareRequest {"height": 7456, "view": 0} -2023-12-16T14:13:18.933Z INFO sending Commit {"height": 7456, "view": 0} -2023-12-16T14:13:18.933Z INFO approving block {"height": 7456, "hash": "713516492e5955a4cb64e7d166732416f161d00039eb659a17e9f476ae09b30a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5321f58ed09f363fdea9c0dc0aaac300d2294e06afdf2a24d57a15881c3f2802"} -2023-12-16T14:13:18.934Z INFO initializing dbft {"height": 7457, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:18.935Z debug frostfs-node/morph.go:229 new block {"index": 7456} -2023-12-16T14:13:19.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7456, "blockHeight": 7456, "took": "21.156956ms"} -2023-12-16T14:13:19.934Z INFO sending PrepareRequest {"height": 7457, "view": 0} -2023-12-16T14:13:19.935Z INFO sending Commit {"height": 7457, "view": 0} -2023-12-16T14:13:19.935Z INFO approving block {"height": 7457, "hash": "4c1a7ecadec6fae8a1bf66d3ff7ee704ee165c8778f0da78bcad62096260c1f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "713516492e5955a4cb64e7d166732416f161d00039eb659a17e9f476ae09b30a"} -2023-12-16T14:13:19.937Z INFO initializing dbft {"height": 7458, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:19.937Z debug frostfs-node/morph.go:229 new block {"index": 7457} -2023-12-16T14:13:20.572Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7457, "blockHeight": 7457, "took": "9.986266ms"} -2023-12-16T14:13:20.936Z INFO sending PrepareRequest {"height": 7458, "view": 0} -2023-12-16T14:13:20.936Z INFO sending Commit {"height": 7458, "view": 0} -2023-12-16T14:13:20.936Z INFO approving block {"height": 7458, "hash": "6593e8be2499c620a39e0a9e5717c482f5d9a5cdf40701b1e8dffc6997a00848", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c1a7ecadec6fae8a1bf66d3ff7ee704ee165c8778f0da78bcad62096260c1f5"} -2023-12-16T14:13:20.938Z INFO initializing dbft {"height": 7459, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:20.938Z debug frostfs-node/morph.go:229 new block {"index": 7458} -2023-12-16T14:13:21.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7458, "blockHeight": 7458, "took": "12.518342ms"} -2023-12-16T14:13:21.938Z INFO sending PrepareRequest {"height": 7459, "view": 0} -2023-12-16T14:13:21.939Z INFO sending Commit {"height": 7459, "view": 0} -2023-12-16T14:13:21.939Z INFO approving block {"height": 7459, "hash": "b06df5c6a11905395c604bcd357f3bb0381dd90c936c024ab63fd3864eb66fc9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6593e8be2499c620a39e0a9e5717c482f5d9a5cdf40701b1e8dffc6997a00848"} -2023-12-16T14:13:21.941Z INFO initializing dbft {"height": 7460, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:21.941Z debug frostfs-node/morph.go:229 new block {"index": 7459} -2023-12-16T14:13:22.581Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7459, "blockHeight": 7459, "took": "18.002147ms"} -2023-12-16T14:13:22.941Z INFO sending PrepareRequest {"height": 7460, "view": 0} -2023-12-16T14:13:22.941Z INFO sending Commit {"height": 7460, "view": 0} -2023-12-16T14:13:22.941Z INFO approving block {"height": 7460, "hash": "e14ea63ddf3d806d10f9ed8d0a6b2c775b312b2fdcfea8d56470799c2f8e4265", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b06df5c6a11905395c604bcd357f3bb0381dd90c936c024ab63fd3864eb66fc9"} -2023-12-16T14:13:22.943Z INFO initializing dbft {"height": 7461, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:22.943Z debug frostfs-node/morph.go:229 new block {"index": 7460} -2023-12-16T14:13:23.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7460, "blockHeight": 7460, "took": "10.838532ms"} -2023-12-16T14:13:23.943Z INFO sending PrepareRequest {"height": 7461, "view": 0} -2023-12-16T14:13:23.944Z INFO sending Commit {"height": 7461, "view": 0} -2023-12-16T14:13:23.944Z INFO approving block {"height": 7461, "hash": "bc5f2b773ed3fb3109591dd583ad18ce168494db31a795ada89c65479dad39fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e14ea63ddf3d806d10f9ed8d0a6b2c775b312b2fdcfea8d56470799c2f8e4265"} -2023-12-16T14:13:23.945Z INFO initializing dbft {"height": 7462, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:23.946Z debug frostfs-node/morph.go:229 new block {"index": 7461} -2023-12-16T14:13:24.579Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7461, "blockHeight": 7461, "took": "13.833953ms"} -2023-12-16T14:13:24.945Z INFO sending PrepareRequest {"height": 7462, "view": 0} -2023-12-16T14:13:24.945Z INFO sending Commit {"height": 7462, "view": 0} -2023-12-16T14:13:24.946Z INFO approving block {"height": 7462, "hash": "da552fd0b2534dc59b1a445b515694330bcbafa68b9714e192de408d526c3458", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc5f2b773ed3fb3109591dd583ad18ce168494db31a795ada89c65479dad39fb"} -2023-12-16T14:13:24.947Z INFO initializing dbft {"height": 7463, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:24.948Z debug frostfs-node/morph.go:229 new block {"index": 7462} -2023-12-16T14:13:25.582Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7462, "blockHeight": 7462, "took": "15.590872ms"} -2023-12-16T14:13:25.947Z INFO sending PrepareRequest {"height": 7463, "view": 0} -2023-12-16T14:13:25.947Z INFO sending Commit {"height": 7463, "view": 0} -2023-12-16T14:13:25.947Z INFO approving block {"height": 7463, "hash": "6ffb3c5cecaf89047b7c050a0687dea4b20d14abd536b1a158c6b01bfb2aa0fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da552fd0b2534dc59b1a445b515694330bcbafa68b9714e192de408d526c3458"} -2023-12-16T14:13:25.949Z INFO initializing dbft {"height": 7464, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:25.949Z debug frostfs-node/morph.go:229 new block {"index": 7463} -2023-12-16T14:13:26.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7463, "blockHeight": 7463, "took": "16.705828ms"} -2023-12-16T14:13:26.949Z INFO sending PrepareRequest {"height": 7464, "view": 0} -2023-12-16T14:13:26.949Z INFO sending Commit {"height": 7464, "view": 0} -2023-12-16T14:13:26.950Z INFO approving block {"height": 7464, "hash": "d9f0cafbaf4616afbbb44fe171137a614c47c554a79a377c7d4fac26acf930c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ffb3c5cecaf89047b7c050a0687dea4b20d14abd536b1a158c6b01bfb2aa0fd"} -2023-12-16T14:13:26.951Z INFO initializing dbft {"height": 7465, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:26.952Z debug frostfs-node/morph.go:229 new block {"index": 7464} -2023-12-16T14:13:27.582Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7464, "blockHeight": 7464, "took": "14.31799ms"} -2023-12-16T14:13:27.951Z INFO sending PrepareRequest {"height": 7465, "view": 0} -2023-12-16T14:13:27.951Z INFO sending Commit {"height": 7465, "view": 0} -2023-12-16T14:13:27.951Z INFO approving block {"height": 7465, "hash": "3ca0ba9fb83b526b05009dfd0be703c3bcbde1bc0d1642aeb88a0493aca04b98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9f0cafbaf4616afbbb44fe171137a614c47c554a79a377c7d4fac26acf930c9"} -2023-12-16T14:13:27.952Z INFO initializing dbft {"height": 7466, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:27.953Z debug frostfs-node/morph.go:229 new block {"index": 7465} -2023-12-16T14:13:28.582Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7465, "blockHeight": 7465, "took": "12.961198ms"} -2023-12-16T14:13:28.952Z INFO sending PrepareRequest {"height": 7466, "view": 0} -2023-12-16T14:13:28.952Z INFO sending Commit {"height": 7466, "view": 0} -2023-12-16T14:13:28.952Z INFO approving block {"height": 7466, "hash": "00885d9e87e45f74eb17b7b582a1751febd64b38e91c67d5712376cb670d2f47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ca0ba9fb83b526b05009dfd0be703c3bcbde1bc0d1642aeb88a0493aca04b98"} -2023-12-16T14:13:28.955Z INFO initializing dbft {"height": 7467, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:28.956Z debug frostfs-node/morph.go:229 new block {"index": 7466} -2023-12-16T14:13:29.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7466, "blockHeight": 7466, "took": "13.540655ms"} -2023-12-16T14:13:29.954Z INFO sending PrepareRequest {"height": 7467, "view": 0} -2023-12-16T14:13:29.954Z INFO sending Commit {"height": 7467, "view": 0} -2023-12-16T14:13:29.954Z INFO approving block {"height": 7467, "hash": "877cf8a77da23f6363c6763fd7a4bd161d88ae64a8f6adf4e5105bec954464c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00885d9e87e45f74eb17b7b582a1751febd64b38e91c67d5712376cb670d2f47"} -2023-12-16T14:13:29.955Z INFO initializing dbft {"height": 7468, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:29.956Z debug frostfs-node/morph.go:229 new block {"index": 7467} -2023-12-16T14:13:30.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7467, "blockHeight": 7467, "took": "11.206058ms"} -2023-12-16T14:13:30.956Z INFO sending PrepareRequest {"height": 7468, "view": 0} -2023-12-16T14:13:30.956Z INFO sending Commit {"height": 7468, "view": 0} -2023-12-16T14:13:30.957Z INFO approving block {"height": 7468, "hash": "fcf4a231d0a90fecbc8d11e979ca54df5d38bac09f792300f5e592d49883f858", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "877cf8a77da23f6363c6763fd7a4bd161d88ae64a8f6adf4e5105bec954464c7"} -2023-12-16T14:13:30.958Z INFO initializing dbft {"height": 7469, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:30.959Z debug frostfs-node/morph.go:229 new block {"index": 7468} -2023-12-16T14:13:30.964Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 31, "iteration": 3, "error": "no data for 2 iteration in 31 epoch for consumers's trusts"} -2023-12-16T14:13:31.584Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7468, "blockHeight": 7468, "took": "11.589569ms"} -2023-12-16T14:13:31.958Z INFO sending PrepareRequest {"height": 7469, "view": 0} -2023-12-16T14:13:31.959Z INFO sending Commit {"height": 7469, "view": 0} -2023-12-16T14:13:31.959Z INFO approving block {"height": 7469, "hash": "0d3f45a0daff70f3a9343535f6bc99e14650a7bc62bda3612fec77366de4be01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcf4a231d0a90fecbc8d11e979ca54df5d38bac09f792300f5e592d49883f858"} -2023-12-16T14:13:31.960Z INFO initializing dbft {"height": 7470, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:31.961Z debug frostfs-node/morph.go:229 new block {"index": 7469} -2023-12-16T14:13:31.965Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:13:31.974Z INFO runtime log {"tx": "9f9fd2948606e1ee0a80e3af387a43530c55595a282f252c549bd39d43240a72", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:13:32.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7469, "blockHeight": 7469, "took": "15.727845ms"} -2023-12-16T14:13:32.960Z INFO sending PrepareRequest {"height": 7470, "view": 0} -2023-12-16T14:13:32.960Z INFO sending Commit {"height": 7470, "view": 0} -2023-12-16T14:13:32.960Z INFO approving block {"height": 7470, "hash": "1a10643a6d7eeb6b02ffb35a9fb18ecbf3f0c832c3fe98b420d1e2432d12bf13", "tx_count": 1, "merkle": "ec5c3a90fe53d15591323cd0ec177cf6af3b697b5e609f16f9b74e271c02c3c6", "prev": "0d3f45a0daff70f3a9343535f6bc99e14650a7bc62bda3612fec77366de4be01"} -2023-12-16T14:13:32.961Z INFO runtime log {"tx": "c6c3021c274eb7f9169f605e7b693baff67c17ecd03c329155d153fe903a5cec", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:13:32.964Z INFO initializing dbft {"height": 7471, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:32.965Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 33} -2023-12-16T14:13:32.965Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 33} -2023-12-16T14:13:32.965Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:13:32.965Z debug frostfs-node/morph.go:229 new block {"index": 7470} -2023-12-16T14:13:32.965Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:13:32.966Z debug controller/calls.go:95 starting to report local trust values {"epoch": 32} -2023-12-16T14:13:32.966Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 32} -2023-12-16T14:13:32.966Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 33} -2023-12-16T14:13:32.968Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 33} -2023-12-16T14:13:32.968Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 33} -2023-12-16T14:13:32.971Z debug controller/calls.go:146 reporting successfully finished {"epoch": 32} -2023-12-16T14:13:32.971Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 32} -2023-12-16T14:13:32.965Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-16T14:13:32.974Z INFO runtime log {"tx": "78aa6055ba0edcef19a520b4efb830b3ba1330010c2981ba38b43bfe70c49d42", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:13:32.976Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:13:32.979Z info client/notary.go:214 notary deposit invoke {"amount": 8005978268, "expire_at": 4294967295, "vub": 7473, "tx_hash": "8f3cfe61c24ca4b4e5c35084f0e4dab25f8f22c60d4945548c15c9d8c401b85f"} -2023-12-16T14:13:32.992Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:13:32.992Z info audit/handlers.go:13 new round of audit {"epoch": 33} -2023-12-16T14:13:32.992Z info settlement/calls.go:26 new audit settlement event {"epoch": 33} -2023-12-16T14:13:32.993Z info settlement/handlers.go:14 process audit settlements {"epoch": 33} -2023-12-16T14:13:32.993Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 33} -2023-12-16T14:13:32.994Z info settlement/handlers.go:18 audit processing finished {"epoch": 33} -2023-12-16T14:13:32.996Z info audit/process.go:39 select containers for audit {"epoch": 33, "amount": 0} -2023-12-16T14:13:33.001Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7473, "tx_hash": "00ac0fce6d29ff9f9cf8cad5d6ab33171b4d472080192eec26bd0dd4836ac379"} -2023-12-16T14:13:33.013Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 7600, "fallback_valid_for": 40, "tx_hash": "c5fd2a705ae3d12267837d0bdad277e3c048267120cf1ee177263ef2b99aad81"} -2023-12-16T14:13:33.017Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-16T14:13:33.591Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 7470, "blockHeight": 7470, "took": "16.295631ms"} -2023-12-16T14:13:33.962Z INFO sending PrepareRequest {"height": 7471, "view": 0} -2023-12-16T14:13:33.962Z INFO sending Commit {"height": 7471, "view": 0} -2023-12-16T14:13:33.962Z INFO approving block {"height": 7471, "hash": "615f54a518d3ae078621d46e91ed1be841dd03a6f3e0952aa5c27ed7e656a791", "tx_count": 3, "merkle": "7d476c52baf95077d003a67ad328899cea4392d00234b9893851c333fac2fd6f", "prev": "1a10643a6d7eeb6b02ffb35a9fb18ecbf3f0c832c3fe98b420d1e2432d12bf13"} -2023-12-16T14:13:33.963Z INFO runtime log {"tx": "2d0ae78906d1b9c9797af02a7c0fb96ea2a6f017f33a1f64f5f6be9e653fcf60", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:13:33.965Z INFO initializing dbft {"height": 7472, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:33.967Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 32} -2023-12-16T14:13:33.967Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 32} -2023-12-16T14:13:33.967Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 32} -2023-12-16T14:13:33.967Z debug frostfs-node/morph.go:229 new block {"index": 7471} -2023-12-16T14:13:34.597Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 7471, "blockHeight": 7471, "took": "21.22894ms"} -2023-12-16T14:13:34.964Z INFO sending PrepareRequest {"height": 7472, "view": 0} -2023-12-16T14:13:34.964Z INFO sending Commit {"height": 7472, "view": 0} -2023-12-16T14:13:34.965Z INFO approving block {"height": 7472, "hash": "edd2607b91d4f3cd4a95eadbb6d71c06c6ca39a3f2a4330c7956a4f5b144448f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "615f54a518d3ae078621d46e91ed1be841dd03a6f3e0952aa5c27ed7e656a791"} -2023-12-16T14:13:34.967Z INFO initializing dbft {"height": 7473, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:34.968Z debug frostfs-node/morph.go:229 new block {"index": 7472} -2023-12-16T14:13:35.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7472, "blockHeight": 7472, "took": "12.204226ms"} -2023-12-16T14:13:35.966Z INFO sending PrepareRequest {"height": 7473, "view": 0} -2023-12-16T14:13:35.966Z INFO sending Commit {"height": 7473, "view": 0} -2023-12-16T14:13:35.966Z INFO approving block {"height": 7473, "hash": "614640a1d83d7d43249c42eb5710cb9458b243bf9fa4ab61e8d23ea11d8a3182", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edd2607b91d4f3cd4a95eadbb6d71c06c6ca39a3f2a4330c7956a4f5b144448f"} -2023-12-16T14:13:35.968Z INFO initializing dbft {"height": 7474, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:35.969Z debug frostfs-node/morph.go:229 new block {"index": 7473} -2023-12-16T14:13:36.597Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7473, "blockHeight": 7473, "took": "19.4773ms"} -2023-12-16T14:13:36.968Z INFO sending PrepareRequest {"height": 7474, "view": 0} -2023-12-16T14:13:36.968Z INFO sending Commit {"height": 7474, "view": 0} -2023-12-16T14:13:36.968Z INFO approving block {"height": 7474, "hash": "79b1a83881ca935ecd3cac557c8f157ac5900cee2cb5f0bcf02b91b098ee675a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "614640a1d83d7d43249c42eb5710cb9458b243bf9fa4ab61e8d23ea11d8a3182"} -2023-12-16T14:13:36.970Z INFO initializing dbft {"height": 7475, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:36.971Z debug frostfs-node/morph.go:229 new block {"index": 7474} -2023-12-16T14:13:37.591Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7474, "blockHeight": 7474, "took": "13.086453ms"} -2023-12-16T14:13:37.970Z INFO sending PrepareRequest {"height": 7475, "view": 0} -2023-12-16T14:13:37.970Z INFO sending Commit {"height": 7475, "view": 0} -2023-12-16T14:13:37.971Z INFO approving block {"height": 7475, "hash": "94b25bd5dec3b3b8c7ecc0c9b04d8c796dc9a20ba985bc83ca5fa8aaaa49eea0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79b1a83881ca935ecd3cac557c8f157ac5900cee2cb5f0bcf02b91b098ee675a"} -2023-12-16T14:13:37.973Z INFO initializing dbft {"height": 7476, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:37.974Z debug frostfs-node/morph.go:229 new block {"index": 7475} -2023-12-16T14:13:38.594Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7475, "blockHeight": 7475, "took": "15.165713ms"} -2023-12-16T14:13:38.972Z INFO sending PrepareRequest {"height": 7476, "view": 0} -2023-12-16T14:13:38.972Z INFO sending Commit {"height": 7476, "view": 0} -2023-12-16T14:13:38.973Z INFO approving block {"height": 7476, "hash": "d2b14de1d53489dab0d0d9a63746aef3b564713c3f81266027f1ba45eb757c78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94b25bd5dec3b3b8c7ecc0c9b04d8c796dc9a20ba985bc83ca5fa8aaaa49eea0"} -2023-12-16T14:13:38.974Z INFO initializing dbft {"height": 7477, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:38.975Z debug frostfs-node/morph.go:229 new block {"index": 7476} -2023-12-16T14:13:39.596Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7476, "blockHeight": 7476, "took": "16.493916ms"} -2023-12-16T14:13:39.974Z INFO sending PrepareRequest {"height": 7477, "view": 0} -2023-12-16T14:13:39.974Z INFO sending Commit {"height": 7477, "view": 0} -2023-12-16T14:13:39.974Z INFO approving block {"height": 7477, "hash": "3b679c8780b892d5270897b8d3ac55136fd792541c577aa48db7e2a378bce8c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2b14de1d53489dab0d0d9a63746aef3b564713c3f81266027f1ba45eb757c78"} -2023-12-16T14:13:39.976Z INFO initializing dbft {"height": 7478, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:39.977Z debug frostfs-node/morph.go:229 new block {"index": 7477} -2023-12-16T14:13:40.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7477, "blockHeight": 7477, "took": "9.167768ms"} -2023-12-16T14:13:40.976Z INFO sending PrepareRequest {"height": 7478, "view": 0} -2023-12-16T14:13:40.976Z INFO sending Commit {"height": 7478, "view": 0} -2023-12-16T14:13:40.976Z INFO approving block {"height": 7478, "hash": "2c0ee8b2e167b5b10d9c8073d520c66a2d481c05306c6affda9c05ba46d38131", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b679c8780b892d5270897b8d3ac55136fd792541c577aa48db7e2a378bce8c2"} -2023-12-16T14:13:40.978Z INFO initializing dbft {"height": 7479, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:40.979Z debug frostfs-node/morph.go:229 new block {"index": 7478} -2023-12-16T14:13:41.599Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7478, "blockHeight": 7478, "took": "18.879785ms"} -2023-12-16T14:13:41.977Z INFO sending PrepareRequest {"height": 7479, "view": 0} -2023-12-16T14:13:41.978Z INFO sending Commit {"height": 7479, "view": 0} -2023-12-16T14:13:41.978Z INFO approving block {"height": 7479, "hash": "1e77d6fe4a44aa6256ee876b2d628f67ef1166ec6ade92fcb3d18dd0c3e3e074", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c0ee8b2e167b5b10d9c8073d520c66a2d481c05306c6affda9c05ba46d38131"} -2023-12-16T14:13:41.980Z INFO initializing dbft {"height": 7480, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:41.980Z debug frostfs-node/morph.go:229 new block {"index": 7479} -2023-12-16T14:13:42.594Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7479, "blockHeight": 7479, "took": "13.085873ms"} -2023-12-16T14:13:42.979Z INFO sending PrepareRequest {"height": 7480, "view": 0} -2023-12-16T14:13:42.979Z INFO sending Commit {"height": 7480, "view": 0} -2023-12-16T14:13:42.980Z INFO approving block {"height": 7480, "hash": "edd5855bfc83bbe7c200d4efa5befdbb1e5ef2cc9dad87f566969257ada54b71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e77d6fe4a44aa6256ee876b2d628f67ef1166ec6ade92fcb3d18dd0c3e3e074"} -2023-12-16T14:13:42.981Z INFO initializing dbft {"height": 7481, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:42.982Z debug frostfs-node/morph.go:229 new block {"index": 7480} -2023-12-16T14:13:43.595Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7480, "blockHeight": 7480, "took": "13.704411ms"} -2023-12-16T14:13:43.980Z INFO sending PrepareRequest {"height": 7481, "view": 0} -2023-12-16T14:13:43.981Z INFO sending Commit {"height": 7481, "view": 0} -2023-12-16T14:13:43.981Z INFO approving block {"height": 7481, "hash": "e78f930887ebfea66017148d7642631f893e0f9d0cd8b8b6415c1be7a7c95e51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edd5855bfc83bbe7c200d4efa5befdbb1e5ef2cc9dad87f566969257ada54b71"} -2023-12-16T14:13:43.982Z INFO initializing dbft {"height": 7482, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:43.983Z debug frostfs-node/morph.go:229 new block {"index": 7481} -2023-12-16T14:13:44.599Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7481, "blockHeight": 7481, "took": "16.991791ms"} -2023-12-16T14:13:44.982Z INFO sending PrepareRequest {"height": 7482, "view": 0} -2023-12-16T14:13:44.982Z INFO sending Commit {"height": 7482, "view": 0} -2023-12-16T14:13:44.982Z INFO approving block {"height": 7482, "hash": "bcfeaf6831085281b034107407706705e289c63810956c3ad8c6aaa9e6c3242d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e78f930887ebfea66017148d7642631f893e0f9d0cd8b8b6415c1be7a7c95e51"} -2023-12-16T14:13:44.984Z INFO initializing dbft {"height": 7483, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:44.985Z debug frostfs-node/morph.go:229 new block {"index": 7482} -2023-12-16T14:13:45.593Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7482, "blockHeight": 7482, "took": "10.104785ms"} -2023-12-16T14:13:45.983Z INFO sending PrepareRequest {"height": 7483, "view": 0} -2023-12-16T14:13:45.984Z INFO sending Commit {"height": 7483, "view": 0} -2023-12-16T14:13:45.984Z INFO approving block {"height": 7483, "hash": "b36f17262b2f4b08fb29f21c2d7bca7aa078dfbfe5832c225026b0e3c49c1245", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcfeaf6831085281b034107407706705e289c63810956c3ad8c6aaa9e6c3242d"} -2023-12-16T14:13:45.986Z INFO initializing dbft {"height": 7484, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:45.987Z debug frostfs-node/morph.go:229 new block {"index": 7483} -2023-12-16T14:13:46.595Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7483, "blockHeight": 7483, "took": "11.128627ms"} -2023-12-16T14:13:46.985Z INFO sending PrepareRequest {"height": 7484, "view": 0} -2023-12-16T14:13:46.986Z INFO sending Commit {"height": 7484, "view": 0} -2023-12-16T14:13:46.986Z INFO approving block {"height": 7484, "hash": "4ccdc582ea39abbddf13e7ff8af303ee8e4de80e07191ea36795948f1f22fa4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b36f17262b2f4b08fb29f21c2d7bca7aa078dfbfe5832c225026b0e3c49c1245"} -2023-12-16T14:13:46.989Z INFO initializing dbft {"height": 7485, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:46.990Z debug frostfs-node/morph.go:229 new block {"index": 7484} -2023-12-16T14:13:47.600Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7484, "blockHeight": 7484, "took": "14.940494ms"} -2023-12-16T14:13:47.987Z INFO sending PrepareRequest {"height": 7485, "view": 0} -2023-12-16T14:13:47.988Z INFO sending Commit {"height": 7485, "view": 0} -2023-12-16T14:13:47.988Z INFO approving block {"height": 7485, "hash": "f277b9a6edb77fbdbc8d2624701126b68d92c9e11b5006df6996bd6d0931dbcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ccdc582ea39abbddf13e7ff8af303ee8e4de80e07191ea36795948f1f22fa4f"} -2023-12-16T14:13:47.990Z INFO initializing dbft {"height": 7486, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:47.991Z debug frostfs-node/morph.go:229 new block {"index": 7485} -2023-12-16T14:13:48.599Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7485, "blockHeight": 7485, "took": "13.611327ms"} -2023-12-16T14:13:48.989Z INFO sending PrepareRequest {"height": 7486, "view": 0} -2023-12-16T14:13:48.989Z INFO sending Commit {"height": 7486, "view": 0} -2023-12-16T14:13:48.989Z INFO approving block {"height": 7486, "hash": "423f49b02980183ab7eb7f2dc87e9988e1c75102ac162320f9c9e045175f518a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f277b9a6edb77fbdbc8d2624701126b68d92c9e11b5006df6996bd6d0931dbcc"} -2023-12-16T14:13:48.992Z INFO initializing dbft {"height": 7487, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:48.992Z debug frostfs-node/morph.go:229 new block {"index": 7486} -2023-12-16T14:13:49.600Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7486, "blockHeight": 7486, "took": "14.104863ms"} -2023-12-16T14:13:49.990Z INFO sending PrepareRequest {"height": 7487, "view": 0} -2023-12-16T14:13:49.991Z INFO sending Commit {"height": 7487, "view": 0} -2023-12-16T14:13:49.991Z INFO approving block {"height": 7487, "hash": "ec4dbda378ab322606ca385ef72cddee066900e0fc5498a65d627b6f4297c15e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "423f49b02980183ab7eb7f2dc87e9988e1c75102ac162320f9c9e045175f518a"} -2023-12-16T14:13:49.992Z INFO initializing dbft {"height": 7488, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:49.994Z debug frostfs-node/morph.go:229 new block {"index": 7487} -2023-12-16T14:13:50.597Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7487, "blockHeight": 7487, "took": "10.329296ms"} -2023-12-16T14:13:50.992Z INFO sending PrepareRequest {"height": 7488, "view": 0} -2023-12-16T14:13:50.993Z INFO sending Commit {"height": 7488, "view": 0} -2023-12-16T14:13:50.993Z INFO approving block {"height": 7488, "hash": "791983c22993e6e7f3543476ebce4bc8f24908c290685d07937b2c082717857c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec4dbda378ab322606ca385ef72cddee066900e0fc5498a65d627b6f4297c15e"} -2023-12-16T14:13:50.994Z INFO initializing dbft {"height": 7489, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:50.995Z debug frostfs-node/morph.go:229 new block {"index": 7488} -2023-12-16T14:13:51.601Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7488, "blockHeight": 7488, "took": "13.459827ms"} -2023-12-16T14:13:51.994Z INFO sending PrepareRequest {"height": 7489, "view": 0} -2023-12-16T14:13:51.995Z INFO sending Commit {"height": 7489, "view": 0} -2023-12-16T14:13:51.995Z INFO approving block {"height": 7489, "hash": "a1463e856f908ce736dc893d2937f65499afafd4944c9e8841ec3b11b8455c4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "791983c22993e6e7f3543476ebce4bc8f24908c290685d07937b2c082717857c"} -2023-12-16T14:13:51.997Z INFO initializing dbft {"height": 7490, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:51.998Z debug frostfs-node/morph.go:229 new block {"index": 7489} -2023-12-16T14:13:52.603Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7489, "blockHeight": 7489, "took": "15.228057ms"} -2023-12-16T14:13:52.996Z INFO sending PrepareRequest {"height": 7490, "view": 0} -2023-12-16T14:13:52.996Z INFO sending Commit {"height": 7490, "view": 0} -2023-12-16T14:13:52.997Z INFO approving block {"height": 7490, "hash": "e0c1290394521244213005628773616d1bfde9c794201d5caf301d71a0afdb8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1463e856f908ce736dc893d2937f65499afafd4944c9e8841ec3b11b8455c4c"} -2023-12-16T14:13:52.999Z INFO initializing dbft {"height": 7491, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:52.999Z debug frostfs-node/morph.go:229 new block {"index": 7490} -2023-12-16T14:13:53.604Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7490, "blockHeight": 7490, "took": "15.520885ms"} -2023-12-16T14:13:53.998Z INFO sending PrepareRequest {"height": 7491, "view": 0} -2023-12-16T14:13:53.999Z INFO sending Commit {"height": 7491, "view": 0} -2023-12-16T14:13:53.999Z INFO approving block {"height": 7491, "hash": "50b2a10d661f6f3ecd8da4089d5e0e0951423758a2445189b710415d30740fa8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0c1290394521244213005628773616d1bfde9c794201d5caf301d71a0afdb8c"} -2023-12-16T14:13:54.001Z INFO initializing dbft {"height": 7492, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:54.002Z debug frostfs-node/morph.go:229 new block {"index": 7491} -2023-12-16T14:13:54.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7491, "blockHeight": 7491, "took": "18.359539ms"} -2023-12-16T14:13:55.002Z INFO sending PrepareRequest {"height": 7492, "view": 0} -2023-12-16T14:13:55.002Z INFO sending Commit {"height": 7492, "view": 0} -2023-12-16T14:13:55.002Z INFO approving block {"height": 7492, "hash": "f6b71bb7f7ff0868e919f3985b7f7ea57b22ba665d0bb3c4f637b883dd4f6f8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50b2a10d661f6f3ecd8da4089d5e0e0951423758a2445189b710415d30740fa8"} -2023-12-16T14:13:55.004Z INFO initializing dbft {"height": 7493, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:55.005Z debug frostfs-node/morph.go:229 new block {"index": 7492} -2023-12-16T14:13:55.605Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7492, "blockHeight": 7492, "took": "14.424822ms"} -2023-12-16T14:13:56.003Z INFO sending PrepareRequest {"height": 7493, "view": 0} -2023-12-16T14:13:56.004Z INFO sending Commit {"height": 7493, "view": 0} -2023-12-16T14:13:56.004Z INFO approving block {"height": 7493, "hash": "92179d0ab73474f399d3189b9a86f038a6714efdd028597433897656fa59b14a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6b71bb7f7ff0868e919f3985b7f7ea57b22ba665d0bb3c4f637b883dd4f6f8c"} -2023-12-16T14:13:56.006Z INFO initializing dbft {"height": 7494, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:56.007Z debug frostfs-node/morph.go:229 new block {"index": 7493} -2023-12-16T14:13:56.605Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7493, "blockHeight": 7493, "took": "13.763832ms"} -2023-12-16T14:13:57.005Z INFO sending PrepareRequest {"height": 7494, "view": 0} -2023-12-16T14:13:57.006Z INFO sending Commit {"height": 7494, "view": 0} -2023-12-16T14:13:57.006Z INFO approving block {"height": 7494, "hash": "8cdc45f482b7658d0a8dbbd09eea9341b5b65aec37ae3f1365472510f81e2f6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92179d0ab73474f399d3189b9a86f038a6714efdd028597433897656fa59b14a"} -2023-12-16T14:13:57.008Z INFO initializing dbft {"height": 7495, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:57.009Z debug frostfs-node/morph.go:229 new block {"index": 7494} -2023-12-16T14:13:57.600Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7494, "blockHeight": 7494, "took": "8.465948ms"} -2023-12-16T14:13:58.007Z INFO sending PrepareRequest {"height": 7495, "view": 0} -2023-12-16T14:13:58.007Z INFO sending Commit {"height": 7495, "view": 0} -2023-12-16T14:13:58.008Z INFO approving block {"height": 7495, "hash": "db7eaff1b47a13451f65788c7e8bda5ddd19aa8072d783e4d2489c08044058d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cdc45f482b7658d0a8dbbd09eea9341b5b65aec37ae3f1365472510f81e2f6e"} -2023-12-16T14:13:58.011Z INFO initializing dbft {"height": 7496, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:58.013Z debug frostfs-node/morph.go:229 new block {"index": 7495} -2023-12-16T14:13:58.604Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7495, "blockHeight": 7495, "took": "11.236321ms"} -2023-12-16T14:13:59.010Z INFO sending PrepareRequest {"height": 7496, "view": 0} -2023-12-16T14:13:59.010Z INFO sending Commit {"height": 7496, "view": 0} -2023-12-16T14:13:59.010Z INFO approving block {"height": 7496, "hash": "64a6bca0faeeed80278c95c89bce7f86038ad2d8f3beef199f87f7c6f9e9fc22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db7eaff1b47a13451f65788c7e8bda5ddd19aa8072d783e4d2489c08044058d4"} -2023-12-16T14:13:59.011Z INFO initializing dbft {"height": 7497, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:13:59.012Z debug frostfs-node/morph.go:229 new block {"index": 7496} -2023-12-16T14:13:59.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7496, "blockHeight": 7496, "took": "13.918364ms"} -2023-12-16T14:14:00.012Z INFO sending PrepareRequest {"height": 7497, "view": 0} -2023-12-16T14:14:00.013Z INFO sending Commit {"height": 7497, "view": 0} -2023-12-16T14:14:00.013Z INFO approving block {"height": 7497, "hash": "e132ca6d7cbca1358e2e4eebe28224e78da836887fe2a46b407ba4478b501213", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64a6bca0faeeed80278c95c89bce7f86038ad2d8f3beef199f87f7c6f9e9fc22"} -2023-12-16T14:14:00.016Z INFO initializing dbft {"height": 7498, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:00.016Z debug frostfs-node/morph.go:229 new block {"index": 7497} -2023-12-16T14:14:00.616Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7497, "blockHeight": 7497, "took": "22.142942ms"} -2023-12-16T14:14:01.014Z INFO sending PrepareRequest {"height": 7498, "view": 0} -2023-12-16T14:14:01.015Z INFO sending Commit {"height": 7498, "view": 0} -2023-12-16T14:14:01.015Z INFO approving block {"height": 7498, "hash": "3772fb962f833deaf72f5409173496899c0e14b920a3d355f4620d499bc3bdda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e132ca6d7cbca1358e2e4eebe28224e78da836887fe2a46b407ba4478b501213"} -2023-12-16T14:14:01.018Z INFO initializing dbft {"height": 7499, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:01.019Z debug frostfs-node/morph.go:229 new block {"index": 7498} -2023-12-16T14:14:01.617Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7498, "blockHeight": 7498, "took": "22.07974ms"} -2023-12-16T14:14:02.016Z INFO sending PrepareRequest {"height": 7499, "view": 0} -2023-12-16T14:14:02.017Z INFO sending Commit {"height": 7499, "view": 0} -2023-12-16T14:14:02.017Z INFO approving block {"height": 7499, "hash": "022022a8efc2ed3093a0ae5f9ac291af3284b1616254360a2966577625f6c63c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3772fb962f833deaf72f5409173496899c0e14b920a3d355f4620d499bc3bdda"} -2023-12-16T14:14:02.020Z INFO initializing dbft {"height": 7500, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:02.021Z debug frostfs-node/morph.go:229 new block {"index": 7499} -2023-12-16T14:14:02.616Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7499, "blockHeight": 7499, "took": "19.298493ms"} -2023-12-16T14:14:03.018Z INFO sending PrepareRequest {"height": 7500, "view": 0} -2023-12-16T14:14:03.019Z INFO sending Commit {"height": 7500, "view": 0} -2023-12-16T14:14:03.019Z INFO approving block {"height": 7500, "hash": "4f92f934a3d13b4aae9994eaf794a5f5c56982ac6fbdef189974f7bc251d0601", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "022022a8efc2ed3093a0ae5f9ac291af3284b1616254360a2966577625f6c63c"} -2023-12-16T14:14:03.021Z INFO initializing dbft {"height": 7501, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:03.023Z debug frostfs-node/morph.go:229 new block {"index": 7500} -2023-12-16T14:14:03.054Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:14:03.063Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:14:03.063Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:14:03.635Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7500, "blockHeight": 7500, "took": "37.207307ms"} -2023-12-16T14:14:04.021Z INFO sending PrepareRequest {"height": 7501, "view": 0} -2023-12-16T14:14:04.022Z INFO sending Commit {"height": 7501, "view": 0} -2023-12-16T14:14:04.022Z INFO approving block {"height": 7501, "hash": "a90e435730e9fc97e72457540f3f2c1d7c06c5b4861e0e6998606c1c54bcb9e7", "tx_count": 2, "merkle": "b410d8218e30e00141c7bf9c9688f46c76afd40832131d152f27e1e5830b68cb", "prev": "4f92f934a3d13b4aae9994eaf794a5f5c56982ac6fbdef189974f7bc251d0601"} -2023-12-16T14:14:04.024Z INFO runtime log {"tx": "260b4d68e4cab882202e6eb2e56615ff94e987c5d676b6406e6a4c34a51d3880", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:14:04.024Z INFO runtime log {"tx": "260b4d68e4cab882202e6eb2e56615ff94e987c5d676b6406e6a4c34a51d3880", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:14:04.026Z INFO initializing dbft {"height": 7502, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:04.028Z debug frostfs-node/morph.go:229 new block {"index": 7501} -2023-12-16T14:14:04.609Z INFO persisted to disk {"blocks": 1, "keys": 51, "headerHeight": 7501, "blockHeight": 7501, "took": "10.414664ms"} -2023-12-16T14:14:05.023Z INFO sending PrepareRequest {"height": 7502, "view": 0} -2023-12-16T14:14:05.023Z INFO sending Commit {"height": 7502, "view": 0} -2023-12-16T14:14:05.023Z INFO approving block {"height": 7502, "hash": "ddaa0e00a1e8f6a7db63bfef54fc038f44b9fae613e4b182b65e5031acc798f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a90e435730e9fc97e72457540f3f2c1d7c06c5b4861e0e6998606c1c54bcb9e7"} -2023-12-16T14:14:05.025Z INFO initializing dbft {"height": 7503, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:05.026Z debug frostfs-node/morph.go:229 new block {"index": 7502} -2023-12-16T14:14:05.618Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7502, "blockHeight": 7502, "took": "18.006692ms"} -2023-12-16T14:14:06.025Z INFO sending PrepareRequest {"height": 7503, "view": 0} -2023-12-16T14:14:06.026Z INFO sending Commit {"height": 7503, "view": 0} -2023-12-16T14:14:06.027Z INFO approving block {"height": 7503, "hash": "dd8873a18c4edcdb4f580ab2b13671c5a31b0183bdd8df5333651eaa3442ebe1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddaa0e00a1e8f6a7db63bfef54fc038f44b9fae613e4b182b65e5031acc798f7"} -2023-12-16T14:14:06.031Z INFO initializing dbft {"height": 7504, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:06.032Z debug frostfs-node/morph.go:229 new block {"index": 7503} -2023-12-16T14:14:06.612Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7503, "blockHeight": 7503, "took": "11.350435ms"} -2023-12-16T14:14:07.028Z INFO sending PrepareRequest {"height": 7504, "view": 0} -2023-12-16T14:14:07.029Z INFO sending Commit {"height": 7504, "view": 0} -2023-12-16T14:14:07.029Z INFO approving block {"height": 7504, "hash": "a8c5060ade27c2624a92150a8d6582cd8124e1b8d02f16230a1397a90e83f116", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd8873a18c4edcdb4f580ab2b13671c5a31b0183bdd8df5333651eaa3442ebe1"} -2023-12-16T14:14:07.030Z INFO initializing dbft {"height": 7505, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:07.034Z debug frostfs-node/morph.go:229 new block {"index": 7504} -2023-12-16T14:14:07.612Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7504, "blockHeight": 7504, "took": "10.698107ms"} -2023-12-16T14:14:08.030Z INFO sending PrepareRequest {"height": 7505, "view": 0} -2023-12-16T14:14:08.031Z INFO sending Commit {"height": 7505, "view": 0} -2023-12-16T14:14:08.031Z INFO approving block {"height": 7505, "hash": "348df61bdb486abadf29b4e35b58146aeb722845f2295999dc9b43fc7736ec68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8c5060ade27c2624a92150a8d6582cd8124e1b8d02f16230a1397a90e83f116"} -2023-12-16T14:14:08.033Z INFO initializing dbft {"height": 7506, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:08.034Z debug frostfs-node/morph.go:229 new block {"index": 7505} -2023-12-16T14:14:08.618Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7505, "blockHeight": 7505, "took": "15.212464ms"} -2023-12-16T14:14:09.033Z INFO sending PrepareRequest {"height": 7506, "view": 0} -2023-12-16T14:14:09.033Z INFO sending Commit {"height": 7506, "view": 0} -2023-12-16T14:14:09.033Z INFO approving block {"height": 7506, "hash": "d382d9ea63120f7cf0f00e68a04d336d5adedf59c60987907d6abe3b81725d74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "348df61bdb486abadf29b4e35b58146aeb722845f2295999dc9b43fc7736ec68"} -2023-12-16T14:14:09.035Z INFO initializing dbft {"height": 7507, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:09.036Z debug frostfs-node/morph.go:229 new block {"index": 7506} -2023-12-16T14:14:09.619Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7506, "blockHeight": 7506, "took": "16.22595ms"} -2023-12-16T14:14:10.035Z INFO sending PrepareRequest {"height": 7507, "view": 0} -2023-12-16T14:14:10.036Z INFO sending Commit {"height": 7507, "view": 0} -2023-12-16T14:14:10.037Z INFO approving block {"height": 7507, "hash": "c4137b96c6e0b48d03d6cbc0dc9da40258b617c411082d47501cb2a4b7e567a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d382d9ea63120f7cf0f00e68a04d336d5adedf59c60987907d6abe3b81725d74"} -2023-12-16T14:14:10.040Z INFO initializing dbft {"height": 7508, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:10.041Z debug frostfs-node/morph.go:229 new block {"index": 7507} -2023-12-16T14:14:10.632Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7507, "blockHeight": 7507, "took": "28.368301ms"} -2023-12-16T14:14:11.039Z INFO sending PrepareRequest {"height": 7508, "view": 0} -2023-12-16T14:14:11.039Z INFO sending Commit {"height": 7508, "view": 0} -2023-12-16T14:14:11.039Z INFO approving block {"height": 7508, "hash": "2299fa03b2ee8dc8ce6ea4ab6bcc56d1eaa0a4945c0432a945f8d16c6f3078af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4137b96c6e0b48d03d6cbc0dc9da40258b617c411082d47501cb2a4b7e567a6"} -2023-12-16T14:14:11.041Z INFO initializing dbft {"height": 7509, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:11.042Z debug frostfs-node/morph.go:229 new block {"index": 7508} -2023-12-16T14:14:11.620Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7508, "blockHeight": 7508, "took": "14.808943ms"} -2023-12-16T14:14:12.040Z INFO sending PrepareRequest {"height": 7509, "view": 0} -2023-12-16T14:14:12.041Z INFO sending Commit {"height": 7509, "view": 0} -2023-12-16T14:14:12.042Z INFO approving block {"height": 7509, "hash": "864ac9f13533cc259a1f16bcc0021703b94cb84293631d8451af687f21312124", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2299fa03b2ee8dc8ce6ea4ab6bcc56d1eaa0a4945c0432a945f8d16c6f3078af"} -2023-12-16T14:14:12.044Z INFO initializing dbft {"height": 7510, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:12.045Z debug frostfs-node/morph.go:229 new block {"index": 7509} -2023-12-16T14:14:12.618Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7509, "blockHeight": 7509, "took": "12.565805ms"} -2023-12-16T14:14:13.043Z INFO sending PrepareRequest {"height": 7510, "view": 0} -2023-12-16T14:14:13.044Z INFO sending Commit {"height": 7510, "view": 0} -2023-12-16T14:14:13.044Z INFO approving block {"height": 7510, "hash": "3a7225d58e8718b3a568050e77fe67223f0bc22bda3a7a9435f7b04af61c169f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "864ac9f13533cc259a1f16bcc0021703b94cb84293631d8451af687f21312124"} -2023-12-16T14:14:13.045Z INFO initializing dbft {"height": 7511, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:13.046Z debug frostfs-node/morph.go:229 new block {"index": 7510} -2023-12-16T14:14:13.621Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7510, "blockHeight": 7510, "took": "14.650515ms"} -2023-12-16T14:14:14.046Z INFO sending PrepareRequest {"height": 7511, "view": 0} -2023-12-16T14:14:14.046Z INFO sending Commit {"height": 7511, "view": 0} -2023-12-16T14:14:14.047Z INFO approving block {"height": 7511, "hash": "51b0dcf8c19bf42ba4219f35ccbe159f62c435a3ea0e61a9a47fb1380221f280", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a7225d58e8718b3a568050e77fe67223f0bc22bda3a7a9435f7b04af61c169f"} -2023-12-16T14:14:14.049Z INFO initializing dbft {"height": 7512, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:14.050Z debug frostfs-node/morph.go:229 new block {"index": 7511} -2023-12-16T14:14:14.621Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7511, "blockHeight": 7511, "took": "13.484061ms"} -2023-12-16T14:14:15.048Z INFO sending PrepareRequest {"height": 7512, "view": 0} -2023-12-16T14:14:15.048Z INFO sending Commit {"height": 7512, "view": 0} -2023-12-16T14:14:15.048Z INFO approving block {"height": 7512, "hash": "3d87ad1890e0b7d415fbde93f302b91099445fe2043cc8285ac6126dce5dc63f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51b0dcf8c19bf42ba4219f35ccbe159f62c435a3ea0e61a9a47fb1380221f280"} -2023-12-16T14:14:15.051Z INFO initializing dbft {"height": 7513, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:15.054Z debug frostfs-node/morph.go:229 new block {"index": 7512} -2023-12-16T14:14:15.620Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7512, "blockHeight": 7512, "took": "11.797738ms"} -2023-12-16T14:14:16.050Z INFO sending PrepareRequest {"height": 7513, "view": 0} -2023-12-16T14:14:16.050Z INFO sending Commit {"height": 7513, "view": 0} -2023-12-16T14:14:16.051Z INFO approving block {"height": 7513, "hash": "b4877923db20274c25772c504e7d3c5a0d554ad39095ebd3f76fc916bdf7e7d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d87ad1890e0b7d415fbde93f302b91099445fe2043cc8285ac6126dce5dc63f"} -2023-12-16T14:14:16.055Z INFO initializing dbft {"height": 7514, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:16.055Z debug frostfs-node/morph.go:229 new block {"index": 7513} -2023-12-16T14:14:16.623Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7513, "blockHeight": 7513, "took": "14.202559ms"} -2023-12-16T14:14:17.052Z INFO sending PrepareRequest {"height": 7514, "view": 0} -2023-12-16T14:14:17.053Z INFO sending Commit {"height": 7514, "view": 0} -2023-12-16T14:14:17.054Z INFO approving block {"height": 7514, "hash": "b62634169d630b35013938726d3f93e60ea0adbe7807d7bbda8c89f1e8c26bd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4877923db20274c25772c504e7d3c5a0d554ad39095ebd3f76fc916bdf7e7d8"} -2023-12-16T14:14:17.057Z INFO initializing dbft {"height": 7515, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:17.058Z debug frostfs-node/morph.go:229 new block {"index": 7514} -2023-12-16T14:14:17.653Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7514, "blockHeight": 7514, "took": "43.264755ms"} -2023-12-16T14:14:18.056Z INFO sending PrepareRequest {"height": 7515, "view": 0} -2023-12-16T14:14:18.057Z INFO sending Commit {"height": 7515, "view": 0} -2023-12-16T14:14:18.057Z INFO approving block {"height": 7515, "hash": "82164e6e6f86ae623c14bf9c11143ddf1652581bfb2755df38aca6cfa33b4800", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b62634169d630b35013938726d3f93e60ea0adbe7807d7bbda8c89f1e8c26bd5"} -2023-12-16T14:14:18.061Z INFO initializing dbft {"height": 7516, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:18.062Z debug frostfs-node/morph.go:229 new block {"index": 7515} -2023-12-16T14:14:18.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7515, "blockHeight": 7515, "took": "26.333362ms"} -2023-12-16T14:14:19.059Z INFO sending PrepareRequest {"height": 7516, "view": 0} -2023-12-16T14:14:19.060Z INFO sending Commit {"height": 7516, "view": 0} -2023-12-16T14:14:19.060Z INFO approving block {"height": 7516, "hash": "88ff8560d0fb09771d847dbb6e6a4941472fdd2eb501bbc19420650709bcb56c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82164e6e6f86ae623c14bf9c11143ddf1652581bfb2755df38aca6cfa33b4800"} -2023-12-16T14:14:19.062Z INFO initializing dbft {"height": 7517, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:19.063Z debug frostfs-node/morph.go:229 new block {"index": 7516} -2023-12-16T14:14:19.627Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7516, "blockHeight": 7516, "took": "16.348347ms"} -2023-12-16T14:14:20.062Z INFO sending PrepareRequest {"height": 7517, "view": 0} -2023-12-16T14:14:20.062Z INFO sending Commit {"height": 7517, "view": 0} -2023-12-16T14:14:20.063Z INFO approving block {"height": 7517, "hash": "d5d16f7676d6127dc4f81c878bc1befd56a13c725803de136431cdd8c971973b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88ff8560d0fb09771d847dbb6e6a4941472fdd2eb501bbc19420650709bcb56c"} -2023-12-16T14:14:20.065Z INFO initializing dbft {"height": 7518, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:20.066Z debug frostfs-node/morph.go:229 new block {"index": 7517} -2023-12-16T14:14:20.622Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7517, "blockHeight": 7517, "took": "10.31421ms"} -2023-12-16T14:14:21.063Z INFO sending PrepareRequest {"height": 7518, "view": 0} -2023-12-16T14:14:21.064Z INFO sending Commit {"height": 7518, "view": 0} -2023-12-16T14:14:21.064Z INFO approving block {"height": 7518, "hash": "0d9eae080705721612e8004673ce1928d19276d3b47510b1d8d0518ee5f5bca6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5d16f7676d6127dc4f81c878bc1befd56a13c725803de136431cdd8c971973b"} -2023-12-16T14:14:21.067Z INFO initializing dbft {"height": 7519, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:21.068Z debug frostfs-node/morph.go:229 new block {"index": 7518} -2023-12-16T14:14:21.628Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7518, "blockHeight": 7518, "took": "16.335636ms"} -2023-12-16T14:14:22.066Z INFO sending PrepareRequest {"height": 7519, "view": 0} -2023-12-16T14:14:22.066Z INFO sending Commit {"height": 7519, "view": 0} -2023-12-16T14:14:22.066Z INFO approving block {"height": 7519, "hash": "64b4f5ddca9167990de8c3daf5a47eda0073bfc1550a6af4618b001abbf04459", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d9eae080705721612e8004673ce1928d19276d3b47510b1d8d0518ee5f5bca6"} -2023-12-16T14:14:22.067Z INFO initializing dbft {"height": 7520, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:22.069Z debug frostfs-node/morph.go:229 new block {"index": 7519} -2023-12-16T14:14:22.628Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7519, "blockHeight": 7519, "took": "14.597095ms"} -2023-12-16T14:14:23.068Z INFO sending PrepareRequest {"height": 7520, "view": 0} -2023-12-16T14:14:23.068Z INFO sending Commit {"height": 7520, "view": 0} -2023-12-16T14:14:23.068Z INFO approving block {"height": 7520, "hash": "e8bbb54db4a92bbc45b46ab12cd1ec37d657ed4ae0e254bc2c7275851b9bf4e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64b4f5ddca9167990de8c3daf5a47eda0073bfc1550a6af4618b001abbf04459"} -2023-12-16T14:14:23.070Z INFO initializing dbft {"height": 7521, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:23.070Z debug frostfs-node/morph.go:229 new block {"index": 7520} -2023-12-16T14:14:23.624Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7520, "blockHeight": 7520, "took": "9.363222ms"} -2023-12-16T14:14:24.070Z INFO sending PrepareRequest {"height": 7521, "view": 0} -2023-12-16T14:14:24.071Z INFO sending Commit {"height": 7521, "view": 0} -2023-12-16T14:14:24.071Z INFO approving block {"height": 7521, "hash": "550dbb8ae82d3b860536c1e60091751e02562856d196da60e72e249ff722d7b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8bbb54db4a92bbc45b46ab12cd1ec37d657ed4ae0e254bc2c7275851b9bf4e0"} -2023-12-16T14:14:24.074Z INFO initializing dbft {"height": 7522, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:24.075Z debug frostfs-node/morph.go:229 new block {"index": 7521} -2023-12-16T14:14:24.628Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7521, "blockHeight": 7521, "took": "12.04506ms"} -2023-12-16T14:14:25.073Z INFO sending PrepareRequest {"height": 7522, "view": 0} -2023-12-16T14:14:25.074Z INFO sending Commit {"height": 7522, "view": 0} -2023-12-16T14:14:25.074Z INFO approving block {"height": 7522, "hash": "7f6036e484ee7a1382dec3081315c06ab0bfb44ccd14da9fc454481945ed4f6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "550dbb8ae82d3b860536c1e60091751e02562856d196da60e72e249ff722d7b4"} -2023-12-16T14:14:25.077Z INFO initializing dbft {"height": 7523, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:25.077Z debug frostfs-node/morph.go:229 new block {"index": 7522} -2023-12-16T14:14:25.637Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7522, "blockHeight": 7522, "took": "19.753932ms"} -2023-12-16T14:14:26.077Z INFO sending PrepareRequest {"height": 7523, "view": 0} -2023-12-16T14:14:26.077Z INFO sending Commit {"height": 7523, "view": 0} -2023-12-16T14:14:26.078Z INFO approving block {"height": 7523, "hash": "716c8d1525f143a4234ad76a5618e7e57762a0a470d8555fece57ee687f92efc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f6036e484ee7a1382dec3081315c06ab0bfb44ccd14da9fc454481945ed4f6b"} -2023-12-16T14:14:26.080Z INFO initializing dbft {"height": 7524, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:26.081Z debug frostfs-node/morph.go:229 new block {"index": 7523} -2023-12-16T14:14:26.632Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7523, "blockHeight": 7523, "took": "13.439452ms"} -2023-12-16T14:14:27.079Z INFO sending PrepareRequest {"height": 7524, "view": 0} -2023-12-16T14:14:27.079Z INFO sending Commit {"height": 7524, "view": 0} -2023-12-16T14:14:27.080Z INFO approving block {"height": 7524, "hash": "224ce771c1b7ae677eefeb8bc098063fd904637d4a394cb6bed9eb833678a002", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "716c8d1525f143a4234ad76a5618e7e57762a0a470d8555fece57ee687f92efc"} -2023-12-16T14:14:27.082Z INFO initializing dbft {"height": 7525, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:27.083Z debug frostfs-node/morph.go:229 new block {"index": 7524} -2023-12-16T14:14:27.630Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7524, "blockHeight": 7524, "took": "10.536202ms"} -2023-12-16T14:14:28.081Z INFO sending PrepareRequest {"height": 7525, "view": 0} -2023-12-16T14:14:28.081Z INFO sending Commit {"height": 7525, "view": 0} -2023-12-16T14:14:28.081Z INFO approving block {"height": 7525, "hash": "b5810671ba407917d13ea9eb5c1b968d8a76a686df76cd40f2d0f49d8864d5e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "224ce771c1b7ae677eefeb8bc098063fd904637d4a394cb6bed9eb833678a002"} -2023-12-16T14:14:28.083Z INFO initializing dbft {"height": 7526, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:28.084Z debug frostfs-node/morph.go:229 new block {"index": 7525} -2023-12-16T14:14:28.635Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7525, "blockHeight": 7525, "took": "14.749234ms"} -2023-12-16T14:14:29.082Z INFO sending PrepareRequest {"height": 7526, "view": 0} -2023-12-16T14:14:29.083Z INFO sending Commit {"height": 7526, "view": 0} -2023-12-16T14:14:29.083Z INFO approving block {"height": 7526, "hash": "d7b692b00ff96ad3ae79b45c22cfb03937fef197b24fa4333a6293c8e1a1b29b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5810671ba407917d13ea9eb5c1b968d8a76a686df76cd40f2d0f49d8864d5e7"} -2023-12-16T14:14:29.085Z INFO initializing dbft {"height": 7527, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:29.087Z debug frostfs-node/morph.go:229 new block {"index": 7526} -2023-12-16T14:14:29.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7526, "blockHeight": 7526, "took": "14.823082ms"} -2023-12-16T14:14:30.084Z INFO sending PrepareRequest {"height": 7527, "view": 0} -2023-12-16T14:14:30.084Z INFO sending Commit {"height": 7527, "view": 0} -2023-12-16T14:14:30.085Z INFO approving block {"height": 7527, "hash": "0689403a81ab782763aa85b31bdfdf1ba83356f4fa6af13d557b999781bccc08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7b692b00ff96ad3ae79b45c22cfb03937fef197b24fa4333a6293c8e1a1b29b"} -2023-12-16T14:14:30.087Z INFO initializing dbft {"height": 7528, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:30.088Z debug frostfs-node/morph.go:229 new block {"index": 7527} -2023-12-16T14:14:30.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7527, "blockHeight": 7527, "took": "14.932163ms"} -2023-12-16T14:14:31.086Z INFO sending PrepareRequest {"height": 7528, "view": 0} -2023-12-16T14:14:31.086Z INFO sending Commit {"height": 7528, "view": 0} -2023-12-16T14:14:31.086Z INFO approving block {"height": 7528, "hash": "0878aeea85723bd921d8d706b195fde52eb113fb13dfacef338c11b4707e5c83", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0689403a81ab782763aa85b31bdfdf1ba83356f4fa6af13d557b999781bccc08"} -2023-12-16T14:14:31.088Z INFO initializing dbft {"height": 7529, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:31.088Z debug frostfs-node/morph.go:229 new block {"index": 7528} -2023-12-16T14:14:31.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7528, "blockHeight": 7528, "took": "14.203999ms"} -2023-12-16T14:14:32.088Z INFO sending PrepareRequest {"height": 7529, "view": 0} -2023-12-16T14:14:32.088Z INFO sending Commit {"height": 7529, "view": 0} -2023-12-16T14:14:32.088Z INFO approving block {"height": 7529, "hash": "074938edcca7700c4efe224dfa9e075a0750e36f2e92d6aa2f5e602a7b77d491", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0878aeea85723bd921d8d706b195fde52eb113fb13dfacef338c11b4707e5c83"} -2023-12-16T14:14:32.090Z INFO initializing dbft {"height": 7530, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:32.091Z debug frostfs-node/morph.go:229 new block {"index": 7529} -2023-12-16T14:14:32.634Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7529, "blockHeight": 7529, "took": "11.394277ms"} -2023-12-16T14:14:33.090Z INFO sending PrepareRequest {"height": 7530, "view": 0} -2023-12-16T14:14:33.091Z INFO sending Commit {"height": 7530, "view": 0} -2023-12-16T14:14:33.091Z INFO approving block {"height": 7530, "hash": "4dfb913f59f29e72f4e5478c45396c93668c046fccbe71c01d05a371d4c1de65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "074938edcca7700c4efe224dfa9e075a0750e36f2e92d6aa2f5e602a7b77d491"} -2023-12-16T14:14:33.096Z INFO initializing dbft {"height": 7531, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:33.097Z debug frostfs-node/morph.go:229 new block {"index": 7530} -2023-12-16T14:14:33.108Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 32 epoch for daughters"} -2023-12-16T14:14:33.111Z INFO runtime log {"tx": "066c962cb7632be45966bd8ccf6999259455ed177d7eb32f55434b55348c8430", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:14:33.651Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7530, "blockHeight": 7530, "took": "27.658864ms"} -2023-12-16T14:14:34.092Z INFO sending PrepareRequest {"height": 7531, "view": 0} -2023-12-16T14:14:34.092Z INFO sending Commit {"height": 7531, "view": 0} -2023-12-16T14:14:34.096Z INFO approving block {"height": 7531, "hash": "698c95c648c971377384f7fc1af7e42be5ddab6d9d076e5ac9d28ed9c0b19169", "tx_count": 1, "merkle": "ebdeda18b3c4e9d9bef2a2b2602b0d61dac0f825f8aa5b526bc6b4fccfef2c1d", "prev": "4dfb913f59f29e72f4e5478c45396c93668c046fccbe71c01d05a371d4c1de65"} -2023-12-16T14:14:34.098Z INFO runtime log {"tx": "1d2cefcffcb4c66b525baaf825f8c0da610d2b60b2a2f2bed9e9c4b318dadeeb", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:14:34.101Z INFO initializing dbft {"height": 7532, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:34.102Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 32} -2023-12-16T14:14:34.102Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 32} -2023-12-16T14:14:34.102Z debug frostfs-node/morph.go:229 new block {"index": 7531} -2023-12-16T14:14:34.647Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 7531, "blockHeight": 7531, "took": "22.557013ms"} -2023-12-16T14:14:35.096Z INFO sending PrepareRequest {"height": 7532, "view": 0} -2023-12-16T14:14:35.097Z INFO sending Commit {"height": 7532, "view": 0} -2023-12-16T14:14:35.097Z INFO approving block {"height": 7532, "hash": "7263f15ae659e1dc00c8cafb4ab40c4d5644435ab2c7d7c1f570f8a1b384f758", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "698c95c648c971377384f7fc1af7e42be5ddab6d9d076e5ac9d28ed9c0b19169"} -2023-12-16T14:14:35.098Z INFO initializing dbft {"height": 7533, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:35.099Z debug frostfs-node/morph.go:229 new block {"index": 7532} -2023-12-16T14:14:35.645Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7532, "blockHeight": 7532, "took": "19.561415ms"} -2023-12-16T14:14:36.099Z INFO sending PrepareRequest {"height": 7533, "view": 0} -2023-12-16T14:14:36.099Z INFO sending Commit {"height": 7533, "view": 0} -2023-12-16T14:14:36.100Z INFO approving block {"height": 7533, "hash": "f44c4a19aaf4983a96f5ff9ccacb899e7200ca5a482f9bbc71e3c023843bc652", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7263f15ae659e1dc00c8cafb4ab40c4d5644435ab2c7d7c1f570f8a1b384f758"} -2023-12-16T14:14:36.102Z INFO initializing dbft {"height": 7534, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:36.103Z debug frostfs-node/morph.go:229 new block {"index": 7533} -2023-12-16T14:14:36.643Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7533, "blockHeight": 7533, "took": "17.026871ms"} -2023-12-16T14:14:37.101Z INFO sending PrepareRequest {"height": 7534, "view": 0} -2023-12-16T14:14:37.101Z INFO sending Commit {"height": 7534, "view": 0} -2023-12-16T14:14:37.101Z INFO approving block {"height": 7534, "hash": "f085045b5733a53219b5b787e021d128b5307e41369395166fa58988dc834bd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f44c4a19aaf4983a96f5ff9ccacb899e7200ca5a482f9bbc71e3c023843bc652"} -2023-12-16T14:14:37.103Z INFO initializing dbft {"height": 7535, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:37.104Z debug frostfs-node/morph.go:229 new block {"index": 7534} -2023-12-16T14:14:37.646Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7534, "blockHeight": 7534, "took": "18.699043ms"} -2023-12-16T14:14:38.102Z INFO sending PrepareRequest {"height": 7535, "view": 0} -2023-12-16T14:14:38.103Z INFO sending Commit {"height": 7535, "view": 0} -2023-12-16T14:14:38.103Z INFO approving block {"height": 7535, "hash": "d1d85d5f738934956934d5b3aba099590a5b332e56637fd70eb81540f8a42402", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f085045b5733a53219b5b787e021d128b5307e41369395166fa58988dc834bd1"} -2023-12-16T14:14:38.105Z INFO initializing dbft {"height": 7536, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:38.106Z debug frostfs-node/morph.go:229 new block {"index": 7535} -2023-12-16T14:14:38.639Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7535, "blockHeight": 7535, "took": "11.216823ms"} -2023-12-16T14:14:39.104Z INFO sending PrepareRequest {"height": 7536, "view": 0} -2023-12-16T14:14:39.104Z INFO sending Commit {"height": 7536, "view": 0} -2023-12-16T14:14:39.105Z INFO approving block {"height": 7536, "hash": "d22154f2f95639af7e8f1e7891d9fedbde2d6a5761ac7a8a9a410ef145c52abf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1d85d5f738934956934d5b3aba099590a5b332e56637fd70eb81540f8a42402"} -2023-12-16T14:14:39.107Z INFO initializing dbft {"height": 7537, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:39.108Z debug frostfs-node/morph.go:229 new block {"index": 7536} -2023-12-16T14:14:39.643Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7536, "blockHeight": 7536, "took": "14.699865ms"} -2023-12-16T14:14:40.106Z INFO sending PrepareRequest {"height": 7537, "view": 0} -2023-12-16T14:14:40.106Z INFO sending Commit {"height": 7537, "view": 0} -2023-12-16T14:14:40.106Z INFO approving block {"height": 7537, "hash": "f3b01744022f5db4633125edb4a14a7eef3d30a8f18e661f6a091d97a03a4b56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d22154f2f95639af7e8f1e7891d9fedbde2d6a5761ac7a8a9a410ef145c52abf"} -2023-12-16T14:14:40.108Z INFO initializing dbft {"height": 7538, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:40.109Z debug frostfs-node/morph.go:229 new block {"index": 7537} -2023-12-16T14:14:40.646Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7537, "blockHeight": 7537, "took": "16.168301ms"} -2023-12-16T14:14:41.107Z INFO sending PrepareRequest {"height": 7538, "view": 0} -2023-12-16T14:14:41.107Z INFO sending Commit {"height": 7538, "view": 0} -2023-12-16T14:14:41.108Z INFO approving block {"height": 7538, "hash": "53a4a07ca8b9eb60b0baa23d594bf3e02a0a6724e47b6d864c4f00d4ffce6626", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3b01744022f5db4633125edb4a14a7eef3d30a8f18e661f6a091d97a03a4b56"} -2023-12-16T14:14:41.110Z INFO initializing dbft {"height": 7539, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:41.110Z debug frostfs-node/morph.go:229 new block {"index": 7538} -2023-12-16T14:14:41.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7538, "blockHeight": 7538, "took": "13.701721ms"} -2023-12-16T14:14:42.109Z INFO sending PrepareRequest {"height": 7539, "view": 0} -2023-12-16T14:14:42.109Z INFO sending Commit {"height": 7539, "view": 0} -2023-12-16T14:14:42.109Z INFO approving block {"height": 7539, "hash": "a1e62d3d1e9e6a8c3ce2f10b81d3ca6f0acfc07bff4f8c92bb595fcffd81ff97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53a4a07ca8b9eb60b0baa23d594bf3e02a0a6724e47b6d864c4f00d4ffce6626"} -2023-12-16T14:14:42.111Z INFO initializing dbft {"height": 7540, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:42.111Z debug frostfs-node/morph.go:229 new block {"index": 7539} -2023-12-16T14:14:42.642Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7539, "blockHeight": 7539, "took": "10.451467ms"} -2023-12-16T14:14:43.111Z INFO sending PrepareRequest {"height": 7540, "view": 0} -2023-12-16T14:14:43.111Z INFO sending Commit {"height": 7540, "view": 0} -2023-12-16T14:14:43.111Z INFO approving block {"height": 7540, "hash": "ba2974a2bf22b557f1fb27daa2aed5b001f02b4b2ff2c4fda1a6f33e0ba5f2e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1e62d3d1e9e6a8c3ce2f10b81d3ca6f0acfc07bff4f8c92bb595fcffd81ff97"} -2023-12-16T14:14:43.114Z INFO initializing dbft {"height": 7541, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:43.114Z debug frostfs-node/morph.go:229 new block {"index": 7540} -2023-12-16T14:14:43.648Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7540, "blockHeight": 7540, "took": "15.840746ms"} -2023-12-16T14:14:44.113Z INFO sending PrepareRequest {"height": 7541, "view": 0} -2023-12-16T14:14:44.113Z INFO sending Commit {"height": 7541, "view": 0} -2023-12-16T14:14:44.114Z INFO approving block {"height": 7541, "hash": "23815d1032c99f9734a2f3fc2890a6a4e40057970ecd81e0427f5088659e947d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba2974a2bf22b557f1fb27daa2aed5b001f02b4b2ff2c4fda1a6f33e0ba5f2e1"} -2023-12-16T14:14:44.115Z INFO initializing dbft {"height": 7542, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:44.115Z debug frostfs-node/morph.go:229 new block {"index": 7541} -2023-12-16T14:14:44.648Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7541, "blockHeight": 7541, "took": "14.818934ms"} -2023-12-16T14:14:45.115Z INFO sending PrepareRequest {"height": 7542, "view": 0} -2023-12-16T14:14:45.115Z INFO sending Commit {"height": 7542, "view": 0} -2023-12-16T14:14:45.116Z INFO approving block {"height": 7542, "hash": "7127077ee6281d024236f23b37168db78377cb7ed1abc17e2abe70262f22d8a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23815d1032c99f9734a2f3fc2890a6a4e40057970ecd81e0427f5088659e947d"} -2023-12-16T14:14:45.117Z INFO initializing dbft {"height": 7543, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:45.118Z debug frostfs-node/morph.go:229 new block {"index": 7542} -2023-12-16T14:14:45.648Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7542, "blockHeight": 7542, "took": "14.221296ms"} -2023-12-16T14:14:46.117Z INFO sending PrepareRequest {"height": 7543, "view": 0} -2023-12-16T14:14:46.117Z INFO sending Commit {"height": 7543, "view": 0} -2023-12-16T14:14:46.117Z INFO approving block {"height": 7543, "hash": "2f71284f2076901f51001ff91dbd982712650bb7fa8ef743c51b184b1cf66528", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7127077ee6281d024236f23b37168db78377cb7ed1abc17e2abe70262f22d8a4"} -2023-12-16T14:14:46.120Z INFO initializing dbft {"height": 7544, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:46.121Z debug frostfs-node/morph.go:229 new block {"index": 7543} -2023-12-16T14:14:46.651Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7543, "blockHeight": 7543, "took": "15.722748ms"} -2023-12-16T14:14:47.119Z INFO sending PrepareRequest {"height": 7544, "view": 0} -2023-12-16T14:14:47.120Z INFO sending Commit {"height": 7544, "view": 0} -2023-12-16T14:14:47.120Z INFO approving block {"height": 7544, "hash": "d923fb97ee534ba6678c81420725a7f14e06c5b23d6bd701893b18e10fc6064e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f71284f2076901f51001ff91dbd982712650bb7fa8ef743c51b184b1cf66528"} -2023-12-16T14:14:47.124Z INFO initializing dbft {"height": 7545, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:47.125Z debug frostfs-node/morph.go:229 new block {"index": 7544} -2023-12-16T14:14:47.656Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7544, "blockHeight": 7544, "took": "18.797953ms"} -2023-12-16T14:14:48.121Z INFO sending PrepareRequest {"height": 7545, "view": 0} -2023-12-16T14:14:48.121Z INFO sending Commit {"height": 7545, "view": 0} -2023-12-16T14:14:48.122Z INFO approving block {"height": 7545, "hash": "efade12953391b55e0f9c6b725093a9f622ec8f62eb760ee7d8ef9e6a0889d76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d923fb97ee534ba6678c81420725a7f14e06c5b23d6bd701893b18e10fc6064e"} -2023-12-16T14:14:48.124Z INFO initializing dbft {"height": 7546, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:48.125Z debug frostfs-node/morph.go:229 new block {"index": 7545} -2023-12-16T14:14:48.655Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7545, "blockHeight": 7545, "took": "17.07616ms"} -2023-12-16T14:14:49.123Z INFO sending PrepareRequest {"height": 7546, "view": 0} -2023-12-16T14:14:49.125Z INFO sending Commit {"height": 7546, "view": 0} -2023-12-16T14:14:49.126Z INFO approving block {"height": 7546, "hash": "2de50e29178cc108162b8b1f71c6ded5af7547ff616bfcf90c2e213103f851a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efade12953391b55e0f9c6b725093a9f622ec8f62eb760ee7d8ef9e6a0889d76"} -2023-12-16T14:14:49.129Z INFO initializing dbft {"height": 7547, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:49.130Z debug frostfs-node/morph.go:229 new block {"index": 7546} -2023-12-16T14:14:49.648Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7546, "blockHeight": 7546, "took": "9.840832ms"} -2023-12-16T14:14:50.127Z INFO sending PrepareRequest {"height": 7547, "view": 0} -2023-12-16T14:14:50.127Z INFO sending Commit {"height": 7547, "view": 0} -2023-12-16T14:14:50.127Z INFO approving block {"height": 7547, "hash": "d87b3f5e15591a5ddb3d2de2f96f5e9a24f331cfbf15ca86038ce79933ff09bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2de50e29178cc108162b8b1f71c6ded5af7547ff616bfcf90c2e213103f851a4"} -2023-12-16T14:14:50.129Z INFO initializing dbft {"height": 7548, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:50.130Z debug frostfs-node/morph.go:229 new block {"index": 7547} -2023-12-16T14:14:50.655Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7547, "blockHeight": 7547, "took": "15.356982ms"} -2023-12-16T14:14:51.129Z INFO sending PrepareRequest {"height": 7548, "view": 0} -2023-12-16T14:14:51.129Z INFO sending Commit {"height": 7548, "view": 0} -2023-12-16T14:14:51.130Z INFO approving block {"height": 7548, "hash": "b28685a3ae13ca096636cf4201d32147d03a91dff087fd3662575b9ed7f7105e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d87b3f5e15591a5ddb3d2de2f96f5e9a24f331cfbf15ca86038ce79933ff09bb"} -2023-12-16T14:14:51.131Z INFO initializing dbft {"height": 7549, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:51.132Z debug frostfs-node/morph.go:229 new block {"index": 7548} -2023-12-16T14:14:51.652Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7548, "blockHeight": 7548, "took": "10.955183ms"} -2023-12-16T14:14:52.131Z INFO sending PrepareRequest {"height": 7549, "view": 0} -2023-12-16T14:14:52.132Z INFO sending Commit {"height": 7549, "view": 0} -2023-12-16T14:14:52.132Z INFO approving block {"height": 7549, "hash": "d17fcb7998ee2ecf19f19ca8e6b43afba94c1cce695d5231794ffc761a154ebf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b28685a3ae13ca096636cf4201d32147d03a91dff087fd3662575b9ed7f7105e"} -2023-12-16T14:14:52.134Z INFO initializing dbft {"height": 7550, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:52.135Z debug frostfs-node/morph.go:229 new block {"index": 7549} -2023-12-16T14:14:52.662Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7549, "blockHeight": 7549, "took": "21.355872ms"} -2023-12-16T14:14:53.134Z INFO sending PrepareRequest {"height": 7550, "view": 0} -2023-12-16T14:14:53.134Z INFO sending Commit {"height": 7550, "view": 0} -2023-12-16T14:14:53.135Z INFO approving block {"height": 7550, "hash": "915b6fd9ad40485639bb2aa5671ff00fd9b446e8339eae56376d6567902db9a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d17fcb7998ee2ecf19f19ca8e6b43afba94c1cce695d5231794ffc761a154ebf"} -2023-12-16T14:14:53.137Z INFO initializing dbft {"height": 7551, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:53.139Z debug frostfs-node/morph.go:229 new block {"index": 7550} -2023-12-16T14:14:53.144Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:14:53.151Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:14:53.151Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:14:53.655Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7550, "blockHeight": 7550, "took": "13.631403ms"} -2023-12-16T14:14:54.137Z INFO sending PrepareRequest {"height": 7551, "view": 0} -2023-12-16T14:14:54.137Z INFO sending Commit {"height": 7551, "view": 0} -2023-12-16T14:14:54.138Z INFO approving block {"height": 7551, "hash": "4d4d5651f1c14562e26469c3ca2dcede90260bf082f7eb73bb927d1f163da6b9", "tx_count": 2, "merkle": "80a7dc495727b658ede499892edb5ef3933fc2caa42d4e79e0471eb11b769b37", "prev": "915b6fd9ad40485639bb2aa5671ff00fd9b446e8339eae56376d6567902db9a5"} -2023-12-16T14:14:54.140Z INFO runtime log {"tx": "fc5db1653bf00d7d91dea336878faa9be86112506f9fa31eaf1a083f9c525402", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:14:54.140Z INFO runtime log {"tx": "fc5db1653bf00d7d91dea336878faa9be86112506f9fa31eaf1a083f9c525402", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:14:54.143Z INFO initializing dbft {"height": 7552, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:54.144Z debug frostfs-node/morph.go:229 new block {"index": 7551} -2023-12-16T14:14:54.664Z INFO persisted to disk {"blocks": 1, "keys": 50, "headerHeight": 7551, "blockHeight": 7551, "took": "21.454842ms"} -2023-12-16T14:14:55.140Z INFO sending PrepareRequest {"height": 7552, "view": 0} -2023-12-16T14:14:55.140Z INFO sending Commit {"height": 7552, "view": 0} -2023-12-16T14:14:55.140Z INFO approving block {"height": 7552, "hash": "19fda85b15c4292761cf9adceff7f3ffc1470c1c65082f81329f6991629227a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d4d5651f1c14562e26469c3ca2dcede90260bf082f7eb73bb927d1f163da6b9"} -2023-12-16T14:14:55.143Z INFO initializing dbft {"height": 7553, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:55.144Z debug frostfs-node/morph.go:229 new block {"index": 7552} -2023-12-16T14:14:55.658Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7552, "blockHeight": 7552, "took": "15.88293ms"} -2023-12-16T14:14:56.142Z INFO sending PrepareRequest {"height": 7553, "view": 0} -2023-12-16T14:14:56.142Z INFO sending Commit {"height": 7553, "view": 0} -2023-12-16T14:14:56.143Z INFO approving block {"height": 7553, "hash": "7ff96ec74a74a2762e3253dd4ef7f5d716e65bcf494c7ce0feaf042b84e37edf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19fda85b15c4292761cf9adceff7f3ffc1470c1c65082f81329f6991629227a9"} -2023-12-16T14:14:56.145Z INFO initializing dbft {"height": 7554, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:56.146Z debug frostfs-node/morph.go:229 new block {"index": 7553} -2023-12-16T14:14:56.653Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7553, "blockHeight": 7553, "took": "10.215005ms"} -2023-12-16T14:14:57.145Z INFO sending PrepareRequest {"height": 7554, "view": 0} -2023-12-16T14:14:57.146Z INFO sending Commit {"height": 7554, "view": 0} -2023-12-16T14:14:57.146Z INFO approving block {"height": 7554, "hash": "86b2881b1d8f114c2cd947fe26fef138f95e067f5591eb72f9a02323322fd961", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ff96ec74a74a2762e3253dd4ef7f5d716e65bcf494c7ce0feaf042b84e37edf"} -2023-12-16T14:14:57.150Z INFO initializing dbft {"height": 7555, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:57.151Z debug frostfs-node/morph.go:229 new block {"index": 7554} -2023-12-16T14:14:57.669Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7554, "blockHeight": 7554, "took": "24.019834ms"} -2023-12-16T14:14:58.147Z INFO sending PrepareRequest {"height": 7555, "view": 0} -2023-12-16T14:14:58.148Z INFO sending Commit {"height": 7555, "view": 0} -2023-12-16T14:14:58.148Z INFO approving block {"height": 7555, "hash": "ad62cffeec09c6cb4419fb4e637e6faf58f2d71e7efa61fe2e289434338c4591", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86b2881b1d8f114c2cd947fe26fef138f95e067f5591eb72f9a02323322fd961"} -2023-12-16T14:14:58.150Z INFO initializing dbft {"height": 7556, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:58.151Z debug frostfs-node/morph.go:229 new block {"index": 7555} -2023-12-16T14:14:58.663Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7555, "blockHeight": 7555, "took": "16.916487ms"} -2023-12-16T14:14:59.149Z INFO sending PrepareRequest {"height": 7556, "view": 0} -2023-12-16T14:14:59.150Z INFO sending Commit {"height": 7556, "view": 0} -2023-12-16T14:14:59.150Z INFO approving block {"height": 7556, "hash": "c5a883339580897b749201e3050e4ea7f64d6605a4c2bb72fdb7b0c72e0263d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad62cffeec09c6cb4419fb4e637e6faf58f2d71e7efa61fe2e289434338c4591"} -2023-12-16T14:14:59.152Z INFO initializing dbft {"height": 7557, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:14:59.153Z debug frostfs-node/morph.go:229 new block {"index": 7556} -2023-12-16T14:14:59.667Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7556, "blockHeight": 7556, "took": "20.801511ms"} -2023-12-16T14:15:00.151Z INFO sending PrepareRequest {"height": 7557, "view": 0} -2023-12-16T14:15:00.152Z INFO sending Commit {"height": 7557, "view": 0} -2023-12-16T14:15:00.152Z INFO approving block {"height": 7557, "hash": "c0fc668f67f6d96cdbb8cd7724b86f23792afc72bd0c4f162ad1e06179c71304", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5a883339580897b749201e3050e4ea7f64d6605a4c2bb72fdb7b0c72e0263d9"} -2023-12-16T14:15:00.155Z INFO initializing dbft {"height": 7558, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:00.156Z debug frostfs-node/morph.go:229 new block {"index": 7557} -2023-12-16T14:15:00.664Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7557, "blockHeight": 7557, "took": "17.019109ms"} -2023-12-16T14:15:01.154Z INFO sending PrepareRequest {"height": 7558, "view": 0} -2023-12-16T14:15:01.154Z INFO sending Commit {"height": 7558, "view": 0} -2023-12-16T14:15:01.155Z INFO approving block {"height": 7558, "hash": "c634ca12455969e418f9a2a7bb417639f67f3dde99a96587024e8b2037c04803", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0fc668f67f6d96cdbb8cd7724b86f23792afc72bd0c4f162ad1e06179c71304"} -2023-12-16T14:15:01.157Z INFO initializing dbft {"height": 7559, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:01.159Z debug frostfs-node/morph.go:229 new block {"index": 7558} -2023-12-16T14:15:01.663Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7558, "blockHeight": 7558, "took": "15.618945ms"} -2023-12-16T14:15:02.157Z INFO sending PrepareRequest {"height": 7559, "view": 0} -2023-12-16T14:15:02.157Z INFO sending Commit {"height": 7559, "view": 0} -2023-12-16T14:15:02.158Z INFO approving block {"height": 7559, "hash": "0270e60915bcff158ddaeb2cad5935ddc67cc0c71430c6c54ee7d89e9fd57c6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c634ca12455969e418f9a2a7bb417639f67f3dde99a96587024e8b2037c04803"} -2023-12-16T14:15:02.160Z INFO initializing dbft {"height": 7560, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:02.161Z debug frostfs-node/morph.go:229 new block {"index": 7559} -2023-12-16T14:15:02.673Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7559, "blockHeight": 7559, "took": "24.902609ms"} -2023-12-16T14:15:03.159Z INFO sending PrepareRequest {"height": 7560, "view": 0} -2023-12-16T14:15:03.160Z INFO sending Commit {"height": 7560, "view": 0} -2023-12-16T14:15:03.160Z INFO approving block {"height": 7560, "hash": "d3e8ab5bc80185a8f9993e3c174140c70f697e937c0a97f16b3c5e9c89da11de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0270e60915bcff158ddaeb2cad5935ddc67cc0c71430c6c54ee7d89e9fd57c6a"} -2023-12-16T14:15:03.164Z INFO initializing dbft {"height": 7561, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:03.165Z debug frostfs-node/morph.go:229 new block {"index": 7560} -2023-12-16T14:15:03.675Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7560, "blockHeight": 7560, "took": "25.130294ms"} -2023-12-16T14:15:04.161Z INFO sending PrepareRequest {"height": 7561, "view": 0} -2023-12-16T14:15:04.162Z INFO sending Commit {"height": 7561, "view": 0} -2023-12-16T14:15:04.163Z INFO approving block {"height": 7561, "hash": "577e67a1cccae241dafbd0927911c02e3ec2a02b646b12856a1df627a5f3ceaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3e8ab5bc80185a8f9993e3c174140c70f697e937c0a97f16b3c5e9c89da11de"} -2023-12-16T14:15:04.166Z INFO initializing dbft {"height": 7562, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:04.167Z debug frostfs-node/morph.go:229 new block {"index": 7561} -2023-12-16T14:15:04.666Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7561, "blockHeight": 7561, "took": "14.706989ms"} -2023-12-16T14:15:05.164Z INFO sending PrepareRequest {"height": 7562, "view": 0} -2023-12-16T14:15:05.164Z INFO sending Commit {"height": 7562, "view": 0} -2023-12-16T14:15:05.164Z INFO approving block {"height": 7562, "hash": "bdc9668f1ce9117df858b0c818197217bb8725d4201c4cf8f7cec9d11eec4a96", "tx_count": 1, "merkle": "85172cfa44242da157490979edd0794dec362a787b08be84b9bc3b32d3f94dd4", "prev": "577e67a1cccae241dafbd0927911c02e3ec2a02b646b12856a1df627a5f3ceaa"} -2023-12-16T14:15:05.166Z INFO initializing dbft {"height": 7563, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:05.169Z debug frostfs-node/morph.go:229 new block {"index": 7562} -2023-12-16T14:15:05.173Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-16T14:15:05.667Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 7562, "blockHeight": 7562, "took": "15.376167ms"} -2023-12-16T14:15:06.166Z INFO sending PrepareRequest {"height": 7563, "view": 0} -2023-12-16T14:15:06.166Z INFO sending Commit {"height": 7563, "view": 0} -2023-12-16T14:15:06.167Z INFO approving block {"height": 7563, "hash": "afd1905ce7114d67a5b1a586a8ab02e3c964ad6887b1be4a0d49b09278900854", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdc9668f1ce9117df858b0c818197217bb8725d4201c4cf8f7cec9d11eec4a96"} -2023-12-16T14:15:06.169Z INFO initializing dbft {"height": 7564, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:06.170Z debug frostfs-node/morph.go:229 new block {"index": 7563} -2023-12-16T14:15:06.680Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7563, "blockHeight": 7563, "took": "26.702483ms"} -2023-12-16T14:15:07.169Z INFO sending PrepareRequest {"height": 7564, "view": 0} -2023-12-16T14:15:07.169Z INFO sending Commit {"height": 7564, "view": 0} -2023-12-16T14:15:07.170Z INFO approving block {"height": 7564, "hash": "380b6e76268b53a0deafdc0bdd6fd4a814475a4d9c0f4bede9df58698d337acd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afd1905ce7114d67a5b1a586a8ab02e3c964ad6887b1be4a0d49b09278900854"} -2023-12-16T14:15:07.171Z INFO initializing dbft {"height": 7565, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:07.172Z debug frostfs-node/morph.go:229 new block {"index": 7564} -2023-12-16T14:15:07.671Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7564, "blockHeight": 7564, "took": "17.29616ms"} -2023-12-16T14:15:08.172Z INFO sending PrepareRequest {"height": 7565, "view": 0} -2023-12-16T14:15:08.172Z INFO sending Commit {"height": 7565, "view": 0} -2023-12-16T14:15:08.172Z INFO approving block {"height": 7565, "hash": "44dcf573db740a24df8a85c00d74f7a79009181ea0d8a4d2d2d6f08553f6d714", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "380b6e76268b53a0deafdc0bdd6fd4a814475a4d9c0f4bede9df58698d337acd"} -2023-12-16T14:15:08.174Z INFO initializing dbft {"height": 7566, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:08.175Z debug frostfs-node/morph.go:229 new block {"index": 7565} -2023-12-16T14:15:08.676Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7565, "blockHeight": 7565, "took": "21.64463ms"} -2023-12-16T14:15:09.174Z INFO sending PrepareRequest {"height": 7566, "view": 0} -2023-12-16T14:15:09.174Z INFO sending Commit {"height": 7566, "view": 0} -2023-12-16T14:15:09.175Z INFO approving block {"height": 7566, "hash": "fd5ea381da39befd4141aa19564214dd3c4dba0e8d9df629388b59e9bee74002", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44dcf573db740a24df8a85c00d74f7a79009181ea0d8a4d2d2d6f08553f6d714"} -2023-12-16T14:15:09.178Z INFO initializing dbft {"height": 7567, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:09.179Z debug frostfs-node/morph.go:229 new block {"index": 7566} -2023-12-16T14:15:09.671Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7566, "blockHeight": 7566, "took": "16.113341ms"} -2023-12-16T14:15:10.176Z INFO sending PrepareRequest {"height": 7567, "view": 0} -2023-12-16T14:15:10.176Z INFO sending Commit {"height": 7567, "view": 0} -2023-12-16T14:15:10.177Z INFO approving block {"height": 7567, "hash": "9394227bb22c222bfb9910857227dd8a7848d0786b2fa4703050973bf1d15879", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd5ea381da39befd4141aa19564214dd3c4dba0e8d9df629388b59e9bee74002"} -2023-12-16T14:15:10.178Z INFO initializing dbft {"height": 7568, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:10.179Z debug frostfs-node/morph.go:229 new block {"index": 7567} -2023-12-16T14:15:10.671Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7567, "blockHeight": 7567, "took": "14.836503ms"} -2023-12-16T14:15:11.178Z INFO sending PrepareRequest {"height": 7568, "view": 0} -2023-12-16T14:15:11.178Z INFO sending Commit {"height": 7568, "view": 0} -2023-12-16T14:15:11.179Z INFO approving block {"height": 7568, "hash": "f512b42ec0fbaa4f11fe1a1fb2d59a88dfc67f7c8ee3bfc78d7f696356022850", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9394227bb22c222bfb9910857227dd8a7848d0786b2fa4703050973bf1d15879"} -2023-12-16T14:15:11.181Z INFO initializing dbft {"height": 7569, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:11.182Z debug frostfs-node/morph.go:229 new block {"index": 7568} -2023-12-16T14:15:11.697Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7568, "blockHeight": 7568, "took": "39.479718ms"} -2023-12-16T14:15:12.180Z INFO sending PrepareRequest {"height": 7569, "view": 0} -2023-12-16T14:15:12.181Z INFO sending Commit {"height": 7569, "view": 0} -2023-12-16T14:15:12.182Z INFO approving block {"height": 7569, "hash": "059f72d633d7399f8ade88be84f8edc4ecfc1e5d71a02bd210f37affc3117665", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f512b42ec0fbaa4f11fe1a1fb2d59a88dfc67f7c8ee3bfc78d7f696356022850"} -2023-12-16T14:15:12.184Z INFO initializing dbft {"height": 7570, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:12.185Z debug frostfs-node/morph.go:229 new block {"index": 7569} -2023-12-16T14:15:12.674Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7569, "blockHeight": 7569, "took": "15.261716ms"} -2023-12-16T14:15:13.183Z INFO sending PrepareRequest {"height": 7570, "view": 0} -2023-12-16T14:15:13.183Z INFO sending Commit {"height": 7570, "view": 0} -2023-12-16T14:15:13.184Z INFO approving block {"height": 7570, "hash": "2a32906cee9bd81cc393bd55a35dc762c3a05aecb7710e542bed23f028f67a40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "059f72d633d7399f8ade88be84f8edc4ecfc1e5d71a02bd210f37affc3117665"} -2023-12-16T14:15:13.186Z INFO initializing dbft {"height": 7571, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:13.188Z debug frostfs-node/morph.go:229 new block {"index": 7570} -2023-12-16T14:15:13.673Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7570, "blockHeight": 7570, "took": "13.451685ms"} -2023-12-16T14:15:14.185Z INFO sending PrepareRequest {"height": 7571, "view": 0} -2023-12-16T14:15:14.185Z INFO sending Commit {"height": 7571, "view": 0} -2023-12-16T14:15:14.186Z INFO approving block {"height": 7571, "hash": "e3897e177a1ec185dfe5f9a11af11b7a71fd1eccb7732af63fd20b581e786a9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a32906cee9bd81cc393bd55a35dc762c3a05aecb7710e542bed23f028f67a40"} -2023-12-16T14:15:14.187Z INFO initializing dbft {"height": 7572, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:14.188Z debug frostfs-node/morph.go:229 new block {"index": 7571} -2023-12-16T14:15:14.676Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7571, "blockHeight": 7571, "took": "15.67448ms"} -2023-12-16T14:15:15.187Z INFO sending PrepareRequest {"height": 7572, "view": 0} -2023-12-16T14:15:15.187Z INFO sending Commit {"height": 7572, "view": 0} -2023-12-16T14:15:15.188Z INFO approving block {"height": 7572, "hash": "af98e2fc78cc0f7b5a2a81e46d4f13a874a15b8c9f44b652925663125b7cde9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3897e177a1ec185dfe5f9a11af11b7a71fd1eccb7732af63fd20b581e786a9b"} -2023-12-16T14:15:15.190Z INFO initializing dbft {"height": 7573, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:15.192Z debug frostfs-node/morph.go:229 new block {"index": 7572} -2023-12-16T14:15:15.675Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7572, "blockHeight": 7572, "took": "14.082204ms"} -2023-12-16T14:15:16.189Z INFO sending PrepareRequest {"height": 7573, "view": 0} -2023-12-16T14:15:16.189Z INFO sending Commit {"height": 7573, "view": 0} -2023-12-16T14:15:16.189Z INFO approving block {"height": 7573, "hash": "1396aad42ba5faa7fdf073da7ec13c5c70a67292257b8d9d0cbbcb3372d30db3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af98e2fc78cc0f7b5a2a81e46d4f13a874a15b8c9f44b652925663125b7cde9b"} -2023-12-16T14:15:16.191Z INFO initializing dbft {"height": 7574, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:16.192Z debug frostfs-node/morph.go:229 new block {"index": 7573} -2023-12-16T14:15:16.674Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7573, "blockHeight": 7573, "took": "11.533281ms"} -2023-12-16T14:15:17.191Z INFO sending PrepareRequest {"height": 7574, "view": 0} -2023-12-16T14:15:17.191Z INFO sending Commit {"height": 7574, "view": 0} -2023-12-16T14:15:17.192Z INFO approving block {"height": 7574, "hash": "30807abde97e350526d1da5de51d1b655f99abb1dd66da1267724c5fb6a9a264", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1396aad42ba5faa7fdf073da7ec13c5c70a67292257b8d9d0cbbcb3372d30db3"} -2023-12-16T14:15:17.202Z INFO initializing dbft {"height": 7575, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:17.203Z debug frostfs-node/morph.go:229 new block {"index": 7574} -2023-12-16T14:15:17.682Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7574, "blockHeight": 7574, "took": "19.446311ms"} -2023-12-16T14:15:18.194Z INFO sending PrepareRequest {"height": 7575, "view": 0} -2023-12-16T14:15:18.194Z INFO sending Commit {"height": 7575, "view": 0} -2023-12-16T14:15:18.194Z INFO approving block {"height": 7575, "hash": "76dbd3acb3c9c8465c92bd645228eee4e60c53c866122f00f73d56d7eaef7415", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30807abde97e350526d1da5de51d1b655f99abb1dd66da1267724c5fb6a9a264"} -2023-12-16T14:15:18.197Z INFO initializing dbft {"height": 7576, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:18.199Z debug frostfs-node/morph.go:229 new block {"index": 7575} -2023-12-16T14:15:18.695Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7575, "blockHeight": 7575, "took": "30.800701ms"} -2023-12-16T14:15:19.196Z INFO sending PrepareRequest {"height": 7576, "view": 0} -2023-12-16T14:15:19.196Z INFO sending Commit {"height": 7576, "view": 0} -2023-12-16T14:15:19.197Z INFO approving block {"height": 7576, "hash": "3128c1243d5b62e70fc418a5d054b67b5bad68a8f77cd6251f45e71f194c0747", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76dbd3acb3c9c8465c92bd645228eee4e60c53c866122f00f73d56d7eaef7415"} -2023-12-16T14:15:19.200Z INFO initializing dbft {"height": 7577, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:19.201Z debug frostfs-node/morph.go:229 new block {"index": 7576} -2023-12-16T14:15:19.696Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7576, "blockHeight": 7576, "took": "30.766201ms"} -2023-12-16T14:15:20.199Z INFO sending PrepareRequest {"height": 7577, "view": 0} -2023-12-16T14:15:20.199Z INFO sending Commit {"height": 7577, "view": 0} -2023-12-16T14:15:20.200Z INFO approving block {"height": 7577, "hash": "cb86963595d07d994fb55008ea5cb8efdeee32e87f47e630a91377b315f9520b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3128c1243d5b62e70fc418a5d054b67b5bad68a8f77cd6251f45e71f194c0747"} -2023-12-16T14:15:20.201Z INFO initializing dbft {"height": 7578, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:20.203Z debug frostfs-node/morph.go:229 new block {"index": 7577} -2023-12-16T14:15:20.681Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7577, "blockHeight": 7577, "took": "15.215191ms"} -2023-12-16T14:15:21.201Z INFO sending PrepareRequest {"height": 7578, "view": 0} -2023-12-16T14:15:21.201Z INFO sending Commit {"height": 7578, "view": 0} -2023-12-16T14:15:21.202Z INFO approving block {"height": 7578, "hash": "763e545604aa17fa2520d5b76de8c5d03cc67eb4cde843ba06ee9fe3dfe9f3fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb86963595d07d994fb55008ea5cb8efdeee32e87f47e630a91377b315f9520b"} -2023-12-16T14:15:21.204Z INFO initializing dbft {"height": 7579, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:21.205Z debug frostfs-node/morph.go:229 new block {"index": 7578} -2023-12-16T14:15:21.679Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7578, "blockHeight": 7578, "took": "12.412547ms"} -2023-12-16T14:15:22.203Z INFO sending PrepareRequest {"height": 7579, "view": 0} -2023-12-16T14:15:22.203Z INFO sending Commit {"height": 7579, "view": 0} -2023-12-16T14:15:22.203Z INFO approving block {"height": 7579, "hash": "9f8f043dfb099315328adb50e28f4c2d93698f858ccd0f202b7e08709b8112f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "763e545604aa17fa2520d5b76de8c5d03cc67eb4cde843ba06ee9fe3dfe9f3fa"} -2023-12-16T14:15:22.205Z INFO initializing dbft {"height": 7580, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:22.206Z debug frostfs-node/morph.go:229 new block {"index": 7579} -2023-12-16T14:15:22.706Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7579, "blockHeight": 7579, "took": "38.754526ms"} -2023-12-16T14:15:23.204Z INFO sending PrepareRequest {"height": 7580, "view": 0} -2023-12-16T14:15:23.205Z INFO sending Commit {"height": 7580, "view": 0} -2023-12-16T14:15:23.205Z INFO approving block {"height": 7580, "hash": "35983f09a7b221adc0c0c80866d6e4fe0fe1c96866005dac0df017f91917bad1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f8f043dfb099315328adb50e28f4c2d93698f858ccd0f202b7e08709b8112f1"} -2023-12-16T14:15:23.214Z INFO initializing dbft {"height": 7581, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:23.215Z debug frostfs-node/morph.go:229 new block {"index": 7580} -2023-12-16T14:15:23.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7580, "blockHeight": 7580, "took": "32.905488ms"} -2023-12-16T14:15:24.207Z INFO sending PrepareRequest {"height": 7581, "view": 0} -2023-12-16T14:15:24.207Z INFO sending Commit {"height": 7581, "view": 0} -2023-12-16T14:15:24.208Z INFO approving block {"height": 7581, "hash": "e49c7db02cd2965f26703b9a58becaafebe0123f5f3604991a68a363f1ab9a87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35983f09a7b221adc0c0c80866d6e4fe0fe1c96866005dac0df017f91917bad1"} -2023-12-16T14:15:24.213Z INFO initializing dbft {"height": 7582, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:24.216Z debug frostfs-node/morph.go:229 new block {"index": 7581} -2023-12-16T14:15:24.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7581, "blockHeight": 7581, "took": "74.291364ms"} -2023-12-16T14:15:25.209Z INFO sending PrepareRequest {"height": 7582, "view": 0} -2023-12-16T14:15:25.209Z INFO sending Commit {"height": 7582, "view": 0} -2023-12-16T14:15:25.210Z INFO approving block {"height": 7582, "hash": "ed608377f961af9288b40db97299f6a71a0c9d4271dead874d4f583584d8d8d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e49c7db02cd2965f26703b9a58becaafebe0123f5f3604991a68a363f1ab9a87"} -2023-12-16T14:15:25.211Z INFO initializing dbft {"height": 7583, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:25.212Z debug frostfs-node/morph.go:229 new block {"index": 7582} -2023-12-16T14:15:25.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7582, "blockHeight": 7582, "took": "31.396893ms"} -2023-12-16T14:15:26.211Z INFO sending PrepareRequest {"height": 7583, "view": 0} -2023-12-16T14:15:26.211Z INFO sending Commit {"height": 7583, "view": 0} -2023-12-16T14:15:26.212Z INFO approving block {"height": 7583, "hash": "b7e071a797047406a53475184c4e5686dd5c7aa11857ec790e5088bb7e7a9e6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed608377f961af9288b40db97299f6a71a0c9d4271dead874d4f583584d8d8d5"} -2023-12-16T14:15:26.214Z INFO initializing dbft {"height": 7584, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:26.214Z debug frostfs-node/morph.go:229 new block {"index": 7583} -2023-12-16T14:15:26.688Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7583, "blockHeight": 7583, "took": "17.997277ms"} -2023-12-16T14:15:27.213Z INFO sending PrepareRequest {"height": 7584, "view": 0} -2023-12-16T14:15:27.213Z INFO sending Commit {"height": 7584, "view": 0} -2023-12-16T14:15:27.214Z INFO approving block {"height": 7584, "hash": "2c026aa76bc55d0945d7ce9783631586a1bff0717bbcc01382a9ea9c2e573a35", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7e071a797047406a53475184c4e5686dd5c7aa11857ec790e5088bb7e7a9e6f"} -2023-12-16T14:15:27.215Z INFO initializing dbft {"height": 7585, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:27.216Z debug frostfs-node/morph.go:229 new block {"index": 7584} -2023-12-16T14:15:27.704Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7584, "blockHeight": 7584, "took": "32.672944ms"} -2023-12-16T14:15:28.215Z INFO sending PrepareRequest {"height": 7585, "view": 0} -2023-12-16T14:15:28.215Z INFO sending Commit {"height": 7585, "view": 0} -2023-12-16T14:15:28.216Z INFO approving block {"height": 7585, "hash": "7600e6fcac4d658a0467d5aec1950c84ffcd9a0d46acee83b7c9b8a59e0a7eb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c026aa76bc55d0945d7ce9783631586a1bff0717bbcc01382a9ea9c2e573a35"} -2023-12-16T14:15:28.218Z INFO initializing dbft {"height": 7586, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:28.219Z debug frostfs-node/morph.go:229 new block {"index": 7585} -2023-12-16T14:15:28.690Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7585, "blockHeight": 7585, "took": "18.101915ms"} -2023-12-16T14:15:29.217Z INFO sending PrepareRequest {"height": 7586, "view": 0} -2023-12-16T14:15:29.217Z INFO sending Commit {"height": 7586, "view": 0} -2023-12-16T14:15:29.218Z INFO approving block {"height": 7586, "hash": "ff5ccef53258f7e46a9b351d2afff4184d3579ee09eeb101bed35d6e6a6dba3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7600e6fcac4d658a0467d5aec1950c84ffcd9a0d46acee83b7c9b8a59e0a7eb2"} -2023-12-16T14:15:29.219Z INFO initializing dbft {"height": 7587, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:29.220Z debug frostfs-node/morph.go:229 new block {"index": 7586} -2023-12-16T14:15:29.698Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7586, "blockHeight": 7586, "took": "25.593335ms"} -2023-12-16T14:15:30.220Z INFO sending PrepareRequest {"height": 7587, "view": 0} -2023-12-16T14:15:30.220Z INFO sending Commit {"height": 7587, "view": 0} -2023-12-16T14:15:30.221Z INFO approving block {"height": 7587, "hash": "e518e666652b41c00a9a0f15a8f0c40249900774f1ad4423702d714824f10389", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff5ccef53258f7e46a9b351d2afff4184d3579ee09eeb101bed35d6e6a6dba3f"} -2023-12-16T14:15:30.222Z INFO initializing dbft {"height": 7588, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:30.223Z debug frostfs-node/morph.go:229 new block {"index": 7587} -2023-12-16T14:15:30.693Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7587, "blockHeight": 7587, "took": "20.052731ms"} -2023-12-16T14:15:31.222Z INFO sending PrepareRequest {"height": 7588, "view": 0} -2023-12-16T14:15:31.222Z INFO sending Commit {"height": 7588, "view": 0} -2023-12-16T14:15:31.223Z INFO approving block {"height": 7588, "hash": "3599060ee8ce36cdd817abfd81e584646d6bf089843f7c30a481c5bc50142a6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e518e666652b41c00a9a0f15a8f0c40249900774f1ad4423702d714824f10389"} -2023-12-16T14:15:31.226Z INFO initializing dbft {"height": 7589, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:31.227Z debug frostfs-node/morph.go:229 new block {"index": 7588} -2023-12-16T14:15:31.710Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7588, "blockHeight": 7588, "took": "35.968905ms"} -2023-12-16T14:15:32.224Z INFO sending PrepareRequest {"height": 7589, "view": 0} -2023-12-16T14:15:32.224Z INFO sending Commit {"height": 7589, "view": 0} -2023-12-16T14:15:32.224Z INFO approving block {"height": 7589, "hash": "54a844254dad2b6a4e6e7db021db58ffdfec863184453d6f3e584fa60c8c5a57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3599060ee8ce36cdd817abfd81e584646d6bf089843f7c30a481c5bc50142a6f"} -2023-12-16T14:15:32.226Z INFO initializing dbft {"height": 7590, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:32.227Z debug frostfs-node/morph.go:229 new block {"index": 7589} -2023-12-16T14:15:32.691Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7589, "blockHeight": 7589, "took": "15.120969ms"} -2023-12-16T14:15:33.226Z INFO sending PrepareRequest {"height": 7590, "view": 0} -2023-12-16T14:15:33.227Z INFO sending Commit {"height": 7590, "view": 0} -2023-12-16T14:15:33.227Z INFO approving block {"height": 7590, "hash": "a838174c6e94f4c99e5f60851aa28542d0e210003314b61afc2fb253c79173d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54a844254dad2b6a4e6e7db021db58ffdfec863184453d6f3e584fa60c8c5a57"} -2023-12-16T14:15:33.229Z INFO initializing dbft {"height": 7591, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:33.230Z debug frostfs-node/morph.go:229 new block {"index": 7590} -2023-12-16T14:15:33.241Z info settlement/calls.go:61 start basic income collection {"epoch": 32} -2023-12-16T14:15:33.241Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 32, "iteration": 1, "error": "no data for 0 iteration in 32 epoch for consumers's trusts"} -2023-12-16T14:15:33.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7590, "blockHeight": 7590, "took": "9.97043ms"} -2023-12-16T14:15:34.229Z INFO sending PrepareRequest {"height": 7591, "view": 0} -2023-12-16T14:15:34.229Z INFO sending Commit {"height": 7591, "view": 0} -2023-12-16T14:15:34.230Z INFO approving block {"height": 7591, "hash": "2c7c75c1d916f23bce38f8ced1f9b6448399f6ba2f77f8eeac764feaff668f7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a838174c6e94f4c99e5f60851aa28542d0e210003314b61afc2fb253c79173d1"} -2023-12-16T14:15:34.232Z INFO initializing dbft {"height": 7592, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:34.233Z debug frostfs-node/morph.go:229 new block {"index": 7591} -2023-12-16T14:15:34.692Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7591, "blockHeight": 7591, "took": "14.195783ms"} -2023-12-16T14:15:35.231Z INFO sending PrepareRequest {"height": 7592, "view": 0} -2023-12-16T14:15:35.231Z INFO sending Commit {"height": 7592, "view": 0} -2023-12-16T14:15:35.231Z INFO approving block {"height": 7592, "hash": "88e6f866878b1186f2022f11f3a9c6216d763982234cad794dd7eabf070943be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c7c75c1d916f23bce38f8ced1f9b6448399f6ba2f77f8eeac764feaff668f7d"} -2023-12-16T14:15:35.233Z INFO initializing dbft {"height": 7593, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:35.234Z debug frostfs-node/morph.go:229 new block {"index": 7592} -2023-12-16T14:15:35.692Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7592, "blockHeight": 7592, "took": "13.995363ms"} -2023-12-16T14:15:36.232Z INFO sending PrepareRequest {"height": 7593, "view": 0} -2023-12-16T14:15:36.233Z INFO sending Commit {"height": 7593, "view": 0} -2023-12-16T14:15:36.233Z INFO approving block {"height": 7593, "hash": "b71ef345d2e6852acf853ca0c8333342ed2e1e5ba68f85802b030afb3791ea02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88e6f866878b1186f2022f11f3a9c6216d763982234cad794dd7eabf070943be"} -2023-12-16T14:15:36.235Z INFO initializing dbft {"height": 7594, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:36.236Z debug frostfs-node/morph.go:229 new block {"index": 7593} -2023-12-16T14:15:36.688Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7593, "blockHeight": 7593, "took": "9.282531ms"} -2023-12-16T14:15:37.234Z INFO sending PrepareRequest {"height": 7594, "view": 0} -2023-12-16T14:15:37.234Z INFO sending Commit {"height": 7594, "view": 0} -2023-12-16T14:15:37.235Z INFO approving block {"height": 7594, "hash": "b6cfa0ced4ead3b4af3f1b15976dd090bdf762aa2044d8bb8322c65be5ceceec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b71ef345d2e6852acf853ca0c8333342ed2e1e5ba68f85802b030afb3791ea02"} -2023-12-16T14:15:37.237Z INFO initializing dbft {"height": 7595, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:37.238Z debug frostfs-node/morph.go:229 new block {"index": 7594} -2023-12-16T14:15:37.704Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7594, "blockHeight": 7594, "took": "24.613858ms"} -2023-12-16T14:15:38.236Z INFO sending PrepareRequest {"height": 7595, "view": 0} -2023-12-16T14:15:38.237Z INFO sending Commit {"height": 7595, "view": 0} -2023-12-16T14:15:38.238Z INFO approving block {"height": 7595, "hash": "434a804b5e3a1f55a31244f9cfbe6aa6d17e64e8682f1a62092cd202e5b7d743", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6cfa0ced4ead3b4af3f1b15976dd090bdf762aa2044d8bb8322c65be5ceceec"} -2023-12-16T14:15:38.240Z INFO initializing dbft {"height": 7596, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:38.241Z debug frostfs-node/morph.go:229 new block {"index": 7595} -2023-12-16T14:15:38.733Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7595, "blockHeight": 7595, "took": "52.680324ms"} -2023-12-16T14:15:39.241Z INFO sending PrepareRequest {"height": 7596, "view": 0} -2023-12-16T14:15:39.241Z INFO sending Commit {"height": 7596, "view": 0} -2023-12-16T14:15:39.241Z INFO approving block {"height": 7596, "hash": "4ce369a181e325141814760e0ea2ec7c9d79122efb6931e12945deeed2f94c34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "434a804b5e3a1f55a31244f9cfbe6aa6d17e64e8682f1a62092cd202e5b7d743"} -2023-12-16T14:15:39.243Z INFO initializing dbft {"height": 7597, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:39.244Z debug frostfs-node/morph.go:229 new block {"index": 7596} -2023-12-16T14:15:39.695Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7596, "blockHeight": 7596, "took": "14.290367ms"} -2023-12-16T14:15:40.242Z INFO sending PrepareRequest {"height": 7597, "view": 0} -2023-12-16T14:15:40.242Z INFO sending Commit {"height": 7597, "view": 0} -2023-12-16T14:15:40.243Z INFO approving block {"height": 7597, "hash": "5e292c1a8c0165fa8cc6228f8a1d62a9a9994ea9a180f5841e955eb977a142cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ce369a181e325141814760e0ea2ec7c9d79122efb6931e12945deeed2f94c34"} -2023-12-16T14:15:40.244Z INFO initializing dbft {"height": 7598, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:40.244Z debug frostfs-node/morph.go:229 new block {"index": 7597} -2023-12-16T14:15:40.710Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7597, "blockHeight": 7597, "took": "27.961179ms"} -2023-12-16T14:15:41.243Z INFO sending PrepareRequest {"height": 7598, "view": 0} -2023-12-16T14:15:41.244Z INFO sending Commit {"height": 7598, "view": 0} -2023-12-16T14:15:41.244Z INFO approving block {"height": 7598, "hash": "bac3a1524a7d1805130efc9bd339c05432fd839050678c038f74b1459b86ea88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e292c1a8c0165fa8cc6228f8a1d62a9a9994ea9a180f5841e955eb977a142cd"} -2023-12-16T14:15:41.246Z INFO initializing dbft {"height": 7599, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:41.247Z debug frostfs-node/morph.go:229 new block {"index": 7598} -2023-12-16T14:15:41.703Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7598, "blockHeight": 7598, "took": "20.016129ms"} -2023-12-16T14:15:42.247Z INFO sending PrepareRequest {"height": 7599, "view": 0} -2023-12-16T14:15:42.247Z INFO sending Commit {"height": 7599, "view": 0} -2023-12-16T14:15:42.248Z INFO approving block {"height": 7599, "hash": "eba196ab11b59c545e5876eef7ecd7c30e139c319c5ceb2b930ee8d15bbb6be0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bac3a1524a7d1805130efc9bd339c05432fd839050678c038f74b1459b86ea88"} -2023-12-16T14:15:42.250Z INFO initializing dbft {"height": 7600, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:42.252Z debug frostfs-node/morph.go:229 new block {"index": 7599} -2023-12-16T14:15:42.713Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7599, "blockHeight": 7599, "took": "29.882494ms"} -2023-12-16T14:15:43.251Z INFO sending PrepareRequest {"height": 7600, "view": 0} -2023-12-16T14:15:43.252Z INFO sending Commit {"height": 7600, "view": 0} -2023-12-16T14:15:43.252Z INFO approving block {"height": 7600, "hash": "0d15aae036bf235bc9344e3c570c7a8d57b10e40cfc826fb328e3ef944b9a5f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eba196ab11b59c545e5876eef7ecd7c30e139c319c5ceb2b930ee8d15bbb6be0"} -2023-12-16T14:15:43.254Z INFO initializing dbft {"height": 7601, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:43.256Z debug frostfs-node/morph.go:229 new block {"index": 7600} -2023-12-16T14:15:43.263Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:15:43.266Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:15:43.267Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:15:43.706Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7600, "blockHeight": 7600, "took": "21.485378ms"} -2023-12-16T14:15:44.253Z INFO sending PrepareRequest {"height": 7601, "view": 0} -2023-12-16T14:15:44.253Z INFO sending Commit {"height": 7601, "view": 0} -2023-12-16T14:15:44.254Z INFO approving block {"height": 7601, "hash": "5e4f4c6bfffbb9f1ee7895cb2e711e7fe883c8acadaf0d26b5da0da04dbe67cc", "tx_count": 2, "merkle": "03184d68ca2ea76267ef3192803e11c39dfdea4c50f05ce3a4d3bbf0b2030c31", "prev": "0d15aae036bf235bc9344e3c570c7a8d57b10e40cfc826fb328e3ef944b9a5f9"} -2023-12-16T14:15:44.255Z INFO runtime log {"tx": "8ffb18e78cc128f73ba3b12c67cf00c19e6dfca82a222c933016a1cac39a3e29", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:15:44.255Z INFO runtime log {"tx": "8ffb18e78cc128f73ba3b12c67cf00c19e6dfca82a222c933016a1cac39a3e29", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:15:44.257Z INFO initializing dbft {"height": 7602, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:44.260Z debug frostfs-node/morph.go:229 new block {"index": 7601} -2023-12-16T14:15:44.703Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7601, "blockHeight": 7601, "took": "17.294615ms"} -2023-12-16T14:15:45.255Z INFO sending PrepareRequest {"height": 7602, "view": 0} -2023-12-16T14:15:45.256Z INFO sending Commit {"height": 7602, "view": 0} -2023-12-16T14:15:45.256Z INFO approving block {"height": 7602, "hash": "67844d903ee2bc4169c09f2207c52a404a08c3b757851798bdd64b4fb1a8f910", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e4f4c6bfffbb9f1ee7895cb2e711e7fe883c8acadaf0d26b5da0da04dbe67cc"} -2023-12-16T14:15:45.258Z INFO initializing dbft {"height": 7603, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:45.261Z debug frostfs-node/morph.go:229 new block {"index": 7602} -2023-12-16T14:15:45.703Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7602, "blockHeight": 7602, "took": "16.996876ms"} -2023-12-16T14:15:46.258Z INFO sending PrepareRequest {"height": 7603, "view": 0} -2023-12-16T14:15:46.259Z INFO sending Commit {"height": 7603, "view": 0} -2023-12-16T14:15:46.259Z INFO approving block {"height": 7603, "hash": "5622ca195207b020d45152749ff8067cd48906f42b5ded0f7f46320810e24e0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67844d903ee2bc4169c09f2207c52a404a08c3b757851798bdd64b4fb1a8f910"} -2023-12-16T14:15:46.261Z INFO initializing dbft {"height": 7604, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:46.262Z debug frostfs-node/morph.go:229 new block {"index": 7603} -2023-12-16T14:15:46.699Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7603, "blockHeight": 7603, "took": "11.904812ms"} -2023-12-16T14:15:47.260Z INFO sending PrepareRequest {"height": 7604, "view": 0} -2023-12-16T14:15:47.260Z INFO sending Commit {"height": 7604, "view": 0} -2023-12-16T14:15:47.261Z INFO approving block {"height": 7604, "hash": "f8d373fab6a6b4bb3dc0f982bea56c7fbb6ba4b270cdae400598d458f4785d2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5622ca195207b020d45152749ff8067cd48906f42b5ded0f7f46320810e24e0b"} -2023-12-16T14:15:47.262Z INFO initializing dbft {"height": 7605, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:47.263Z debug frostfs-node/morph.go:229 new block {"index": 7604} -2023-12-16T14:15:47.705Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7604, "blockHeight": 7604, "took": "16.620696ms"} -2023-12-16T14:15:48.262Z INFO sending PrepareRequest {"height": 7605, "view": 0} -2023-12-16T14:15:48.263Z INFO sending Commit {"height": 7605, "view": 0} -2023-12-16T14:15:48.263Z INFO approving block {"height": 7605, "hash": "3ad0db73061a20cebe10750e7477713768a9b11d3b55965402d2d177dfec4137", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8d373fab6a6b4bb3dc0f982bea56c7fbb6ba4b270cdae400598d458f4785d2c"} -2023-12-16T14:15:48.265Z INFO initializing dbft {"height": 7606, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:48.267Z debug frostfs-node/morph.go:229 new block {"index": 7605} -2023-12-16T14:15:48.718Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7605, "blockHeight": 7605, "took": "29.138142ms"} -2023-12-16T14:15:49.265Z INFO sending PrepareRequest {"height": 7606, "view": 0} -2023-12-16T14:15:49.266Z INFO sending Commit {"height": 7606, "view": 0} -2023-12-16T14:15:49.267Z INFO approving block {"height": 7606, "hash": "0f074f524d2f8690cea28ebecd7d7ac440f09c51c6b5fc40c2718f6e5dadbe33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ad0db73061a20cebe10750e7477713768a9b11d3b55965402d2d177dfec4137"} -2023-12-16T14:15:49.269Z INFO initializing dbft {"height": 7607, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:49.271Z debug frostfs-node/morph.go:229 new block {"index": 7606} -2023-12-16T14:15:49.711Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7606, "blockHeight": 7606, "took": "21.528807ms"} -2023-12-16T14:15:50.268Z INFO sending PrepareRequest {"height": 7607, "view": 0} -2023-12-16T14:15:50.269Z INFO sending Commit {"height": 7607, "view": 0} -2023-12-16T14:15:50.269Z INFO approving block {"height": 7607, "hash": "9f6ad9a7a05bdacf4ab4387c6f03f7e0034869d3b23f03f3c6666e6fda8e12e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f074f524d2f8690cea28ebecd7d7ac440f09c51c6b5fc40c2718f6e5dadbe33"} -2023-12-16T14:15:50.271Z INFO initializing dbft {"height": 7608, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:50.272Z debug frostfs-node/morph.go:229 new block {"index": 7607} -2023-12-16T14:15:50.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7607, "blockHeight": 7607, "took": "10.30049ms"} -2023-12-16T14:15:51.270Z INFO sending PrepareRequest {"height": 7608, "view": 0} -2023-12-16T14:15:51.271Z INFO sending Commit {"height": 7608, "view": 0} -2023-12-16T14:15:51.271Z INFO approving block {"height": 7608, "hash": "e9a037da975aef9282a38e461d2f62a397df6cee0b4f853b1dbbc1a5262c90d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f6ad9a7a05bdacf4ab4387c6f03f7e0034869d3b23f03f3c6666e6fda8e12e4"} -2023-12-16T14:15:51.278Z INFO initializing dbft {"height": 7609, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:51.281Z debug frostfs-node/morph.go:229 new block {"index": 7608} -2023-12-16T14:15:51.702Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7608, "blockHeight": 7608, "took": "11.283125ms"} -2023-12-16T14:15:52.273Z INFO sending PrepareRequest {"height": 7609, "view": 0} -2023-12-16T14:15:52.273Z INFO sending Commit {"height": 7609, "view": 0} -2023-12-16T14:15:52.274Z INFO approving block {"height": 7609, "hash": "b46e858244a38ca703436be1da8fb69dc1c4540b37b7447a8ada9221479ffb60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9a037da975aef9282a38e461d2f62a397df6cee0b4f853b1dbbc1a5262c90d9"} -2023-12-16T14:15:52.276Z INFO initializing dbft {"height": 7610, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:52.276Z debug frostfs-node/morph.go:229 new block {"index": 7609} -2023-12-16T14:15:52.718Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7609, "blockHeight": 7609, "took": "25.992042ms"} -2023-12-16T14:15:53.275Z INFO sending PrepareRequest {"height": 7610, "view": 0} -2023-12-16T14:15:53.275Z INFO sending Commit {"height": 7610, "view": 0} -2023-12-16T14:15:53.275Z INFO approving block {"height": 7610, "hash": "29547b261343d30dc70761f2649015928290490324422c450eb428e3c112c8df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b46e858244a38ca703436be1da8fb69dc1c4540b37b7447a8ada9221479ffb60"} -2023-12-16T14:15:53.277Z INFO initializing dbft {"height": 7611, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:53.278Z debug frostfs-node/morph.go:229 new block {"index": 7610} -2023-12-16T14:15:53.704Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7610, "blockHeight": 7610, "took": "11.957997ms"} -2023-12-16T14:15:54.276Z INFO sending PrepareRequest {"height": 7611, "view": 0} -2023-12-16T14:15:54.277Z INFO sending Commit {"height": 7611, "view": 0} -2023-12-16T14:15:54.277Z INFO approving block {"height": 7611, "hash": "8b2bd9242a3e89d479ca9aa00984248eb107fc2a1e567d6a38780d49edcfab38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29547b261343d30dc70761f2649015928290490324422c450eb428e3c112c8df"} -2023-12-16T14:15:54.278Z INFO initializing dbft {"height": 7612, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:54.279Z debug frostfs-node/morph.go:229 new block {"index": 7611} -2023-12-16T14:15:54.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7611, "blockHeight": 7611, "took": "15.69868ms"} -2023-12-16T14:15:55.278Z INFO sending PrepareRequest {"height": 7612, "view": 0} -2023-12-16T14:15:55.278Z INFO sending Commit {"height": 7612, "view": 0} -2023-12-16T14:15:55.279Z INFO approving block {"height": 7612, "hash": "81fb8247bda8ade3dd6aa73d32d42ccc0293f983dac0264e849fc888754b5903", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b2bd9242a3e89d479ca9aa00984248eb107fc2a1e567d6a38780d49edcfab38"} -2023-12-16T14:15:55.280Z INFO initializing dbft {"height": 7613, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:55.281Z debug frostfs-node/morph.go:229 new block {"index": 7612} -2023-12-16T14:15:55.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7612, "blockHeight": 7612, "took": "13.80264ms"} -2023-12-16T14:15:56.280Z INFO sending PrepareRequest {"height": 7613, "view": 0} -2023-12-16T14:15:56.281Z INFO sending Commit {"height": 7613, "view": 0} -2023-12-16T14:15:56.281Z INFO approving block {"height": 7613, "hash": "c31390780c5146b0fbd3d6670551ca592e14b5643ebb354a6d474ac597d9a285", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81fb8247bda8ade3dd6aa73d32d42ccc0293f983dac0264e849fc888754b5903"} -2023-12-16T14:15:56.283Z INFO initializing dbft {"height": 7614, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:56.284Z debug frostfs-node/morph.go:229 new block {"index": 7613} -2023-12-16T14:15:56.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7613, "blockHeight": 7613, "took": "12.542556ms"} -2023-12-16T14:15:57.284Z INFO sending PrepareRequest {"height": 7614, "view": 0} -2023-12-16T14:15:57.284Z INFO sending Commit {"height": 7614, "view": 0} -2023-12-16T14:15:57.284Z INFO approving block {"height": 7614, "hash": "b8838fce845e9a7d702040bb6e9c72cfcf3f9927ac58c098cf418f573d8043f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c31390780c5146b0fbd3d6670551ca592e14b5643ebb354a6d474ac597d9a285"} -2023-12-16T14:15:57.286Z INFO initializing dbft {"height": 7615, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:57.288Z debug frostfs-node/morph.go:229 new block {"index": 7614} -2023-12-16T14:15:57.733Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7614, "blockHeight": 7614, "took": "35.039562ms"} -2023-12-16T14:15:58.287Z INFO sending PrepareRequest {"height": 7615, "view": 0} -2023-12-16T14:15:58.288Z INFO sending Commit {"height": 7615, "view": 0} -2023-12-16T14:15:58.289Z INFO approving block {"height": 7615, "hash": "a6471b0c823386aeedcc6f824273213bd53321eeda174d942343796f269fb758", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8838fce845e9a7d702040bb6e9c72cfcf3f9927ac58c098cf418f573d8043f2"} -2023-12-16T14:15:58.291Z INFO initializing dbft {"height": 7616, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:58.293Z debug frostfs-node/morph.go:229 new block {"index": 7615} -2023-12-16T14:15:58.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7615, "blockHeight": 7615, "took": "10.536182ms"} -2023-12-16T14:15:59.290Z INFO sending PrepareRequest {"height": 7616, "view": 0} -2023-12-16T14:15:59.290Z INFO sending Commit {"height": 7616, "view": 0} -2023-12-16T14:15:59.291Z INFO approving block {"height": 7616, "hash": "4d6f35f96f38f9fafd44c12e828976772d89c44c20dab54dfc045da06cebc441", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6471b0c823386aeedcc6f824273213bd53321eeda174d942343796f269fb758"} -2023-12-16T14:15:59.293Z INFO initializing dbft {"height": 7617, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:15:59.300Z debug frostfs-node/morph.go:229 new block {"index": 7616} -2023-12-16T14:15:59.725Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7616, "blockHeight": 7616, "took": "25.566081ms"} -2023-12-16T14:16:00.292Z INFO sending PrepareRequest {"height": 7617, "view": 0} -2023-12-16T14:16:00.292Z INFO sending Commit {"height": 7617, "view": 0} -2023-12-16T14:16:00.292Z INFO approving block {"height": 7617, "hash": "9347a563b1632cbb55973f7e3866b29c5f7215932667ea66998a9f7c041f85b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d6f35f96f38f9fafd44c12e828976772d89c44c20dab54dfc045da06cebc441"} -2023-12-16T14:16:00.293Z INFO initializing dbft {"height": 7618, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:00.294Z debug frostfs-node/morph.go:229 new block {"index": 7617} -2023-12-16T14:16:00.713Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7617, "blockHeight": 7617, "took": "13.536723ms"} -2023-12-16T14:16:01.294Z INFO sending PrepareRequest {"height": 7618, "view": 0} -2023-12-16T14:16:01.294Z INFO sending Commit {"height": 7618, "view": 0} -2023-12-16T14:16:01.294Z INFO approving block {"height": 7618, "hash": "d270e3fd1dcdb01fa2e0df87d8f12fcf3963c386e227fee14727bcdf71ec003b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9347a563b1632cbb55973f7e3866b29c5f7215932667ea66998a9f7c041f85b5"} -2023-12-16T14:16:01.297Z INFO initializing dbft {"height": 7619, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:01.298Z debug frostfs-node/morph.go:229 new block {"index": 7618} -2023-12-16T14:16:01.712Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7618, "blockHeight": 7618, "took": "11.217786ms"} -2023-12-16T14:16:02.296Z INFO sending PrepareRequest {"height": 7619, "view": 0} -2023-12-16T14:16:02.297Z INFO sending Commit {"height": 7619, "view": 0} -2023-12-16T14:16:02.297Z INFO approving block {"height": 7619, "hash": "04176ac5172edc317d2a78a2869ef21041a4f531d40f506666f619631d021627", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d270e3fd1dcdb01fa2e0df87d8f12fcf3963c386e227fee14727bcdf71ec003b"} -2023-12-16T14:16:02.299Z INFO initializing dbft {"height": 7620, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:02.300Z debug frostfs-node/morph.go:229 new block {"index": 7619} -2023-12-16T14:16:02.716Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7619, "blockHeight": 7619, "took": "13.758436ms"} -2023-12-16T14:16:03.298Z INFO sending PrepareRequest {"height": 7620, "view": 0} -2023-12-16T14:16:03.298Z INFO sending Commit {"height": 7620, "view": 0} -2023-12-16T14:16:03.299Z INFO approving block {"height": 7620, "hash": "b0d3d2ffb2adbb568f019fa5712739f59797ebce8a3510564eccab2ac59077b3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04176ac5172edc317d2a78a2869ef21041a4f531d40f506666f619631d021627"} -2023-12-16T14:16:03.300Z INFO initializing dbft {"height": 7621, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:03.301Z debug frostfs-node/morph.go:229 new block {"index": 7620} -2023-12-16T14:16:03.713Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7620, "blockHeight": 7620, "took": "10.164188ms"} -2023-12-16T14:16:04.300Z INFO sending PrepareRequest {"height": 7621, "view": 0} -2023-12-16T14:16:04.301Z INFO sending Commit {"height": 7621, "view": 0} -2023-12-16T14:16:04.301Z INFO approving block {"height": 7621, "hash": "b9c5765688b8cdd4e19b5ef46192cabe8b8f74a9dfafab433c259be4e2a01025", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0d3d2ffb2adbb568f019fa5712739f59797ebce8a3510564eccab2ac59077b3"} -2023-12-16T14:16:04.304Z INFO initializing dbft {"height": 7622, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:04.305Z debug frostfs-node/morph.go:229 new block {"index": 7621} -2023-12-16T14:16:04.715Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7621, "blockHeight": 7621, "took": "12.433639ms"} -2023-12-16T14:16:05.302Z INFO sending PrepareRequest {"height": 7622, "view": 0} -2023-12-16T14:16:05.302Z INFO sending Commit {"height": 7622, "view": 0} -2023-12-16T14:16:05.303Z INFO approving block {"height": 7622, "hash": "ebecd3f10ea78de1974d359e24f6f554e1a6f9a08d0b0a48b430e60b78f07811", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9c5765688b8cdd4e19b5ef46192cabe8b8f74a9dfafab433c259be4e2a01025"} -2023-12-16T14:16:05.304Z INFO initializing dbft {"height": 7623, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:05.304Z debug frostfs-node/morph.go:229 new block {"index": 7622} -2023-12-16T14:16:05.721Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7622, "blockHeight": 7622, "took": "16.980823ms"} -2023-12-16T14:16:06.304Z INFO sending PrepareRequest {"height": 7623, "view": 0} -2023-12-16T14:16:06.304Z INFO sending Commit {"height": 7623, "view": 0} -2023-12-16T14:16:06.305Z INFO approving block {"height": 7623, "hash": "31a0593d0eb236157c416e58cdb1f9c8099fcb9590d7adf9c10d43649143294d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebecd3f10ea78de1974d359e24f6f554e1a6f9a08d0b0a48b430e60b78f07811"} -2023-12-16T14:16:06.306Z INFO initializing dbft {"height": 7624, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:06.307Z debug frostfs-node/morph.go:229 new block {"index": 7623} -2023-12-16T14:16:06.717Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7623, "blockHeight": 7623, "took": "12.841433ms"} -2023-12-16T14:16:07.305Z INFO sending PrepareRequest {"height": 7624, "view": 0} -2023-12-16T14:16:07.306Z INFO sending Commit {"height": 7624, "view": 0} -2023-12-16T14:16:07.306Z INFO approving block {"height": 7624, "hash": "1c5d19c750068531bfd04a0257c456859afdc2327e763babf24f9a9c3230673f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31a0593d0eb236157c416e58cdb1f9c8099fcb9590d7adf9c10d43649143294d"} -2023-12-16T14:16:07.307Z INFO initializing dbft {"height": 7625, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:07.308Z debug frostfs-node/morph.go:229 new block {"index": 7624} -2023-12-16T14:16:07.717Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7624, "blockHeight": 7624, "took": "12.337121ms"} -2023-12-16T14:16:08.307Z INFO sending PrepareRequest {"height": 7625, "view": 0} -2023-12-16T14:16:08.307Z INFO sending Commit {"height": 7625, "view": 0} -2023-12-16T14:16:08.308Z INFO approving block {"height": 7625, "hash": "3dc12d0e35c333a3fed767e6ad0eb3c7c73cf2b46df9308237914030e2477d7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c5d19c750068531bfd04a0257c456859afdc2327e763babf24f9a9c3230673f"} -2023-12-16T14:16:08.309Z INFO initializing dbft {"height": 7626, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:08.310Z debug frostfs-node/morph.go:229 new block {"index": 7625} -2023-12-16T14:16:08.716Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7625, "blockHeight": 7625, "took": "10.30908ms"} -2023-12-16T14:16:09.309Z INFO sending PrepareRequest {"height": 7626, "view": 0} -2023-12-16T14:16:09.309Z INFO sending Commit {"height": 7626, "view": 0} -2023-12-16T14:16:09.309Z INFO approving block {"height": 7626, "hash": "901a2ddfbb5eef9a1f658231c6f5af3d6fa6c67f79c5ecf300167bd4b905fb81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3dc12d0e35c333a3fed767e6ad0eb3c7c73cf2b46df9308237914030e2477d7c"} -2023-12-16T14:16:09.310Z INFO initializing dbft {"height": 7627, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:09.311Z debug frostfs-node/morph.go:229 new block {"index": 7626} -2023-12-16T14:16:09.717Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7626, "blockHeight": 7626, "took": "11.488216ms"} -2023-12-16T14:16:10.310Z INFO sending PrepareRequest {"height": 7627, "view": 0} -2023-12-16T14:16:10.311Z INFO sending Commit {"height": 7627, "view": 0} -2023-12-16T14:16:10.311Z INFO approving block {"height": 7627, "hash": "81f1621c52ca1ee0b613adb9c6693b078ac61004ffd065b0156881f28a95e94d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "901a2ddfbb5eef9a1f658231c6f5af3d6fa6c67f79c5ecf300167bd4b905fb81"} -2023-12-16T14:16:10.312Z INFO initializing dbft {"height": 7628, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:10.313Z debug frostfs-node/morph.go:229 new block {"index": 7627} -2023-12-16T14:16:10.714Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7627, "blockHeight": 7627, "took": "7.916558ms"} -2023-12-16T14:16:11.312Z INFO sending PrepareRequest {"height": 7628, "view": 0} -2023-12-16T14:16:11.313Z INFO sending Commit {"height": 7628, "view": 0} -2023-12-16T14:16:11.313Z INFO approving block {"height": 7628, "hash": "39e083ee68fb59c6a7ed104b0981437266a4b56e260cc5c221737269d1620fc6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81f1621c52ca1ee0b613adb9c6693b078ac61004ffd065b0156881f28a95e94d"} -2023-12-16T14:16:11.314Z INFO initializing dbft {"height": 7629, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:11.315Z debug frostfs-node/morph.go:229 new block {"index": 7628} -2023-12-16T14:16:11.718Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7628, "blockHeight": 7628, "took": "11.386523ms"} -2023-12-16T14:16:12.314Z INFO sending PrepareRequest {"height": 7629, "view": 0} -2023-12-16T14:16:12.315Z INFO sending Commit {"height": 7629, "view": 0} -2023-12-16T14:16:12.315Z INFO approving block {"height": 7629, "hash": "88f0a96c94ca53513c1f811c978590e80d402cd62ba42164a1ed5e26a8e4caf5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39e083ee68fb59c6a7ed104b0981437266a4b56e260cc5c221737269d1620fc6"} -2023-12-16T14:16:12.316Z INFO initializing dbft {"height": 7630, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:12.317Z debug frostfs-node/morph.go:229 new block {"index": 7629} -2023-12-16T14:16:12.717Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7629, "blockHeight": 7629, "took": "8.893732ms"} -2023-12-16T14:16:13.316Z INFO sending PrepareRequest {"height": 7630, "view": 0} -2023-12-16T14:16:13.317Z INFO sending Commit {"height": 7630, "view": 0} -2023-12-16T14:16:13.317Z INFO approving block {"height": 7630, "hash": "46d6ad4609915d7e73ae9a436fe9fbdddf089f45c968b104c6bb167c4cca53d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88f0a96c94ca53513c1f811c978590e80d402cd62ba42164a1ed5e26a8e4caf5"} -2023-12-16T14:16:13.318Z INFO initializing dbft {"height": 7631, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:13.320Z debug frostfs-node/morph.go:229 new block {"index": 7630} -2023-12-16T14:16:13.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7630, "blockHeight": 7630, "took": "13.449592ms"} -2023-12-16T14:16:14.318Z INFO sending PrepareRequest {"height": 7631, "view": 0} -2023-12-16T14:16:14.318Z INFO sending Commit {"height": 7631, "view": 0} -2023-12-16T14:16:14.318Z INFO approving block {"height": 7631, "hash": "50c1b0a103998291d752adeacc239d0c5539b3d0fc9527d2c68afce4806d3c67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46d6ad4609915d7e73ae9a436fe9fbdddf089f45c968b104c6bb167c4cca53d5"} -2023-12-16T14:16:14.319Z INFO initializing dbft {"height": 7632, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:14.320Z debug frostfs-node/morph.go:229 new block {"index": 7631} -2023-12-16T14:16:14.724Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7631, "blockHeight": 7631, "took": "14.959039ms"} -2023-12-16T14:16:15.320Z INFO sending PrepareRequest {"height": 7632, "view": 0} -2023-12-16T14:16:15.321Z INFO sending Commit {"height": 7632, "view": 0} -2023-12-16T14:16:15.321Z INFO approving block {"height": 7632, "hash": "e5af601a3175380319eeecb1487bd57b140f1d413767192a4693fa656d6de4da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50c1b0a103998291d752adeacc239d0c5539b3d0fc9527d2c68afce4806d3c67"} -2023-12-16T14:16:15.323Z INFO initializing dbft {"height": 7633, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:15.324Z debug frostfs-node/morph.go:229 new block {"index": 7632} -2023-12-16T14:16:15.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7632, "blockHeight": 7632, "took": "12.611878ms"} -2023-12-16T14:16:16.322Z INFO sending PrepareRequest {"height": 7633, "view": 0} -2023-12-16T14:16:16.322Z INFO sending Commit {"height": 7633, "view": 0} -2023-12-16T14:16:16.323Z INFO approving block {"height": 7633, "hash": "d321d90d6498ce04534ac3c3837d78bb119f574758e15a59d0f42eedeaf0ead0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5af601a3175380319eeecb1487bd57b140f1d413767192a4693fa656d6de4da"} -2023-12-16T14:16:16.324Z INFO initializing dbft {"height": 7634, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:16.325Z debug frostfs-node/morph.go:229 new block {"index": 7633} -2023-12-16T14:16:16.723Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7633, "blockHeight": 7633, "took": "12.917465ms"} -2023-12-16T14:16:17.324Z INFO sending PrepareRequest {"height": 7634, "view": 0} -2023-12-16T14:16:17.324Z INFO sending Commit {"height": 7634, "view": 0} -2023-12-16T14:16:17.324Z INFO approving block {"height": 7634, "hash": "f81582f4a697737c08e293e8a742368fcb934ec1d0c77830f886e04bdda1777b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d321d90d6498ce04534ac3c3837d78bb119f574758e15a59d0f42eedeaf0ead0"} -2023-12-16T14:16:17.326Z INFO initializing dbft {"height": 7635, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:17.327Z debug frostfs-node/morph.go:229 new block {"index": 7634} -2023-12-16T14:16:17.724Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7634, "blockHeight": 7634, "took": "12.590965ms"} -2023-12-16T14:16:18.327Z INFO sending PrepareRequest {"height": 7635, "view": 0} -2023-12-16T14:16:18.327Z INFO sending Commit {"height": 7635, "view": 0} -2023-12-16T14:16:18.327Z INFO approving block {"height": 7635, "hash": "acc02fa3cf9f8c7a3b7597c8750f094277672ec8829c93ef1185f9b7afec29ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f81582f4a697737c08e293e8a742368fcb934ec1d0c77830f886e04bdda1777b"} -2023-12-16T14:16:18.329Z INFO initializing dbft {"height": 7636, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:18.330Z debug frostfs-node/morph.go:229 new block {"index": 7635} -2023-12-16T14:16:18.725Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7635, "blockHeight": 7635, "took": "12.37412ms"} -2023-12-16T14:16:19.329Z INFO sending PrepareRequest {"height": 7636, "view": 0} -2023-12-16T14:16:19.329Z INFO sending Commit {"height": 7636, "view": 0} -2023-12-16T14:16:19.329Z INFO approving block {"height": 7636, "hash": "86ea48aabd5ea76bc5a3f3820bf539db1cf322c2e88a721dbc61165113cd58fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acc02fa3cf9f8c7a3b7597c8750f094277672ec8829c93ef1185f9b7afec29ee"} -2023-12-16T14:16:19.330Z INFO initializing dbft {"height": 7637, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:19.331Z debug frostfs-node/morph.go:229 new block {"index": 7636} -2023-12-16T14:16:19.725Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7636, "blockHeight": 7636, "took": "12.382668ms"} -2023-12-16T14:16:20.331Z INFO sending PrepareRequest {"height": 7637, "view": 0} -2023-12-16T14:16:20.331Z INFO sending Commit {"height": 7637, "view": 0} -2023-12-16T14:16:20.332Z INFO approving block {"height": 7637, "hash": "97c416cfede4d97752535333026004d42fd4ad74568e2c95ca319dff2e57f234", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86ea48aabd5ea76bc5a3f3820bf539db1cf322c2e88a721dbc61165113cd58fb"} -2023-12-16T14:16:20.333Z INFO initializing dbft {"height": 7638, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:20.334Z debug frostfs-node/morph.go:229 new block {"index": 7637} -2023-12-16T14:16:20.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7637, "blockHeight": 7637, "took": "23.909144ms"} -2023-12-16T14:16:21.333Z INFO sending PrepareRequest {"height": 7638, "view": 0} -2023-12-16T14:16:21.333Z INFO sending Commit {"height": 7638, "view": 0} -2023-12-16T14:16:21.334Z INFO approving block {"height": 7638, "hash": "de714e375eca07f89a6f18a859e0342a42867172e995373ad644910748b28c81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97c416cfede4d97752535333026004d42fd4ad74568e2c95ca319dff2e57f234"} -2023-12-16T14:16:21.337Z INFO initializing dbft {"height": 7639, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:21.338Z debug frostfs-node/morph.go:229 new block {"index": 7638} -2023-12-16T14:16:21.731Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7638, "blockHeight": 7638, "took": "15.45494ms"} -2023-12-16T14:16:22.335Z INFO sending PrepareRequest {"height": 7639, "view": 0} -2023-12-16T14:16:22.335Z INFO sending Commit {"height": 7639, "view": 0} -2023-12-16T14:16:22.336Z INFO approving block {"height": 7639, "hash": "aad997ba657368a9049cab0190da60a0f98bdfcc3feb4974dc7e896176fc30b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de714e375eca07f89a6f18a859e0342a42867172e995373ad644910748b28c81"} -2023-12-16T14:16:22.338Z INFO initializing dbft {"height": 7640, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:22.339Z debug frostfs-node/morph.go:229 new block {"index": 7639} -2023-12-16T14:16:22.734Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7639, "blockHeight": 7639, "took": "17.353501ms"} -2023-12-16T14:16:23.337Z INFO sending PrepareRequest {"height": 7640, "view": 0} -2023-12-16T14:16:23.337Z INFO sending Commit {"height": 7640, "view": 0} -2023-12-16T14:16:23.338Z INFO approving block {"height": 7640, "hash": "3fc80d0cc8f01e01a9ecb560e8b7a2168bc9892ded5a879a0fbb6a5b204f6557", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad997ba657368a9049cab0190da60a0f98bdfcc3feb4974dc7e896176fc30b2"} -2023-12-16T14:16:23.340Z INFO initializing dbft {"height": 7641, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:23.340Z debug frostfs-node/morph.go:229 new block {"index": 7640} -2023-12-16T14:16:23.731Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7640, "blockHeight": 7640, "took": "14.381102ms"} -2023-12-16T14:16:24.340Z INFO sending PrepareRequest {"height": 7641, "view": 0} -2023-12-16T14:16:24.340Z INFO sending Commit {"height": 7641, "view": 0} -2023-12-16T14:16:24.341Z INFO approving block {"height": 7641, "hash": "fcc41c0d52ad56fb9717bfcd9fc517dfe3bf82b965113cb24578f9039c2027cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3fc80d0cc8f01e01a9ecb560e8b7a2168bc9892ded5a879a0fbb6a5b204f6557"} -2023-12-16T14:16:24.342Z INFO initializing dbft {"height": 7642, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:24.343Z debug frostfs-node/morph.go:229 new block {"index": 7641} -2023-12-16T14:16:24.733Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7641, "blockHeight": 7641, "took": "14.630314ms"} -2023-12-16T14:16:25.343Z INFO sending PrepareRequest {"height": 7642, "view": 0} -2023-12-16T14:16:25.344Z INFO sending Commit {"height": 7642, "view": 0} -2023-12-16T14:16:25.344Z INFO approving block {"height": 7642, "hash": "175bfbc400da7553221e55a0598e7f3acbfee7de153695555defc5b807649cea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcc41c0d52ad56fb9717bfcd9fc517dfe3bf82b965113cb24578f9039c2027cf"} -2023-12-16T14:16:25.345Z INFO initializing dbft {"height": 7643, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:25.346Z debug frostfs-node/morph.go:229 new block {"index": 7642} -2023-12-16T14:16:25.730Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7642, "blockHeight": 7642, "took": "11.716091ms"} -2023-12-16T14:16:26.345Z INFO sending PrepareRequest {"height": 7643, "view": 0} -2023-12-16T14:16:26.346Z INFO sending Commit {"height": 7643, "view": 0} -2023-12-16T14:16:26.346Z INFO approving block {"height": 7643, "hash": "df8aba453e82bfdc6660507c4d758f42cec26b9d1c3725e32da345028adaaa1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "175bfbc400da7553221e55a0598e7f3acbfee7de153695555defc5b807649cea"} -2023-12-16T14:16:26.348Z INFO initializing dbft {"height": 7644, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:26.348Z debug frostfs-node/morph.go:229 new block {"index": 7643} -2023-12-16T14:16:26.737Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7643, "blockHeight": 7643, "took": "17.619807ms"} -2023-12-16T14:16:27.347Z INFO sending PrepareRequest {"height": 7644, "view": 0} -2023-12-16T14:16:27.348Z INFO sending Commit {"height": 7644, "view": 0} -2023-12-16T14:16:27.348Z INFO approving block {"height": 7644, "hash": "424b6dfd3545292dad8dd831fc79fe4bda43b4fcb43e653c3438adc286802b4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df8aba453e82bfdc6660507c4d758f42cec26b9d1c3725e32da345028adaaa1e"} -2023-12-16T14:16:27.350Z INFO initializing dbft {"height": 7645, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:27.351Z debug frostfs-node/morph.go:229 new block {"index": 7644} -2023-12-16T14:16:27.727Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7644, "blockHeight": 7644, "took": "6.55062ms"} -2023-12-16T14:16:28.350Z INFO sending PrepareRequest {"height": 7645, "view": 0} -2023-12-16T14:16:28.350Z INFO sending Commit {"height": 7645, "view": 0} -2023-12-16T14:16:28.350Z INFO approving block {"height": 7645, "hash": "36e4ad3a6bf004423ed13e2f07d0877df7132c80a77f0be842d13ac7a124a4af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "424b6dfd3545292dad8dd831fc79fe4bda43b4fcb43e653c3438adc286802b4c"} -2023-12-16T14:16:28.351Z INFO initializing dbft {"height": 7646, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:28.352Z debug frostfs-node/morph.go:229 new block {"index": 7645} -2023-12-16T14:16:28.732Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7645, "blockHeight": 7645, "took": "10.63795ms"} -2023-12-16T14:16:29.352Z INFO sending PrepareRequest {"height": 7646, "view": 0} -2023-12-16T14:16:29.352Z INFO sending Commit {"height": 7646, "view": 0} -2023-12-16T14:16:29.353Z INFO approving block {"height": 7646, "hash": "c52a2638b8442530f4363b002d878b23f30dcdddf898adf96d2309a5ea914cdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36e4ad3a6bf004423ed13e2f07d0877df7132c80a77f0be842d13ac7a124a4af"} -2023-12-16T14:16:29.357Z INFO initializing dbft {"height": 7647, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:29.358Z debug frostfs-node/morph.go:229 new block {"index": 7646} -2023-12-16T14:16:29.729Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7646, "blockHeight": 7646, "took": "8.008463ms"} -2023-12-16T14:16:30.354Z INFO sending PrepareRequest {"height": 7647, "view": 0} -2023-12-16T14:16:30.355Z INFO sending Commit {"height": 7647, "view": 0} -2023-12-16T14:16:30.355Z INFO approving block {"height": 7647, "hash": "a6f9c2a894a6ca398977715d9ef509f1d79df9b734e29a4c6af9d23b2ed67e71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c52a2638b8442530f4363b002d878b23f30dcdddf898adf96d2309a5ea914cdb"} -2023-12-16T14:16:30.357Z INFO initializing dbft {"height": 7648, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:30.358Z debug frostfs-node/morph.go:229 new block {"index": 7647} -2023-12-16T14:16:30.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7647, "blockHeight": 7647, "took": "27.032338ms"} -2023-12-16T14:16:31.356Z INFO sending PrepareRequest {"height": 7648, "view": 0} -2023-12-16T14:16:31.357Z INFO sending Commit {"height": 7648, "view": 0} -2023-12-16T14:16:31.357Z INFO approving block {"height": 7648, "hash": "f187408093967e6c443e48542b54545682c767500002ebcc9f2647e11f426c51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6f9c2a894a6ca398977715d9ef509f1d79df9b734e29a4c6af9d23b2ed67e71"} -2023-12-16T14:16:31.359Z INFO initializing dbft {"height": 7649, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:31.360Z debug frostfs-node/morph.go:229 new block {"index": 7648} -2023-12-16T14:16:31.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7648, "blockHeight": 7648, "took": "20.667281ms"} -2023-12-16T14:16:32.358Z INFO sending PrepareRequest {"height": 7649, "view": 0} -2023-12-16T14:16:32.359Z INFO sending Commit {"height": 7649, "view": 0} -2023-12-16T14:16:32.359Z INFO approving block {"height": 7649, "hash": "14d762fbddb50725650c3c8ec09db8029ddf2f1a0465684423b0ea86d01a9fef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f187408093967e6c443e48542b54545682c767500002ebcc9f2647e11f426c51"} -2023-12-16T14:16:32.360Z INFO initializing dbft {"height": 7650, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:32.362Z debug frostfs-node/morph.go:229 new block {"index": 7649} -2023-12-16T14:16:32.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7649, "blockHeight": 7649, "took": "19.357485ms"} -2023-12-16T14:16:33.361Z INFO sending PrepareRequest {"height": 7650, "view": 0} -2023-12-16T14:16:33.362Z INFO sending Commit {"height": 7650, "view": 0} -2023-12-16T14:16:33.362Z INFO approving block {"height": 7650, "hash": "52bdc9a43cf700f95e304d7d403319fafb2911b039463024e2538a88349e928a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14d762fbddb50725650c3c8ec09db8029ddf2f1a0465684423b0ea86d01a9fef"} -2023-12-16T14:16:33.364Z INFO initializing dbft {"height": 7651, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:33.366Z debug frostfs-node/morph.go:229 new block {"index": 7650} -2023-12-16T14:16:33.373Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 32, "iteration": 2, "error": "no data for 1 iteration in 32 epoch for consumers's trusts"} -2023-12-16T14:16:33.376Z info settlement/calls.go:106 start basic income distribution {"epoch": 32} -2023-12-16T14:16:33.377Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:16:33.379Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:16:33.380Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:16:33.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7650, "blockHeight": 7650, "took": "14.579391ms"} -2023-12-16T14:16:34.363Z INFO sending PrepareRequest {"height": 7651, "view": 0} -2023-12-16T14:16:34.363Z INFO sending Commit {"height": 7651, "view": 0} -2023-12-16T14:16:34.364Z INFO approving block {"height": 7651, "hash": "9993dfea2f4a5b67a2f1fb2abe8a201a8244120407bd9a7f3b17a1054bf2cc18", "tx_count": 2, "merkle": "cc5f566b61640df15b3b1f08555f142e33f9efce2cc44a9f5525fbc48485e9f0", "prev": "52bdc9a43cf700f95e304d7d403319fafb2911b039463024e2538a88349e928a"} -2023-12-16T14:16:34.365Z INFO runtime log {"tx": "f925682d82b3838265cc0088306ae07545d704e6cbacd0359e58cabfed8d3f96", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:16:34.365Z INFO runtime log {"tx": "f925682d82b3838265cc0088306ae07545d704e6cbacd0359e58cabfed8d3f96", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:16:34.366Z INFO initializing dbft {"height": 7652, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:34.367Z debug frostfs-node/morph.go:229 new block {"index": 7651} -2023-12-16T14:16:34.744Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7651, "blockHeight": 7651, "took": "19.259132ms"} -2023-12-16T14:16:35.365Z INFO sending PrepareRequest {"height": 7652, "view": 0} -2023-12-16T14:16:35.365Z INFO sending Commit {"height": 7652, "view": 0} -2023-12-16T14:16:35.366Z INFO approving block {"height": 7652, "hash": "3f78abfdb1bfff251c93404ddfbac28664d48390f3764d820466b8315522c229", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9993dfea2f4a5b67a2f1fb2abe8a201a8244120407bd9a7f3b17a1054bf2cc18"} -2023-12-16T14:16:35.368Z INFO initializing dbft {"height": 7653, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:35.369Z debug frostfs-node/morph.go:229 new block {"index": 7652} -2023-12-16T14:16:35.742Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7652, "blockHeight": 7652, "took": "17.614793ms"} -2023-12-16T14:16:36.366Z INFO sending PrepareRequest {"height": 7653, "view": 0} -2023-12-16T14:16:36.367Z INFO sending Commit {"height": 7653, "view": 0} -2023-12-16T14:16:36.367Z INFO approving block {"height": 7653, "hash": "17d15289e677682b603dc395bbc10367018adc0ad8b6c52a6aa32f0f87417e7f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f78abfdb1bfff251c93404ddfbac28664d48390f3764d820466b8315522c229"} -2023-12-16T14:16:36.368Z INFO initializing dbft {"height": 7654, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:36.369Z debug frostfs-node/morph.go:229 new block {"index": 7653} -2023-12-16T14:16:36.734Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7653, "blockHeight": 7653, "took": "8.758519ms"} -2023-12-16T14:16:37.368Z INFO sending PrepareRequest {"height": 7654, "view": 0} -2023-12-16T14:16:37.369Z INFO sending Commit {"height": 7654, "view": 0} -2023-12-16T14:16:37.369Z INFO approving block {"height": 7654, "hash": "a7c9d4c3d6ea674c2362b95d51026f95e97063961ec3151fc7040bf2931d0c18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17d15289e677682b603dc395bbc10367018adc0ad8b6c52a6aa32f0f87417e7f"} -2023-12-16T14:16:37.371Z INFO initializing dbft {"height": 7655, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:37.372Z debug frostfs-node/morph.go:229 new block {"index": 7654} -2023-12-16T14:16:37.737Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7654, "blockHeight": 7654, "took": "10.766683ms"} -2023-12-16T14:16:38.370Z INFO sending PrepareRequest {"height": 7655, "view": 0} -2023-12-16T14:16:38.370Z INFO sending Commit {"height": 7655, "view": 0} -2023-12-16T14:16:38.371Z INFO approving block {"height": 7655, "hash": "20940ff82a51648cfd16a89c495358cfe46cdeecbd7e3568fa53c6297f3c152f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7c9d4c3d6ea674c2362b95d51026f95e97063961ec3151fc7040bf2931d0c18"} -2023-12-16T14:16:38.372Z INFO initializing dbft {"height": 7656, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:38.372Z debug frostfs-node/morph.go:229 new block {"index": 7655} -2023-12-16T14:16:38.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7655, "blockHeight": 7655, "took": "15.657018ms"} -2023-12-16T14:16:39.372Z INFO sending PrepareRequest {"height": 7656, "view": 0} -2023-12-16T14:16:39.372Z INFO sending Commit {"height": 7656, "view": 0} -2023-12-16T14:16:39.373Z INFO approving block {"height": 7656, "hash": "acb12d125f8d4493af83d83cc35cc19bf1f450a0bd58f4eb14411388c3f31716", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20940ff82a51648cfd16a89c495358cfe46cdeecbd7e3568fa53c6297f3c152f"} -2023-12-16T14:16:39.374Z INFO initializing dbft {"height": 7657, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:39.375Z debug frostfs-node/morph.go:229 new block {"index": 7656} -2023-12-16T14:16:39.740Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7656, "blockHeight": 7656, "took": "11.887855ms"} -2023-12-16T14:16:40.374Z INFO sending PrepareRequest {"height": 7657, "view": 0} -2023-12-16T14:16:40.374Z INFO sending Commit {"height": 7657, "view": 0} -2023-12-16T14:16:40.374Z INFO approving block {"height": 7657, "hash": "5e8c7c360a449d61108218e3e64471e9141a1a2bea3b2465da6af980a9f8db2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acb12d125f8d4493af83d83cc35cc19bf1f450a0bd58f4eb14411388c3f31716"} -2023-12-16T14:16:40.375Z INFO initializing dbft {"height": 7658, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:40.376Z debug frostfs-node/morph.go:229 new block {"index": 7657} -2023-12-16T14:16:40.745Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7657, "blockHeight": 7657, "took": "16.104473ms"} -2023-12-16T14:16:41.376Z INFO sending PrepareRequest {"height": 7658, "view": 0} -2023-12-16T14:16:41.376Z INFO sending Commit {"height": 7658, "view": 0} -2023-12-16T14:16:41.377Z INFO approving block {"height": 7658, "hash": "e669b3bf1cb2c22c78e4af5a7d26450c815c839e744e4a09929b72a5a31045e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e8c7c360a449d61108218e3e64471e9141a1a2bea3b2465da6af980a9f8db2c"} -2023-12-16T14:16:41.378Z INFO initializing dbft {"height": 7659, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:41.381Z debug frostfs-node/morph.go:229 new block {"index": 7658} -2023-12-16T14:16:41.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7658, "blockHeight": 7658, "took": "13.355611ms"} -2023-12-16T14:16:42.377Z INFO sending PrepareRequest {"height": 7659, "view": 0} -2023-12-16T14:16:42.378Z INFO sending Commit {"height": 7659, "view": 0} -2023-12-16T14:16:42.378Z INFO approving block {"height": 7659, "hash": "a97cd9173d685c75565b46244ab6cccc1323d49bfdc5ff9d739361edd4bed670", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e669b3bf1cb2c22c78e4af5a7d26450c815c839e744e4a09929b72a5a31045e5"} -2023-12-16T14:16:42.380Z INFO initializing dbft {"height": 7660, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:42.380Z debug frostfs-node/morph.go:229 new block {"index": 7659} -2023-12-16T14:16:42.744Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7659, "blockHeight": 7659, "took": "12.971827ms"} -2023-12-16T14:16:43.379Z INFO sending PrepareRequest {"height": 7660, "view": 0} -2023-12-16T14:16:43.379Z INFO sending Commit {"height": 7660, "view": 0} -2023-12-16T14:16:43.380Z INFO approving block {"height": 7660, "hash": "b6c9e575e8b9117a0eb770e5eff9421f36ed329b6725be838cb44def02eb09ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a97cd9173d685c75565b46244ab6cccc1323d49bfdc5ff9d739361edd4bed670"} -2023-12-16T14:16:43.382Z INFO initializing dbft {"height": 7661, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:43.382Z debug frostfs-node/morph.go:229 new block {"index": 7660} -2023-12-16T14:16:43.748Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7660, "blockHeight": 7660, "took": "16.587395ms"} -2023-12-16T14:16:44.381Z INFO sending PrepareRequest {"height": 7661, "view": 0} -2023-12-16T14:16:44.382Z INFO sending Commit {"height": 7661, "view": 0} -2023-12-16T14:16:44.382Z INFO approving block {"height": 7661, "hash": "ffd1b7a6b21cf89f6db9213818acba447aaf1625c1b0405965881bbfe274ca74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6c9e575e8b9117a0eb770e5eff9421f36ed329b6725be838cb44def02eb09ae"} -2023-12-16T14:16:44.384Z INFO initializing dbft {"height": 7662, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:44.386Z debug frostfs-node/morph.go:229 new block {"index": 7661} -2023-12-16T14:16:44.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7661, "blockHeight": 7661, "took": "19.919478ms"} -2023-12-16T14:16:45.383Z INFO sending PrepareRequest {"height": 7662, "view": 0} -2023-12-16T14:16:45.384Z INFO sending Commit {"height": 7662, "view": 0} -2023-12-16T14:16:45.384Z INFO approving block {"height": 7662, "hash": "25fcafaaa690085e3e1f8b0ab9023297b75b67109d2e4633d9a6b54f0a551807", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffd1b7a6b21cf89f6db9213818acba447aaf1625c1b0405965881bbfe274ca74"} -2023-12-16T14:16:45.387Z INFO initializing dbft {"height": 7663, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:45.388Z debug frostfs-node/morph.go:229 new block {"index": 7662} -2023-12-16T14:16:45.746Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7662, "blockHeight": 7662, "took": "12.592804ms"} -2023-12-16T14:16:46.386Z INFO sending PrepareRequest {"height": 7663, "view": 0} -2023-12-16T14:16:46.386Z INFO sending Commit {"height": 7663, "view": 0} -2023-12-16T14:16:46.386Z INFO approving block {"height": 7663, "hash": "ca4d30b42c2cfae1e800e747e43216fc9e17afbd4e8d80a562b6672d7cbc008a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25fcafaaa690085e3e1f8b0ab9023297b75b67109d2e4633d9a6b54f0a551807"} -2023-12-16T14:16:46.388Z INFO initializing dbft {"height": 7664, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:46.389Z debug frostfs-node/morph.go:229 new block {"index": 7663} -2023-12-16T14:16:46.745Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7663, "blockHeight": 7663, "took": "10.143776ms"} -2023-12-16T14:16:47.388Z INFO sending PrepareRequest {"height": 7664, "view": 0} -2023-12-16T14:16:47.388Z INFO sending Commit {"height": 7664, "view": 0} -2023-12-16T14:16:47.388Z INFO approving block {"height": 7664, "hash": "0580273c320a93a8746416dcb501a838422dbf2ca776d8c41764ef471aa98f63", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca4d30b42c2cfae1e800e747e43216fc9e17afbd4e8d80a562b6672d7cbc008a"} -2023-12-16T14:16:47.389Z INFO initializing dbft {"height": 7665, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:47.390Z debug frostfs-node/morph.go:229 new block {"index": 7664} -2023-12-16T14:16:47.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7664, "blockHeight": 7664, "took": "7.998222ms"} -2023-12-16T14:16:48.390Z INFO sending PrepareRequest {"height": 7665, "view": 0} -2023-12-16T14:16:48.390Z INFO sending Commit {"height": 7665, "view": 0} -2023-12-16T14:16:48.390Z INFO approving block {"height": 7665, "hash": "47d038c6b73e5116a1eba9063d01ee3b00a899ba9dc65e800719ef68ba0188eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0580273c320a93a8746416dcb501a838422dbf2ca776d8c41764ef471aa98f63"} -2023-12-16T14:16:48.391Z INFO initializing dbft {"height": 7666, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:48.392Z debug frostfs-node/morph.go:229 new block {"index": 7665} -2023-12-16T14:16:48.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7665, "blockHeight": 7665, "took": "13.130527ms"} -2023-12-16T14:16:49.391Z INFO sending PrepareRequest {"height": 7666, "view": 0} -2023-12-16T14:16:49.391Z INFO sending Commit {"height": 7666, "view": 0} -2023-12-16T14:16:49.392Z INFO approving block {"height": 7666, "hash": "d00e1120c6de76ba7fd0b9b26418d1070c063d05e7d2b02bcb6a25dc8dde1156", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47d038c6b73e5116a1eba9063d01ee3b00a899ba9dc65e800719ef68ba0188eb"} -2023-12-16T14:16:49.393Z INFO initializing dbft {"height": 7667, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:49.395Z debug frostfs-node/morph.go:229 new block {"index": 7666} -2023-12-16T14:16:49.748Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7666, "blockHeight": 7666, "took": "10.313211ms"} -2023-12-16T14:16:50.393Z INFO sending PrepareRequest {"height": 7667, "view": 0} -2023-12-16T14:16:50.393Z INFO sending Commit {"height": 7667, "view": 0} -2023-12-16T14:16:50.394Z INFO approving block {"height": 7667, "hash": "29bf0f0358cf004416065a9211e7c020c382e2b56fc1bb725b1146aabbc7d8b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d00e1120c6de76ba7fd0b9b26418d1070c063d05e7d2b02bcb6a25dc8dde1156"} -2023-12-16T14:16:50.395Z INFO initializing dbft {"height": 7668, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:50.396Z debug frostfs-node/morph.go:229 new block {"index": 7667} -2023-12-16T14:16:50.755Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7667, "blockHeight": 7667, "took": "16.358576ms"} -2023-12-16T14:16:51.395Z INFO sending PrepareRequest {"height": 7668, "view": 0} -2023-12-16T14:16:51.395Z INFO sending Commit {"height": 7668, "view": 0} -2023-12-16T14:16:51.395Z INFO approving block {"height": 7668, "hash": "3ba0948d20660f8a1a9e51c66facdc55660b0567407324450c226ac89ae48595", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29bf0f0358cf004416065a9211e7c020c382e2b56fc1bb725b1146aabbc7d8b6"} -2023-12-16T14:16:51.397Z INFO initializing dbft {"height": 7669, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:51.398Z debug frostfs-node/morph.go:229 new block {"index": 7668} -2023-12-16T14:16:51.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7668, "blockHeight": 7668, "took": "12.661348ms"} -2023-12-16T14:16:52.397Z INFO sending PrepareRequest {"height": 7669, "view": 0} -2023-12-16T14:16:52.397Z INFO sending Commit {"height": 7669, "view": 0} -2023-12-16T14:16:52.397Z INFO approving block {"height": 7669, "hash": "9209e53cedf46dd485a5d1c86fd1a992e90b8d79e15d5e42a5d003275aaf574c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ba0948d20660f8a1a9e51c66facdc55660b0567407324450c226ac89ae48595"} -2023-12-16T14:16:52.400Z INFO initializing dbft {"height": 7670, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:52.401Z debug frostfs-node/morph.go:229 new block {"index": 7669} -2023-12-16T14:16:52.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7669, "blockHeight": 7669, "took": "8.46234ms"} -2023-12-16T14:16:53.399Z INFO sending PrepareRequest {"height": 7670, "view": 0} -2023-12-16T14:16:53.399Z INFO sending Commit {"height": 7670, "view": 0} -2023-12-16T14:16:53.400Z INFO approving block {"height": 7670, "hash": "e2f1e03ab422c1a0cd28b08ebb2855b8d27420042f43717ab4194dccc50bb3d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9209e53cedf46dd485a5d1c86fd1a992e90b8d79e15d5e42a5d003275aaf574c"} -2023-12-16T14:16:53.401Z INFO initializing dbft {"height": 7671, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:53.402Z debug frostfs-node/morph.go:229 new block {"index": 7670} -2023-12-16T14:16:53.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7670, "blockHeight": 7670, "took": "10.791254ms"} -2023-12-16T14:16:54.400Z INFO sending PrepareRequest {"height": 7671, "view": 0} -2023-12-16T14:16:54.401Z INFO sending Commit {"height": 7671, "view": 0} -2023-12-16T14:16:54.401Z INFO approving block {"height": 7671, "hash": "7449860ab5b2f3cc9709415d681c8a49d6a5be2e51e32499f9c9acdb543adf4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2f1e03ab422c1a0cd28b08ebb2855b8d27420042f43717ab4194dccc50bb3d7"} -2023-12-16T14:16:54.402Z INFO initializing dbft {"height": 7672, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:54.403Z debug frostfs-node/morph.go:229 new block {"index": 7671} -2023-12-16T14:16:54.758Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7671, "blockHeight": 7671, "took": "15.345161ms"} -2023-12-16T14:16:55.402Z INFO sending PrepareRequest {"height": 7672, "view": 0} -2023-12-16T14:16:55.402Z INFO sending Commit {"height": 7672, "view": 0} -2023-12-16T14:16:55.402Z INFO approving block {"height": 7672, "hash": "7e23a63da72c3bfb2a2bd4bcc9a13fe73f7312c1b675c09a6031d0feecb963a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7449860ab5b2f3cc9709415d681c8a49d6a5be2e51e32499f9c9acdb543adf4d"} -2023-12-16T14:16:55.404Z INFO initializing dbft {"height": 7673, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:55.405Z debug frostfs-node/morph.go:229 new block {"index": 7672} -2023-12-16T14:16:55.762Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7672, "blockHeight": 7672, "took": "17.641204ms"} -2023-12-16T14:16:56.404Z INFO sending PrepareRequest {"height": 7673, "view": 0} -2023-12-16T14:16:56.404Z INFO sending Commit {"height": 7673, "view": 0} -2023-12-16T14:16:56.404Z INFO approving block {"height": 7673, "hash": "fd3926fa5e9d44727d38f89b7c3ff2260881bc6ad5609f8e0729fd80b20c57b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e23a63da72c3bfb2a2bd4bcc9a13fe73f7312c1b675c09a6031d0feecb963a7"} -2023-12-16T14:16:56.406Z INFO initializing dbft {"height": 7674, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:56.408Z debug frostfs-node/morph.go:229 new block {"index": 7673} -2023-12-16T14:16:56.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7673, "blockHeight": 7673, "took": "11.175085ms"} -2023-12-16T14:16:57.406Z INFO sending PrepareRequest {"height": 7674, "view": 0} -2023-12-16T14:16:57.406Z INFO sending Commit {"height": 7674, "view": 0} -2023-12-16T14:16:57.407Z INFO approving block {"height": 7674, "hash": "138946afe387d33d75ced4b7248d020ac45c86f3d6e87782470beef8dbc094d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd3926fa5e9d44727d38f89b7c3ff2260881bc6ad5609f8e0729fd80b20c57b4"} -2023-12-16T14:16:57.408Z INFO initializing dbft {"height": 7675, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:57.409Z debug frostfs-node/morph.go:229 new block {"index": 7674} -2023-12-16T14:16:57.759Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7674, "blockHeight": 7674, "took": "13.101046ms"} -2023-12-16T14:16:58.408Z INFO sending PrepareRequest {"height": 7675, "view": 0} -2023-12-16T14:16:58.409Z INFO sending Commit {"height": 7675, "view": 0} -2023-12-16T14:16:58.409Z INFO approving block {"height": 7675, "hash": "13e4a438e506ae1f69d9124f31d0f2a700b229484c947a272e42dce0872c537a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "138946afe387d33d75ced4b7248d020ac45c86f3d6e87782470beef8dbc094d7"} -2023-12-16T14:16:58.412Z INFO initializing dbft {"height": 7676, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:58.413Z debug frostfs-node/morph.go:229 new block {"index": 7675} -2023-12-16T14:16:58.765Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7675, "blockHeight": 7675, "took": "17.742991ms"} -2023-12-16T14:16:59.411Z INFO sending PrepareRequest {"height": 7676, "view": 0} -2023-12-16T14:16:59.412Z INFO sending Commit {"height": 7676, "view": 0} -2023-12-16T14:16:59.412Z INFO approving block {"height": 7676, "hash": "7d49afb310630d552e37f01661e661b1f01185849b07fca477faa3635d69c685", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13e4a438e506ae1f69d9124f31d0f2a700b229484c947a272e42dce0872c537a"} -2023-12-16T14:16:59.413Z INFO initializing dbft {"height": 7677, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:16:59.414Z debug frostfs-node/morph.go:229 new block {"index": 7676} -2023-12-16T14:16:59.760Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7676, "blockHeight": 7676, "took": "11.708216ms"} -2023-12-16T14:17:00.413Z INFO sending PrepareRequest {"height": 7677, "view": 0} -2023-12-16T14:17:00.414Z INFO sending Commit {"height": 7677, "view": 0} -2023-12-16T14:17:00.414Z INFO approving block {"height": 7677, "hash": "bd492fb374b3fb2a106707aac07bba25d36e6b8f4c72a35d037cc898439c8386", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d49afb310630d552e37f01661e661b1f01185849b07fca477faa3635d69c685"} -2023-12-16T14:17:00.416Z INFO initializing dbft {"height": 7678, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:00.417Z debug frostfs-node/morph.go:229 new block {"index": 7677} -2023-12-16T14:17:00.761Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7677, "blockHeight": 7677, "took": "11.218453ms"} -2023-12-16T14:17:01.416Z INFO sending PrepareRequest {"height": 7678, "view": 0} -2023-12-16T14:17:01.416Z INFO sending Commit {"height": 7678, "view": 0} -2023-12-16T14:17:01.417Z INFO approving block {"height": 7678, "hash": "3ed1ecea67f6b7ddbfdf01191975cf5cca697fd47877b30d0dc620b98b355ae9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd492fb374b3fb2a106707aac07bba25d36e6b8f4c72a35d037cc898439c8386"} -2023-12-16T14:17:01.418Z INFO initializing dbft {"height": 7679, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:01.420Z debug frostfs-node/morph.go:229 new block {"index": 7678} -2023-12-16T14:17:01.764Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7678, "blockHeight": 7678, "took": "12.946827ms"} -2023-12-16T14:17:02.419Z INFO sending PrepareRequest {"height": 7679, "view": 0} -2023-12-16T14:17:02.419Z INFO sending Commit {"height": 7679, "view": 0} -2023-12-16T14:17:02.420Z INFO approving block {"height": 7679, "hash": "70f48a5261b1536a37c42c05ba15bd7c81386aa89944aff5f7a6bd77dc79c794", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ed1ecea67f6b7ddbfdf01191975cf5cca697fd47877b30d0dc620b98b355ae9"} -2023-12-16T14:17:02.423Z INFO initializing dbft {"height": 7680, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:02.424Z debug frostfs-node/morph.go:229 new block {"index": 7679} -2023-12-16T14:17:02.768Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 7679, "blockHeight": 7679, "took": "16.498572ms"} -2023-12-16T14:17:03.423Z INFO sending PrepareRequest {"height": 7680, "view": 0} -2023-12-16T14:17:03.423Z INFO sending Commit {"height": 7680, "view": 0} -2023-12-16T14:17:03.424Z INFO approving block {"height": 7680, "hash": "b3fb60c5fd74efbf67bfa36b5e3291f2e7da2d698976faa5efb65b7dd2ac603c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70f48a5261b1536a37c42c05ba15bd7c81386aa89944aff5f7a6bd77dc79c794"} -2023-12-16T14:17:03.425Z INFO initializing dbft {"height": 7681, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:03.426Z debug frostfs-node/morph.go:229 new block {"index": 7680} -2023-12-16T14:17:03.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7680, "blockHeight": 7680, "took": "38.756605ms"} -2023-12-16T14:17:04.425Z INFO sending PrepareRequest {"height": 7681, "view": 0} -2023-12-16T14:17:04.425Z INFO sending Commit {"height": 7681, "view": 0} -2023-12-16T14:17:04.425Z INFO approving block {"height": 7681, "hash": "deaf5805514c1cebdca149362fa15a9e39e51d874f16e094e097c7d306721cc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3fb60c5fd74efbf67bfa36b5e3291f2e7da2d698976faa5efb65b7dd2ac603c"} -2023-12-16T14:17:04.428Z INFO initializing dbft {"height": 7682, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:04.428Z debug frostfs-node/morph.go:229 new block {"index": 7681} -2023-12-16T14:17:04.766Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7681, "blockHeight": 7681, "took": "12.128963ms"} -2023-12-16T14:17:05.426Z INFO sending PrepareRequest {"height": 7682, "view": 0} -2023-12-16T14:17:05.427Z INFO sending Commit {"height": 7682, "view": 0} -2023-12-16T14:17:05.427Z INFO approving block {"height": 7682, "hash": "c394186c6216989e2a178a5dc8ce098ea8891073e82ea35a1bd9b0f2bed7ffee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "deaf5805514c1cebdca149362fa15a9e39e51d874f16e094e097c7d306721cc5"} -2023-12-16T14:17:05.429Z INFO initializing dbft {"height": 7683, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:05.430Z debug frostfs-node/morph.go:229 new block {"index": 7682} -2023-12-16T14:17:05.781Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7682, "blockHeight": 7682, "took": "26.518855ms"} -2023-12-16T14:17:06.429Z INFO sending PrepareRequest {"height": 7683, "view": 0} -2023-12-16T14:17:06.429Z INFO sending Commit {"height": 7683, "view": 0} -2023-12-16T14:17:06.429Z INFO approving block {"height": 7683, "hash": "721fa9f2d17eb8774c9446b8e2333558bd13c72c882c152c3fd5118deedd83cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c394186c6216989e2a178a5dc8ce098ea8891073e82ea35a1bd9b0f2bed7ffee"} -2023-12-16T14:17:06.431Z INFO initializing dbft {"height": 7684, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:06.432Z debug frostfs-node/morph.go:229 new block {"index": 7683} -2023-12-16T14:17:06.765Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7683, "blockHeight": 7683, "took": "9.459815ms"} -2023-12-16T14:17:07.431Z INFO sending PrepareRequest {"height": 7684, "view": 0} -2023-12-16T14:17:07.431Z INFO sending Commit {"height": 7684, "view": 0} -2023-12-16T14:17:07.432Z INFO approving block {"height": 7684, "hash": "b4c78214fb5ee0c4957702f7a5cdd269432053f723d62fa39a1d681493310ac5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "721fa9f2d17eb8774c9446b8e2333558bd13c72c882c152c3fd5118deedd83cc"} -2023-12-16T14:17:07.434Z INFO initializing dbft {"height": 7685, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:07.435Z debug frostfs-node/morph.go:229 new block {"index": 7684} -2023-12-16T14:17:07.765Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7684, "blockHeight": 7684, "took": "8.568391ms"} -2023-12-16T14:17:08.433Z INFO sending PrepareRequest {"height": 7685, "view": 0} -2023-12-16T14:17:08.434Z INFO sending Commit {"height": 7685, "view": 0} -2023-12-16T14:17:08.434Z INFO approving block {"height": 7685, "hash": "95daddeaf768008e929d9b68c5fc65a1d3c2c165033ae0a7c85c8761cfae4013", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4c78214fb5ee0c4957702f7a5cdd269432053f723d62fa39a1d681493310ac5"} -2023-12-16T14:17:08.436Z INFO initializing dbft {"height": 7686, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:08.437Z debug frostfs-node/morph.go:229 new block {"index": 7685} -2023-12-16T14:17:08.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7685, "blockHeight": 7685, "took": "14.258623ms"} -2023-12-16T14:17:09.435Z INFO sending PrepareRequest {"height": 7686, "view": 0} -2023-12-16T14:17:09.435Z INFO sending Commit {"height": 7686, "view": 0} -2023-12-16T14:17:09.436Z INFO approving block {"height": 7686, "hash": "f58640189ff689818ac0c6f77eb12c7f7b1ac779bb462c8265d78d338174dd05", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95daddeaf768008e929d9b68c5fc65a1d3c2c165033ae0a7c85c8761cfae4013"} -2023-12-16T14:17:09.437Z INFO initializing dbft {"height": 7687, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:09.437Z debug frostfs-node/morph.go:229 new block {"index": 7686} -2023-12-16T14:17:09.773Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7686, "blockHeight": 7686, "took": "14.244656ms"} -2023-12-16T14:17:10.437Z INFO sending PrepareRequest {"height": 7687, "view": 0} -2023-12-16T14:17:10.437Z INFO sending Commit {"height": 7687, "view": 0} -2023-12-16T14:17:10.438Z INFO approving block {"height": 7687, "hash": "583c5ac087619029ef4a58e35e0ec6bc751f1b0f0f468f9a8c5ccef9ba39a0f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f58640189ff689818ac0c6f77eb12c7f7b1ac779bb462c8265d78d338174dd05"} -2023-12-16T14:17:10.439Z INFO initializing dbft {"height": 7688, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:10.440Z debug frostfs-node/morph.go:229 new block {"index": 7687} -2023-12-16T14:17:10.769Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7687, "blockHeight": 7687, "took": "9.917108ms"} -2023-12-16T14:17:11.439Z INFO sending PrepareRequest {"height": 7688, "view": 0} -2023-12-16T14:17:11.439Z INFO sending Commit {"height": 7688, "view": 0} -2023-12-16T14:17:11.440Z INFO approving block {"height": 7688, "hash": "66fcba075fc1de6ca737b28b0e51d2a43816261abbd470b94ac351637031656d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "583c5ac087619029ef4a58e35e0ec6bc751f1b0f0f468f9a8c5ccef9ba39a0f3"} -2023-12-16T14:17:11.441Z INFO initializing dbft {"height": 7689, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:11.442Z debug frostfs-node/morph.go:229 new block {"index": 7688} -2023-12-16T14:17:11.773Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7688, "blockHeight": 7688, "took": "12.893686ms"} -2023-12-16T14:17:12.441Z INFO sending PrepareRequest {"height": 7689, "view": 0} -2023-12-16T14:17:12.441Z INFO sending Commit {"height": 7689, "view": 0} -2023-12-16T14:17:12.441Z INFO approving block {"height": 7689, "hash": "4fb172bbef6d0b6b9c6d9aa30b39bf53782ceec93f4476963e0f90e753960e45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66fcba075fc1de6ca737b28b0e51d2a43816261abbd470b94ac351637031656d"} -2023-12-16T14:17:12.443Z INFO initializing dbft {"height": 7690, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:12.443Z debug frostfs-node/morph.go:229 new block {"index": 7689} -2023-12-16T14:17:12.775Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7689, "blockHeight": 7689, "took": "14.793801ms"} -2023-12-16T14:17:13.442Z INFO sending PrepareRequest {"height": 7690, "view": 0} -2023-12-16T14:17:13.443Z INFO sending Commit {"height": 7690, "view": 0} -2023-12-16T14:17:13.443Z INFO approving block {"height": 7690, "hash": "e99a62b13b06e1d0437b3384eca158f27edad415ce03e2f1e744487f2029a64e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fb172bbef6d0b6b9c6d9aa30b39bf53782ceec93f4476963e0f90e753960e45"} -2023-12-16T14:17:13.444Z INFO initializing dbft {"height": 7691, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:13.445Z debug frostfs-node/morph.go:229 new block {"index": 7690} -2023-12-16T14:17:13.770Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7690, "blockHeight": 7690, "took": "8.503775ms"} -2023-12-16T14:17:14.444Z INFO sending PrepareRequest {"height": 7691, "view": 0} -2023-12-16T14:17:14.444Z INFO sending Commit {"height": 7691, "view": 0} -2023-12-16T14:17:14.445Z INFO approving block {"height": 7691, "hash": "c67a0a0f33a4e4bf29d96bbe9fbbd84e8d9f68b9f908e93f022275ecfe096e37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e99a62b13b06e1d0437b3384eca158f27edad415ce03e2f1e744487f2029a64e"} -2023-12-16T14:17:14.447Z INFO initializing dbft {"height": 7692, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:14.447Z debug frostfs-node/morph.go:229 new block {"index": 7691} -2023-12-16T14:17:14.775Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7691, "blockHeight": 7691, "took": "12.677783ms"} -2023-12-16T14:17:15.447Z INFO sending PrepareRequest {"height": 7692, "view": 0} -2023-12-16T14:17:15.448Z INFO sending Commit {"height": 7692, "view": 0} -2023-12-16T14:17:15.449Z INFO approving block {"height": 7692, "hash": "72b498e593c696af4e27edd5ed2dc0b419cd120efaf0806109e1a20fb27fc262", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c67a0a0f33a4e4bf29d96bbe9fbbd84e8d9f68b9f908e93f022275ecfe096e37"} -2023-12-16T14:17:15.451Z INFO initializing dbft {"height": 7693, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:15.452Z debug frostfs-node/morph.go:229 new block {"index": 7692} -2023-12-16T14:17:15.775Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7692, "blockHeight": 7692, "took": "11.700196ms"} -2023-12-16T14:17:16.450Z INFO sending PrepareRequest {"height": 7693, "view": 0} -2023-12-16T14:17:16.450Z INFO sending Commit {"height": 7693, "view": 0} -2023-12-16T14:17:16.451Z INFO approving block {"height": 7693, "hash": "771319abdaaf2ec9a708d289174ad25088922044eec9ca9744dded9b15bbe895", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72b498e593c696af4e27edd5ed2dc0b419cd120efaf0806109e1a20fb27fc262"} -2023-12-16T14:17:16.452Z INFO initializing dbft {"height": 7694, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:16.453Z debug frostfs-node/morph.go:229 new block {"index": 7693} -2023-12-16T14:17:16.779Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7693, "blockHeight": 7693, "took": "14.692001ms"} -2023-12-16T14:17:17.452Z INFO sending PrepareRequest {"height": 7694, "view": 0} -2023-12-16T14:17:17.452Z INFO sending Commit {"height": 7694, "view": 0} -2023-12-16T14:17:17.452Z INFO approving block {"height": 7694, "hash": "7f4103e6aea07c88689be7f454d420cf9fe597116c0700f37a3618f81cd2a519", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "771319abdaaf2ec9a708d289174ad25088922044eec9ca9744dded9b15bbe895"} -2023-12-16T14:17:17.454Z INFO initializing dbft {"height": 7695, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:17.454Z debug frostfs-node/morph.go:229 new block {"index": 7694} -2023-12-16T14:17:17.780Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7694, "blockHeight": 7694, "took": "15.447845ms"} -2023-12-16T14:17:18.453Z INFO sending PrepareRequest {"height": 7695, "view": 0} -2023-12-16T14:17:18.453Z INFO sending Commit {"height": 7695, "view": 0} -2023-12-16T14:17:18.454Z INFO approving block {"height": 7695, "hash": "ec45710abd8eeb24e374d93f8c4d98ee25a0f526adcfe77a2b725c6958ce5f9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f4103e6aea07c88689be7f454d420cf9fe597116c0700f37a3618f81cd2a519"} -2023-12-16T14:17:18.456Z INFO initializing dbft {"height": 7696, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:18.457Z debug frostfs-node/morph.go:229 new block {"index": 7695} -2023-12-16T14:17:18.790Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7695, "blockHeight": 7695, "took": "25.370845ms"} -2023-12-16T14:17:19.455Z INFO sending PrepareRequest {"height": 7696, "view": 0} -2023-12-16T14:17:19.455Z INFO sending Commit {"height": 7696, "view": 0} -2023-12-16T14:17:19.456Z INFO approving block {"height": 7696, "hash": "79f307ded83bcf7e14fc98bf25ce8da8202480290acf4e172f859bca28a5fb11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec45710abd8eeb24e374d93f8c4d98ee25a0f526adcfe77a2b725c6958ce5f9d"} -2023-12-16T14:17:19.457Z INFO initializing dbft {"height": 7697, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:19.458Z debug frostfs-node/morph.go:229 new block {"index": 7696} -2023-12-16T14:17:19.780Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7696, "blockHeight": 7696, "took": "14.186783ms"} -2023-12-16T14:17:20.457Z INFO sending PrepareRequest {"height": 7697, "view": 0} -2023-12-16T14:17:20.457Z INFO sending Commit {"height": 7697, "view": 0} -2023-12-16T14:17:20.458Z INFO approving block {"height": 7697, "hash": "1e279100ef1eac3272681d10cf794f5aedd09c6789561a555ca6db56e70fa4b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79f307ded83bcf7e14fc98bf25ce8da8202480290acf4e172f859bca28a5fb11"} -2023-12-16T14:17:20.460Z INFO initializing dbft {"height": 7698, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:20.460Z debug frostfs-node/morph.go:229 new block {"index": 7697} -2023-12-16T14:17:20.782Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7697, "blockHeight": 7697, "took": "14.717604ms"} -2023-12-16T14:17:21.459Z INFO sending PrepareRequest {"height": 7698, "view": 0} -2023-12-16T14:17:21.459Z INFO sending Commit {"height": 7698, "view": 0} -2023-12-16T14:17:21.460Z INFO approving block {"height": 7698, "hash": "c0cef2d23c1bee2fe46e3ee6715d56008475035ce9e4218f4688713de3cead8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e279100ef1eac3272681d10cf794f5aedd09c6789561a555ca6db56e70fa4b4"} -2023-12-16T14:17:21.462Z INFO initializing dbft {"height": 7699, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:21.464Z debug frostfs-node/morph.go:229 new block {"index": 7698} -2023-12-16T14:17:21.783Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7698, "blockHeight": 7698, "took": "15.174749ms"} -2023-12-16T14:17:22.462Z INFO sending PrepareRequest {"height": 7699, "view": 0} -2023-12-16T14:17:22.462Z INFO sending Commit {"height": 7699, "view": 0} -2023-12-16T14:17:22.462Z INFO approving block {"height": 7699, "hash": "9e3dcb7445c52d3f70e9110b7886c33cbaa21b0eaf1d17cc5af31d92ead2973b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0cef2d23c1bee2fe46e3ee6715d56008475035ce9e4218f4688713de3cead8a"} -2023-12-16T14:17:22.463Z INFO initializing dbft {"height": 7700, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:22.464Z debug frostfs-node/morph.go:229 new block {"index": 7699} -2023-12-16T14:17:22.784Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7699, "blockHeight": 7699, "took": "14.845234ms"} -2023-12-16T14:17:23.463Z INFO sending PrepareRequest {"height": 7700, "view": 0} -2023-12-16T14:17:23.463Z INFO sending Commit {"height": 7700, "view": 0} -2023-12-16T14:17:23.464Z INFO approving block {"height": 7700, "hash": "d29de725a7e2a71f41cd5c18703df8c36edeca65cb10a31c5ef24ba466f627c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e3dcb7445c52d3f70e9110b7886c33cbaa21b0eaf1d17cc5af31d92ead2973b"} -2023-12-16T14:17:23.465Z INFO initializing dbft {"height": 7701, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:23.466Z debug frostfs-node/morph.go:229 new block {"index": 7700} -2023-12-16T14:17:23.469Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:17:23.474Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:17:23.474Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:17:23.782Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7700, "blockHeight": 7700, "took": "11.698879ms"} -2023-12-16T14:17:24.464Z INFO sending PrepareRequest {"height": 7701, "view": 0} -2023-12-16T14:17:24.465Z INFO sending Commit {"height": 7701, "view": 0} -2023-12-16T14:17:24.465Z INFO approving block {"height": 7701, "hash": "d4a4ececdab33f0a257bad9ab0725661e765684f6d6fe7a92acd0c867cdfbcf2", "tx_count": 2, "merkle": "00f4f4142bf0ce87b12bca3537a70570bef5200d10b730e0e9b31423e66bcc70", "prev": "d29de725a7e2a71f41cd5c18703df8c36edeca65cb10a31c5ef24ba466f627c8"} -2023-12-16T14:17:24.466Z INFO runtime log {"tx": "840b55fd72800f1e4adb3afc95c09b2d6d66e0e078b486f3b0bd2a8b98be821d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:17:24.466Z INFO runtime log {"tx": "840b55fd72800f1e4adb3afc95c09b2d6d66e0e078b486f3b0bd2a8b98be821d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:17:24.467Z INFO initializing dbft {"height": 7702, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:24.469Z debug frostfs-node/morph.go:229 new block {"index": 7701} -2023-12-16T14:17:24.789Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7701, "blockHeight": 7701, "took": "17.018871ms"} -2023-12-16T14:17:25.467Z INFO sending PrepareRequest {"height": 7702, "view": 0} -2023-12-16T14:17:25.467Z INFO sending Commit {"height": 7702, "view": 0} -2023-12-16T14:17:25.470Z INFO approving block {"height": 7702, "hash": "7328f0bda1c53610801998ec8c0a1b4d6faa7279390538119ee21031b15cb0c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4a4ececdab33f0a257bad9ab0725661e765684f6d6fe7a92acd0c867cdfbcf2"} -2023-12-16T14:17:25.472Z INFO initializing dbft {"height": 7703, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:25.473Z debug frostfs-node/morph.go:229 new block {"index": 7702} -2023-12-16T14:17:25.786Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7702, "blockHeight": 7702, "took": "12.469138ms"} -2023-12-16T14:17:26.472Z INFO sending PrepareRequest {"height": 7703, "view": 0} -2023-12-16T14:17:26.472Z INFO sending Commit {"height": 7703, "view": 0} -2023-12-16T14:17:26.472Z INFO approving block {"height": 7703, "hash": "e3bdf53d966085eba850e539e4fa7bdc7e9b28350c38c96caf69ebd59380ca88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7328f0bda1c53610801998ec8c0a1b4d6faa7279390538119ee21031b15cb0c9"} -2023-12-16T14:17:26.474Z INFO initializing dbft {"height": 7704, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:26.475Z debug frostfs-node/morph.go:229 new block {"index": 7703} -2023-12-16T14:17:26.785Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7703, "blockHeight": 7703, "took": "10.833675ms"} -2023-12-16T14:17:27.473Z INFO sending PrepareRequest {"height": 7704, "view": 0} -2023-12-16T14:17:27.473Z INFO sending Commit {"height": 7704, "view": 0} -2023-12-16T14:17:27.474Z INFO approving block {"height": 7704, "hash": "68375010fa84eea5fd5a82d71d8c9de0e4b2ac678b60ef87f65ccec9b5d81d8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3bdf53d966085eba850e539e4fa7bdc7e9b28350c38c96caf69ebd59380ca88"} -2023-12-16T14:17:27.475Z INFO initializing dbft {"height": 7705, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:27.476Z debug frostfs-node/morph.go:229 new block {"index": 7704} -2023-12-16T14:17:27.783Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7704, "blockHeight": 7704, "took": "8.528189ms"} -2023-12-16T14:17:28.475Z INFO sending PrepareRequest {"height": 7705, "view": 0} -2023-12-16T14:17:28.476Z INFO sending Commit {"height": 7705, "view": 0} -2023-12-16T14:17:28.476Z INFO approving block {"height": 7705, "hash": "a5847342708c9371ce73afb2baca00ee8bdf7c833cb539b02688772e9b4e2954", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68375010fa84eea5fd5a82d71d8c9de0e4b2ac678b60ef87f65ccec9b5d81d8f"} -2023-12-16T14:17:28.478Z INFO initializing dbft {"height": 7706, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:28.479Z debug frostfs-node/morph.go:229 new block {"index": 7705} -2023-12-16T14:17:28.786Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7705, "blockHeight": 7705, "took": "10.53352ms"} -2023-12-16T14:17:29.478Z INFO sending PrepareRequest {"height": 7706, "view": 0} -2023-12-16T14:17:29.478Z INFO sending Commit {"height": 7706, "view": 0} -2023-12-16T14:17:29.478Z INFO approving block {"height": 7706, "hash": "34777e8c9c56feeb6ee6273ed6896f218cdf425c7233c717c028632da8502445", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5847342708c9371ce73afb2baca00ee8bdf7c833cb539b02688772e9b4e2954"} -2023-12-16T14:17:29.480Z INFO initializing dbft {"height": 7707, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:29.481Z debug frostfs-node/morph.go:229 new block {"index": 7706} -2023-12-16T14:17:29.786Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7706, "blockHeight": 7706, "took": "10.6618ms"} -2023-12-16T14:17:30.479Z INFO sending PrepareRequest {"height": 7707, "view": 0} -2023-12-16T14:17:30.479Z INFO sending Commit {"height": 7707, "view": 0} -2023-12-16T14:17:30.480Z INFO approving block {"height": 7707, "hash": "c0493d1c35a5601d295fdea3d10de27a38f0a023ae87f19efe6129a07dbc0d5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34777e8c9c56feeb6ee6273ed6896f218cdf425c7233c717c028632da8502445"} -2023-12-16T14:17:30.481Z INFO initializing dbft {"height": 7708, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:30.482Z debug frostfs-node/morph.go:229 new block {"index": 7707} -2023-12-16T14:17:30.788Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7707, "blockHeight": 7707, "took": "11.509856ms"} -2023-12-16T14:17:31.481Z INFO sending PrepareRequest {"height": 7708, "view": 0} -2023-12-16T14:17:31.481Z INFO sending Commit {"height": 7708, "view": 0} -2023-12-16T14:17:31.482Z INFO approving block {"height": 7708, "hash": "35755e96ebc7c682de7455c713d768fb5eb2ff0a7ee59d32a5548e1ba12ce168", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0493d1c35a5601d295fdea3d10de27a38f0a023ae87f19efe6129a07dbc0d5b"} -2023-12-16T14:17:31.484Z INFO initializing dbft {"height": 7709, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:31.484Z debug frostfs-node/morph.go:229 new block {"index": 7708} -2023-12-16T14:17:31.785Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7708, "blockHeight": 7708, "took": "8.112573ms"} -2023-12-16T14:17:32.483Z INFO sending PrepareRequest {"height": 7709, "view": 0} -2023-12-16T14:17:32.483Z INFO sending Commit {"height": 7709, "view": 0} -2023-12-16T14:17:32.484Z INFO approving block {"height": 7709, "hash": "f83a43a436d19008cffa2531caad9df925137b3c16fbbc930023a5e267bd9a87", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35755e96ebc7c682de7455c713d768fb5eb2ff0a7ee59d32a5548e1ba12ce168"} -2023-12-16T14:17:32.485Z INFO initializing dbft {"height": 7710, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:32.486Z debug frostfs-node/morph.go:229 new block {"index": 7709} -2023-12-16T14:17:32.787Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7709, "blockHeight": 7709, "took": "9.62063ms"} -2023-12-16T14:17:33.485Z INFO sending PrepareRequest {"height": 7710, "view": 0} -2023-12-16T14:17:33.485Z INFO sending Commit {"height": 7710, "view": 0} -2023-12-16T14:17:33.486Z INFO approving block {"height": 7710, "hash": "cebb1c58fac1569e2aa5898d67505979cf3f8c83ebdcf91e1a5b3835c63c3189", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f83a43a436d19008cffa2531caad9df925137b3c16fbbc930023a5e267bd9a87"} -2023-12-16T14:17:33.488Z INFO initializing dbft {"height": 7711, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:33.489Z debug frostfs-node/morph.go:229 new block {"index": 7710} -2023-12-16T14:17:33.497Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:17:33.500Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 32, "iteration": 3, "error": "no data for 2 iteration in 32 epoch for consumers's trusts"} -2023-12-16T14:17:33.502Z INFO runtime log {"tx": "fde0317267321fb55ef382b90b79a50b0e30f5b3d7b65460e24dff32f5414bb8", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:17:33.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7710, "blockHeight": 7710, "took": "13.690969ms"} -2023-12-16T14:17:34.487Z INFO sending PrepareRequest {"height": 7711, "view": 0} -2023-12-16T14:17:34.487Z INFO sending Commit {"height": 7711, "view": 0} -2023-12-16T14:17:34.487Z INFO approving block {"height": 7711, "hash": "535351541ea8e937aa503c4c4d5f27c435f0d748424038bfb9e3d1ff721bd451", "tx_count": 1, "merkle": "356625f3668802e3eef40d39b5a8bd51f6124a8aa77f435c3b2de4a7ffe73b96", "prev": "cebb1c58fac1569e2aa5898d67505979cf3f8c83ebdcf91e1a5b3835c63c3189"} -2023-12-16T14:17:34.489Z INFO runtime log {"tx": "963be7ffa7e42d3b5c437fa78a4a12f651bda8b5390df4eee3028866f3256635", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:17:34.491Z INFO initializing dbft {"height": 7712, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:34.492Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 34} -2023-12-16T14:17:34.492Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:17:34.493Z debug frostfs-node/morph.go:229 new block {"index": 7711} -2023-12-16T14:17:34.493Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:17:34.493Z debug controller/calls.go:95 starting to report local trust values {"epoch": 33} -2023-12-16T14:17:34.493Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 33} -2023-12-16T14:17:34.494Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 34} -2023-12-16T14:17:34.494Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 34} -2023-12-16T14:17:34.495Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 34} -2023-12-16T14:17:34.492Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 34} -2023-12-16T14:17:34.498Z debug controller/calls.go:146 reporting successfully finished {"epoch": 33} -2023-12-16T14:17:34.498Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 33} -2023-12-16T14:17:34.500Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:17:34.504Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7714, "tx_hash": "bef59ae5f397c95e6fa8189ac5fc22e9ef873105bf4c6e2d3144908c9997fb7f"} -2023-12-16T14:17:34.507Z INFO runtime log {"tx": "b2d9c5c6b57ff0c5e5fad0d8ca68bca4b090b064b390b7dc150435aab943c8f2", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:17:34.521Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:17:34.521Z info audit/handlers.go:13 new round of audit {"epoch": 34} -2023-12-16T14:17:34.522Z info settlement/calls.go:26 new audit settlement event {"epoch": 34} -2023-12-16T14:17:34.522Z info settlement/handlers.go:14 process audit settlements {"epoch": 34} -2023-12-16T14:17:34.522Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 34} -2023-12-16T14:17:34.524Z info settlement/handlers.go:18 audit processing finished {"epoch": 34} -2023-12-16T14:17:34.525Z info audit/process.go:39 select containers for audit {"epoch": 34, "amount": 0} -2023-12-16T14:17:34.529Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7714, "tx_hash": "b92ca8e8aaef5dca00f568915c1008d408776a7062af40156fa11f981a00eca7"} -2023-12-16T14:17:34.797Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 7711, "blockHeight": 7711, "took": "17.50731ms"} -2023-12-16T14:17:35.489Z INFO sending PrepareRequest {"height": 7712, "view": 0} -2023-12-16T14:17:35.490Z INFO sending Commit {"height": 7712, "view": 0} -2023-12-16T14:17:35.491Z INFO approving block {"height": 7712, "hash": "bc8dd68b14250f22a4f41083dea50dccf4c59789b34b35bd18c119a376d140b8", "tx_count": 3, "merkle": "5fc1e4481fae7907604115f90236c49195e554521e780554b72a193517fd4d74", "prev": "535351541ea8e937aa503c4c4d5f27c435f0d748424038bfb9e3d1ff721bd451"} -2023-12-16T14:17:35.492Z INFO runtime log {"tx": "1759820f452543f2a145f8468cd06215f356fbfe3de3a13f9e3a9bb3aedf748d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:17:35.494Z INFO initializing dbft {"height": 7713, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:35.495Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 33} -2023-12-16T14:17:35.495Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 33} -2023-12-16T14:17:35.495Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 33} -2023-12-16T14:17:35.496Z debug frostfs-node/morph.go:229 new block {"index": 7712} -2023-12-16T14:17:35.803Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 7712, "blockHeight": 7712, "took": "22.705753ms"} -2023-12-16T14:17:36.492Z INFO sending PrepareRequest {"height": 7713, "view": 0} -2023-12-16T14:17:36.493Z INFO sending Commit {"height": 7713, "view": 0} -2023-12-16T14:17:36.493Z INFO approving block {"height": 7713, "hash": "c9db76c8d920ba4a7fb591f694265126778bcbebdf7de027e5c74379878a1ae0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc8dd68b14250f22a4f41083dea50dccf4c59789b34b35bd18c119a376d140b8"} -2023-12-16T14:17:36.495Z INFO initializing dbft {"height": 7714, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:36.496Z debug frostfs-node/morph.go:229 new block {"index": 7713} -2023-12-16T14:17:36.791Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7713, "blockHeight": 7713, "took": "9.310269ms"} -2023-12-16T14:17:37.494Z INFO sending PrepareRequest {"height": 7714, "view": 0} -2023-12-16T14:17:37.494Z INFO sending Commit {"height": 7714, "view": 0} -2023-12-16T14:17:37.495Z INFO approving block {"height": 7714, "hash": "b8d17afdf2e4e9d4b7da262b6fd9887f6b90351c3bab89d49139833a21bc0ee1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9db76c8d920ba4a7fb591f694265126778bcbebdf7de027e5c74379878a1ae0"} -2023-12-16T14:17:37.497Z INFO initializing dbft {"height": 7715, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:37.498Z debug frostfs-node/morph.go:229 new block {"index": 7714} -2023-12-16T14:17:37.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7714, "blockHeight": 7714, "took": "9.60261ms"} -2023-12-16T14:17:38.496Z INFO sending PrepareRequest {"height": 7715, "view": 0} -2023-12-16T14:17:38.496Z INFO sending Commit {"height": 7715, "view": 0} -2023-12-16T14:17:38.497Z INFO approving block {"height": 7715, "hash": "da67fc415b595fe398ae9913fb3568146416a41724d229a09f5ac906d8571fc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8d17afdf2e4e9d4b7da262b6fd9887f6b90351c3bab89d49139833a21bc0ee1"} -2023-12-16T14:17:38.499Z INFO initializing dbft {"height": 7716, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:38.500Z debug frostfs-node/morph.go:229 new block {"index": 7715} -2023-12-16T14:17:38.797Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7715, "blockHeight": 7715, "took": "14.183728ms"} -2023-12-16T14:17:39.498Z INFO sending PrepareRequest {"height": 7716, "view": 0} -2023-12-16T14:17:39.499Z INFO sending Commit {"height": 7716, "view": 0} -2023-12-16T14:17:39.501Z INFO approving block {"height": 7716, "hash": "623a32446ac24ee8b1dac60d6b05884c967fe5f26d7d261e5c2342c6ddfd5319", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da67fc415b595fe398ae9913fb3568146416a41724d229a09f5ac906d8571fc5"} -2023-12-16T14:17:39.502Z INFO initializing dbft {"height": 7717, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:39.504Z debug frostfs-node/morph.go:229 new block {"index": 7716} -2023-12-16T14:17:39.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7716, "blockHeight": 7716, "took": "10.87089ms"} -2023-12-16T14:17:40.502Z INFO sending PrepareRequest {"height": 7717, "view": 0} -2023-12-16T14:17:40.502Z INFO sending Commit {"height": 7717, "view": 0} -2023-12-16T14:17:40.503Z INFO approving block {"height": 7717, "hash": "bbf82f6501b626e5d2ab70540539775ce53f086cd25d2be41c9bd523e406f5e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "623a32446ac24ee8b1dac60d6b05884c967fe5f26d7d261e5c2342c6ddfd5319"} -2023-12-16T14:17:40.504Z INFO initializing dbft {"height": 7718, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:40.504Z debug frostfs-node/morph.go:229 new block {"index": 7717} -2023-12-16T14:17:40.793Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7717, "blockHeight": 7717, "took": "8.942288ms"} -2023-12-16T14:17:41.504Z INFO sending PrepareRequest {"height": 7718, "view": 0} -2023-12-16T14:17:41.504Z INFO sending Commit {"height": 7718, "view": 0} -2023-12-16T14:17:41.504Z INFO approving block {"height": 7718, "hash": "5b33604079ea791737edf8ce41adf29cbe71db5043f02353f4130ba6da48e049", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbf82f6501b626e5d2ab70540539775ce53f086cd25d2be41c9bd523e406f5e7"} -2023-12-16T14:17:41.506Z INFO initializing dbft {"height": 7719, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:41.507Z debug frostfs-node/morph.go:229 new block {"index": 7718} -2023-12-16T14:17:41.796Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7718, "blockHeight": 7718, "took": "11.416592ms"} -2023-12-16T14:17:42.506Z INFO sending PrepareRequest {"height": 7719, "view": 0} -2023-12-16T14:17:42.506Z INFO sending Commit {"height": 7719, "view": 0} -2023-12-16T14:17:42.506Z INFO approving block {"height": 7719, "hash": "61c152d62b2e7e58d8a9a9055c5fbd4ec7963f447e0a10b8511142fd15eb63f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b33604079ea791737edf8ce41adf29cbe71db5043f02353f4130ba6da48e049"} -2023-12-16T14:17:42.508Z INFO initializing dbft {"height": 7720, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:42.509Z debug frostfs-node/morph.go:229 new block {"index": 7719} -2023-12-16T14:17:42.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7719, "blockHeight": 7719, "took": "8.404945ms"} -2023-12-16T14:17:43.507Z INFO sending PrepareRequest {"height": 7720, "view": 0} -2023-12-16T14:17:43.508Z INFO sending Commit {"height": 7720, "view": 0} -2023-12-16T14:17:43.508Z INFO approving block {"height": 7720, "hash": "94e7c025b919d4655def99e9ef80db10139779c5d228fc0bc0ad9ea06aa997f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61c152d62b2e7e58d8a9a9055c5fbd4ec7963f447e0a10b8511142fd15eb63f1"} -2023-12-16T14:17:43.510Z INFO initializing dbft {"height": 7721, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:43.512Z debug frostfs-node/morph.go:229 new block {"index": 7720} -2023-12-16T14:17:43.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7720, "blockHeight": 7720, "took": "7.358034ms"} -2023-12-16T14:17:44.509Z INFO sending PrepareRequest {"height": 7721, "view": 0} -2023-12-16T14:17:44.509Z INFO sending Commit {"height": 7721, "view": 0} -2023-12-16T14:17:44.510Z INFO approving block {"height": 7721, "hash": "2b656d916e7ff67020f70932670e7744f8eb567576832ece732152226bfb2b67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94e7c025b919d4655def99e9ef80db10139779c5d228fc0bc0ad9ea06aa997f9"} -2023-12-16T14:17:44.511Z INFO initializing dbft {"height": 7722, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:44.511Z debug frostfs-node/morph.go:229 new block {"index": 7721} -2023-12-16T14:17:44.798Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7721, "blockHeight": 7721, "took": "10.306011ms"} -2023-12-16T14:17:45.511Z INFO sending PrepareRequest {"height": 7722, "view": 0} -2023-12-16T14:17:45.511Z INFO sending Commit {"height": 7722, "view": 0} -2023-12-16T14:17:45.511Z INFO approving block {"height": 7722, "hash": "9a744282449ef7f274d930e39b87cddcfa6eef0f01730fac967f714589f8db1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b656d916e7ff67020f70932670e7744f8eb567576832ece732152226bfb2b67"} -2023-12-16T14:17:45.512Z INFO initializing dbft {"height": 7723, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:45.513Z debug frostfs-node/morph.go:229 new block {"index": 7722} -2023-12-16T14:17:45.798Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7722, "blockHeight": 7722, "took": "10.292608ms"} -2023-12-16T14:17:46.512Z INFO sending PrepareRequest {"height": 7723, "view": 0} -2023-12-16T14:17:46.513Z INFO sending Commit {"height": 7723, "view": 0} -2023-12-16T14:17:46.513Z INFO approving block {"height": 7723, "hash": "b31d7f98117e37ddcc2a2af70af116bafd45f0ca0f936b9f80ae57f4546db127", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a744282449ef7f274d930e39b87cddcfa6eef0f01730fac967f714589f8db1d"} -2023-12-16T14:17:46.515Z INFO initializing dbft {"height": 7724, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:46.516Z debug frostfs-node/morph.go:229 new block {"index": 7723} -2023-12-16T14:17:46.804Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7723, "blockHeight": 7723, "took": "14.847212ms"} -2023-12-16T14:17:47.514Z INFO sending PrepareRequest {"height": 7724, "view": 0} -2023-12-16T14:17:47.514Z INFO sending Commit {"height": 7724, "view": 0} -2023-12-16T14:17:47.515Z INFO approving block {"height": 7724, "hash": "5de8e4b7aca5d305082105e29c3a43d4c9348f4680fd4886849fbd80cddef96f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b31d7f98117e37ddcc2a2af70af116bafd45f0ca0f936b9f80ae57f4546db127"} -2023-12-16T14:17:47.516Z INFO initializing dbft {"height": 7725, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:47.517Z debug frostfs-node/morph.go:229 new block {"index": 7724} -2023-12-16T14:17:47.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7724, "blockHeight": 7724, "took": "15.716138ms"} -2023-12-16T14:17:48.516Z INFO sending PrepareRequest {"height": 7725, "view": 0} -2023-12-16T14:17:48.517Z INFO sending Commit {"height": 7725, "view": 0} -2023-12-16T14:17:48.517Z INFO approving block {"height": 7725, "hash": "29415aa7e204cd6ba8b93e82f5ba5efbdff93ccb67ccfa70be77c4f1391230f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5de8e4b7aca5d305082105e29c3a43d4c9348f4680fd4886849fbd80cddef96f"} -2023-12-16T14:17:48.520Z INFO initializing dbft {"height": 7726, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:48.522Z debug frostfs-node/morph.go:229 new block {"index": 7725} -2023-12-16T14:17:48.810Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7725, "blockHeight": 7725, "took": "20.261776ms"} -2023-12-16T14:17:49.519Z INFO sending PrepareRequest {"height": 7726, "view": 0} -2023-12-16T14:17:49.519Z INFO sending Commit {"height": 7726, "view": 0} -2023-12-16T14:17:49.520Z INFO approving block {"height": 7726, "hash": "b206c0db8a8f09a81135e904accb69731816b00f3a5664e2e9c8e5ce44964040", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29415aa7e204cd6ba8b93e82f5ba5efbdff93ccb67ccfa70be77c4f1391230f5"} -2023-12-16T14:17:49.521Z INFO initializing dbft {"height": 7727, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:49.522Z debug frostfs-node/morph.go:229 new block {"index": 7726} -2023-12-16T14:17:49.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7726, "blockHeight": 7726, "took": "10.054198ms"} -2023-12-16T14:17:50.522Z INFO sending PrepareRequest {"height": 7727, "view": 0} -2023-12-16T14:17:50.522Z INFO sending Commit {"height": 7727, "view": 0} -2023-12-16T14:17:50.523Z INFO approving block {"height": 7727, "hash": "04229ba23e948de8b501d63c6484865561ccb9700660817ad62216f9d77e6bec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b206c0db8a8f09a81135e904accb69731816b00f3a5664e2e9c8e5ce44964040"} -2023-12-16T14:17:50.525Z INFO initializing dbft {"height": 7728, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:50.526Z debug frostfs-node/morph.go:229 new block {"index": 7727} -2023-12-16T14:17:50.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7727, "blockHeight": 7727, "took": "9.895108ms"} -2023-12-16T14:17:51.524Z INFO sending PrepareRequest {"height": 7728, "view": 0} -2023-12-16T14:17:51.524Z INFO sending Commit {"height": 7728, "view": 0} -2023-12-16T14:17:51.525Z INFO approving block {"height": 7728, "hash": "14ca475313aa5d06c93f332487140c83b0a9f079803bc31e712c7189331ae722", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04229ba23e948de8b501d63c6484865561ccb9700660817ad62216f9d77e6bec"} -2023-12-16T14:17:51.526Z INFO initializing dbft {"height": 7729, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:51.527Z debug frostfs-node/morph.go:229 new block {"index": 7728} -2023-12-16T14:17:51.802Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7728, "blockHeight": 7728, "took": "10.030387ms"} -2023-12-16T14:17:52.526Z INFO sending PrepareRequest {"height": 7729, "view": 0} -2023-12-16T14:17:52.526Z INFO sending Commit {"height": 7729, "view": 0} -2023-12-16T14:17:52.527Z INFO approving block {"height": 7729, "hash": "479a5c1fb51857ffbb78a3d42d06591d5a65a83ebdbb189c0223299294b786bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14ca475313aa5d06c93f332487140c83b0a9f079803bc31e712c7189331ae722"} -2023-12-16T14:17:52.530Z INFO initializing dbft {"height": 7730, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:52.531Z debug frostfs-node/morph.go:229 new block {"index": 7729} -2023-12-16T14:17:52.843Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7729, "blockHeight": 7729, "took": "50.511125ms"} -2023-12-16T14:17:53.528Z INFO sending PrepareRequest {"height": 7730, "view": 0} -2023-12-16T14:17:53.528Z INFO sending Commit {"height": 7730, "view": 0} -2023-12-16T14:17:53.529Z INFO approving block {"height": 7730, "hash": "dee6812c35b9c6290756488f93859fe3ba96e047f43e89670ab821b5c4a2cadd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "479a5c1fb51857ffbb78a3d42d06591d5a65a83ebdbb189c0223299294b786bd"} -2023-12-16T14:17:53.535Z INFO initializing dbft {"height": 7731, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:53.536Z debug frostfs-node/morph.go:229 new block {"index": 7730} -2023-12-16T14:17:53.800Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7730, "blockHeight": 7730, "took": "7.441952ms"} -2023-12-16T14:17:54.531Z INFO sending PrepareRequest {"height": 7731, "view": 0} -2023-12-16T14:17:54.531Z INFO sending Commit {"height": 7731, "view": 0} -2023-12-16T14:17:54.532Z INFO approving block {"height": 7731, "hash": "29b63a421f732af6db21ca55af4846018b5fc42a94fe6c474972d28cd24bae4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dee6812c35b9c6290756488f93859fe3ba96e047f43e89670ab821b5c4a2cadd"} -2023-12-16T14:17:54.533Z INFO initializing dbft {"height": 7732, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:54.534Z debug frostfs-node/morph.go:229 new block {"index": 7731} -2023-12-16T14:17:54.808Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7731, "blockHeight": 7731, "took": "13.707267ms"} -2023-12-16T14:17:55.533Z INFO sending PrepareRequest {"height": 7732, "view": 0} -2023-12-16T14:17:55.533Z INFO sending Commit {"height": 7732, "view": 0} -2023-12-16T14:17:55.534Z INFO approving block {"height": 7732, "hash": "a398f9b444eb88d03cbb05897749b637b4ad56a5f4bde59c62399fc0134f76af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29b63a421f732af6db21ca55af4846018b5fc42a94fe6c474972d28cd24bae4a"} -2023-12-16T14:17:55.535Z INFO initializing dbft {"height": 7733, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:55.536Z debug frostfs-node/morph.go:229 new block {"index": 7732} -2023-12-16T14:17:55.803Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7732, "blockHeight": 7732, "took": "7.361731ms"} -2023-12-16T14:17:56.535Z INFO sending PrepareRequest {"height": 7733, "view": 0} -2023-12-16T14:17:56.535Z INFO sending Commit {"height": 7733, "view": 0} -2023-12-16T14:17:56.536Z INFO approving block {"height": 7733, "hash": "cc5a99ed9100de946af5ad2856020251162c7cc71d380641c1cd0ea429c8d8fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a398f9b444eb88d03cbb05897749b637b4ad56a5f4bde59c62399fc0134f76af"} -2023-12-16T14:17:56.537Z INFO initializing dbft {"height": 7734, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:56.538Z debug frostfs-node/morph.go:229 new block {"index": 7733} -2023-12-16T14:17:56.808Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7733, "blockHeight": 7733, "took": "11.078934ms"} -2023-12-16T14:17:57.537Z INFO sending PrepareRequest {"height": 7734, "view": 0} -2023-12-16T14:17:57.537Z INFO sending Commit {"height": 7734, "view": 0} -2023-12-16T14:17:57.538Z INFO approving block {"height": 7734, "hash": "d99d1e639f38abf8320670846a114aa2ffc5a034c12293a2dc7ec566ec715968", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc5a99ed9100de946af5ad2856020251162c7cc71d380641c1cd0ea429c8d8fd"} -2023-12-16T14:17:57.539Z INFO initializing dbft {"height": 7735, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:57.540Z debug frostfs-node/morph.go:229 new block {"index": 7734} -2023-12-16T14:17:57.812Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7734, "blockHeight": 7734, "took": "14.929135ms"} -2023-12-16T14:17:58.539Z INFO sending PrepareRequest {"height": 7735, "view": 0} -2023-12-16T14:17:58.539Z INFO sending Commit {"height": 7735, "view": 0} -2023-12-16T14:17:58.540Z INFO approving block {"height": 7735, "hash": "33e187a01a9cedde13dce61170892f900e6a008ae5ceb7d75b1763ee18c439e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d99d1e639f38abf8320670846a114aa2ffc5a034c12293a2dc7ec566ec715968"} -2023-12-16T14:17:58.541Z INFO initializing dbft {"height": 7736, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:58.542Z debug frostfs-node/morph.go:229 new block {"index": 7735} -2023-12-16T14:17:58.807Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7735, "blockHeight": 7735, "took": "9.014813ms"} -2023-12-16T14:17:59.540Z INFO sending PrepareRequest {"height": 7736, "view": 0} -2023-12-16T14:17:59.541Z INFO sending Commit {"height": 7736, "view": 0} -2023-12-16T14:17:59.541Z INFO approving block {"height": 7736, "hash": "9eb7d13ced878fc05213a588b5d118d53066b6a0f48d1d61faf92eb320a5114e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33e187a01a9cedde13dce61170892f900e6a008ae5ceb7d75b1763ee18c439e9"} -2023-12-16T14:17:59.543Z INFO initializing dbft {"height": 7737, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:17:59.543Z debug frostfs-node/morph.go:229 new block {"index": 7736} -2023-12-16T14:17:59.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7736, "blockHeight": 7736, "took": "7.409447ms"} -2023-12-16T14:18:00.542Z INFO sending PrepareRequest {"height": 7737, "view": 0} -2023-12-16T14:18:00.542Z INFO sending Commit {"height": 7737, "view": 0} -2023-12-16T14:18:00.543Z INFO approving block {"height": 7737, "hash": "f050830b6539195226a74dbf26e9fc3b182e8a67a839a9284596cc2ff4a15aaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9eb7d13ced878fc05213a588b5d118d53066b6a0f48d1d61faf92eb320a5114e"} -2023-12-16T14:18:00.544Z INFO initializing dbft {"height": 7738, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:00.544Z debug frostfs-node/morph.go:229 new block {"index": 7737} -2023-12-16T14:18:00.818Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7737, "blockHeight": 7737, "took": "18.180032ms"} -2023-12-16T14:18:01.544Z INFO sending PrepareRequest {"height": 7738, "view": 0} -2023-12-16T14:18:01.544Z INFO sending Commit {"height": 7738, "view": 0} -2023-12-16T14:18:01.545Z INFO approving block {"height": 7738, "hash": "aad8ea381a858118b2a3a146d3d5cd8c4b3c211f997671df03ee6e0f8f336b39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f050830b6539195226a74dbf26e9fc3b182e8a67a839a9284596cc2ff4a15aaa"} -2023-12-16T14:18:01.547Z INFO initializing dbft {"height": 7739, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:01.548Z debug frostfs-node/morph.go:229 new block {"index": 7738} -2023-12-16T14:18:01.872Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7738, "blockHeight": 7738, "took": "72.291593ms"} -2023-12-16T14:18:02.547Z INFO sending PrepareRequest {"height": 7739, "view": 0} -2023-12-16T14:18:02.548Z INFO sending Commit {"height": 7739, "view": 0} -2023-12-16T14:18:02.548Z INFO approving block {"height": 7739, "hash": "6c7c87d2e721da501e88eac104a6e403b7bc153db08b7535a16da290716f1dbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad8ea381a858118b2a3a146d3d5cd8c4b3c211f997671df03ee6e0f8f336b39"} -2023-12-16T14:18:02.550Z INFO initializing dbft {"height": 7740, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:02.551Z debug frostfs-node/morph.go:229 new block {"index": 7739} -2023-12-16T14:18:02.810Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7739, "blockHeight": 7739, "took": "9.283072ms"} -2023-12-16T14:18:03.552Z INFO sending PrepareRequest {"height": 7740, "view": 0} -2023-12-16T14:18:03.552Z INFO sending Commit {"height": 7740, "view": 0} -2023-12-16T14:18:03.552Z INFO approving block {"height": 7740, "hash": "e3382f8428abc1ba7cecd441135c2665fabb98bfe2bb3764e46ca9bfa0242cbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c7c87d2e721da501e88eac104a6e403b7bc153db08b7535a16da290716f1dbd"} -2023-12-16T14:18:03.553Z INFO initializing dbft {"height": 7741, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:03.554Z debug frostfs-node/morph.go:229 new block {"index": 7740} -2023-12-16T14:18:03.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7740, "blockHeight": 7740, "took": "12.723441ms"} -2023-12-16T14:18:04.554Z INFO sending PrepareRequest {"height": 7741, "view": 0} -2023-12-16T14:18:04.554Z INFO sending Commit {"height": 7741, "view": 0} -2023-12-16T14:18:04.554Z INFO approving block {"height": 7741, "hash": "54d67a48f0bf5a9c816c84c57146467a710a1e8041501d2b1935c43789fdd893", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3382f8428abc1ba7cecd441135c2665fabb98bfe2bb3764e46ca9bfa0242cbd"} -2023-12-16T14:18:04.556Z INFO initializing dbft {"height": 7742, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:04.557Z debug frostfs-node/morph.go:229 new block {"index": 7741} -2023-12-16T14:18:04.860Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7741, "blockHeight": 7741, "took": "57.429888ms"} -2023-12-16T14:18:05.555Z INFO sending PrepareRequest {"height": 7742, "view": 0} -2023-12-16T14:18:05.556Z INFO sending Commit {"height": 7742, "view": 0} -2023-12-16T14:18:05.556Z INFO approving block {"height": 7742, "hash": "f794dfcbe1dd8295f95a754bf5bf93e75965b44a5e40ff4a8e47811a6922fdab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54d67a48f0bf5a9c816c84c57146467a710a1e8041501d2b1935c43789fdd893"} -2023-12-16T14:18:05.558Z INFO initializing dbft {"height": 7743, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:05.559Z debug frostfs-node/morph.go:229 new block {"index": 7742} -2023-12-16T14:18:05.824Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7742, "blockHeight": 7742, "took": "20.458018ms"} -2023-12-16T14:18:06.558Z INFO sending PrepareRequest {"height": 7743, "view": 0} -2023-12-16T14:18:06.558Z INFO sending Commit {"height": 7743, "view": 0} -2023-12-16T14:18:06.559Z INFO approving block {"height": 7743, "hash": "4a1b95e7f7bc06dfd3faeb8f4df1159879149984c19394fde158d4ae5db1239f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f794dfcbe1dd8295f95a754bf5bf93e75965b44a5e40ff4a8e47811a6922fdab"} -2023-12-16T14:18:06.560Z INFO initializing dbft {"height": 7744, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:06.561Z debug frostfs-node/morph.go:229 new block {"index": 7743} -2023-12-16T14:18:06.816Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7743, "blockHeight": 7743, "took": "11.696761ms"} -2023-12-16T14:18:07.560Z INFO sending PrepareRequest {"height": 7744, "view": 0} -2023-12-16T14:18:07.560Z INFO sending Commit {"height": 7744, "view": 0} -2023-12-16T14:18:07.561Z INFO approving block {"height": 7744, "hash": "a90250aef5064aefc045ed3d65a1f9f43cf04b45e637e85d067016045a4ac1d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a1b95e7f7bc06dfd3faeb8f4df1159879149984c19394fde158d4ae5db1239f"} -2023-12-16T14:18:07.563Z INFO initializing dbft {"height": 7745, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:07.567Z debug frostfs-node/morph.go:229 new block {"index": 7744} -2023-12-16T14:18:07.816Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7744, "blockHeight": 7744, "took": "11.321391ms"} -2023-12-16T14:18:08.565Z INFO sending PrepareRequest {"height": 7745, "view": 0} -2023-12-16T14:18:08.565Z INFO sending Commit {"height": 7745, "view": 0} -2023-12-16T14:18:08.566Z INFO approving block {"height": 7745, "hash": "f3d7c7e07f08ba6734e4dc515837c2baa09fce246759675cf08149f73c87ec98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a90250aef5064aefc045ed3d65a1f9f43cf04b45e637e85d067016045a4ac1d1"} -2023-12-16T14:18:08.568Z INFO initializing dbft {"height": 7746, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:08.568Z debug frostfs-node/morph.go:229 new block {"index": 7745} -2023-12-16T14:18:08.815Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7745, "blockHeight": 7745, "took": "9.082765ms"} -2023-12-16T14:18:09.567Z INFO sending PrepareRequest {"height": 7746, "view": 0} -2023-12-16T14:18:09.568Z INFO sending Commit {"height": 7746, "view": 0} -2023-12-16T14:18:09.568Z INFO approving block {"height": 7746, "hash": "82f807bf72a81a8866e8eec7e2b177d234c06afb1b140c7a6558c4a1914161fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3d7c7e07f08ba6734e4dc515837c2baa09fce246759675cf08149f73c87ec98"} -2023-12-16T14:18:09.570Z INFO initializing dbft {"height": 7747, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:09.571Z debug frostfs-node/morph.go:229 new block {"index": 7746} -2023-12-16T14:18:09.908Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7746, "blockHeight": 7746, "took": "39.170164ms"} -2023-12-16T14:18:10.569Z INFO sending PrepareRequest {"height": 7747, "view": 0} -2023-12-16T14:18:10.569Z INFO sending Commit {"height": 7747, "view": 0} -2023-12-16T14:18:10.570Z INFO approving block {"height": 7747, "hash": "0c3c0db7601071668dce8cf98d983d5417443aee0fb92c515ac670925051985b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82f807bf72a81a8866e8eec7e2b177d234c06afb1b140c7a6558c4a1914161fd"} -2023-12-16T14:18:10.571Z INFO initializing dbft {"height": 7748, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:10.572Z debug frostfs-node/morph.go:229 new block {"index": 7747} -2023-12-16T14:18:10.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7747, "blockHeight": 7747, "took": "19.446997ms"} -2023-12-16T14:18:11.573Z INFO sending PrepareRequest {"height": 7748, "view": 0} -2023-12-16T14:18:11.573Z INFO sending Commit {"height": 7748, "view": 0} -2023-12-16T14:18:11.574Z INFO approving block {"height": 7748, "hash": "f7d6e328e97b0c819d4c63e30110cef4765b3c8568f283cd795f9578e81ffb40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c3c0db7601071668dce8cf98d983d5417443aee0fb92c515ac670925051985b"} -2023-12-16T14:18:11.576Z INFO initializing dbft {"height": 7749, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:11.577Z debug frostfs-node/morph.go:229 new block {"index": 7748} -2023-12-16T14:18:11.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7748, "blockHeight": 7748, "took": "12.704993ms"} -2023-12-16T14:18:12.575Z INFO sending PrepareRequest {"height": 7749, "view": 0} -2023-12-16T14:18:12.575Z INFO sending Commit {"height": 7749, "view": 0} -2023-12-16T14:18:12.575Z INFO approving block {"height": 7749, "hash": "4f5a95341ec7735ef2e713b221df0548eff139702045b7af0618ce1d5b07b1ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7d6e328e97b0c819d4c63e30110cef4765b3c8568f283cd795f9578e81ffb40"} -2023-12-16T14:18:12.577Z INFO initializing dbft {"height": 7750, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:12.578Z debug frostfs-node/morph.go:229 new block {"index": 7749} -2023-12-16T14:18:12.883Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7749, "blockHeight": 7749, "took": "10.725931ms"} -2023-12-16T14:18:13.577Z INFO sending PrepareRequest {"height": 7750, "view": 0} -2023-12-16T14:18:13.577Z INFO sending Commit {"height": 7750, "view": 0} -2023-12-16T14:18:13.578Z INFO approving block {"height": 7750, "hash": "0eb577a3dbfe0ea5cde44d5ab653b7b280072b746023277b448a9bb9f60c81eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f5a95341ec7735ef2e713b221df0548eff139702045b7af0618ce1d5b07b1ee"} -2023-12-16T14:18:13.579Z INFO initializing dbft {"height": 7751, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:13.580Z debug frostfs-node/morph.go:229 new block {"index": 7750} -2023-12-16T14:18:13.584Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:18:13.590Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:18:13.590Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:18:13.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7750, "blockHeight": 7750, "took": "15.660828ms"} -2023-12-16T14:18:14.579Z INFO sending PrepareRequest {"height": 7751, "view": 0} -2023-12-16T14:18:14.580Z INFO sending Commit {"height": 7751, "view": 0} -2023-12-16T14:18:14.580Z INFO approving block {"height": 7751, "hash": "9407f21d4690644072fb97fd9dba9561458d295c5fd53f8c4b6f13d317d3914c", "tx_count": 2, "merkle": "c11f0eb067f5bc0aa8227c0ef82f6ce995e11d873aa6c09244efe32994fcb03c", "prev": "0eb577a3dbfe0ea5cde44d5ab653b7b280072b746023277b448a9bb9f60c81eb"} -2023-12-16T14:18:14.582Z INFO runtime log {"tx": "55e72deb094373a5b225fcace8eef4d208784b1e6d8ef5dbfef5e5ff77c1c6aa", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:18:14.582Z INFO runtime log {"tx": "55e72deb094373a5b225fcace8eef4d208784b1e6d8ef5dbfef5e5ff77c1c6aa", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:18:14.584Z INFO initializing dbft {"height": 7752, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:14.591Z debug frostfs-node/morph.go:229 new block {"index": 7751} -2023-12-16T14:18:14.891Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7751, "blockHeight": 7751, "took": "16.696137ms"} -2023-12-16T14:18:15.581Z INFO sending PrepareRequest {"height": 7752, "view": 0} -2023-12-16T14:18:15.581Z INFO sending Commit {"height": 7752, "view": 0} -2023-12-16T14:18:15.582Z INFO approving block {"height": 7752, "hash": "e24b5deeb1c427068a51c0120853f771b0d316367af20228220305c0b58f182a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9407f21d4690644072fb97fd9dba9561458d295c5fd53f8c4b6f13d317d3914c"} -2023-12-16T14:18:15.583Z INFO initializing dbft {"height": 7753, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:15.584Z debug frostfs-node/morph.go:229 new block {"index": 7752} -2023-12-16T14:18:15.886Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7752, "blockHeight": 7752, "took": "10.847586ms"} -2023-12-16T14:18:16.583Z INFO sending PrepareRequest {"height": 7753, "view": 0} -2023-12-16T14:18:16.583Z INFO sending Commit {"height": 7753, "view": 0} -2023-12-16T14:18:16.583Z INFO approving block {"height": 7753, "hash": "cbe7a4743c63eee04fa56b479de3c4e4dda8f031a6dd20ab50f2f06c8ec5b634", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e24b5deeb1c427068a51c0120853f771b0d316367af20228220305c0b58f182a"} -2023-12-16T14:18:16.584Z INFO initializing dbft {"height": 7754, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:16.585Z debug frostfs-node/morph.go:229 new block {"index": 7753} -2023-12-16T14:18:16.892Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7753, "blockHeight": 7753, "took": "16.044758ms"} -2023-12-16T14:18:17.584Z INFO sending PrepareRequest {"height": 7754, "view": 0} -2023-12-16T14:18:17.585Z INFO sending Commit {"height": 7754, "view": 0} -2023-12-16T14:18:17.585Z INFO approving block {"height": 7754, "hash": "a36d936b00fa230cfb185e9848b0e29c48006c92e2402a0971e73c186cc3b8e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbe7a4743c63eee04fa56b479de3c4e4dda8f031a6dd20ab50f2f06c8ec5b634"} -2023-12-16T14:18:17.587Z INFO initializing dbft {"height": 7755, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:17.588Z debug frostfs-node/morph.go:229 new block {"index": 7754} -2023-12-16T14:18:17.888Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7754, "blockHeight": 7754, "took": "12.189038ms"} -2023-12-16T14:18:18.587Z INFO sending PrepareRequest {"height": 7755, "view": 0} -2023-12-16T14:18:18.588Z INFO sending Commit {"height": 7755, "view": 0} -2023-12-16T14:18:18.588Z INFO approving block {"height": 7755, "hash": "b8bb39f9f135116823321548802da72cee739165779f4cd1057976ef8198e1ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a36d936b00fa230cfb185e9848b0e29c48006c92e2402a0971e73c186cc3b8e5"} -2023-12-16T14:18:18.590Z INFO initializing dbft {"height": 7756, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:18.591Z debug frostfs-node/morph.go:229 new block {"index": 7755} -2023-12-16T14:18:18.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7755, "blockHeight": 7755, "took": "13.181949ms"} -2023-12-16T14:18:19.589Z INFO sending PrepareRequest {"height": 7756, "view": 0} -2023-12-16T14:18:19.589Z INFO sending Commit {"height": 7756, "view": 0} -2023-12-16T14:18:19.590Z INFO approving block {"height": 7756, "hash": "d79154d93e1b7c63c3fc4d5104d034ed9b620aad902b738f9cf708ebe08f4fd9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8bb39f9f135116823321548802da72cee739165779f4cd1057976ef8198e1ff"} -2023-12-16T14:18:19.591Z INFO initializing dbft {"height": 7757, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:19.592Z debug frostfs-node/morph.go:229 new block {"index": 7756} -2023-12-16T14:18:19.943Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7756, "blockHeight": 7756, "took": "64.880611ms"} -2023-12-16T14:18:20.591Z INFO sending PrepareRequest {"height": 7757, "view": 0} -2023-12-16T14:18:20.591Z INFO sending Commit {"height": 7757, "view": 0} -2023-12-16T14:18:20.592Z INFO approving block {"height": 7757, "hash": "b32ff6508834a6e5d25de0ee959e457441b7e25a83f74abdc5f113fa31833605", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d79154d93e1b7c63c3fc4d5104d034ed9b620aad902b738f9cf708ebe08f4fd9"} -2023-12-16T14:18:20.594Z INFO initializing dbft {"height": 7758, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:20.595Z debug frostfs-node/morph.go:229 new block {"index": 7757} -2023-12-16T14:18:20.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7757, "blockHeight": 7757, "took": "18.664481ms"} -2023-12-16T14:18:21.593Z INFO sending PrepareRequest {"height": 7758, "view": 0} -2023-12-16T14:18:21.594Z INFO sending Commit {"height": 7758, "view": 0} -2023-12-16T14:18:21.595Z INFO approving block {"height": 7758, "hash": "ec3ace513805b791490085e3d9ee3271f4c6b1be63039d68ef5fcd5393342c0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b32ff6508834a6e5d25de0ee959e457441b7e25a83f74abdc5f113fa31833605"} -2023-12-16T14:18:21.599Z INFO initializing dbft {"height": 7759, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:21.600Z debug frostfs-node/morph.go:229 new block {"index": 7758} -2023-12-16T14:18:21.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7758, "blockHeight": 7758, "took": "8.924662ms"} -2023-12-16T14:18:22.597Z INFO sending PrepareRequest {"height": 7759, "view": 0} -2023-12-16T14:18:22.597Z INFO sending Commit {"height": 7759, "view": 0} -2023-12-16T14:18:22.597Z INFO approving block {"height": 7759, "hash": "37e7f608a0b1dcce1923f36adb89d0bd8c12c84a785e6a3832ce03381bf6726e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec3ace513805b791490085e3d9ee3271f4c6b1be63039d68ef5fcd5393342c0e"} -2023-12-16T14:18:22.599Z INFO initializing dbft {"height": 7760, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:22.600Z debug frostfs-node/morph.go:229 new block {"index": 7759} -2023-12-16T14:18:22.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7759, "blockHeight": 7759, "took": "7.867819ms"} -2023-12-16T14:18:23.598Z INFO sending PrepareRequest {"height": 7760, "view": 0} -2023-12-16T14:18:23.599Z INFO sending Commit {"height": 7760, "view": 0} -2023-12-16T14:18:23.599Z INFO approving block {"height": 7760, "hash": "038c4efcc7bea6a8f10790ac8cacd41e13fc8337f2794b0ca91bdccfa0b6198a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37e7f608a0b1dcce1923f36adb89d0bd8c12c84a785e6a3832ce03381bf6726e"} -2023-12-16T14:18:23.601Z INFO initializing dbft {"height": 7761, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:23.602Z debug frostfs-node/morph.go:229 new block {"index": 7760} -2023-12-16T14:18:23.891Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7760, "blockHeight": 7760, "took": "8.062858ms"} -2023-12-16T14:18:24.601Z INFO sending PrepareRequest {"height": 7761, "view": 0} -2023-12-16T14:18:24.602Z INFO sending Commit {"height": 7761, "view": 0} -2023-12-16T14:18:24.603Z INFO approving block {"height": 7761, "hash": "42bf07682464aaa016faab2a73cf0642d840f44c08f7268b2ce4837da214d86b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "038c4efcc7bea6a8f10790ac8cacd41e13fc8337f2794b0ca91bdccfa0b6198a"} -2023-12-16T14:18:24.605Z INFO initializing dbft {"height": 7762, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:24.606Z debug frostfs-node/morph.go:229 new block {"index": 7761} -2023-12-16T14:18:24.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7761, "blockHeight": 7761, "took": "13.27071ms"} -2023-12-16T14:18:25.604Z INFO sending PrepareRequest {"height": 7762, "view": 0} -2023-12-16T14:18:25.604Z INFO sending Commit {"height": 7762, "view": 0} -2023-12-16T14:18:25.604Z INFO approving block {"height": 7762, "hash": "aeda63dcc14124af00dbff5e4fbdba11f256031a73083354471b312d5a40e21f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42bf07682464aaa016faab2a73cf0642d840f44c08f7268b2ce4837da214d86b"} -2023-12-16T14:18:25.605Z INFO initializing dbft {"height": 7763, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:25.606Z debug frostfs-node/morph.go:229 new block {"index": 7762} -2023-12-16T14:18:25.893Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7762, "blockHeight": 7762, "took": "9.158025ms"} -2023-12-16T14:18:26.605Z INFO sending PrepareRequest {"height": 7763, "view": 0} -2023-12-16T14:18:26.606Z INFO sending Commit {"height": 7763, "view": 0} -2023-12-16T14:18:26.606Z INFO approving block {"height": 7763, "hash": "640f57877341bdf67530ccc9d0657eff2c2f344d4d7867cbbb9276df83ea2808", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aeda63dcc14124af00dbff5e4fbdba11f256031a73083354471b312d5a40e21f"} -2023-12-16T14:18:26.608Z INFO initializing dbft {"height": 7764, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:26.609Z debug frostfs-node/morph.go:229 new block {"index": 7763} -2023-12-16T14:18:26.895Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7763, "blockHeight": 7763, "took": "10.742394ms"} -2023-12-16T14:18:27.608Z INFO sending PrepareRequest {"height": 7764, "view": 0} -2023-12-16T14:18:27.609Z INFO sending Commit {"height": 7764, "view": 0} -2023-12-16T14:18:27.609Z INFO approving block {"height": 7764, "hash": "240dacfd5ae5b3f65f82c4a9ddcc9a7b01beb9e2c66e6433799e9fcfa879d38a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "640f57877341bdf67530ccc9d0657eff2c2f344d4d7867cbbb9276df83ea2808"} -2023-12-16T14:18:27.611Z INFO initializing dbft {"height": 7765, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:27.612Z debug frostfs-node/morph.go:229 new block {"index": 7764} -2023-12-16T14:18:27.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7764, "blockHeight": 7764, "took": "10.355546ms"} -2023-12-16T14:18:28.610Z INFO sending PrepareRequest {"height": 7765, "view": 0} -2023-12-16T14:18:28.611Z INFO sending Commit {"height": 7765, "view": 0} -2023-12-16T14:18:28.612Z INFO approving block {"height": 7765, "hash": "28b7a9f65ad41388d7c58d08db29cf526c962ae26e38c26c80b7e674b87aa574", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "240dacfd5ae5b3f65f82c4a9ddcc9a7b01beb9e2c66e6433799e9fcfa879d38a"} -2023-12-16T14:18:28.614Z INFO initializing dbft {"height": 7766, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:28.615Z debug frostfs-node/morph.go:229 new block {"index": 7765} -2023-12-16T14:18:28.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7765, "blockHeight": 7765, "took": "9.939277ms"} -2023-12-16T14:18:29.613Z INFO sending PrepareRequest {"height": 7766, "view": 0} -2023-12-16T14:18:29.613Z INFO sending Commit {"height": 7766, "view": 0} -2023-12-16T14:18:29.614Z INFO approving block {"height": 7766, "hash": "0729f2a71d2b7305c462ad06317d54057c551cad387fa9f7553790f30afbf835", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28b7a9f65ad41388d7c58d08db29cf526c962ae26e38c26c80b7e674b87aa574"} -2023-12-16T14:18:29.616Z INFO initializing dbft {"height": 7767, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:29.617Z debug frostfs-node/morph.go:229 new block {"index": 7766} -2023-12-16T14:18:29.897Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7766, "blockHeight": 7766, "took": "9.914936ms"} -2023-12-16T14:18:30.615Z INFO sending PrepareRequest {"height": 7767, "view": 0} -2023-12-16T14:18:30.615Z INFO sending Commit {"height": 7767, "view": 0} -2023-12-16T14:18:30.616Z INFO approving block {"height": 7767, "hash": "008f0b01ae5a2750ce12804b2d899b8b39d5862d38dd2fa4b22475de1eaed5c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0729f2a71d2b7305c462ad06317d54057c551cad387fa9f7553790f30afbf835"} -2023-12-16T14:18:30.618Z INFO initializing dbft {"height": 7768, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:30.619Z debug frostfs-node/morph.go:229 new block {"index": 7767} -2023-12-16T14:18:30.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7767, "blockHeight": 7767, "took": "73.374258ms"} -2023-12-16T14:18:31.617Z INFO sending PrepareRequest {"height": 7768, "view": 0} -2023-12-16T14:18:31.618Z INFO sending Commit {"height": 7768, "view": 0} -2023-12-16T14:18:31.618Z INFO approving block {"height": 7768, "hash": "5f213b31ce5f47c880e2eb26d870e044a825213fc4b70d1abd0124ec1087c376", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "008f0b01ae5a2750ce12804b2d899b8b39d5862d38dd2fa4b22475de1eaed5c4"} -2023-12-16T14:18:31.620Z INFO initializing dbft {"height": 7769, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:31.621Z debug frostfs-node/morph.go:229 new block {"index": 7768} -2023-12-16T14:18:31.901Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7768, "blockHeight": 7768, "took": "12.192894ms"} -2023-12-16T14:18:32.619Z INFO sending PrepareRequest {"height": 7769, "view": 0} -2023-12-16T14:18:32.619Z INFO sending Commit {"height": 7769, "view": 0} -2023-12-16T14:18:32.620Z INFO approving block {"height": 7769, "hash": "361c8919ba8418cef018a4b6fcb431512bb8cb6fee6e017d9d32dc45ed04739b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f213b31ce5f47c880e2eb26d870e044a825213fc4b70d1abd0124ec1087c376"} -2023-12-16T14:18:32.622Z INFO initializing dbft {"height": 7770, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:32.622Z debug frostfs-node/morph.go:229 new block {"index": 7769} -2023-12-16T14:18:32.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7769, "blockHeight": 7769, "took": "33.768709ms"} -2023-12-16T14:18:33.621Z INFO sending PrepareRequest {"height": 7770, "view": 0} -2023-12-16T14:18:33.621Z INFO sending Commit {"height": 7770, "view": 0} -2023-12-16T14:18:33.622Z INFO approving block {"height": 7770, "hash": "0067727eec17facabae40df2753ebc2e38f29e9b75b5f0b2c3d55755774a10b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "361c8919ba8418cef018a4b6fcb431512bb8cb6fee6e017d9d32dc45ed04739b"} -2023-12-16T14:18:33.623Z INFO initializing dbft {"height": 7771, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:33.624Z debug frostfs-node/morph.go:229 new block {"index": 7770} -2023-12-16T14:18:33.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7770, "blockHeight": 7770, "took": "8.257134ms"} -2023-12-16T14:18:34.623Z INFO sending PrepareRequest {"height": 7771, "view": 0} -2023-12-16T14:18:34.623Z INFO sending Commit {"height": 7771, "view": 0} -2023-12-16T14:18:34.623Z INFO approving block {"height": 7771, "hash": "6405da7a50a0295043f42f05ad54ea8e5d9e0b339698274c005a44888aa106f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0067727eec17facabae40df2753ebc2e38f29e9b75b5f0b2c3d55755774a10b4"} -2023-12-16T14:18:34.635Z INFO initializing dbft {"height": 7772, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:34.636Z debug frostfs-node/morph.go:229 new block {"index": 7771} -2023-12-16T14:18:34.687Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 33 epoch for daughters"} -2023-12-16T14:18:34.693Z INFO runtime log {"tx": "a2a2c214800cb6d87f1938b98a6ba53b49067a417d4bc698a4178c0b66042c4d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:18:34.903Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7771, "blockHeight": 7771, "took": "12.788991ms"} -2023-12-16T14:18:35.624Z INFO sending PrepareRequest {"height": 7772, "view": 0} -2023-12-16T14:18:35.625Z INFO sending Commit {"height": 7772, "view": 0} -2023-12-16T14:18:35.625Z INFO approving block {"height": 7772, "hash": "d98f8aa6b54e9a9f5c1e539525050dc0a568a8b2249a69aa9c039669ac2dcff5", "tx_count": 1, "merkle": "b27bc699dcedc2afb8496662f572a7aed1a598f6577fd8343e774193d20cdf5c", "prev": "6405da7a50a0295043f42f05ad54ea8e5d9e0b339698274c005a44888aa106f3"} -2023-12-16T14:18:35.626Z INFO runtime log {"tx": "5cdf0cd29341773e34d87f57f698a5d1aea772f5626649b8afc2eddc99c67bb2", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:18:35.628Z INFO initializing dbft {"height": 7773, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:35.629Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 33} -2023-12-16T14:18:35.629Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 33} -2023-12-16T14:18:35.629Z debug frostfs-node/morph.go:229 new block {"index": 7772} -2023-12-16T14:18:35.913Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 7772, "blockHeight": 7772, "took": "22.106612ms"} -2023-12-16T14:18:36.627Z INFO sending PrepareRequest {"height": 7773, "view": 0} -2023-12-16T14:18:36.627Z INFO sending Commit {"height": 7773, "view": 0} -2023-12-16T14:18:36.628Z INFO approving block {"height": 7773, "hash": "f61a0b23bdb66e6f84cfbf7834b3946117d9ba954dc55d490416abbede4d99c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d98f8aa6b54e9a9f5c1e539525050dc0a568a8b2249a69aa9c039669ac2dcff5"} -2023-12-16T14:18:36.629Z INFO initializing dbft {"height": 7774, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:36.630Z debug frostfs-node/morph.go:229 new block {"index": 7773} -2023-12-16T14:18:36.901Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7773, "blockHeight": 7773, "took": "8.698173ms"} -2023-12-16T14:18:37.629Z INFO sending PrepareRequest {"height": 7774, "view": 0} -2023-12-16T14:18:37.629Z INFO sending Commit {"height": 7774, "view": 0} -2023-12-16T14:18:37.629Z INFO approving block {"height": 7774, "hash": "0facb238d5b69f4a650cc979ad46d3b883c87c621d9ed68d3e36aae5591dd925", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f61a0b23bdb66e6f84cfbf7834b3946117d9ba954dc55d490416abbede4d99c6"} -2023-12-16T14:18:37.632Z INFO initializing dbft {"height": 7775, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:37.632Z debug frostfs-node/morph.go:229 new block {"index": 7774} -2023-12-16T14:18:37.902Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7774, "blockHeight": 7774, "took": "9.68492ms"} -2023-12-16T14:18:38.630Z INFO sending PrepareRequest {"height": 7775, "view": 0} -2023-12-16T14:18:38.630Z INFO sending Commit {"height": 7775, "view": 0} -2023-12-16T14:18:38.630Z INFO approving block {"height": 7775, "hash": "d43c97859b47336382aab7c75073d4731c6a0a4aabeedd1ee14b6a7ee20d1f95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0facb238d5b69f4a650cc979ad46d3b883c87c621d9ed68d3e36aae5591dd925"} -2023-12-16T14:18:38.632Z INFO initializing dbft {"height": 7776, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:38.633Z debug frostfs-node/morph.go:229 new block {"index": 7775} -2023-12-16T14:18:38.905Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7775, "blockHeight": 7775, "took": "12.305667ms"} -2023-12-16T14:18:39.633Z INFO sending PrepareRequest {"height": 7776, "view": 0} -2023-12-16T14:18:39.634Z INFO sending Commit {"height": 7776, "view": 0} -2023-12-16T14:18:39.634Z INFO approving block {"height": 7776, "hash": "beb6343cf76e11097d93fcaa593b7cd3652e882d11ad5551336572b0d0c5d22d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d43c97859b47336382aab7c75073d4731c6a0a4aabeedd1ee14b6a7ee20d1f95"} -2023-12-16T14:18:39.636Z INFO initializing dbft {"height": 7777, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:39.638Z debug frostfs-node/morph.go:229 new block {"index": 7776} -2023-12-16T14:18:39.907Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7776, "blockHeight": 7776, "took": "14.01129ms"} -2023-12-16T14:18:40.635Z INFO sending PrepareRequest {"height": 7777, "view": 0} -2023-12-16T14:18:40.635Z INFO sending Commit {"height": 7777, "view": 0} -2023-12-16T14:18:40.636Z INFO approving block {"height": 7777, "hash": "690a3e79d0a50dc1e8bbff4109206dcd14e16b072c73d9dcc64f58cbcf0649dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "beb6343cf76e11097d93fcaa593b7cd3652e882d11ad5551336572b0d0c5d22d"} -2023-12-16T14:18:40.637Z INFO initializing dbft {"height": 7778, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:40.639Z debug frostfs-node/morph.go:229 new block {"index": 7777} -2023-12-16T14:18:40.914Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7777, "blockHeight": 7777, "took": "20.04558ms"} -2023-12-16T14:18:41.637Z INFO sending PrepareRequest {"height": 7778, "view": 0} -2023-12-16T14:18:41.638Z INFO sending Commit {"height": 7778, "view": 0} -2023-12-16T14:18:41.638Z INFO approving block {"height": 7778, "hash": "d2fb2a75f4eaaaaf0ee421771e8c134e1a15639f88584aa2de888ba8b142b186", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "690a3e79d0a50dc1e8bbff4109206dcd14e16b072c73d9dcc64f58cbcf0649dc"} -2023-12-16T14:18:41.643Z INFO initializing dbft {"height": 7779, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:41.645Z debug frostfs-node/morph.go:229 new block {"index": 7778} -2023-12-16T14:18:41.907Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7778, "blockHeight": 7778, "took": "12.35585ms"} -2023-12-16T14:18:42.640Z INFO sending PrepareRequest {"height": 7779, "view": 0} -2023-12-16T14:18:42.640Z INFO sending Commit {"height": 7779, "view": 0} -2023-12-16T14:18:42.641Z INFO approving block {"height": 7779, "hash": "685f99f31fbba43e89ba295397f0ebd9b7e7a1b18d10d58ee4cf8b90fbbe9709", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2fb2a75f4eaaaaf0ee421771e8c134e1a15639f88584aa2de888ba8b142b186"} -2023-12-16T14:18:42.644Z INFO initializing dbft {"height": 7780, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:42.645Z debug frostfs-node/morph.go:229 new block {"index": 7779} -2023-12-16T14:18:42.905Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7779, "blockHeight": 7779, "took": "9.521157ms"} -2023-12-16T14:18:43.642Z INFO sending PrepareRequest {"height": 7780, "view": 0} -2023-12-16T14:18:43.643Z INFO sending Commit {"height": 7780, "view": 0} -2023-12-16T14:18:43.643Z INFO approving block {"height": 7780, "hash": "a021106687ae40d493a3ec4014c715b5dde6814f7e86381f3692fd538b0a7af1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "685f99f31fbba43e89ba295397f0ebd9b7e7a1b18d10d58ee4cf8b90fbbe9709"} -2023-12-16T14:18:43.646Z INFO initializing dbft {"height": 7781, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:43.647Z debug frostfs-node/morph.go:229 new block {"index": 7780} -2023-12-16T14:18:43.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7780, "blockHeight": 7780, "took": "14.123021ms"} -2023-12-16T14:18:44.645Z INFO sending PrepareRequest {"height": 7781, "view": 0} -2023-12-16T14:18:44.645Z INFO sending Commit {"height": 7781, "view": 0} -2023-12-16T14:18:44.645Z INFO approving block {"height": 7781, "hash": "79f8b97b20061426e5166a689fd1aa5806a3524ebbdda14e8ce8fbc99c231d5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a021106687ae40d493a3ec4014c715b5dde6814f7e86381f3692fd538b0a7af1"} -2023-12-16T14:18:44.647Z INFO initializing dbft {"height": 7782, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:44.648Z debug frostfs-node/morph.go:229 new block {"index": 7781} -2023-12-16T14:18:44.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7781, "blockHeight": 7781, "took": "13.675134ms"} -2023-12-16T14:18:45.647Z INFO sending PrepareRequest {"height": 7782, "view": 0} -2023-12-16T14:18:45.647Z INFO sending Commit {"height": 7782, "view": 0} -2023-12-16T14:18:45.648Z INFO approving block {"height": 7782, "hash": "3f087c62979dd8a0ab519c4a345b115248e86f8c7d3294242bd3a5af25ddc49b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79f8b97b20061426e5166a689fd1aa5806a3524ebbdda14e8ce8fbc99c231d5d"} -2023-12-16T14:18:45.649Z INFO initializing dbft {"height": 7783, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:45.650Z debug frostfs-node/morph.go:229 new block {"index": 7782} -2023-12-16T14:18:45.912Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7782, "blockHeight": 7782, "took": "14.161943ms"} -2023-12-16T14:18:46.649Z INFO sending PrepareRequest {"height": 7783, "view": 0} -2023-12-16T14:18:46.649Z INFO sending Commit {"height": 7783, "view": 0} -2023-12-16T14:18:46.649Z INFO approving block {"height": 7783, "hash": "e9a653c9772ce65d8c2d1cb762ab592d9486e6cc6fbf8e97a2c7507f77ac78d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f087c62979dd8a0ab519c4a345b115248e86f8c7d3294242bd3a5af25ddc49b"} -2023-12-16T14:18:46.651Z INFO initializing dbft {"height": 7784, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:46.652Z debug frostfs-node/morph.go:229 new block {"index": 7783} -2023-12-16T14:18:46.972Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7783, "blockHeight": 7783, "took": "73.275043ms"} -2023-12-16T14:18:47.650Z INFO sending PrepareRequest {"height": 7784, "view": 0} -2023-12-16T14:18:47.651Z INFO sending Commit {"height": 7784, "view": 0} -2023-12-16T14:18:47.651Z INFO approving block {"height": 7784, "hash": "138b052d8a69c54416c2d12dfc340c0b26898b2e3551bb9cc59d86c8479f3010", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9a653c9772ce65d8c2d1cb762ab592d9486e6cc6fbf8e97a2c7507f77ac78d0"} -2023-12-16T14:18:47.652Z INFO initializing dbft {"height": 7785, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:47.653Z debug frostfs-node/morph.go:229 new block {"index": 7784} -2023-12-16T14:18:47.917Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7784, "blockHeight": 7784, "took": "17.985495ms"} -2023-12-16T14:18:48.652Z INFO sending PrepareRequest {"height": 7785, "view": 0} -2023-12-16T14:18:48.652Z INFO sending Commit {"height": 7785, "view": 0} -2023-12-16T14:18:48.653Z INFO approving block {"height": 7785, "hash": "62c28153355f348d56d19c650bc4acffae9c057a5df5af9348696f89820759d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "138b052d8a69c54416c2d12dfc340c0b26898b2e3551bb9cc59d86c8479f3010"} -2023-12-16T14:18:48.655Z INFO initializing dbft {"height": 7786, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:48.655Z debug frostfs-node/morph.go:229 new block {"index": 7785} -2023-12-16T14:18:48.922Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7785, "blockHeight": 7785, "took": "21.941755ms"} -2023-12-16T14:18:49.654Z INFO sending PrepareRequest {"height": 7786, "view": 0} -2023-12-16T14:18:49.654Z INFO sending Commit {"height": 7786, "view": 0} -2023-12-16T14:18:49.655Z INFO approving block {"height": 7786, "hash": "f977213c2263508640de5eca891a7f19b87023acb623134e1bb259acf7d638fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62c28153355f348d56d19c650bc4acffae9c057a5df5af9348696f89820759d0"} -2023-12-16T14:18:49.656Z INFO initializing dbft {"height": 7787, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:49.658Z debug frostfs-node/morph.go:229 new block {"index": 7786} -2023-12-16T14:18:49.925Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7786, "blockHeight": 7786, "took": "22.937389ms"} -2023-12-16T14:18:50.657Z INFO sending PrepareRequest {"height": 7787, "view": 0} -2023-12-16T14:18:50.657Z INFO sending Commit {"height": 7787, "view": 0} -2023-12-16T14:18:50.658Z INFO approving block {"height": 7787, "hash": "27f082baa74d92ed8a882d7e08ae055a8b13d996dd90b627f2285dc62a807878", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f977213c2263508640de5eca891a7f19b87023acb623134e1bb259acf7d638fc"} -2023-12-16T14:18:50.659Z INFO initializing dbft {"height": 7788, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:50.660Z debug frostfs-node/morph.go:229 new block {"index": 7787} -2023-12-16T14:18:50.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7787, "blockHeight": 7787, "took": "18.579913ms"} -2023-12-16T14:18:51.660Z INFO sending PrepareRequest {"height": 7788, "view": 0} -2023-12-16T14:18:51.661Z INFO sending Commit {"height": 7788, "view": 0} -2023-12-16T14:18:51.661Z INFO approving block {"height": 7788, "hash": "5367a47acbb52d54baec3a8de9f4be98582dcf229af5af91ed42d7b7d02d0608", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27f082baa74d92ed8a882d7e08ae055a8b13d996dd90b627f2285dc62a807878"} -2023-12-16T14:18:51.663Z INFO initializing dbft {"height": 7789, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:51.664Z debug frostfs-node/morph.go:229 new block {"index": 7788} -2023-12-16T14:18:51.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7788, "blockHeight": 7788, "took": "88.207945ms"} -2023-12-16T14:18:52.663Z INFO sending PrepareRequest {"height": 7789, "view": 0} -2023-12-16T14:18:52.664Z INFO sending Commit {"height": 7789, "view": 0} -2023-12-16T14:18:52.664Z INFO approving block {"height": 7789, "hash": "3364ae98b7e0a18fc73335da9ab85b464b42280bcda828ce92dc1721980d7dd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5367a47acbb52d54baec3a8de9f4be98582dcf229af5af91ed42d7b7d02d0608"} -2023-12-16T14:18:52.666Z INFO initializing dbft {"height": 7790, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:52.667Z debug frostfs-node/morph.go:229 new block {"index": 7789} -2023-12-16T14:18:52.919Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7789, "blockHeight": 7789, "took": "13.534206ms"} -2023-12-16T14:18:53.665Z INFO sending PrepareRequest {"height": 7790, "view": 0} -2023-12-16T14:18:53.665Z INFO sending Commit {"height": 7790, "view": 0} -2023-12-16T14:18:53.666Z INFO approving block {"height": 7790, "hash": "06bc93284ecd84405b98fe833cd67324c5c10cda76304594f023f2250ac7d70d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3364ae98b7e0a18fc73335da9ab85b464b42280bcda828ce92dc1721980d7dd5"} -2023-12-16T14:18:53.667Z INFO initializing dbft {"height": 7791, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:53.667Z debug frostfs-node/morph.go:229 new block {"index": 7790} -2023-12-16T14:18:53.916Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7790, "blockHeight": 7790, "took": "10.291696ms"} -2023-12-16T14:18:54.667Z INFO sending PrepareRequest {"height": 7791, "view": 0} -2023-12-16T14:18:54.668Z INFO sending Commit {"height": 7791, "view": 0} -2023-12-16T14:18:54.668Z INFO approving block {"height": 7791, "hash": "25c4434c7bf2d5ff7140e8bc7e8268b23021f0839838210178683e317bc4d3ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06bc93284ecd84405b98fe833cd67324c5c10cda76304594f023f2250ac7d70d"} -2023-12-16T14:18:54.670Z INFO initializing dbft {"height": 7792, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:54.671Z debug frostfs-node/morph.go:229 new block {"index": 7791} -2023-12-16T14:18:54.925Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7791, "blockHeight": 7791, "took": "19.075653ms"} -2023-12-16T14:18:55.669Z INFO sending PrepareRequest {"height": 7792, "view": 0} -2023-12-16T14:18:55.670Z INFO sending Commit {"height": 7792, "view": 0} -2023-12-16T14:18:55.670Z INFO approving block {"height": 7792, "hash": "5f2be710be1aa5c0e6bd5dc3f9419863202fee4ef51fa7442706550d88e3d477", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25c4434c7bf2d5ff7140e8bc7e8268b23021f0839838210178683e317bc4d3ff"} -2023-12-16T14:18:55.673Z INFO initializing dbft {"height": 7793, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:55.674Z debug frostfs-node/morph.go:229 new block {"index": 7792} -2023-12-16T14:18:55.935Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7792, "blockHeight": 7792, "took": "27.728489ms"} -2023-12-16T14:18:56.672Z INFO sending PrepareRequest {"height": 7793, "view": 0} -2023-12-16T14:18:56.672Z INFO sending Commit {"height": 7793, "view": 0} -2023-12-16T14:18:56.672Z INFO approving block {"height": 7793, "hash": "24386722fae7e6f93ee2f0e319dc4de84ae86cdeb69341edc02a8a3458860b1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f2be710be1aa5c0e6bd5dc3f9419863202fee4ef51fa7442706550d88e3d477"} -2023-12-16T14:18:56.674Z INFO initializing dbft {"height": 7794, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:56.675Z debug frostfs-node/morph.go:229 new block {"index": 7793} -2023-12-16T14:18:56.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7793, "blockHeight": 7793, "took": "15.974405ms"} -2023-12-16T14:18:57.674Z INFO sending PrepareRequest {"height": 7794, "view": 0} -2023-12-16T14:18:57.674Z INFO sending Commit {"height": 7794, "view": 0} -2023-12-16T14:18:57.675Z INFO approving block {"height": 7794, "hash": "ff36c2f9d338beec77df194594afdd9ab7c50aadfc109708335297ea842c482b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24386722fae7e6f93ee2f0e319dc4de84ae86cdeb69341edc02a8a3458860b1a"} -2023-12-16T14:18:57.680Z INFO initializing dbft {"height": 7795, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:57.681Z debug frostfs-node/morph.go:229 new block {"index": 7794} -2023-12-16T14:18:57.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7794, "blockHeight": 7794, "took": "37.222594ms"} -2023-12-16T14:18:58.676Z INFO sending PrepareRequest {"height": 7795, "view": 0} -2023-12-16T14:18:58.676Z INFO sending Commit {"height": 7795, "view": 0} -2023-12-16T14:18:58.676Z INFO approving block {"height": 7795, "hash": "f661917022c509369d83e694f42f11334b387a40cfd7dd66bcbe47cd8e99c42d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff36c2f9d338beec77df194594afdd9ab7c50aadfc109708335297ea842c482b"} -2023-12-16T14:18:58.677Z INFO initializing dbft {"height": 7796, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:58.678Z debug frostfs-node/morph.go:229 new block {"index": 7795} -2023-12-16T14:18:58.941Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7795, "blockHeight": 7795, "took": "30.286167ms"} -2023-12-16T14:18:59.678Z INFO sending PrepareRequest {"height": 7796, "view": 0} -2023-12-16T14:18:59.678Z INFO sending Commit {"height": 7796, "view": 0} -2023-12-16T14:18:59.679Z INFO approving block {"height": 7796, "hash": "4be39aa4b4d0c8ff088261ba830d5dee35395407bb96714d4995f0808e9170f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f661917022c509369d83e694f42f11334b387a40cfd7dd66bcbe47cd8e99c42d"} -2023-12-16T14:18:59.681Z INFO initializing dbft {"height": 7797, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:18:59.682Z debug frostfs-node/morph.go:229 new block {"index": 7796} -2023-12-16T14:19:00.042Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7796, "blockHeight": 7796, "took": "129.713011ms"} -2023-12-16T14:19:00.680Z INFO sending PrepareRequest {"height": 7797, "view": 0} -2023-12-16T14:19:00.681Z INFO sending Commit {"height": 7797, "view": 0} -2023-12-16T14:19:00.682Z INFO approving block {"height": 7797, "hash": "5559f1834622441ad812aed69566cc527962238ea254b534a5497d806b7bf850", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4be39aa4b4d0c8ff088261ba830d5dee35395407bb96714d4995f0808e9170f7"} -2023-12-16T14:19:00.683Z INFO initializing dbft {"height": 7798, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:00.686Z debug frostfs-node/morph.go:229 new block {"index": 7797} -2023-12-16T14:19:00.927Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7797, "blockHeight": 7797, "took": "14.829436ms"} -2023-12-16T14:19:01.682Z INFO sending PrepareRequest {"height": 7798, "view": 0} -2023-12-16T14:19:01.683Z INFO sending Commit {"height": 7798, "view": 0} -2023-12-16T14:19:01.683Z INFO approving block {"height": 7798, "hash": "8839b0f103cd5ba8a40eb67ebb66d6dd617b32e45060d568be7e37d80b9d5431", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5559f1834622441ad812aed69566cc527962238ea254b534a5497d806b7bf850"} -2023-12-16T14:19:01.685Z INFO initializing dbft {"height": 7799, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:01.686Z debug frostfs-node/morph.go:229 new block {"index": 7798} -2023-12-16T14:19:01.932Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7798, "blockHeight": 7798, "took": "18.355508ms"} -2023-12-16T14:19:02.684Z INFO sending PrepareRequest {"height": 7799, "view": 0} -2023-12-16T14:19:02.685Z INFO sending Commit {"height": 7799, "view": 0} -2023-12-16T14:19:02.685Z INFO approving block {"height": 7799, "hash": "53775e8121cb078a1d02c31b72bf6ee605f90670d248aad9b7229119dd8201a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8839b0f103cd5ba8a40eb67ebb66d6dd617b32e45060d568be7e37d80b9d5431"} -2023-12-16T14:19:02.687Z INFO initializing dbft {"height": 7800, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:02.688Z debug frostfs-node/morph.go:229 new block {"index": 7799} -2023-12-16T14:19:02.923Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7799, "blockHeight": 7799, "took": "8.586631ms"} -2023-12-16T14:19:03.686Z INFO sending PrepareRequest {"height": 7800, "view": 0} -2023-12-16T14:19:03.686Z INFO sending Commit {"height": 7800, "view": 0} -2023-12-16T14:19:03.687Z INFO approving block {"height": 7800, "hash": "46b03dbc602236be6740349012eae0a38a587b9fa6c83c78aa5a917de8a6f211", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53775e8121cb078a1d02c31b72bf6ee605f90670d248aad9b7229119dd8201a1"} -2023-12-16T14:19:03.690Z INFO initializing dbft {"height": 7801, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:03.691Z debug frostfs-node/morph.go:229 new block {"index": 7800} -2023-12-16T14:19:03.695Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:19:03.702Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:19:03.702Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:19:03.933Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7800, "blockHeight": 7800, "took": "17.727858ms"} -2023-12-16T14:19:04.689Z INFO sending PrepareRequest {"height": 7801, "view": 0} -2023-12-16T14:19:04.690Z INFO sending Commit {"height": 7801, "view": 0} -2023-12-16T14:19:04.690Z INFO approving block {"height": 7801, "hash": "0007f9192ca0077a96767a4a19933e3a21e8288f189ea41a7642ba63773199ff", "tx_count": 2, "merkle": "dafd27b01c332f8956dc273124398457a15390146fb6992bd1cb9d55d172f5c3", "prev": "46b03dbc602236be6740349012eae0a38a587b9fa6c83c78aa5a917de8a6f211"} -2023-12-16T14:19:04.692Z INFO runtime log {"tx": "49748041ca049e55288083988bb019d1cba28b508d5ac1af8564336cb8632aa4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:19:04.692Z INFO runtime log {"tx": "49748041ca049e55288083988bb019d1cba28b508d5ac1af8564336cb8632aa4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:19:04.694Z INFO initializing dbft {"height": 7802, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:04.695Z debug frostfs-node/morph.go:229 new block {"index": 7801} -2023-12-16T14:19:04.959Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7801, "blockHeight": 7801, "took": "42.365744ms"} -2023-12-16T14:19:05.692Z INFO sending PrepareRequest {"height": 7802, "view": 0} -2023-12-16T14:19:05.692Z INFO sending Commit {"height": 7802, "view": 0} -2023-12-16T14:19:05.693Z INFO approving block {"height": 7802, "hash": "93c22cd7c0df40972da71530fe38246b2955a678bf3f4c3d76a51b9acf732fcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0007f9192ca0077a96767a4a19933e3a21e8288f189ea41a7642ba63773199ff"} -2023-12-16T14:19:05.695Z INFO initializing dbft {"height": 7803, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:05.696Z debug frostfs-node/morph.go:229 new block {"index": 7802} -2023-12-16T14:19:05.937Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7802, "blockHeight": 7802, "took": "19.186539ms"} -2023-12-16T14:19:06.694Z INFO sending PrepareRequest {"height": 7803, "view": 0} -2023-12-16T14:19:06.695Z INFO sending Commit {"height": 7803, "view": 0} -2023-12-16T14:19:06.695Z INFO approving block {"height": 7803, "hash": "8a8ffe18aaf65046cf8995b12e9d8ebae66074d16b5deacd686544dd68997ff7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93c22cd7c0df40972da71530fe38246b2955a678bf3f4c3d76a51b9acf732fcc"} -2023-12-16T14:19:06.697Z INFO initializing dbft {"height": 7804, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:06.698Z debug frostfs-node/morph.go:229 new block {"index": 7803} -2023-12-16T14:19:06.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7803, "blockHeight": 7803, "took": "20.128582ms"} -2023-12-16T14:19:07.696Z INFO sending PrepareRequest {"height": 7804, "view": 0} -2023-12-16T14:19:07.697Z INFO sending Commit {"height": 7804, "view": 0} -2023-12-16T14:19:07.697Z INFO approving block {"height": 7804, "hash": "51c8bc4995fd0f922cd458267d9f8b10116b7355b13a12612478afad1d0bfa9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a8ffe18aaf65046cf8995b12e9d8ebae66074d16b5deacd686544dd68997ff7"} -2023-12-16T14:19:07.699Z INFO initializing dbft {"height": 7805, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:07.700Z debug frostfs-node/morph.go:229 new block {"index": 7804} -2023-12-16T14:19:07.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7804, "blockHeight": 7804, "took": "29.83084ms"} -2023-12-16T14:19:08.698Z INFO sending PrepareRequest {"height": 7805, "view": 0} -2023-12-16T14:19:08.698Z INFO sending Commit {"height": 7805, "view": 0} -2023-12-16T14:19:08.699Z INFO approving block {"height": 7805, "hash": "43a61142ff428dbacd8f07868071dea66963cd9c4627f5fa53d5aaf95e8fdee9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51c8bc4995fd0f922cd458267d9f8b10116b7355b13a12612478afad1d0bfa9d"} -2023-12-16T14:19:08.700Z INFO initializing dbft {"height": 7806, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:08.701Z debug frostfs-node/morph.go:229 new block {"index": 7805} -2023-12-16T14:19:08.958Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7805, "blockHeight": 7805, "took": "38.237581ms"} -2023-12-16T14:19:09.700Z INFO sending PrepareRequest {"height": 7806, "view": 0} -2023-12-16T14:19:09.700Z INFO sending Commit {"height": 7806, "view": 0} -2023-12-16T14:19:09.701Z INFO approving block {"height": 7806, "hash": "b90b897336c77e95060f152d3d30f4548d145266fbd7bdad74405dd0c2b95f9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43a61142ff428dbacd8f07868071dea66963cd9c4627f5fa53d5aaf95e8fdee9"} -2023-12-16T14:19:09.703Z INFO initializing dbft {"height": 7807, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:09.704Z debug frostfs-node/morph.go:229 new block {"index": 7806} -2023-12-16T14:19:09.999Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7806, "blockHeight": 7806, "took": "77.73763ms"} -2023-12-16T14:19:10.702Z INFO sending PrepareRequest {"height": 7807, "view": 0} -2023-12-16T14:19:10.703Z INFO sending Commit {"height": 7807, "view": 0} -2023-12-16T14:19:10.703Z INFO approving block {"height": 7807, "hash": "e707224d4bafffebaf9088409e9f1f2c9ffed5f00fa116da15b05acfdaa61860", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b90b897336c77e95060f152d3d30f4548d145266fbd7bdad74405dd0c2b95f9a"} -2023-12-16T14:19:10.706Z INFO initializing dbft {"height": 7808, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:10.708Z debug frostfs-node/morph.go:229 new block {"index": 7807} -2023-12-16T14:19:10.994Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7807, "blockHeight": 7807, "took": "71.46689ms"} -2023-12-16T14:19:11.705Z INFO sending PrepareRequest {"height": 7808, "view": 0} -2023-12-16T14:19:11.706Z INFO sending Commit {"height": 7808, "view": 0} -2023-12-16T14:19:11.706Z INFO approving block {"height": 7808, "hash": "ca0399688fc2ea57c7cb6080ef61276770a420b1dc091cfc1edffb7e4e53e68c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e707224d4bafffebaf9088409e9f1f2c9ffed5f00fa116da15b05acfdaa61860"} -2023-12-16T14:19:11.709Z INFO initializing dbft {"height": 7809, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:11.709Z debug frostfs-node/morph.go:229 new block {"index": 7808} -2023-12-16T14:19:11.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7808, "blockHeight": 7808, "took": "16.254471ms"} -2023-12-16T14:19:12.708Z INFO sending PrepareRequest {"height": 7809, "view": 0} -2023-12-16T14:19:12.708Z INFO sending Commit {"height": 7809, "view": 0} -2023-12-16T14:19:12.708Z INFO approving block {"height": 7809, "hash": "4c67b7d3fd8e05a3ffd695537f736564426aa34154a94b542cc123393bfe05af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca0399688fc2ea57c7cb6080ef61276770a420b1dc091cfc1edffb7e4e53e68c"} -2023-12-16T14:19:12.710Z INFO initializing dbft {"height": 7810, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:12.711Z debug frostfs-node/morph.go:229 new block {"index": 7809} -2023-12-16T14:19:12.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7809, "blockHeight": 7809, "took": "15.850611ms"} -2023-12-16T14:19:13.709Z INFO sending PrepareRequest {"height": 7810, "view": 0} -2023-12-16T14:19:13.709Z INFO sending Commit {"height": 7810, "view": 0} -2023-12-16T14:19:13.710Z INFO approving block {"height": 7810, "hash": "b609865cd41ad528258011243760514280e954883d357c2c7780bcfa82a78e96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c67b7d3fd8e05a3ffd695537f736564426aa34154a94b542cc123393bfe05af"} -2023-12-16T14:19:13.711Z INFO initializing dbft {"height": 7811, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:13.712Z debug frostfs-node/morph.go:229 new block {"index": 7810} -2023-12-16T14:19:13.942Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7810, "blockHeight": 7810, "took": "17.745458ms"} -2023-12-16T14:19:14.710Z INFO sending PrepareRequest {"height": 7811, "view": 0} -2023-12-16T14:19:14.711Z INFO sending Commit {"height": 7811, "view": 0} -2023-12-16T14:19:14.711Z INFO approving block {"height": 7811, "hash": "827a84aae574bd0f45cb7ed539bf18ccfa1495186684ab838ae923176ae32a45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b609865cd41ad528258011243760514280e954883d357c2c7780bcfa82a78e96"} -2023-12-16T14:19:14.712Z INFO initializing dbft {"height": 7812, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:14.713Z debug frostfs-node/morph.go:229 new block {"index": 7811} -2023-12-16T14:19:14.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7811, "blockHeight": 7811, "took": "21.045536ms"} -2023-12-16T14:19:15.714Z INFO sending PrepareRequest {"height": 7812, "view": 0} -2023-12-16T14:19:15.715Z INFO sending Commit {"height": 7812, "view": 0} -2023-12-16T14:19:15.715Z INFO approving block {"height": 7812, "hash": "7c049ad666b15655905fa52a800be013b656ab9ab93356b106623eb4aea4d565", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "827a84aae574bd0f45cb7ed539bf18ccfa1495186684ab838ae923176ae32a45"} -2023-12-16T14:19:15.716Z INFO initializing dbft {"height": 7813, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:15.718Z debug frostfs-node/morph.go:229 new block {"index": 7812} -2023-12-16T14:19:15.941Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7812, "blockHeight": 7812, "took": "16.232784ms"} -2023-12-16T14:19:16.718Z INFO sending PrepareRequest {"height": 7813, "view": 0} -2023-12-16T14:19:16.718Z INFO sending Commit {"height": 7813, "view": 0} -2023-12-16T14:19:16.719Z INFO approving block {"height": 7813, "hash": "167adbf2e1bc72210c5fafbf0383eec8075f241079612369e7d368e557edd96f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c049ad666b15655905fa52a800be013b656ab9ab93356b106623eb4aea4d565"} -2023-12-16T14:19:16.720Z INFO initializing dbft {"height": 7814, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:16.723Z debug frostfs-node/morph.go:229 new block {"index": 7813} -2023-12-16T14:19:16.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7813, "blockHeight": 7813, "took": "19.72712ms"} -2023-12-16T14:19:17.720Z INFO sending PrepareRequest {"height": 7814, "view": 0} -2023-12-16T14:19:17.720Z INFO sending Commit {"height": 7814, "view": 0} -2023-12-16T14:19:17.720Z INFO approving block {"height": 7814, "hash": "15ee27e2f0c3803e5685f14c062eb361ec42bc80d9b62e0496c90678b579c783", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "167adbf2e1bc72210c5fafbf0383eec8075f241079612369e7d368e557edd96f"} -2023-12-16T14:19:17.722Z INFO initializing dbft {"height": 7815, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:17.723Z debug frostfs-node/morph.go:229 new block {"index": 7814} -2023-12-16T14:19:17.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7814, "blockHeight": 7814, "took": "22.797671ms"} -2023-12-16T14:19:18.721Z INFO sending PrepareRequest {"height": 7815, "view": 0} -2023-12-16T14:19:18.722Z INFO sending Commit {"height": 7815, "view": 0} -2023-12-16T14:19:18.722Z INFO approving block {"height": 7815, "hash": "39228a73bf631519ce134656b07f3505ad4c465802b32722a731ac9e3638a92f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15ee27e2f0c3803e5685f14c062eb361ec42bc80d9b62e0496c90678b579c783"} -2023-12-16T14:19:18.724Z INFO initializing dbft {"height": 7816, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:18.725Z debug frostfs-node/morph.go:229 new block {"index": 7815} -2023-12-16T14:19:18.950Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7815, "blockHeight": 7815, "took": "23.01615ms"} -2023-12-16T14:19:19.724Z INFO sending PrepareRequest {"height": 7816, "view": 0} -2023-12-16T14:19:19.725Z INFO sending Commit {"height": 7816, "view": 0} -2023-12-16T14:19:19.725Z INFO approving block {"height": 7816, "hash": "dfc21a2b3f1acad5ea70958c34aacba3c338f6f5a55e6a39590908955f21e855", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39228a73bf631519ce134656b07f3505ad4c465802b32722a731ac9e3638a92f"} -2023-12-16T14:19:19.730Z INFO initializing dbft {"height": 7817, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:19.732Z debug frostfs-node/morph.go:229 new block {"index": 7816} -2023-12-16T14:19:20.072Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7816, "blockHeight": 7816, "took": "144.069708ms"} -2023-12-16T14:19:20.726Z INFO sending PrepareRequest {"height": 7817, "view": 0} -2023-12-16T14:19:20.726Z INFO sending Commit {"height": 7817, "view": 0} -2023-12-16T14:19:20.727Z INFO approving block {"height": 7817, "hash": "7c6896dffb1eefc1af39d9e558663a6df319c070e796902d43e00c09e6daf8e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfc21a2b3f1acad5ea70958c34aacba3c338f6f5a55e6a39590908955f21e855"} -2023-12-16T14:19:20.729Z INFO initializing dbft {"height": 7818, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:20.731Z debug frostfs-node/morph.go:229 new block {"index": 7817} -2023-12-16T14:19:20.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7817, "blockHeight": 7817, "took": "17.065375ms"} -2023-12-16T14:19:21.728Z INFO sending PrepareRequest {"height": 7818, "view": 0} -2023-12-16T14:19:21.729Z INFO sending Commit {"height": 7818, "view": 0} -2023-12-16T14:19:21.729Z INFO approving block {"height": 7818, "hash": "c87005c1dd9b2876d71fb86d49f8bc748b813cc92761abcaa75f8129875c8496", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c6896dffb1eefc1af39d9e558663a6df319c070e796902d43e00c09e6daf8e7"} -2023-12-16T14:19:21.731Z INFO initializing dbft {"height": 7819, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:21.733Z debug frostfs-node/morph.go:229 new block {"index": 7818} -2023-12-16T14:19:21.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7818, "blockHeight": 7818, "took": "15.373951ms"} -2023-12-16T14:19:22.730Z INFO sending PrepareRequest {"height": 7819, "view": 0} -2023-12-16T14:19:22.730Z INFO sending Commit {"height": 7819, "view": 0} -2023-12-16T14:19:22.731Z INFO approving block {"height": 7819, "hash": "fc2c65a5f9f8605646e5b2ead4da40b5febe04ce778ff9bb36d5bd5d8d8f6be7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c87005c1dd9b2876d71fb86d49f8bc748b813cc92761abcaa75f8129875c8496"} -2023-12-16T14:19:22.732Z INFO initializing dbft {"height": 7820, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:22.734Z debug frostfs-node/morph.go:229 new block {"index": 7819} -2023-12-16T14:19:22.956Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7819, "blockHeight": 7819, "took": "25.114639ms"} -2023-12-16T14:19:23.735Z INFO sending PrepareRequest {"height": 7820, "view": 0} -2023-12-16T14:19:23.736Z INFO sending Commit {"height": 7820, "view": 0} -2023-12-16T14:19:23.737Z INFO approving block {"height": 7820, "hash": "f3c1875e65641cf768fb7a109690669bf91f9ed27610031e11b7105a09284119", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc2c65a5f9f8605646e5b2ead4da40b5febe04ce778ff9bb36d5bd5d8d8f6be7"} -2023-12-16T14:19:23.738Z INFO initializing dbft {"height": 7821, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:23.740Z debug frostfs-node/morph.go:229 new block {"index": 7820} -2023-12-16T14:19:23.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7820, "blockHeight": 7820, "took": "17.609144ms"} -2023-12-16T14:19:24.738Z INFO sending PrepareRequest {"height": 7821, "view": 0} -2023-12-16T14:19:24.738Z INFO sending Commit {"height": 7821, "view": 0} -2023-12-16T14:19:24.738Z INFO approving block {"height": 7821, "hash": "61ac58a2df01e14fe362f91c6943c9ed8427ec6c086d466243f8989b398a455c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3c1875e65641cf768fb7a109690669bf91f9ed27610031e11b7105a09284119"} -2023-12-16T14:19:24.740Z INFO initializing dbft {"height": 7822, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:24.740Z debug frostfs-node/morph.go:229 new block {"index": 7821} -2023-12-16T14:19:24.952Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7821, "blockHeight": 7821, "took": "19.166803ms"} -2023-12-16T14:19:25.740Z INFO sending PrepareRequest {"height": 7822, "view": 0} -2023-12-16T14:19:25.740Z INFO sending Commit {"height": 7822, "view": 0} -2023-12-16T14:19:25.740Z INFO approving block {"height": 7822, "hash": "6ed3931143a63ca73a66adcee8547860c46cd798d72fc9410e3aedca16d9303f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61ac58a2df01e14fe362f91c6943c9ed8427ec6c086d466243f8989b398a455c"} -2023-12-16T14:19:25.742Z INFO initializing dbft {"height": 7823, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:25.744Z debug frostfs-node/morph.go:229 new block {"index": 7822} -2023-12-16T14:19:25.946Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7822, "blockHeight": 7822, "took": "12.275888ms"} -2023-12-16T14:19:26.742Z INFO sending PrepareRequest {"height": 7823, "view": 0} -2023-12-16T14:19:26.742Z INFO sending Commit {"height": 7823, "view": 0} -2023-12-16T14:19:26.742Z INFO approving block {"height": 7823, "hash": "917a8a0817b493f47c0d948537679fa4a04c65a38f53dec5269113e3aa182dbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ed3931143a63ca73a66adcee8547860c46cd798d72fc9410e3aedca16d9303f"} -2023-12-16T14:19:26.746Z INFO initializing dbft {"height": 7824, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:26.748Z debug frostfs-node/morph.go:229 new block {"index": 7823} -2023-12-16T14:19:26.955Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7823, "blockHeight": 7823, "took": "20.839847ms"} -2023-12-16T14:19:27.743Z INFO sending PrepareRequest {"height": 7824, "view": 0} -2023-12-16T14:19:27.744Z INFO sending Commit {"height": 7824, "view": 0} -2023-12-16T14:19:27.744Z INFO approving block {"height": 7824, "hash": "4a0f4d3917cbf2b6f86a25478ab810a9fb0f86d3966459135cb44ec5300dc471", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "917a8a0817b493f47c0d948537679fa4a04c65a38f53dec5269113e3aa182dbd"} -2023-12-16T14:19:27.746Z INFO initializing dbft {"height": 7825, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:27.747Z debug frostfs-node/morph.go:229 new block {"index": 7824} -2023-12-16T14:19:27.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7824, "blockHeight": 7824, "took": "46.394436ms"} -2023-12-16T14:19:28.745Z INFO sending PrepareRequest {"height": 7825, "view": 0} -2023-12-16T14:19:28.749Z INFO sending Commit {"height": 7825, "view": 0} -2023-12-16T14:19:28.749Z INFO approving block {"height": 7825, "hash": "771a1668a6ec3902ff40e66063948f8676dab970ed95b830a28703a003b70136", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a0f4d3917cbf2b6f86a25478ab810a9fb0f86d3966459135cb44ec5300dc471"} -2023-12-16T14:19:28.751Z INFO initializing dbft {"height": 7826, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:28.752Z debug frostfs-node/morph.go:229 new block {"index": 7825} -2023-12-16T14:19:28.967Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7825, "blockHeight": 7825, "took": "30.198659ms"} -2023-12-16T14:19:29.750Z INFO sending PrepareRequest {"height": 7826, "view": 0} -2023-12-16T14:19:29.750Z INFO sending Commit {"height": 7826, "view": 0} -2023-12-16T14:19:29.751Z INFO approving block {"height": 7826, "hash": "71560da6ba526368b48e14920553a146854582c45b15648f7ea0bbd34057edbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "771a1668a6ec3902ff40e66063948f8676dab970ed95b830a28703a003b70136"} -2023-12-16T14:19:29.752Z INFO initializing dbft {"height": 7827, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:29.753Z debug frostfs-node/morph.go:229 new block {"index": 7826} -2023-12-16T14:19:29.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7826, "blockHeight": 7826, "took": "26.386616ms"} -2023-12-16T14:19:30.752Z INFO sending PrepareRequest {"height": 7827, "view": 0} -2023-12-16T14:19:30.752Z INFO sending Commit {"height": 7827, "view": 0} -2023-12-16T14:19:30.752Z INFO approving block {"height": 7827, "hash": "84dee5a32f6e4dff819cbafbc8e1b3b62cf8caf599798172fec78de2c6e00095", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71560da6ba526368b48e14920553a146854582c45b15648f7ea0bbd34057edbd"} -2023-12-16T14:19:30.754Z INFO initializing dbft {"height": 7828, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:30.755Z debug frostfs-node/morph.go:229 new block {"index": 7827} -2023-12-16T14:19:30.959Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7827, "blockHeight": 7827, "took": "21.045774ms"} -2023-12-16T14:19:31.754Z INFO sending PrepareRequest {"height": 7828, "view": 0} -2023-12-16T14:19:31.754Z INFO sending Commit {"height": 7828, "view": 0} -2023-12-16T14:19:31.754Z INFO approving block {"height": 7828, "hash": "9b84581948185a4027a861259796d05692763fc65a96d2231ee7886f9ad4a99b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84dee5a32f6e4dff819cbafbc8e1b3b62cf8caf599798172fec78de2c6e00095"} -2023-12-16T14:19:31.756Z INFO initializing dbft {"height": 7829, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:31.757Z debug frostfs-node/morph.go:229 new block {"index": 7828} -2023-12-16T14:19:31.958Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7828, "blockHeight": 7828, "took": "19.414464ms"} -2023-12-16T14:19:32.755Z INFO sending PrepareRequest {"height": 7829, "view": 0} -2023-12-16T14:19:32.756Z INFO sending Commit {"height": 7829, "view": 0} -2023-12-16T14:19:32.756Z INFO approving block {"height": 7829, "hash": "2e017ea85d19c92186919e5d53e1569b9369c86528c4db18ce5d73521c1f5243", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b84581948185a4027a861259796d05692763fc65a96d2231ee7886f9ad4a99b"} -2023-12-16T14:19:32.758Z INFO initializing dbft {"height": 7830, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:32.759Z debug frostfs-node/morph.go:229 new block {"index": 7829} -2023-12-16T14:19:32.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7829, "blockHeight": 7829, "took": "20.678564ms"} -2023-12-16T14:19:33.757Z INFO sending PrepareRequest {"height": 7830, "view": 0} -2023-12-16T14:19:33.758Z INFO sending Commit {"height": 7830, "view": 0} -2023-12-16T14:19:33.758Z INFO approving block {"height": 7830, "hash": "5d830c43109c7df8e15d2bbfdb2079d08af24f9b44fb0db8cd43cfb4ac8c1327", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e017ea85d19c92186919e5d53e1569b9369c86528c4db18ce5d73521c1f5243"} -2023-12-16T14:19:33.760Z INFO initializing dbft {"height": 7831, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:33.762Z debug frostfs-node/morph.go:229 new block {"index": 7830} -2023-12-16T14:19:33.952Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7830, "blockHeight": 7830, "took": "12.638292ms"} -2023-12-16T14:19:34.759Z INFO sending PrepareRequest {"height": 7831, "view": 0} -2023-12-16T14:19:34.759Z INFO sending Commit {"height": 7831, "view": 0} -2023-12-16T14:19:34.760Z INFO approving block {"height": 7831, "hash": "7b4cf68c14aa3d8e8551630c8d6ad737b2e5b4eacfc4639bf42eb51771599107", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d830c43109c7df8e15d2bbfdb2079d08af24f9b44fb0db8cd43cfb4ac8c1327"} -2023-12-16T14:19:34.761Z INFO initializing dbft {"height": 7832, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:34.764Z debug frostfs-node/morph.go:229 new block {"index": 7831} -2023-12-16T14:19:34.772Z info settlement/calls.go:61 start basic income collection {"epoch": 33} -2023-12-16T14:19:34.779Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 33, "iteration": 1, "error": "no data for 0 iteration in 33 epoch for consumers's trusts"} -2023-12-16T14:19:34.956Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7831, "blockHeight": 7831, "took": "15.627835ms"} -2023-12-16T14:19:35.761Z INFO sending PrepareRequest {"height": 7832, "view": 0} -2023-12-16T14:19:35.762Z INFO sending Commit {"height": 7832, "view": 0} -2023-12-16T14:19:35.762Z INFO approving block {"height": 7832, "hash": "74575420230cc419a865cd6d73f6e726cb2cced0309fd04f063c8c2c48aec5c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b4cf68c14aa3d8e8551630c8d6ad737b2e5b4eacfc4639bf42eb51771599107"} -2023-12-16T14:19:35.763Z INFO initializing dbft {"height": 7833, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:35.764Z debug frostfs-node/morph.go:229 new block {"index": 7832} -2023-12-16T14:19:35.959Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7832, "blockHeight": 7832, "took": "17.265367ms"} -2023-12-16T14:19:36.763Z INFO sending PrepareRequest {"height": 7833, "view": 0} -2023-12-16T14:19:36.763Z INFO sending Commit {"height": 7833, "view": 0} -2023-12-16T14:19:36.764Z INFO approving block {"height": 7833, "hash": "eb2b26033e2d924ceb63321abe2d2040a58ca4f5b5966255673e6196d14e6ab0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74575420230cc419a865cd6d73f6e726cb2cced0309fd04f063c8c2c48aec5c1"} -2023-12-16T14:19:36.764Z INFO initializing dbft {"height": 7834, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:36.765Z debug frostfs-node/morph.go:229 new block {"index": 7833} -2023-12-16T14:19:36.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7833, "blockHeight": 7833, "took": "17.086446ms"} -2023-12-16T14:19:37.765Z INFO sending PrepareRequest {"height": 7834, "view": 0} -2023-12-16T14:19:37.766Z INFO sending Commit {"height": 7834, "view": 0} -2023-12-16T14:19:37.766Z INFO approving block {"height": 7834, "hash": "e3ce5024b9665ad7680731467176d23b8dfbee816931f8075ef350f160db5614", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb2b26033e2d924ceb63321abe2d2040a58ca4f5b5966255673e6196d14e6ab0"} -2023-12-16T14:19:37.768Z INFO initializing dbft {"height": 7835, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:37.770Z debug frostfs-node/morph.go:229 new block {"index": 7834} -2023-12-16T14:19:37.962Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7834, "blockHeight": 7834, "took": "18.558482ms"} -2023-12-16T14:19:38.767Z INFO sending PrepareRequest {"height": 7835, "view": 0} -2023-12-16T14:19:38.769Z INFO sending Commit {"height": 7835, "view": 0} -2023-12-16T14:19:38.770Z INFO approving block {"height": 7835, "hash": "72db068c7950a96dde633919894129d448e4d11764bd6c7406ee6aa208de7e14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3ce5024b9665ad7680731467176d23b8dfbee816931f8075ef350f160db5614"} -2023-12-16T14:19:38.771Z INFO initializing dbft {"height": 7836, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:38.774Z debug frostfs-node/morph.go:229 new block {"index": 7835} -2023-12-16T14:19:38.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7835, "blockHeight": 7835, "took": "15.852245ms"} -2023-12-16T14:19:39.771Z INFO sending PrepareRequest {"height": 7836, "view": 0} -2023-12-16T14:19:39.771Z INFO sending Commit {"height": 7836, "view": 0} -2023-12-16T14:19:39.771Z INFO approving block {"height": 7836, "hash": "51dc7b42cac88f97f7e36b082704866ab93bc90f11dfab12914c3552ef4f589c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72db068c7950a96dde633919894129d448e4d11764bd6c7406ee6aa208de7e14"} -2023-12-16T14:19:39.773Z INFO initializing dbft {"height": 7837, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:39.774Z debug frostfs-node/morph.go:229 new block {"index": 7836} -2023-12-16T14:19:39.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7836, "blockHeight": 7836, "took": "15.10242ms"} -2023-12-16T14:19:40.773Z INFO sending PrepareRequest {"height": 7837, "view": 0} -2023-12-16T14:19:40.773Z INFO sending Commit {"height": 7837, "view": 0} -2023-12-16T14:19:40.773Z INFO approving block {"height": 7837, "hash": "db21015c5b0fd2d5fc2f8a30bf393e340aef0a9b4771be2744b335168672c25d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51dc7b42cac88f97f7e36b082704866ab93bc90f11dfab12914c3552ef4f589c"} -2023-12-16T14:19:40.775Z INFO initializing dbft {"height": 7838, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:40.777Z debug frostfs-node/morph.go:229 new block {"index": 7837} -2023-12-16T14:19:40.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7837, "blockHeight": 7837, "took": "14.003148ms"} -2023-12-16T14:19:41.775Z INFO sending PrepareRequest {"height": 7838, "view": 0} -2023-12-16T14:19:41.775Z INFO sending Commit {"height": 7838, "view": 0} -2023-12-16T14:19:41.775Z INFO approving block {"height": 7838, "hash": "ead9936de9f46a43a3b63d5ba517370399184c6fd1745458b7980aa524ffb29e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db21015c5b0fd2d5fc2f8a30bf393e340aef0a9b4771be2744b335168672c25d"} -2023-12-16T14:19:41.777Z INFO initializing dbft {"height": 7839, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:41.779Z debug frostfs-node/morph.go:229 new block {"index": 7838} -2023-12-16T14:19:41.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7838, "blockHeight": 7838, "took": "22.367203ms"} -2023-12-16T14:19:42.777Z INFO sending PrepareRequest {"height": 7839, "view": 0} -2023-12-16T14:19:42.777Z INFO sending Commit {"height": 7839, "view": 0} -2023-12-16T14:19:42.777Z INFO approving block {"height": 7839, "hash": "dcd3e97ef5920359fbe3a5064b607e2e793334b7c22ec01b0894155d5e1cb403", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ead9936de9f46a43a3b63d5ba517370399184c6fd1745458b7980aa524ffb29e"} -2023-12-16T14:19:42.779Z INFO initializing dbft {"height": 7840, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:42.780Z debug frostfs-node/morph.go:229 new block {"index": 7839} -2023-12-16T14:19:42.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7839, "blockHeight": 7839, "took": "26.303776ms"} -2023-12-16T14:19:43.779Z INFO sending PrepareRequest {"height": 7840, "view": 0} -2023-12-16T14:19:43.779Z INFO sending Commit {"height": 7840, "view": 0} -2023-12-16T14:19:43.780Z INFO approving block {"height": 7840, "hash": "5f1af2a6f0d5706db34be83857dc873d580f5226e28e2ed9000360a24e8eabe1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcd3e97ef5920359fbe3a5064b607e2e793334b7c22ec01b0894155d5e1cb403"} -2023-12-16T14:19:43.781Z INFO initializing dbft {"height": 7841, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:43.787Z debug frostfs-node/morph.go:229 new block {"index": 7840} -2023-12-16T14:19:43.970Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7840, "blockHeight": 7840, "took": "20.068634ms"} -2023-12-16T14:19:44.781Z INFO sending PrepareRequest {"height": 7841, "view": 0} -2023-12-16T14:19:44.781Z INFO sending Commit {"height": 7841, "view": 0} -2023-12-16T14:19:44.781Z INFO approving block {"height": 7841, "hash": "86fc9c61c04c3ba7536236a5a1519127f73ebcdec84b518c01960d256ed20144", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f1af2a6f0d5706db34be83857dc873d580f5226e28e2ed9000360a24e8eabe1"} -2023-12-16T14:19:44.783Z INFO initializing dbft {"height": 7842, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:44.784Z debug frostfs-node/morph.go:229 new block {"index": 7841} -2023-12-16T14:19:45.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7841, "blockHeight": 7841, "took": "58.314405ms"} -2023-12-16T14:19:45.783Z INFO sending PrepareRequest {"height": 7842, "view": 0} -2023-12-16T14:19:45.783Z INFO sending Commit {"height": 7842, "view": 0} -2023-12-16T14:19:45.784Z INFO approving block {"height": 7842, "hash": "3e9c353578e9f856dd94fadf97d4d3d7f55e6a5dcf3dccd777f27ad6f873ef01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86fc9c61c04c3ba7536236a5a1519127f73ebcdec84b518c01960d256ed20144"} -2023-12-16T14:19:45.787Z INFO initializing dbft {"height": 7843, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:45.789Z debug frostfs-node/morph.go:229 new block {"index": 7842} -2023-12-16T14:19:45.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7842, "blockHeight": 7842, "took": "29.641086ms"} -2023-12-16T14:19:46.785Z INFO sending PrepareRequest {"height": 7843, "view": 0} -2023-12-16T14:19:46.786Z INFO sending Commit {"height": 7843, "view": 0} -2023-12-16T14:19:46.786Z INFO approving block {"height": 7843, "hash": "7b9ce82c835369675697a8c3c8ae564e01787ae0b832acc652d551c195926266", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e9c353578e9f856dd94fadf97d4d3d7f55e6a5dcf3dccd777f27ad6f873ef01"} -2023-12-16T14:19:46.788Z INFO initializing dbft {"height": 7844, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:46.790Z debug frostfs-node/morph.go:229 new block {"index": 7843} -2023-12-16T14:19:46.983Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7843, "blockHeight": 7843, "took": "29.434366ms"} -2023-12-16T14:19:47.788Z INFO sending PrepareRequest {"height": 7844, "view": 0} -2023-12-16T14:19:47.789Z INFO sending Commit {"height": 7844, "view": 0} -2023-12-16T14:19:47.789Z INFO approving block {"height": 7844, "hash": "a4bf3de9126cad23c5e051157eaf5965d030895bff222090d1abb364d95a2c30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b9ce82c835369675697a8c3c8ae564e01787ae0b832acc652d551c195926266"} -2023-12-16T14:19:47.791Z INFO initializing dbft {"height": 7845, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:47.792Z debug frostfs-node/morph.go:229 new block {"index": 7844} -2023-12-16T14:19:47.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7844, "blockHeight": 7844, "took": "24.113604ms"} -2023-12-16T14:19:48.790Z INFO sending PrepareRequest {"height": 7845, "view": 0} -2023-12-16T14:19:48.790Z INFO sending Commit {"height": 7845, "view": 0} -2023-12-16T14:19:48.791Z INFO approving block {"height": 7845, "hash": "4580af711a6ee8da4ca54aa5e94698fdcf3efb5f9f24375920614094a1eba42f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4bf3de9126cad23c5e051157eaf5965d030895bff222090d1abb364d95a2c30"} -2023-12-16T14:19:48.793Z INFO initializing dbft {"height": 7846, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:48.799Z debug frostfs-node/morph.go:229 new block {"index": 7845} -2023-12-16T14:19:48.971Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7845, "blockHeight": 7845, "took": "16.516178ms"} -2023-12-16T14:19:49.792Z INFO sending PrepareRequest {"height": 7846, "view": 0} -2023-12-16T14:19:49.792Z INFO sending Commit {"height": 7846, "view": 0} -2023-12-16T14:19:49.792Z INFO approving block {"height": 7846, "hash": "afe215ccb174b723e7b9669f781dc3b8a0cdc5c682b2c821247730f71529d900", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4580af711a6ee8da4ca54aa5e94698fdcf3efb5f9f24375920614094a1eba42f"} -2023-12-16T14:19:49.793Z INFO initializing dbft {"height": 7847, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:49.794Z debug frostfs-node/morph.go:229 new block {"index": 7846} -2023-12-16T14:19:49.972Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7846, "blockHeight": 7846, "took": "15.67918ms"} -2023-12-16T14:19:50.793Z INFO sending PrepareRequest {"height": 7847, "view": 0} -2023-12-16T14:19:50.793Z INFO sending Commit {"height": 7847, "view": 0} -2023-12-16T14:19:50.793Z INFO approving block {"height": 7847, "hash": "4b427cf6cf9c364e945ef7b954dc081919a5d4be5e4fd6e46448edd6043ef656", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afe215ccb174b723e7b9669f781dc3b8a0cdc5c682b2c821247730f71529d900"} -2023-12-16T14:19:50.794Z INFO initializing dbft {"height": 7848, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:50.796Z debug frostfs-node/morph.go:229 new block {"index": 7847} -2023-12-16T14:19:50.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7847, "blockHeight": 7847, "took": "20.359294ms"} -2023-12-16T14:19:51.795Z INFO sending PrepareRequest {"height": 7848, "view": 0} -2023-12-16T14:19:51.795Z INFO sending Commit {"height": 7848, "view": 0} -2023-12-16T14:19:51.796Z INFO approving block {"height": 7848, "hash": "15648121bdb293032d3e2b0c091ff133b46e31e3ac30de711b7253d40847c527", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b427cf6cf9c364e945ef7b954dc081919a5d4be5e4fd6e46448edd6043ef656"} -2023-12-16T14:19:51.797Z INFO initializing dbft {"height": 7849, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:51.798Z debug frostfs-node/morph.go:229 new block {"index": 7848} -2023-12-16T14:19:51.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7848, "blockHeight": 7848, "took": "18.49248ms"} -2023-12-16T14:19:52.797Z INFO sending PrepareRequest {"height": 7849, "view": 0} -2023-12-16T14:19:52.798Z INFO sending Commit {"height": 7849, "view": 0} -2023-12-16T14:19:52.798Z INFO approving block {"height": 7849, "hash": "123be8600db158e14b5fa299b04b79bc626fea70f696981bf227eb76eeea33a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15648121bdb293032d3e2b0c091ff133b46e31e3ac30de711b7253d40847c527"} -2023-12-16T14:19:52.799Z INFO initializing dbft {"height": 7850, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:52.801Z debug frostfs-node/morph.go:229 new block {"index": 7849} -2023-12-16T14:19:52.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7849, "blockHeight": 7849, "took": "14.142758ms"} -2023-12-16T14:19:53.799Z INFO sending PrepareRequest {"height": 7850, "view": 0} -2023-12-16T14:19:53.800Z INFO sending Commit {"height": 7850, "view": 0} -2023-12-16T14:19:53.800Z INFO approving block {"height": 7850, "hash": "d21005164e3fabf33289832a2629189d0f05ee6aa77b4d6f81e37e42c80e7bc7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "123be8600db158e14b5fa299b04b79bc626fea70f696981bf227eb76eeea33a3"} -2023-12-16T14:19:53.802Z INFO initializing dbft {"height": 7851, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:53.804Z debug frostfs-node/morph.go:229 new block {"index": 7850} -2023-12-16T14:19:53.807Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:19:53.813Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:19:53.813Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:19:53.983Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7850, "blockHeight": 7850, "took": "21.531603ms"} -2023-12-16T14:19:54.802Z INFO sending PrepareRequest {"height": 7851, "view": 0} -2023-12-16T14:19:54.802Z INFO sending Commit {"height": 7851, "view": 0} -2023-12-16T14:19:54.803Z INFO approving block {"height": 7851, "hash": "8cb4a86bf1d60d39388929f3af81ad1ec84a0ec5fc2b1d4bd3ef254b5b163fa7", "tx_count": 2, "merkle": "c326b175398d11135048a0a561e20798edbbf9053521a72ef4ca144d9e0d7b75", "prev": "d21005164e3fabf33289832a2629189d0f05ee6aa77b4d6f81e37e42c80e7bc7"} -2023-12-16T14:19:54.804Z INFO runtime log {"tx": "08feac75d84c4164971e2556d4a93158e6fff93baf0d110b290c6744b65b10db", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:19:54.805Z INFO runtime log {"tx": "08feac75d84c4164971e2556d4a93158e6fff93baf0d110b290c6744b65b10db", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:19:54.806Z INFO initializing dbft {"height": 7852, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:54.810Z debug frostfs-node/morph.go:229 new block {"index": 7851} -2023-12-16T14:19:54.983Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7851, "blockHeight": 7851, "took": "21.6033ms"} -2023-12-16T14:19:55.805Z INFO sending PrepareRequest {"height": 7852, "view": 0} -2023-12-16T14:19:55.806Z INFO sending Commit {"height": 7852, "view": 0} -2023-12-16T14:19:55.806Z INFO approving block {"height": 7852, "hash": "c85f845ac58e67c5de82d1a0d2d2a7cdce4f7b20119c016dfc28e176a40d95b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cb4a86bf1d60d39388929f3af81ad1ec84a0ec5fc2b1d4bd3ef254b5b163fa7"} -2023-12-16T14:19:55.808Z INFO initializing dbft {"height": 7853, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:55.809Z debug frostfs-node/morph.go:229 new block {"index": 7852} -2023-12-16T14:19:55.981Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7852, "blockHeight": 7852, "took": "18.265687ms"} -2023-12-16T14:19:56.808Z INFO sending PrepareRequest {"height": 7853, "view": 0} -2023-12-16T14:19:56.809Z INFO sending Commit {"height": 7853, "view": 0} -2023-12-16T14:19:56.810Z INFO approving block {"height": 7853, "hash": "f8eccb09e4ea34c96f38ef06e5445f3065c9ec410244b6efba7ac84b5d09132a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c85f845ac58e67c5de82d1a0d2d2a7cdce4f7b20119c016dfc28e176a40d95b0"} -2023-12-16T14:19:56.812Z INFO initializing dbft {"height": 7854, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:56.813Z debug frostfs-node/morph.go:229 new block {"index": 7853} -2023-12-16T14:19:56.988Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7853, "blockHeight": 7853, "took": "24.761069ms"} -2023-12-16T14:19:57.811Z INFO sending PrepareRequest {"height": 7854, "view": 0} -2023-12-16T14:19:57.811Z INFO sending Commit {"height": 7854, "view": 0} -2023-12-16T14:19:57.811Z INFO approving block {"height": 7854, "hash": "fe994b35f79579c4ca3a4fff9150ea1703f385a26c432cc30b84399e26a6f4ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8eccb09e4ea34c96f38ef06e5445f3065c9ec410244b6efba7ac84b5d09132a"} -2023-12-16T14:19:57.813Z INFO initializing dbft {"height": 7855, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:57.814Z debug frostfs-node/morph.go:229 new block {"index": 7854} -2023-12-16T14:19:57.979Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7854, "blockHeight": 7854, "took": "14.599115ms"} -2023-12-16T14:19:58.813Z INFO sending PrepareRequest {"height": 7855, "view": 0} -2023-12-16T14:19:58.813Z INFO sending Commit {"height": 7855, "view": 0} -2023-12-16T14:19:58.814Z INFO approving block {"height": 7855, "hash": "08148cfa07f9d8af6d3c1537312d84ce43b56b042c59ec18d4873f352e3bb765", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe994b35f79579c4ca3a4fff9150ea1703f385a26c432cc30b84399e26a6f4ec"} -2023-12-16T14:19:58.815Z INFO initializing dbft {"height": 7856, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:58.817Z debug frostfs-node/morph.go:229 new block {"index": 7855} -2023-12-16T14:19:58.981Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7855, "blockHeight": 7855, "took": "15.470576ms"} -2023-12-16T14:19:59.815Z INFO sending PrepareRequest {"height": 7856, "view": 0} -2023-12-16T14:19:59.815Z INFO sending Commit {"height": 7856, "view": 0} -2023-12-16T14:19:59.816Z INFO approving block {"height": 7856, "hash": "651492d1013e85837d915fb192d6ac4f52b44e1e189de6e97815aa73d305785f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08148cfa07f9d8af6d3c1537312d84ce43b56b042c59ec18d4873f352e3bb765"} -2023-12-16T14:19:59.818Z INFO initializing dbft {"height": 7857, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:19:59.819Z debug frostfs-node/morph.go:229 new block {"index": 7856} -2023-12-16T14:19:59.985Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7856, "blockHeight": 7856, "took": "19.297014ms"} -2023-12-16T14:20:00.817Z INFO sending PrepareRequest {"height": 7857, "view": 0} -2023-12-16T14:20:00.817Z INFO sending Commit {"height": 7857, "view": 0} -2023-12-16T14:20:00.818Z INFO approving block {"height": 7857, "hash": "5a1cb0968ea082dd98b840dc6318153c33fc6ad52b2b7cc99b5625a57bc8991f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "651492d1013e85837d915fb192d6ac4f52b44e1e189de6e97815aa73d305785f"} -2023-12-16T14:20:00.819Z INFO initializing dbft {"height": 7858, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:00.822Z debug frostfs-node/morph.go:229 new block {"index": 7857} -2023-12-16T14:20:00.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7857, "blockHeight": 7857, "took": "18.681144ms"} -2023-12-16T14:20:01.819Z INFO sending PrepareRequest {"height": 7858, "view": 0} -2023-12-16T14:20:01.819Z INFO sending Commit {"height": 7858, "view": 0} -2023-12-16T14:20:01.819Z INFO approving block {"height": 7858, "hash": "3ad69b1d686274e453789508801f05b51934cca2d7a5369b606964c6fc22347b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a1cb0968ea082dd98b840dc6318153c33fc6ad52b2b7cc99b5625a57bc8991f"} -2023-12-16T14:20:01.821Z INFO initializing dbft {"height": 7859, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:01.822Z debug frostfs-node/morph.go:229 new block {"index": 7858} -2023-12-16T14:20:01.990Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7858, "blockHeight": 7858, "took": "22.699113ms"} -2023-12-16T14:20:02.820Z INFO sending PrepareRequest {"height": 7859, "view": 0} -2023-12-16T14:20:02.821Z INFO sending Commit {"height": 7859, "view": 0} -2023-12-16T14:20:02.821Z INFO approving block {"height": 7859, "hash": "6e613f9d42abf11160396fa0f24cf4641c0265800d66199fae9c3d0867194873", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ad69b1d686274e453789508801f05b51934cca2d7a5369b606964c6fc22347b"} -2023-12-16T14:20:02.823Z INFO initializing dbft {"height": 7860, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:02.824Z debug frostfs-node/morph.go:229 new block {"index": 7859} -2023-12-16T14:20:02.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7859, "blockHeight": 7859, "took": "17.478985ms"} -2023-12-16T14:20:03.822Z INFO sending PrepareRequest {"height": 7860, "view": 0} -2023-12-16T14:20:03.822Z INFO sending Commit {"height": 7860, "view": 0} -2023-12-16T14:20:03.823Z INFO approving block {"height": 7860, "hash": "ce86403b6b97c45f0c4289a3df7bb6d25d3e38f84dffeb8c00fb94a6696cfa62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e613f9d42abf11160396fa0f24cf4641c0265800d66199fae9c3d0867194873"} -2023-12-16T14:20:03.824Z INFO initializing dbft {"height": 7861, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:03.825Z debug frostfs-node/morph.go:229 new block {"index": 7860} -2023-12-16T14:20:03.988Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7860, "blockHeight": 7860, "took": "17.85227ms"} -2023-12-16T14:20:04.823Z INFO sending PrepareRequest {"height": 7861, "view": 0} -2023-12-16T14:20:04.824Z INFO sending Commit {"height": 7861, "view": 0} -2023-12-16T14:20:04.824Z INFO approving block {"height": 7861, "hash": "b475cb5a19992e6418ed2aa7eca4b36ef634500c6e694bf18f0eed45eaf084b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce86403b6b97c45f0c4289a3df7bb6d25d3e38f84dffeb8c00fb94a6696cfa62"} -2023-12-16T14:20:04.825Z INFO initializing dbft {"height": 7862, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:04.827Z debug frostfs-node/morph.go:229 new block {"index": 7861} -2023-12-16T14:20:04.989Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7861, "blockHeight": 7861, "took": "18.540043ms"} -2023-12-16T14:20:05.825Z INFO sending PrepareRequest {"height": 7862, "view": 0} -2023-12-16T14:20:05.826Z INFO sending Commit {"height": 7862, "view": 0} -2023-12-16T14:20:05.826Z INFO approving block {"height": 7862, "hash": "4576601927ee6d38e9829a71e55bbdeb1d3deb39df1bbc49e30ecd02f69350d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b475cb5a19992e6418ed2aa7eca4b36ef634500c6e694bf18f0eed45eaf084b9"} -2023-12-16T14:20:05.828Z INFO initializing dbft {"height": 7863, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:05.829Z debug frostfs-node/morph.go:229 new block {"index": 7862} -2023-12-16T14:20:05.989Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7862, "blockHeight": 7862, "took": "17.434338ms"} -2023-12-16T14:20:06.827Z INFO sending PrepareRequest {"height": 7863, "view": 0} -2023-12-16T14:20:06.828Z INFO sending Commit {"height": 7863, "view": 0} -2023-12-16T14:20:06.828Z INFO approving block {"height": 7863, "hash": "19a0a09f9228fe56da04769eddb59a75755e7a3aa48f4b64249e4ef60b53cfca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4576601927ee6d38e9829a71e55bbdeb1d3deb39df1bbc49e30ecd02f69350d8"} -2023-12-16T14:20:06.829Z INFO initializing dbft {"height": 7864, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:06.830Z debug frostfs-node/morph.go:229 new block {"index": 7863} -2023-12-16T14:20:07.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7863, "blockHeight": 7863, "took": "36.460321ms"} -2023-12-16T14:20:07.829Z INFO sending PrepareRequest {"height": 7864, "view": 0} -2023-12-16T14:20:07.830Z INFO sending Commit {"height": 7864, "view": 0} -2023-12-16T14:20:07.830Z INFO approving block {"height": 7864, "hash": "7aa6c46f3fa660acdd83076c9f647d7c4f96a5e6fcd2b56f313bd038b7de1b91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19a0a09f9228fe56da04769eddb59a75755e7a3aa48f4b64249e4ef60b53cfca"} -2023-12-16T14:20:07.832Z INFO initializing dbft {"height": 7865, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:07.833Z debug frostfs-node/morph.go:229 new block {"index": 7864} -2023-12-16T14:20:07.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7864, "blockHeight": 7864, "took": "19.132187ms"} -2023-12-16T14:20:08.831Z INFO sending PrepareRequest {"height": 7865, "view": 0} -2023-12-16T14:20:08.831Z INFO sending Commit {"height": 7865, "view": 0} -2023-12-16T14:20:08.833Z INFO approving block {"height": 7865, "hash": "5150bc1fec88b71bbfbe3e211d26526bbb1529481a017b16696cc980273a0128", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7aa6c46f3fa660acdd83076c9f647d7c4f96a5e6fcd2b56f313bd038b7de1b91"} -2023-12-16T14:20:08.835Z INFO initializing dbft {"height": 7866, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:08.836Z debug frostfs-node/morph.go:229 new block {"index": 7865} -2023-12-16T14:20:08.989Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7865, "blockHeight": 7865, "took": "15.308916ms"} -2023-12-16T14:20:09.835Z INFO sending PrepareRequest {"height": 7866, "view": 0} -2023-12-16T14:20:09.835Z INFO sending Commit {"height": 7866, "view": 0} -2023-12-16T14:20:09.835Z INFO approving block {"height": 7866, "hash": "252e496e09c08eb7d938701dad66580b53343b9ad34923a6ab3bfb6128f05706", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5150bc1fec88b71bbfbe3e211d26526bbb1529481a017b16696cc980273a0128"} -2023-12-16T14:20:09.837Z INFO initializing dbft {"height": 7867, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:09.838Z debug frostfs-node/morph.go:229 new block {"index": 7866} -2023-12-16T14:20:09.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7866, "blockHeight": 7866, "took": "20.821417ms"} -2023-12-16T14:20:10.837Z INFO sending PrepareRequest {"height": 7867, "view": 0} -2023-12-16T14:20:10.837Z INFO sending Commit {"height": 7867, "view": 0} -2023-12-16T14:20:10.837Z INFO approving block {"height": 7867, "hash": "b75af8364ba9b89bd575da2dd10c51f4dc4c07e2b9523997698b6af5b3e8c33e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "252e496e09c08eb7d938701dad66580b53343b9ad34923a6ab3bfb6128f05706"} -2023-12-16T14:20:10.838Z INFO initializing dbft {"height": 7868, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:10.839Z debug frostfs-node/morph.go:229 new block {"index": 7867} -2023-12-16T14:20:10.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7867, "blockHeight": 7867, "took": "16.574686ms"} -2023-12-16T14:20:11.839Z INFO sending PrepareRequest {"height": 7868, "view": 0} -2023-12-16T14:20:11.839Z INFO sending Commit {"height": 7868, "view": 0} -2023-12-16T14:20:11.839Z INFO approving block {"height": 7868, "hash": "e2b43253958a2cc3c03aa70a1bc866cd38d149c3995c1a1b8f074c8c53a2ad9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b75af8364ba9b89bd575da2dd10c51f4dc4c07e2b9523997698b6af5b3e8c33e"} -2023-12-16T14:20:11.841Z INFO initializing dbft {"height": 7869, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:11.842Z debug frostfs-node/morph.go:229 new block {"index": 7868} -2023-12-16T14:20:11.999Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7868, "blockHeight": 7868, "took": "22.297811ms"} -2023-12-16T14:20:12.841Z INFO sending PrepareRequest {"height": 7869, "view": 0} -2023-12-16T14:20:12.841Z INFO sending Commit {"height": 7869, "view": 0} -2023-12-16T14:20:12.842Z INFO approving block {"height": 7869, "hash": "7d14ef46bdc754c718442b41a93af0b87d82f7677325994046a6fcf355cea500", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2b43253958a2cc3c03aa70a1bc866cd38d149c3995c1a1b8f074c8c53a2ad9f"} -2023-12-16T14:20:12.843Z INFO initializing dbft {"height": 7870, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:12.845Z debug frostfs-node/morph.go:229 new block {"index": 7869} -2023-12-16T14:20:13.002Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7869, "blockHeight": 7869, "took": "23.474067ms"} -2023-12-16T14:20:13.845Z INFO sending PrepareRequest {"height": 7870, "view": 0} -2023-12-16T14:20:13.846Z INFO sending Commit {"height": 7870, "view": 0} -2023-12-16T14:20:13.847Z INFO approving block {"height": 7870, "hash": "258aca62d272fafc0a12795eab5c06933d0596be7546215692f3eb6fea7c934d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d14ef46bdc754c718442b41a93af0b87d82f7677325994046a6fcf355cea500"} -2023-12-16T14:20:13.850Z INFO initializing dbft {"height": 7871, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:13.851Z debug frostfs-node/morph.go:229 new block {"index": 7870} -2023-12-16T14:20:13.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7870, "blockHeight": 7870, "took": "13.875046ms"} -2023-12-16T14:20:14.848Z INFO sending PrepareRequest {"height": 7871, "view": 0} -2023-12-16T14:20:14.848Z INFO sending Commit {"height": 7871, "view": 0} -2023-12-16T14:20:14.849Z INFO approving block {"height": 7871, "hash": "7b99b4fd322998ad971cca24f56f0bd65b1ddf0871d0465b577871f0186e5085", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "258aca62d272fafc0a12795eab5c06933d0596be7546215692f3eb6fea7c934d"} -2023-12-16T14:20:14.850Z INFO initializing dbft {"height": 7872, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:14.851Z debug frostfs-node/morph.go:229 new block {"index": 7871} -2023-12-16T14:20:14.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7871, "blockHeight": 7871, "took": "12.69422ms"} -2023-12-16T14:20:15.850Z INFO sending PrepareRequest {"height": 7872, "view": 0} -2023-12-16T14:20:15.850Z INFO sending Commit {"height": 7872, "view": 0} -2023-12-16T14:20:15.851Z INFO approving block {"height": 7872, "hash": "9794c5de8c00fab958bdab5e2ee726c2d202dcb6afe283f8b8e3e055857a801b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b99b4fd322998ad971cca24f56f0bd65b1ddf0871d0465b577871f0186e5085"} -2023-12-16T14:20:15.851Z INFO initializing dbft {"height": 7873, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:15.854Z debug frostfs-node/morph.go:229 new block {"index": 7872} -2023-12-16T14:20:15.998Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7872, "blockHeight": 7872, "took": "17.381831ms"} -2023-12-16T14:20:16.852Z INFO sending PrepareRequest {"height": 7873, "view": 0} -2023-12-16T14:20:16.853Z INFO sending Commit {"height": 7873, "view": 0} -2023-12-16T14:20:16.853Z INFO approving block {"height": 7873, "hash": "78deba5a393fbbe2f3fca7124ec70e3afd0c8526794c3a7b205eb85bc5fbeaf1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9794c5de8c00fab958bdab5e2ee726c2d202dcb6afe283f8b8e3e055857a801b"} -2023-12-16T14:20:16.855Z INFO initializing dbft {"height": 7874, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:16.856Z debug frostfs-node/morph.go:229 new block {"index": 7873} -2023-12-16T14:20:16.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7873, "blockHeight": 7873, "took": "11.31718ms"} -2023-12-16T14:20:17.854Z INFO sending PrepareRequest {"height": 7874, "view": 0} -2023-12-16T14:20:17.854Z INFO sending Commit {"height": 7874, "view": 0} -2023-12-16T14:20:17.855Z INFO approving block {"height": 7874, "hash": "ba8aad5e224c362f8660d94148e432de316e8692e72ebfdb670308817069293e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78deba5a393fbbe2f3fca7124ec70e3afd0c8526794c3a7b205eb85bc5fbeaf1"} -2023-12-16T14:20:17.857Z INFO initializing dbft {"height": 7875, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:17.858Z debug frostfs-node/morph.go:229 new block {"index": 7874} -2023-12-16T14:20:18.001Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7874, "blockHeight": 7874, "took": "19.54749ms"} -2023-12-16T14:20:18.856Z INFO sending PrepareRequest {"height": 7875, "view": 0} -2023-12-16T14:20:18.856Z INFO sending Commit {"height": 7875, "view": 0} -2023-12-16T14:20:18.857Z INFO approving block {"height": 7875, "hash": "f7693207321ca844c859f84373b7fc10b33fe3c69c5219f27fe6e72b1a9252de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba8aad5e224c362f8660d94148e432de316e8692e72ebfdb670308817069293e"} -2023-12-16T14:20:18.858Z INFO initializing dbft {"height": 7876, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:18.860Z debug frostfs-node/morph.go:229 new block {"index": 7875} -2023-12-16T14:20:18.995Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7875, "blockHeight": 7875, "took": "12.012334ms"} -2023-12-16T14:20:19.858Z INFO sending PrepareRequest {"height": 7876, "view": 0} -2023-12-16T14:20:19.859Z INFO sending Commit {"height": 7876, "view": 0} -2023-12-16T14:20:19.859Z INFO approving block {"height": 7876, "hash": "d28145e19936a04cd91cdad19158fbd7a3e0b0f674723369ea7eca471d781859", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7693207321ca844c859f84373b7fc10b33fe3c69c5219f27fe6e72b1a9252de"} -2023-12-16T14:20:19.861Z INFO initializing dbft {"height": 7877, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:19.862Z debug frostfs-node/morph.go:229 new block {"index": 7876} -2023-12-16T14:20:20.024Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7876, "blockHeight": 7876, "took": "40.429308ms"} -2023-12-16T14:20:20.862Z INFO sending PrepareRequest {"height": 7877, "view": 0} -2023-12-16T14:20:20.862Z INFO sending Commit {"height": 7877, "view": 0} -2023-12-16T14:20:20.862Z INFO approving block {"height": 7877, "hash": "d3e80c9b89c73f260779ad594c8ce986937a082791e538f9fad60d3fbf4c6b31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d28145e19936a04cd91cdad19158fbd7a3e0b0f674723369ea7eca471d781859"} -2023-12-16T14:20:20.869Z INFO initializing dbft {"height": 7878, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:20.870Z debug frostfs-node/morph.go:229 new block {"index": 7877} -2023-12-16T14:20:21.006Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7877, "blockHeight": 7877, "took": "22.045607ms"} -2023-12-16T14:20:21.864Z INFO sending PrepareRequest {"height": 7878, "view": 0} -2023-12-16T14:20:21.864Z INFO sending Commit {"height": 7878, "view": 0} -2023-12-16T14:20:21.864Z INFO approving block {"height": 7878, "hash": "84d381c6a93ed84763f8159523d9731eebaf3ec573939d1b007076f9340d1f3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3e80c9b89c73f260779ad594c8ce986937a082791e538f9fad60d3fbf4c6b31"} -2023-12-16T14:20:21.866Z INFO initializing dbft {"height": 7879, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:21.867Z debug frostfs-node/morph.go:229 new block {"index": 7878} -2023-12-16T14:20:22.017Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7878, "blockHeight": 7878, "took": "31.175428ms"} -2023-12-16T14:20:22.866Z INFO sending PrepareRequest {"height": 7879, "view": 0} -2023-12-16T14:20:22.866Z INFO sending Commit {"height": 7879, "view": 0} -2023-12-16T14:20:22.866Z INFO approving block {"height": 7879, "hash": "03cebe21c3caeb3e60543ac3e1b2eecdb28a05c2526fe6feaba9291603e49618", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84d381c6a93ed84763f8159523d9731eebaf3ec573939d1b007076f9340d1f3c"} -2023-12-16T14:20:22.868Z INFO initializing dbft {"height": 7880, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:22.870Z debug frostfs-node/morph.go:229 new block {"index": 7879} -2023-12-16T14:20:23.001Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7879, "blockHeight": 7879, "took": "13.95684ms"} -2023-12-16T14:20:23.867Z INFO sending PrepareRequest {"height": 7880, "view": 0} -2023-12-16T14:20:23.868Z INFO sending Commit {"height": 7880, "view": 0} -2023-12-16T14:20:23.868Z INFO approving block {"height": 7880, "hash": "5ba7e51b684cf5c902e954e821b6a28c8112e1035360a4aecfa5b4dff15c8a74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03cebe21c3caeb3e60543ac3e1b2eecdb28a05c2526fe6feaba9291603e49618"} -2023-12-16T14:20:23.869Z INFO initializing dbft {"height": 7881, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:23.870Z debug frostfs-node/morph.go:229 new block {"index": 7880} -2023-12-16T14:20:24.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7880, "blockHeight": 7880, "took": "16.335288ms"} -2023-12-16T14:20:24.870Z INFO sending PrepareRequest {"height": 7881, "view": 0} -2023-12-16T14:20:24.870Z INFO sending Commit {"height": 7881, "view": 0} -2023-12-16T14:20:24.870Z INFO approving block {"height": 7881, "hash": "c213ca09489cbc43f0ab7e54ae1fba47786195ca581520d8677ae8571d676e18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ba7e51b684cf5c902e954e821b6a28c8112e1035360a4aecfa5b4dff15c8a74"} -2023-12-16T14:20:24.873Z INFO initializing dbft {"height": 7882, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:24.873Z debug frostfs-node/morph.go:229 new block {"index": 7881} -2023-12-16T14:20:25.021Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7881, "blockHeight": 7881, "took": "33.338634ms"} -2023-12-16T14:20:25.872Z INFO sending PrepareRequest {"height": 7882, "view": 0} -2023-12-16T14:20:25.873Z INFO sending Commit {"height": 7882, "view": 0} -2023-12-16T14:20:25.873Z INFO approving block {"height": 7882, "hash": "3f23a6b7a1548e78c32eab0c08288a6a5d6ed637aa46ca4ce265a0437e8e9f5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c213ca09489cbc43f0ab7e54ae1fba47786195ca581520d8677ae8571d676e18"} -2023-12-16T14:20:25.875Z INFO initializing dbft {"height": 7883, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:25.876Z debug frostfs-node/morph.go:229 new block {"index": 7882} -2023-12-16T14:20:26.007Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7882, "blockHeight": 7882, "took": "18.269779ms"} -2023-12-16T14:20:26.874Z INFO sending PrepareRequest {"height": 7883, "view": 0} -2023-12-16T14:20:26.874Z INFO sending Commit {"height": 7883, "view": 0} -2023-12-16T14:20:26.877Z INFO approving block {"height": 7883, "hash": "cf3a5fc98b22df6dee684b0dc0b75c7c5691bcab5ab9e101388837f8363451a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f23a6b7a1548e78c32eab0c08288a6a5d6ed637aa46ca4ce265a0437e8e9f5b"} -2023-12-16T14:20:26.879Z INFO initializing dbft {"height": 7884, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:26.881Z debug frostfs-node/morph.go:229 new block {"index": 7883} -2023-12-16T14:20:27.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7883, "blockHeight": 7883, "took": "19.28542ms"} -2023-12-16T14:20:27.878Z INFO sending PrepareRequest {"height": 7884, "view": 0} -2023-12-16T14:20:27.878Z INFO sending Commit {"height": 7884, "view": 0} -2023-12-16T14:20:27.878Z INFO approving block {"height": 7884, "hash": "4f54af5ceabfd29f804991dfad68d19ca43bf2baed64da6425f4ee31c87aed80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf3a5fc98b22df6dee684b0dc0b75c7c5691bcab5ab9e101388837f8363451a9"} -2023-12-16T14:20:27.880Z INFO initializing dbft {"height": 7885, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:27.882Z debug frostfs-node/morph.go:229 new block {"index": 7884} -2023-12-16T14:20:28.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7884, "blockHeight": 7884, "took": "13.081657ms"} -2023-12-16T14:20:28.879Z INFO sending PrepareRequest {"height": 7885, "view": 0} -2023-12-16T14:20:28.880Z INFO sending Commit {"height": 7885, "view": 0} -2023-12-16T14:20:28.880Z INFO approving block {"height": 7885, "hash": "d73158b5323ea6f2abd57484d4ab50214dba93f3f48d065133cdd84753b531e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f54af5ceabfd29f804991dfad68d19ca43bf2baed64da6425f4ee31c87aed80"} -2023-12-16T14:20:28.881Z INFO initializing dbft {"height": 7886, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:28.883Z debug frostfs-node/morph.go:229 new block {"index": 7885} -2023-12-16T14:20:29.036Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7885, "blockHeight": 7885, "took": "44.759004ms"} -2023-12-16T14:20:29.881Z INFO sending PrepareRequest {"height": 7886, "view": 0} -2023-12-16T14:20:29.881Z INFO sending Commit {"height": 7886, "view": 0} -2023-12-16T14:20:29.882Z INFO approving block {"height": 7886, "hash": "716c1205d5ac17b2ea2cc93d3d2b317f6eb4afd249c341547ac9e78049847780", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d73158b5323ea6f2abd57484d4ab50214dba93f3f48d065133cdd84753b531e7"} -2023-12-16T14:20:29.883Z INFO initializing dbft {"height": 7887, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:29.883Z debug frostfs-node/morph.go:229 new block {"index": 7886} -2023-12-16T14:20:30.007Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7886, "blockHeight": 7886, "took": "13.710869ms"} -2023-12-16T14:20:30.883Z INFO sending PrepareRequest {"height": 7887, "view": 0} -2023-12-16T14:20:30.883Z INFO sending Commit {"height": 7887, "view": 0} -2023-12-16T14:20:30.884Z INFO approving block {"height": 7887, "hash": "051f374488efc6a61a27c7f0efe966696d3f289cad73905a2cee0f8b4daf4496", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "716c1205d5ac17b2ea2cc93d3d2b317f6eb4afd249c341547ac9e78049847780"} -2023-12-16T14:20:30.892Z INFO initializing dbft {"height": 7888, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:30.893Z debug frostfs-node/morph.go:229 new block {"index": 7887} -2023-12-16T14:20:31.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7887, "blockHeight": 7887, "took": "10.135218ms"} -2023-12-16T14:20:31.885Z INFO sending PrepareRequest {"height": 7888, "view": 0} -2023-12-16T14:20:31.885Z INFO sending Commit {"height": 7888, "view": 0} -2023-12-16T14:20:31.885Z INFO approving block {"height": 7888, "hash": "90f029b0da31a856a2752879d912e44149227589e8bc36a73a14f63c6d6b31d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "051f374488efc6a61a27c7f0efe966696d3f289cad73905a2cee0f8b4daf4496"} -2023-12-16T14:20:31.887Z INFO initializing dbft {"height": 7889, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:31.888Z debug frostfs-node/morph.go:229 new block {"index": 7888} -2023-12-16T14:20:32.016Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7888, "blockHeight": 7888, "took": "21.081815ms"} -2023-12-16T14:20:32.887Z INFO sending PrepareRequest {"height": 7889, "view": 0} -2023-12-16T14:20:32.888Z INFO sending Commit {"height": 7889, "view": 0} -2023-12-16T14:20:32.888Z INFO approving block {"height": 7889, "hash": "744a51c12d1c828be17ac8b1aaae41933ad9ec707b15dc67470458a3499b3d3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90f029b0da31a856a2752879d912e44149227589e8bc36a73a14f63c6d6b31d9"} -2023-12-16T14:20:32.890Z INFO initializing dbft {"height": 7890, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:32.891Z debug frostfs-node/morph.go:229 new block {"index": 7889} -2023-12-16T14:20:33.015Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7889, "blockHeight": 7889, "took": "19.037989ms"} -2023-12-16T14:20:33.890Z INFO sending PrepareRequest {"height": 7890, "view": 0} -2023-12-16T14:20:33.890Z INFO sending Commit {"height": 7890, "view": 0} -2023-12-16T14:20:33.891Z INFO approving block {"height": 7890, "hash": "3e0d3d6231c2ce3a4f27e52e583185180f5cfd4f4bbeb2103a94fcd0ad885e69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "744a51c12d1c828be17ac8b1aaae41933ad9ec707b15dc67470458a3499b3d3e"} -2023-12-16T14:20:33.893Z INFO initializing dbft {"height": 7891, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:33.894Z debug frostfs-node/morph.go:229 new block {"index": 7890} -2023-12-16T14:20:34.008Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7890, "blockHeight": 7890, "took": "11.119678ms"} -2023-12-16T14:20:34.892Z INFO sending PrepareRequest {"height": 7891, "view": 0} -2023-12-16T14:20:34.893Z INFO sending Commit {"height": 7891, "view": 0} -2023-12-16T14:20:34.893Z INFO approving block {"height": 7891, "hash": "7279c01763fcf35b50cdff15eb2f452939204131a8b8041e47b344c3c8789262", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e0d3d6231c2ce3a4f27e52e583185180f5cfd4f4bbeb2103a94fcd0ad885e69"} -2023-12-16T14:20:34.895Z INFO initializing dbft {"height": 7892, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:34.896Z debug frostfs-node/morph.go:229 new block {"index": 7891} -2023-12-16T14:20:34.904Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 33, "iteration": 2, "error": "no data for 1 iteration in 33 epoch for consumers's trusts"} -2023-12-16T14:20:34.905Z info settlement/calls.go:106 start basic income distribution {"epoch": 33} -2023-12-16T14:20:35.011Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7891, "blockHeight": 7891, "took": "12.770667ms"} -2023-12-16T14:20:35.895Z INFO sending PrepareRequest {"height": 7892, "view": 0} -2023-12-16T14:20:35.896Z INFO sending Commit {"height": 7892, "view": 0} -2023-12-16T14:20:35.897Z INFO approving block {"height": 7892, "hash": "94968c4c9c602af5e2bcf1fb8190ec13beb9f0945d750f13f11b4c68e283ae81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7279c01763fcf35b50cdff15eb2f452939204131a8b8041e47b344c3c8789262"} -2023-12-16T14:20:35.899Z INFO initializing dbft {"height": 7893, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:35.899Z debug frostfs-node/morph.go:229 new block {"index": 7892} -2023-12-16T14:20:36.016Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7892, "blockHeight": 7892, "took": "16.639482ms"} -2023-12-16T14:20:36.898Z INFO sending PrepareRequest {"height": 7893, "view": 0} -2023-12-16T14:20:36.898Z INFO sending Commit {"height": 7893, "view": 0} -2023-12-16T14:20:36.898Z INFO approving block {"height": 7893, "hash": "d39efda5415956121e4e1c6e7654ee3b586f29432813cad9afd895b598eaa633", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94968c4c9c602af5e2bcf1fb8190ec13beb9f0945d750f13f11b4c68e283ae81"} -2023-12-16T14:20:36.899Z INFO initializing dbft {"height": 7894, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:36.900Z debug frostfs-node/morph.go:229 new block {"index": 7893} -2023-12-16T14:20:37.012Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7893, "blockHeight": 7893, "took": "12.557422ms"} -2023-12-16T14:20:37.901Z INFO sending PrepareRequest {"height": 7894, "view": 0} -2023-12-16T14:20:37.901Z INFO sending Commit {"height": 7894, "view": 0} -2023-12-16T14:20:37.902Z INFO approving block {"height": 7894, "hash": "ddb50f5cd7e7870733b9ff5e18d71307e606536b5aa54b5d1b70fc1f0c4df369", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d39efda5415956121e4e1c6e7654ee3b586f29432813cad9afd895b598eaa633"} -2023-12-16T14:20:37.904Z INFO initializing dbft {"height": 7895, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:37.905Z debug frostfs-node/morph.go:229 new block {"index": 7894} -2023-12-16T14:20:38.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7894, "blockHeight": 7894, "took": "13.903079ms"} -2023-12-16T14:20:38.903Z INFO sending PrepareRequest {"height": 7895, "view": 0} -2023-12-16T14:20:38.903Z INFO sending Commit {"height": 7895, "view": 0} -2023-12-16T14:20:38.903Z INFO approving block {"height": 7895, "hash": "09ea0de56bc325a64f7210d866e75e69dd1bf675c27fc3424dd46056d9797483", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddb50f5cd7e7870733b9ff5e18d71307e606536b5aa54b5d1b70fc1f0c4df369"} -2023-12-16T14:20:38.904Z INFO initializing dbft {"height": 7896, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:38.905Z debug frostfs-node/morph.go:229 new block {"index": 7895} -2023-12-16T14:20:39.022Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7895, "blockHeight": 7895, "took": "20.660292ms"} -2023-12-16T14:20:39.904Z INFO sending PrepareRequest {"height": 7896, "view": 0} -2023-12-16T14:20:39.904Z INFO sending Commit {"height": 7896, "view": 0} -2023-12-16T14:20:39.905Z INFO approving block {"height": 7896, "hash": "5384fb8ce2adc75ae1e3649d2b3fae83b3fc58affc9ec12f828da30c117c849d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09ea0de56bc325a64f7210d866e75e69dd1bf675c27fc3424dd46056d9797483"} -2023-12-16T14:20:39.906Z INFO initializing dbft {"height": 7897, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:39.907Z debug frostfs-node/morph.go:229 new block {"index": 7896} -2023-12-16T14:20:40.021Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7896, "blockHeight": 7896, "took": "17.802964ms"} -2023-12-16T14:20:40.906Z INFO sending PrepareRequest {"height": 7897, "view": 0} -2023-12-16T14:20:40.906Z INFO sending Commit {"height": 7897, "view": 0} -2023-12-16T14:20:40.906Z INFO approving block {"height": 7897, "hash": "4164d692db20eb7618da0c2d214bd99afe45651aad74ce42b745dfe12844e01f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5384fb8ce2adc75ae1e3649d2b3fae83b3fc58affc9ec12f828da30c117c849d"} -2023-12-16T14:20:40.908Z INFO initializing dbft {"height": 7898, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:40.909Z debug frostfs-node/morph.go:229 new block {"index": 7897} -2023-12-16T14:20:41.017Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7897, "blockHeight": 7897, "took": "13.508038ms"} -2023-12-16T14:20:41.907Z INFO sending PrepareRequest {"height": 7898, "view": 0} -2023-12-16T14:20:41.907Z INFO sending Commit {"height": 7898, "view": 0} -2023-12-16T14:20:41.908Z INFO approving block {"height": 7898, "hash": "a0374146791fc1264153f0a78c3b0fd442685f3efa07b18dd1ed2948208da86c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4164d692db20eb7618da0c2d214bd99afe45651aad74ce42b745dfe12844e01f"} -2023-12-16T14:20:41.910Z INFO initializing dbft {"height": 7899, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:41.911Z debug frostfs-node/morph.go:229 new block {"index": 7898} -2023-12-16T14:20:42.022Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7898, "blockHeight": 7898, "took": "17.775268ms"} -2023-12-16T14:20:42.909Z INFO sending PrepareRequest {"height": 7899, "view": 0} -2023-12-16T14:20:42.910Z INFO sending Commit {"height": 7899, "view": 0} -2023-12-16T14:20:42.911Z INFO approving block {"height": 7899, "hash": "cacf540f06c7426952301a1743d893286491308ff5c8c7a7a142b668cc6242f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0374146791fc1264153f0a78c3b0fd442685f3efa07b18dd1ed2948208da86c"} -2023-12-16T14:20:42.913Z INFO initializing dbft {"height": 7900, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:42.914Z debug frostfs-node/morph.go:229 new block {"index": 7899} -2023-12-16T14:20:43.020Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7899, "blockHeight": 7899, "took": "14.760878ms"} -2023-12-16T14:20:43.913Z INFO sending PrepareRequest {"height": 7900, "view": 0} -2023-12-16T14:20:43.913Z INFO sending Commit {"height": 7900, "view": 0} -2023-12-16T14:20:43.914Z INFO approving block {"height": 7900, "hash": "19bf7796f83a2369f6265a0b13dbc859f9e4349740273ff75c690186d8fe7be3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cacf540f06c7426952301a1743d893286491308ff5c8c7a7a142b668cc6242f4"} -2023-12-16T14:20:43.914Z INFO initializing dbft {"height": 7901, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:43.918Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:20:43.918Z debug frostfs-node/morph.go:229 new block {"index": 7900} -2023-12-16T14:20:43.919Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:20:43.919Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:20:44.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7900, "blockHeight": 7900, "took": "16.761028ms"} -2023-12-16T14:20:44.915Z INFO sending PrepareRequest {"height": 7901, "view": 0} -2023-12-16T14:20:44.915Z INFO sending Commit {"height": 7901, "view": 0} -2023-12-16T14:20:44.916Z INFO approving block {"height": 7901, "hash": "bec1a48520e8b67b2d4a9e27e863ddbefbe2b9fee40b5999cf8d2b571ceeebcd", "tx_count": 2, "merkle": "130527fc737f1b41138b51da2d534df619a80ba66bc3996a675ab681493967f8", "prev": "19bf7796f83a2369f6265a0b13dbc859f9e4349740273ff75c690186d8fe7be3"} -2023-12-16T14:20:44.917Z INFO runtime log {"tx": "a1fb0a2d30d47b8eebc1fbbc077581fa975d66d090cb9159e7b0f2ad5eb68ffa", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:20:44.918Z INFO runtime log {"tx": "a1fb0a2d30d47b8eebc1fbbc077581fa975d66d090cb9159e7b0f2ad5eb68ffa", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:20:44.919Z INFO initializing dbft {"height": 7902, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:44.922Z debug frostfs-node/morph.go:229 new block {"index": 7901} -2023-12-16T14:20:45.033Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7901, "blockHeight": 7901, "took": "26.250519ms"} -2023-12-16T14:20:45.917Z INFO sending PrepareRequest {"height": 7902, "view": 0} -2023-12-16T14:20:45.917Z INFO sending Commit {"height": 7902, "view": 0} -2023-12-16T14:20:45.918Z INFO approving block {"height": 7902, "hash": "eab3bde0ddf6d22c85728e8df7ae17df251ef80d1d785d20b7846d7246898e3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bec1a48520e8b67b2d4a9e27e863ddbefbe2b9fee40b5999cf8d2b571ceeebcd"} -2023-12-16T14:20:45.920Z INFO initializing dbft {"height": 7903, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:45.921Z debug frostfs-node/morph.go:229 new block {"index": 7902} -2023-12-16T14:20:46.016Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7902, "blockHeight": 7902, "took": "8.421295ms"} -2023-12-16T14:20:46.920Z INFO sending PrepareRequest {"height": 7903, "view": 0} -2023-12-16T14:20:46.920Z INFO sending Commit {"height": 7903, "view": 0} -2023-12-16T14:20:46.920Z INFO approving block {"height": 7903, "hash": "2a8ac79eb4f90a42d2407a065c8351cee4764fe6eef3af29c269e47197bc8f2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eab3bde0ddf6d22c85728e8df7ae17df251ef80d1d785d20b7846d7246898e3b"} -2023-12-16T14:20:46.922Z INFO initializing dbft {"height": 7904, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:46.924Z debug frostfs-node/morph.go:229 new block {"index": 7903} -2023-12-16T14:20:47.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7903, "blockHeight": 7903, "took": "14.132559ms"} -2023-12-16T14:20:47.921Z INFO sending PrepareRequest {"height": 7904, "view": 0} -2023-12-16T14:20:47.922Z INFO sending Commit {"height": 7904, "view": 0} -2023-12-16T14:20:47.922Z INFO approving block {"height": 7904, "hash": "ebcb80c58d39851b100b05790d53bbe75626678f84f4d9775a0c460c78b448cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a8ac79eb4f90a42d2407a065c8351cee4764fe6eef3af29c269e47197bc8f2c"} -2023-12-16T14:20:47.925Z INFO initializing dbft {"height": 7905, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:47.925Z debug frostfs-node/morph.go:229 new block {"index": 7904} -2023-12-16T14:20:48.033Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7904, "blockHeight": 7904, "took": "23.733201ms"} -2023-12-16T14:20:48.923Z INFO sending PrepareRequest {"height": 7905, "view": 0} -2023-12-16T14:20:48.924Z INFO sending Commit {"height": 7905, "view": 0} -2023-12-16T14:20:48.924Z INFO approving block {"height": 7905, "hash": "ed5e2cd2b638525aec355a5ff961bab1d74ecc148af057d10181ad2cd498fd13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ebcb80c58d39851b100b05790d53bbe75626678f84f4d9775a0c460c78b448cc"} -2023-12-16T14:20:48.926Z INFO initializing dbft {"height": 7906, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:48.927Z debug frostfs-node/morph.go:229 new block {"index": 7905} -2023-12-16T14:20:49.030Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7905, "blockHeight": 7905, "took": "19.962606ms"} -2023-12-16T14:20:49.926Z INFO sending PrepareRequest {"height": 7906, "view": 0} -2023-12-16T14:20:49.926Z INFO sending Commit {"height": 7906, "view": 0} -2023-12-16T14:20:49.927Z INFO approving block {"height": 7906, "hash": "b2ddc9d97d099d380c273c0ddc4b2aaaff7e57ae072d4f4ac4caf492169fdcb6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed5e2cd2b638525aec355a5ff961bab1d74ecc148af057d10181ad2cd498fd13"} -2023-12-16T14:20:49.928Z INFO initializing dbft {"height": 7907, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:49.929Z debug frostfs-node/morph.go:229 new block {"index": 7906} -2023-12-16T14:20:50.024Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7906, "blockHeight": 7906, "took": "12.832508ms"} -2023-12-16T14:20:50.927Z INFO sending PrepareRequest {"height": 7907, "view": 0} -2023-12-16T14:20:50.928Z INFO sending Commit {"height": 7907, "view": 0} -2023-12-16T14:20:50.928Z INFO approving block {"height": 7907, "hash": "eda42d4fceac8b626d603bb556eeac13c02a9354af99b1af6770ea4522629364", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2ddc9d97d099d380c273c0ddc4b2aaaff7e57ae072d4f4ac4caf492169fdcb6"} -2023-12-16T14:20:50.930Z INFO initializing dbft {"height": 7908, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:50.932Z debug frostfs-node/morph.go:229 new block {"index": 7907} -2023-12-16T14:20:51.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7907, "blockHeight": 7907, "took": "13.050421ms"} -2023-12-16T14:20:51.929Z INFO sending PrepareRequest {"height": 7908, "view": 0} -2023-12-16T14:20:51.929Z INFO sending Commit {"height": 7908, "view": 0} -2023-12-16T14:20:51.930Z INFO approving block {"height": 7908, "hash": "333a13339361848f7c6712f58a74cd23273d22f9de35fc58703da412a06f86fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eda42d4fceac8b626d603bb556eeac13c02a9354af99b1af6770ea4522629364"} -2023-12-16T14:20:51.932Z INFO initializing dbft {"height": 7909, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:51.933Z debug frostfs-node/morph.go:229 new block {"index": 7908} -2023-12-16T14:20:52.042Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7908, "blockHeight": 7908, "took": "28.756949ms"} -2023-12-16T14:20:52.932Z INFO sending PrepareRequest {"height": 7909, "view": 0} -2023-12-16T14:20:52.932Z INFO sending Commit {"height": 7909, "view": 0} -2023-12-16T14:20:52.933Z INFO approving block {"height": 7909, "hash": "2f7199003121276d09a7a37d778c707e0bdd5fe770b1b0bce5604efca9de8221", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "333a13339361848f7c6712f58a74cd23273d22f9de35fc58703da412a06f86fe"} -2023-12-16T14:20:52.939Z INFO initializing dbft {"height": 7910, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:52.940Z debug frostfs-node/morph.go:229 new block {"index": 7909} -2023-12-16T14:20:53.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7909, "blockHeight": 7909, "took": "60.979971ms"} -2023-12-16T14:20:53.935Z INFO sending PrepareRequest {"height": 7910, "view": 0} -2023-12-16T14:20:53.935Z INFO sending Commit {"height": 7910, "view": 0} -2023-12-16T14:20:53.935Z INFO approving block {"height": 7910, "hash": "9c22c593f0c9f3f49a223e57d398de2c0678eaa6128873145fde8920ff4b6e67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f7199003121276d09a7a37d778c707e0bdd5fe770b1b0bce5604efca9de8221"} -2023-12-16T14:20:53.937Z INFO initializing dbft {"height": 7911, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:53.939Z debug frostfs-node/morph.go:229 new block {"index": 7910} -2023-12-16T14:20:54.041Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7910, "blockHeight": 7910, "took": "26.611757ms"} -2023-12-16T14:20:54.937Z INFO sending PrepareRequest {"height": 7911, "view": 0} -2023-12-16T14:20:54.937Z INFO sending Commit {"height": 7911, "view": 0} -2023-12-16T14:20:54.938Z INFO approving block {"height": 7911, "hash": "9a0c93b9d34d2692a837110559991635b724f13aaa461a1adadbd4ac15b93cee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c22c593f0c9f3f49a223e57d398de2c0678eaa6128873145fde8920ff4b6e67"} -2023-12-16T14:20:54.939Z INFO initializing dbft {"height": 7912, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:54.942Z debug frostfs-node/morph.go:229 new block {"index": 7911} -2023-12-16T14:20:55.286Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7911, "blockHeight": 7911, "took": "270.052868ms"} -2023-12-16T14:20:55.939Z INFO sending PrepareRequest {"height": 7912, "view": 0} -2023-12-16T14:20:55.939Z INFO sending Commit {"height": 7912, "view": 0} -2023-12-16T14:20:55.939Z INFO approving block {"height": 7912, "hash": "0c529baa1487583e7106882466258674a221d2258b7b470af6f94ab86f8b0b56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a0c93b9d34d2692a837110559991635b724f13aaa461a1adadbd4ac15b93cee"} -2023-12-16T14:20:55.941Z INFO initializing dbft {"height": 7913, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:55.942Z debug frostfs-node/morph.go:229 new block {"index": 7912} -2023-12-16T14:20:56.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7912, "blockHeight": 7912, "took": "94.136316ms"} -2023-12-16T14:20:56.942Z INFO sending PrepareRequest {"height": 7913, "view": 0} -2023-12-16T14:20:56.942Z INFO sending Commit {"height": 7913, "view": 0} -2023-12-16T14:20:56.943Z INFO approving block {"height": 7913, "hash": "a7736dd20332827cc6b969462ca50b42387e2cbbbce4f15ec0bfe7d9ed675c73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c529baa1487583e7106882466258674a221d2258b7b470af6f94ab86f8b0b56"} -2023-12-16T14:20:56.944Z INFO initializing dbft {"height": 7914, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:56.968Z debug frostfs-node/morph.go:229 new block {"index": 7913} -2023-12-16T14:20:57.177Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7913, "blockHeight": 7913, "took": "123.798324ms"} -2023-12-16T14:20:57.943Z INFO sending PrepareRequest {"height": 7914, "view": 0} -2023-12-16T14:20:57.944Z INFO sending Commit {"height": 7914, "view": 0} -2023-12-16T14:20:57.944Z INFO approving block {"height": 7914, "hash": "4769a827a370104e66746c6781769de2e6eec682eb52cfd2d9d3639e28ede37c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7736dd20332827cc6b969462ca50b42387e2cbbbce4f15ec0bfe7d9ed675c73"} -2023-12-16T14:20:57.945Z INFO initializing dbft {"height": 7915, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:57.946Z debug frostfs-node/morph.go:229 new block {"index": 7914} -2023-12-16T14:20:58.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7914, "blockHeight": 7914, "took": "418.012698ms"} -2023-12-16T14:20:58.945Z INFO sending PrepareRequest {"height": 7915, "view": 0} -2023-12-16T14:20:58.945Z INFO sending Commit {"height": 7915, "view": 0} -2023-12-16T14:20:58.946Z INFO approving block {"height": 7915, "hash": "3f23ed12ddc3507bea11bc13d248226c0874150f55f0bd1acf1c8b3ca367bd01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4769a827a370104e66746c6781769de2e6eec682eb52cfd2d9d3639e28ede37c"} -2023-12-16T14:20:58.948Z INFO initializing dbft {"height": 7916, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:58.949Z debug frostfs-node/morph.go:229 new block {"index": 7915} -2023-12-16T14:20:59.072Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7915, "blockHeight": 7915, "took": "17.25587ms"} -2023-12-16T14:20:59.948Z INFO sending PrepareRequest {"height": 7916, "view": 0} -2023-12-16T14:20:59.949Z INFO sending Commit {"height": 7916, "view": 0} -2023-12-16T14:20:59.949Z INFO approving block {"height": 7916, "hash": "b82db0ffd33ccb867f491fc151ff3af8aebe8d905b5073bd2c9f14e0a97306a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f23ed12ddc3507bea11bc13d248226c0874150f55f0bd1acf1c8b3ca367bd01"} -2023-12-16T14:20:59.951Z INFO initializing dbft {"height": 7917, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:20:59.952Z debug frostfs-node/morph.go:229 new block {"index": 7916} -2023-12-16T14:21:00.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7916, "blockHeight": 7916, "took": "28.992338ms"} -2023-12-16T14:21:00.951Z INFO sending PrepareRequest {"height": 7917, "view": 0} -2023-12-16T14:21:00.951Z INFO sending Commit {"height": 7917, "view": 0} -2023-12-16T14:21:00.952Z INFO approving block {"height": 7917, "hash": "83bd81f57606240df4af54d9520a6276c9f827b96ca01bc606ec9bf3b04ff841", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b82db0ffd33ccb867f491fc151ff3af8aebe8d905b5073bd2c9f14e0a97306a1"} -2023-12-16T14:21:00.954Z INFO initializing dbft {"height": 7918, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:00.955Z debug frostfs-node/morph.go:229 new block {"index": 7917} -2023-12-16T14:21:01.076Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7917, "blockHeight": 7917, "took": "19.694455ms"} -2023-12-16T14:21:01.953Z INFO sending PrepareRequest {"height": 7918, "view": 0} -2023-12-16T14:21:01.953Z INFO sending Commit {"height": 7918, "view": 0} -2023-12-16T14:21:01.954Z INFO approving block {"height": 7918, "hash": "b32cfa0be38dcb082a8dd4a00a145771e50a58f46d3b1ed14ec2341d200ab8a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83bd81f57606240df4af54d9520a6276c9f827b96ca01bc606ec9bf3b04ff841"} -2023-12-16T14:21:01.955Z INFO initializing dbft {"height": 7919, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:01.956Z debug frostfs-node/morph.go:229 new block {"index": 7918} -2023-12-16T14:21:02.081Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7918, "blockHeight": 7918, "took": "22.500776ms"} -2023-12-16T14:21:02.955Z INFO sending PrepareRequest {"height": 7919, "view": 0} -2023-12-16T14:21:02.955Z INFO sending Commit {"height": 7919, "view": 0} -2023-12-16T14:21:02.956Z INFO approving block {"height": 7919, "hash": "7619ff732dd9fbf526ad62c2eba9eb850374043dcc7f8c2f527bf739317dfb86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b32cfa0be38dcb082a8dd4a00a145771e50a58f46d3b1ed14ec2341d200ab8a8"} -2023-12-16T14:21:02.957Z INFO initializing dbft {"height": 7920, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:02.958Z debug frostfs-node/morph.go:229 new block {"index": 7919} -2023-12-16T14:21:03.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7919, "blockHeight": 7919, "took": "12.037801ms"} -2023-12-16T14:21:03.957Z INFO sending PrepareRequest {"height": 7920, "view": 0} -2023-12-16T14:21:03.958Z INFO sending Commit {"height": 7920, "view": 0} -2023-12-16T14:21:03.958Z INFO approving block {"height": 7920, "hash": "8b168d552856a04033603046c53c6e9308ee3c6f4dff826019fa8ae743c772fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7619ff732dd9fbf526ad62c2eba9eb850374043dcc7f8c2f527bf739317dfb86"} -2023-12-16T14:21:03.960Z INFO initializing dbft {"height": 7921, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:03.961Z debug frostfs-node/morph.go:229 new block {"index": 7920} -2023-12-16T14:21:04.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7920, "blockHeight": 7920, "took": "48.542133ms"} -2023-12-16T14:21:04.959Z INFO sending PrepareRequest {"height": 7921, "view": 0} -2023-12-16T14:21:04.960Z INFO sending Commit {"height": 7921, "view": 0} -2023-12-16T14:21:04.960Z INFO approving block {"height": 7921, "hash": "c3effc6b13ceb5fbade24d66adc33b9d220c3ee3e2c52c048534b516f75543d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b168d552856a04033603046c53c6e9308ee3c6f4dff826019fa8ae743c772fa"} -2023-12-16T14:21:04.962Z INFO initializing dbft {"height": 7922, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:04.963Z debug frostfs-node/morph.go:229 new block {"index": 7921} -2023-12-16T14:21:05.115Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7921, "blockHeight": 7921, "took": "52.850528ms"} -2023-12-16T14:21:05.961Z INFO sending PrepareRequest {"height": 7922, "view": 0} -2023-12-16T14:21:05.962Z INFO sending Commit {"height": 7922, "view": 0} -2023-12-16T14:21:05.962Z INFO approving block {"height": 7922, "hash": "7d82246b175c397ecafdd464e709a3f508247ed229984438ec394e44beb56c16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3effc6b13ceb5fbade24d66adc33b9d220c3ee3e2c52c048534b516f75543d3"} -2023-12-16T14:21:05.964Z INFO initializing dbft {"height": 7923, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:05.965Z debug frostfs-node/morph.go:229 new block {"index": 7922} -2023-12-16T14:21:06.091Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7922, "blockHeight": 7922, "took": "28.176001ms"} -2023-12-16T14:21:06.963Z INFO sending PrepareRequest {"height": 7923, "view": 0} -2023-12-16T14:21:06.963Z INFO sending Commit {"height": 7923, "view": 0} -2023-12-16T14:21:06.964Z INFO approving block {"height": 7923, "hash": "bb075293d736ca37fa168480ceffe0f265c8ca252a3d71ff8cf623aaac471f04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d82246b175c397ecafdd464e709a3f508247ed229984438ec394e44beb56c16"} -2023-12-16T14:21:06.966Z INFO initializing dbft {"height": 7924, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:06.967Z debug frostfs-node/morph.go:229 new block {"index": 7923} -2023-12-16T14:21:07.084Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7923, "blockHeight": 7923, "took": "19.773755ms"} -2023-12-16T14:21:07.965Z INFO sending PrepareRequest {"height": 7924, "view": 0} -2023-12-16T14:21:07.966Z INFO sending Commit {"height": 7924, "view": 0} -2023-12-16T14:21:07.966Z INFO approving block {"height": 7924, "hash": "1a1a7073f2c017947eefb81780e44d10a2d3bc0fffc65b6b15de0bb8f53e1696", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb075293d736ca37fa168480ceffe0f265c8ca252a3d71ff8cf623aaac471f04"} -2023-12-16T14:21:07.969Z INFO initializing dbft {"height": 7925, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:07.969Z debug frostfs-node/morph.go:229 new block {"index": 7924} -2023-12-16T14:21:08.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7924, "blockHeight": 7924, "took": "76.965204ms"} -2023-12-16T14:21:08.967Z INFO sending PrepareRequest {"height": 7925, "view": 0} -2023-12-16T14:21:08.967Z INFO sending Commit {"height": 7925, "view": 0} -2023-12-16T14:21:08.967Z INFO approving block {"height": 7925, "hash": "90cf56c87a5ce50db7ef208590b2faa9d2002f04f93d3ce9ec3717734eb35aba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a1a7073f2c017947eefb81780e44d10a2d3bc0fffc65b6b15de0bb8f53e1696"} -2023-12-16T14:21:08.969Z INFO initializing dbft {"height": 7926, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:08.969Z debug frostfs-node/morph.go:229 new block {"index": 7925} -2023-12-16T14:21:09.077Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7925, "blockHeight": 7925, "took": "11.297529ms"} -2023-12-16T14:21:09.968Z INFO sending PrepareRequest {"height": 7926, "view": 0} -2023-12-16T14:21:09.969Z INFO sending Commit {"height": 7926, "view": 0} -2023-12-16T14:21:09.969Z INFO approving block {"height": 7926, "hash": "27cf714ae431c1d54ab685c7a0191f75fbb72dfd5353f72450be8a58b7c86080", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90cf56c87a5ce50db7ef208590b2faa9d2002f04f93d3ce9ec3717734eb35aba"} -2023-12-16T14:21:09.971Z INFO initializing dbft {"height": 7927, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:09.972Z debug frostfs-node/morph.go:229 new block {"index": 7926} -2023-12-16T14:21:10.091Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7926, "blockHeight": 7926, "took": "24.313791ms"} -2023-12-16T14:21:10.970Z INFO sending PrepareRequest {"height": 7927, "view": 0} -2023-12-16T14:21:10.970Z INFO sending Commit {"height": 7927, "view": 0} -2023-12-16T14:21:10.971Z INFO approving block {"height": 7927, "hash": "d4cda59c39424f790bfefbdea43118468211ac26c585139afd467ac2fea14a1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27cf714ae431c1d54ab685c7a0191f75fbb72dfd5353f72450be8a58b7c86080"} -2023-12-16T14:21:10.972Z INFO initializing dbft {"height": 7928, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:10.973Z debug frostfs-node/morph.go:229 new block {"index": 7927} -2023-12-16T14:21:11.086Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7927, "blockHeight": 7927, "took": "18.418167ms"} -2023-12-16T14:21:11.972Z INFO sending PrepareRequest {"height": 7928, "view": 0} -2023-12-16T14:21:11.972Z INFO sending Commit {"height": 7928, "view": 0} -2023-12-16T14:21:11.973Z INFO approving block {"height": 7928, "hash": "36233a9de3251768ffb6529bc06c6e283506003c17c6bf593a2b33ac79b12286", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4cda59c39424f790bfefbdea43118468211ac26c585139afd467ac2fea14a1b"} -2023-12-16T14:21:11.974Z INFO initializing dbft {"height": 7929, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:11.975Z debug frostfs-node/morph.go:229 new block {"index": 7928} -2023-12-16T14:21:12.083Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7928, "blockHeight": 7928, "took": "15.007238ms"} -2023-12-16T14:21:12.974Z INFO sending PrepareRequest {"height": 7929, "view": 0} -2023-12-16T14:21:12.974Z INFO sending Commit {"height": 7929, "view": 0} -2023-12-16T14:21:12.974Z INFO approving block {"height": 7929, "hash": "4e9d3607b9cf36a4769a3b63d4cdc066eaca187546e2bd81c27d1810c0871fd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36233a9de3251768ffb6529bc06c6e283506003c17c6bf593a2b33ac79b12286"} -2023-12-16T14:21:12.976Z INFO initializing dbft {"height": 7930, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:12.977Z debug frostfs-node/morph.go:229 new block {"index": 7929} -2023-12-16T14:21:13.089Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7929, "blockHeight": 7929, "took": "20.086335ms"} -2023-12-16T14:21:13.976Z INFO sending PrepareRequest {"height": 7930, "view": 0} -2023-12-16T14:21:13.976Z INFO sending Commit {"height": 7930, "view": 0} -2023-12-16T14:21:13.976Z INFO approving block {"height": 7930, "hash": "0f616cfd29c3beab92aa371a768f9ff019c19489f6379e77ed12c778d3df8c9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e9d3607b9cf36a4769a3b63d4cdc066eaca187546e2bd81c27d1810c0871fd8"} -2023-12-16T14:21:13.978Z INFO initializing dbft {"height": 7931, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:13.979Z debug frostfs-node/morph.go:229 new block {"index": 7930} -2023-12-16T14:21:14.086Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7930, "blockHeight": 7930, "took": "15.714206ms"} -2023-12-16T14:21:14.977Z INFO sending PrepareRequest {"height": 7931, "view": 0} -2023-12-16T14:21:14.978Z INFO sending Commit {"height": 7931, "view": 0} -2023-12-16T14:21:14.978Z INFO approving block {"height": 7931, "hash": "cf5ad84d992f4c5998753a3b51d98adcf8bb7d823189e673fca78dc1a807eddd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f616cfd29c3beab92aa371a768f9ff019c19489f6379e77ed12c778d3df8c9a"} -2023-12-16T14:21:14.980Z INFO initializing dbft {"height": 7932, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:14.981Z debug frostfs-node/morph.go:229 new block {"index": 7931} -2023-12-16T14:21:15.086Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7931, "blockHeight": 7931, "took": "15.508823ms"} -2023-12-16T14:21:15.979Z INFO sending PrepareRequest {"height": 7932, "view": 0} -2023-12-16T14:21:15.980Z INFO sending Commit {"height": 7932, "view": 0} -2023-12-16T14:21:15.980Z INFO approving block {"height": 7932, "hash": "c6425bef10e11f7ad8e59eb119cc1d26f51fb94e30ee12b766adf71bea45e9e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf5ad84d992f4c5998753a3b51d98adcf8bb7d823189e673fca78dc1a807eddd"} -2023-12-16T14:21:15.982Z INFO initializing dbft {"height": 7933, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:15.983Z debug frostfs-node/morph.go:229 new block {"index": 7932} -2023-12-16T14:21:16.086Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7932, "blockHeight": 7932, "took": "14.753372ms"} -2023-12-16T14:21:16.981Z INFO sending PrepareRequest {"height": 7933, "view": 0} -2023-12-16T14:21:16.982Z INFO sending Commit {"height": 7933, "view": 0} -2023-12-16T14:21:16.982Z INFO approving block {"height": 7933, "hash": "361846a0ee3925b271f9371321471ea73c6df978f620c34dab4852a7c3a93a88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6425bef10e11f7ad8e59eb119cc1d26f51fb94e30ee12b766adf71bea45e9e6"} -2023-12-16T14:21:16.984Z INFO initializing dbft {"height": 7934, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:16.986Z debug frostfs-node/morph.go:229 new block {"index": 7933} -2023-12-16T14:21:17.094Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7933, "blockHeight": 7933, "took": "21.234192ms"} -2023-12-16T14:21:17.984Z INFO sending PrepareRequest {"height": 7934, "view": 0} -2023-12-16T14:21:17.984Z INFO sending Commit {"height": 7934, "view": 0} -2023-12-16T14:21:17.984Z INFO approving block {"height": 7934, "hash": "dfed88c13500148bdd89d2facd6b34d2fd87e2d48ebfb819f986100c752dc4ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "361846a0ee3925b271f9371321471ea73c6df978f620c34dab4852a7c3a93a88"} -2023-12-16T14:21:17.989Z INFO initializing dbft {"height": 7935, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:17.990Z debug frostfs-node/morph.go:229 new block {"index": 7934} -2023-12-16T14:21:18.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7934, "blockHeight": 7934, "took": "13.229425ms"} -2023-12-16T14:21:18.986Z INFO sending PrepareRequest {"height": 7935, "view": 0} -2023-12-16T14:21:18.986Z INFO sending Commit {"height": 7935, "view": 0} -2023-12-16T14:21:18.987Z INFO approving block {"height": 7935, "hash": "de4400da1e46aab6240653d42182af7ce9b3095c8d7f912e9d0ec5cbf75723e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfed88c13500148bdd89d2facd6b34d2fd87e2d48ebfb819f986100c752dc4ca"} -2023-12-16T14:21:18.988Z INFO initializing dbft {"height": 7936, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:18.989Z debug frostfs-node/morph.go:229 new block {"index": 7935} -2023-12-16T14:21:19.086Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 7935, "blockHeight": 7935, "took": "11.131624ms"} -2023-12-16T14:21:19.988Z INFO sending PrepareRequest {"height": 7936, "view": 0} -2023-12-16T14:21:19.988Z INFO sending Commit {"height": 7936, "view": 0} -2023-12-16T14:21:19.989Z INFO approving block {"height": 7936, "hash": "8ebdacdd94f3d80b98dca7ae19474ca85fb68a7a1b98f85368edc8fb6f1084b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de4400da1e46aab6240653d42182af7ce9b3095c8d7f912e9d0ec5cbf75723e4"} -2023-12-16T14:21:19.991Z INFO initializing dbft {"height": 7937, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:19.992Z debug frostfs-node/morph.go:229 new block {"index": 7936} -2023-12-16T14:21:20.092Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7936, "blockHeight": 7936, "took": "16.002565ms"} -2023-12-16T14:21:20.990Z INFO sending PrepareRequest {"height": 7937, "view": 0} -2023-12-16T14:21:20.991Z INFO sending Commit {"height": 7937, "view": 0} -2023-12-16T14:21:20.991Z INFO approving block {"height": 7937, "hash": "85603a835c2efd85745f8fb9458bf3dcf3da669984e36450ee4a8d0a1fc5f08d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ebdacdd94f3d80b98dca7ae19474ca85fb68a7a1b98f85368edc8fb6f1084b8"} -2023-12-16T14:21:20.992Z INFO initializing dbft {"height": 7938, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:20.993Z debug frostfs-node/morph.go:229 new block {"index": 7937} -2023-12-16T14:21:21.090Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7937, "blockHeight": 7937, "took": "13.804186ms"} -2023-12-16T14:21:21.993Z INFO sending PrepareRequest {"height": 7938, "view": 0} -2023-12-16T14:21:21.993Z INFO sending Commit {"height": 7938, "view": 0} -2023-12-16T14:21:21.994Z INFO approving block {"height": 7938, "hash": "e8d75089f9b8729e4f5ad6ee614daf587da533fdaa289036b719c4d9c3f10aa3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85603a835c2efd85745f8fb9458bf3dcf3da669984e36450ee4a8d0a1fc5f08d"} -2023-12-16T14:21:21.995Z INFO initializing dbft {"height": 7939, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:21.996Z debug frostfs-node/morph.go:229 new block {"index": 7938} -2023-12-16T14:21:22.088Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7938, "blockHeight": 7938, "took": "10.592562ms"} -2023-12-16T14:21:22.994Z INFO sending PrepareRequest {"height": 7939, "view": 0} -2023-12-16T14:21:22.995Z INFO sending Commit {"height": 7939, "view": 0} -2023-12-16T14:21:22.995Z INFO approving block {"height": 7939, "hash": "fede86f03f3ea4847deb81b0d5a71d43d15bb111bb95135f24a03ffd496ff5fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8d75089f9b8729e4f5ad6ee614daf587da533fdaa289036b719c4d9c3f10aa3"} -2023-12-16T14:21:22.996Z INFO initializing dbft {"height": 7940, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:22.997Z debug frostfs-node/morph.go:229 new block {"index": 7939} -2023-12-16T14:21:23.097Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7939, "blockHeight": 7939, "took": "18.186876ms"} -2023-12-16T14:21:23.997Z INFO sending PrepareRequest {"height": 7940, "view": 0} -2023-12-16T14:21:23.997Z INFO sending Commit {"height": 7940, "view": 0} -2023-12-16T14:21:23.998Z INFO approving block {"height": 7940, "hash": "9750eff2e79097397ce252c812fe32e5f3113b0af4cabbe534f1d65a63096a1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fede86f03f3ea4847deb81b0d5a71d43d15bb111bb95135f24a03ffd496ff5fb"} -2023-12-16T14:21:24.001Z INFO initializing dbft {"height": 7941, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:24.002Z debug frostfs-node/morph.go:229 new block {"index": 7940} -2023-12-16T14:21:24.094Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7940, "blockHeight": 7940, "took": "13.760562ms"} -2023-12-16T14:21:24.999Z INFO sending PrepareRequest {"height": 7941, "view": 0} -2023-12-16T14:21:24.999Z INFO sending Commit {"height": 7941, "view": 0} -2023-12-16T14:21:25.000Z INFO approving block {"height": 7941, "hash": "38e10ba73ffe6a34c8e3a3805c0d484cd3be9e2085f81d80e3e636aeb1028884", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9750eff2e79097397ce252c812fe32e5f3113b0af4cabbe534f1d65a63096a1c"} -2023-12-16T14:21:25.001Z INFO initializing dbft {"height": 7942, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:25.002Z debug frostfs-node/morph.go:229 new block {"index": 7941} -2023-12-16T14:21:25.100Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7941, "blockHeight": 7941, "took": "18.899731ms"} -2023-12-16T14:21:26.001Z INFO sending PrepareRequest {"height": 7942, "view": 0} -2023-12-16T14:21:26.001Z INFO sending Commit {"height": 7942, "view": 0} -2023-12-16T14:21:26.002Z INFO approving block {"height": 7942, "hash": "1b5fce30fd1dddb34e5454d8b359ee810430e2b01cdd33f8cebaaaf62ae05746", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38e10ba73ffe6a34c8e3a3805c0d484cd3be9e2085f81d80e3e636aeb1028884"} -2023-12-16T14:21:26.003Z INFO initializing dbft {"height": 7943, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:26.003Z debug frostfs-node/morph.go:229 new block {"index": 7942} -2023-12-16T14:21:26.101Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7942, "blockHeight": 7942, "took": "18.876493ms"} -2023-12-16T14:21:27.003Z INFO sending PrepareRequest {"height": 7943, "view": 0} -2023-12-16T14:21:27.004Z INFO sending Commit {"height": 7943, "view": 0} -2023-12-16T14:21:27.004Z INFO approving block {"height": 7943, "hash": "9c19a57b2a0ca5b284e478779ee833d8cc9a900b7d8843757865dc541648dcd3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b5fce30fd1dddb34e5454d8b359ee810430e2b01cdd33f8cebaaaf62ae05746"} -2023-12-16T14:21:27.007Z INFO initializing dbft {"height": 7944, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:27.008Z debug frostfs-node/morph.go:229 new block {"index": 7943} -2023-12-16T14:21:27.100Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7943, "blockHeight": 7943, "took": "16.10928ms"} -2023-12-16T14:21:28.005Z INFO sending PrepareRequest {"height": 7944, "view": 0} -2023-12-16T14:21:28.006Z INFO sending Commit {"height": 7944, "view": 0} -2023-12-16T14:21:28.006Z INFO approving block {"height": 7944, "hash": "48d7701d550ab7a3db1e1aa6f34d66761ae207c36260aa109926cd80e39e794e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c19a57b2a0ca5b284e478779ee833d8cc9a900b7d8843757865dc541648dcd3"} -2023-12-16T14:21:28.008Z INFO initializing dbft {"height": 7945, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:28.009Z debug frostfs-node/morph.go:229 new block {"index": 7944} -2023-12-16T14:21:28.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7944, "blockHeight": 7944, "took": "17.902083ms"} -2023-12-16T14:21:29.007Z INFO sending PrepareRequest {"height": 7945, "view": 0} -2023-12-16T14:21:29.008Z INFO sending Commit {"height": 7945, "view": 0} -2023-12-16T14:21:29.008Z INFO approving block {"height": 7945, "hash": "69909f9125bf06d14125cf87434492ba7c4518349d1fe2713cf3352a0029e88f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48d7701d550ab7a3db1e1aa6f34d66761ae207c36260aa109926cd80e39e794e"} -2023-12-16T14:21:29.010Z INFO initializing dbft {"height": 7946, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:29.011Z debug frostfs-node/morph.go:229 new block {"index": 7945} -2023-12-16T14:21:29.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7945, "blockHeight": 7945, "took": "17.23952ms"} -2023-12-16T14:21:30.009Z INFO sending PrepareRequest {"height": 7946, "view": 0} -2023-12-16T14:21:30.009Z INFO sending Commit {"height": 7946, "view": 0} -2023-12-16T14:21:30.010Z INFO approving block {"height": 7946, "hash": "ea027eedca9242b81d9660b1843c908a271c8fef6a17bb8a5b4d18ea6a6bb42d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "69909f9125bf06d14125cf87434492ba7c4518349d1fe2713cf3352a0029e88f"} -2023-12-16T14:21:30.011Z INFO initializing dbft {"height": 7947, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:30.012Z debug frostfs-node/morph.go:229 new block {"index": 7946} -2023-12-16T14:21:30.101Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7946, "blockHeight": 7946, "took": "14.874654ms"} -2023-12-16T14:21:31.011Z INFO sending PrepareRequest {"height": 7947, "view": 0} -2023-12-16T14:21:31.011Z INFO sending Commit {"height": 7947, "view": 0} -2023-12-16T14:21:31.011Z INFO approving block {"height": 7947, "hash": "751cda296d4485382210f51bcb9d6429714410d24b5852fc6d2d1343d5673f68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea027eedca9242b81d9660b1843c908a271c8fef6a17bb8a5b4d18ea6a6bb42d"} -2023-12-16T14:21:31.013Z INFO initializing dbft {"height": 7948, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:31.014Z debug frostfs-node/morph.go:229 new block {"index": 7947} -2023-12-16T14:21:31.105Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7947, "blockHeight": 7947, "took": "17.659244ms"} -2023-12-16T14:21:32.013Z INFO sending PrepareRequest {"height": 7948, "view": 0} -2023-12-16T14:21:32.013Z INFO sending Commit {"height": 7948, "view": 0} -2023-12-16T14:21:32.013Z INFO approving block {"height": 7948, "hash": "23ed3c77d847fea374e84ec589aff197fd149166284fd496a0141af9f84a0f1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "751cda296d4485382210f51bcb9d6429714410d24b5852fc6d2d1343d5673f68"} -2023-12-16T14:21:32.015Z INFO initializing dbft {"height": 7949, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:32.016Z debug frostfs-node/morph.go:229 new block {"index": 7948} -2023-12-16T14:21:32.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7948, "blockHeight": 7948, "took": "14.43326ms"} -2023-12-16T14:21:33.014Z INFO sending PrepareRequest {"height": 7949, "view": 0} -2023-12-16T14:21:33.015Z INFO sending Commit {"height": 7949, "view": 0} -2023-12-16T14:21:33.015Z INFO approving block {"height": 7949, "hash": "ee8d68c94cdf4f7212b3523747d4e1ba3496ba0873e508e6998f4b8b2821f782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23ed3c77d847fea374e84ec589aff197fd149166284fd496a0141af9f84a0f1c"} -2023-12-16T14:21:33.017Z INFO initializing dbft {"height": 7950, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:33.018Z debug frostfs-node/morph.go:229 new block {"index": 7949} -2023-12-16T14:21:33.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7949, "blockHeight": 7949, "took": "12.443386ms"} -2023-12-16T14:21:34.016Z INFO sending PrepareRequest {"height": 7950, "view": 0} -2023-12-16T14:21:34.017Z INFO sending Commit {"height": 7950, "view": 0} -2023-12-16T14:21:34.017Z INFO approving block {"height": 7950, "hash": "38d6e2998209e9b760e9a0bfe2041a4b9eb7c3534b8f828cb4cfa0364e93fabc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee8d68c94cdf4f7212b3523747d4e1ba3496ba0873e508e6998f4b8b2821f782"} -2023-12-16T14:21:34.019Z INFO initializing dbft {"height": 7951, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:34.021Z debug frostfs-node/morph.go:229 new block {"index": 7950} -2023-12-16T14:21:34.025Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:21:34.040Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:21:34.041Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:21:34.108Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7950, "blockHeight": 7950, "took": "17.934003ms"} -2023-12-16T14:21:35.019Z INFO sending PrepareRequest {"height": 7951, "view": 0} -2023-12-16T14:21:35.019Z INFO sending Commit {"height": 7951, "view": 0} -2023-12-16T14:21:35.020Z INFO approving block {"height": 7951, "hash": "d6961490134218423d34dc5a225fdce1ed03b1928e7734f61e3b10e22808097e", "tx_count": 2, "merkle": "a0d3728458971b85b5ae758285f7306427eef7f85eb568c9ce59e1d080da07f7", "prev": "38d6e2998209e9b760e9a0bfe2041a4b9eb7c3534b8f828cb4cfa0364e93fabc"} -2023-12-16T14:21:35.021Z INFO runtime log {"tx": "e62af6d256b1efea2fcdd853a0f68098af1721bb465f4beab9523f279d274916", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:21:35.022Z INFO runtime log {"tx": "e62af6d256b1efea2fcdd853a0f68098af1721bb465f4beab9523f279d274916", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:21:35.023Z INFO initializing dbft {"height": 7952, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:35.025Z debug frostfs-node/morph.go:229 new block {"index": 7951} -2023-12-16T14:21:35.032Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 33, "iteration": 3, "error": "no data for 2 iteration in 33 epoch for consumers's trusts"} -2023-12-16T14:21:35.030Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:21:35.043Z INFO runtime log {"tx": "5b98f3c2c6d2412042d46f3b7cfccc0b9543ada4ecb45a04e089e4063746efb9", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:21:35.119Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 7951, "blockHeight": 7951, "took": "27.658077ms"} -2023-12-16T14:21:36.021Z INFO sending PrepareRequest {"height": 7952, "view": 0} -2023-12-16T14:21:36.021Z INFO sending Commit {"height": 7952, "view": 0} -2023-12-16T14:21:36.022Z INFO approving block {"height": 7952, "hash": "e703c0116f51c521b978b21c181c8da7060fcb03463357c61dfd84acfe10f7f1", "tx_count": 1, "merkle": "8f2712257e8a12a9452974fd524eba1bd9eb2417f1a0c1614812d8f5b1bc84f6", "prev": "d6961490134218423d34dc5a225fdce1ed03b1928e7734f61e3b10e22808097e"} -2023-12-16T14:21:36.022Z INFO runtime log {"tx": "f684bcb1f5d8124861c1a0f11724ebd91bba4e52fd742945a9128a7e2512278f", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:21:36.026Z INFO initializing dbft {"height": 7953, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:36.028Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 35} -2023-12-16T14:21:36.033Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 35} -2023-12-16T14:21:36.051Z INFO runtime log {"tx": "ee3bd0cdeb257777ef4ede6dc3d90869fc8030314bf776824ac4fd11f61cc09f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:21:36.060Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:21:36.076Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:21:36.072Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 35} -2023-12-16T14:21:36.073Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:21:36.084Z debug frostfs-node/morph.go:229 new block {"index": 7952} -2023-12-16T14:21:36.084Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 35} -2023-12-16T14:21:36.086Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 35} -2023-12-16T14:21:36.084Z info audit/handlers.go:13 new round of audit {"epoch": 35} -2023-12-16T14:21:36.086Z debug controller/calls.go:95 starting to report local trust values {"epoch": 34} -2023-12-16T14:21:36.059Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-16T14:21:36.087Z info settlement/calls.go:26 new audit settlement event {"epoch": 35} -2023-12-16T14:21:36.092Z info settlement/handlers.go:14 process audit settlements {"epoch": 35} -2023-12-16T14:21:36.092Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 35} -2023-12-16T14:21:36.093Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 34} -2023-12-16T14:21:36.105Z debug controller/calls.go:146 reporting successfully finished {"epoch": 34} -2023-12-16T14:21:36.105Z info audit/process.go:39 select containers for audit {"epoch": 35, "amount": 0} -2023-12-16T14:21:36.105Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 34} -2023-12-16T14:21:36.107Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:21:36.110Z info settlement/handlers.go:18 audit processing finished {"epoch": 35} -2023-12-16T14:21:36.123Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7955, "tx_hash": "f52070da7e8c45177ce664b5b1f3fb3cbfadd3fab64f402c2f3113d94876e1fd"} -2023-12-16T14:21:36.134Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 7955, "tx_hash": "298c56cc313035e3459a979b98acf1ec36504b2abfc1454fc39ab0dca0607be1"} -2023-12-16T14:21:36.141Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 7952, "blockHeight": 7952, "took": "44.788376ms"} -2023-12-16T14:21:36.175Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 8100, "fallback_valid_for": 40, "tx_hash": "58acf5beb3bc50af8908e40515e83ed328d5744e27d464351089c6c5ee3ece61"} -2023-12-16T14:21:36.188Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-16T14:21:37.023Z INFO sending PrepareRequest {"height": 7953, "view": 0} -2023-12-16T14:21:37.023Z INFO sending Commit {"height": 7953, "view": 0} -2023-12-16T14:21:37.023Z INFO approving block {"height": 7953, "hash": "98e6d2e2e835880a4f23bcd01a9410f8b0177af28fedfc6b0632fb026708f0a1", "tx_count": 3, "merkle": "a29d076c9bd8e0baa65f4bf8f1e9b93c5830bb9160cb61767c02b0fbdd0da9fa", "prev": "e703c0116f51c521b978b21c181c8da7060fcb03463357c61dfd84acfe10f7f1"} -2023-12-16T14:21:37.025Z INFO runtime log {"tx": "b8d7435e8b1b9244afe52116bfe23433d7d2e84d53ad725d795066e652b7fbac", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:21:37.030Z INFO initializing dbft {"height": 7954, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:37.033Z debug frostfs-node/morph.go:229 new block {"index": 7953} -2023-12-16T14:21:37.032Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 34} -2023-12-16T14:21:37.038Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 34} -2023-12-16T14:21:37.039Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 34} -2023-12-16T14:21:37.118Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 7953, "blockHeight": 7953, "took": "21.743934ms"} -2023-12-16T14:21:38.025Z INFO sending PrepareRequest {"height": 7954, "view": 0} -2023-12-16T14:21:38.025Z INFO sending Commit {"height": 7954, "view": 0} -2023-12-16T14:21:38.026Z INFO approving block {"height": 7954, "hash": "87a9a142609d87a975fc482a6c9215592c6895c488d87be3894baf74ec31f531", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98e6d2e2e835880a4f23bcd01a9410f8b0177af28fedfc6b0632fb026708f0a1"} -2023-12-16T14:21:38.028Z INFO initializing dbft {"height": 7955, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:38.030Z debug frostfs-node/morph.go:229 new block {"index": 7954} -2023-12-16T14:21:38.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7954, "blockHeight": 7954, "took": "13.347233ms"} -2023-12-16T14:21:39.027Z INFO sending PrepareRequest {"height": 7955, "view": 0} -2023-12-16T14:21:39.027Z INFO sending Commit {"height": 7955, "view": 0} -2023-12-16T14:21:39.027Z INFO approving block {"height": 7955, "hash": "6ed8e872f4181b0cbfc8c701c792c3f0c9a39c4e51248976b47fa39b1ddfcab3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87a9a142609d87a975fc482a6c9215592c6895c488d87be3894baf74ec31f531"} -2023-12-16T14:21:39.030Z INFO initializing dbft {"height": 7956, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:39.031Z debug frostfs-node/morph.go:229 new block {"index": 7955} -2023-12-16T14:21:39.109Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7955, "blockHeight": 7955, "took": "11.312349ms"} -2023-12-16T14:21:40.029Z INFO sending PrepareRequest {"height": 7956, "view": 0} -2023-12-16T14:21:40.029Z INFO sending Commit {"height": 7956, "view": 0} -2023-12-16T14:21:40.031Z INFO approving block {"height": 7956, "hash": "32ee8e397e07ac304e3bf94515df7e8756a48b610025219e6cb622547ecfc3f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ed8e872f4181b0cbfc8c701c792c3f0c9a39c4e51248976b47fa39b1ddfcab3"} -2023-12-16T14:21:40.033Z INFO initializing dbft {"height": 7957, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:40.034Z debug frostfs-node/morph.go:229 new block {"index": 7956} -2023-12-16T14:21:40.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7956, "blockHeight": 7956, "took": "11.359942ms"} -2023-12-16T14:21:41.033Z INFO sending PrepareRequest {"height": 7957, "view": 0} -2023-12-16T14:21:41.033Z INFO sending Commit {"height": 7957, "view": 0} -2023-12-16T14:21:41.034Z INFO approving block {"height": 7957, "hash": "357739a9fb7698fc4a440d53411d4a8d7b3eb46cf82b6b3dfa37d62da64f114b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32ee8e397e07ac304e3bf94515df7e8756a48b610025219e6cb622547ecfc3f4"} -2023-12-16T14:21:41.037Z INFO initializing dbft {"height": 7958, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:41.038Z debug frostfs-node/morph.go:229 new block {"index": 7957} -2023-12-16T14:21:41.116Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7957, "blockHeight": 7957, "took": "15.873628ms"} -2023-12-16T14:21:42.035Z INFO sending PrepareRequest {"height": 7958, "view": 0} -2023-12-16T14:21:42.035Z INFO sending Commit {"height": 7958, "view": 0} -2023-12-16T14:21:42.036Z INFO approving block {"height": 7958, "hash": "3f8043affc474bdd89e7f014b63c7de1700052c846791c093319bdb99e0284a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "357739a9fb7698fc4a440d53411d4a8d7b3eb46cf82b6b3dfa37d62da64f114b"} -2023-12-16T14:21:42.037Z INFO initializing dbft {"height": 7959, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:42.038Z debug frostfs-node/morph.go:229 new block {"index": 7958} -2023-12-16T14:21:42.118Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7958, "blockHeight": 7958, "took": "16.43983ms"} -2023-12-16T14:21:43.037Z INFO sending PrepareRequest {"height": 7959, "view": 0} -2023-12-16T14:21:43.037Z INFO sending Commit {"height": 7959, "view": 0} -2023-12-16T14:21:43.037Z INFO approving block {"height": 7959, "hash": "f64c9726ebfcbe51613e2840b3cffd872bc8bd5ab1e0e28087f7888e68f34e72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f8043affc474bdd89e7f014b63c7de1700052c846791c093319bdb99e0284a1"} -2023-12-16T14:21:43.040Z INFO initializing dbft {"height": 7960, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:43.041Z debug frostfs-node/morph.go:229 new block {"index": 7959} -2023-12-16T14:21:43.115Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7959, "blockHeight": 7959, "took": "12.858809ms"} -2023-12-16T14:21:44.039Z INFO sending PrepareRequest {"height": 7960, "view": 0} -2023-12-16T14:21:44.039Z INFO sending Commit {"height": 7960, "view": 0} -2023-12-16T14:21:44.039Z INFO approving block {"height": 7960, "hash": "86a28f767ef6d2305c584789ceb308aa10fd451e84c2a61e2edb5b1601cb79bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f64c9726ebfcbe51613e2840b3cffd872bc8bd5ab1e0e28087f7888e68f34e72"} -2023-12-16T14:21:44.040Z INFO initializing dbft {"height": 7961, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:44.041Z debug frostfs-node/morph.go:229 new block {"index": 7960} -2023-12-16T14:21:44.117Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7960, "blockHeight": 7960, "took": "14.56576ms"} -2023-12-16T14:21:45.043Z INFO sending PrepareRequest {"height": 7961, "view": 0} -2023-12-16T14:21:45.043Z INFO sending Commit {"height": 7961, "view": 0} -2023-12-16T14:21:45.044Z INFO approving block {"height": 7961, "hash": "0b14834c16dddef1dba5a9c3e5e5b625030cb3559bb9e88541f2077287f18f2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86a28f767ef6d2305c584789ceb308aa10fd451e84c2a61e2edb5b1601cb79bd"} -2023-12-16T14:21:45.045Z INFO initializing dbft {"height": 7962, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:45.046Z debug frostfs-node/morph.go:229 new block {"index": 7961} -2023-12-16T14:21:45.118Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7961, "blockHeight": 7961, "took": "14.341109ms"} -2023-12-16T14:21:46.045Z INFO sending PrepareRequest {"height": 7962, "view": 0} -2023-12-16T14:21:46.045Z INFO sending Commit {"height": 7962, "view": 0} -2023-12-16T14:21:46.046Z INFO approving block {"height": 7962, "hash": "e7bcf9ee2da9e067b7e50f4362123864b286d075b6522ad7269074fdc98bc878", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b14834c16dddef1dba5a9c3e5e5b625030cb3559bb9e88541f2077287f18f2b"} -2023-12-16T14:21:46.048Z INFO initializing dbft {"height": 7963, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:46.049Z debug frostfs-node/morph.go:229 new block {"index": 7962} -2023-12-16T14:21:46.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7962, "blockHeight": 7962, "took": "14.184049ms"} -2023-12-16T14:21:47.047Z INFO sending PrepareRequest {"height": 7963, "view": 0} -2023-12-16T14:21:47.047Z INFO sending Commit {"height": 7963, "view": 0} -2023-12-16T14:21:47.048Z INFO approving block {"height": 7963, "hash": "5b88bbd60023244541819e7ff6bed4ca0212e24a1e7c38d4ebc98f27ea5ee6f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7bcf9ee2da9e067b7e50f4362123864b286d075b6522ad7269074fdc98bc878"} -2023-12-16T14:21:47.049Z INFO initializing dbft {"height": 7964, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:47.050Z debug frostfs-node/morph.go:229 new block {"index": 7963} -2023-12-16T14:21:47.120Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7963, "blockHeight": 7963, "took": "14.184265ms"} -2023-12-16T14:21:48.049Z INFO sending PrepareRequest {"height": 7964, "view": 0} -2023-12-16T14:21:48.049Z INFO sending Commit {"height": 7964, "view": 0} -2023-12-16T14:21:48.050Z INFO approving block {"height": 7964, "hash": "9d3ef28ec775f6a2479eea3959a491eedafc6b5026f19ab7c9e2ca896efec39a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b88bbd60023244541819e7ff6bed4ca0212e24a1e7c38d4ebc98f27ea5ee6f9"} -2023-12-16T14:21:48.052Z INFO initializing dbft {"height": 7965, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:48.052Z debug frostfs-node/morph.go:229 new block {"index": 7964} -2023-12-16T14:21:48.116Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7964, "blockHeight": 7964, "took": "9.175353ms"} -2023-12-16T14:21:49.051Z INFO sending PrepareRequest {"height": 7965, "view": 0} -2023-12-16T14:21:49.052Z INFO sending Commit {"height": 7965, "view": 0} -2023-12-16T14:21:49.052Z INFO approving block {"height": 7965, "hash": "cd76ab569af2d92a2cd31714979a80024a5ffe1e420e8beab133273f4f6b2641", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d3ef28ec775f6a2479eea3959a491eedafc6b5026f19ab7c9e2ca896efec39a"} -2023-12-16T14:21:49.054Z INFO initializing dbft {"height": 7966, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:49.054Z debug frostfs-node/morph.go:229 new block {"index": 7965} -2023-12-16T14:21:49.120Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7965, "blockHeight": 7965, "took": "12.607059ms"} -2023-12-16T14:21:50.053Z INFO sending PrepareRequest {"height": 7966, "view": 0} -2023-12-16T14:21:50.054Z INFO sending Commit {"height": 7966, "view": 0} -2023-12-16T14:21:50.056Z INFO approving block {"height": 7966, "hash": "3ee068449bea5cb83a967b4cf70b630180f10f088954216ac3d0949a933ad833", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd76ab569af2d92a2cd31714979a80024a5ffe1e420e8beab133273f4f6b2641"} -2023-12-16T14:21:50.058Z INFO initializing dbft {"height": 7967, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:50.058Z debug frostfs-node/morph.go:229 new block {"index": 7966} -2023-12-16T14:21:50.119Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7966, "blockHeight": 7966, "took": "10.986847ms"} -2023-12-16T14:21:51.057Z INFO sending PrepareRequest {"height": 7967, "view": 0} -2023-12-16T14:21:51.058Z INFO sending Commit {"height": 7967, "view": 0} -2023-12-16T14:21:51.058Z INFO approving block {"height": 7967, "hash": "1a1fca3df53fbf40d86d10f6a57928e99842802b441952c3584290d8cfd9db0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ee068449bea5cb83a967b4cf70b630180f10f088954216ac3d0949a933ad833"} -2023-12-16T14:21:51.060Z INFO initializing dbft {"height": 7968, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:51.061Z debug frostfs-node/morph.go:229 new block {"index": 7967} -2023-12-16T14:21:51.120Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7967, "blockHeight": 7967, "took": "10.678917ms"} -2023-12-16T14:21:52.061Z INFO sending PrepareRequest {"height": 7968, "view": 0} -2023-12-16T14:21:52.061Z INFO sending Commit {"height": 7968, "view": 0} -2023-12-16T14:21:52.061Z INFO approving block {"height": 7968, "hash": "0d48be8a903acd67451f41c06a4f492737c03b7a959850e6e247880e6c55be70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a1fca3df53fbf40d86d10f6a57928e99842802b441952c3584290d8cfd9db0b"} -2023-12-16T14:21:52.064Z INFO initializing dbft {"height": 7969, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:52.065Z debug frostfs-node/morph.go:229 new block {"index": 7968} -2023-12-16T14:21:52.121Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7968, "blockHeight": 7968, "took": "10.640931ms"} -2023-12-16T14:21:53.062Z INFO sending PrepareRequest {"height": 7969, "view": 0} -2023-12-16T14:21:53.063Z INFO sending Commit {"height": 7969, "view": 0} -2023-12-16T14:21:53.063Z INFO approving block {"height": 7969, "hash": "d46c1d2775e90cb4a0318ab807ee278f5e1f1888901caf1899b1e16a66da0663", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d48be8a903acd67451f41c06a4f492737c03b7a959850e6e247880e6c55be70"} -2023-12-16T14:21:53.067Z INFO initializing dbft {"height": 7970, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:53.067Z debug frostfs-node/morph.go:229 new block {"index": 7969} -2023-12-16T14:21:53.124Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7969, "blockHeight": 7969, "took": "12.265183ms"} -2023-12-16T14:21:54.064Z INFO sending PrepareRequest {"height": 7970, "view": 0} -2023-12-16T14:21:54.065Z INFO sending Commit {"height": 7970, "view": 0} -2023-12-16T14:21:54.069Z INFO approving block {"height": 7970, "hash": "a0fc86fecd22b0ed77e490c5542fb72898691f05c93f2607c39386c2b014a79a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d46c1d2775e90cb4a0318ab807ee278f5e1f1888901caf1899b1e16a66da0663"} -2023-12-16T14:21:54.071Z INFO initializing dbft {"height": 7971, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:54.072Z debug frostfs-node/morph.go:229 new block {"index": 7970} -2023-12-16T14:21:54.120Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7970, "blockHeight": 7970, "took": "8.226031ms"} -2023-12-16T14:21:55.071Z INFO sending PrepareRequest {"height": 7971, "view": 0} -2023-12-16T14:21:55.071Z INFO sending Commit {"height": 7971, "view": 0} -2023-12-16T14:21:55.071Z INFO approving block {"height": 7971, "hash": "21d6dde48d0d4e27c5fe00eb9dc0292804222e52c61bc2a972bbec0f2907e895", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0fc86fecd22b0ed77e490c5542fb72898691f05c93f2607c39386c2b014a79a"} -2023-12-16T14:21:55.073Z INFO initializing dbft {"height": 7972, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:55.074Z debug frostfs-node/morph.go:229 new block {"index": 7971} -2023-12-16T14:21:55.123Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7971, "blockHeight": 7971, "took": "10.355194ms"} -2023-12-16T14:21:56.072Z INFO sending PrepareRequest {"height": 7972, "view": 0} -2023-12-16T14:21:56.073Z INFO sending Commit {"height": 7972, "view": 0} -2023-12-16T14:21:56.073Z INFO approving block {"height": 7972, "hash": "4b6f279b54cd476e634a902b85b71847c3252f6bcc99eb9b66bbe9ea8be46d01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21d6dde48d0d4e27c5fe00eb9dc0292804222e52c61bc2a972bbec0f2907e895"} -2023-12-16T14:21:56.074Z INFO initializing dbft {"height": 7973, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:56.075Z debug frostfs-node/morph.go:229 new block {"index": 7972} -2023-12-16T14:21:56.125Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7972, "blockHeight": 7972, "took": "11.92958ms"} -2023-12-16T14:21:57.074Z INFO sending PrepareRequest {"height": 7973, "view": 0} -2023-12-16T14:21:57.075Z INFO sending Commit {"height": 7973, "view": 0} -2023-12-16T14:21:57.075Z INFO approving block {"height": 7973, "hash": "36d76463b4c2d4260bfd67c00fdbfbca74e49054f722a4b4e0fccca343cfe76e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b6f279b54cd476e634a902b85b71847c3252f6bcc99eb9b66bbe9ea8be46d01"} -2023-12-16T14:21:57.077Z INFO initializing dbft {"height": 7974, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:57.078Z debug frostfs-node/morph.go:229 new block {"index": 7973} -2023-12-16T14:21:57.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7973, "blockHeight": 7973, "took": "11.876439ms"} -2023-12-16T14:21:58.077Z INFO sending PrepareRequest {"height": 7974, "view": 0} -2023-12-16T14:21:58.077Z INFO sending Commit {"height": 7974, "view": 0} -2023-12-16T14:21:58.077Z INFO approving block {"height": 7974, "hash": "c1357ca0720571dd68a72b682956cf476ddbbcb0384e91d0ae300a416adc8e9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36d76463b4c2d4260bfd67c00fdbfbca74e49054f722a4b4e0fccca343cfe76e"} -2023-12-16T14:21:58.079Z INFO initializing dbft {"height": 7975, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:58.080Z debug frostfs-node/morph.go:229 new block {"index": 7974} -2023-12-16T14:21:58.127Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7974, "blockHeight": 7974, "took": "11.842586ms"} -2023-12-16T14:21:59.078Z INFO sending PrepareRequest {"height": 7975, "view": 0} -2023-12-16T14:21:59.079Z INFO sending Commit {"height": 7975, "view": 0} -2023-12-16T14:21:59.079Z INFO approving block {"height": 7975, "hash": "dca3934546c00e98dad829ba9cdb607a14acec91ce1fb51d3ab0869303536f52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1357ca0720571dd68a72b682956cf476ddbbcb0384e91d0ae300a416adc8e9a"} -2023-12-16T14:21:59.081Z INFO initializing dbft {"height": 7976, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:21:59.081Z debug frostfs-node/morph.go:229 new block {"index": 7975} -2023-12-16T14:21:59.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7975, "blockHeight": 7975, "took": "11.912248ms"} -2023-12-16T14:22:00.080Z INFO sending PrepareRequest {"height": 7976, "view": 0} -2023-12-16T14:22:00.080Z INFO sending Commit {"height": 7976, "view": 0} -2023-12-16T14:22:00.081Z INFO approving block {"height": 7976, "hash": "8d8e60b40e4a9379679a442b9147b8cb6d2eee6de34dcdb9b88dd55ba56ddeb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dca3934546c00e98dad829ba9cdb607a14acec91ce1fb51d3ab0869303536f52"} -2023-12-16T14:22:00.085Z INFO initializing dbft {"height": 7977, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:00.086Z debug frostfs-node/morph.go:229 new block {"index": 7976} -2023-12-16T14:22:00.133Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7976, "blockHeight": 7976, "took": "15.433423ms"} -2023-12-16T14:22:01.082Z INFO sending PrepareRequest {"height": 7977, "view": 0} -2023-12-16T14:22:01.082Z INFO sending Commit {"height": 7977, "view": 0} -2023-12-16T14:22:01.083Z INFO approving block {"height": 7977, "hash": "2c68b9b3365dac4b0b38aa0985fd30bdf565786466d9ce6f43a228a1a43abb81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d8e60b40e4a9379679a442b9147b8cb6d2eee6de34dcdb9b88dd55ba56ddeb2"} -2023-12-16T14:22:01.084Z INFO initializing dbft {"height": 7978, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:01.085Z debug frostfs-node/morph.go:229 new block {"index": 7977} -2023-12-16T14:22:01.131Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7977, "blockHeight": 7977, "took": "12.704885ms"} -2023-12-16T14:22:02.084Z INFO sending PrepareRequest {"height": 7978, "view": 0} -2023-12-16T14:22:02.084Z INFO sending Commit {"height": 7978, "view": 0} -2023-12-16T14:22:02.085Z INFO approving block {"height": 7978, "hash": "ef91940b8e318cc52b08bd8a25d0d08483b2af98a3924acaf10b33aff61552d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c68b9b3365dac4b0b38aa0985fd30bdf565786466d9ce6f43a228a1a43abb81"} -2023-12-16T14:22:02.087Z INFO initializing dbft {"height": 7979, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:02.087Z debug frostfs-node/morph.go:229 new block {"index": 7978} -2023-12-16T14:22:02.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7978, "blockHeight": 7978, "took": "14.55124ms"} -2023-12-16T14:22:03.086Z INFO sending PrepareRequest {"height": 7979, "view": 0} -2023-12-16T14:22:03.087Z INFO sending Commit {"height": 7979, "view": 0} -2023-12-16T14:22:03.087Z INFO approving block {"height": 7979, "hash": "bc0b5e059118b7ff4a5470221697e954b4f8a420f18c64fb2abe4aee353d348b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef91940b8e318cc52b08bd8a25d0d08483b2af98a3924acaf10b33aff61552d4"} -2023-12-16T14:22:03.089Z INFO initializing dbft {"height": 7980, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:03.090Z debug frostfs-node/morph.go:229 new block {"index": 7979} -2023-12-16T14:22:03.135Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7979, "blockHeight": 7979, "took": "14.804356ms"} -2023-12-16T14:22:04.088Z INFO sending PrepareRequest {"height": 7980, "view": 0} -2023-12-16T14:22:04.088Z INFO sending Commit {"height": 7980, "view": 0} -2023-12-16T14:22:04.088Z INFO approving block {"height": 7980, "hash": "9c1b63407b40b337fc3420b736afd62dc9822242b5a09e72d3a4b211f8774212", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc0b5e059118b7ff4a5470221697e954b4f8a420f18c64fb2abe4aee353d348b"} -2023-12-16T14:22:04.090Z INFO initializing dbft {"height": 7981, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:04.091Z debug frostfs-node/morph.go:229 new block {"index": 7980} -2023-12-16T14:22:04.130Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7980, "blockHeight": 7980, "took": "9.109145ms"} -2023-12-16T14:22:05.089Z INFO sending PrepareRequest {"height": 7981, "view": 0} -2023-12-16T14:22:05.090Z INFO sending Commit {"height": 7981, "view": 0} -2023-12-16T14:22:05.090Z INFO approving block {"height": 7981, "hash": "b37faf4329141f3688f497e2f981e6e198a33f2d0235037ee36598d5aa8c6e2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c1b63407b40b337fc3420b736afd62dc9822242b5a09e72d3a4b211f8774212"} -2023-12-16T14:22:05.093Z INFO initializing dbft {"height": 7982, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:05.094Z debug frostfs-node/morph.go:229 new block {"index": 7981} -2023-12-16T14:22:05.138Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7981, "blockHeight": 7981, "took": "15.325629ms"} -2023-12-16T14:22:06.091Z INFO sending PrepareRequest {"height": 7982, "view": 0} -2023-12-16T14:22:06.091Z INFO sending Commit {"height": 7982, "view": 0} -2023-12-16T14:22:06.092Z INFO approving block {"height": 7982, "hash": "ed1eb7c0c35d76a4ca31b25c86e4a4f3aec744822141b5029d4a01d2d4027ef7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b37faf4329141f3688f497e2f981e6e198a33f2d0235037ee36598d5aa8c6e2e"} -2023-12-16T14:22:06.093Z INFO initializing dbft {"height": 7983, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:06.095Z debug frostfs-node/morph.go:229 new block {"index": 7982} -2023-12-16T14:22:06.138Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7982, "blockHeight": 7982, "took": "14.511145ms"} -2023-12-16T14:22:07.093Z INFO sending PrepareRequest {"height": 7983, "view": 0} -2023-12-16T14:22:07.093Z INFO sending Commit {"height": 7983, "view": 0} -2023-12-16T14:22:07.093Z INFO approving block {"height": 7983, "hash": "f83a224b419aadf625ef3c63b76f6bcf29e2c9f0f0f1ebcc7c6d2b7b458cc7d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed1eb7c0c35d76a4ca31b25c86e4a4f3aec744822141b5029d4a01d2d4027ef7"} -2023-12-16T14:22:07.095Z INFO initializing dbft {"height": 7984, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:07.096Z debug frostfs-node/morph.go:229 new block {"index": 7983} -2023-12-16T14:22:07.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7983, "blockHeight": 7983, "took": "10.069747ms"} -2023-12-16T14:22:08.095Z INFO sending PrepareRequest {"height": 7984, "view": 0} -2023-12-16T14:22:08.095Z INFO sending Commit {"height": 7984, "view": 0} -2023-12-16T14:22:08.096Z INFO approving block {"height": 7984, "hash": "4501778d5a78194614b3182ced68b89bc5ed0a0413fe19354cdc2f9a1082eda2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f83a224b419aadf625ef3c63b76f6bcf29e2c9f0f0f1ebcc7c6d2b7b458cc7d4"} -2023-12-16T14:22:08.097Z INFO initializing dbft {"height": 7985, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:08.098Z debug frostfs-node/morph.go:229 new block {"index": 7984} -2023-12-16T14:22:08.139Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7984, "blockHeight": 7984, "took": "13.1338ms"} -2023-12-16T14:22:09.097Z INFO sending PrepareRequest {"height": 7985, "view": 0} -2023-12-16T14:22:09.097Z INFO sending Commit {"height": 7985, "view": 0} -2023-12-16T14:22:09.098Z INFO approving block {"height": 7985, "hash": "1bf068f7e0a6715ed70892b104a811fa039f828890525d9e223e2ad862b692e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4501778d5a78194614b3182ced68b89bc5ed0a0413fe19354cdc2f9a1082eda2"} -2023-12-16T14:22:09.099Z INFO initializing dbft {"height": 7986, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:09.100Z debug frostfs-node/morph.go:229 new block {"index": 7985} -2023-12-16T14:22:09.137Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7985, "blockHeight": 7985, "took": "10.549604ms"} -2023-12-16T14:22:10.099Z INFO sending PrepareRequest {"height": 7986, "view": 0} -2023-12-16T14:22:10.099Z INFO sending Commit {"height": 7986, "view": 0} -2023-12-16T14:22:10.100Z INFO approving block {"height": 7986, "hash": "0f72909960985c0258a70729ae423c35554039c92bf4fd1d98d8d2f45be6a779", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bf068f7e0a6715ed70892b104a811fa039f828890525d9e223e2ad862b692e1"} -2023-12-16T14:22:10.101Z INFO initializing dbft {"height": 7987, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:10.102Z debug frostfs-node/morph.go:229 new block {"index": 7986} -2023-12-16T14:22:10.138Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7986, "blockHeight": 7986, "took": "10.570851ms"} -2023-12-16T14:22:11.101Z INFO sending PrepareRequest {"height": 7987, "view": 0} -2023-12-16T14:22:11.101Z INFO sending Commit {"height": 7987, "view": 0} -2023-12-16T14:22:11.102Z INFO approving block {"height": 7987, "hash": "0352b990540a5230202c56046df52d5532eb85caa3706467ea2049068ad9a245", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f72909960985c0258a70729ae423c35554039c92bf4fd1d98d8d2f45be6a779"} -2023-12-16T14:22:11.103Z INFO initializing dbft {"height": 7988, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:11.104Z debug frostfs-node/morph.go:229 new block {"index": 7987} -2023-12-16T14:22:11.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7987, "blockHeight": 7987, "took": "12.368031ms"} -2023-12-16T14:22:12.103Z INFO sending PrepareRequest {"height": 7988, "view": 0} -2023-12-16T14:22:12.103Z INFO sending Commit {"height": 7988, "view": 0} -2023-12-16T14:22:12.104Z INFO approving block {"height": 7988, "hash": "2d483117d297b174b59842d85b5b47b07517d72904656053cc587a6d639c216d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0352b990540a5230202c56046df52d5532eb85caa3706467ea2049068ad9a245"} -2023-12-16T14:22:12.105Z INFO initializing dbft {"height": 7989, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:12.106Z debug frostfs-node/morph.go:229 new block {"index": 7988} -2023-12-16T14:22:12.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7988, "blockHeight": 7988, "took": "12.831944ms"} -2023-12-16T14:22:13.105Z INFO sending PrepareRequest {"height": 7989, "view": 0} -2023-12-16T14:22:13.105Z INFO sending Commit {"height": 7989, "view": 0} -2023-12-16T14:22:13.105Z INFO approving block {"height": 7989, "hash": "4d7aa43ae95ae33d63f5380f69682141505ed28cc6b864b49bc442d00836031d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d483117d297b174b59842d85b5b47b07517d72904656053cc587a6d639c216d"} -2023-12-16T14:22:13.107Z INFO initializing dbft {"height": 7990, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:13.108Z debug frostfs-node/morph.go:229 new block {"index": 7989} -2023-12-16T14:22:13.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7989, "blockHeight": 7989, "took": "11.195735ms"} -2023-12-16T14:22:14.107Z INFO sending PrepareRequest {"height": 7990, "view": 0} -2023-12-16T14:22:14.107Z INFO sending Commit {"height": 7990, "view": 0} -2023-12-16T14:22:14.107Z INFO approving block {"height": 7990, "hash": "ff0a7acc2c4400c6c94de133ae61420e9cea8409cf1c2ee57e23581ddd800b56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d7aa43ae95ae33d63f5380f69682141505ed28cc6b864b49bc442d00836031d"} -2023-12-16T14:22:14.109Z INFO initializing dbft {"height": 7991, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:14.110Z debug frostfs-node/morph.go:229 new block {"index": 7990} -2023-12-16T14:22:14.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7990, "blockHeight": 7990, "took": "9.660157ms"} -2023-12-16T14:22:15.109Z INFO sending PrepareRequest {"height": 7991, "view": 0} -2023-12-16T14:22:15.109Z INFO sending Commit {"height": 7991, "view": 0} -2023-12-16T14:22:15.110Z INFO approving block {"height": 7991, "hash": "19e5748758ee5831ecd99de806a14d17e3307be63bf255af6cb4ddcee8ef359e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff0a7acc2c4400c6c94de133ae61420e9cea8409cf1c2ee57e23581ddd800b56"} -2023-12-16T14:22:15.111Z INFO initializing dbft {"height": 7992, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:15.112Z debug frostfs-node/morph.go:229 new block {"index": 7991} -2023-12-16T14:22:15.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7991, "blockHeight": 7991, "took": "10.94ms"} -2023-12-16T14:22:16.111Z INFO sending PrepareRequest {"height": 7992, "view": 0} -2023-12-16T14:22:16.111Z INFO sending Commit {"height": 7992, "view": 0} -2023-12-16T14:22:16.112Z INFO approving block {"height": 7992, "hash": "c2ebc7f33a546cb11105069b12e85b6d29dc4bf2966adfe7bd0d2e9d04bd7ae7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19e5748758ee5831ecd99de806a14d17e3307be63bf255af6cb4ddcee8ef359e"} -2023-12-16T14:22:16.114Z INFO initializing dbft {"height": 7993, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:16.115Z debug frostfs-node/morph.go:229 new block {"index": 7992} -2023-12-16T14:22:16.150Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7992, "blockHeight": 7992, "took": "18.161496ms"} -2023-12-16T14:22:17.113Z INFO sending PrepareRequest {"height": 7993, "view": 0} -2023-12-16T14:22:17.113Z INFO sending Commit {"height": 7993, "view": 0} -2023-12-16T14:22:17.114Z INFO approving block {"height": 7993, "hash": "04b803b7435f4e34b9ef15c3c16f3f760735b6863d149a0b631812af716db2dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2ebc7f33a546cb11105069b12e85b6d29dc4bf2966adfe7bd0d2e9d04bd7ae7"} -2023-12-16T14:22:17.116Z INFO initializing dbft {"height": 7994, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:17.117Z debug frostfs-node/morph.go:229 new block {"index": 7993} -2023-12-16T14:22:17.145Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7993, "blockHeight": 7993, "took": "12.096361ms"} -2023-12-16T14:22:18.115Z INFO sending PrepareRequest {"height": 7994, "view": 0} -2023-12-16T14:22:18.115Z INFO sending Commit {"height": 7994, "view": 0} -2023-12-16T14:22:18.116Z INFO approving block {"height": 7994, "hash": "4c2be5e71a36e01e90c5dbe3198f2b6fac4a3fb4906fd6e029096283e1ce0fc4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04b803b7435f4e34b9ef15c3c16f3f760735b6863d149a0b631812af716db2dc"} -2023-12-16T14:22:18.118Z INFO initializing dbft {"height": 7995, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:18.119Z debug frostfs-node/morph.go:229 new block {"index": 7994} -2023-12-16T14:22:18.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7994, "blockHeight": 7994, "took": "12.675076ms"} -2023-12-16T14:22:19.117Z INFO sending PrepareRequest {"height": 7995, "view": 0} -2023-12-16T14:22:19.117Z INFO sending Commit {"height": 7995, "view": 0} -2023-12-16T14:22:19.118Z INFO approving block {"height": 7995, "hash": "fbdf1b361a14ef4fbbb12099eb76a9148993b7dc2ec1e49ed3d8b361c63909c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c2be5e71a36e01e90c5dbe3198f2b6fac4a3fb4906fd6e029096283e1ce0fc4"} -2023-12-16T14:22:19.119Z INFO initializing dbft {"height": 7996, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:19.121Z debug frostfs-node/morph.go:229 new block {"index": 7995} -2023-12-16T14:22:19.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7995, "blockHeight": 7995, "took": "12.262594ms"} -2023-12-16T14:22:20.118Z INFO sending PrepareRequest {"height": 7996, "view": 0} -2023-12-16T14:22:20.119Z INFO sending Commit {"height": 7996, "view": 0} -2023-12-16T14:22:20.119Z INFO approving block {"height": 7996, "hash": "b0f74d663cd013f27133871fb989672ff0bbdbe56829ac9e12e71961618caff7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbdf1b361a14ef4fbbb12099eb76a9148993b7dc2ec1e49ed3d8b361c63909c1"} -2023-12-16T14:22:20.121Z INFO initializing dbft {"height": 7997, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:20.122Z debug frostfs-node/morph.go:229 new block {"index": 7996} -2023-12-16T14:22:20.151Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7996, "blockHeight": 7996, "took": "15.680551ms"} -2023-12-16T14:22:21.120Z INFO sending PrepareRequest {"height": 7997, "view": 0} -2023-12-16T14:22:21.120Z INFO sending Commit {"height": 7997, "view": 0} -2023-12-16T14:22:21.121Z INFO approving block {"height": 7997, "hash": "e93f0df1891891cf31d3f7714b166a96f6d5b3ded85f2ea2909abadc864836bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0f74d663cd013f27133871fb989672ff0bbdbe56829ac9e12e71961618caff7"} -2023-12-16T14:22:21.122Z INFO initializing dbft {"height": 7998, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:21.123Z debug frostfs-node/morph.go:229 new block {"index": 7997} -2023-12-16T14:22:21.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7997, "blockHeight": 7997, "took": "12.38705ms"} -2023-12-16T14:22:22.122Z INFO sending PrepareRequest {"height": 7998, "view": 0} -2023-12-16T14:22:22.122Z INFO sending Commit {"height": 7998, "view": 0} -2023-12-16T14:22:22.123Z INFO approving block {"height": 7998, "hash": "7e0931da8f2a562efb81289b60b5fcc636d9352f53e19c74e62a1fedde2429b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e93f0df1891891cf31d3f7714b166a96f6d5b3ded85f2ea2909abadc864836bd"} -2023-12-16T14:22:22.127Z INFO initializing dbft {"height": 7999, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:22.128Z debug frostfs-node/morph.go:229 new block {"index": 7998} -2023-12-16T14:22:22.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 7998, "blockHeight": 7998, "took": "10.786606ms"} -2023-12-16T14:22:23.124Z INFO sending PrepareRequest {"height": 7999, "view": 0} -2023-12-16T14:22:23.124Z INFO sending Commit {"height": 7999, "view": 0} -2023-12-16T14:22:23.125Z INFO approving block {"height": 7999, "hash": "9abaf259bc4161fe942360e69521408b9b0faa0872d69e3649011fc89dd68239", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e0931da8f2a562efb81289b60b5fcc636d9352f53e19c74e62a1fedde2429b7"} -2023-12-16T14:22:23.138Z INFO initializing dbft {"height": 8000, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:23.139Z debug frostfs-node/morph.go:229 new block {"index": 7999} -2023-12-16T14:22:23.187Z INFO persisted to disk {"blocks": 1, "keys": 31, "headerHeight": 7999, "blockHeight": 7999, "took": "49.820264ms"} -2023-12-16T14:22:24.125Z INFO sending PrepareRequest {"height": 8000, "view": 0} -2023-12-16T14:22:24.126Z INFO sending Commit {"height": 8000, "view": 0} -2023-12-16T14:22:24.126Z INFO approving block {"height": 8000, "hash": "50d0096f63a605d8779b346ebce2493ed45951c6dcf0a8bcac9f19dbe5cd41c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9abaf259bc4161fe942360e69521408b9b0faa0872d69e3649011fc89dd68239"} -2023-12-16T14:22:24.128Z INFO initializing dbft {"height": 8001, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:24.130Z debug frostfs-node/morph.go:229 new block {"index": 8000} -2023-12-16T14:22:24.132Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:22:24.135Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:22:24.135Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:22:24.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8000, "blockHeight": 8000, "took": "23.982986ms"} -2023-12-16T14:22:25.127Z INFO sending PrepareRequest {"height": 8001, "view": 0} -2023-12-16T14:22:25.128Z INFO sending Commit {"height": 8001, "view": 0} -2023-12-16T14:22:25.128Z INFO approving block {"height": 8001, "hash": "802ed8d45fabc175ce0017c32d2aff88aef8ab3e69c21b95c74b39116e6b1ae8", "tx_count": 2, "merkle": "00de2d9b3e8403427ba2ee7aa263f5b0e081f8241aa4fb53ec8c305a0a6e4e95", "prev": "50d0096f63a605d8779b346ebce2493ed45951c6dcf0a8bcac9f19dbe5cd41c2"} -2023-12-16T14:22:25.129Z INFO runtime log {"tx": "5c38645b16fc6a44273cd2331ceae104dc04e7adf446ee1a6d3e08d17f671156", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:22:25.130Z INFO runtime log {"tx": "5c38645b16fc6a44273cd2331ceae104dc04e7adf446ee1a6d3e08d17f671156", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:22:25.133Z INFO initializing dbft {"height": 8002, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:25.135Z debug frostfs-node/morph.go:229 new block {"index": 8001} -2023-12-16T14:22:25.151Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8001, "blockHeight": 8001, "took": "13.054015ms"} -2023-12-16T14:22:26.129Z INFO sending PrepareRequest {"height": 8002, "view": 0} -2023-12-16T14:22:26.129Z INFO sending Commit {"height": 8002, "view": 0} -2023-12-16T14:22:26.130Z INFO approving block {"height": 8002, "hash": "822924aecd1a2c24bbe9d956d7d86c8f65cdba54f0332cd685aa5e294655a490", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "802ed8d45fabc175ce0017c32d2aff88aef8ab3e69c21b95c74b39116e6b1ae8"} -2023-12-16T14:22:26.131Z INFO initializing dbft {"height": 8003, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:26.132Z debug frostfs-node/morph.go:229 new block {"index": 8002} -2023-12-16T14:22:26.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8002, "blockHeight": 8002, "took": "13.824885ms"} -2023-12-16T14:22:27.131Z INFO sending PrepareRequest {"height": 8003, "view": 0} -2023-12-16T14:22:27.131Z INFO sending Commit {"height": 8003, "view": 0} -2023-12-16T14:22:27.131Z INFO approving block {"height": 8003, "hash": "4dd539a210558c56feffe9e762bb76e8d182c46961239eaac6d1044d7a258eda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "822924aecd1a2c24bbe9d956d7d86c8f65cdba54f0332cd685aa5e294655a490"} -2023-12-16T14:22:27.133Z INFO initializing dbft {"height": 8004, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:27.134Z debug frostfs-node/morph.go:229 new block {"index": 8003} -2023-12-16T14:22:27.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8003, "blockHeight": 8003, "took": "11.755902ms"} -2023-12-16T14:22:28.133Z INFO sending PrepareRequest {"height": 8004, "view": 0} -2023-12-16T14:22:28.133Z INFO sending Commit {"height": 8004, "view": 0} -2023-12-16T14:22:28.133Z INFO approving block {"height": 8004, "hash": "b3076e41e70a417c490a92f29eda9f0d94c56c8bceb9ca22a13293ed1f474392", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4dd539a210558c56feffe9e762bb76e8d182c46961239eaac6d1044d7a258eda"} -2023-12-16T14:22:28.136Z INFO initializing dbft {"height": 8005, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:28.136Z debug frostfs-node/morph.go:229 new block {"index": 8004} -2023-12-16T14:22:28.155Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8004, "blockHeight": 8004, "took": "13.142658ms"} -2023-12-16T14:22:29.136Z INFO sending PrepareRequest {"height": 8005, "view": 0} -2023-12-16T14:22:29.136Z INFO sending Commit {"height": 8005, "view": 0} -2023-12-16T14:22:29.137Z INFO approving block {"height": 8005, "hash": "4307b004d4f688f344f5e86cccfba4cf46b78c22a314a420f98f6168e40186b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3076e41e70a417c490a92f29eda9f0d94c56c8bceb9ca22a13293ed1f474392"} -2023-12-16T14:22:29.138Z INFO initializing dbft {"height": 8006, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:29.139Z debug frostfs-node/morph.go:229 new block {"index": 8005} -2023-12-16T14:22:29.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8005, "blockHeight": 8005, "took": "10.264952ms"} -2023-12-16T14:22:30.138Z INFO sending PrepareRequest {"height": 8006, "view": 0} -2023-12-16T14:22:30.138Z INFO sending Commit {"height": 8006, "view": 0} -2023-12-16T14:22:30.138Z INFO approving block {"height": 8006, "hash": "b3362d1a91d0ceef0d040e9bb761e1a65e5554ba12be07e1b26b15b7c2cd8d8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4307b004d4f688f344f5e86cccfba4cf46b78c22a314a420f98f6168e40186b4"} -2023-12-16T14:22:30.140Z INFO initializing dbft {"height": 8007, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:30.140Z debug frostfs-node/morph.go:229 new block {"index": 8006} -2023-12-16T14:22:30.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8006, "blockHeight": 8006, "took": "9.249457ms"} -2023-12-16T14:22:31.139Z INFO sending PrepareRequest {"height": 8007, "view": 0} -2023-12-16T14:22:31.140Z INFO sending Commit {"height": 8007, "view": 0} -2023-12-16T14:22:31.140Z INFO approving block {"height": 8007, "hash": "e7ab5ee5f3017e5d5e396dc80a5853489fdeb821bd917b50486fe4ce94883b93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3362d1a91d0ceef0d040e9bb761e1a65e5554ba12be07e1b26b15b7c2cd8d8c"} -2023-12-16T14:22:31.142Z INFO initializing dbft {"height": 8008, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:31.142Z debug frostfs-node/morph.go:229 new block {"index": 8007} -2023-12-16T14:22:31.160Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8007, "blockHeight": 8007, "took": "15.167521ms"} -2023-12-16T14:22:32.142Z INFO sending PrepareRequest {"height": 8008, "view": 0} -2023-12-16T14:22:32.142Z INFO sending Commit {"height": 8008, "view": 0} -2023-12-16T14:22:32.142Z INFO approving block {"height": 8008, "hash": "3eda3cd95df1239a9cedd7bc59ed3e5b1295d61205736c7510886b5158209959", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7ab5ee5f3017e5d5e396dc80a5853489fdeb821bd917b50486fe4ce94883b93"} -2023-12-16T14:22:32.145Z INFO initializing dbft {"height": 8009, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:32.146Z debug frostfs-node/morph.go:229 new block {"index": 8008} -2023-12-16T14:22:32.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8008, "blockHeight": 8008, "took": "13.946645ms"} -2023-12-16T14:22:33.143Z INFO sending PrepareRequest {"height": 8009, "view": 0} -2023-12-16T14:22:33.143Z INFO sending Commit {"height": 8009, "view": 0} -2023-12-16T14:22:33.144Z INFO approving block {"height": 8009, "hash": "d803c393d351a57922a05c447ec9bcbb3a624eb55a8753558a6aa93e4aa9675f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3eda3cd95df1239a9cedd7bc59ed3e5b1295d61205736c7510886b5158209959"} -2023-12-16T14:22:33.145Z INFO initializing dbft {"height": 8010, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:33.146Z debug frostfs-node/morph.go:229 new block {"index": 8009} -2023-12-16T14:22:33.157Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8009, "blockHeight": 8009, "took": "11.916418ms"} -2023-12-16T14:22:34.145Z INFO sending PrepareRequest {"height": 8010, "view": 0} -2023-12-16T14:22:34.146Z INFO sending Commit {"height": 8010, "view": 0} -2023-12-16T14:22:34.147Z INFO approving block {"height": 8010, "hash": "6ae800eaa10f7c764db2c8b27328ec606101cb40e5879e1ebbaf50fb8d130ae3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d803c393d351a57922a05c447ec9bcbb3a624eb55a8753558a6aa93e4aa9675f"} -2023-12-16T14:22:34.149Z INFO initializing dbft {"height": 8011, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:34.150Z debug frostfs-node/morph.go:229 new block {"index": 8010} -2023-12-16T14:22:35.148Z INFO sending PrepareRequest {"height": 8011, "view": 0} -2023-12-16T14:22:35.149Z INFO sending Commit {"height": 8011, "view": 0} -2023-12-16T14:22:35.149Z INFO approving block {"height": 8011, "hash": "c5f43166729d381e5a6274a419546e44069c1f236e297a08ebb7e4fa74f15e17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ae800eaa10f7c764db2c8b27328ec606101cb40e5879e1ebbaf50fb8d130ae3"} -2023-12-16T14:22:35.151Z INFO initializing dbft {"height": 8012, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:35.153Z debug frostfs-node/morph.go:229 new block {"index": 8011} -2023-12-16T14:22:35.164Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 34 epoch for daughters"} -2023-12-16T14:22:35.167Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8010, "blockHeight": 8010, "took": "20.490351ms"} -2023-12-16T14:22:36.150Z INFO sending PrepareRequest {"height": 8012, "view": 0} -2023-12-16T14:22:36.151Z INFO sending Commit {"height": 8012, "view": 0} -2023-12-16T14:22:36.151Z INFO approving block {"height": 8012, "hash": "59c8c810de4ba307974ebb342328dd84b559dee8b5df32e24aece485962e1971", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5f43166729d381e5a6274a419546e44069c1f236e297a08ebb7e4fa74f15e17"} -2023-12-16T14:22:36.153Z INFO initializing dbft {"height": 8013, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:36.154Z debug frostfs-node/morph.go:229 new block {"index": 8012} -2023-12-16T14:22:36.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8011, "blockHeight": 8011, "took": "11.483149ms"} -2023-12-16T14:22:36.160Z INFO runtime log {"tx": "07bb8f71a322aced80a2c968d9f59c2dd9526b0a4c469bbe307dba03436a7e3f", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:22:37.152Z INFO sending PrepareRequest {"height": 8013, "view": 0} -2023-12-16T14:22:37.152Z INFO sending Commit {"height": 8013, "view": 0} -2023-12-16T14:22:37.152Z INFO approving block {"height": 8013, "hash": "c6b88146cab37c9d01d42ee941969afdccdbc58db398c8b207e0060050171b17", "tx_count": 1, "merkle": "508e333eac9d769d5932bf247e4aa598a48d9356a6bae66c82a4ae82f57bc194", "prev": "59c8c810de4ba307974ebb342328dd84b559dee8b5df32e24aece485962e1971"} -2023-12-16T14:22:37.153Z INFO runtime log {"tx": "94c17bf582aea4826ce6baa656938da498a54a7e24bf32599d769dac3e338e50", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:22:37.155Z INFO initializing dbft {"height": 8014, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:37.156Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 34} -2023-12-16T14:22:37.156Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 34} -2023-12-16T14:22:37.157Z debug frostfs-node/morph.go:229 new block {"index": 8013} -2023-12-16T14:22:37.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8012, "blockHeight": 8012, "took": "13.0305ms"} -2023-12-16T14:22:38.153Z INFO sending PrepareRequest {"height": 8014, "view": 0} -2023-12-16T14:22:38.154Z INFO sending Commit {"height": 8014, "view": 0} -2023-12-16T14:22:38.154Z INFO approving block {"height": 8014, "hash": "475cb5ac9428d988b380a7c49d9e4098e3d47315436b07d172e63b57453c4b59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6b88146cab37c9d01d42ee941969afdccdbc58db398c8b207e0060050171b17"} -2023-12-16T14:22:38.156Z INFO initializing dbft {"height": 8015, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:38.157Z debug frostfs-node/morph.go:229 new block {"index": 8014} -2023-12-16T14:22:38.162Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 8013, "blockHeight": 8013, "took": "14.083737ms"} -2023-12-16T14:22:39.155Z INFO sending PrepareRequest {"height": 8015, "view": 0} -2023-12-16T14:22:39.155Z INFO sending Commit {"height": 8015, "view": 0} -2023-12-16T14:22:39.156Z INFO approving block {"height": 8015, "hash": "8978f06d5a465c9cb547f09fcfe544c300d440c3c2d3a1d4ceafa9cddc3ed522", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "475cb5ac9428d988b380a7c49d9e4098e3d47315436b07d172e63b57453c4b59"} -2023-12-16T14:22:39.160Z INFO initializing dbft {"height": 8016, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:39.161Z debug frostfs-node/morph.go:229 new block {"index": 8015} -2023-12-16T14:22:39.163Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8014, "blockHeight": 8014, "took": "13.668696ms"} -2023-12-16T14:22:40.157Z INFO sending PrepareRequest {"height": 8016, "view": 0} -2023-12-16T14:22:40.158Z INFO sending Commit {"height": 8016, "view": 0} -2023-12-16T14:22:40.159Z INFO approving block {"height": 8016, "hash": "7bbd95fd6d5f66705bfedb776671421927f99e32b20b9bbbcddec1c4bbdaa860", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8978f06d5a465c9cb547f09fcfe544c300d440c3c2d3a1d4ceafa9cddc3ed522"} -2023-12-16T14:22:40.162Z INFO initializing dbft {"height": 8017, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:40.163Z debug frostfs-node/morph.go:229 new block {"index": 8016} -2023-12-16T14:22:40.169Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8015, "blockHeight": 8015, "took": "19.134738ms"} -2023-12-16T14:22:41.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8016, "blockHeight": 8016, "took": "7.826056ms"} -2023-12-16T14:22:41.160Z INFO sending PrepareRequest {"height": 8017, "view": 0} -2023-12-16T14:22:41.160Z INFO sending Commit {"height": 8017, "view": 0} -2023-12-16T14:22:41.160Z INFO approving block {"height": 8017, "hash": "1d452168699dd32e2cb07a2a37c7179833dd6ec8d78328c8458cb6eb8648536f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bbd95fd6d5f66705bfedb776671421927f99e32b20b9bbbcddec1c4bbdaa860"} -2023-12-16T14:22:41.161Z INFO initializing dbft {"height": 8018, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:41.162Z debug frostfs-node/morph.go:229 new block {"index": 8017} -2023-12-16T14:22:42.162Z INFO sending PrepareRequest {"height": 8018, "view": 0} -2023-12-16T14:22:42.162Z INFO sending Commit {"height": 8018, "view": 0} -2023-12-16T14:22:42.163Z INFO approving block {"height": 8018, "hash": "cc4b15944dc0612779654efd477b730faf44a33cee90b7f7e390a4c3042bb49e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d452168699dd32e2cb07a2a37c7179833dd6ec8d78328c8458cb6eb8648536f"} -2023-12-16T14:22:42.163Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8017, "blockHeight": 8017, "took": "11.62239ms"} -2023-12-16T14:22:42.164Z INFO initializing dbft {"height": 8019, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:42.165Z debug frostfs-node/morph.go:229 new block {"index": 8018} -2023-12-16T14:22:43.164Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8018, "blockHeight": 8018, "took": "11.215735ms"} -2023-12-16T14:22:43.164Z INFO sending PrepareRequest {"height": 8019, "view": 0} -2023-12-16T14:22:43.164Z INFO sending Commit {"height": 8019, "view": 0} -2023-12-16T14:22:43.165Z INFO approving block {"height": 8019, "hash": "c336fe0d1d63d2ea66d9ce10f2e9974907a42e26fbf5e5de204289a0724414e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc4b15944dc0612779654efd477b730faf44a33cee90b7f7e390a4c3042bb49e"} -2023-12-16T14:22:43.166Z INFO initializing dbft {"height": 8020, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:43.167Z debug frostfs-node/morph.go:229 new block {"index": 8019} -2023-12-16T14:22:44.167Z INFO sending PrepareRequest {"height": 8020, "view": 0} -2023-12-16T14:22:44.167Z INFO sending Commit {"height": 8020, "view": 0} -2023-12-16T14:22:44.168Z INFO approving block {"height": 8020, "hash": "5f5706037e1357029e29da152a685ad73f3d1ac409ad55eaf259ecc8ee8d2efb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c336fe0d1d63d2ea66d9ce10f2e9974907a42e26fbf5e5de204289a0724414e8"} -2023-12-16T14:22:44.168Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8019, "blockHeight": 8019, "took": "14.61419ms"} -2023-12-16T14:22:44.170Z INFO initializing dbft {"height": 8021, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:44.170Z debug frostfs-node/morph.go:229 new block {"index": 8020} -2023-12-16T14:22:45.169Z INFO sending PrepareRequest {"height": 8021, "view": 0} -2023-12-16T14:22:45.169Z INFO sending Commit {"height": 8021, "view": 0} -2023-12-16T14:22:45.170Z INFO approving block {"height": 8021, "hash": "688741693a847ebf5f20e98736284ad188ee4837585b017d4ddcc12944decde0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f5706037e1357029e29da152a685ad73f3d1ac409ad55eaf259ecc8ee8d2efb"} -2023-12-16T14:22:45.171Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8020, "blockHeight": 8020, "took": "16.534785ms"} -2023-12-16T14:22:45.172Z INFO initializing dbft {"height": 8022, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:45.173Z debug frostfs-node/morph.go:229 new block {"index": 8021} -2023-12-16T14:22:46.166Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8021, "blockHeight": 8021, "took": "9.723454ms"} -2023-12-16T14:22:46.171Z INFO sending PrepareRequest {"height": 8022, "view": 0} -2023-12-16T14:22:46.172Z INFO sending Commit {"height": 8022, "view": 0} -2023-12-16T14:22:46.172Z INFO approving block {"height": 8022, "hash": "380dcf59384f148f9fdb3c5bfc20099b9432081149a11704e31fdbafbf445c04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "688741693a847ebf5f20e98736284ad188ee4837585b017d4ddcc12944decde0"} -2023-12-16T14:22:46.174Z INFO initializing dbft {"height": 8023, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:46.175Z debug frostfs-node/morph.go:229 new block {"index": 8022} -2023-12-16T14:22:47.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8022, "blockHeight": 8022, "took": "15.486464ms"} -2023-12-16T14:22:47.173Z INFO sending PrepareRequest {"height": 8023, "view": 0} -2023-12-16T14:22:47.173Z INFO sending Commit {"height": 8023, "view": 0} -2023-12-16T14:22:47.174Z INFO approving block {"height": 8023, "hash": "2687dd4b4e1474f8d3359549a816de235c57b6f7f6d8822693f195ecd94136f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "380dcf59384f148f9fdb3c5bfc20099b9432081149a11704e31fdbafbf445c04"} -2023-12-16T14:22:47.176Z INFO initializing dbft {"height": 8024, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:47.176Z debug frostfs-node/morph.go:229 new block {"index": 8023} -2023-12-16T14:22:48.170Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8023, "blockHeight": 8023, "took": "12.488975ms"} -2023-12-16T14:22:48.175Z INFO sending PrepareRequest {"height": 8024, "view": 0} -2023-12-16T14:22:48.175Z INFO sending Commit {"height": 8024, "view": 0} -2023-12-16T14:22:48.175Z INFO approving block {"height": 8024, "hash": "2c50d96fb1c6b1fed7faf9b338de59e490897e16266e44e614669655e9de61ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2687dd4b4e1474f8d3359549a816de235c57b6f7f6d8822693f195ecd94136f8"} -2023-12-16T14:22:48.177Z INFO initializing dbft {"height": 8025, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:48.178Z debug frostfs-node/morph.go:229 new block {"index": 8024} -2023-12-16T14:22:49.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8024, "blockHeight": 8024, "took": "14.525667ms"} -2023-12-16T14:22:49.177Z INFO sending PrepareRequest {"height": 8025, "view": 0} -2023-12-16T14:22:49.177Z INFO sending Commit {"height": 8025, "view": 0} -2023-12-16T14:22:49.178Z INFO approving block {"height": 8025, "hash": "b1c73f0dad0dd42dc77334315bb610a3117f12941eb64466ca1dda7757eae950", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c50d96fb1c6b1fed7faf9b338de59e490897e16266e44e614669655e9de61ff"} -2023-12-16T14:22:49.181Z INFO initializing dbft {"height": 8026, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:49.182Z debug frostfs-node/morph.go:229 new block {"index": 8025} -2023-12-16T14:22:50.170Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8025, "blockHeight": 8025, "took": "10.679522ms"} -2023-12-16T14:22:50.179Z INFO sending PrepareRequest {"height": 8026, "view": 0} -2023-12-16T14:22:50.179Z INFO sending Commit {"height": 8026, "view": 0} -2023-12-16T14:22:50.180Z INFO approving block {"height": 8026, "hash": "ffa2c3082899efd1ec3135dc6d32133bd5a61a25bae7846ea0b95834d42a42d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1c73f0dad0dd42dc77334315bb610a3117f12941eb64466ca1dda7757eae950"} -2023-12-16T14:22:50.182Z INFO initializing dbft {"height": 8027, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:50.183Z debug frostfs-node/morph.go:229 new block {"index": 8026} -2023-12-16T14:22:51.169Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8026, "blockHeight": 8026, "took": "8.22401ms"} -2023-12-16T14:22:51.181Z INFO sending PrepareRequest {"height": 8027, "view": 0} -2023-12-16T14:22:51.181Z INFO sending Commit {"height": 8027, "view": 0} -2023-12-16T14:22:51.181Z INFO approving block {"height": 8027, "hash": "6a324f5fb130f518473189b6f59cb4699ba86ee134c846b1e72b888c178ffaf2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffa2c3082899efd1ec3135dc6d32133bd5a61a25bae7846ea0b95834d42a42d9"} -2023-12-16T14:22:51.183Z INFO initializing dbft {"height": 8028, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:51.184Z debug frostfs-node/morph.go:229 new block {"index": 8027} -2023-12-16T14:22:52.179Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8027, "blockHeight": 8027, "took": "17.24496ms"} -2023-12-16T14:22:52.183Z INFO sending PrepareRequest {"height": 8028, "view": 0} -2023-12-16T14:22:52.183Z INFO sending Commit {"height": 8028, "view": 0} -2023-12-16T14:22:52.183Z INFO approving block {"height": 8028, "hash": "eabf6a49d258fa614275d7c6f993bac8ab4a4a2ac0541f3e71d63da7de4bf354", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a324f5fb130f518473189b6f59cb4699ba86ee134c846b1e72b888c178ffaf2"} -2023-12-16T14:22:52.185Z INFO initializing dbft {"height": 8029, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:52.186Z debug frostfs-node/morph.go:229 new block {"index": 8028} -2023-12-16T14:22:53.172Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8028, "blockHeight": 8028, "took": "10.060814ms"} -2023-12-16T14:22:53.184Z INFO sending PrepareRequest {"height": 8029, "view": 0} -2023-12-16T14:22:53.184Z INFO sending Commit {"height": 8029, "view": 0} -2023-12-16T14:22:53.184Z INFO approving block {"height": 8029, "hash": "7c81cf5fe54a8176a2063c4455108b257e9fe66f60617957b7be999ea0590f45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eabf6a49d258fa614275d7c6f993bac8ab4a4a2ac0541f3e71d63da7de4bf354"} -2023-12-16T14:22:53.186Z INFO initializing dbft {"height": 8030, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:53.187Z debug frostfs-node/morph.go:229 new block {"index": 8029} -2023-12-16T14:22:54.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8029, "blockHeight": 8029, "took": "10.348133ms"} -2023-12-16T14:22:54.186Z INFO sending PrepareRequest {"height": 8030, "view": 0} -2023-12-16T14:22:54.186Z INFO sending Commit {"height": 8030, "view": 0} -2023-12-16T14:22:54.187Z INFO approving block {"height": 8030, "hash": "adc35e4d42088085a7e1fe8a4a860af3cb19c469a373d581902996933f7bd4f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c81cf5fe54a8176a2063c4455108b257e9fe66f60617957b7be999ea0590f45"} -2023-12-16T14:22:54.188Z INFO initializing dbft {"height": 8031, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:54.189Z debug frostfs-node/morph.go:229 new block {"index": 8030} -2023-12-16T14:22:55.175Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8030, "blockHeight": 8030, "took": "10.853556ms"} -2023-12-16T14:22:55.188Z INFO sending PrepareRequest {"height": 8031, "view": 0} -2023-12-16T14:22:55.188Z INFO sending Commit {"height": 8031, "view": 0} -2023-12-16T14:22:55.189Z INFO approving block {"height": 8031, "hash": "7a2721a91390fcdbd57ba2ad11c47c3215d3598dd47220b5a6ada5a7b8aa8a03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adc35e4d42088085a7e1fe8a4a860af3cb19c469a373d581902996933f7bd4f4"} -2023-12-16T14:22:55.190Z INFO initializing dbft {"height": 8032, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:55.191Z debug frostfs-node/morph.go:229 new block {"index": 8031} -2023-12-16T14:22:56.174Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8031, "blockHeight": 8031, "took": "8.905628ms"} -2023-12-16T14:22:56.190Z INFO sending PrepareRequest {"height": 8032, "view": 0} -2023-12-16T14:22:56.190Z INFO sending Commit {"height": 8032, "view": 0} -2023-12-16T14:22:56.191Z INFO approving block {"height": 8032, "hash": "52570d6beb283216ab89b5520b910d704c2ba250ecaa61d49070c309e38b33af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a2721a91390fcdbd57ba2ad11c47c3215d3598dd47220b5a6ada5a7b8aa8a03"} -2023-12-16T14:22:56.192Z INFO initializing dbft {"height": 8033, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:56.193Z debug frostfs-node/morph.go:229 new block {"index": 8032} -2023-12-16T14:22:57.174Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8032, "blockHeight": 8032, "took": "7.976483ms"} -2023-12-16T14:22:57.192Z INFO sending PrepareRequest {"height": 8033, "view": 0} -2023-12-16T14:22:57.192Z INFO sending Commit {"height": 8033, "view": 0} -2023-12-16T14:22:57.192Z INFO approving block {"height": 8033, "hash": "152a7412a55573564649501ee4033e03573f61599df5d069ba63d72847021cd3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52570d6beb283216ab89b5520b910d704c2ba250ecaa61d49070c309e38b33af"} -2023-12-16T14:22:57.194Z INFO initializing dbft {"height": 8034, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:57.195Z debug frostfs-node/morph.go:229 new block {"index": 8033} -2023-12-16T14:22:58.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8033, "blockHeight": 8033, "took": "13.370906ms"} -2023-12-16T14:22:58.194Z INFO sending PrepareRequest {"height": 8034, "view": 0} -2023-12-16T14:22:58.194Z INFO sending Commit {"height": 8034, "view": 0} -2023-12-16T14:22:58.194Z INFO approving block {"height": 8034, "hash": "700e7e9a07059ddd3204d8b5da386c339481f4a12e7a0d6844b3d33cb2e8df58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "152a7412a55573564649501ee4033e03573f61599df5d069ba63d72847021cd3"} -2023-12-16T14:22:58.197Z INFO initializing dbft {"height": 8035, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:58.198Z debug frostfs-node/morph.go:229 new block {"index": 8034} -2023-12-16T14:22:59.179Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8034, "blockHeight": 8034, "took": "11.206314ms"} -2023-12-16T14:22:59.195Z INFO sending PrepareRequest {"height": 8035, "view": 0} -2023-12-16T14:22:59.196Z INFO sending Commit {"height": 8035, "view": 0} -2023-12-16T14:22:59.196Z INFO approving block {"height": 8035, "hash": "84a24a3242c577e33f3937f6634258ebefe6a3cc5991ed214b0d99c81a591aaf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "700e7e9a07059ddd3204d8b5da386c339481f4a12e7a0d6844b3d33cb2e8df58"} -2023-12-16T14:22:59.198Z INFO initializing dbft {"height": 8036, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:22:59.199Z debug frostfs-node/morph.go:229 new block {"index": 8035} -2023-12-16T14:23:00.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8035, "blockHeight": 8035, "took": "11.751774ms"} -2023-12-16T14:23:00.197Z INFO sending PrepareRequest {"height": 8036, "view": 0} -2023-12-16T14:23:00.198Z INFO sending Commit {"height": 8036, "view": 0} -2023-12-16T14:23:00.198Z INFO approving block {"height": 8036, "hash": "6c3220e0f5907e87d67832a80fdf9e97ab7794f971116573da9027f1cacb820b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84a24a3242c577e33f3937f6634258ebefe6a3cc5991ed214b0d99c81a591aaf"} -2023-12-16T14:23:00.200Z INFO initializing dbft {"height": 8037, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:00.201Z debug frostfs-node/morph.go:229 new block {"index": 8036} -2023-12-16T14:23:01.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8036, "blockHeight": 8036, "took": "10.787415ms"} -2023-12-16T14:23:01.199Z INFO sending PrepareRequest {"height": 8037, "view": 0} -2023-12-16T14:23:01.199Z INFO sending Commit {"height": 8037, "view": 0} -2023-12-16T14:23:01.200Z INFO approving block {"height": 8037, "hash": "a7ef028a8daf907bf3623e66939164c6ee66fed1abb24780d4bbf20acaef528d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c3220e0f5907e87d67832a80fdf9e97ab7794f971116573da9027f1cacb820b"} -2023-12-16T14:23:01.202Z INFO initializing dbft {"height": 8038, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:01.202Z debug frostfs-node/morph.go:229 new block {"index": 8037} -2023-12-16T14:23:02.183Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8037, "blockHeight": 8037, "took": "12.033782ms"} -2023-12-16T14:23:02.201Z INFO sending PrepareRequest {"height": 8038, "view": 0} -2023-12-16T14:23:02.202Z INFO sending Commit {"height": 8038, "view": 0} -2023-12-16T14:23:02.202Z INFO approving block {"height": 8038, "hash": "fddd113eccb594686ab43624a366d1f72534c634b8c491a0f38fa00fd65a075b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7ef028a8daf907bf3623e66939164c6ee66fed1abb24780d4bbf20acaef528d"} -2023-12-16T14:23:02.204Z INFO initializing dbft {"height": 8039, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:02.205Z debug frostfs-node/morph.go:229 new block {"index": 8038} -2023-12-16T14:23:03.194Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8038, "blockHeight": 8038, "took": "22.011704ms"} -2023-12-16T14:23:03.203Z INFO sending PrepareRequest {"height": 8039, "view": 0} -2023-12-16T14:23:03.203Z INFO sending Commit {"height": 8039, "view": 0} -2023-12-16T14:23:03.203Z INFO approving block {"height": 8039, "hash": "aef9100068d844cd5cd12661b6b922c0890aecac9bcc2bef4fb30d623e4f6dd5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fddd113eccb594686ab43624a366d1f72534c634b8c491a0f38fa00fd65a075b"} -2023-12-16T14:23:03.205Z INFO initializing dbft {"height": 8040, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:03.206Z debug frostfs-node/morph.go:229 new block {"index": 8039} -2023-12-16T14:23:04.186Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8039, "blockHeight": 8039, "took": "13.00757ms"} -2023-12-16T14:23:04.205Z INFO sending PrepareRequest {"height": 8040, "view": 0} -2023-12-16T14:23:04.205Z INFO sending Commit {"height": 8040, "view": 0} -2023-12-16T14:23:04.205Z INFO approving block {"height": 8040, "hash": "7da45b16406e881b9919bd0fcde1886780426c7da60c0653d084a9b80ed978c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aef9100068d844cd5cd12661b6b922c0890aecac9bcc2bef4fb30d623e4f6dd5"} -2023-12-16T14:23:04.208Z INFO initializing dbft {"height": 8041, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:04.209Z debug frostfs-node/morph.go:229 new block {"index": 8040} -2023-12-16T14:23:05.186Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8040, "blockHeight": 8040, "took": "12.868726ms"} -2023-12-16T14:23:05.207Z INFO sending PrepareRequest {"height": 8041, "view": 0} -2023-12-16T14:23:05.207Z INFO sending Commit {"height": 8041, "view": 0} -2023-12-16T14:23:05.207Z INFO approving block {"height": 8041, "hash": "04b50c3cf4ac2f9df87c82aafaea0265ba8739078bd7767281e91ff1b6af193d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7da45b16406e881b9919bd0fcde1886780426c7da60c0653d084a9b80ed978c7"} -2023-12-16T14:23:05.209Z INFO initializing dbft {"height": 8042, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:05.210Z debug frostfs-node/morph.go:229 new block {"index": 8041} -2023-12-16T14:23:06.189Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8041, "blockHeight": 8041, "took": "14.933316ms"} -2023-12-16T14:23:06.208Z INFO sending PrepareRequest {"height": 8042, "view": 0} -2023-12-16T14:23:06.208Z INFO sending Commit {"height": 8042, "view": 0} -2023-12-16T14:23:06.209Z INFO approving block {"height": 8042, "hash": "491aee4ad31bb5c543868a70c77dff247ae8a1592b6cc64cfdcc36d183657443", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04b50c3cf4ac2f9df87c82aafaea0265ba8739078bd7767281e91ff1b6af193d"} -2023-12-16T14:23:06.211Z INFO initializing dbft {"height": 8043, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:06.211Z debug frostfs-node/morph.go:229 new block {"index": 8042} -2023-12-16T14:23:07.188Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8042, "blockHeight": 8042, "took": "13.048411ms"} -2023-12-16T14:23:07.210Z INFO sending PrepareRequest {"height": 8043, "view": 0} -2023-12-16T14:23:07.211Z INFO sending Commit {"height": 8043, "view": 0} -2023-12-16T14:23:07.211Z INFO approving block {"height": 8043, "hash": "72fb2d00585f2b23ed9d1b6713d8b1bd4fa6ccef907185d20b74cb4537513091", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "491aee4ad31bb5c543868a70c77dff247ae8a1592b6cc64cfdcc36d183657443"} -2023-12-16T14:23:07.213Z INFO initializing dbft {"height": 8044, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:07.214Z debug frostfs-node/morph.go:229 new block {"index": 8043} -2023-12-16T14:23:08.188Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8043, "blockHeight": 8043, "took": "11.64342ms"} -2023-12-16T14:23:08.213Z INFO sending PrepareRequest {"height": 8044, "view": 0} -2023-12-16T14:23:08.213Z INFO sending Commit {"height": 8044, "view": 0} -2023-12-16T14:23:08.213Z INFO approving block {"height": 8044, "hash": "57746613f2b560912ff8cbb3c291560ea7b65255f214fb35bfb9ba40230508ce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72fb2d00585f2b23ed9d1b6713d8b1bd4fa6ccef907185d20b74cb4537513091"} -2023-12-16T14:23:08.215Z INFO initializing dbft {"height": 8045, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:08.216Z debug frostfs-node/morph.go:229 new block {"index": 8044} -2023-12-16T14:23:09.194Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8044, "blockHeight": 8044, "took": "16.512267ms"} -2023-12-16T14:23:09.214Z INFO sending PrepareRequest {"height": 8045, "view": 0} -2023-12-16T14:23:09.214Z INFO sending Commit {"height": 8045, "view": 0} -2023-12-16T14:23:09.215Z INFO approving block {"height": 8045, "hash": "a82a7ef0713240fe22458a9f075a1b08f406bbae07f0437cc31249cb34e245e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57746613f2b560912ff8cbb3c291560ea7b65255f214fb35bfb9ba40230508ce"} -2023-12-16T14:23:09.217Z INFO initializing dbft {"height": 8046, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:09.218Z debug frostfs-node/morph.go:229 new block {"index": 8045} -2023-12-16T14:23:10.191Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8045, "blockHeight": 8045, "took": "11.837017ms"} -2023-12-16T14:23:10.216Z INFO sending PrepareRequest {"height": 8046, "view": 0} -2023-12-16T14:23:10.216Z INFO sending Commit {"height": 8046, "view": 0} -2023-12-16T14:23:10.217Z INFO approving block {"height": 8046, "hash": "20b23dfb4540925a7ace9d03a32e1cf11343d23d0ef783e07f314d619cdb63e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a82a7ef0713240fe22458a9f075a1b08f406bbae07f0437cc31249cb34e245e4"} -2023-12-16T14:23:10.219Z INFO initializing dbft {"height": 8047, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:10.220Z debug frostfs-node/morph.go:229 new block {"index": 8046} -2023-12-16T14:23:11.197Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8046, "blockHeight": 8046, "took": "16.990046ms"} -2023-12-16T14:23:11.218Z INFO sending PrepareRequest {"height": 8047, "view": 0} -2023-12-16T14:23:11.219Z INFO sending Commit {"height": 8047, "view": 0} -2023-12-16T14:23:11.219Z INFO approving block {"height": 8047, "hash": "8e9eabb244533035f857964f954c08abdf18e87727a12bad6d296b17034ade81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20b23dfb4540925a7ace9d03a32e1cf11343d23d0ef783e07f314d619cdb63e0"} -2023-12-16T14:23:11.221Z INFO initializing dbft {"height": 8048, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:11.222Z debug frostfs-node/morph.go:229 new block {"index": 8047} -2023-12-16T14:23:12.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8047, "blockHeight": 8047, "took": "14.812365ms"} -2023-12-16T14:23:12.220Z INFO sending PrepareRequest {"height": 8048, "view": 0} -2023-12-16T14:23:12.220Z INFO sending Commit {"height": 8048, "view": 0} -2023-12-16T14:23:12.221Z INFO approving block {"height": 8048, "hash": "89e317b4b374513c72b14f9c5e4744dd28c4dd8602705b6dd820a27a3c965425", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e9eabb244533035f857964f954c08abdf18e87727a12bad6d296b17034ade81"} -2023-12-16T14:23:12.223Z INFO initializing dbft {"height": 8049, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:12.223Z debug frostfs-node/morph.go:229 new block {"index": 8048} -2023-12-16T14:23:13.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8048, "blockHeight": 8048, "took": "13.756483ms"} -2023-12-16T14:23:13.222Z INFO sending PrepareRequest {"height": 8049, "view": 0} -2023-12-16T14:23:13.223Z INFO sending Commit {"height": 8049, "view": 0} -2023-12-16T14:23:13.225Z INFO approving block {"height": 8049, "hash": "faf6282707f46fb305845c0a47afbc6176d539e97a605d6b744bcf0266fecd66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89e317b4b374513c72b14f9c5e4744dd28c4dd8602705b6dd820a27a3c965425"} -2023-12-16T14:23:13.228Z INFO initializing dbft {"height": 8050, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:13.229Z debug frostfs-node/morph.go:229 new block {"index": 8049} -2023-12-16T14:23:14.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8049, "blockHeight": 8049, "took": "13.621788ms"} -2023-12-16T14:23:14.225Z INFO sending PrepareRequest {"height": 8050, "view": 0} -2023-12-16T14:23:14.226Z INFO sending Commit {"height": 8050, "view": 0} -2023-12-16T14:23:14.226Z INFO approving block {"height": 8050, "hash": "1a90429e3768e5f1cd73c89c1486518bc14456fe4de0ceb762133afc15c1d961", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "faf6282707f46fb305845c0a47afbc6176d539e97a605d6b744bcf0266fecd66"} -2023-12-16T14:23:14.228Z INFO initializing dbft {"height": 8051, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:14.229Z debug frostfs-node/morph.go:229 new block {"index": 8050} -2023-12-16T14:23:14.232Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:23:14.237Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:23:14.237Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:23:15.195Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8050, "blockHeight": 8050, "took": "10.46849ms"} -2023-12-16T14:23:15.228Z INFO sending PrepareRequest {"height": 8051, "view": 0} -2023-12-16T14:23:15.228Z INFO sending Commit {"height": 8051, "view": 0} -2023-12-16T14:23:15.229Z INFO approving block {"height": 8051, "hash": "7916f0839195a34ce5230955ae5c9913ca3239db52023633b686426cb94e94e5", "tx_count": 2, "merkle": "28ed1d0627d488372a05fb612388c2083996614ddfad10b10d100775b340233c", "prev": "1a90429e3768e5f1cd73c89c1486518bc14456fe4de0ceb762133afc15c1d961"} -2023-12-16T14:23:15.230Z INFO runtime log {"tx": "7a830872e5fd748a00bac821b033ae0bf6868924962b0e9e3ad987fa590e26f5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:23:15.230Z INFO runtime log {"tx": "7a830872e5fd748a00bac821b033ae0bf6868924962b0e9e3ad987fa590e26f5", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:23:15.232Z INFO initializing dbft {"height": 8052, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:15.236Z debug frostfs-node/morph.go:229 new block {"index": 8051} -2023-12-16T14:23:16.199Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8051, "blockHeight": 8051, "took": "13.947894ms"} -2023-12-16T14:23:16.229Z INFO sending PrepareRequest {"height": 8052, "view": 0} -2023-12-16T14:23:16.229Z INFO sending Commit {"height": 8052, "view": 0} -2023-12-16T14:23:16.230Z INFO approving block {"height": 8052, "hash": "c0f6a193a146ab4047936500daf5fb44b36903b4f8499678c9e96d7e8fb9940d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7916f0839195a34ce5230955ae5c9913ca3239db52023633b686426cb94e94e5"} -2023-12-16T14:23:16.231Z INFO initializing dbft {"height": 8053, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:16.232Z debug frostfs-node/morph.go:229 new block {"index": 8052} -2023-12-16T14:23:17.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8052, "blockHeight": 8052, "took": "11.442836ms"} -2023-12-16T14:23:17.231Z INFO sending PrepareRequest {"height": 8053, "view": 0} -2023-12-16T14:23:17.232Z INFO sending Commit {"height": 8053, "view": 0} -2023-12-16T14:23:17.232Z INFO approving block {"height": 8053, "hash": "9c217d2f8c9498d5937bddada185d26b031699461c5551ffbd90b2d40c48171f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0f6a193a146ab4047936500daf5fb44b36903b4f8499678c9e96d7e8fb9940d"} -2023-12-16T14:23:17.234Z INFO initializing dbft {"height": 8054, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:17.235Z debug frostfs-node/morph.go:229 new block {"index": 8053} -2023-12-16T14:23:18.199Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8053, "blockHeight": 8053, "took": "11.445316ms"} -2023-12-16T14:23:18.234Z INFO sending PrepareRequest {"height": 8054, "view": 0} -2023-12-16T14:23:18.234Z INFO sending Commit {"height": 8054, "view": 0} -2023-12-16T14:23:18.234Z INFO approving block {"height": 8054, "hash": "3c692d3053d46a30f9c47c5963d058468bcc8ceabe1ac8e98e4444424927af9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c217d2f8c9498d5937bddada185d26b031699461c5551ffbd90b2d40c48171f"} -2023-12-16T14:23:18.236Z INFO initializing dbft {"height": 8055, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:18.237Z debug frostfs-node/morph.go:229 new block {"index": 8054} -2023-12-16T14:23:19.199Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8054, "blockHeight": 8054, "took": "11.153105ms"} -2023-12-16T14:23:19.236Z INFO sending PrepareRequest {"height": 8055, "view": 0} -2023-12-16T14:23:19.236Z INFO sending Commit {"height": 8055, "view": 0} -2023-12-16T14:23:19.237Z INFO approving block {"height": 8055, "hash": "1cabc703fc9e9f50acc80c02f0f5df0785cdbf98d02da110b589834f7ae297e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c692d3053d46a30f9c47c5963d058468bcc8ceabe1ac8e98e4444424927af9a"} -2023-12-16T14:23:19.238Z INFO initializing dbft {"height": 8056, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:19.239Z debug frostfs-node/morph.go:229 new block {"index": 8055} -2023-12-16T14:23:20.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8055, "blockHeight": 8055, "took": "14.069513ms"} -2023-12-16T14:23:20.238Z INFO sending PrepareRequest {"height": 8056, "view": 0} -2023-12-16T14:23:20.238Z INFO sending Commit {"height": 8056, "view": 0} -2023-12-16T14:23:20.239Z INFO approving block {"height": 8056, "hash": "d08b034991d38c70f835c077478d333fc7a686c6b9c91c038941bf3cd33f6d5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cabc703fc9e9f50acc80c02f0f5df0785cdbf98d02da110b589834f7ae297e8"} -2023-12-16T14:23:20.240Z INFO initializing dbft {"height": 8057, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:20.241Z debug frostfs-node/morph.go:229 new block {"index": 8056} -2023-12-16T14:23:21.204Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8056, "blockHeight": 8056, "took": "13.716162ms"} -2023-12-16T14:23:21.239Z INFO sending PrepareRequest {"height": 8057, "view": 0} -2023-12-16T14:23:21.240Z INFO sending Commit {"height": 8057, "view": 0} -2023-12-16T14:23:21.240Z INFO approving block {"height": 8057, "hash": "f801b6e9e177530ffccff55beb13b9bb3d3ecc691d22349ba2cebe9b9c48e331", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d08b034991d38c70f835c077478d333fc7a686c6b9c91c038941bf3cd33f6d5e"} -2023-12-16T14:23:21.242Z INFO initializing dbft {"height": 8058, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:21.243Z debug frostfs-node/morph.go:229 new block {"index": 8057} -2023-12-16T14:23:22.202Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8057, "blockHeight": 8057, "took": "11.566507ms"} -2023-12-16T14:23:22.241Z INFO sending PrepareRequest {"height": 8058, "view": 0} -2023-12-16T14:23:22.241Z INFO sending Commit {"height": 8058, "view": 0} -2023-12-16T14:23:22.242Z INFO approving block {"height": 8058, "hash": "92619bbbfbe08262cc186100677c2f176f14fd5b8eeeb245425d886c2f6df34b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f801b6e9e177530ffccff55beb13b9bb3d3ecc691d22349ba2cebe9b9c48e331"} -2023-12-16T14:23:22.244Z INFO initializing dbft {"height": 8059, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:22.245Z debug frostfs-node/morph.go:229 new block {"index": 8058} -2023-12-16T14:23:23.204Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8058, "blockHeight": 8058, "took": "11.923918ms"} -2023-12-16T14:23:23.243Z INFO sending PrepareRequest {"height": 8059, "view": 0} -2023-12-16T14:23:23.243Z INFO sending Commit {"height": 8059, "view": 0} -2023-12-16T14:23:23.243Z INFO approving block {"height": 8059, "hash": "71a81638c86becc17b18c6cf75612f6b46994572ccce91acb75b6f0587e498b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92619bbbfbe08262cc186100677c2f176f14fd5b8eeeb245425d886c2f6df34b"} -2023-12-16T14:23:23.245Z INFO initializing dbft {"height": 8060, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:23.246Z debug frostfs-node/morph.go:229 new block {"index": 8059} -2023-12-16T14:23:24.204Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8059, "blockHeight": 8059, "took": "11.709133ms"} -2023-12-16T14:23:24.245Z INFO sending PrepareRequest {"height": 8060, "view": 0} -2023-12-16T14:23:24.246Z INFO sending Commit {"height": 8060, "view": 0} -2023-12-16T14:23:24.246Z INFO approving block {"height": 8060, "hash": "b54b1c88c3f5a137d40c039418a7b832d8c8148d0b8b53fd3f7dc5b4633c28e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71a81638c86becc17b18c6cf75612f6b46994572ccce91acb75b6f0587e498b4"} -2023-12-16T14:23:24.248Z INFO initializing dbft {"height": 8061, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:24.248Z debug frostfs-node/morph.go:229 new block {"index": 8060} -2023-12-16T14:23:25.206Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8060, "blockHeight": 8060, "took": "12.536667ms"} -2023-12-16T14:23:25.247Z INFO sending PrepareRequest {"height": 8061, "view": 0} -2023-12-16T14:23:25.247Z INFO sending Commit {"height": 8061, "view": 0} -2023-12-16T14:23:25.247Z INFO approving block {"height": 8061, "hash": "47359af7560e464257d49d23787688140b9e4f819aeba0af8d544a802c39817b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b54b1c88c3f5a137d40c039418a7b832d8c8148d0b8b53fd3f7dc5b4633c28e3"} -2023-12-16T14:23:25.249Z INFO initializing dbft {"height": 8062, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:25.250Z debug frostfs-node/morph.go:229 new block {"index": 8061} -2023-12-16T14:23:26.205Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8061, "blockHeight": 8061, "took": "11.097244ms"} -2023-12-16T14:23:26.248Z INFO sending PrepareRequest {"height": 8062, "view": 0} -2023-12-16T14:23:26.248Z INFO sending Commit {"height": 8062, "view": 0} -2023-12-16T14:23:26.249Z INFO approving block {"height": 8062, "hash": "2414db9b93cf4ce0b27a6f395c3d2a17fa406a80ed8b366fa9698083f9a241c1", "tx_count": 1, "merkle": "1451d30f4b2a2f928a9f2e961406841138c74252b802c5bc60b39d91573eaf9e", "prev": "47359af7560e464257d49d23787688140b9e4f819aeba0af8d544a802c39817b"} -2023-12-16T14:23:26.250Z INFO initializing dbft {"height": 8063, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:26.253Z debug frostfs-node/morph.go:229 new block {"index": 8062} -2023-12-16T14:23:26.261Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-16T14:23:27.213Z INFO persisted to disk {"blocks": 1, "keys": 44, "headerHeight": 8062, "blockHeight": 8062, "took": "17.386277ms"} -2023-12-16T14:23:27.250Z INFO sending PrepareRequest {"height": 8063, "view": 0} -2023-12-16T14:23:27.250Z INFO sending Commit {"height": 8063, "view": 0} -2023-12-16T14:23:27.252Z INFO approving block {"height": 8063, "hash": "c9adfb66ad473cace17d802f29bdce54589033b6864db642f39a5bbf4c08c49a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2414db9b93cf4ce0b27a6f395c3d2a17fa406a80ed8b366fa9698083f9a241c1"} -2023-12-16T14:23:27.254Z INFO initializing dbft {"height": 8064, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:27.254Z debug frostfs-node/morph.go:229 new block {"index": 8063} -2023-12-16T14:23:28.211Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8063, "blockHeight": 8063, "took": "14.336498ms"} -2023-12-16T14:23:28.253Z INFO sending PrepareRequest {"height": 8064, "view": 0} -2023-12-16T14:23:28.253Z INFO sending Commit {"height": 8064, "view": 0} -2023-12-16T14:23:28.254Z INFO approving block {"height": 8064, "hash": "e7554ade1145db9d9e641997521752aefa074f564fdb51823c018c0905dace40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9adfb66ad473cace17d802f29bdce54589033b6864db642f39a5bbf4c08c49a"} -2023-12-16T14:23:28.255Z INFO initializing dbft {"height": 8065, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:28.256Z debug frostfs-node/morph.go:229 new block {"index": 8064} -2023-12-16T14:23:29.210Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8064, "blockHeight": 8064, "took": "12.515055ms"} -2023-12-16T14:23:29.255Z INFO sending PrepareRequest {"height": 8065, "view": 0} -2023-12-16T14:23:29.255Z INFO sending Commit {"height": 8065, "view": 0} -2023-12-16T14:23:29.256Z INFO approving block {"height": 8065, "hash": "a2854a0a2177095c275717fa8698baa911fa9b24581815d14f72e7f401b29aaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7554ade1145db9d9e641997521752aefa074f564fdb51823c018c0905dace40"} -2023-12-16T14:23:29.258Z INFO initializing dbft {"height": 8066, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:29.258Z debug frostfs-node/morph.go:229 new block {"index": 8065} -2023-12-16T14:23:30.210Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8065, "blockHeight": 8065, "took": "11.160016ms"} -2023-12-16T14:23:30.258Z INFO sending PrepareRequest {"height": 8066, "view": 0} -2023-12-16T14:23:30.258Z INFO sending Commit {"height": 8066, "view": 0} -2023-12-16T14:23:30.258Z INFO approving block {"height": 8066, "hash": "a52875744f4e06987a40bc05ec34d7ecd3dfef4d2d2b6ec433f74e0e9c795266", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2854a0a2177095c275717fa8698baa911fa9b24581815d14f72e7f401b29aaa"} -2023-12-16T14:23:30.260Z INFO initializing dbft {"height": 8067, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:30.260Z debug frostfs-node/morph.go:229 new block {"index": 8066} -2023-12-16T14:23:31.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8066, "blockHeight": 8066, "took": "16.155798ms"} -2023-12-16T14:23:31.260Z INFO sending PrepareRequest {"height": 8067, "view": 0} -2023-12-16T14:23:31.261Z INFO sending Commit {"height": 8067, "view": 0} -2023-12-16T14:23:31.261Z INFO approving block {"height": 8067, "hash": "aa7359ff24b14b64f005c315eaa37e1e24967e14f71d6c94655bb8b7cb93a7de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a52875744f4e06987a40bc05ec34d7ecd3dfef4d2d2b6ec433f74e0e9c795266"} -2023-12-16T14:23:31.263Z INFO initializing dbft {"height": 8068, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:31.264Z debug frostfs-node/morph.go:229 new block {"index": 8067} -2023-12-16T14:23:32.211Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8067, "blockHeight": 8067, "took": "9.665933ms"} -2023-12-16T14:23:32.263Z INFO sending PrepareRequest {"height": 8068, "view": 0} -2023-12-16T14:23:32.263Z INFO sending Commit {"height": 8068, "view": 0} -2023-12-16T14:23:32.263Z INFO approving block {"height": 8068, "hash": "c26aec198f744473e9a0132458c96b5354773a64153102a03e5e4261c116a03b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa7359ff24b14b64f005c315eaa37e1e24967e14f71d6c94655bb8b7cb93a7de"} -2023-12-16T14:23:32.265Z INFO initializing dbft {"height": 8069, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:32.266Z debug frostfs-node/morph.go:229 new block {"index": 8068} -2023-12-16T14:23:33.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8068, "blockHeight": 8068, "took": "11.64088ms"} -2023-12-16T14:23:33.265Z INFO sending PrepareRequest {"height": 8069, "view": 0} -2023-12-16T14:23:33.265Z INFO sending Commit {"height": 8069, "view": 0} -2023-12-16T14:23:33.265Z INFO approving block {"height": 8069, "hash": "8230dbf34a7c2b87f1184a1dbb25e7a04caa5a05a832d965c88245df3fc00eca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c26aec198f744473e9a0132458c96b5354773a64153102a03e5e4261c116a03b"} -2023-12-16T14:23:33.267Z INFO initializing dbft {"height": 8070, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:33.268Z debug frostfs-node/morph.go:229 new block {"index": 8069} -2023-12-16T14:23:34.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8069, "blockHeight": 8069, "took": "9.878458ms"} -2023-12-16T14:23:34.268Z INFO sending PrepareRequest {"height": 8070, "view": 0} -2023-12-16T14:23:34.268Z INFO sending Commit {"height": 8070, "view": 0} -2023-12-16T14:23:34.268Z INFO approving block {"height": 8070, "hash": "06b9fde3fb8a12d1ea08ae2a712212ec480d4ea39003ff35bdfc87b218a48338", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8230dbf34a7c2b87f1184a1dbb25e7a04caa5a05a832d965c88245df3fc00eca"} -2023-12-16T14:23:34.270Z INFO initializing dbft {"height": 8071, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:34.271Z debug frostfs-node/morph.go:229 new block {"index": 8070} -2023-12-16T14:23:35.212Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8070, "blockHeight": 8070, "took": "8.448647ms"} -2023-12-16T14:23:35.270Z INFO sending PrepareRequest {"height": 8071, "view": 0} -2023-12-16T14:23:35.270Z INFO sending Commit {"height": 8071, "view": 0} -2023-12-16T14:23:35.270Z INFO approving block {"height": 8071, "hash": "113e4992565711fd915d000c4690d62146e963037ee5ded959db82a574b39968", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06b9fde3fb8a12d1ea08ae2a712212ec480d4ea39003ff35bdfc87b218a48338"} -2023-12-16T14:23:35.272Z INFO initializing dbft {"height": 8072, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:35.273Z debug frostfs-node/morph.go:229 new block {"index": 8071} -2023-12-16T14:23:35.278Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 34, "iteration": 1, "error": "no data for 0 iteration in 34 epoch for consumers's trusts"} -2023-12-16T14:23:36.214Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8071, "blockHeight": 8071, "took": "10.289196ms"} -2023-12-16T14:23:36.272Z INFO sending PrepareRequest {"height": 8072, "view": 0} -2023-12-16T14:23:36.272Z INFO sending Commit {"height": 8072, "view": 0} -2023-12-16T14:23:36.272Z INFO approving block {"height": 8072, "hash": "00f1f461aba75b9b6717cb113e7cbb61d81a5740b110bd538fffd8276afc9e3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "113e4992565711fd915d000c4690d62146e963037ee5ded959db82a574b39968"} -2023-12-16T14:23:36.274Z INFO initializing dbft {"height": 8073, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:36.275Z debug frostfs-node/morph.go:229 new block {"index": 8072} -2023-12-16T14:23:36.282Z info settlement/calls.go:61 start basic income collection {"epoch": 34} -2023-12-16T14:23:37.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8072, "blockHeight": 8072, "took": "12.709612ms"} -2023-12-16T14:23:37.274Z INFO sending PrepareRequest {"height": 8073, "view": 0} -2023-12-16T14:23:37.274Z INFO sending Commit {"height": 8073, "view": 0} -2023-12-16T14:23:37.275Z INFO approving block {"height": 8073, "hash": "a738bdb859950e43bf2fdd4d5a91c82ad3f911434c4183f220ef663d1eff4076", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00f1f461aba75b9b6717cb113e7cbb61d81a5740b110bd538fffd8276afc9e3c"} -2023-12-16T14:23:37.276Z INFO initializing dbft {"height": 8074, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:37.277Z debug frostfs-node/morph.go:229 new block {"index": 8073} -2023-12-16T14:23:38.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8073, "blockHeight": 8073, "took": "11.9574ms"} -2023-12-16T14:23:38.276Z INFO sending PrepareRequest {"height": 8074, "view": 0} -2023-12-16T14:23:38.276Z INFO sending Commit {"height": 8074, "view": 0} -2023-12-16T14:23:38.276Z INFO approving block {"height": 8074, "hash": "acfab9daeb38fa3409ba4f536dd775dcd9aabb47ceec122343efd9015675d298", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a738bdb859950e43bf2fdd4d5a91c82ad3f911434c4183f220ef663d1eff4076"} -2023-12-16T14:23:38.277Z INFO initializing dbft {"height": 8075, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:38.278Z debug frostfs-node/morph.go:229 new block {"index": 8074} -2023-12-16T14:23:39.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8074, "blockHeight": 8074, "took": "11.819395ms"} -2023-12-16T14:23:39.278Z INFO sending PrepareRequest {"height": 8075, "view": 0} -2023-12-16T14:23:39.278Z INFO sending Commit {"height": 8075, "view": 0} -2023-12-16T14:23:39.278Z INFO approving block {"height": 8075, "hash": "fa3a5761676f0cbb405259557c6c456ae83d2390f32d97c327ec58a0a5f8366c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acfab9daeb38fa3409ba4f536dd775dcd9aabb47ceec122343efd9015675d298"} -2023-12-16T14:23:39.280Z INFO initializing dbft {"height": 8076, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:39.281Z debug frostfs-node/morph.go:229 new block {"index": 8075} -2023-12-16T14:23:40.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8075, "blockHeight": 8075, "took": "11.391693ms"} -2023-12-16T14:23:40.280Z INFO sending PrepareRequest {"height": 8076, "view": 0} -2023-12-16T14:23:40.280Z INFO sending Commit {"height": 8076, "view": 0} -2023-12-16T14:23:40.280Z INFO approving block {"height": 8076, "hash": "f9baca6ee955f49d53dfaf955c85967ba6602cf04e538594ab4c25215f4f50a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa3a5761676f0cbb405259557c6c456ae83d2390f32d97c327ec58a0a5f8366c"} -2023-12-16T14:23:40.282Z INFO initializing dbft {"height": 8077, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:40.282Z debug frostfs-node/morph.go:229 new block {"index": 8076} -2023-12-16T14:23:41.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8076, "blockHeight": 8076, "took": "12.369249ms"} -2023-12-16T14:23:41.281Z INFO sending PrepareRequest {"height": 8077, "view": 0} -2023-12-16T14:23:41.282Z INFO sending Commit {"height": 8077, "view": 0} -2023-12-16T14:23:41.282Z INFO approving block {"height": 8077, "hash": "0d7dee9823b324110a18cc16a0b0cda71aa6c692a4dd3cf3045d5f66cfb8c6b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9baca6ee955f49d53dfaf955c85967ba6602cf04e538594ab4c25215f4f50a2"} -2023-12-16T14:23:41.283Z INFO initializing dbft {"height": 8078, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:41.285Z debug frostfs-node/morph.go:229 new block {"index": 8077} -2023-12-16T14:23:42.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8077, "blockHeight": 8077, "took": "9.998671ms"} -2023-12-16T14:23:42.283Z INFO sending PrepareRequest {"height": 8078, "view": 0} -2023-12-16T14:23:42.284Z INFO sending Commit {"height": 8078, "view": 0} -2023-12-16T14:23:42.284Z INFO approving block {"height": 8078, "hash": "24ffa9aa421acbe26ab905031a58398f06fef145a6a823acbd7968a987d39657", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d7dee9823b324110a18cc16a0b0cda71aa6c692a4dd3cf3045d5f66cfb8c6b5"} -2023-12-16T14:23:42.285Z INFO initializing dbft {"height": 8079, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:42.287Z debug frostfs-node/morph.go:229 new block {"index": 8078} -2023-12-16T14:23:43.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8078, "blockHeight": 8078, "took": "10.641493ms"} -2023-12-16T14:23:43.286Z INFO sending PrepareRequest {"height": 8079, "view": 0} -2023-12-16T14:23:43.286Z INFO sending Commit {"height": 8079, "view": 0} -2023-12-16T14:23:43.287Z INFO approving block {"height": 8079, "hash": "37bec715999f8eb505057eff2518a4cfd079e34c20bd8116b8f47636eb62cf82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24ffa9aa421acbe26ab905031a58398f06fef145a6a823acbd7968a987d39657"} -2023-12-16T14:23:43.288Z INFO initializing dbft {"height": 8080, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:43.289Z debug frostfs-node/morph.go:229 new block {"index": 8079} -2023-12-16T14:23:44.224Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8079, "blockHeight": 8079, "took": "14.496754ms"} -2023-12-16T14:23:44.287Z INFO sending PrepareRequest {"height": 8080, "view": 0} -2023-12-16T14:23:44.288Z INFO sending Commit {"height": 8080, "view": 0} -2023-12-16T14:23:44.288Z INFO approving block {"height": 8080, "hash": "c9c5d62be8793576e6b1b6331a12b288f0da532c40a757a0b51fac43c9db6fc2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37bec715999f8eb505057eff2518a4cfd079e34c20bd8116b8f47636eb62cf82"} -2023-12-16T14:23:44.289Z INFO initializing dbft {"height": 8081, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:44.290Z debug frostfs-node/morph.go:229 new block {"index": 8080} -2023-12-16T14:23:45.224Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8080, "blockHeight": 8080, "took": "13.074382ms"} -2023-12-16T14:23:45.289Z INFO sending PrepareRequest {"height": 8081, "view": 0} -2023-12-16T14:23:45.290Z INFO sending Commit {"height": 8081, "view": 0} -2023-12-16T14:23:45.290Z INFO approving block {"height": 8081, "hash": "50cf5df2599e1d008551f74e57cb429ee019472b046eb35deabcbabd0516a833", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9c5d62be8793576e6b1b6331a12b288f0da532c40a757a0b51fac43c9db6fc2"} -2023-12-16T14:23:45.292Z INFO initializing dbft {"height": 8082, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:45.292Z debug frostfs-node/morph.go:229 new block {"index": 8081} -2023-12-16T14:23:46.224Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8081, "blockHeight": 8081, "took": "11.899989ms"} -2023-12-16T14:23:46.292Z INFO sending PrepareRequest {"height": 8082, "view": 0} -2023-12-16T14:23:46.292Z INFO sending Commit {"height": 8082, "view": 0} -2023-12-16T14:23:46.292Z INFO approving block {"height": 8082, "hash": "fd68fcb6b90e7a1dab651e4b643f66b7f0f0a7ffcab09d5a9d43a3ccf46a31a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50cf5df2599e1d008551f74e57cb429ee019472b046eb35deabcbabd0516a833"} -2023-12-16T14:23:46.294Z INFO initializing dbft {"height": 8083, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:46.295Z debug frostfs-node/morph.go:229 new block {"index": 8082} -2023-12-16T14:23:47.225Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8082, "blockHeight": 8082, "took": "11.934577ms"} -2023-12-16T14:23:47.293Z INFO sending PrepareRequest {"height": 8083, "view": 0} -2023-12-16T14:23:47.293Z INFO sending Commit {"height": 8083, "view": 0} -2023-12-16T14:23:47.294Z INFO approving block {"height": 8083, "hash": "e85af814bccbdc91873d374bd6266e73f90a19bfe6198c2259af0223a694ec7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd68fcb6b90e7a1dab651e4b643f66b7f0f0a7ffcab09d5a9d43a3ccf46a31a4"} -2023-12-16T14:23:47.295Z INFO initializing dbft {"height": 8084, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:47.296Z debug frostfs-node/morph.go:229 new block {"index": 8083} -2023-12-16T14:23:48.224Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8083, "blockHeight": 8083, "took": "10.825442ms"} -2023-12-16T14:23:48.295Z INFO sending PrepareRequest {"height": 8084, "view": 0} -2023-12-16T14:23:48.295Z INFO sending Commit {"height": 8084, "view": 0} -2023-12-16T14:23:48.296Z INFO approving block {"height": 8084, "hash": "9d0f592f0f8b3b0718042237d8bf24d93229a44a906290a27c9990d919dcd1a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e85af814bccbdc91873d374bd6266e73f90a19bfe6198c2259af0223a694ec7c"} -2023-12-16T14:23:48.297Z INFO initializing dbft {"height": 8085, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:48.298Z debug frostfs-node/morph.go:229 new block {"index": 8084} -2023-12-16T14:23:49.225Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8084, "blockHeight": 8084, "took": "11.138412ms"} -2023-12-16T14:23:49.296Z INFO sending PrepareRequest {"height": 8085, "view": 0} -2023-12-16T14:23:49.297Z INFO sending Commit {"height": 8085, "view": 0} -2023-12-16T14:23:49.297Z INFO approving block {"height": 8085, "hash": "169edffd2def14504758ae4835792d6cda443f787e42723eac1312553be3a1ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d0f592f0f8b3b0718042237d8bf24d93229a44a906290a27c9990d919dcd1a2"} -2023-12-16T14:23:49.300Z INFO initializing dbft {"height": 8086, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:49.300Z debug frostfs-node/morph.go:229 new block {"index": 8085} -2023-12-16T14:23:50.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8085, "blockHeight": 8085, "took": "15.29497ms"} -2023-12-16T14:23:50.299Z INFO sending PrepareRequest {"height": 8086, "view": 0} -2023-12-16T14:23:50.299Z INFO sending Commit {"height": 8086, "view": 0} -2023-12-16T14:23:50.299Z INFO approving block {"height": 8086, "hash": "5fc749ccbb311f77ed678174202457b7e6cf8a2e75f4fc0d8e06d008b13d09f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "169edffd2def14504758ae4835792d6cda443f787e42723eac1312553be3a1ef"} -2023-12-16T14:23:50.301Z INFO initializing dbft {"height": 8087, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:50.301Z debug frostfs-node/morph.go:229 new block {"index": 8086} -2023-12-16T14:23:51.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8086, "blockHeight": 8086, "took": "12.843721ms"} -2023-12-16T14:23:51.301Z INFO sending PrepareRequest {"height": 8087, "view": 0} -2023-12-16T14:23:51.301Z INFO sending Commit {"height": 8087, "view": 0} -2023-12-16T14:23:51.302Z INFO approving block {"height": 8087, "hash": "f4c674923c0f4f9f2765849ddfbb0870f6fdd6d621a4a70eddb3931fd29086bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5fc749ccbb311f77ed678174202457b7e6cf8a2e75f4fc0d8e06d008b13d09f7"} -2023-12-16T14:23:51.304Z INFO initializing dbft {"height": 8088, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:51.304Z debug frostfs-node/morph.go:229 new block {"index": 8087} -2023-12-16T14:23:52.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8087, "blockHeight": 8087, "took": "12.13604ms"} -2023-12-16T14:23:52.303Z INFO sending PrepareRequest {"height": 8088, "view": 0} -2023-12-16T14:23:52.304Z INFO sending Commit {"height": 8088, "view": 0} -2023-12-16T14:23:52.304Z INFO approving block {"height": 8088, "hash": "de13f078085fceb3c6db0f7ab756be1c9876c393f84cc4b415be32225fa08c70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4c674923c0f4f9f2765849ddfbb0870f6fdd6d621a4a70eddb3931fd29086bc"} -2023-12-16T14:23:52.305Z INFO initializing dbft {"height": 8089, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:52.306Z debug frostfs-node/morph.go:229 new block {"index": 8088} -2023-12-16T14:23:53.232Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8088, "blockHeight": 8088, "took": "15.364953ms"} -2023-12-16T14:23:53.305Z INFO sending PrepareRequest {"height": 8089, "view": 0} -2023-12-16T14:23:53.306Z INFO sending Commit {"height": 8089, "view": 0} -2023-12-16T14:23:53.306Z INFO approving block {"height": 8089, "hash": "cf090660eeb7c897b8f0911d0497b0cd18a7d303efb4d3c92c927fefa796f5bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de13f078085fceb3c6db0f7ab756be1c9876c393f84cc4b415be32225fa08c70"} -2023-12-16T14:23:53.308Z INFO initializing dbft {"height": 8090, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:53.309Z debug frostfs-node/morph.go:229 new block {"index": 8089} -2023-12-16T14:23:54.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8089, "blockHeight": 8089, "took": "16.649108ms"} -2023-12-16T14:23:54.307Z INFO sending PrepareRequest {"height": 8090, "view": 0} -2023-12-16T14:23:54.307Z INFO sending Commit {"height": 8090, "view": 0} -2023-12-16T14:23:54.307Z INFO approving block {"height": 8090, "hash": "df6992691f09ef314652fab1f46540c0ade1a3a08352945fc11716de7ca24c33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf090660eeb7c897b8f0911d0497b0cd18a7d303efb4d3c92c927fefa796f5bf"} -2023-12-16T14:23:54.309Z INFO initializing dbft {"height": 8091, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:54.310Z debug frostfs-node/morph.go:229 new block {"index": 8090} -2023-12-16T14:23:55.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8090, "blockHeight": 8090, "took": "10.659404ms"} -2023-12-16T14:23:55.309Z INFO sending PrepareRequest {"height": 8091, "view": 0} -2023-12-16T14:23:55.309Z INFO sending Commit {"height": 8091, "view": 0} -2023-12-16T14:23:55.309Z INFO approving block {"height": 8091, "hash": "1a6beda0a093e12a69a06b00f53bc7279e1bae758fd94d5bab77b76ac2553e59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df6992691f09ef314652fab1f46540c0ade1a3a08352945fc11716de7ca24c33"} -2023-12-16T14:23:55.311Z INFO initializing dbft {"height": 8092, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:55.312Z debug frostfs-node/morph.go:229 new block {"index": 8091} -2023-12-16T14:23:56.231Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8091, "blockHeight": 8091, "took": "10.965261ms"} -2023-12-16T14:23:56.310Z INFO sending PrepareRequest {"height": 8092, "view": 0} -2023-12-16T14:23:56.310Z INFO sending Commit {"height": 8092, "view": 0} -2023-12-16T14:23:56.311Z INFO approving block {"height": 8092, "hash": "258a0d408fef36c4679286d70330e2a24bd6725508842bfad746ce46f50bb5bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a6beda0a093e12a69a06b00f53bc7279e1bae758fd94d5bab77b76ac2553e59"} -2023-12-16T14:23:56.313Z INFO initializing dbft {"height": 8093, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:56.315Z debug frostfs-node/morph.go:229 new block {"index": 8092} -2023-12-16T14:23:57.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8092, "blockHeight": 8092, "took": "14.035897ms"} -2023-12-16T14:23:57.313Z INFO sending PrepareRequest {"height": 8093, "view": 0} -2023-12-16T14:23:57.313Z INFO sending Commit {"height": 8093, "view": 0} -2023-12-16T14:23:57.313Z INFO approving block {"height": 8093, "hash": "e564fb98af0894e38a3e33aa2586c645f984ba07507f96616b5b44525f1bc8c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "258a0d408fef36c4679286d70330e2a24bd6725508842bfad746ce46f50bb5bb"} -2023-12-16T14:23:57.315Z INFO initializing dbft {"height": 8094, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:57.316Z debug frostfs-node/morph.go:229 new block {"index": 8093} -2023-12-16T14:23:58.232Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8093, "blockHeight": 8093, "took": "9.088285ms"} -2023-12-16T14:23:58.315Z INFO sending PrepareRequest {"height": 8094, "view": 0} -2023-12-16T14:23:58.315Z INFO sending Commit {"height": 8094, "view": 0} -2023-12-16T14:23:58.315Z INFO approving block {"height": 8094, "hash": "7e1280989be4c339d82ec3d9798de237e5a653fba39d0fa236c7ff1d6bede8e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e564fb98af0894e38a3e33aa2586c645f984ba07507f96616b5b44525f1bc8c9"} -2023-12-16T14:23:58.317Z INFO initializing dbft {"height": 8095, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:58.318Z debug frostfs-node/morph.go:229 new block {"index": 8094} -2023-12-16T14:23:59.235Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8094, "blockHeight": 8094, "took": "11.590019ms"} -2023-12-16T14:23:59.317Z INFO sending PrepareRequest {"height": 8095, "view": 0} -2023-12-16T14:23:59.317Z INFO sending Commit {"height": 8095, "view": 0} -2023-12-16T14:23:59.318Z INFO approving block {"height": 8095, "hash": "10b1dfa0d351f936ca16446fbca26de4753d3ee8edea8254bd3c68d45c18ece2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e1280989be4c339d82ec3d9798de237e5a653fba39d0fa236c7ff1d6bede8e9"} -2023-12-16T14:23:59.319Z INFO initializing dbft {"height": 8096, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:23:59.320Z debug frostfs-node/morph.go:229 new block {"index": 8095} -2023-12-16T14:24:00.238Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8095, "blockHeight": 8095, "took": "13.233974ms"} -2023-12-16T14:24:00.319Z INFO sending PrepareRequest {"height": 8096, "view": 0} -2023-12-16T14:24:00.320Z INFO sending Commit {"height": 8096, "view": 0} -2023-12-16T14:24:00.320Z INFO approving block {"height": 8096, "hash": "2ca1cbe021e53871de583ba445d642ae2e14544470fe247c285c50fb98769949", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10b1dfa0d351f936ca16446fbca26de4753d3ee8edea8254bd3c68d45c18ece2"} -2023-12-16T14:24:00.322Z INFO initializing dbft {"height": 8097, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:00.322Z debug frostfs-node/morph.go:229 new block {"index": 8096} -2023-12-16T14:24:01.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8096, "blockHeight": 8096, "took": "11.099933ms"} -2023-12-16T14:24:01.321Z INFO sending PrepareRequest {"height": 8097, "view": 0} -2023-12-16T14:24:01.321Z INFO sending Commit {"height": 8097, "view": 0} -2023-12-16T14:24:01.322Z INFO approving block {"height": 8097, "hash": "94797728b3f75ca297739b57e36ae5f1c0b65ead7a377c251762714213827c51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ca1cbe021e53871de583ba445d642ae2e14544470fe247c285c50fb98769949"} -2023-12-16T14:24:01.323Z INFO initializing dbft {"height": 8098, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:01.323Z debug frostfs-node/morph.go:229 new block {"index": 8097} -2023-12-16T14:24:02.241Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8097, "blockHeight": 8097, "took": "15.252235ms"} -2023-12-16T14:24:02.323Z INFO sending PrepareRequest {"height": 8098, "view": 0} -2023-12-16T14:24:02.323Z INFO sending Commit {"height": 8098, "view": 0} -2023-12-16T14:24:02.323Z INFO approving block {"height": 8098, "hash": "406b09342759dc5bb60e94e6a25232aaba621cee7c2e63a7db82f9b63f0372bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94797728b3f75ca297739b57e36ae5f1c0b65ead7a377c251762714213827c51"} -2023-12-16T14:24:02.325Z INFO initializing dbft {"height": 8099, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:02.326Z debug frostfs-node/morph.go:229 new block {"index": 8098} -2023-12-16T14:24:03.239Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8098, "blockHeight": 8098, "took": "12.619391ms"} -2023-12-16T14:24:03.325Z INFO sending PrepareRequest {"height": 8099, "view": 0} -2023-12-16T14:24:03.325Z INFO sending Commit {"height": 8099, "view": 0} -2023-12-16T14:24:03.326Z INFO approving block {"height": 8099, "hash": "34d7d280e5f21aa8d91deec86d00e2e298e87011ef5363f2f19fd1b504beb59a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "406b09342759dc5bb60e94e6a25232aaba621cee7c2e63a7db82f9b63f0372bd"} -2023-12-16T14:24:03.327Z INFO initializing dbft {"height": 8100, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:03.328Z debug frostfs-node/morph.go:229 new block {"index": 8099} -2023-12-16T14:24:04.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8099, "blockHeight": 8099, "took": "14.813007ms"} -2023-12-16T14:24:04.327Z INFO sending PrepareRequest {"height": 8100, "view": 0} -2023-12-16T14:24:04.327Z INFO sending Commit {"height": 8100, "view": 0} -2023-12-16T14:24:04.327Z INFO approving block {"height": 8100, "hash": "b1a68150d4ec697961c8ca8e5ee861913c026df9e110b8ca70861f9a3acbc05b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34d7d280e5f21aa8d91deec86d00e2e298e87011ef5363f2f19fd1b504beb59a"} -2023-12-16T14:24:04.329Z INFO initializing dbft {"height": 8101, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:04.330Z debug frostfs-node/morph.go:229 new block {"index": 8100} -2023-12-16T14:24:04.334Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:24:04.339Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:24:04.339Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:24:05.241Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8100, "blockHeight": 8100, "took": "12.570617ms"} -2023-12-16T14:24:05.329Z INFO sending PrepareRequest {"height": 8101, "view": 0} -2023-12-16T14:24:05.329Z INFO sending Commit {"height": 8101, "view": 0} -2023-12-16T14:24:05.329Z INFO approving block {"height": 8101, "hash": "cc87807d5341f674f15132b4f71723775c24dabfe1db07444af15eb96d93d305", "tx_count": 2, "merkle": "db0c29e9dd36dee86fcb7e529d7d608f8fd5f30186c6c64769ba130e17588c56", "prev": "b1a68150d4ec697961c8ca8e5ee861913c026df9e110b8ca70861f9a3acbc05b"} -2023-12-16T14:24:05.330Z INFO runtime log {"tx": "0c4c2e5430927113c8d0d34a2d83b713b91632d57c8f73a54b25938100bb1067", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:24:05.331Z INFO runtime log {"tx": "0c4c2e5430927113c8d0d34a2d83b713b91632d57c8f73a54b25938100bb1067", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:24:05.332Z INFO initializing dbft {"height": 8102, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:05.333Z debug frostfs-node/morph.go:229 new block {"index": 8101} -2023-12-16T14:24:06.244Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8101, "blockHeight": 8101, "took": "14.288482ms"} -2023-12-16T14:24:06.330Z INFO sending PrepareRequest {"height": 8102, "view": 0} -2023-12-16T14:24:06.331Z INFO sending Commit {"height": 8102, "view": 0} -2023-12-16T14:24:06.331Z INFO approving block {"height": 8102, "hash": "8a2f1ceec7201ae5c106a3a8b8d5de6fd6805aae35e74dabaed43c46f2750c44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc87807d5341f674f15132b4f71723775c24dabfe1db07444af15eb96d93d305"} -2023-12-16T14:24:06.333Z INFO initializing dbft {"height": 8103, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:06.334Z debug frostfs-node/morph.go:229 new block {"index": 8102} -2023-12-16T14:24:07.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8102, "blockHeight": 8102, "took": "9.69939ms"} -2023-12-16T14:24:07.333Z INFO sending PrepareRequest {"height": 8103, "view": 0} -2023-12-16T14:24:07.333Z INFO sending Commit {"height": 8103, "view": 0} -2023-12-16T14:24:07.333Z INFO approving block {"height": 8103, "hash": "9ca7ba700c513d3a1b9c19bf3b9cfc93dab4d51f88c9cfd4bfe6a7cd0928bbcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a2f1ceec7201ae5c106a3a8b8d5de6fd6805aae35e74dabaed43c46f2750c44"} -2023-12-16T14:24:07.334Z INFO initializing dbft {"height": 8104, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:07.335Z debug frostfs-node/morph.go:229 new block {"index": 8103} -2023-12-16T14:24:08.242Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8103, "blockHeight": 8103, "took": "10.403685ms"} -2023-12-16T14:24:08.335Z INFO sending PrepareRequest {"height": 8104, "view": 0} -2023-12-16T14:24:08.336Z INFO sending Commit {"height": 8104, "view": 0} -2023-12-16T14:24:08.336Z INFO approving block {"height": 8104, "hash": "cffb1cc8a4c0b895ec8ecbe081e4cacc0f99f21f2f27441e91e81984e999c7d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ca7ba700c513d3a1b9c19bf3b9cfc93dab4d51f88c9cfd4bfe6a7cd0928bbcc"} -2023-12-16T14:24:08.342Z INFO initializing dbft {"height": 8105, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:08.342Z debug frostfs-node/morph.go:229 new block {"index": 8104} -2023-12-16T14:24:09.244Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8104, "blockHeight": 8104, "took": "12.042524ms"} -2023-12-16T14:24:09.338Z INFO sending PrepareRequest {"height": 8105, "view": 0} -2023-12-16T14:24:09.338Z INFO sending Commit {"height": 8105, "view": 0} -2023-12-16T14:24:09.338Z INFO approving block {"height": 8105, "hash": "6dc1e94cae3f5f5b19cd169fce905d9e9807e1080a336bf25c15add3a77cf22b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cffb1cc8a4c0b895ec8ecbe081e4cacc0f99f21f2f27441e91e81984e999c7d3"} -2023-12-16T14:24:09.340Z INFO initializing dbft {"height": 8106, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:09.341Z debug frostfs-node/morph.go:229 new block {"index": 8105} -2023-12-16T14:24:10.245Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8105, "blockHeight": 8105, "took": "11.515816ms"} -2023-12-16T14:24:10.340Z INFO sending PrepareRequest {"height": 8106, "view": 0} -2023-12-16T14:24:10.340Z INFO sending Commit {"height": 8106, "view": 0} -2023-12-16T14:24:10.340Z INFO approving block {"height": 8106, "hash": "a502f84d7ff0f3cb8faf181a200c18491f3407609c8983a85bd63019db258015", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6dc1e94cae3f5f5b19cd169fce905d9e9807e1080a336bf25c15add3a77cf22b"} -2023-12-16T14:24:10.342Z INFO initializing dbft {"height": 8107, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:10.343Z debug frostfs-node/morph.go:229 new block {"index": 8106} -2023-12-16T14:24:11.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8106, "blockHeight": 8106, "took": "8.373824ms"} -2023-12-16T14:24:11.342Z INFO sending PrepareRequest {"height": 8107, "view": 0} -2023-12-16T14:24:11.342Z INFO sending Commit {"height": 8107, "view": 0} -2023-12-16T14:24:11.342Z INFO approving block {"height": 8107, "hash": "638724220b167d2521621fef38429387efb1a1fb91bc086939d5c5bb0eab1928", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a502f84d7ff0f3cb8faf181a200c18491f3407609c8983a85bd63019db258015"} -2023-12-16T14:24:11.343Z INFO initializing dbft {"height": 8108, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:11.344Z debug frostfs-node/morph.go:229 new block {"index": 8107} -2023-12-16T14:24:12.245Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8107, "blockHeight": 8107, "took": "9.541097ms"} -2023-12-16T14:24:12.344Z INFO sending PrepareRequest {"height": 8108, "view": 0} -2023-12-16T14:24:12.344Z INFO sending Commit {"height": 8108, "view": 0} -2023-12-16T14:24:12.344Z INFO approving block {"height": 8108, "hash": "dc713c15377f13cb670eaa81bdc4070753beb534a4124c6cc978053e6058ae6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "638724220b167d2521621fef38429387efb1a1fb91bc086939d5c5bb0eab1928"} -2023-12-16T14:24:12.346Z INFO initializing dbft {"height": 8109, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:12.347Z debug frostfs-node/morph.go:229 new block {"index": 8108} -2023-12-16T14:24:13.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8108, "blockHeight": 8108, "took": "12.36066ms"} -2023-12-16T14:24:13.346Z INFO sending PrepareRequest {"height": 8109, "view": 0} -2023-12-16T14:24:13.346Z INFO sending Commit {"height": 8109, "view": 0} -2023-12-16T14:24:13.346Z INFO approving block {"height": 8109, "hash": "6bcb04c85fcdb3cec4e9640ae21503501237f8e9ab6504d186cd60f5f607ca04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc713c15377f13cb670eaa81bdc4070753beb534a4124c6cc978053e6058ae6b"} -2023-12-16T14:24:13.348Z INFO initializing dbft {"height": 8110, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:13.349Z debug frostfs-node/morph.go:229 new block {"index": 8109} -2023-12-16T14:24:14.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8109, "blockHeight": 8109, "took": "12.104482ms"} -2023-12-16T14:24:14.348Z INFO sending PrepareRequest {"height": 8110, "view": 0} -2023-12-16T14:24:14.348Z INFO sending Commit {"height": 8110, "view": 0} -2023-12-16T14:24:14.348Z INFO approving block {"height": 8110, "hash": "5322a3192bc6b3790336d6e00abd57092f62323123da33695fd6b76f1a06fa1b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6bcb04c85fcdb3cec4e9640ae21503501237f8e9ab6504d186cd60f5f607ca04"} -2023-12-16T14:24:14.350Z INFO initializing dbft {"height": 8111, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:14.352Z debug frostfs-node/morph.go:229 new block {"index": 8110} -2023-12-16T14:24:15.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8110, "blockHeight": 8110, "took": "11.601678ms"} -2023-12-16T14:24:15.349Z INFO sending PrepareRequest {"height": 8111, "view": 0} -2023-12-16T14:24:15.350Z INFO sending Commit {"height": 8111, "view": 0} -2023-12-16T14:24:15.350Z INFO approving block {"height": 8111, "hash": "7c4c94eeb3cf78bf7ecf161ad410a59f66bb5259e2ee2405e449f269078de3be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5322a3192bc6b3790336d6e00abd57092f62323123da33695fd6b76f1a06fa1b"} -2023-12-16T14:24:15.351Z INFO initializing dbft {"height": 8112, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:15.352Z debug frostfs-node/morph.go:229 new block {"index": 8111} -2023-12-16T14:24:16.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8111, "blockHeight": 8111, "took": "10.739922ms"} -2023-12-16T14:24:16.352Z INFO sending PrepareRequest {"height": 8112, "view": 0} -2023-12-16T14:24:16.352Z INFO sending Commit {"height": 8112, "view": 0} -2023-12-16T14:24:16.353Z INFO approving block {"height": 8112, "hash": "cbb9b546cc5a084278414ada5b138dce8f31543fbf8fe9a5f0de6a7ceb56226f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c4c94eeb3cf78bf7ecf161ad410a59f66bb5259e2ee2405e449f269078de3be"} -2023-12-16T14:24:16.354Z INFO initializing dbft {"height": 8113, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:16.355Z debug frostfs-node/morph.go:229 new block {"index": 8112} -2023-12-16T14:24:17.253Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8112, "blockHeight": 8112, "took": "12.465472ms"} -2023-12-16T14:24:17.354Z INFO sending PrepareRequest {"height": 8113, "view": 0} -2023-12-16T14:24:17.355Z INFO sending Commit {"height": 8113, "view": 0} -2023-12-16T14:24:17.355Z INFO approving block {"height": 8113, "hash": "6033e637a54dd5f71d9c947039751fadec18bf586f658d73f4522ea8f61006c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbb9b546cc5a084278414ada5b138dce8f31543fbf8fe9a5f0de6a7ceb56226f"} -2023-12-16T14:24:17.356Z INFO initializing dbft {"height": 8114, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:17.357Z debug frostfs-node/morph.go:229 new block {"index": 8113} -2023-12-16T14:24:18.253Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8113, "blockHeight": 8113, "took": "11.226817ms"} -2023-12-16T14:24:18.356Z INFO sending PrepareRequest {"height": 8114, "view": 0} -2023-12-16T14:24:18.356Z INFO sending Commit {"height": 8114, "view": 0} -2023-12-16T14:24:18.357Z INFO approving block {"height": 8114, "hash": "7d80b1a5f03f0d44521725b7110c4886581bdf5b86b41b3bb317ad7ca82afbda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6033e637a54dd5f71d9c947039751fadec18bf586f658d73f4522ea8f61006c4"} -2023-12-16T14:24:18.358Z INFO initializing dbft {"height": 8115, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:18.359Z debug frostfs-node/morph.go:229 new block {"index": 8114} -2023-12-16T14:24:19.253Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8114, "blockHeight": 8114, "took": "9.787066ms"} -2023-12-16T14:24:19.359Z INFO sending PrepareRequest {"height": 8115, "view": 0} -2023-12-16T14:24:19.359Z INFO sending Commit {"height": 8115, "view": 0} -2023-12-16T14:24:19.359Z INFO approving block {"height": 8115, "hash": "5869bf1499fc5af77aa8b041a7caa7d3f8b8d443361183959da95175ac366b71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d80b1a5f03f0d44521725b7110c4886581bdf5b86b41b3bb317ad7ca82afbda"} -2023-12-16T14:24:19.361Z INFO initializing dbft {"height": 8116, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:19.362Z debug frostfs-node/morph.go:229 new block {"index": 8115} -2023-12-16T14:24:20.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8115, "blockHeight": 8115, "took": "12.726761ms"} -2023-12-16T14:24:20.361Z INFO sending PrepareRequest {"height": 8116, "view": 0} -2023-12-16T14:24:20.361Z INFO sending Commit {"height": 8116, "view": 0} -2023-12-16T14:24:20.361Z INFO approving block {"height": 8116, "hash": "e94834035752aae1fdc69964cd2e05731ad1ae1f68a8675ae304d228b6e09553", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5869bf1499fc5af77aa8b041a7caa7d3f8b8d443361183959da95175ac366b71"} -2023-12-16T14:24:20.363Z INFO initializing dbft {"height": 8117, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:20.364Z debug frostfs-node/morph.go:229 new block {"index": 8116} -2023-12-16T14:24:21.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8116, "blockHeight": 8116, "took": "11.523751ms"} -2023-12-16T14:24:21.362Z INFO sending PrepareRequest {"height": 8117, "view": 0} -2023-12-16T14:24:21.363Z INFO sending Commit {"height": 8117, "view": 0} -2023-12-16T14:24:21.363Z INFO approving block {"height": 8117, "hash": "1d652326e6f5eef5dafe712fb0014ff73d59a02f6684bfd046a1d81b93983b90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e94834035752aae1fdc69964cd2e05731ad1ae1f68a8675ae304d228b6e09553"} -2023-12-16T14:24:21.364Z INFO initializing dbft {"height": 8118, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:21.365Z debug frostfs-node/morph.go:229 new block {"index": 8117} -2023-12-16T14:24:22.258Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8117, "blockHeight": 8117, "took": "12.531427ms"} -2023-12-16T14:24:22.364Z INFO sending PrepareRequest {"height": 8118, "view": 0} -2023-12-16T14:24:22.365Z INFO sending Commit {"height": 8118, "view": 0} -2023-12-16T14:24:22.365Z INFO approving block {"height": 8118, "hash": "a30089ba0b7b73e4f8d4f5ee06aef5e6215368ed98461345a9ea99a88a82c502", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d652326e6f5eef5dafe712fb0014ff73d59a02f6684bfd046a1d81b93983b90"} -2023-12-16T14:24:22.367Z INFO initializing dbft {"height": 8119, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:22.368Z debug frostfs-node/morph.go:229 new block {"index": 8118} -2023-12-16T14:24:23.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8118, "blockHeight": 8118, "took": "10.39917ms"} -2023-12-16T14:24:23.367Z INFO sending PrepareRequest {"height": 8119, "view": 0} -2023-12-16T14:24:23.367Z INFO sending Commit {"height": 8119, "view": 0} -2023-12-16T14:24:23.367Z INFO approving block {"height": 8119, "hash": "f33d2d18cded2a8b72d7aad00813c6e5bea6875dd6f8603c3cd517e8dca9991c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a30089ba0b7b73e4f8d4f5ee06aef5e6215368ed98461345a9ea99a88a82c502"} -2023-12-16T14:24:23.369Z INFO initializing dbft {"height": 8120, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:23.370Z debug frostfs-node/morph.go:229 new block {"index": 8119} -2023-12-16T14:24:24.263Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8119, "blockHeight": 8119, "took": "16.400827ms"} -2023-12-16T14:24:24.369Z INFO sending PrepareRequest {"height": 8120, "view": 0} -2023-12-16T14:24:24.370Z INFO sending Commit {"height": 8120, "view": 0} -2023-12-16T14:24:24.370Z INFO approving block {"height": 8120, "hash": "a90bf165e87d562619f6ccedf562e7008a89dd1ccf5c36331f8c09f17f2c250e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f33d2d18cded2a8b72d7aad00813c6e5bea6875dd6f8603c3cd517e8dca9991c"} -2023-12-16T14:24:24.371Z INFO initializing dbft {"height": 8121, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:24.372Z debug frostfs-node/morph.go:229 new block {"index": 8120} -2023-12-16T14:24:25.260Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8120, "blockHeight": 8120, "took": "13.159884ms"} -2023-12-16T14:24:25.371Z INFO sending PrepareRequest {"height": 8121, "view": 0} -2023-12-16T14:24:25.371Z INFO sending Commit {"height": 8121, "view": 0} -2023-12-16T14:24:25.372Z INFO approving block {"height": 8121, "hash": "fbe391980e1f01f63b7349615db38050fed9935eb710654c60db793e48c1892e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a90bf165e87d562619f6ccedf562e7008a89dd1ccf5c36331f8c09f17f2c250e"} -2023-12-16T14:24:25.373Z INFO initializing dbft {"height": 8122, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:25.374Z debug frostfs-node/morph.go:229 new block {"index": 8121} -2023-12-16T14:24:26.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8121, "blockHeight": 8121, "took": "11.807118ms"} -2023-12-16T14:24:26.373Z INFO sending PrepareRequest {"height": 8122, "view": 0} -2023-12-16T14:24:26.373Z INFO sending Commit {"height": 8122, "view": 0} -2023-12-16T14:24:26.374Z INFO approving block {"height": 8122, "hash": "a22a98f38a7e84ae64cbbf64b1f7336ee2857b5043c8f5e50ca95dbb410feda6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbe391980e1f01f63b7349615db38050fed9935eb710654c60db793e48c1892e"} -2023-12-16T14:24:26.375Z INFO initializing dbft {"height": 8123, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:26.376Z debug frostfs-node/morph.go:229 new block {"index": 8122} -2023-12-16T14:24:27.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8122, "blockHeight": 8122, "took": "9.91798ms"} -2023-12-16T14:24:27.375Z INFO sending PrepareRequest {"height": 8123, "view": 0} -2023-12-16T14:24:27.375Z INFO sending Commit {"height": 8123, "view": 0} -2023-12-16T14:24:27.376Z INFO approving block {"height": 8123, "hash": "38deddd86da064ad9a8caf07cb30f8f46707451e4fe41bd240864dd9862d4cad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a22a98f38a7e84ae64cbbf64b1f7336ee2857b5043c8f5e50ca95dbb410feda6"} -2023-12-16T14:24:27.377Z INFO initializing dbft {"height": 8124, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:27.378Z debug frostfs-node/morph.go:229 new block {"index": 8123} -2023-12-16T14:24:28.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8123, "blockHeight": 8123, "took": "9.036476ms"} -2023-12-16T14:24:28.377Z INFO sending PrepareRequest {"height": 8124, "view": 0} -2023-12-16T14:24:28.377Z INFO sending Commit {"height": 8124, "view": 0} -2023-12-16T14:24:28.378Z INFO approving block {"height": 8124, "hash": "9bbf937b4392686bf4f5807c12208eed12910e06438287c515b595fd1a472ceb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38deddd86da064ad9a8caf07cb30f8f46707451e4fe41bd240864dd9862d4cad"} -2023-12-16T14:24:28.379Z INFO initializing dbft {"height": 8125, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:28.380Z debug frostfs-node/morph.go:229 new block {"index": 8124} -2023-12-16T14:24:29.263Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8124, "blockHeight": 8124, "took": "11.796465ms"} -2023-12-16T14:24:29.379Z INFO sending PrepareRequest {"height": 8125, "view": 0} -2023-12-16T14:24:29.379Z INFO sending Commit {"height": 8125, "view": 0} -2023-12-16T14:24:29.380Z INFO approving block {"height": 8125, "hash": "3f3bb4bb455dae2455b67ef2b4b007453a6df1b3d8b95b0df87b97d6f083a023", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9bbf937b4392686bf4f5807c12208eed12910e06438287c515b595fd1a472ceb"} -2023-12-16T14:24:29.381Z INFO initializing dbft {"height": 8126, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:29.382Z debug frostfs-node/morph.go:229 new block {"index": 8125} -2023-12-16T14:24:30.268Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8125, "blockHeight": 8125, "took": "15.875594ms"} -2023-12-16T14:24:30.381Z INFO sending PrepareRequest {"height": 8126, "view": 0} -2023-12-16T14:24:30.381Z INFO sending Commit {"height": 8126, "view": 0} -2023-12-16T14:24:30.381Z INFO approving block {"height": 8126, "hash": "804ba2ad296a0b6bcfdb1e24b8b273f6becad04830e9a7b102d3c473f52ba252", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f3bb4bb455dae2455b67ef2b4b007453a6df1b3d8b95b0df87b97d6f083a023"} -2023-12-16T14:24:30.383Z INFO initializing dbft {"height": 8127, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:30.384Z debug frostfs-node/morph.go:229 new block {"index": 8126} -2023-12-16T14:24:31.264Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8126, "blockHeight": 8126, "took": "11.490637ms"} -2023-12-16T14:24:31.383Z INFO sending PrepareRequest {"height": 8127, "view": 0} -2023-12-16T14:24:31.383Z INFO sending Commit {"height": 8127, "view": 0} -2023-12-16T14:24:31.383Z INFO approving block {"height": 8127, "hash": "744be23bc95396b48ec23ca3d0c85ded12594729d7b73ef78c42df6f2e6bec6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "804ba2ad296a0b6bcfdb1e24b8b273f6becad04830e9a7b102d3c473f52ba252"} -2023-12-16T14:24:31.385Z INFO initializing dbft {"height": 8128, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:31.386Z debug frostfs-node/morph.go:229 new block {"index": 8127} -2023-12-16T14:24:32.268Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8127, "blockHeight": 8127, "took": "14.684989ms"} -2023-12-16T14:24:32.385Z INFO sending PrepareRequest {"height": 8128, "view": 0} -2023-12-16T14:24:32.385Z INFO sending Commit {"height": 8128, "view": 0} -2023-12-16T14:24:32.385Z INFO approving block {"height": 8128, "hash": "27b0c26c7989efdf3080c8b4e2d68e7a7e78592a3e4bf65fe402772d16d11e5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "744be23bc95396b48ec23ca3d0c85ded12594729d7b73ef78c42df6f2e6bec6e"} -2023-12-16T14:24:32.387Z INFO initializing dbft {"height": 8129, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:32.388Z debug frostfs-node/morph.go:229 new block {"index": 8128} -2023-12-16T14:24:33.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8128, "blockHeight": 8128, "took": "10.550178ms"} -2023-12-16T14:24:33.387Z INFO sending PrepareRequest {"height": 8129, "view": 0} -2023-12-16T14:24:33.387Z INFO sending Commit {"height": 8129, "view": 0} -2023-12-16T14:24:33.388Z INFO approving block {"height": 8129, "hash": "1f7a579437de77ceab9a84d7630dc78d6ec02f706ca894ed41263c276dc86009", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27b0c26c7989efdf3080c8b4e2d68e7a7e78592a3e4bf65fe402772d16d11e5e"} -2023-12-16T14:24:33.389Z INFO initializing dbft {"height": 8130, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:33.390Z debug frostfs-node/morph.go:229 new block {"index": 8129} -2023-12-16T14:24:34.270Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8129, "blockHeight": 8129, "took": "14.504717ms"} -2023-12-16T14:24:34.389Z INFO sending PrepareRequest {"height": 8130, "view": 0} -2023-12-16T14:24:34.389Z INFO sending Commit {"height": 8130, "view": 0} -2023-12-16T14:24:34.390Z INFO approving block {"height": 8130, "hash": "33c1d0c4c48aec100d9e05a5ca3b6c5a6349681f4e9913ac27bc6db32028e44f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1f7a579437de77ceab9a84d7630dc78d6ec02f706ca894ed41263c276dc86009"} -2023-12-16T14:24:34.391Z INFO initializing dbft {"height": 8131, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:34.392Z debug frostfs-node/morph.go:229 new block {"index": 8130} -2023-12-16T14:24:35.268Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8130, "blockHeight": 8130, "took": "11.625961ms"} -2023-12-16T14:24:35.392Z INFO sending PrepareRequest {"height": 8131, "view": 0} -2023-12-16T14:24:35.392Z INFO sending Commit {"height": 8131, "view": 0} -2023-12-16T14:24:35.392Z INFO approving block {"height": 8131, "hash": "56d7b08a0ad942f355b059ad9872a4f559432c628b5fec7f22a852ee909684ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33c1d0c4c48aec100d9e05a5ca3b6c5a6349681f4e9913ac27bc6db32028e44f"} -2023-12-16T14:24:35.394Z INFO initializing dbft {"height": 8132, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:35.395Z debug frostfs-node/morph.go:229 new block {"index": 8131} -2023-12-16T14:24:35.399Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 34, "iteration": 2, "error": "no data for 1 iteration in 34 epoch for consumers's trusts"} -2023-12-16T14:24:36.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8131, "blockHeight": 8131, "took": "13.9661ms"} -2023-12-16T14:24:36.393Z INFO sending PrepareRequest {"height": 8132, "view": 0} -2023-12-16T14:24:36.393Z INFO sending Commit {"height": 8132, "view": 0} -2023-12-16T14:24:36.394Z INFO approving block {"height": 8132, "hash": "254ce0b70d52d9b68811abd64299f8226b66f57fc0c8110668ece95d26b85994", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56d7b08a0ad942f355b059ad9872a4f559432c628b5fec7f22a852ee909684ea"} -2023-12-16T14:24:36.395Z INFO initializing dbft {"height": 8133, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:36.396Z debug frostfs-node/morph.go:229 new block {"index": 8132} -2023-12-16T14:24:36.403Z info settlement/calls.go:106 start basic income distribution {"epoch": 34} -2023-12-16T14:24:37.270Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8132, "blockHeight": 8132, "took": "11.254092ms"} -2023-12-16T14:24:37.395Z INFO sending PrepareRequest {"height": 8133, "view": 0} -2023-12-16T14:24:37.396Z INFO sending Commit {"height": 8133, "view": 0} -2023-12-16T14:24:37.396Z INFO approving block {"height": 8133, "hash": "05b553afe3db41c1dbcd929c9f931ccc38dd4b43c790127c0b6b358f6f888bb9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "254ce0b70d52d9b68811abd64299f8226b66f57fc0c8110668ece95d26b85994"} -2023-12-16T14:24:37.398Z INFO initializing dbft {"height": 8134, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:37.399Z debug frostfs-node/morph.go:229 new block {"index": 8133} -2023-12-16T14:24:38.270Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8133, "blockHeight": 8133, "took": "10.056776ms"} -2023-12-16T14:24:38.397Z INFO sending PrepareRequest {"height": 8134, "view": 0} -2023-12-16T14:24:38.397Z INFO sending Commit {"height": 8134, "view": 0} -2023-12-16T14:24:38.398Z INFO approving block {"height": 8134, "hash": "86fdf0bd10848726a77d71623e0e14227eb992d21de33f2e66c6bf82c7c6f479", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05b553afe3db41c1dbcd929c9f931ccc38dd4b43c790127c0b6b358f6f888bb9"} -2023-12-16T14:24:38.399Z INFO initializing dbft {"height": 8135, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:38.400Z debug frostfs-node/morph.go:229 new block {"index": 8134} -2023-12-16T14:24:39.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8134, "blockHeight": 8134, "took": "10.124239ms"} -2023-12-16T14:24:39.399Z INFO sending PrepareRequest {"height": 8135, "view": 0} -2023-12-16T14:24:39.400Z INFO sending Commit {"height": 8135, "view": 0} -2023-12-16T14:24:39.400Z INFO approving block {"height": 8135, "hash": "6a30674c91191bea9d0530cdc6d8a4010b4e59df4dad87ea4b91e1ed916a7d0c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86fdf0bd10848726a77d71623e0e14227eb992d21de33f2e66c6bf82c7c6f479"} -2023-12-16T14:24:39.401Z INFO initializing dbft {"height": 8136, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:39.402Z debug frostfs-node/morph.go:229 new block {"index": 8135} -2023-12-16T14:24:40.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8135, "blockHeight": 8135, "took": "15.126425ms"} -2023-12-16T14:24:40.401Z INFO sending PrepareRequest {"height": 8136, "view": 0} -2023-12-16T14:24:40.401Z INFO sending Commit {"height": 8136, "view": 0} -2023-12-16T14:24:40.401Z INFO approving block {"height": 8136, "hash": "2e47d9e77a0094a90efc63805eb0681ce995a2576aa17715502483ca6994a61d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a30674c91191bea9d0530cdc6d8a4010b4e59df4dad87ea4b91e1ed916a7d0c"} -2023-12-16T14:24:40.403Z INFO initializing dbft {"height": 8137, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:40.404Z debug frostfs-node/morph.go:229 new block {"index": 8136} -2023-12-16T14:24:41.273Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8136, "blockHeight": 8136, "took": "9.908921ms"} -2023-12-16T14:24:41.403Z INFO sending PrepareRequest {"height": 8137, "view": 0} -2023-12-16T14:24:41.403Z INFO sending Commit {"height": 8137, "view": 0} -2023-12-16T14:24:41.404Z INFO approving block {"height": 8137, "hash": "fa779005cbb3d2edf5d67a226c2b1578597d6325641bdb300cd97842846c792c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e47d9e77a0094a90efc63805eb0681ce995a2576aa17715502483ca6994a61d"} -2023-12-16T14:24:41.405Z INFO initializing dbft {"height": 8138, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:41.406Z debug frostfs-node/morph.go:229 new block {"index": 8137} -2023-12-16T14:24:42.275Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8137, "blockHeight": 8137, "took": "11.119926ms"} -2023-12-16T14:24:42.405Z INFO sending PrepareRequest {"height": 8138, "view": 0} -2023-12-16T14:24:42.405Z INFO sending Commit {"height": 8138, "view": 0} -2023-12-16T14:24:42.405Z INFO approving block {"height": 8138, "hash": "9388b616ba9b1c8cc5ea7d25c98e9d03a875c27e19aa00567e74334c3f314ec4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa779005cbb3d2edf5d67a226c2b1578597d6325641bdb300cd97842846c792c"} -2023-12-16T14:24:42.407Z INFO initializing dbft {"height": 8139, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:42.408Z debug frostfs-node/morph.go:229 new block {"index": 8138} -2023-12-16T14:24:43.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8138, "blockHeight": 8138, "took": "15.02743ms"} -2023-12-16T14:24:43.406Z INFO sending PrepareRequest {"height": 8139, "view": 0} -2023-12-16T14:24:43.406Z INFO sending Commit {"height": 8139, "view": 0} -2023-12-16T14:24:43.407Z INFO approving block {"height": 8139, "hash": "d3f68b353ab764f220c24a3f5e97e687be6fe8897366f2e2fa7475b6fb6388d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9388b616ba9b1c8cc5ea7d25c98e9d03a875c27e19aa00567e74334c3f314ec4"} -2023-12-16T14:24:43.408Z INFO initializing dbft {"height": 8140, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:43.409Z debug frostfs-node/morph.go:229 new block {"index": 8139} -2023-12-16T14:24:44.279Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8139, "blockHeight": 8139, "took": "12.351149ms"} -2023-12-16T14:24:44.408Z INFO sending PrepareRequest {"height": 8140, "view": 0} -2023-12-16T14:24:44.409Z INFO sending Commit {"height": 8140, "view": 0} -2023-12-16T14:24:44.409Z INFO approving block {"height": 8140, "hash": "2125c507d86d48488a8e6480cb7f0ccfdfaed063335301ce3d30ac311c462af2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3f68b353ab764f220c24a3f5e97e687be6fe8897366f2e2fa7475b6fb6388d3"} -2023-12-16T14:24:44.410Z INFO initializing dbft {"height": 8141, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:44.411Z debug frostfs-node/morph.go:229 new block {"index": 8140} -2023-12-16T14:24:45.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8140, "blockHeight": 8140, "took": "12.197155ms"} -2023-12-16T14:24:45.411Z INFO sending PrepareRequest {"height": 8141, "view": 0} -2023-12-16T14:24:45.411Z INFO sending Commit {"height": 8141, "view": 0} -2023-12-16T14:24:45.411Z INFO approving block {"height": 8141, "hash": "820867f3a9da4d3817a6a9c658921fad0d2050b4c7a02973a7c63f6905142c3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2125c507d86d48488a8e6480cb7f0ccfdfaed063335301ce3d30ac311c462af2"} -2023-12-16T14:24:45.413Z INFO initializing dbft {"height": 8142, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:45.414Z debug frostfs-node/morph.go:229 new block {"index": 8141} -2023-12-16T14:24:46.283Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8141, "blockHeight": 8141, "took": "14.791369ms"} -2023-12-16T14:24:46.413Z INFO sending PrepareRequest {"height": 8142, "view": 0} -2023-12-16T14:24:46.413Z INFO sending Commit {"height": 8142, "view": 0} -2023-12-16T14:24:46.413Z INFO approving block {"height": 8142, "hash": "4e8cda9789fb4de59ee00694af09c184774969448b9eaade7e2901ec2bd1ddeb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "820867f3a9da4d3817a6a9c658921fad0d2050b4c7a02973a7c63f6905142c3a"} -2023-12-16T14:24:46.414Z INFO initializing dbft {"height": 8143, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:46.415Z debug frostfs-node/morph.go:229 new block {"index": 8142} -2023-12-16T14:24:47.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8142, "blockHeight": 8142, "took": "12.236276ms"} -2023-12-16T14:24:47.415Z INFO sending PrepareRequest {"height": 8143, "view": 0} -2023-12-16T14:24:47.415Z INFO sending Commit {"height": 8143, "view": 0} -2023-12-16T14:24:47.415Z INFO approving block {"height": 8143, "hash": "4294dd9c784771ade2de8dac9013e35b20c6f4389e2d57350c08e304823a7b40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e8cda9789fb4de59ee00694af09c184774969448b9eaade7e2901ec2bd1ddeb"} -2023-12-16T14:24:47.416Z INFO initializing dbft {"height": 8144, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:47.418Z debug frostfs-node/morph.go:229 new block {"index": 8143} -2023-12-16T14:24:48.285Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8143, "blockHeight": 8143, "took": "14.631206ms"} -2023-12-16T14:24:48.417Z INFO sending PrepareRequest {"height": 8144, "view": 0} -2023-12-16T14:24:48.417Z INFO sending Commit {"height": 8144, "view": 0} -2023-12-16T14:24:48.418Z INFO approving block {"height": 8144, "hash": "1df172ed9037f18dc06b472ccbce3f700fc5305d7db7b0f4b4f12711cd4961f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4294dd9c784771ade2de8dac9013e35b20c6f4389e2d57350c08e304823a7b40"} -2023-12-16T14:24:48.419Z INFO initializing dbft {"height": 8145, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:48.420Z debug frostfs-node/morph.go:229 new block {"index": 8144} -2023-12-16T14:24:49.283Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8144, "blockHeight": 8144, "took": "11.524156ms"} -2023-12-16T14:24:49.418Z INFO sending PrepareRequest {"height": 8145, "view": 0} -2023-12-16T14:24:49.419Z INFO sending Commit {"height": 8145, "view": 0} -2023-12-16T14:24:49.419Z INFO approving block {"height": 8145, "hash": "1d2a35a4d85151dce7f0be8a98ea7e110718c16e0c8dfcb9517f00a77ab307a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1df172ed9037f18dc06b472ccbce3f700fc5305d7db7b0f4b4f12711cd4961f6"} -2023-12-16T14:24:49.421Z INFO initializing dbft {"height": 8146, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:49.422Z debug frostfs-node/morph.go:229 new block {"index": 8145} -2023-12-16T14:24:50.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8145, "blockHeight": 8145, "took": "8.497287ms"} -2023-12-16T14:24:50.421Z INFO sending PrepareRequest {"height": 8146, "view": 0} -2023-12-16T14:24:50.421Z INFO sending Commit {"height": 8146, "view": 0} -2023-12-16T14:24:50.421Z INFO approving block {"height": 8146, "hash": "d07b27931300742a53054682316e6d6bae1d107dc98db09ede5dcc589db57a70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d2a35a4d85151dce7f0be8a98ea7e110718c16e0c8dfcb9517f00a77ab307a2"} -2023-12-16T14:24:50.423Z INFO initializing dbft {"height": 8147, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:50.423Z debug frostfs-node/morph.go:229 new block {"index": 8146} -2023-12-16T14:24:51.283Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8146, "blockHeight": 8146, "took": "10.30742ms"} -2023-12-16T14:24:51.423Z INFO sending PrepareRequest {"height": 8147, "view": 0} -2023-12-16T14:24:51.423Z INFO sending Commit {"height": 8147, "view": 0} -2023-12-16T14:24:51.423Z INFO approving block {"height": 8147, "hash": "0e0f8917a3943fd8e4fffdae6c39a8892eabe09315e626fcf795165f43e80da4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d07b27931300742a53054682316e6d6bae1d107dc98db09ede5dcc589db57a70"} -2023-12-16T14:24:51.424Z INFO initializing dbft {"height": 8148, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:51.425Z debug frostfs-node/morph.go:229 new block {"index": 8147} -2023-12-16T14:24:52.285Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8147, "blockHeight": 8147, "took": "11.658459ms"} -2023-12-16T14:24:52.424Z INFO sending PrepareRequest {"height": 8148, "view": 0} -2023-12-16T14:24:52.424Z INFO sending Commit {"height": 8148, "view": 0} -2023-12-16T14:24:52.424Z INFO approving block {"height": 8148, "hash": "edcfed16e982780e0f95459ef27e932a0e6ea2db0036f31e23cd62fa207d97cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e0f8917a3943fd8e4fffdae6c39a8892eabe09315e626fcf795165f43e80da4"} -2023-12-16T14:24:52.425Z INFO initializing dbft {"height": 8149, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:52.427Z debug frostfs-node/morph.go:229 new block {"index": 8148} -2023-12-16T14:24:53.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8148, "blockHeight": 8148, "took": "18.360798ms"} -2023-12-16T14:24:53.426Z INFO sending PrepareRequest {"height": 8149, "view": 0} -2023-12-16T14:24:53.426Z INFO sending Commit {"height": 8149, "view": 0} -2023-12-16T14:24:53.427Z INFO approving block {"height": 8149, "hash": "9554c45a4068745c758f378696a8be3d63face3a2b735136f69ec8ad9eea4228", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edcfed16e982780e0f95459ef27e932a0e6ea2db0036f31e23cd62fa207d97cb"} -2023-12-16T14:24:53.428Z INFO initializing dbft {"height": 8150, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:53.429Z debug frostfs-node/morph.go:229 new block {"index": 8149} -2023-12-16T14:24:54.286Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8149, "blockHeight": 8149, "took": "10.892479ms"} -2023-12-16T14:24:54.428Z INFO sending PrepareRequest {"height": 8150, "view": 0} -2023-12-16T14:24:54.429Z INFO sending Commit {"height": 8150, "view": 0} -2023-12-16T14:24:54.429Z INFO approving block {"height": 8150, "hash": "01e0cf9b41c93fc2c84c0b7e70992368eade96900c4a15ef3d4dee4f769b1039", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9554c45a4068745c758f378696a8be3d63face3a2b735136f69ec8ad9eea4228"} -2023-12-16T14:24:54.431Z INFO initializing dbft {"height": 8151, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:54.431Z debug frostfs-node/morph.go:229 new block {"index": 8150} -2023-12-16T14:24:54.436Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:24:54.441Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:24:54.441Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:24:55.286Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8150, "blockHeight": 8150, "took": "10.21397ms"} -2023-12-16T14:24:55.430Z INFO sending PrepareRequest {"height": 8151, "view": 0} -2023-12-16T14:24:55.430Z INFO sending Commit {"height": 8151, "view": 0} -2023-12-16T14:24:55.431Z INFO approving block {"height": 8151, "hash": "dadbd0a3ca6a759f25596f75af177f2f71f2b6a7cc431f1d849c5fa61df07f3c", "tx_count": 2, "merkle": "0464c96b3bb49d6ed416be639ab3e2afcf60741bf8a001b452da4694280af7fd", "prev": "01e0cf9b41c93fc2c84c0b7e70992368eade96900c4a15ef3d4dee4f769b1039"} -2023-12-16T14:24:55.433Z INFO runtime log {"tx": "95b43100c4d3ccc9295e061b4b77dff7d085d872a3377efb1113e503e4c74355", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:24:55.433Z INFO runtime log {"tx": "95b43100c4d3ccc9295e061b4b77dff7d085d872a3377efb1113e503e4c74355", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:24:55.435Z INFO initializing dbft {"height": 8152, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:55.436Z debug frostfs-node/morph.go:229 new block {"index": 8151} -2023-12-16T14:24:56.290Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8151, "blockHeight": 8151, "took": "13.06314ms"} -2023-12-16T14:24:56.432Z INFO sending PrepareRequest {"height": 8152, "view": 0} -2023-12-16T14:24:56.432Z INFO sending Commit {"height": 8152, "view": 0} -2023-12-16T14:24:56.433Z INFO approving block {"height": 8152, "hash": "708d16e3cfefa0851a4fc49e5d1afea17c17cafd7b4c4f46c489c032a5a20b0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dadbd0a3ca6a759f25596f75af177f2f71f2b6a7cc431f1d849c5fa61df07f3c"} -2023-12-16T14:24:56.434Z INFO initializing dbft {"height": 8153, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:56.435Z debug frostfs-node/morph.go:229 new block {"index": 8152} -2023-12-16T14:24:57.287Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8152, "blockHeight": 8152, "took": "8.122848ms"} -2023-12-16T14:24:57.434Z INFO sending PrepareRequest {"height": 8153, "view": 0} -2023-12-16T14:24:57.434Z INFO sending Commit {"height": 8153, "view": 0} -2023-12-16T14:24:57.435Z INFO approving block {"height": 8153, "hash": "d1aa8301bf08d0351be8db1ea552a462d838ace8a0e7ef36f6e4eef6ee540ba9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "708d16e3cfefa0851a4fc49e5d1afea17c17cafd7b4c4f46c489c032a5a20b0b"} -2023-12-16T14:24:57.437Z INFO initializing dbft {"height": 8154, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:57.437Z debug frostfs-node/morph.go:229 new block {"index": 8153} -2023-12-16T14:24:58.291Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8153, "blockHeight": 8153, "took": "11.873482ms"} -2023-12-16T14:24:58.436Z INFO sending PrepareRequest {"height": 8154, "view": 0} -2023-12-16T14:24:58.437Z INFO sending Commit {"height": 8154, "view": 0} -2023-12-16T14:24:58.437Z INFO approving block {"height": 8154, "hash": "3013c178553d5335277f4764d5b25916e0105870dc154ea2055c7580df708788", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1aa8301bf08d0351be8db1ea552a462d838ace8a0e7ef36f6e4eef6ee540ba9"} -2023-12-16T14:24:58.438Z INFO initializing dbft {"height": 8155, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:58.439Z debug frostfs-node/morph.go:229 new block {"index": 8154} -2023-12-16T14:24:59.289Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8154, "blockHeight": 8154, "took": "9.251053ms"} -2023-12-16T14:24:59.438Z INFO sending PrepareRequest {"height": 8155, "view": 0} -2023-12-16T14:24:59.438Z INFO sending Commit {"height": 8155, "view": 0} -2023-12-16T14:24:59.439Z INFO approving block {"height": 8155, "hash": "ab7e1aeed84da536a059dbade4998c27f9783a548a62f111c56522ab635ef404", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3013c178553d5335277f4764d5b25916e0105870dc154ea2055c7580df708788"} -2023-12-16T14:24:59.440Z INFO initializing dbft {"height": 8156, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:24:59.441Z debug frostfs-node/morph.go:229 new block {"index": 8155} -2023-12-16T14:25:00.293Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8155, "blockHeight": 8155, "took": "12.535884ms"} -2023-12-16T14:25:00.440Z INFO sending PrepareRequest {"height": 8156, "view": 0} -2023-12-16T14:25:00.440Z INFO sending Commit {"height": 8156, "view": 0} -2023-12-16T14:25:00.441Z INFO approving block {"height": 8156, "hash": "09aaedc586a7a4a98fa61c8a4a04a6e26e79223c49f113646c7d83603e26c2e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab7e1aeed84da536a059dbade4998c27f9783a548a62f111c56522ab635ef404"} -2023-12-16T14:25:00.443Z INFO initializing dbft {"height": 8157, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:00.444Z debug frostfs-node/morph.go:229 new block {"index": 8156} -2023-12-16T14:25:01.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8156, "blockHeight": 8156, "took": "10.684657ms"} -2023-12-16T14:25:01.442Z INFO sending PrepareRequest {"height": 8157, "view": 0} -2023-12-16T14:25:01.442Z INFO sending Commit {"height": 8157, "view": 0} -2023-12-16T14:25:01.443Z INFO approving block {"height": 8157, "hash": "0627bc27093dc00a5dd08b0b42fc0b75cb565c14053ca78e9603dcb8f70ec5b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09aaedc586a7a4a98fa61c8a4a04a6e26e79223c49f113646c7d83603e26c2e1"} -2023-12-16T14:25:01.444Z INFO initializing dbft {"height": 8158, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:01.445Z debug frostfs-node/morph.go:229 new block {"index": 8157} -2023-12-16T14:25:02.291Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8157, "blockHeight": 8157, "took": "8.834034ms"} -2023-12-16T14:25:02.444Z INFO sending PrepareRequest {"height": 8158, "view": 0} -2023-12-16T14:25:02.444Z INFO sending Commit {"height": 8158, "view": 0} -2023-12-16T14:25:02.444Z INFO approving block {"height": 8158, "hash": "9aa96533f592bf5ad43d24fad734a35187c302c5d707c9503a5c35b4f4711a9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0627bc27093dc00a5dd08b0b42fc0b75cb565c14053ca78e9603dcb8f70ec5b8"} -2023-12-16T14:25:02.446Z INFO initializing dbft {"height": 8159, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:02.447Z debug frostfs-node/morph.go:229 new block {"index": 8158} -2023-12-16T14:25:03.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8158, "blockHeight": 8158, "took": "8.527525ms"} -2023-12-16T14:25:03.446Z INFO sending PrepareRequest {"height": 8159, "view": 0} -2023-12-16T14:25:03.446Z INFO sending Commit {"height": 8159, "view": 0} -2023-12-16T14:25:03.446Z INFO approving block {"height": 8159, "hash": "22f049ff9c98e2aff5d20530c973d1ac85ef186758df76037b4b4abab8e4add0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9aa96533f592bf5ad43d24fad734a35187c302c5d707c9503a5c35b4f4711a9c"} -2023-12-16T14:25:03.448Z INFO initializing dbft {"height": 8160, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:03.448Z debug frostfs-node/morph.go:229 new block {"index": 8159} -2023-12-16T14:25:04.297Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8159, "blockHeight": 8159, "took": "12.413287ms"} -2023-12-16T14:25:04.447Z INFO sending PrepareRequest {"height": 8160, "view": 0} -2023-12-16T14:25:04.447Z INFO sending Commit {"height": 8160, "view": 0} -2023-12-16T14:25:04.448Z INFO approving block {"height": 8160, "hash": "4e5713cbcdd0c78b3a81f1452732fdec34fac72049ac11016d9354389e2cf9d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22f049ff9c98e2aff5d20530c973d1ac85ef186758df76037b4b4abab8e4add0"} -2023-12-16T14:25:04.450Z INFO initializing dbft {"height": 8161, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:04.450Z debug frostfs-node/morph.go:229 new block {"index": 8160} -2023-12-16T14:25:05.294Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8160, "blockHeight": 8160, "took": "8.562016ms"} -2023-12-16T14:25:05.449Z INFO sending PrepareRequest {"height": 8161, "view": 0} -2023-12-16T14:25:05.450Z INFO sending Commit {"height": 8161, "view": 0} -2023-12-16T14:25:05.450Z INFO approving block {"height": 8161, "hash": "1649feb176b2385073c09f206b9d419a30bdb35a52fbdf4feddd832cd21f4cb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e5713cbcdd0c78b3a81f1452732fdec34fac72049ac11016d9354389e2cf9d8"} -2023-12-16T14:25:05.452Z INFO initializing dbft {"height": 8162, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:05.453Z debug frostfs-node/morph.go:229 new block {"index": 8161} -2023-12-16T14:25:06.299Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8161, "blockHeight": 8161, "took": "12.380794ms"} -2023-12-16T14:25:06.452Z INFO sending PrepareRequest {"height": 8162, "view": 0} -2023-12-16T14:25:06.452Z INFO sending Commit {"height": 8162, "view": 0} -2023-12-16T14:25:06.453Z INFO approving block {"height": 8162, "hash": "019a112a41833a9a2488b96e65ab3f645ce575a51a22d1880eb6c5665f5cd7d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1649feb176b2385073c09f206b9d419a30bdb35a52fbdf4feddd832cd21f4cb1"} -2023-12-16T14:25:06.454Z INFO initializing dbft {"height": 8163, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:06.455Z debug frostfs-node/morph.go:229 new block {"index": 8162} -2023-12-16T14:25:07.297Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8162, "blockHeight": 8162, "took": "9.196135ms"} -2023-12-16T14:25:07.454Z INFO sending PrepareRequest {"height": 8163, "view": 0} -2023-12-16T14:25:07.454Z INFO sending Commit {"height": 8163, "view": 0} -2023-12-16T14:25:07.454Z INFO approving block {"height": 8163, "hash": "b5ec7ff748c785e61f4ae1e66405227b61a439507b080fd2e780bedf36144431", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "019a112a41833a9a2488b96e65ab3f645ce575a51a22d1880eb6c5665f5cd7d3"} -2023-12-16T14:25:07.456Z INFO initializing dbft {"height": 8164, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:07.456Z debug frostfs-node/morph.go:229 new block {"index": 8163} -2023-12-16T14:25:08.298Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8163, "blockHeight": 8163, "took": "9.520447ms"} -2023-12-16T14:25:08.456Z INFO sending PrepareRequest {"height": 8164, "view": 0} -2023-12-16T14:25:08.456Z INFO sending Commit {"height": 8164, "view": 0} -2023-12-16T14:25:08.457Z INFO approving block {"height": 8164, "hash": "27218efe57538fe489924447398443da71648933944ec922ce133e3cb0d14982", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5ec7ff748c785e61f4ae1e66405227b61a439507b080fd2e780bedf36144431"} -2023-12-16T14:25:08.458Z INFO initializing dbft {"height": 8165, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:08.459Z debug frostfs-node/morph.go:229 new block {"index": 8164} -2023-12-16T14:25:09.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8164, "blockHeight": 8164, "took": "9.984564ms"} -2023-12-16T14:25:09.458Z INFO sending PrepareRequest {"height": 8165, "view": 0} -2023-12-16T14:25:09.458Z INFO sending Commit {"height": 8165, "view": 0} -2023-12-16T14:25:09.459Z INFO approving block {"height": 8165, "hash": "c78f4e9e49ca75a7fb0fba83ccc7fb30bcf74816e07274fca0dcb0b58cde9eaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27218efe57538fe489924447398443da71648933944ec922ce133e3cb0d14982"} -2023-12-16T14:25:09.460Z INFO initializing dbft {"height": 8166, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:09.461Z debug frostfs-node/morph.go:229 new block {"index": 8165} -2023-12-16T14:25:10.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8165, "blockHeight": 8165, "took": "9.591189ms"} -2023-12-16T14:25:10.460Z INFO sending PrepareRequest {"height": 8166, "view": 0} -2023-12-16T14:25:10.460Z INFO sending Commit {"height": 8166, "view": 0} -2023-12-16T14:25:10.461Z INFO approving block {"height": 8166, "hash": "7d25507037de22676bdb9a72508d00b832a552217966261bf73ab275ca835c45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c78f4e9e49ca75a7fb0fba83ccc7fb30bcf74816e07274fca0dcb0b58cde9eaa"} -2023-12-16T14:25:10.462Z INFO initializing dbft {"height": 8167, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:10.463Z debug frostfs-node/morph.go:229 new block {"index": 8166} -2023-12-16T14:25:11.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8166, "blockHeight": 8166, "took": "11.3381ms"} -2023-12-16T14:25:11.463Z INFO sending PrepareRequest {"height": 8167, "view": 0} -2023-12-16T14:25:11.463Z INFO sending Commit {"height": 8167, "view": 0} -2023-12-16T14:25:11.464Z INFO approving block {"height": 8167, "hash": "9373c33247add7075a05286b0f4b88d4e975563fa486b72db8ae8cda129f6f45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d25507037de22676bdb9a72508d00b832a552217966261bf73ab275ca835c45"} -2023-12-16T14:25:11.465Z INFO initializing dbft {"height": 8168, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:11.466Z debug frostfs-node/morph.go:229 new block {"index": 8167} -2023-12-16T14:25:12.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8167, "blockHeight": 8167, "took": "9.450078ms"} -2023-12-16T14:25:12.465Z INFO sending PrepareRequest {"height": 8168, "view": 0} -2023-12-16T14:25:12.465Z INFO sending Commit {"height": 8168, "view": 0} -2023-12-16T14:25:12.465Z INFO approving block {"height": 8168, "hash": "ca065eb16fd8573c74721451889422cdf62131504e44ccd5c9f267a2233d3f98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9373c33247add7075a05286b0f4b88d4e975563fa486b72db8ae8cda129f6f45"} -2023-12-16T14:25:12.467Z INFO initializing dbft {"height": 8169, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:12.468Z debug frostfs-node/morph.go:229 new block {"index": 8168} -2023-12-16T14:25:13.301Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8168, "blockHeight": 8168, "took": "7.661132ms"} -2023-12-16T14:25:13.467Z INFO sending PrepareRequest {"height": 8169, "view": 0} -2023-12-16T14:25:13.467Z INFO sending Commit {"height": 8169, "view": 0} -2023-12-16T14:25:13.467Z INFO approving block {"height": 8169, "hash": "9fe5bccf1ef0b9d890edffec1d9854789f61986d793f971492a44fb43f01bf88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca065eb16fd8573c74721451889422cdf62131504e44ccd5c9f267a2233d3f98"} -2023-12-16T14:25:13.469Z INFO initializing dbft {"height": 8170, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:13.469Z debug frostfs-node/morph.go:229 new block {"index": 8169} -2023-12-16T14:25:14.305Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8169, "blockHeight": 8169, "took": "10.737733ms"} -2023-12-16T14:25:14.469Z INFO sending PrepareRequest {"height": 8170, "view": 0} -2023-12-16T14:25:14.469Z INFO sending Commit {"height": 8170, "view": 0} -2023-12-16T14:25:14.469Z INFO approving block {"height": 8170, "hash": "291e917b3a311ca5c0fcd809d444c9db57b48f130e3cc04b062af92162fcdd39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fe5bccf1ef0b9d890edffec1d9854789f61986d793f971492a44fb43f01bf88"} -2023-12-16T14:25:14.471Z INFO initializing dbft {"height": 8171, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:14.472Z debug frostfs-node/morph.go:229 new block {"index": 8170} -2023-12-16T14:25:15.310Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8170, "blockHeight": 8170, "took": "14.404082ms"} -2023-12-16T14:25:15.470Z INFO sending PrepareRequest {"height": 8171, "view": 0} -2023-12-16T14:25:15.471Z INFO sending Commit {"height": 8171, "view": 0} -2023-12-16T14:25:15.471Z INFO approving block {"height": 8171, "hash": "9f649ded315f5f54aeb320d2ff8490812c4186c8ec6f916cf05550579b5ff6c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "291e917b3a311ca5c0fcd809d444c9db57b48f130e3cc04b062af92162fcdd39"} -2023-12-16T14:25:15.473Z INFO initializing dbft {"height": 8172, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:15.473Z debug frostfs-node/morph.go:229 new block {"index": 8171} -2023-12-16T14:25:16.306Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8171, "blockHeight": 8171, "took": "9.534855ms"} -2023-12-16T14:25:16.472Z INFO sending PrepareRequest {"height": 8172, "view": 0} -2023-12-16T14:25:16.473Z INFO sending Commit {"height": 8172, "view": 0} -2023-12-16T14:25:16.473Z INFO approving block {"height": 8172, "hash": "3bfb0cc864b0947285566b085591cf110402eb925415ccd443d3547f5c67bde8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f649ded315f5f54aeb320d2ff8490812c4186c8ec6f916cf05550579b5ff6c5"} -2023-12-16T14:25:16.475Z INFO initializing dbft {"height": 8173, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:16.475Z debug frostfs-node/morph.go:229 new block {"index": 8172} -2023-12-16T14:25:17.307Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8172, "blockHeight": 8172, "took": "9.595679ms"} -2023-12-16T14:25:17.475Z INFO sending PrepareRequest {"height": 8173, "view": 0} -2023-12-16T14:25:17.475Z INFO sending Commit {"height": 8173, "view": 0} -2023-12-16T14:25:17.476Z INFO approving block {"height": 8173, "hash": "ee77b3cfc23ba126dd73af1d9b5a9c5baa6c471357d35a0a9a399628d4a18912", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bfb0cc864b0947285566b085591cf110402eb925415ccd443d3547f5c67bde8"} -2023-12-16T14:25:17.478Z INFO initializing dbft {"height": 8174, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:17.478Z debug frostfs-node/morph.go:229 new block {"index": 8173} -2023-12-16T14:25:18.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8173, "blockHeight": 8173, "took": "9.269131ms"} -2023-12-16T14:25:18.477Z INFO sending PrepareRequest {"height": 8174, "view": 0} -2023-12-16T14:25:18.477Z INFO sending Commit {"height": 8174, "view": 0} -2023-12-16T14:25:18.477Z INFO approving block {"height": 8174, "hash": "94daa278083162a66f923ca8425570d52d2bb90e0b81b69df529138e9b70ccea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee77b3cfc23ba126dd73af1d9b5a9c5baa6c471357d35a0a9a399628d4a18912"} -2023-12-16T14:25:18.479Z INFO initializing dbft {"height": 8175, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:18.480Z debug frostfs-node/morph.go:229 new block {"index": 8174} -2023-12-16T14:25:19.309Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8174, "blockHeight": 8174, "took": "10.157002ms"} -2023-12-16T14:25:19.479Z INFO sending PrepareRequest {"height": 8175, "view": 0} -2023-12-16T14:25:19.479Z INFO sending Commit {"height": 8175, "view": 0} -2023-12-16T14:25:19.479Z INFO approving block {"height": 8175, "hash": "36df2ef9f4ec0452759715621375b2703f79a1abd9cfca2f07a5847d1ffec636", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94daa278083162a66f923ca8425570d52d2bb90e0b81b69df529138e9b70ccea"} -2023-12-16T14:25:19.481Z INFO initializing dbft {"height": 8176, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:19.482Z debug frostfs-node/morph.go:229 new block {"index": 8175} -2023-12-16T14:25:20.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8175, "blockHeight": 8175, "took": "10.557937ms"} -2023-12-16T14:25:20.481Z INFO sending PrepareRequest {"height": 8176, "view": 0} -2023-12-16T14:25:20.481Z INFO sending Commit {"height": 8176, "view": 0} -2023-12-16T14:25:20.481Z INFO approving block {"height": 8176, "hash": "de1c6da1256d70161938de725f3d7c5dd008109b99d4612a83d5e2fd4e566826", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36df2ef9f4ec0452759715621375b2703f79a1abd9cfca2f07a5847d1ffec636"} -2023-12-16T14:25:20.483Z INFO initializing dbft {"height": 8177, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:20.484Z debug frostfs-node/morph.go:229 new block {"index": 8176} -2023-12-16T14:25:21.314Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8176, "blockHeight": 8176, "took": "12.730412ms"} -2023-12-16T14:25:21.482Z INFO sending PrepareRequest {"height": 8177, "view": 0} -2023-12-16T14:25:21.483Z INFO sending Commit {"height": 8177, "view": 0} -2023-12-16T14:25:21.483Z INFO approving block {"height": 8177, "hash": "dc821b1a0273f9e4f40b219cbd82f9f92611e7653737c7166525bc241af8f51e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de1c6da1256d70161938de725f3d7c5dd008109b99d4612a83d5e2fd4e566826"} -2023-12-16T14:25:21.485Z INFO initializing dbft {"height": 8178, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:21.485Z debug frostfs-node/morph.go:229 new block {"index": 8177} -2023-12-16T14:25:22.318Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8177, "blockHeight": 8177, "took": "15.791781ms"} -2023-12-16T14:25:22.485Z INFO sending PrepareRequest {"height": 8178, "view": 0} -2023-12-16T14:25:22.485Z INFO sending Commit {"height": 8178, "view": 0} -2023-12-16T14:25:22.485Z INFO approving block {"height": 8178, "hash": "534a4a64ea21ad5cf4163129923562b888b9944122bbeb57b3fb679b4f95eabb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc821b1a0273f9e4f40b219cbd82f9f92611e7653737c7166525bc241af8f51e"} -2023-12-16T14:25:22.487Z INFO initializing dbft {"height": 8179, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:22.488Z debug frostfs-node/morph.go:229 new block {"index": 8178} -2023-12-16T14:25:23.311Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8178, "blockHeight": 8178, "took": "8.288202ms"} -2023-12-16T14:25:23.487Z INFO sending PrepareRequest {"height": 8179, "view": 0} -2023-12-16T14:25:23.487Z INFO sending Commit {"height": 8179, "view": 0} -2023-12-16T14:25:23.488Z INFO approving block {"height": 8179, "hash": "565864792ae51dbc5e32650d9cd93507f132263098432a993e5de0a70fccdae2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "534a4a64ea21ad5cf4163129923562b888b9944122bbeb57b3fb679b4f95eabb"} -2023-12-16T14:25:23.489Z INFO initializing dbft {"height": 8180, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:23.490Z debug frostfs-node/morph.go:229 new block {"index": 8179} -2023-12-16T14:25:24.320Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8179, "blockHeight": 8179, "took": "15.59012ms"} -2023-12-16T14:25:24.489Z INFO sending PrepareRequest {"height": 8180, "view": 0} -2023-12-16T14:25:24.490Z INFO sending Commit {"height": 8180, "view": 0} -2023-12-16T14:25:24.490Z INFO approving block {"height": 8180, "hash": "025faa53b6a99bf1bd95beeecc02faa07c8f0d7e0c6fd22a7494fb57c4f5c0cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "565864792ae51dbc5e32650d9cd93507f132263098432a993e5de0a70fccdae2"} -2023-12-16T14:25:24.491Z INFO initializing dbft {"height": 8181, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:24.492Z debug frostfs-node/morph.go:229 new block {"index": 8180} -2023-12-16T14:25:25.319Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8180, "blockHeight": 8180, "took": "14.131533ms"} -2023-12-16T14:25:25.491Z INFO sending PrepareRequest {"height": 8181, "view": 0} -2023-12-16T14:25:25.491Z INFO sending Commit {"height": 8181, "view": 0} -2023-12-16T14:25:25.492Z INFO approving block {"height": 8181, "hash": "5682f1242a5779a3eb009eec0fc89efec9f942d5dd562425d24a3990eccc6f65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "025faa53b6a99bf1bd95beeecc02faa07c8f0d7e0c6fd22a7494fb57c4f5c0cd"} -2023-12-16T14:25:25.493Z INFO initializing dbft {"height": 8182, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:25.494Z debug frostfs-node/morph.go:229 new block {"index": 8181} -2023-12-16T14:25:26.316Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8181, "blockHeight": 8181, "took": "10.608542ms"} -2023-12-16T14:25:26.493Z INFO sending PrepareRequest {"height": 8182, "view": 0} -2023-12-16T14:25:26.493Z INFO sending Commit {"height": 8182, "view": 0} -2023-12-16T14:25:26.494Z INFO approving block {"height": 8182, "hash": "fadf9f11cc8e52e0398cc53c7727cbac3162259846dcecf1ce345450857dd25a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5682f1242a5779a3eb009eec0fc89efec9f942d5dd562425d24a3990eccc6f65"} -2023-12-16T14:25:26.495Z INFO initializing dbft {"height": 8183, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:26.496Z debug frostfs-node/morph.go:229 new block {"index": 8182} -2023-12-16T14:25:27.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8182, "blockHeight": 8182, "took": "9.665191ms"} -2023-12-16T14:25:27.495Z INFO sending PrepareRequest {"height": 8183, "view": 0} -2023-12-16T14:25:27.495Z INFO sending Commit {"height": 8183, "view": 0} -2023-12-16T14:25:27.496Z INFO approving block {"height": 8183, "hash": "068530a4e0dd8adbd63c724a3fac0d575ec90e12ecbbd5e68eaade49dff1e9e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fadf9f11cc8e52e0398cc53c7727cbac3162259846dcecf1ce345450857dd25a"} -2023-12-16T14:25:27.496Z INFO initializing dbft {"height": 8184, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:27.497Z debug frostfs-node/morph.go:229 new block {"index": 8183} -2023-12-16T14:25:28.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8183, "blockHeight": 8183, "took": "12.476034ms"} -2023-12-16T14:25:28.497Z INFO sending PrepareRequest {"height": 8184, "view": 0} -2023-12-16T14:25:28.498Z INFO sending Commit {"height": 8184, "view": 0} -2023-12-16T14:25:28.498Z INFO approving block {"height": 8184, "hash": "712b35350e60ad6ccac824271cd8c9d7f922dba4afa337ef4b8c0abae3be1554", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "068530a4e0dd8adbd63c724a3fac0d575ec90e12ecbbd5e68eaade49dff1e9e7"} -2023-12-16T14:25:28.499Z INFO initializing dbft {"height": 8185, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:28.500Z debug frostfs-node/morph.go:229 new block {"index": 8184} -2023-12-16T14:25:29.318Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8184, "blockHeight": 8184, "took": "8.58808ms"} -2023-12-16T14:25:29.499Z INFO sending PrepareRequest {"height": 8185, "view": 0} -2023-12-16T14:25:29.499Z INFO sending Commit {"height": 8185, "view": 0} -2023-12-16T14:25:29.499Z INFO approving block {"height": 8185, "hash": "e7df0013b34d240b1b76ea4352f1e760e7872bff9d5b2ae8cbdd170dafc52567", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "712b35350e60ad6ccac824271cd8c9d7f922dba4afa337ef4b8c0abae3be1554"} -2023-12-16T14:25:29.501Z INFO initializing dbft {"height": 8186, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:29.502Z debug frostfs-node/morph.go:229 new block {"index": 8185} -2023-12-16T14:25:30.322Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8185, "blockHeight": 8185, "took": "11.473124ms"} -2023-12-16T14:25:30.500Z INFO sending PrepareRequest {"height": 8186, "view": 0} -2023-12-16T14:25:30.501Z INFO sending Commit {"height": 8186, "view": 0} -2023-12-16T14:25:30.501Z INFO approving block {"height": 8186, "hash": "d204d67748d724816f2d416bd9331cf78dd697a47dc15e8a57f2914f9dede6eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7df0013b34d240b1b76ea4352f1e760e7872bff9d5b2ae8cbdd170dafc52567"} -2023-12-16T14:25:30.503Z INFO initializing dbft {"height": 8187, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:30.503Z debug frostfs-node/morph.go:229 new block {"index": 8186} -2023-12-16T14:25:31.324Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8186, "blockHeight": 8186, "took": "12.67367ms"} -2023-12-16T14:25:31.502Z INFO sending PrepareRequest {"height": 8187, "view": 0} -2023-12-16T14:25:31.502Z INFO sending Commit {"height": 8187, "view": 0} -2023-12-16T14:25:31.502Z INFO approving block {"height": 8187, "hash": "84874e30da31eeec3f0b9981eccad8a135cb121d6cb6df674f177571ad018c1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d204d67748d724816f2d416bd9331cf78dd697a47dc15e8a57f2914f9dede6eb"} -2023-12-16T14:25:31.504Z INFO initializing dbft {"height": 8188, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:31.505Z debug frostfs-node/morph.go:229 new block {"index": 8187} -2023-12-16T14:25:32.324Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8187, "blockHeight": 8187, "took": "11.65095ms"} -2023-12-16T14:25:32.504Z INFO sending PrepareRequest {"height": 8188, "view": 0} -2023-12-16T14:25:32.504Z INFO sending Commit {"height": 8188, "view": 0} -2023-12-16T14:25:32.504Z INFO approving block {"height": 8188, "hash": "cc2b7eb19412689fcfc9fda07527f6b2ca917cdc8327e271e86e8b2d87fa381f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84874e30da31eeec3f0b9981eccad8a135cb121d6cb6df674f177571ad018c1c"} -2023-12-16T14:25:32.506Z INFO initializing dbft {"height": 8189, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:32.507Z debug frostfs-node/morph.go:229 new block {"index": 8188} -2023-12-16T14:25:33.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8188, "blockHeight": 8188, "took": "11.538217ms"} -2023-12-16T14:25:33.506Z INFO sending PrepareRequest {"height": 8189, "view": 0} -2023-12-16T14:25:33.506Z INFO sending Commit {"height": 8189, "view": 0} -2023-12-16T14:25:33.507Z INFO approving block {"height": 8189, "hash": "72eb9e1e15a87f6041248ae11a8d2589eb94d141ef851a1e580dda89811dd30b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc2b7eb19412689fcfc9fda07527f6b2ca917cdc8327e271e86e8b2d87fa381f"} -2023-12-16T14:25:33.508Z INFO initializing dbft {"height": 8190, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:33.509Z debug frostfs-node/morph.go:229 new block {"index": 8189} -2023-12-16T14:25:34.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8189, "blockHeight": 8189, "took": "11.037467ms"} -2023-12-16T14:25:34.508Z INFO sending PrepareRequest {"height": 8190, "view": 0} -2023-12-16T14:25:34.510Z INFO sending Commit {"height": 8190, "view": 0} -2023-12-16T14:25:34.511Z INFO approving block {"height": 8190, "hash": "ff2a68b559a73614c2031dcf40a31249a2b1a83b078bdac1ab127450e0716221", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72eb9e1e15a87f6041248ae11a8d2589eb94d141ef851a1e580dda89811dd30b"} -2023-12-16T14:25:34.514Z INFO initializing dbft {"height": 8191, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:34.514Z debug frostfs-node/morph.go:229 new block {"index": 8190} -2023-12-16T14:25:35.327Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8190, "blockHeight": 8190, "took": "11.897596ms"} -2023-12-16T14:25:35.512Z INFO sending PrepareRequest {"height": 8191, "view": 0} -2023-12-16T14:25:35.512Z INFO sending Commit {"height": 8191, "view": 0} -2023-12-16T14:25:35.512Z INFO approving block {"height": 8191, "hash": "956629c77b91898b4a4f107fb01b4c887433f98dafba4cc991d22f6a770047af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff2a68b559a73614c2031dcf40a31249a2b1a83b078bdac1ab127450e0716221"} -2023-12-16T14:25:35.514Z INFO initializing dbft {"height": 8192, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:35.515Z debug frostfs-node/morph.go:229 new block {"index": 8191} -2023-12-16T14:25:35.519Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 34, "iteration": 3, "error": "no data for 2 iteration in 34 epoch for consumers's trusts"} -2023-12-16T14:25:36.325Z INFO persisted to disk {"blocks": 1, "keys": 28, "headerHeight": 8191, "blockHeight": 8191, "took": "9.117335ms"} -2023-12-16T14:25:36.513Z INFO sending PrepareRequest {"height": 8192, "view": 0} -2023-12-16T14:25:36.514Z INFO sending Commit {"height": 8192, "view": 0} -2023-12-16T14:25:36.514Z INFO approving block {"height": 8192, "hash": "ed244b6099630328a173c71043ef1f32b4c657274d297f500894dd4d2c7d54f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "956629c77b91898b4a4f107fb01b4c887433f98dafba4cc991d22f6a770047af"} -2023-12-16T14:25:36.516Z INFO initializing dbft {"height": 8193, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:36.517Z debug frostfs-node/morph.go:229 new block {"index": 8192} -2023-12-16T14:25:36.520Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:25:36.529Z INFO runtime log {"tx": "9287941b016b51a67a7a30c4faec3c0e8875ae30d7e4e8d60b1571c3d2480af4", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:25:37.325Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8192, "blockHeight": 8192, "took": "7.833058ms"} -2023-12-16T14:25:37.515Z INFO sending PrepareRequest {"height": 8193, "view": 0} -2023-12-16T14:25:37.516Z INFO sending Commit {"height": 8193, "view": 0} -2023-12-16T14:25:37.516Z INFO approving block {"height": 8193, "hash": "38e971e4d3d1a3e5ceb5277c90f61bae2d083842b6faab0626583d53d8a4d77d", "tx_count": 1, "merkle": "33d9ba833e1853442cebc642fba21f2a15ad52650e44c089779694513b2806d4", "prev": "ed244b6099630328a173c71043ef1f32b4c657274d297f500894dd4d2c7d54f4"} -2023-12-16T14:25:37.517Z INFO runtime log {"tx": "d406283b5194967789c0440e6552ad152a1fa2fb42c6eb2c4453183e83bad933", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:25:37.519Z INFO initializing dbft {"height": 8194, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:37.520Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 36} -2023-12-16T14:25:37.520Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 36} -2023-12-16T14:25:37.520Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:25:37.521Z debug frostfs-node/morph.go:229 new block {"index": 8193} -2023-12-16T14:25:37.521Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:25:37.522Z debug controller/calls.go:95 starting to report local trust values {"epoch": 35} -2023-12-16T14:25:37.522Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 35} -2023-12-16T14:25:37.521Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 36} -2023-12-16T14:25:37.523Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 36} -2023-12-16T14:25:37.523Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 36} -2023-12-16T14:25:37.526Z debug controller/calls.go:146 reporting successfully finished {"epoch": 35} -2023-12-16T14:25:37.526Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 35} -2023-12-16T14:25:37.526Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:25:37.529Z INFO runtime log {"tx": "4a02ea3fba2fc000436d5bf5793400db03f051d058518c75d215f07f36cd80d8", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:25:37.535Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 8196, "tx_hash": "280842dc72cefbaf42750d2bfddb1fc25b5cd83af6863ff8fd90004b0dcf93fb"} -2023-12-16T14:25:37.544Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:25:37.544Z info audit/handlers.go:13 new round of audit {"epoch": 36} -2023-12-16T14:25:37.544Z info settlement/calls.go:26 new audit settlement event {"epoch": 36} -2023-12-16T14:25:37.544Z info settlement/handlers.go:14 process audit settlements {"epoch": 36} -2023-12-16T14:25:37.545Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 36} -2023-12-16T14:25:37.546Z info settlement/handlers.go:18 audit processing finished {"epoch": 36} -2023-12-16T14:25:37.549Z info audit/process.go:39 select containers for audit {"epoch": 36, "amount": 0} -2023-12-16T14:25:37.555Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 8196, "tx_hash": "09bd167e50a4e9fb588d149b422c8a2b561c3cbe9aa1acc8bbb0ba1025b507f7"} -2023-12-16T14:25:38.337Z INFO persisted to disk {"blocks": 1, "keys": 52, "headerHeight": 8193, "blockHeight": 8193, "took": "19.844048ms"} -2023-12-16T14:25:38.517Z INFO sending PrepareRequest {"height": 8194, "view": 0} -2023-12-16T14:25:38.517Z INFO sending Commit {"height": 8194, "view": 0} -2023-12-16T14:25:38.518Z INFO approving block {"height": 8194, "hash": "110fca44d28a534d12abd00766fe1b6f0cb92ddc70e271542a31afad34659cdb", "tx_count": 3, "merkle": "131cc9ff1d910d61f5c401314e0855e4c002b05b73578576775dd81dd76f78a6", "prev": "38e971e4d3d1a3e5ceb5277c90f61bae2d083842b6faab0626583d53d8a4d77d"} -2023-12-16T14:25:38.519Z INFO runtime log {"tx": "778dffc169fd7c621b0e7026562d6d9be646f8755778ee95dc71e3eb11b17ad5", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:25:38.520Z INFO initializing dbft {"height": 8195, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:38.522Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 35} -2023-12-16T14:25:38.522Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 35} -2023-12-16T14:25:38.522Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 35} -2023-12-16T14:25:38.522Z debug frostfs-node/morph.go:229 new block {"index": 8194} -2023-12-16T14:25:39.335Z INFO persisted to disk {"blocks": 1, "keys": 56, "headerHeight": 8194, "blockHeight": 8194, "took": "16.643975ms"} -2023-12-16T14:25:39.518Z INFO sending PrepareRequest {"height": 8195, "view": 0} -2023-12-16T14:25:39.519Z INFO sending Commit {"height": 8195, "view": 0} -2023-12-16T14:25:39.519Z INFO approving block {"height": 8195, "hash": "18f620575d3e66ef9d4fecf1a25178c3ea46dcc35915a0fb8e0cacf17a0a88b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "110fca44d28a534d12abd00766fe1b6f0cb92ddc70e271542a31afad34659cdb"} -2023-12-16T14:25:39.520Z INFO initializing dbft {"height": 8196, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:39.521Z debug frostfs-node/morph.go:229 new block {"index": 8195} -2023-12-16T14:25:40.329Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8195, "blockHeight": 8195, "took": "9.914039ms"} -2023-12-16T14:25:40.520Z INFO sending PrepareRequest {"height": 8196, "view": 0} -2023-12-16T14:25:40.521Z INFO sending Commit {"height": 8196, "view": 0} -2023-12-16T14:25:40.521Z INFO approving block {"height": 8196, "hash": "8b4974daccaa76e7a2930a98d3ae5d09c39272042d32b9b8154ce077cc64f5d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18f620575d3e66ef9d4fecf1a25178c3ea46dcc35915a0fb8e0cacf17a0a88b5"} -2023-12-16T14:25:40.522Z INFO initializing dbft {"height": 8197, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:40.523Z debug frostfs-node/morph.go:229 new block {"index": 8196} -2023-12-16T14:25:41.329Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8196, "blockHeight": 8196, "took": "8.975891ms"} -2023-12-16T14:25:41.522Z INFO sending PrepareRequest {"height": 8197, "view": 0} -2023-12-16T14:25:41.523Z INFO sending Commit {"height": 8197, "view": 0} -2023-12-16T14:25:41.523Z INFO approving block {"height": 8197, "hash": "a88b5f32e623b392dfc2766042acf7c576501ff7c50f5c23b8a42060e8eb7907", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b4974daccaa76e7a2930a98d3ae5d09c39272042d32b9b8154ce077cc64f5d7"} -2023-12-16T14:25:41.524Z INFO initializing dbft {"height": 8198, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:41.525Z debug frostfs-node/morph.go:229 new block {"index": 8197} -2023-12-16T14:25:42.333Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8197, "blockHeight": 8197, "took": "11.64752ms"} -2023-12-16T14:25:42.524Z INFO sending PrepareRequest {"height": 8198, "view": 0} -2023-12-16T14:25:42.525Z INFO sending Commit {"height": 8198, "view": 0} -2023-12-16T14:25:42.525Z INFO approving block {"height": 8198, "hash": "eb6e72d746f3641d92614bf48963e4b3799fd9555b75dbf7a20852625a9a76b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a88b5f32e623b392dfc2766042acf7c576501ff7c50f5c23b8a42060e8eb7907"} -2023-12-16T14:25:42.527Z INFO initializing dbft {"height": 8199, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:42.528Z debug frostfs-node/morph.go:229 new block {"index": 8198} -2023-12-16T14:25:43.332Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8198, "blockHeight": 8198, "took": "10.155145ms"} -2023-12-16T14:25:43.527Z INFO sending PrepareRequest {"height": 8199, "view": 0} -2023-12-16T14:25:43.527Z INFO sending Commit {"height": 8199, "view": 0} -2023-12-16T14:25:43.527Z INFO approving block {"height": 8199, "hash": "d01a0e376501fc4939eeadf7b0d5cde2bff20cd7400da52cf310e098989f95c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb6e72d746f3641d92614bf48963e4b3799fd9555b75dbf7a20852625a9a76b2"} -2023-12-16T14:25:43.529Z INFO initializing dbft {"height": 8200, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:43.530Z debug frostfs-node/morph.go:229 new block {"index": 8199} -2023-12-16T14:25:44.335Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8199, "blockHeight": 8199, "took": "11.538766ms"} -2023-12-16T14:25:44.528Z INFO sending PrepareRequest {"height": 8200, "view": 0} -2023-12-16T14:25:44.529Z INFO sending Commit {"height": 8200, "view": 0} -2023-12-16T14:25:44.529Z INFO approving block {"height": 8200, "hash": "ebeef12780c4c663ecb1bd469661b2430dc4be96f383b20829fec7bc7e402ff8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d01a0e376501fc4939eeadf7b0d5cde2bff20cd7400da52cf310e098989f95c8"} -2023-12-16T14:25:44.530Z INFO initializing dbft {"height": 8201, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:44.531Z debug frostfs-node/morph.go:229 new block {"index": 8200} -2023-12-16T14:25:44.534Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:25:44.536Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:25:44.536Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:25:45.330Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8200, "blockHeight": 8200, "took": "5.82468ms"} -2023-12-16T14:25:45.531Z INFO sending PrepareRequest {"height": 8201, "view": 0} -2023-12-16T14:25:45.531Z INFO sending Commit {"height": 8201, "view": 0} -2023-12-16T14:25:45.531Z INFO approving block {"height": 8201, "hash": "422db973963a6784f5d2537dddf7a0bc2bb348231646cd58e8a6c0099328b2f5", "tx_count": 2, "merkle": "e339ac87563280c272fc21a2153f4134b22a24f99dc8776acc7c9b1375e53030", "prev": "ebeef12780c4c663ecb1bd469661b2430dc4be96f383b20829fec7bc7e402ff8"} -2023-12-16T14:25:45.533Z INFO runtime log {"tx": "8f6fb9bcab9b58a364e62263497f179ea2afc0cd2f9e793b866e33c7248b36e3", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:25:45.533Z INFO runtime log {"tx": "8f6fb9bcab9b58a364e62263497f179ea2afc0cd2f9e793b866e33c7248b36e3", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:25:45.534Z INFO initializing dbft {"height": 8202, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:45.535Z debug frostfs-node/morph.go:229 new block {"index": 8201} -2023-12-16T14:25:46.338Z INFO persisted to disk {"blocks": 1, "keys": 47, "headerHeight": 8201, "blockHeight": 8201, "took": "13.346238ms"} -2023-12-16T14:25:46.533Z INFO sending PrepareRequest {"height": 8202, "view": 0} -2023-12-16T14:25:46.533Z INFO sending Commit {"height": 8202, "view": 0} -2023-12-16T14:25:46.534Z INFO approving block {"height": 8202, "hash": "a71db78c7884227f935a8a791d8505188697e7ccadc5d77c00d8368fbcdc956a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "422db973963a6784f5d2537dddf7a0bc2bb348231646cd58e8a6c0099328b2f5"} -2023-12-16T14:25:46.535Z INFO initializing dbft {"height": 8203, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:46.536Z debug frostfs-node/morph.go:229 new block {"index": 8202} -2023-12-16T14:25:47.337Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8202, "blockHeight": 8202, "took": "11.63455ms"} -2023-12-16T14:25:47.536Z INFO sending PrepareRequest {"height": 8203, "view": 0} -2023-12-16T14:25:47.536Z INFO sending Commit {"height": 8203, "view": 0} -2023-12-16T14:25:47.537Z INFO approving block {"height": 8203, "hash": "3a274bc82f27dad02ce42def41c8e46dc5a080e528863806d814c87957fa9f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a71db78c7884227f935a8a791d8505188697e7ccadc5d77c00d8368fbcdc956a"} -2023-12-16T14:25:47.538Z INFO initializing dbft {"height": 8204, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:47.539Z debug frostfs-node/morph.go:229 new block {"index": 8203} -2023-12-16T14:25:48.338Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8203, "blockHeight": 8203, "took": "10.598039ms"} -2023-12-16T14:25:48.538Z INFO sending PrepareRequest {"height": 8204, "view": 0} -2023-12-16T14:25:48.539Z INFO sending Commit {"height": 8204, "view": 0} -2023-12-16T14:25:48.539Z INFO approving block {"height": 8204, "hash": "2a9edf52cc03b741f5270e7bbd3db319621908bfc794da695a49b2a2b9b12943", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a274bc82f27dad02ce42def41c8e46dc5a080e528863806d814c87957fa9f8b"} -2023-12-16T14:25:48.541Z INFO initializing dbft {"height": 8205, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:48.541Z debug frostfs-node/morph.go:229 new block {"index": 8204} -2023-12-16T14:25:49.338Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8204, "blockHeight": 8204, "took": "9.263721ms"} -2023-12-16T14:25:49.540Z INFO sending PrepareRequest {"height": 8205, "view": 0} -2023-12-16T14:25:49.540Z INFO sending Commit {"height": 8205, "view": 0} -2023-12-16T14:25:49.541Z INFO approving block {"height": 8205, "hash": "f414762254a1fc2cf9eb06dab374b1910247d083b1754375e8a7f337bbd5ac95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a9edf52cc03b741f5270e7bbd3db319621908bfc794da695a49b2a2b9b12943"} -2023-12-16T14:25:49.542Z INFO initializing dbft {"height": 8206, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:49.543Z debug frostfs-node/morph.go:229 new block {"index": 8205} -2023-12-16T14:25:50.337Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8205, "blockHeight": 8205, "took": "8.662242ms"} -2023-12-16T14:25:50.542Z INFO sending PrepareRequest {"height": 8206, "view": 0} -2023-12-16T14:25:50.543Z INFO sending Commit {"height": 8206, "view": 0} -2023-12-16T14:25:50.543Z INFO approving block {"height": 8206, "hash": "e20fc92d6a4c7f9740752c1602d254a062f4775158ce98b03cb8491fa244eeb8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f414762254a1fc2cf9eb06dab374b1910247d083b1754375e8a7f337bbd5ac95"} -2023-12-16T14:25:50.545Z INFO initializing dbft {"height": 8207, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:50.546Z debug frostfs-node/morph.go:229 new block {"index": 8206} -2023-12-16T14:25:51.339Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8206, "blockHeight": 8206, "took": "10.016101ms"} -2023-12-16T14:25:51.544Z INFO sending PrepareRequest {"height": 8207, "view": 0} -2023-12-16T14:25:51.545Z INFO sending Commit {"height": 8207, "view": 0} -2023-12-16T14:25:51.545Z INFO approving block {"height": 8207, "hash": "45743e4f263a9bcf841e65248a1754402c1d3579e584f72815cb1f3faa5814ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e20fc92d6a4c7f9740752c1602d254a062f4775158ce98b03cb8491fa244eeb8"} -2023-12-16T14:25:51.546Z INFO initializing dbft {"height": 8208, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:51.547Z debug frostfs-node/morph.go:229 new block {"index": 8207} -2023-12-16T14:25:52.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8207, "blockHeight": 8207, "took": "10.399784ms"} -2023-12-16T14:25:52.546Z INFO sending PrepareRequest {"height": 8208, "view": 0} -2023-12-16T14:25:52.546Z INFO sending Commit {"height": 8208, "view": 0} -2023-12-16T14:25:52.547Z INFO approving block {"height": 8208, "hash": "971f07c3f129f5aeadfc3eb00e7dbd8ae44f8b2dbabc008e46b70323e6897d2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45743e4f263a9bcf841e65248a1754402c1d3579e584f72815cb1f3faa5814ff"} -2023-12-16T14:25:52.548Z INFO initializing dbft {"height": 8209, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:52.549Z debug frostfs-node/morph.go:229 new block {"index": 8208} -2023-12-16T14:25:53.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8208, "blockHeight": 8208, "took": "9.502917ms"} -2023-12-16T14:25:53.548Z INFO sending PrepareRequest {"height": 8209, "view": 0} -2023-12-16T14:25:53.548Z INFO sending Commit {"height": 8209, "view": 0} -2023-12-16T14:25:53.548Z INFO approving block {"height": 8209, "hash": "4e3efeb5ce0e532d53cd15532883e1a5b0d184900475e58a0a1ee3d91b25a4cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "971f07c3f129f5aeadfc3eb00e7dbd8ae44f8b2dbabc008e46b70323e6897d2c"} -2023-12-16T14:25:53.550Z INFO initializing dbft {"height": 8210, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:53.550Z debug frostfs-node/morph.go:229 new block {"index": 8209} -2023-12-16T14:25:54.342Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8209, "blockHeight": 8209, "took": "11.199177ms"} -2023-12-16T14:25:54.549Z INFO sending PrepareRequest {"height": 8210, "view": 0} -2023-12-16T14:25:54.550Z INFO sending Commit {"height": 8210, "view": 0} -2023-12-16T14:25:54.550Z INFO approving block {"height": 8210, "hash": "8145ca307c564f50e3e5ac1c77fe7c66f19fe260a831c6becd7b820735915dba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e3efeb5ce0e532d53cd15532883e1a5b0d184900475e58a0a1ee3d91b25a4cc"} -2023-12-16T14:25:54.551Z INFO initializing dbft {"height": 8211, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:54.552Z debug frostfs-node/morph.go:229 new block {"index": 8210} -2023-12-16T14:25:55.342Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8210, "blockHeight": 8210, "took": "9.866235ms"} -2023-12-16T14:25:55.551Z INFO sending PrepareRequest {"height": 8211, "view": 0} -2023-12-16T14:25:55.551Z INFO sending Commit {"height": 8211, "view": 0} -2023-12-16T14:25:55.551Z INFO approving block {"height": 8211, "hash": "61431223b4b7fc52934d61ae1299f0017a73b23b5d42ae44e3249f7e1376f707", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8145ca307c564f50e3e5ac1c77fe7c66f19fe260a831c6becd7b820735915dba"} -2023-12-16T14:25:55.553Z INFO initializing dbft {"height": 8212, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:55.554Z debug frostfs-node/morph.go:229 new block {"index": 8211} -2023-12-16T14:25:56.344Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8211, "blockHeight": 8211, "took": "10.876571ms"} -2023-12-16T14:25:56.553Z INFO sending PrepareRequest {"height": 8212, "view": 0} -2023-12-16T14:25:56.553Z INFO sending Commit {"height": 8212, "view": 0} -2023-12-16T14:25:56.554Z INFO approving block {"height": 8212, "hash": "869e97aa6f7c29790ab1b8d087c41168923a6cef94d5840e247cb89008563659", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61431223b4b7fc52934d61ae1299f0017a73b23b5d42ae44e3249f7e1376f707"} -2023-12-16T14:25:56.555Z INFO initializing dbft {"height": 8213, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:56.556Z debug frostfs-node/morph.go:229 new block {"index": 8212} -2023-12-16T14:25:57.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8212, "blockHeight": 8212, "took": "7.299533ms"} -2023-12-16T14:25:57.555Z INFO sending PrepareRequest {"height": 8213, "view": 0} -2023-12-16T14:25:57.555Z INFO sending Commit {"height": 8213, "view": 0} -2023-12-16T14:25:57.555Z INFO approving block {"height": 8213, "hash": "625dfce9005aff0b9468dfdb6a4edd255128214652f0117cd16c6e8150a6edfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "869e97aa6f7c29790ab1b8d087c41168923a6cef94d5840e247cb89008563659"} -2023-12-16T14:25:57.556Z INFO initializing dbft {"height": 8214, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:57.557Z debug frostfs-node/morph.go:229 new block {"index": 8213} -2023-12-16T14:25:58.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8213, "blockHeight": 8213, "took": "6.610543ms"} -2023-12-16T14:25:58.556Z INFO sending PrepareRequest {"height": 8214, "view": 0} -2023-12-16T14:25:58.557Z INFO sending Commit {"height": 8214, "view": 0} -2023-12-16T14:25:58.557Z INFO approving block {"height": 8214, "hash": "e4406f53afa0f8eb64f58477ed0cab83ab05bfecdab1dc704dc4cb6413f80435", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "625dfce9005aff0b9468dfdb6a4edd255128214652f0117cd16c6e8150a6edfc"} -2023-12-16T14:25:58.558Z INFO initializing dbft {"height": 8215, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:58.559Z debug frostfs-node/morph.go:229 new block {"index": 8214} -2023-12-16T14:25:59.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8214, "blockHeight": 8214, "took": "10.987134ms"} -2023-12-16T14:25:59.558Z INFO sending PrepareRequest {"height": 8215, "view": 0} -2023-12-16T14:25:59.558Z INFO sending Commit {"height": 8215, "view": 0} -2023-12-16T14:25:59.558Z INFO approving block {"height": 8215, "hash": "da11257dbf9cfc80b605b900dcbb663b3793892c5c6a280665678d21f7b38f1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4406f53afa0f8eb64f58477ed0cab83ab05bfecdab1dc704dc4cb6413f80435"} -2023-12-16T14:25:59.560Z INFO initializing dbft {"height": 8216, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:25:59.560Z debug frostfs-node/morph.go:229 new block {"index": 8215} -2023-12-16T14:26:00.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8215, "blockHeight": 8215, "took": "10.979193ms"} -2023-12-16T14:26:00.560Z INFO sending PrepareRequest {"height": 8216, "view": 0} -2023-12-16T14:26:00.560Z INFO sending Commit {"height": 8216, "view": 0} -2023-12-16T14:26:00.560Z INFO approving block {"height": 8216, "hash": "8e58a9f3fcc03d4b01ec2217d2ceeb2c0b2dc2c33a130ce9f279fea99178b645", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da11257dbf9cfc80b605b900dcbb663b3793892c5c6a280665678d21f7b38f1c"} -2023-12-16T14:26:00.561Z INFO initializing dbft {"height": 8217, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:00.562Z debug frostfs-node/morph.go:229 new block {"index": 8216} -2023-12-16T14:26:01.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8216, "blockHeight": 8216, "took": "9.825768ms"} -2023-12-16T14:26:01.562Z INFO sending PrepareRequest {"height": 8217, "view": 0} -2023-12-16T14:26:01.562Z INFO sending Commit {"height": 8217, "view": 0} -2023-12-16T14:26:01.563Z INFO approving block {"height": 8217, "hash": "fd8277089d616373a28e995a311447f81d057e7747f8ef9ac1b252fdb49cadf4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e58a9f3fcc03d4b01ec2217d2ceeb2c0b2dc2c33a130ce9f279fea99178b645"} -2023-12-16T14:26:01.564Z INFO initializing dbft {"height": 8218, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:01.565Z debug frostfs-node/morph.go:229 new block {"index": 8217} -2023-12-16T14:26:02.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8217, "blockHeight": 8217, "took": "11.922218ms"} -2023-12-16T14:26:02.564Z INFO sending PrepareRequest {"height": 8218, "view": 0} -2023-12-16T14:26:02.565Z INFO sending Commit {"height": 8218, "view": 0} -2023-12-16T14:26:02.565Z INFO approving block {"height": 8218, "hash": "7e0d85f1e1923fda1fa0ecd2f29bc26156b338ada6a0c2cb4bcb781f8c520e89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd8277089d616373a28e995a311447f81d057e7747f8ef9ac1b252fdb49cadf4"} -2023-12-16T14:26:02.566Z INFO initializing dbft {"height": 8219, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:02.567Z debug frostfs-node/morph.go:229 new block {"index": 8218} -2023-12-16T14:26:03.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8218, "blockHeight": 8218, "took": "8.775146ms"} -2023-12-16T14:26:03.566Z INFO sending PrepareRequest {"height": 8219, "view": 0} -2023-12-16T14:26:03.567Z INFO sending Commit {"height": 8219, "view": 0} -2023-12-16T14:26:03.567Z INFO approving block {"height": 8219, "hash": "c6232f46d4dd9669264e67f4c36ae43fde13eb25a0bbb043faaa8e7f03ab280d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e0d85f1e1923fda1fa0ecd2f29bc26156b338ada6a0c2cb4bcb781f8c520e89"} -2023-12-16T14:26:03.569Z INFO initializing dbft {"height": 8220, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:03.570Z debug frostfs-node/morph.go:229 new block {"index": 8219} -2023-12-16T14:26:04.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8219, "blockHeight": 8219, "took": "10.442124ms"} -2023-12-16T14:26:04.568Z INFO sending PrepareRequest {"height": 8220, "view": 0} -2023-12-16T14:26:04.568Z INFO sending Commit {"height": 8220, "view": 0} -2023-12-16T14:26:04.569Z INFO approving block {"height": 8220, "hash": "a1c5710a6149daa6f243c43922578a4a8a27b469b40ce0393276faeadcbb5ea3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6232f46d4dd9669264e67f4c36ae43fde13eb25a0bbb043faaa8e7f03ab280d"} -2023-12-16T14:26:04.570Z INFO initializing dbft {"height": 8221, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:04.571Z debug frostfs-node/morph.go:229 new block {"index": 8220} -2023-12-16T14:26:05.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8220, "blockHeight": 8220, "took": "8.671022ms"} -2023-12-16T14:26:05.570Z INFO sending PrepareRequest {"height": 8221, "view": 0} -2023-12-16T14:26:05.570Z INFO sending Commit {"height": 8221, "view": 0} -2023-12-16T14:26:05.570Z INFO approving block {"height": 8221, "hash": "ce91fa1f16deb6c65a75892373200dc87c607a31b06f9b1ed62c1e793f59d2c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1c5710a6149daa6f243c43922578a4a8a27b469b40ce0393276faeadcbb5ea3"} -2023-12-16T14:26:05.572Z INFO initializing dbft {"height": 8222, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:05.572Z debug frostfs-node/morph.go:229 new block {"index": 8221} -2023-12-16T14:26:06.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8221, "blockHeight": 8221, "took": "9.245239ms"} -2023-12-16T14:26:06.572Z INFO sending PrepareRequest {"height": 8222, "view": 0} -2023-12-16T14:26:06.573Z INFO sending Commit {"height": 8222, "view": 0} -2023-12-16T14:26:06.573Z INFO approving block {"height": 8222, "hash": "6b2c814b27ccfc6459c1d1095727a7854f28bfeaaf79af9b4a45e2b554e2e9ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ce91fa1f16deb6c65a75892373200dc87c607a31b06f9b1ed62c1e793f59d2c4"} -2023-12-16T14:26:06.574Z INFO initializing dbft {"height": 8223, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:06.575Z debug frostfs-node/morph.go:229 new block {"index": 8222} -2023-12-16T14:26:07.351Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8222, "blockHeight": 8222, "took": "9.884718ms"} -2023-12-16T14:26:07.574Z INFO sending PrepareRequest {"height": 8223, "view": 0} -2023-12-16T14:26:07.574Z INFO sending Commit {"height": 8223, "view": 0} -2023-12-16T14:26:07.574Z INFO approving block {"height": 8223, "hash": "14987eac75f15879464309030ed8aaebdcdf98a2140211a93fff866d42e63dbd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b2c814b27ccfc6459c1d1095727a7854f28bfeaaf79af9b4a45e2b554e2e9ab"} -2023-12-16T14:26:07.576Z INFO initializing dbft {"height": 8224, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:07.577Z debug frostfs-node/morph.go:229 new block {"index": 8223} -2023-12-16T14:26:08.354Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8223, "blockHeight": 8223, "took": "12.462447ms"} -2023-12-16T14:26:08.576Z INFO sending PrepareRequest {"height": 8224, "view": 0} -2023-12-16T14:26:08.577Z INFO sending Commit {"height": 8224, "view": 0} -2023-12-16T14:26:08.577Z INFO approving block {"height": 8224, "hash": "9af3a1cadc3ead608c73978a7e079ca09ee28a16814f941873f2695b9e773f31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14987eac75f15879464309030ed8aaebdcdf98a2140211a93fff866d42e63dbd"} -2023-12-16T14:26:08.578Z INFO initializing dbft {"height": 8225, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:08.579Z debug frostfs-node/morph.go:229 new block {"index": 8224} -2023-12-16T14:26:09.352Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8224, "blockHeight": 8224, "took": "9.422065ms"} -2023-12-16T14:26:09.578Z INFO sending PrepareRequest {"height": 8225, "view": 0} -2023-12-16T14:26:09.579Z INFO sending Commit {"height": 8225, "view": 0} -2023-12-16T14:26:09.579Z INFO approving block {"height": 8225, "hash": "419ce4e96dadfd0d223011fea926a7970a976291ab979871b0ee1f6df6122a8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9af3a1cadc3ead608c73978a7e079ca09ee28a16814f941873f2695b9e773f31"} -2023-12-16T14:26:09.580Z INFO initializing dbft {"height": 8226, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:09.581Z debug frostfs-node/morph.go:229 new block {"index": 8225} -2023-12-16T14:26:10.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8225, "blockHeight": 8225, "took": "10.065654ms"} -2023-12-16T14:26:10.581Z INFO sending PrepareRequest {"height": 8226, "view": 0} -2023-12-16T14:26:10.581Z INFO sending Commit {"height": 8226, "view": 0} -2023-12-16T14:26:10.581Z INFO approving block {"height": 8226, "hash": "11c8ed8e37f0c630887d9049c495589649cf1336f1610c0ec828a1db35d2abba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "419ce4e96dadfd0d223011fea926a7970a976291ab979871b0ee1f6df6122a8f"} -2023-12-16T14:26:10.583Z INFO initializing dbft {"height": 8227, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:10.584Z debug frostfs-node/morph.go:229 new block {"index": 8226} -2023-12-16T14:26:11.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8226, "blockHeight": 8226, "took": "6.312634ms"} -2023-12-16T14:26:11.583Z INFO sending PrepareRequest {"height": 8227, "view": 0} -2023-12-16T14:26:11.583Z INFO sending Commit {"height": 8227, "view": 0} -2023-12-16T14:26:11.583Z INFO approving block {"height": 8227, "hash": "f8954ce53107e447458fe5f80a69a5da22cf21753e9019383717a0f272f013a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11c8ed8e37f0c630887d9049c495589649cf1336f1610c0ec828a1db35d2abba"} -2023-12-16T14:26:11.585Z INFO initializing dbft {"height": 8228, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:11.586Z debug frostfs-node/morph.go:229 new block {"index": 8227} -2023-12-16T14:26:12.357Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8227, "blockHeight": 8227, "took": "12.90086ms"} -2023-12-16T14:26:12.585Z INFO sending PrepareRequest {"height": 8228, "view": 0} -2023-12-16T14:26:12.585Z INFO sending Commit {"height": 8228, "view": 0} -2023-12-16T14:26:12.586Z INFO approving block {"height": 8228, "hash": "e25a90d0adc8871940e94f08381df7f9aa2f10484747b1ee263d7e1a13d982b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8954ce53107e447458fe5f80a69a5da22cf21753e9019383717a0f272f013a9"} -2023-12-16T14:26:12.588Z INFO initializing dbft {"height": 8229, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:12.589Z debug frostfs-node/morph.go:229 new block {"index": 8228} -2023-12-16T14:26:13.360Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8228, "blockHeight": 8228, "took": "14.341825ms"} -2023-12-16T14:26:13.587Z INFO sending PrepareRequest {"height": 8229, "view": 0} -2023-12-16T14:26:13.587Z INFO sending Commit {"height": 8229, "view": 0} -2023-12-16T14:26:13.587Z INFO approving block {"height": 8229, "hash": "2f60f2687103eabde039cfadc3562c5241492815c94a247d31d0b7bba5813388", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e25a90d0adc8871940e94f08381df7f9aa2f10484747b1ee263d7e1a13d982b5"} -2023-12-16T14:26:13.589Z INFO initializing dbft {"height": 8230, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:13.590Z debug frostfs-node/morph.go:229 new block {"index": 8229} -2023-12-16T14:26:14.360Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8229, "blockHeight": 8229, "took": "13.142407ms"} -2023-12-16T14:26:14.589Z INFO sending PrepareRequest {"height": 8230, "view": 0} -2023-12-16T14:26:14.589Z INFO sending Commit {"height": 8230, "view": 0} -2023-12-16T14:26:14.590Z INFO approving block {"height": 8230, "hash": "f40d286897fc446913462898b49d54025dd5331da72a28da00e13c6b687c4e70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f60f2687103eabde039cfadc3562c5241492815c94a247d31d0b7bba5813388"} -2023-12-16T14:26:14.591Z INFO initializing dbft {"height": 8231, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:14.592Z debug frostfs-node/morph.go:229 new block {"index": 8230} -2023-12-16T14:26:15.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8230, "blockHeight": 8230, "took": "9.914478ms"} -2023-12-16T14:26:15.591Z INFO sending PrepareRequest {"height": 8231, "view": 0} -2023-12-16T14:26:15.591Z INFO sending Commit {"height": 8231, "view": 0} -2023-12-16T14:26:15.592Z INFO approving block {"height": 8231, "hash": "a51a4fc55c26991b0cf47e6c7106681b76bd2128d97b8c39aa5b0e64b0a3cb7a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f40d286897fc446913462898b49d54025dd5331da72a28da00e13c6b687c4e70"} -2023-12-16T14:26:15.595Z INFO initializing dbft {"height": 8232, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:15.596Z debug frostfs-node/morph.go:229 new block {"index": 8231} -2023-12-16T14:26:16.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8231, "blockHeight": 8231, "took": "8.9563ms"} -2023-12-16T14:26:16.593Z INFO sending PrepareRequest {"height": 8232, "view": 0} -2023-12-16T14:26:16.593Z INFO sending Commit {"height": 8232, "view": 0} -2023-12-16T14:26:16.594Z INFO approving block {"height": 8232, "hash": "25450103acc00055f74313dbbb73290a3ff8192eb22e0ecc17249ca588fcb9a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a51a4fc55c26991b0cf47e6c7106681b76bd2128d97b8c39aa5b0e64b0a3cb7a"} -2023-12-16T14:26:16.595Z INFO initializing dbft {"height": 8233, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:16.596Z debug frostfs-node/morph.go:229 new block {"index": 8232} -2023-12-16T14:26:17.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8232, "blockHeight": 8232, "took": "12.515045ms"} -2023-12-16T14:26:17.595Z INFO sending PrepareRequest {"height": 8233, "view": 0} -2023-12-16T14:26:17.595Z INFO sending Commit {"height": 8233, "view": 0} -2023-12-16T14:26:17.595Z INFO approving block {"height": 8233, "hash": "e643930776a793db452429310fd1535d794cf2414f2c508e62a47348e20157f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25450103acc00055f74313dbbb73290a3ff8192eb22e0ecc17249ca588fcb9a7"} -2023-12-16T14:26:17.597Z INFO initializing dbft {"height": 8234, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:17.598Z debug frostfs-node/morph.go:229 new block {"index": 8233} -2023-12-16T14:26:18.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8233, "blockHeight": 8233, "took": "11.656769ms"} -2023-12-16T14:26:18.597Z INFO sending PrepareRequest {"height": 8234, "view": 0} -2023-12-16T14:26:18.597Z INFO sending Commit {"height": 8234, "view": 0} -2023-12-16T14:26:18.598Z INFO approving block {"height": 8234, "hash": "16c280a47de657d59b698f21be1fb5e0eb07b04fd3c86cb5349dfb24c3c77d27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e643930776a793db452429310fd1535d794cf2414f2c508e62a47348e20157f2"} -2023-12-16T14:26:18.599Z INFO initializing dbft {"height": 8235, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:18.600Z debug frostfs-node/morph.go:229 new block {"index": 8234} -2023-12-16T14:26:19.359Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8234, "blockHeight": 8234, "took": "7.449176ms"} -2023-12-16T14:26:19.599Z INFO sending PrepareRequest {"height": 8235, "view": 0} -2023-12-16T14:26:19.599Z INFO sending Commit {"height": 8235, "view": 0} -2023-12-16T14:26:19.600Z INFO approving block {"height": 8235, "hash": "68925e5a3c7e88c4d3584207e5621271c938bcc28f4e0b6391201c7e3d954594", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16c280a47de657d59b698f21be1fb5e0eb07b04fd3c86cb5349dfb24c3c77d27"} -2023-12-16T14:26:19.601Z INFO initializing dbft {"height": 8236, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:19.602Z debug frostfs-node/morph.go:229 new block {"index": 8235} -2023-12-16T14:26:20.364Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8235, "blockHeight": 8235, "took": "12.352915ms"} -2023-12-16T14:26:20.602Z INFO sending PrepareRequest {"height": 8236, "view": 0} -2023-12-16T14:26:20.602Z INFO sending Commit {"height": 8236, "view": 0} -2023-12-16T14:26:20.603Z INFO approving block {"height": 8236, "hash": "267b06070248fdc2e9bf49672b0a301d4a07341b573985dbc53dfdc4c32efbfb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68925e5a3c7e88c4d3584207e5621271c938bcc28f4e0b6391201c7e3d954594"} -2023-12-16T14:26:20.605Z INFO initializing dbft {"height": 8237, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:20.605Z debug frostfs-node/morph.go:229 new block {"index": 8236} -2023-12-16T14:26:21.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8236, "blockHeight": 8236, "took": "8.61276ms"} -2023-12-16T14:26:21.603Z INFO sending PrepareRequest {"height": 8237, "view": 0} -2023-12-16T14:26:21.604Z INFO sending Commit {"height": 8237, "view": 0} -2023-12-16T14:26:21.604Z INFO approving block {"height": 8237, "hash": "3b2810a56bc0607db50c9bb50abc305da03698a419355ab89a16613ba26892c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "267b06070248fdc2e9bf49672b0a301d4a07341b573985dbc53dfdc4c32efbfb"} -2023-12-16T14:26:21.606Z INFO initializing dbft {"height": 8238, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:21.607Z debug frostfs-node/morph.go:229 new block {"index": 8237} -2023-12-16T14:26:22.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8237, "blockHeight": 8237, "took": "13.649483ms"} -2023-12-16T14:26:22.606Z INFO sending PrepareRequest {"height": 8238, "view": 0} -2023-12-16T14:26:22.607Z INFO sending Commit {"height": 8238, "view": 0} -2023-12-16T14:26:22.607Z INFO approving block {"height": 8238, "hash": "e71fbcc9e4fdd51ce68a62d3a6f92d92474932dc4b7bc72e835d154100832dba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b2810a56bc0607db50c9bb50abc305da03698a419355ab89a16613ba26892c9"} -2023-12-16T14:26:22.609Z INFO initializing dbft {"height": 8239, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:22.609Z debug frostfs-node/morph.go:229 new block {"index": 8238} -2023-12-16T14:26:23.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8238, "blockHeight": 8238, "took": "10.172616ms"} -2023-12-16T14:26:23.608Z INFO sending PrepareRequest {"height": 8239, "view": 0} -2023-12-16T14:26:23.608Z INFO sending Commit {"height": 8239, "view": 0} -2023-12-16T14:26:23.609Z INFO approving block {"height": 8239, "hash": "566dbe25260d8e334c9b9bf99df5ec67186ea97692dedcce8930693ba923bf4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e71fbcc9e4fdd51ce68a62d3a6f92d92474932dc4b7bc72e835d154100832dba"} -2023-12-16T14:26:23.610Z INFO initializing dbft {"height": 8240, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:23.611Z debug frostfs-node/morph.go:229 new block {"index": 8239} -2023-12-16T14:26:24.366Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8239, "blockHeight": 8239, "took": "10.30075ms"} -2023-12-16T14:26:24.610Z INFO sending PrepareRequest {"height": 8240, "view": 0} -2023-12-16T14:26:24.611Z INFO sending Commit {"height": 8240, "view": 0} -2023-12-16T14:26:24.611Z INFO approving block {"height": 8240, "hash": "e08447d12a7c887ae926871ed1b646ec369d5c16009d50a86235e5c6ccb631a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "566dbe25260d8e334c9b9bf99df5ec67186ea97692dedcce8930693ba923bf4f"} -2023-12-16T14:26:24.612Z INFO initializing dbft {"height": 8241, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:24.613Z debug frostfs-node/morph.go:229 new block {"index": 8240} -2023-12-16T14:26:25.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8240, "blockHeight": 8240, "took": "8.937146ms"} -2023-12-16T14:26:25.612Z INFO sending PrepareRequest {"height": 8241, "view": 0} -2023-12-16T14:26:25.612Z INFO sending Commit {"height": 8241, "view": 0} -2023-12-16T14:26:25.612Z INFO approving block {"height": 8241, "hash": "ab2b1d76ba7e9d5c7de8e4475e05b22e56b22b40283fa81868072327c0724c58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e08447d12a7c887ae926871ed1b646ec369d5c16009d50a86235e5c6ccb631a2"} -2023-12-16T14:26:25.614Z INFO initializing dbft {"height": 8242, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:25.615Z debug frostfs-node/morph.go:229 new block {"index": 8241} -2023-12-16T14:26:26.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8241, "blockHeight": 8241, "took": "7.722535ms"} -2023-12-16T14:26:26.613Z INFO sending PrepareRequest {"height": 8242, "view": 0} -2023-12-16T14:26:26.614Z INFO sending Commit {"height": 8242, "view": 0} -2023-12-16T14:26:26.614Z INFO approving block {"height": 8242, "hash": "4014bcf825e19844fd0fad649a12d7a869022ee691e3e7e56f7ed4e1c32aaac7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab2b1d76ba7e9d5c7de8e4475e05b22e56b22b40283fa81868072327c0724c58"} -2023-12-16T14:26:26.615Z INFO initializing dbft {"height": 8243, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:26.616Z debug frostfs-node/morph.go:229 new block {"index": 8242} -2023-12-16T14:26:27.368Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8242, "blockHeight": 8242, "took": "9.525247ms"} -2023-12-16T14:26:27.615Z INFO sending PrepareRequest {"height": 8243, "view": 0} -2023-12-16T14:26:27.615Z INFO sending Commit {"height": 8243, "view": 0} -2023-12-16T14:26:27.615Z INFO approving block {"height": 8243, "hash": "9f32e5fc567e67d0b0ea15017407f312cca59ceaeb2240732d447df66fa29393", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4014bcf825e19844fd0fad649a12d7a869022ee691e3e7e56f7ed4e1c32aaac7"} -2023-12-16T14:26:27.617Z INFO initializing dbft {"height": 8244, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:27.618Z debug frostfs-node/morph.go:229 new block {"index": 8243} -2023-12-16T14:26:28.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8243, "blockHeight": 8243, "took": "7.921961ms"} -2023-12-16T14:26:28.617Z INFO sending PrepareRequest {"height": 8244, "view": 0} -2023-12-16T14:26:28.617Z INFO sending Commit {"height": 8244, "view": 0} -2023-12-16T14:26:28.618Z INFO approving block {"height": 8244, "hash": "0ad593e067203ce08f89601db247759807bad622400378411738fc8f2a6a0365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f32e5fc567e67d0b0ea15017407f312cca59ceaeb2240732d447df66fa29393"} -2023-12-16T14:26:28.619Z INFO initializing dbft {"height": 8245, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:28.620Z debug frostfs-node/morph.go:229 new block {"index": 8244} -2023-12-16T14:26:29.370Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8244, "blockHeight": 8244, "took": "9.441585ms"} -2023-12-16T14:26:29.619Z INFO sending PrepareRequest {"height": 8245, "view": 0} -2023-12-16T14:26:29.619Z INFO sending Commit {"height": 8245, "view": 0} -2023-12-16T14:26:29.620Z INFO approving block {"height": 8245, "hash": "3a8a3a29f57b4cf53335689519143288257dddec25472aea14a8048fc4a45f23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ad593e067203ce08f89601db247759807bad622400378411738fc8f2a6a0365"} -2023-12-16T14:26:29.624Z INFO initializing dbft {"height": 8246, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:29.625Z debug frostfs-node/morph.go:229 new block {"index": 8245} -2023-12-16T14:26:30.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8245, "blockHeight": 8245, "took": "10.930819ms"} -2023-12-16T14:26:30.621Z INFO sending PrepareRequest {"height": 8246, "view": 0} -2023-12-16T14:26:30.621Z INFO sending Commit {"height": 8246, "view": 0} -2023-12-16T14:26:30.622Z INFO approving block {"height": 8246, "hash": "bec59da975c805fa5e4ad1d932f4b5778b226edb7dd2cc47a3715710cc18d8ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a8a3a29f57b4cf53335689519143288257dddec25472aea14a8048fc4a45f23"} -2023-12-16T14:26:30.624Z INFO initializing dbft {"height": 8247, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:30.624Z debug frostfs-node/morph.go:229 new block {"index": 8246} -2023-12-16T14:26:31.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8246, "blockHeight": 8246, "took": "10.333151ms"} -2023-12-16T14:26:31.623Z INFO sending PrepareRequest {"height": 8247, "view": 0} -2023-12-16T14:26:31.623Z INFO sending Commit {"height": 8247, "view": 0} -2023-12-16T14:26:31.624Z INFO approving block {"height": 8247, "hash": "c9306734f567a85c46a7c0371931a796e04e4ddfeecc82ae0dfd3a79495a36ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bec59da975c805fa5e4ad1d932f4b5778b226edb7dd2cc47a3715710cc18d8ef"} -2023-12-16T14:26:31.626Z INFO initializing dbft {"height": 8248, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:31.627Z debug frostfs-node/morph.go:229 new block {"index": 8247} -2023-12-16T14:26:32.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8247, "blockHeight": 8247, "took": "9.395312ms"} -2023-12-16T14:26:32.625Z INFO sending PrepareRequest {"height": 8248, "view": 0} -2023-12-16T14:26:32.625Z INFO sending Commit {"height": 8248, "view": 0} -2023-12-16T14:26:32.625Z INFO approving block {"height": 8248, "hash": "c31a0cc6ccd47c1af6ee7eefc5059be8dd5405affd860b65a4f7baf979747558", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9306734f567a85c46a7c0371931a796e04e4ddfeecc82ae0dfd3a79495a36ba"} -2023-12-16T14:26:32.627Z INFO initializing dbft {"height": 8249, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:32.628Z debug frostfs-node/morph.go:229 new block {"index": 8248} -2023-12-16T14:26:33.377Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8248, "blockHeight": 8248, "took": "12.730937ms"} -2023-12-16T14:26:33.627Z INFO sending PrepareRequest {"height": 8249, "view": 0} -2023-12-16T14:26:33.627Z INFO sending Commit {"height": 8249, "view": 0} -2023-12-16T14:26:33.627Z INFO approving block {"height": 8249, "hash": "853648bab56ba08053179ff180bebba98e53a1b6cecbf6252f8978359044e337", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c31a0cc6ccd47c1af6ee7eefc5059be8dd5405affd860b65a4f7baf979747558"} -2023-12-16T14:26:33.628Z INFO initializing dbft {"height": 8250, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:33.629Z debug frostfs-node/morph.go:229 new block {"index": 8249} -2023-12-16T14:26:34.374Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8249, "blockHeight": 8249, "took": "8.623965ms"} -2023-12-16T14:26:34.629Z INFO sending PrepareRequest {"height": 8250, "view": 0} -2023-12-16T14:26:34.629Z INFO sending Commit {"height": 8250, "view": 0} -2023-12-16T14:26:34.629Z INFO approving block {"height": 8250, "hash": "e82f9018843040fa90582934283e953dea62c2413870276a277bc1a8dee0d3fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "853648bab56ba08053179ff180bebba98e53a1b6cecbf6252f8978359044e337"} -2023-12-16T14:26:34.631Z INFO initializing dbft {"height": 8251, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:34.632Z debug frostfs-node/morph.go:229 new block {"index": 8250} -2023-12-16T14:26:34.635Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:26:34.639Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:26:34.640Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:26:35.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8250, "blockHeight": 8250, "took": "5.999846ms"} -2023-12-16T14:26:35.631Z INFO sending PrepareRequest {"height": 8251, "view": 0} -2023-12-16T14:26:35.631Z INFO sending Commit {"height": 8251, "view": 0} -2023-12-16T14:26:35.631Z INFO approving block {"height": 8251, "hash": "9ab3b95678c5abb4e7b131619c586e54b0be38ab57029cfbec0739cb5caa239f", "tx_count": 2, "merkle": "ba472466608a536f2ac159aab00fbbf7f23e9dbebc6fb9a334e369522f2406e9", "prev": "e82f9018843040fa90582934283e953dea62c2413870276a277bc1a8dee0d3fb"} -2023-12-16T14:26:35.632Z INFO runtime log {"tx": "4935595786cd05ce7a1ee80e65b70286458f82e75163f5a78626673ae9422173", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:26:35.632Z INFO runtime log {"tx": "4935595786cd05ce7a1ee80e65b70286458f82e75163f5a78626673ae9422173", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:26:35.634Z INFO initializing dbft {"height": 8252, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:35.635Z debug frostfs-node/morph.go:229 new block {"index": 8251} -2023-12-16T14:26:36.380Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8251, "blockHeight": 8251, "took": "13.777633ms"} -2023-12-16T14:26:36.633Z INFO sending PrepareRequest {"height": 8252, "view": 0} -2023-12-16T14:26:36.633Z INFO sending Commit {"height": 8252, "view": 0} -2023-12-16T14:26:36.633Z INFO approving block {"height": 8252, "hash": "1728621355849600b5f1382f450db92e2614b1c3002246584e9da3e8131c3594", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ab3b95678c5abb4e7b131619c586e54b0be38ab57029cfbec0739cb5caa239f"} -2023-12-16T14:26:36.635Z INFO initializing dbft {"height": 8253, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:36.635Z debug frostfs-node/morph.go:229 new block {"index": 8252} -2023-12-16T14:26:37.377Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8252, "blockHeight": 8252, "took": "9.650152ms"} -2023-12-16T14:26:37.634Z INFO sending PrepareRequest {"height": 8253, "view": 0} -2023-12-16T14:26:37.635Z INFO sending Commit {"height": 8253, "view": 0} -2023-12-16T14:26:37.635Z INFO approving block {"height": 8253, "hash": "02506856df8bad68e92d048059af9cd35ea575be9711781adb37dca09d356ce1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1728621355849600b5f1382f450db92e2614b1c3002246584e9da3e8131c3594"} -2023-12-16T14:26:37.636Z INFO initializing dbft {"height": 8254, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:37.637Z debug frostfs-node/morph.go:229 new block {"index": 8253} -2023-12-16T14:26:37.642Z INFO runtime log {"tx": "a3ef0d94e29346d32dce0d19fec2ec5af2a104c5cca740500bf86bbd6cadb918", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:26:37.644Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 35 epoch for daughters"} -2023-12-16T14:26:38.375Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8253, "blockHeight": 8253, "took": "6.944192ms"} -2023-12-16T14:26:38.636Z INFO sending PrepareRequest {"height": 8254, "view": 0} -2023-12-16T14:26:38.636Z INFO sending Commit {"height": 8254, "view": 0} -2023-12-16T14:26:38.636Z INFO approving block {"height": 8254, "hash": "dd2a421523ca499afb2b421a3683ab5a5ecf513d7113baea8ca69ae8bd26ec45", "tx_count": 1, "merkle": "83bc798d275802c93d4681d1bf749563d05cdc31d679d066ed262dc5b1c0f6af", "prev": "02506856df8bad68e92d048059af9cd35ea575be9711781adb37dca09d356ce1"} -2023-12-16T14:26:38.637Z INFO runtime log {"tx": "aff6c0b1c52d26ed66d079d631dc5cd0639574bfd181463dc90258278d79bc83", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:26:38.638Z INFO initializing dbft {"height": 8255, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:38.639Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 35} -2023-12-16T14:26:38.639Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 35} -2023-12-16T14:26:38.640Z debug frostfs-node/morph.go:229 new block {"index": 8254} -2023-12-16T14:26:39.379Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 8254, "blockHeight": 8254, "took": "10.259258ms"} -2023-12-16T14:26:39.638Z INFO sending PrepareRequest {"height": 8255, "view": 0} -2023-12-16T14:26:39.638Z INFO sending Commit {"height": 8255, "view": 0} -2023-12-16T14:26:39.638Z INFO approving block {"height": 8255, "hash": "6e243d9bc5edd7e2be1d863d464a5ad8e5a9ec8fe9a5594bd6896cab75de8be3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd2a421523ca499afb2b421a3683ab5a5ecf513d7113baea8ca69ae8bd26ec45"} -2023-12-16T14:26:39.640Z INFO initializing dbft {"height": 8256, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:39.641Z debug frostfs-node/morph.go:229 new block {"index": 8255} -2023-12-16T14:26:40.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8255, "blockHeight": 8255, "took": "11.099284ms"} -2023-12-16T14:26:40.639Z INFO sending PrepareRequest {"height": 8256, "view": 0} -2023-12-16T14:26:40.639Z INFO sending Commit {"height": 8256, "view": 0} -2023-12-16T14:26:40.640Z INFO approving block {"height": 8256, "hash": "740f5885653008960d31d8e34e4048ebf7f6d024a754b26898d3e5abdb20dcbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e243d9bc5edd7e2be1d863d464a5ad8e5a9ec8fe9a5594bd6896cab75de8be3"} -2023-12-16T14:26:40.642Z INFO initializing dbft {"height": 8257, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:40.643Z debug frostfs-node/morph.go:229 new block {"index": 8256} -2023-12-16T14:26:41.378Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8256, "blockHeight": 8256, "took": "6.801398ms"} -2023-12-16T14:26:41.641Z INFO sending PrepareRequest {"height": 8257, "view": 0} -2023-12-16T14:26:41.641Z INFO sending Commit {"height": 8257, "view": 0} -2023-12-16T14:26:41.642Z INFO approving block {"height": 8257, "hash": "325c5dbdfe89504b00628a1940b8d608c828037f298a535a4ab3622a1ef6fac3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "740f5885653008960d31d8e34e4048ebf7f6d024a754b26898d3e5abdb20dcbb"} -2023-12-16T14:26:41.643Z INFO initializing dbft {"height": 8258, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:41.644Z debug frostfs-node/morph.go:229 new block {"index": 8257} -2023-12-16T14:26:42.379Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8257, "blockHeight": 8257, "took": "7.282533ms"} -2023-12-16T14:26:42.643Z INFO sending PrepareRequest {"height": 8258, "view": 0} -2023-12-16T14:26:42.643Z INFO sending Commit {"height": 8258, "view": 0} -2023-12-16T14:26:42.644Z INFO approving block {"height": 8258, "hash": "7028d85111f98d246da6a9cfad72a1b04010061a2396d5201279d1f7e161b7a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "325c5dbdfe89504b00628a1940b8d608c828037f298a535a4ab3622a1ef6fac3"} -2023-12-16T14:26:42.645Z INFO initializing dbft {"height": 8259, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:42.646Z debug frostfs-node/morph.go:229 new block {"index": 8258} -2023-12-16T14:26:43.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8258, "blockHeight": 8258, "took": "10.97822ms"} -2023-12-16T14:26:43.645Z INFO sending PrepareRequest {"height": 8259, "view": 0} -2023-12-16T14:26:43.645Z INFO sending Commit {"height": 8259, "view": 0} -2023-12-16T14:26:43.646Z INFO approving block {"height": 8259, "hash": "b7da77f09df0b41089b77fc7ef31398f8ebf39c88e237095d9f27499ce38e1d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7028d85111f98d246da6a9cfad72a1b04010061a2396d5201279d1f7e161b7a6"} -2023-12-16T14:26:43.647Z INFO initializing dbft {"height": 8260, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:43.648Z debug frostfs-node/morph.go:229 new block {"index": 8259} -2023-12-16T14:26:44.382Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8259, "blockHeight": 8259, "took": "8.595171ms"} -2023-12-16T14:26:44.647Z INFO sending PrepareRequest {"height": 8260, "view": 0} -2023-12-16T14:26:44.647Z INFO sending Commit {"height": 8260, "view": 0} -2023-12-16T14:26:44.648Z INFO approving block {"height": 8260, "hash": "87b9b6570197d1eeca296b03a827eb2a3e903fbaffe9d44de4a35d86d238ed52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7da77f09df0b41089b77fc7ef31398f8ebf39c88e237095d9f27499ce38e1d9"} -2023-12-16T14:26:44.649Z INFO initializing dbft {"height": 8261, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:44.650Z debug frostfs-node/morph.go:229 new block {"index": 8260} -2023-12-16T14:26:45.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8260, "blockHeight": 8260, "took": "9.302352ms"} -2023-12-16T14:26:45.649Z INFO sending PrepareRequest {"height": 8261, "view": 0} -2023-12-16T14:26:45.649Z INFO sending Commit {"height": 8261, "view": 0} -2023-12-16T14:26:45.650Z INFO approving block {"height": 8261, "hash": "c84b56cc68985851c4c6f6c43cea49292f10cc7ceff00bbe23e6a4e4a259582f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87b9b6570197d1eeca296b03a827eb2a3e903fbaffe9d44de4a35d86d238ed52"} -2023-12-16T14:26:45.651Z INFO initializing dbft {"height": 8262, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:45.652Z debug frostfs-node/morph.go:229 new block {"index": 8261} -2023-12-16T14:26:46.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8261, "blockHeight": 8261, "took": "8.918201ms"} -2023-12-16T14:26:46.651Z INFO sending PrepareRequest {"height": 8262, "view": 0} -2023-12-16T14:26:46.651Z INFO sending Commit {"height": 8262, "view": 0} -2023-12-16T14:26:46.651Z INFO approving block {"height": 8262, "hash": "db4f04ebdbd1a2a78ee7a92e22ab312ba37c37797a05e22baff7ba11397e3558", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c84b56cc68985851c4c6f6c43cea49292f10cc7ceff00bbe23e6a4e4a259582f"} -2023-12-16T14:26:46.653Z INFO initializing dbft {"height": 8263, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:46.654Z debug frostfs-node/morph.go:229 new block {"index": 8262} -2023-12-16T14:26:47.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8262, "blockHeight": 8262, "took": "11.289579ms"} -2023-12-16T14:26:47.653Z INFO sending PrepareRequest {"height": 8263, "view": 0} -2023-12-16T14:26:47.654Z INFO sending Commit {"height": 8263, "view": 0} -2023-12-16T14:26:47.654Z INFO approving block {"height": 8263, "hash": "5f3a19d6e3faf9f7795cd76ecf2f1a88dca91a769b3fb604099a54a8cc632666", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db4f04ebdbd1a2a78ee7a92e22ab312ba37c37797a05e22baff7ba11397e3558"} -2023-12-16T14:26:47.656Z INFO initializing dbft {"height": 8264, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:47.657Z debug frostfs-node/morph.go:229 new block {"index": 8263} -2023-12-16T14:26:48.387Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8263, "blockHeight": 8263, "took": "11.398333ms"} -2023-12-16T14:26:48.656Z INFO sending PrepareRequest {"height": 8264, "view": 0} -2023-12-16T14:26:48.656Z INFO sending Commit {"height": 8264, "view": 0} -2023-12-16T14:26:48.656Z INFO approving block {"height": 8264, "hash": "0078bfd99a438608dde2c93b6868af4827311886545c1452b1aed58be00db0fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f3a19d6e3faf9f7795cd76ecf2f1a88dca91a769b3fb604099a54a8cc632666"} -2023-12-16T14:26:48.658Z INFO initializing dbft {"height": 8265, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:48.659Z debug frostfs-node/morph.go:229 new block {"index": 8264} -2023-12-16T14:26:49.388Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8264, "blockHeight": 8264, "took": "10.762783ms"} -2023-12-16T14:26:49.657Z INFO sending PrepareRequest {"height": 8265, "view": 0} -2023-12-16T14:26:49.658Z INFO sending Commit {"height": 8265, "view": 0} -2023-12-16T14:26:49.658Z INFO approving block {"height": 8265, "hash": "a32da7b90fbe69c7160f593220f5fb0579be02e1a82306167978d3f1bcf84c4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0078bfd99a438608dde2c93b6868af4827311886545c1452b1aed58be00db0fd"} -2023-12-16T14:26:49.660Z INFO initializing dbft {"height": 8266, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:49.660Z debug frostfs-node/morph.go:229 new block {"index": 8265} -2023-12-16T14:26:50.388Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8265, "blockHeight": 8265, "took": "10.020042ms"} -2023-12-16T14:26:50.660Z INFO sending PrepareRequest {"height": 8266, "view": 0} -2023-12-16T14:26:50.660Z INFO sending Commit {"height": 8266, "view": 0} -2023-12-16T14:26:50.660Z INFO approving block {"height": 8266, "hash": "659f26419fbb8fb81286b8872108df0722caf984011da8805f821d0a1a224bbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a32da7b90fbe69c7160f593220f5fb0579be02e1a82306167978d3f1bcf84c4c"} -2023-12-16T14:26:50.662Z INFO initializing dbft {"height": 8267, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:50.663Z debug frostfs-node/morph.go:229 new block {"index": 8266} -2023-12-16T14:26:51.389Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8266, "blockHeight": 8266, "took": "9.444185ms"} -2023-12-16T14:26:51.662Z INFO sending PrepareRequest {"height": 8267, "view": 0} -2023-12-16T14:26:51.662Z INFO sending Commit {"height": 8267, "view": 0} -2023-12-16T14:26:51.663Z INFO approving block {"height": 8267, "hash": "9566bc9e094dde633ef4a3a667ad6e2fde53afb3de5d1065782f6c57413e8b2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "659f26419fbb8fb81286b8872108df0722caf984011da8805f821d0a1a224bbc"} -2023-12-16T14:26:51.664Z INFO initializing dbft {"height": 8268, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:51.665Z debug frostfs-node/morph.go:229 new block {"index": 8267} -2023-12-16T14:26:52.391Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8267, "blockHeight": 8267, "took": "11.033217ms"} -2023-12-16T14:26:52.663Z INFO sending PrepareRequest {"height": 8268, "view": 0} -2023-12-16T14:26:52.664Z INFO sending Commit {"height": 8268, "view": 0} -2023-12-16T14:26:52.664Z INFO approving block {"height": 8268, "hash": "634b8282a1fc46decc22b3724c8e0aab50941e8dd8ccefe3e9d16584493ca08f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9566bc9e094dde633ef4a3a667ad6e2fde53afb3de5d1065782f6c57413e8b2b"} -2023-12-16T14:26:52.665Z INFO initializing dbft {"height": 8269, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:52.666Z debug frostfs-node/morph.go:229 new block {"index": 8268} -2023-12-16T14:26:53.391Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8268, "blockHeight": 8268, "took": "10.353395ms"} -2023-12-16T14:26:53.666Z INFO sending PrepareRequest {"height": 8269, "view": 0} -2023-12-16T14:26:53.666Z INFO sending Commit {"height": 8269, "view": 0} -2023-12-16T14:26:53.666Z INFO approving block {"height": 8269, "hash": "c1f72cfa512e7d1a8ee9fa6b663e5d95e6ed4a80730bee9d3c158e0e7ca39790", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "634b8282a1fc46decc22b3724c8e0aab50941e8dd8ccefe3e9d16584493ca08f"} -2023-12-16T14:26:53.668Z INFO initializing dbft {"height": 8270, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:53.669Z debug frostfs-node/morph.go:229 new block {"index": 8269} -2023-12-16T14:26:54.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8269, "blockHeight": 8269, "took": "9.884858ms"} -2023-12-16T14:26:54.668Z INFO sending PrepareRequest {"height": 8270, "view": 0} -2023-12-16T14:26:54.668Z INFO sending Commit {"height": 8270, "view": 0} -2023-12-16T14:26:54.669Z INFO approving block {"height": 8270, "hash": "01f8d895082fe1d81dc54fafc80ec37eba7552ee3802e2a124f2ad2313951049", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c1f72cfa512e7d1a8ee9fa6b663e5d95e6ed4a80730bee9d3c158e0e7ca39790"} -2023-12-16T14:26:54.670Z INFO initializing dbft {"height": 8271, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:54.671Z debug frostfs-node/morph.go:229 new block {"index": 8270} -2023-12-16T14:26:55.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8270, "blockHeight": 8270, "took": "13.165372ms"} -2023-12-16T14:26:55.670Z INFO sending PrepareRequest {"height": 8271, "view": 0} -2023-12-16T14:26:55.671Z INFO sending Commit {"height": 8271, "view": 0} -2023-12-16T14:26:55.671Z INFO approving block {"height": 8271, "hash": "998c021871b4fde4ac6236f4a9278060f7ef116c40ea15e245a31f4e2c2e6d88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01f8d895082fe1d81dc54fafc80ec37eba7552ee3802e2a124f2ad2313951049"} -2023-12-16T14:26:55.673Z INFO initializing dbft {"height": 8272, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:55.673Z debug frostfs-node/morph.go:229 new block {"index": 8271} -2023-12-16T14:26:56.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8271, "blockHeight": 8271, "took": "7.614542ms"} -2023-12-16T14:26:56.672Z INFO sending PrepareRequest {"height": 8272, "view": 0} -2023-12-16T14:26:56.672Z INFO sending Commit {"height": 8272, "view": 0} -2023-12-16T14:26:56.672Z INFO approving block {"height": 8272, "hash": "9a49624cbcb826600373a316455dbf8dc0c136111fb91ddf475b3fe2f0f08c01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "998c021871b4fde4ac6236f4a9278060f7ef116c40ea15e245a31f4e2c2e6d88"} -2023-12-16T14:26:56.674Z INFO initializing dbft {"height": 8273, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:56.674Z debug frostfs-node/morph.go:229 new block {"index": 8272} -2023-12-16T14:26:57.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8272, "blockHeight": 8272, "took": "10.277909ms"} -2023-12-16T14:26:57.674Z INFO sending PrepareRequest {"height": 8273, "view": 0} -2023-12-16T14:26:57.675Z INFO sending Commit {"height": 8273, "view": 0} -2023-12-16T14:26:57.675Z INFO approving block {"height": 8273, "hash": "6c4fa4b2a09cba32255931c12861fe8b2e086d514c92829d47b6bef1e6c8a8ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a49624cbcb826600373a316455dbf8dc0c136111fb91ddf475b3fe2f0f08c01"} -2023-12-16T14:26:57.677Z INFO initializing dbft {"height": 8274, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:57.679Z debug frostfs-node/morph.go:229 new block {"index": 8273} -2023-12-16T14:26:58.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8273, "blockHeight": 8273, "took": "8.683133ms"} -2023-12-16T14:26:58.677Z INFO sending PrepareRequest {"height": 8274, "view": 0} -2023-12-16T14:26:58.677Z INFO sending Commit {"height": 8274, "view": 0} -2023-12-16T14:26:58.678Z INFO approving block {"height": 8274, "hash": "e503d437d641d923797a70817da06e5cfe73477bda206a81ad6f312d25c432a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c4fa4b2a09cba32255931c12861fe8b2e086d514c92829d47b6bef1e6c8a8ec"} -2023-12-16T14:26:58.679Z INFO initializing dbft {"height": 8275, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:58.680Z debug frostfs-node/morph.go:229 new block {"index": 8274} -2023-12-16T14:26:59.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8274, "blockHeight": 8274, "took": "8.980293ms"} -2023-12-16T14:26:59.679Z INFO sending PrepareRequest {"height": 8275, "view": 0} -2023-12-16T14:26:59.679Z INFO sending Commit {"height": 8275, "view": 0} -2023-12-16T14:26:59.679Z INFO approving block {"height": 8275, "hash": "2b292c1c1fb7b1dae3cd85f8a1634fc46fe1215a3c84df0cb201b0eefabec1a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e503d437d641d923797a70817da06e5cfe73477bda206a81ad6f312d25c432a5"} -2023-12-16T14:26:59.681Z INFO initializing dbft {"height": 8276, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:26:59.682Z debug frostfs-node/morph.go:229 new block {"index": 8275} -2023-12-16T14:27:00.394Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8275, "blockHeight": 8275, "took": "6.779634ms"} -2023-12-16T14:27:00.680Z INFO sending PrepareRequest {"height": 8276, "view": 0} -2023-12-16T14:27:00.680Z INFO sending Commit {"height": 8276, "view": 0} -2023-12-16T14:27:00.681Z INFO approving block {"height": 8276, "hash": "5d91ebbda4b7659e370c4b1eafd930f2b46fc78e15298bc4c727135097f1df47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b292c1c1fb7b1dae3cd85f8a1634fc46fe1215a3c84df0cb201b0eefabec1a9"} -2023-12-16T14:27:00.682Z INFO initializing dbft {"height": 8277, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:00.683Z debug frostfs-node/morph.go:229 new block {"index": 8276} -2023-12-16T14:27:01.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8276, "blockHeight": 8276, "took": "7.341152ms"} -2023-12-16T14:27:01.682Z INFO sending PrepareRequest {"height": 8277, "view": 0} -2023-12-16T14:27:01.682Z INFO sending Commit {"height": 8277, "view": 0} -2023-12-16T14:27:01.683Z INFO approving block {"height": 8277, "hash": "85e57c8c03cf573916de1087d3abff40390d47167e8ea56891a833da68c8294c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d91ebbda4b7659e370c4b1eafd930f2b46fc78e15298bc4c727135097f1df47"} -2023-12-16T14:27:01.684Z INFO initializing dbft {"height": 8278, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:01.686Z debug frostfs-node/morph.go:229 new block {"index": 8277} -2023-12-16T14:27:02.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8277, "blockHeight": 8277, "took": "12.224704ms"} -2023-12-16T14:27:02.684Z INFO sending PrepareRequest {"height": 8278, "view": 0} -2023-12-16T14:27:02.684Z INFO sending Commit {"height": 8278, "view": 0} -2023-12-16T14:27:02.684Z INFO approving block {"height": 8278, "hash": "9bccc0e34f582bb6aa18fa3d6faa657409a9ffcb00f868b54220c49c48bc793c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85e57c8c03cf573916de1087d3abff40390d47167e8ea56891a833da68c8294c"} -2023-12-16T14:27:02.686Z INFO initializing dbft {"height": 8279, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:02.687Z debug frostfs-node/morph.go:229 new block {"index": 8278} -2023-12-16T14:27:03.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8278, "blockHeight": 8278, "took": "10.206807ms"} -2023-12-16T14:27:03.685Z INFO sending PrepareRequest {"height": 8279, "view": 0} -2023-12-16T14:27:03.686Z INFO sending Commit {"height": 8279, "view": 0} -2023-12-16T14:27:03.686Z INFO approving block {"height": 8279, "hash": "6c33a33606781ea42e26dde44e2d4be9d86dd5764586897c78cbed5a1ffe90ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9bccc0e34f582bb6aa18fa3d6faa657409a9ffcb00f868b54220c49c48bc793c"} -2023-12-16T14:27:03.688Z INFO initializing dbft {"height": 8280, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:03.689Z debug frostfs-node/morph.go:229 new block {"index": 8279} -2023-12-16T14:27:04.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8279, "blockHeight": 8279, "took": "10.998746ms"} -2023-12-16T14:27:04.687Z INFO sending PrepareRequest {"height": 8280, "view": 0} -2023-12-16T14:27:04.687Z INFO sending Commit {"height": 8280, "view": 0} -2023-12-16T14:27:04.687Z INFO approving block {"height": 8280, "hash": "9f1d4a6dbd6effe489b076cc4ae060d5bb5251d48c9aab73934b25c1da2e93fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c33a33606781ea42e26dde44e2d4be9d86dd5764586897c78cbed5a1ffe90ba"} -2023-12-16T14:27:04.688Z INFO initializing dbft {"height": 8281, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:04.689Z debug frostfs-node/morph.go:229 new block {"index": 8280} -2023-12-16T14:27:05.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8280, "blockHeight": 8280, "took": "10.223078ms"} -2023-12-16T14:27:05.688Z INFO sending PrepareRequest {"height": 8281, "view": 0} -2023-12-16T14:27:05.688Z INFO sending Commit {"height": 8281, "view": 0} -2023-12-16T14:27:05.689Z INFO approving block {"height": 8281, "hash": "f30bfc2a8f8c379e6920224cb397416eae3ca5c84c19dbbe75af3066d574b05e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f1d4a6dbd6effe489b076cc4ae060d5bb5251d48c9aab73934b25c1da2e93fa"} -2023-12-16T14:27:05.691Z INFO initializing dbft {"height": 8282, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:05.692Z debug frostfs-node/morph.go:229 new block {"index": 8281} -2023-12-16T14:27:06.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8281, "blockHeight": 8281, "took": "8.788291ms"} -2023-12-16T14:27:06.692Z INFO sending PrepareRequest {"height": 8282, "view": 0} -2023-12-16T14:27:06.692Z INFO sending Commit {"height": 8282, "view": 0} -2023-12-16T14:27:06.692Z INFO approving block {"height": 8282, "hash": "c90cd9e4fad7ad1201d2a776892fdda3ea16823bfa8d68f67b07030b47808596", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f30bfc2a8f8c379e6920224cb397416eae3ca5c84c19dbbe75af3066d574b05e"} -2023-12-16T14:27:06.694Z INFO initializing dbft {"height": 8283, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:06.695Z debug frostfs-node/morph.go:229 new block {"index": 8282} -2023-12-16T14:27:07.402Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8282, "blockHeight": 8282, "took": "9.004147ms"} -2023-12-16T14:27:07.694Z INFO sending PrepareRequest {"height": 8283, "view": 0} -2023-12-16T14:27:07.694Z INFO sending Commit {"height": 8283, "view": 0} -2023-12-16T14:27:07.695Z INFO approving block {"height": 8283, "hash": "cae0359667738af5c68655f4d11bb3e091130acff4115b13394731b7e2f78df2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c90cd9e4fad7ad1201d2a776892fdda3ea16823bfa8d68f67b07030b47808596"} -2023-12-16T14:27:07.697Z INFO initializing dbft {"height": 8284, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:07.697Z debug frostfs-node/morph.go:229 new block {"index": 8283} -2023-12-16T14:27:08.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8283, "blockHeight": 8283, "took": "15.395885ms"} -2023-12-16T14:27:08.696Z INFO sending PrepareRequest {"height": 8284, "view": 0} -2023-12-16T14:27:08.696Z INFO sending Commit {"height": 8284, "view": 0} -2023-12-16T14:27:08.696Z INFO approving block {"height": 8284, "hash": "ab1e0bd03f71e4ecff70ca346ff252b45762f80ed8bdb008be41eb730e234bad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cae0359667738af5c68655f4d11bb3e091130acff4115b13394731b7e2f78df2"} -2023-12-16T14:27:08.698Z INFO initializing dbft {"height": 8285, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:08.699Z debug frostfs-node/morph.go:229 new block {"index": 8284} -2023-12-16T14:27:09.403Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8284, "blockHeight": 8284, "took": "9.138499ms"} -2023-12-16T14:27:09.697Z INFO sending PrepareRequest {"height": 8285, "view": 0} -2023-12-16T14:27:09.698Z INFO sending Commit {"height": 8285, "view": 0} -2023-12-16T14:27:09.698Z INFO approving block {"height": 8285, "hash": "c549f49b9bda5b37997a19be444268db37b30651b5ae391b489119a33caf3df1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab1e0bd03f71e4ecff70ca346ff252b45762f80ed8bdb008be41eb730e234bad"} -2023-12-16T14:27:09.700Z INFO initializing dbft {"height": 8286, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:09.700Z debug frostfs-node/morph.go:229 new block {"index": 8285} -2023-12-16T14:27:10.407Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8285, "blockHeight": 8285, "took": "12.151334ms"} -2023-12-16T14:27:10.699Z INFO sending PrepareRequest {"height": 8286, "view": 0} -2023-12-16T14:27:10.700Z INFO sending Commit {"height": 8286, "view": 0} -2023-12-16T14:27:10.700Z INFO approving block {"height": 8286, "hash": "7defa49915423a2ef30c2b47e45ea27ad5ff58e84a6605fd8caa86733e4799e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c549f49b9bda5b37997a19be444268db37b30651b5ae391b489119a33caf3df1"} -2023-12-16T14:27:10.702Z INFO initializing dbft {"height": 8287, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:10.703Z debug frostfs-node/morph.go:229 new block {"index": 8286} -2023-12-16T14:27:11.407Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8286, "blockHeight": 8286, "took": "11.395111ms"} -2023-12-16T14:27:11.702Z INFO sending PrepareRequest {"height": 8287, "view": 0} -2023-12-16T14:27:11.702Z INFO sending Commit {"height": 8287, "view": 0} -2023-12-16T14:27:11.702Z INFO approving block {"height": 8287, "hash": "908b91e333b8ddc737c0ad3075cc7052e066dcdad65bd07fb3894df3060cd97d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7defa49915423a2ef30c2b47e45ea27ad5ff58e84a6605fd8caa86733e4799e0"} -2023-12-16T14:27:11.704Z INFO initializing dbft {"height": 8288, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:11.705Z debug frostfs-node/morph.go:229 new block {"index": 8287} -2023-12-16T14:27:12.408Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8287, "blockHeight": 8287, "took": "11.921637ms"} -2023-12-16T14:27:12.704Z INFO sending PrepareRequest {"height": 8288, "view": 0} -2023-12-16T14:27:12.704Z INFO sending Commit {"height": 8288, "view": 0} -2023-12-16T14:27:12.704Z INFO approving block {"height": 8288, "hash": "d5de220dac127a2b9d9c5ab8405c2f88e9475a24c8dc899b1f9a08d55ef2b252", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "908b91e333b8ddc737c0ad3075cc7052e066dcdad65bd07fb3894df3060cd97d"} -2023-12-16T14:27:12.706Z INFO initializing dbft {"height": 8289, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:12.707Z debug frostfs-node/morph.go:229 new block {"index": 8288} -2023-12-16T14:27:13.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8288, "blockHeight": 8288, "took": "11.983186ms"} -2023-12-16T14:27:13.706Z INFO sending PrepareRequest {"height": 8289, "view": 0} -2023-12-16T14:27:13.706Z INFO sending Commit {"height": 8289, "view": 0} -2023-12-16T14:27:13.707Z INFO approving block {"height": 8289, "hash": "273b03607019112a9b0d03a9ec0404a24750f44001694e4c26a3a7af74955604", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5de220dac127a2b9d9c5ab8405c2f88e9475a24c8dc899b1f9a08d55ef2b252"} -2023-12-16T14:27:13.708Z INFO initializing dbft {"height": 8290, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:13.709Z debug frostfs-node/morph.go:229 new block {"index": 8289} -2023-12-16T14:27:14.407Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8289, "blockHeight": 8289, "took": "8.94624ms"} -2023-12-16T14:27:14.707Z INFO sending PrepareRequest {"height": 8290, "view": 0} -2023-12-16T14:27:14.708Z INFO sending Commit {"height": 8290, "view": 0} -2023-12-16T14:27:14.708Z INFO approving block {"height": 8290, "hash": "14a70b094bcb5f0645a8ccd0bd5dcc429be9f2327c847e2d9bf194a301fdf7d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "273b03607019112a9b0d03a9ec0404a24750f44001694e4c26a3a7af74955604"} -2023-12-16T14:27:14.709Z INFO initializing dbft {"height": 8291, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:14.710Z debug frostfs-node/morph.go:229 new block {"index": 8290} -2023-12-16T14:27:15.408Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8290, "blockHeight": 8290, "took": "8.92672ms"} -2023-12-16T14:27:15.709Z INFO sending PrepareRequest {"height": 8291, "view": 0} -2023-12-16T14:27:15.709Z INFO sending Commit {"height": 8291, "view": 0} -2023-12-16T14:27:15.710Z INFO approving block {"height": 8291, "hash": "d0baf65e6eb7b4418b26285dc33b110d987a6c17f94da0db9de948b1931d4340", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14a70b094bcb5f0645a8ccd0bd5dcc429be9f2327c847e2d9bf194a301fdf7d5"} -2023-12-16T14:27:15.711Z INFO initializing dbft {"height": 8292, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:15.712Z debug frostfs-node/morph.go:229 new block {"index": 8291} -2023-12-16T14:27:16.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8291, "blockHeight": 8291, "took": "12.028221ms"} -2023-12-16T14:27:16.711Z INFO sending PrepareRequest {"height": 8292, "view": 0} -2023-12-16T14:27:16.712Z INFO sending Commit {"height": 8292, "view": 0} -2023-12-16T14:27:16.712Z INFO approving block {"height": 8292, "hash": "7d4b30b31d1ac805b103b0eba6213ceeff58bde0a3c5c41b4ead9f9b4f067ab3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0baf65e6eb7b4418b26285dc33b110d987a6c17f94da0db9de948b1931d4340"} -2023-12-16T14:27:16.713Z INFO initializing dbft {"height": 8293, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:16.714Z debug frostfs-node/morph.go:229 new block {"index": 8292} -2023-12-16T14:27:17.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8292, "blockHeight": 8292, "took": "8.53902ms"} -2023-12-16T14:27:17.713Z INFO sending PrepareRequest {"height": 8293, "view": 0} -2023-12-16T14:27:17.713Z INFO sending Commit {"height": 8293, "view": 0} -2023-12-16T14:27:17.714Z INFO approving block {"height": 8293, "hash": "72709061f5642c7e01ca61f5a22424eee1407731b4ef8bf786629a15dc3011fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d4b30b31d1ac805b103b0eba6213ceeff58bde0a3c5c41b4ead9f9b4f067ab3"} -2023-12-16T14:27:17.715Z INFO initializing dbft {"height": 8294, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:17.715Z debug frostfs-node/morph.go:229 new block {"index": 8293} -2023-12-16T14:27:18.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8293, "blockHeight": 8293, "took": "7.290683ms"} -2023-12-16T14:27:18.715Z INFO sending PrepareRequest {"height": 8294, "view": 0} -2023-12-16T14:27:18.716Z INFO sending Commit {"height": 8294, "view": 0} -2023-12-16T14:27:18.716Z INFO approving block {"height": 8294, "hash": "c60e70e2f4bc8d504c89e3d63e6b816da323bf003c3fb2cdfda189e90a25409d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72709061f5642c7e01ca61f5a22424eee1407731b4ef8bf786629a15dc3011fa"} -2023-12-16T14:27:18.718Z INFO initializing dbft {"height": 8295, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:18.719Z debug frostfs-node/morph.go:229 new block {"index": 8294} -2023-12-16T14:27:19.414Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8294, "blockHeight": 8294, "took": "10.917609ms"} -2023-12-16T14:27:19.717Z INFO sending PrepareRequest {"height": 8295, "view": 0} -2023-12-16T14:27:19.717Z INFO sending Commit {"height": 8295, "view": 0} -2023-12-16T14:27:19.718Z INFO approving block {"height": 8295, "hash": "07949e89a82cc729d28e857d932d35683425f63573c96282a5d5d2482ac8a147", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c60e70e2f4bc8d504c89e3d63e6b816da323bf003c3fb2cdfda189e90a25409d"} -2023-12-16T14:27:19.719Z INFO initializing dbft {"height": 8296, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:19.720Z debug frostfs-node/morph.go:229 new block {"index": 8295} -2023-12-16T14:27:20.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8295, "blockHeight": 8295, "took": "9.205428ms"} -2023-12-16T14:27:20.718Z INFO sending PrepareRequest {"height": 8296, "view": 0} -2023-12-16T14:27:20.719Z INFO sending Commit {"height": 8296, "view": 0} -2023-12-16T14:27:20.719Z INFO approving block {"height": 8296, "hash": "f40ce5efc9477a11fd8ed93e3fb0433d0200892e593bbcd4ed73fe53bdb62f4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07949e89a82cc729d28e857d932d35683425f63573c96282a5d5d2482ac8a147"} -2023-12-16T14:27:20.721Z INFO initializing dbft {"height": 8297, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:20.722Z debug frostfs-node/morph.go:229 new block {"index": 8296} -2023-12-16T14:27:21.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8296, "blockHeight": 8296, "took": "10.545057ms"} -2023-12-16T14:27:21.720Z INFO sending PrepareRequest {"height": 8297, "view": 0} -2023-12-16T14:27:21.721Z INFO sending Commit {"height": 8297, "view": 0} -2023-12-16T14:27:21.721Z INFO approving block {"height": 8297, "hash": "f4faa5667d29ac33c62697e2e5e3091a0326f6f745d904ecdc64e44701c05890", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f40ce5efc9477a11fd8ed93e3fb0433d0200892e593bbcd4ed73fe53bdb62f4c"} -2023-12-16T14:27:21.722Z INFO initializing dbft {"height": 8298, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:21.723Z debug frostfs-node/morph.go:229 new block {"index": 8297} -2023-12-16T14:27:22.416Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8297, "blockHeight": 8297, "took": "10.358096ms"} -2023-12-16T14:27:22.722Z INFO sending PrepareRequest {"height": 8298, "view": 0} -2023-12-16T14:27:22.722Z INFO sending Commit {"height": 8298, "view": 0} -2023-12-16T14:27:22.723Z INFO approving block {"height": 8298, "hash": "3ad5254bfac2ffeda8713f59c15860881962c48ca8bc457b55fd6135f2b94e4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f4faa5667d29ac33c62697e2e5e3091a0326f6f745d904ecdc64e44701c05890"} -2023-12-16T14:27:22.724Z INFO initializing dbft {"height": 8299, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:22.725Z debug frostfs-node/morph.go:229 new block {"index": 8298} -2023-12-16T14:27:23.414Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8298, "blockHeight": 8298, "took": "8.25279ms"} -2023-12-16T14:27:23.723Z INFO sending PrepareRequest {"height": 8299, "view": 0} -2023-12-16T14:27:23.724Z INFO sending Commit {"height": 8299, "view": 0} -2023-12-16T14:27:23.724Z INFO approving block {"height": 8299, "hash": "ca2e51a9398506e5a7910bcd188b8c61482790238cd72a221f07d19dbf557334", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ad5254bfac2ffeda8713f59c15860881962c48ca8bc457b55fd6135f2b94e4c"} -2023-12-16T14:27:23.729Z INFO initializing dbft {"height": 8300, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:23.729Z debug frostfs-node/morph.go:229 new block {"index": 8299} -2023-12-16T14:27:24.417Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8299, "blockHeight": 8299, "took": "10.739252ms"} -2023-12-16T14:27:24.727Z INFO sending PrepareRequest {"height": 8300, "view": 0} -2023-12-16T14:27:24.727Z INFO sending Commit {"height": 8300, "view": 0} -2023-12-16T14:27:24.727Z INFO approving block {"height": 8300, "hash": "b09b73487e4cd5b050139db272feb33f795918385ba287383816ee789d5940e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca2e51a9398506e5a7910bcd188b8c61482790238cd72a221f07d19dbf557334"} -2023-12-16T14:27:24.729Z INFO initializing dbft {"height": 8301, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:24.730Z debug frostfs-node/morph.go:229 new block {"index": 8300} -2023-12-16T14:27:24.733Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:27:24.738Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:27:24.738Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:27:25.418Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8300, "blockHeight": 8300, "took": "10.034912ms"} -2023-12-16T14:27:25.729Z INFO sending PrepareRequest {"height": 8301, "view": 0} -2023-12-16T14:27:25.729Z INFO sending Commit {"height": 8301, "view": 0} -2023-12-16T14:27:25.730Z INFO approving block {"height": 8301, "hash": "cdc14e30147492e15dd231b0af6ddf017defcea0782737878a07a4fd6e29833b", "tx_count": 2, "merkle": "b9aaa5a780fba901e2a9e17442dd9a01b78d8843bfe83c99fef63c80b7c78a66", "prev": "b09b73487e4cd5b050139db272feb33f795918385ba287383816ee789d5940e9"} -2023-12-16T14:27:25.731Z INFO runtime log {"tx": "a86f21f73c678814b3bfd16262804563892270c89ed89a40b43c628e06d44882", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:27:25.732Z INFO runtime log {"tx": "a86f21f73c678814b3bfd16262804563892270c89ed89a40b43c628e06d44882", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:27:25.733Z INFO initializing dbft {"height": 8302, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:25.735Z debug frostfs-node/morph.go:229 new block {"index": 8301} -2023-12-16T14:27:26.425Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8301, "blockHeight": 8301, "took": "15.899983ms"} -2023-12-16T14:27:26.731Z INFO sending PrepareRequest {"height": 8302, "view": 0} -2023-12-16T14:27:26.731Z INFO sending Commit {"height": 8302, "view": 0} -2023-12-16T14:27:26.732Z INFO approving block {"height": 8302, "hash": "f25943987e658c466d3fdfdda543ff6bc6e7ca5c33489886977b760be591a738", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdc14e30147492e15dd231b0af6ddf017defcea0782737878a07a4fd6e29833b"} -2023-12-16T14:27:26.733Z INFO initializing dbft {"height": 8303, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:26.735Z debug frostfs-node/morph.go:229 new block {"index": 8302} -2023-12-16T14:27:27.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8302, "blockHeight": 8302, "took": "9.576355ms"} -2023-12-16T14:27:27.733Z INFO sending PrepareRequest {"height": 8303, "view": 0} -2023-12-16T14:27:27.733Z INFO sending Commit {"height": 8303, "view": 0} -2023-12-16T14:27:27.734Z INFO approving block {"height": 8303, "hash": "3a9e6cb57af587ac3dccfa378b71b2fdd4e422df1d9315e04a0402072c833858", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f25943987e658c466d3fdfdda543ff6bc6e7ca5c33489886977b760be591a738"} -2023-12-16T14:27:27.735Z INFO initializing dbft {"height": 8304, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:27.736Z debug frostfs-node/morph.go:229 new block {"index": 8303} -2023-12-16T14:27:28.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8303, "blockHeight": 8303, "took": "10.342311ms"} -2023-12-16T14:27:28.735Z INFO sending PrepareRequest {"height": 8304, "view": 0} -2023-12-16T14:27:28.735Z INFO sending Commit {"height": 8304, "view": 0} -2023-12-16T14:27:28.735Z INFO approving block {"height": 8304, "hash": "45be7a516cdf4e911c2b658bea90f9c2d9655b851ca900040aa734e12de73abf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a9e6cb57af587ac3dccfa378b71b2fdd4e422df1d9315e04a0402072c833858"} -2023-12-16T14:27:28.737Z INFO initializing dbft {"height": 8305, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:28.738Z debug frostfs-node/morph.go:229 new block {"index": 8304} -2023-12-16T14:27:29.422Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8304, "blockHeight": 8304, "took": "9.741863ms"} -2023-12-16T14:27:29.737Z INFO sending PrepareRequest {"height": 8305, "view": 0} -2023-12-16T14:27:29.737Z INFO sending Commit {"height": 8305, "view": 0} -2023-12-16T14:27:29.737Z INFO approving block {"height": 8305, "hash": "23188942d54344ba7c279653436e671c93df6ab39a173b9bb046c6e2aaeee71a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45be7a516cdf4e911c2b658bea90f9c2d9655b851ca900040aa734e12de73abf"} -2023-12-16T14:27:29.739Z INFO initializing dbft {"height": 8306, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:29.740Z debug frostfs-node/morph.go:229 new block {"index": 8305} -2023-12-16T14:27:30.422Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8305, "blockHeight": 8305, "took": "9.178897ms"} -2023-12-16T14:27:30.739Z INFO sending PrepareRequest {"height": 8306, "view": 0} -2023-12-16T14:27:30.740Z INFO sending Commit {"height": 8306, "view": 0} -2023-12-16T14:27:30.740Z INFO approving block {"height": 8306, "hash": "4506bdd6c0f5394a15700d0aed7680bbe031026dd364beee2368f153d9e7f3a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23188942d54344ba7c279653436e671c93df6ab39a173b9bb046c6e2aaeee71a"} -2023-12-16T14:27:30.742Z INFO initializing dbft {"height": 8307, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:30.742Z debug frostfs-node/morph.go:229 new block {"index": 8306} -2023-12-16T14:27:31.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8306, "blockHeight": 8306, "took": "9.511847ms"} -2023-12-16T14:27:31.742Z INFO sending PrepareRequest {"height": 8307, "view": 0} -2023-12-16T14:27:31.743Z INFO sending Commit {"height": 8307, "view": 0} -2023-12-16T14:27:31.743Z INFO approving block {"height": 8307, "hash": "39dc7ed5a36226e044221c455edfbdcb2aef9cb061f63800360a7bbc0f996d40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4506bdd6c0f5394a15700d0aed7680bbe031026dd364beee2368f153d9e7f3a6"} -2023-12-16T14:27:31.744Z INFO initializing dbft {"height": 8308, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:31.745Z debug frostfs-node/morph.go:229 new block {"index": 8307} -2023-12-16T14:27:32.422Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8307, "blockHeight": 8307, "took": "7.519459ms"} -2023-12-16T14:27:32.744Z INFO sending PrepareRequest {"height": 8308, "view": 0} -2023-12-16T14:27:32.744Z INFO sending Commit {"height": 8308, "view": 0} -2023-12-16T14:27:32.745Z INFO approving block {"height": 8308, "hash": "38666d229cf96805cc447b3ad6c35a7ed90b1fdb3b2c36ed3df42ee6a8570cdf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39dc7ed5a36226e044221c455edfbdcb2aef9cb061f63800360a7bbc0f996d40"} -2023-12-16T14:27:32.746Z INFO initializing dbft {"height": 8309, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:32.747Z debug frostfs-node/morph.go:229 new block {"index": 8308} -2023-12-16T14:27:33.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8308, "blockHeight": 8308, "took": "10.839963ms"} -2023-12-16T14:27:33.746Z INFO sending PrepareRequest {"height": 8309, "view": 0} -2023-12-16T14:27:33.746Z INFO sending Commit {"height": 8309, "view": 0} -2023-12-16T14:27:33.747Z INFO approving block {"height": 8309, "hash": "f576d874e62bd2efe021191ac9111850caa0f7c0058ea4d2fdda7ed8b8209ed0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38666d229cf96805cc447b3ad6c35a7ed90b1fdb3b2c36ed3df42ee6a8570cdf"} -2023-12-16T14:27:33.748Z INFO initializing dbft {"height": 8310, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:33.749Z debug frostfs-node/morph.go:229 new block {"index": 8309} -2023-12-16T14:27:34.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8309, "blockHeight": 8309, "took": "10.115375ms"} -2023-12-16T14:27:34.748Z INFO sending PrepareRequest {"height": 8310, "view": 0} -2023-12-16T14:27:34.748Z INFO sending Commit {"height": 8310, "view": 0} -2023-12-16T14:27:34.749Z INFO approving block {"height": 8310, "hash": "20324ee54f0edf939b9c3bc417cad771befe2fa18f8d4de370d30d840161c0c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f576d874e62bd2efe021191ac9111850caa0f7c0058ea4d2fdda7ed8b8209ed0"} -2023-12-16T14:27:34.750Z INFO initializing dbft {"height": 8311, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:34.751Z debug frostfs-node/morph.go:229 new block {"index": 8310} -2023-12-16T14:27:35.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8310, "blockHeight": 8310, "took": "8.91591ms"} -2023-12-16T14:27:35.750Z INFO sending PrepareRequest {"height": 8311, "view": 0} -2023-12-16T14:27:35.751Z INFO sending Commit {"height": 8311, "view": 0} -2023-12-16T14:27:35.751Z INFO approving block {"height": 8311, "hash": "68bc1ec87a7de2ca65172ac9fcb3b9ec7730141f46d2f131da2efbd5b1ded6ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20324ee54f0edf939b9c3bc417cad771befe2fa18f8d4de370d30d840161c0c3"} -2023-12-16T14:27:35.753Z INFO initializing dbft {"height": 8312, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:35.753Z debug frostfs-node/morph.go:229 new block {"index": 8311} -2023-12-16T14:27:36.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8311, "blockHeight": 8311, "took": "13.162483ms"} -2023-12-16T14:27:36.752Z INFO sending PrepareRequest {"height": 8312, "view": 0} -2023-12-16T14:27:36.752Z INFO sending Commit {"height": 8312, "view": 0} -2023-12-16T14:27:36.753Z INFO approving block {"height": 8312, "hash": "49a9167961f9557258165b3e439a1eb35143727306898c1ea73b1fe83cc14b03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68bc1ec87a7de2ca65172ac9fcb3b9ec7730141f46d2f131da2efbd5b1ded6ea"} -2023-12-16T14:27:36.755Z INFO initializing dbft {"height": 8313, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:36.756Z debug frostfs-node/morph.go:229 new block {"index": 8312} -2023-12-16T14:27:37.430Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8312, "blockHeight": 8312, "took": "10.593202ms"} -2023-12-16T14:27:37.754Z INFO sending PrepareRequest {"height": 8313, "view": 0} -2023-12-16T14:27:37.754Z INFO sending Commit {"height": 8313, "view": 0} -2023-12-16T14:27:37.755Z INFO approving block {"height": 8313, "hash": "e89b818fb9af86bc79518c27cc8e306cac7274696efcb891e844503373d07a2e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49a9167961f9557258165b3e439a1eb35143727306898c1ea73b1fe83cc14b03"} -2023-12-16T14:27:37.756Z INFO initializing dbft {"height": 8314, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:37.757Z debug frostfs-node/morph.go:229 new block {"index": 8313} -2023-12-16T14:27:37.761Z info settlement/calls.go:61 start basic income collection {"epoch": 35} -2023-12-16T14:27:37.763Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 35, "iteration": 1, "error": "no data for 0 iteration in 35 epoch for consumers's trusts"} -2023-12-16T14:27:38.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8313, "blockHeight": 8313, "took": "11.799384ms"} -2023-12-16T14:27:38.755Z INFO sending PrepareRequest {"height": 8314, "view": 0} -2023-12-16T14:27:38.756Z INFO sending Commit {"height": 8314, "view": 0} -2023-12-16T14:27:38.756Z INFO approving block {"height": 8314, "hash": "23568f1d72c31ab0cb56d50302cba1f21fda4fe49b3ea48a2c558f8b83326176", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e89b818fb9af86bc79518c27cc8e306cac7274696efcb891e844503373d07a2e"} -2023-12-16T14:27:38.758Z INFO initializing dbft {"height": 8315, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:38.759Z debug frostfs-node/morph.go:229 new block {"index": 8314} -2023-12-16T14:27:39.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8314, "blockHeight": 8314, "took": "10.737394ms"} -2023-12-16T14:27:39.758Z INFO sending PrepareRequest {"height": 8315, "view": 0} -2023-12-16T14:27:39.758Z INFO sending Commit {"height": 8315, "view": 0} -2023-12-16T14:27:39.759Z INFO approving block {"height": 8315, "hash": "5f5c5cf4a54455641379550e461043f57b2c1f50e15c6669104511c9b380b488", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23568f1d72c31ab0cb56d50302cba1f21fda4fe49b3ea48a2c558f8b83326176"} -2023-12-16T14:27:39.760Z INFO initializing dbft {"height": 8316, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:39.760Z debug frostfs-node/morph.go:229 new block {"index": 8315} -2023-12-16T14:27:40.430Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8315, "blockHeight": 8315, "took": "8.441236ms"} -2023-12-16T14:27:40.759Z INFO sending PrepareRequest {"height": 8316, "view": 0} -2023-12-16T14:27:40.760Z INFO sending Commit {"height": 8316, "view": 0} -2023-12-16T14:27:40.760Z INFO approving block {"height": 8316, "hash": "77b86669ac4cb7e650b4c56f4edf7c029b0a5921f0b0cfa149b14050014242bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f5c5cf4a54455641379550e461043f57b2c1f50e15c6669104511c9b380b488"} -2023-12-16T14:27:40.762Z INFO initializing dbft {"height": 8317, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:40.762Z debug frostfs-node/morph.go:229 new block {"index": 8316} -2023-12-16T14:27:41.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8316, "blockHeight": 8316, "took": "10.230059ms"} -2023-12-16T14:27:41.762Z INFO sending PrepareRequest {"height": 8317, "view": 0} -2023-12-16T14:27:41.762Z INFO sending Commit {"height": 8317, "view": 0} -2023-12-16T14:27:41.762Z INFO approving block {"height": 8317, "hash": "50cc39ee18617c171f84c35b97f1abe8480a202d06ad15d31303f5d942447696", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77b86669ac4cb7e650b4c56f4edf7c029b0a5921f0b0cfa149b14050014242bf"} -2023-12-16T14:27:41.764Z INFO initializing dbft {"height": 8318, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:41.765Z debug frostfs-node/morph.go:229 new block {"index": 8317} -2023-12-16T14:27:42.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8317, "blockHeight": 8317, "took": "9.735885ms"} -2023-12-16T14:27:42.764Z INFO sending PrepareRequest {"height": 8318, "view": 0} -2023-12-16T14:27:42.764Z INFO sending Commit {"height": 8318, "view": 0} -2023-12-16T14:27:42.764Z INFO approving block {"height": 8318, "hash": "ac7503c954fe8f209f63b9e65eb0c172e21043e69dac0c11a4fb5186608e6a25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "50cc39ee18617c171f84c35b97f1abe8480a202d06ad15d31303f5d942447696"} -2023-12-16T14:27:42.766Z INFO initializing dbft {"height": 8319, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:42.766Z debug frostfs-node/morph.go:229 new block {"index": 8318} -2023-12-16T14:27:43.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8318, "blockHeight": 8318, "took": "12.251437ms"} -2023-12-16T14:27:43.765Z INFO sending PrepareRequest {"height": 8319, "view": 0} -2023-12-16T14:27:43.766Z INFO sending Commit {"height": 8319, "view": 0} -2023-12-16T14:27:43.766Z INFO approving block {"height": 8319, "hash": "c5bf19d6d4b533dd7d6a8e86bd01a61e2fd8b3742bdad74a3823dbab6bf46f92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac7503c954fe8f209f63b9e65eb0c172e21043e69dac0c11a4fb5186608e6a25"} -2023-12-16T14:27:43.768Z INFO initializing dbft {"height": 8320, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:43.769Z debug frostfs-node/morph.go:229 new block {"index": 8319} -2023-12-16T14:27:44.434Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8319, "blockHeight": 8319, "took": "9.59953ms"} -2023-12-16T14:27:44.767Z INFO sending PrepareRequest {"height": 8320, "view": 0} -2023-12-16T14:27:44.768Z INFO sending Commit {"height": 8320, "view": 0} -2023-12-16T14:27:44.768Z INFO approving block {"height": 8320, "hash": "a1b89593e19f1fbf69dac103a2bd6af0fdbe16b07714501d562a3698478e5918", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5bf19d6d4b533dd7d6a8e86bd01a61e2fd8b3742bdad74a3823dbab6bf46f92"} -2023-12-16T14:27:44.769Z INFO initializing dbft {"height": 8321, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:44.770Z debug frostfs-node/morph.go:229 new block {"index": 8320} -2023-12-16T14:27:45.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8320, "blockHeight": 8320, "took": "7.303953ms"} -2023-12-16T14:27:45.769Z INFO sending PrepareRequest {"height": 8321, "view": 0} -2023-12-16T14:27:45.770Z INFO sending Commit {"height": 8321, "view": 0} -2023-12-16T14:27:45.770Z INFO approving block {"height": 8321, "hash": "46f7c19011b14a166740afa28474180bcfd2c4ae2849b6e3b232e27059cc1654", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1b89593e19f1fbf69dac103a2bd6af0fdbe16b07714501d562a3698478e5918"} -2023-12-16T14:27:45.771Z INFO initializing dbft {"height": 8322, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:45.772Z debug frostfs-node/morph.go:229 new block {"index": 8321} -2023-12-16T14:27:46.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8321, "blockHeight": 8321, "took": "10.252295ms"} -2023-12-16T14:27:46.771Z INFO sending PrepareRequest {"height": 8322, "view": 0} -2023-12-16T14:27:46.772Z INFO sending Commit {"height": 8322, "view": 0} -2023-12-16T14:27:46.772Z INFO approving block {"height": 8322, "hash": "0796799230206f7af14cfb541ffb3c6862d66b2f0d4cd5d8679bc264d2b20ee0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46f7c19011b14a166740afa28474180bcfd2c4ae2849b6e3b232e27059cc1654"} -2023-12-16T14:27:46.774Z INFO initializing dbft {"height": 8323, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:46.774Z debug frostfs-node/morph.go:229 new block {"index": 8322} -2023-12-16T14:27:47.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8322, "blockHeight": 8322, "took": "8.916817ms"} -2023-12-16T14:27:47.774Z INFO sending PrepareRequest {"height": 8323, "view": 0} -2023-12-16T14:27:47.774Z INFO sending Commit {"height": 8323, "view": 0} -2023-12-16T14:27:47.774Z INFO approving block {"height": 8323, "hash": "1efa3c3c0ba8280171c5d61742fac28d188f3a3fdd7f136f5fef1d1670a122f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0796799230206f7af14cfb541ffb3c6862d66b2f0d4cd5d8679bc264d2b20ee0"} -2023-12-16T14:27:47.776Z INFO initializing dbft {"height": 8324, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:47.777Z debug frostfs-node/morph.go:229 new block {"index": 8323} -2023-12-16T14:27:48.442Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8323, "blockHeight": 8323, "took": "13.046411ms"} -2023-12-16T14:27:48.776Z INFO sending PrepareRequest {"height": 8324, "view": 0} -2023-12-16T14:27:48.776Z INFO sending Commit {"height": 8324, "view": 0} -2023-12-16T14:27:48.777Z INFO approving block {"height": 8324, "hash": "27803d80731d081b33de58a3b5364df7bdcb43d53d6738904d8f2236cea4cd6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1efa3c3c0ba8280171c5d61742fac28d188f3a3fdd7f136f5fef1d1670a122f2"} -2023-12-16T14:27:48.778Z INFO initializing dbft {"height": 8325, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:48.779Z debug frostfs-node/morph.go:229 new block {"index": 8324} -2023-12-16T14:27:49.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8324, "blockHeight": 8324, "took": "10.322601ms"} -2023-12-16T14:27:49.778Z INFO sending PrepareRequest {"height": 8325, "view": 0} -2023-12-16T14:27:49.778Z INFO sending Commit {"height": 8325, "view": 0} -2023-12-16T14:27:49.778Z INFO approving block {"height": 8325, "hash": "b32608ec8702b1f0885c136207dfac460f437ad5a05b745abe1f9573f56a79e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27803d80731d081b33de58a3b5364df7bdcb43d53d6738904d8f2236cea4cd6a"} -2023-12-16T14:27:49.780Z INFO initializing dbft {"height": 8326, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:49.781Z debug frostfs-node/morph.go:229 new block {"index": 8325} -2023-12-16T14:27:50.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8325, "blockHeight": 8325, "took": "8.830148ms"} -2023-12-16T14:27:50.779Z INFO sending PrepareRequest {"height": 8326, "view": 0} -2023-12-16T14:27:50.779Z INFO sending Commit {"height": 8326, "view": 0} -2023-12-16T14:27:50.780Z INFO approving block {"height": 8326, "hash": "bfd6d68c61ed56024ee967e017bc061db3eadab64ec2fa163534ec147d04953e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b32608ec8702b1f0885c136207dfac460f437ad5a05b745abe1f9573f56a79e7"} -2023-12-16T14:27:50.781Z INFO initializing dbft {"height": 8327, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:50.781Z debug frostfs-node/morph.go:229 new block {"index": 8326} -2023-12-16T14:27:51.443Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8326, "blockHeight": 8326, "took": "9.771495ms"} -2023-12-16T14:27:51.781Z INFO sending PrepareRequest {"height": 8327, "view": 0} -2023-12-16T14:27:51.781Z INFO sending Commit {"height": 8327, "view": 0} -2023-12-16T14:27:51.782Z INFO approving block {"height": 8327, "hash": "fa1d1a7626808692682d602c6bca8670021f679e1d8c5933cac3c9e3e558e1c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfd6d68c61ed56024ee967e017bc061db3eadab64ec2fa163534ec147d04953e"} -2023-12-16T14:27:51.784Z INFO initializing dbft {"height": 8328, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:51.784Z debug frostfs-node/morph.go:229 new block {"index": 8327} -2023-12-16T14:27:52.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8327, "blockHeight": 8327, "took": "13.380679ms"} -2023-12-16T14:27:52.783Z INFO sending PrepareRequest {"height": 8328, "view": 0} -2023-12-16T14:27:52.783Z INFO sending Commit {"height": 8328, "view": 0} -2023-12-16T14:27:52.784Z INFO approving block {"height": 8328, "hash": "bbb996cf6f7ec31f651090985fb7239f36f3e75a1f76358e670d70db9e1ab92c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa1d1a7626808692682d602c6bca8670021f679e1d8c5933cac3c9e3e558e1c2"} -2023-12-16T14:27:52.785Z INFO initializing dbft {"height": 8329, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:52.786Z debug frostfs-node/morph.go:229 new block {"index": 8328} -2023-12-16T14:27:53.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8328, "blockHeight": 8328, "took": "9.871632ms"} -2023-12-16T14:27:53.784Z INFO sending PrepareRequest {"height": 8329, "view": 0} -2023-12-16T14:27:53.785Z INFO sending Commit {"height": 8329, "view": 0} -2023-12-16T14:27:53.785Z INFO approving block {"height": 8329, "hash": "493e917fc0cc3ab275b6917b46e96724e0681458ec59bc8cfd0a816671bb514f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbb996cf6f7ec31f651090985fb7239f36f3e75a1f76358e670d70db9e1ab92c"} -2023-12-16T14:27:53.787Z INFO initializing dbft {"height": 8330, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:53.788Z debug frostfs-node/morph.go:229 new block {"index": 8329} -2023-12-16T14:27:54.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8329, "blockHeight": 8329, "took": "9.548898ms"} -2023-12-16T14:27:54.786Z INFO sending PrepareRequest {"height": 8330, "view": 0} -2023-12-16T14:27:54.787Z INFO sending Commit {"height": 8330, "view": 0} -2023-12-16T14:27:54.787Z INFO approving block {"height": 8330, "hash": "a8acc52a349eb9eb6bbed0554919d64280c3d8e82663ca08d1aaf186e7c3df91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "493e917fc0cc3ab275b6917b46e96724e0681458ec59bc8cfd0a816671bb514f"} -2023-12-16T14:27:54.789Z INFO initializing dbft {"height": 8331, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:54.790Z debug frostfs-node/morph.go:229 new block {"index": 8330} -2023-12-16T14:27:55.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8330, "blockHeight": 8330, "took": "13.735056ms"} -2023-12-16T14:27:55.789Z INFO sending PrepareRequest {"height": 8331, "view": 0} -2023-12-16T14:27:55.789Z INFO sending Commit {"height": 8331, "view": 0} -2023-12-16T14:27:55.790Z INFO approving block {"height": 8331, "hash": "8eae7c1f1d2889d602eb928e8b008d415bd2067a43a12caa85398f4f879107d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8acc52a349eb9eb6bbed0554919d64280c3d8e82663ca08d1aaf186e7c3df91"} -2023-12-16T14:27:55.791Z INFO initializing dbft {"height": 8332, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:55.792Z debug frostfs-node/morph.go:229 new block {"index": 8331} -2023-12-16T14:27:56.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8331, "blockHeight": 8331, "took": "11.127974ms"} -2023-12-16T14:27:56.795Z INFO sending PrepareRequest {"height": 8332, "view": 0} -2023-12-16T14:27:56.795Z INFO sending Commit {"height": 8332, "view": 0} -2023-12-16T14:27:56.796Z INFO approving block {"height": 8332, "hash": "1ec5ad78ed3ad53245ac068c71cbeddfb4c57616e2dfea736b2c1c9d2aac9f6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8eae7c1f1d2889d602eb928e8b008d415bd2067a43a12caa85398f4f879107d4"} -2023-12-16T14:27:56.797Z INFO initializing dbft {"height": 8333, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:56.798Z debug frostfs-node/morph.go:229 new block {"index": 8332} -2023-12-16T14:27:57.479Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8332, "blockHeight": 8332, "took": "42.346613ms"} -2023-12-16T14:27:57.797Z INFO sending PrepareRequest {"height": 8333, "view": 0} -2023-12-16T14:27:57.798Z INFO sending Commit {"height": 8333, "view": 0} -2023-12-16T14:27:57.798Z INFO approving block {"height": 8333, "hash": "b555d84cb14372936b9251410ca06c503efeac0fffaf6b09f87f6643c5187d9a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ec5ad78ed3ad53245ac068c71cbeddfb4c57616e2dfea736b2c1c9d2aac9f6c"} -2023-12-16T14:27:57.799Z INFO initializing dbft {"height": 8334, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:57.800Z debug frostfs-node/morph.go:229 new block {"index": 8333} -2023-12-16T14:27:58.443Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8333, "blockHeight": 8333, "took": "5.673178ms"} -2023-12-16T14:27:58.799Z INFO sending PrepareRequest {"height": 8334, "view": 0} -2023-12-16T14:27:58.799Z INFO sending Commit {"height": 8334, "view": 0} -2023-12-16T14:27:58.799Z INFO approving block {"height": 8334, "hash": "be7d415819339e719e44f8182dfb24929655ab118cd890c9856a33ad494c8120", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b555d84cb14372936b9251410ca06c503efeac0fffaf6b09f87f6643c5187d9a"} -2023-12-16T14:27:58.800Z INFO initializing dbft {"height": 8335, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:58.801Z debug frostfs-node/morph.go:229 new block {"index": 8334} -2023-12-16T14:27:59.443Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8334, "blockHeight": 8334, "took": "4.695297ms"} -2023-12-16T14:27:59.801Z INFO sending PrepareRequest {"height": 8335, "view": 0} -2023-12-16T14:27:59.801Z INFO sending Commit {"height": 8335, "view": 0} -2023-12-16T14:27:59.801Z INFO approving block {"height": 8335, "hash": "fcf55746432a6e250a8dd1edf0e2512cae83e8fa6a6f314c5dd9d2030f83cdb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be7d415819339e719e44f8182dfb24929655ab118cd890c9856a33ad494c8120"} -2023-12-16T14:27:59.802Z INFO initializing dbft {"height": 8336, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:27:59.802Z debug frostfs-node/morph.go:229 new block {"index": 8335} -2023-12-16T14:28:00.443Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8335, "blockHeight": 8335, "took": "4.578204ms"} -2023-12-16T14:28:00.802Z INFO sending PrepareRequest {"height": 8336, "view": 0} -2023-12-16T14:28:00.802Z INFO sending Commit {"height": 8336, "view": 0} -2023-12-16T14:28:00.802Z INFO approving block {"height": 8336, "hash": "507d330f87edacf5161a8683b67cd8739a47199329d943f85e706fb16a9bab2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fcf55746432a6e250a8dd1edf0e2512cae83e8fa6a6f314c5dd9d2030f83cdb7"} -2023-12-16T14:28:00.803Z INFO initializing dbft {"height": 8337, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:00.803Z debug frostfs-node/morph.go:229 new block {"index": 8336} -2023-12-16T14:28:01.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8336, "blockHeight": 8336, "took": "4.425018ms"} -2023-12-16T14:28:01.803Z INFO sending PrepareRequest {"height": 8337, "view": 0} -2023-12-16T14:28:01.803Z INFO sending Commit {"height": 8337, "view": 0} -2023-12-16T14:28:01.804Z INFO approving block {"height": 8337, "hash": "ad4c878e864f063778504cfcd350d97d508f3aa9eaa94a07ea718e87ad5184a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "507d330f87edacf5161a8683b67cd8739a47199329d943f85e706fb16a9bab2c"} -2023-12-16T14:28:01.805Z INFO initializing dbft {"height": 8338, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:01.805Z debug frostfs-node/morph.go:229 new block {"index": 8337} -2023-12-16T14:28:02.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8337, "blockHeight": 8337, "took": "6.823399ms"} -2023-12-16T14:28:02.805Z INFO sending PrepareRequest {"height": 8338, "view": 0} -2023-12-16T14:28:02.805Z INFO sending Commit {"height": 8338, "view": 0} -2023-12-16T14:28:02.805Z INFO approving block {"height": 8338, "hash": "4e5109f8f6657af376f410be11b7c2e9059231617cd7e15b9ed88b38b74091cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad4c878e864f063778504cfcd350d97d508f3aa9eaa94a07ea718e87ad5184a6"} -2023-12-16T14:28:02.806Z INFO initializing dbft {"height": 8339, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:02.807Z debug frostfs-node/morph.go:229 new block {"index": 8338} -2023-12-16T14:28:03.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8338, "blockHeight": 8338, "took": "4.905124ms"} -2023-12-16T14:28:03.807Z INFO sending PrepareRequest {"height": 8339, "view": 0} -2023-12-16T14:28:03.807Z INFO sending Commit {"height": 8339, "view": 0} -2023-12-16T14:28:03.807Z INFO approving block {"height": 8339, "hash": "99089bd83cc69bb6438c7f0e2011333616060b4e94eab44a46331d02e6cbf736", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e5109f8f6657af376f410be11b7c2e9059231617cd7e15b9ed88b38b74091cb"} -2023-12-16T14:28:03.808Z INFO initializing dbft {"height": 8340, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:03.808Z debug frostfs-node/morph.go:229 new block {"index": 8339} -2023-12-16T14:28:04.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8339, "blockHeight": 8339, "took": "8.733415ms"} -2023-12-16T14:28:04.808Z INFO sending PrepareRequest {"height": 8340, "view": 0} -2023-12-16T14:28:04.808Z INFO sending Commit {"height": 8340, "view": 0} -2023-12-16T14:28:04.809Z INFO approving block {"height": 8340, "hash": "12105c0df8b84394df2b8e8cf4c867a570e354578de5d5f421e84ecd5caa996c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99089bd83cc69bb6438c7f0e2011333616060b4e94eab44a46331d02e6cbf736"} -2023-12-16T14:28:04.809Z INFO initializing dbft {"height": 8341, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:04.810Z debug frostfs-node/morph.go:229 new block {"index": 8340} -2023-12-16T14:28:05.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8340, "blockHeight": 8340, "took": "8.318573ms"} -2023-12-16T14:28:05.810Z INFO sending PrepareRequest {"height": 8341, "view": 0} -2023-12-16T14:28:05.810Z INFO sending Commit {"height": 8341, "view": 0} -2023-12-16T14:28:05.811Z INFO approving block {"height": 8341, "hash": "6e91347fb7ad6338c810d536aa6512ee1bd0bf6fc28c80910c139fa67cb8e20c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12105c0df8b84394df2b8e8cf4c867a570e354578de5d5f421e84ecd5caa996c"} -2023-12-16T14:28:05.812Z INFO initializing dbft {"height": 8342, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:05.813Z debug frostfs-node/morph.go:229 new block {"index": 8341} -2023-12-16T14:28:06.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8341, "blockHeight": 8341, "took": "6.763538ms"} -2023-12-16T14:28:06.815Z INFO sending PrepareRequest {"height": 8342, "view": 0} -2023-12-16T14:28:06.817Z INFO sending Commit {"height": 8342, "view": 0} -2023-12-16T14:28:06.819Z INFO approving block {"height": 8342, "hash": "ca2cbb4cf46ef230551fedbaf9a27345bc696477d2d92937510352ba9e46db73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e91347fb7ad6338c810d536aa6512ee1bd0bf6fc28c80910c139fa67cb8e20c"} -2023-12-16T14:28:06.826Z INFO initializing dbft {"height": 8343, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:06.829Z debug frostfs-node/morph.go:229 new block {"index": 8342} -2023-12-16T14:28:07.448Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8342, "blockHeight": 8342, "took": "4.761614ms"} -2023-12-16T14:28:07.820Z INFO sending PrepareRequest {"height": 8343, "view": 0} -2023-12-16T14:28:07.821Z INFO sending Commit {"height": 8343, "view": 0} -2023-12-16T14:28:07.821Z INFO approving block {"height": 8343, "hash": "497a95bde70b8ebab304584692272cdd98a6b6e5e728b1514d6c95be717d6a8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca2cbb4cf46ef230551fedbaf9a27345bc696477d2d92937510352ba9e46db73"} -2023-12-16T14:28:07.822Z INFO initializing dbft {"height": 8344, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:07.822Z debug frostfs-node/morph.go:229 new block {"index": 8343} -2023-12-16T14:28:08.453Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8343, "blockHeight": 8343, "took": "8.830009ms"} -2023-12-16T14:28:08.823Z INFO sending PrepareRequest {"height": 8344, "view": 0} -2023-12-16T14:28:08.823Z INFO sending Commit {"height": 8344, "view": 0} -2023-12-16T14:28:08.823Z INFO approving block {"height": 8344, "hash": "5bcc194b257d87b4805c5fb52f27f447ac4906ad48fff24418a05c745898745c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "497a95bde70b8ebab304584692272cdd98a6b6e5e728b1514d6c95be717d6a8b"} -2023-12-16T14:28:08.825Z INFO initializing dbft {"height": 8345, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:08.826Z debug frostfs-node/morph.go:229 new block {"index": 8344} -2023-12-16T14:28:09.452Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8344, "blockHeight": 8344, "took": "6.84195ms"} -2023-12-16T14:28:09.824Z INFO sending PrepareRequest {"height": 8345, "view": 0} -2023-12-16T14:28:09.824Z INFO sending Commit {"height": 8345, "view": 0} -2023-12-16T14:28:09.824Z INFO approving block {"height": 8345, "hash": "96c8aaac7ba1dcef4167b9b5dacda8f83dd18d943be5fbd9327e3c34a911b737", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5bcc194b257d87b4805c5fb52f27f447ac4906ad48fff24418a05c745898745c"} -2023-12-16T14:28:09.825Z INFO initializing dbft {"height": 8346, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:09.826Z debug frostfs-node/morph.go:229 new block {"index": 8345} -2023-12-16T14:28:10.451Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8345, "blockHeight": 8345, "took": "5.051727ms"} -2023-12-16T14:28:10.826Z INFO sending PrepareRequest {"height": 8346, "view": 0} -2023-12-16T14:28:10.826Z INFO sending Commit {"height": 8346, "view": 0} -2023-12-16T14:28:10.826Z INFO approving block {"height": 8346, "hash": "7c34d45f6e2e7567c86ea31b5be2b58dcbfa65735c9e09fa359c309f51a36c7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96c8aaac7ba1dcef4167b9b5dacda8f83dd18d943be5fbd9327e3c34a911b737"} -2023-12-16T14:28:10.827Z INFO initializing dbft {"height": 8347, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:10.828Z debug frostfs-node/morph.go:229 new block {"index": 8346} -2023-12-16T14:28:11.452Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8346, "blockHeight": 8346, "took": "6.048347ms"} -2023-12-16T14:28:11.827Z INFO sending PrepareRequest {"height": 8347, "view": 0} -2023-12-16T14:28:11.828Z INFO sending Commit {"height": 8347, "view": 0} -2023-12-16T14:28:11.828Z INFO approving block {"height": 8347, "hash": "1e7b1dc08b3741c1da27c5ea3af78c15fd68572b945bd68ebbfa70d19e84de7c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c34d45f6e2e7567c86ea31b5be2b58dcbfa65735c9e09fa359c309f51a36c7d"} -2023-12-16T14:28:11.829Z INFO initializing dbft {"height": 8348, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:11.829Z debug frostfs-node/morph.go:229 new block {"index": 8347} -2023-12-16T14:28:12.457Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8347, "blockHeight": 8347, "took": "10.318289ms"} -2023-12-16T14:28:12.829Z INFO sending PrepareRequest {"height": 8348, "view": 0} -2023-12-16T14:28:12.829Z INFO sending Commit {"height": 8348, "view": 0} -2023-12-16T14:28:12.830Z INFO approving block {"height": 8348, "hash": "4810abfcb6d5b3437a72edda3bbbdb4c61f83b202bfeccd45dc7b14f8422ec17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e7b1dc08b3741c1da27c5ea3af78c15fd68572b945bd68ebbfa70d19e84de7c"} -2023-12-16T14:28:12.831Z INFO initializing dbft {"height": 8349, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:12.831Z debug frostfs-node/morph.go:229 new block {"index": 8348} -2023-12-16T14:28:13.457Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8348, "blockHeight": 8348, "took": "9.7913ms"} -2023-12-16T14:28:13.830Z INFO sending PrepareRequest {"height": 8349, "view": 0} -2023-12-16T14:28:13.831Z INFO sending Commit {"height": 8349, "view": 0} -2023-12-16T14:28:13.831Z INFO approving block {"height": 8349, "hash": "ae590efc9564fb1203dec234cbde73a5a0926ed818165259ca677fe70ef9f8b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4810abfcb6d5b3437a72edda3bbbdb4c61f83b202bfeccd45dc7b14f8422ec17"} -2023-12-16T14:28:13.832Z INFO initializing dbft {"height": 8350, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:13.833Z debug frostfs-node/morph.go:229 new block {"index": 8349} -2023-12-16T14:28:14.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8349, "blockHeight": 8349, "took": "7.797863ms"} -2023-12-16T14:28:14.833Z INFO sending PrepareRequest {"height": 8350, "view": 0} -2023-12-16T14:28:14.833Z INFO sending Commit {"height": 8350, "view": 0} -2023-12-16T14:28:14.834Z INFO approving block {"height": 8350, "hash": "788dc832f0d568d6c15aef9fc2e65ccac6d096b673b0cb64a919ae342b0ad0a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae590efc9564fb1203dec234cbde73a5a0926ed818165259ca677fe70ef9f8b8"} -2023-12-16T14:28:14.835Z INFO initializing dbft {"height": 8351, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:14.836Z debug frostfs-node/morph.go:229 new block {"index": 8350} -2023-12-16T14:28:14.838Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:28:14.842Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:28:14.842Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:28:15.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8350, "blockHeight": 8350, "took": "5.643711ms"} -2023-12-16T14:28:15.834Z INFO sending PrepareRequest {"height": 8351, "view": 0} -2023-12-16T14:28:15.834Z INFO sending Commit {"height": 8351, "view": 0} -2023-12-16T14:28:15.835Z INFO approving block {"height": 8351, "hash": "186aed122942b651a015fba203ca5768f72615d68e874d6610aa61d5d74a9f8f", "tx_count": 2, "merkle": "c0568b7000e3a0c780d2f96a8251529f812069a6bf2c5d18092a4f566a1df46c", "prev": "788dc832f0d568d6c15aef9fc2e65ccac6d096b673b0cb64a919ae342b0ad0a5"} -2023-12-16T14:28:15.835Z INFO runtime log {"tx": "d57d02d739fb88409f83c4d43c13411a42bfca29179d83b7dccd90191a09207c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:28:15.835Z INFO runtime log {"tx": "d57d02d739fb88409f83c4d43c13411a42bfca29179d83b7dccd90191a09207c", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:28:15.836Z INFO initializing dbft {"height": 8352, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:15.837Z debug frostfs-node/morph.go:229 new block {"index": 8351} -2023-12-16T14:28:16.461Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8351, "blockHeight": 8351, "took": "12.223443ms"} -2023-12-16T14:28:16.836Z INFO sending PrepareRequest {"height": 8352, "view": 0} -2023-12-16T14:28:16.836Z INFO sending Commit {"height": 8352, "view": 0} -2023-12-16T14:28:16.836Z INFO approving block {"height": 8352, "hash": "8b62b32cf5bf123c29d769cb231735cb0cde2740016f7036f662f26d6fcb4df2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "186aed122942b651a015fba203ca5768f72615d68e874d6610aa61d5d74a9f8f"} -2023-12-16T14:28:16.837Z INFO initializing dbft {"height": 8353, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:16.837Z debug frostfs-node/morph.go:229 new block {"index": 8352} -2023-12-16T14:28:17.455Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8352, "blockHeight": 8352, "took": "5.8503ms"} -2023-12-16T14:28:17.838Z INFO sending PrepareRequest {"height": 8353, "view": 0} -2023-12-16T14:28:17.838Z INFO sending Commit {"height": 8353, "view": 0} -2023-12-16T14:28:17.838Z INFO approving block {"height": 8353, "hash": "0155b3647f6b36e9e32548337ead213bf8f1b8654c505bac3fcaabbbe5dee408", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b62b32cf5bf123c29d769cb231735cb0cde2740016f7036f662f26d6fcb4df2"} -2023-12-16T14:28:17.839Z INFO initializing dbft {"height": 8354, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:17.840Z debug frostfs-node/morph.go:229 new block {"index": 8353} -2023-12-16T14:28:18.455Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8353, "blockHeight": 8353, "took": "5.005906ms"} -2023-12-16T14:28:18.839Z INFO sending PrepareRequest {"height": 8354, "view": 0} -2023-12-16T14:28:18.839Z INFO sending Commit {"height": 8354, "view": 0} -2023-12-16T14:28:18.839Z INFO approving block {"height": 8354, "hash": "f48c7a18aafac4bfc5a71109369795b7a9925e007afdc547d3f503b77076398c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0155b3647f6b36e9e32548337ead213bf8f1b8654c505bac3fcaabbbe5dee408"} -2023-12-16T14:28:18.841Z INFO initializing dbft {"height": 8355, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:18.842Z debug frostfs-node/morph.go:229 new block {"index": 8354} -2023-12-16T14:28:19.456Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8354, "blockHeight": 8354, "took": "5.866291ms"} -2023-12-16T14:28:19.841Z INFO sending PrepareRequest {"height": 8355, "view": 0} -2023-12-16T14:28:19.841Z INFO sending Commit {"height": 8355, "view": 0} -2023-12-16T14:28:19.841Z INFO approving block {"height": 8355, "hash": "da5fe529e3b5063c0e43a76d8eb76a4811bb74d0cdeaa53d7b073fa6baf66893", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f48c7a18aafac4bfc5a71109369795b7a9925e007afdc547d3f503b77076398c"} -2023-12-16T14:28:19.843Z INFO initializing dbft {"height": 8356, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:19.844Z debug frostfs-node/morph.go:229 new block {"index": 8355} -2023-12-16T14:28:20.455Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8355, "blockHeight": 8355, "took": "3.733443ms"} -2023-12-16T14:28:20.842Z INFO sending PrepareRequest {"height": 8356, "view": 0} -2023-12-16T14:28:20.842Z INFO sending Commit {"height": 8356, "view": 0} -2023-12-16T14:28:20.843Z INFO approving block {"height": 8356, "hash": "80c600b0cb506b123e45200f18bfd2a6b83b96413e7b648bf3832f89f4ce9f46", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "da5fe529e3b5063c0e43a76d8eb76a4811bb74d0cdeaa53d7b073fa6baf66893"} -2023-12-16T14:28:20.844Z INFO initializing dbft {"height": 8357, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:20.844Z debug frostfs-node/morph.go:229 new block {"index": 8356} -2023-12-16T14:28:21.457Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8356, "blockHeight": 8356, "took": "5.108691ms"} -2023-12-16T14:28:21.844Z INFO sending PrepareRequest {"height": 8357, "view": 0} -2023-12-16T14:28:21.844Z INFO sending Commit {"height": 8357, "view": 0} -2023-12-16T14:28:21.844Z INFO approving block {"height": 8357, "hash": "e607362e15a98641ce9a9ae433ecfa2a17b83aaeed698b6b15e64d088200a43c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80c600b0cb506b123e45200f18bfd2a6b83b96413e7b648bf3832f89f4ce9f46"} -2023-12-16T14:28:21.845Z INFO initializing dbft {"height": 8358, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:21.846Z debug frostfs-node/morph.go:229 new block {"index": 8357} -2023-12-16T14:28:22.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8357, "blockHeight": 8357, "took": "5.89888ms"} -2023-12-16T14:28:22.845Z INFO sending PrepareRequest {"height": 8358, "view": 0} -2023-12-16T14:28:22.846Z INFO sending Commit {"height": 8358, "view": 0} -2023-12-16T14:28:22.846Z INFO approving block {"height": 8358, "hash": "5cf27807a51e4688e7e698ebea58dce470892073803453cf3597e84a88437096", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e607362e15a98641ce9a9ae433ecfa2a17b83aaeed698b6b15e64d088200a43c"} -2023-12-16T14:28:22.847Z INFO initializing dbft {"height": 8359, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:22.847Z debug frostfs-node/morph.go:229 new block {"index": 8358} -2023-12-16T14:28:23.465Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8358, "blockHeight": 8358, "took": "12.005637ms"} -2023-12-16T14:28:23.847Z INFO sending PrepareRequest {"height": 8359, "view": 0} -2023-12-16T14:28:23.848Z INFO sending Commit {"height": 8359, "view": 0} -2023-12-16T14:28:23.848Z INFO approving block {"height": 8359, "hash": "0ad743183b6595fa51813f56a9189ff561de5b333717182dce670ab944fc8ee3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cf27807a51e4688e7e698ebea58dce470892073803453cf3597e84a88437096"} -2023-12-16T14:28:23.849Z INFO initializing dbft {"height": 8360, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:23.850Z debug frostfs-node/morph.go:229 new block {"index": 8359} -2023-12-16T14:28:24.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8359, "blockHeight": 8359, "took": "4.807756ms"} -2023-12-16T14:28:24.849Z INFO sending PrepareRequest {"height": 8360, "view": 0} -2023-12-16T14:28:24.849Z INFO sending Commit {"height": 8360, "view": 0} -2023-12-16T14:28:24.849Z INFO approving block {"height": 8360, "hash": "48c478279b33aca8875f9715c1bb3c5f2aba92d2d9669fb77dd4618d40f7e97b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ad743183b6595fa51813f56a9189ff561de5b333717182dce670ab944fc8ee3"} -2023-12-16T14:28:24.850Z INFO initializing dbft {"height": 8361, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:24.851Z debug frostfs-node/morph.go:229 new block {"index": 8360} -2023-12-16T14:28:25.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8360, "blockHeight": 8360, "took": "8.840091ms"} -2023-12-16T14:28:25.850Z INFO sending PrepareRequest {"height": 8361, "view": 0} -2023-12-16T14:28:25.850Z INFO sending Commit {"height": 8361, "view": 0} -2023-12-16T14:28:25.850Z INFO approving block {"height": 8361, "hash": "788231a2ef991367fa8e5ac5a87a30541858a384a7c8bf6d543603314531b92e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48c478279b33aca8875f9715c1bb3c5f2aba92d2d9669fb77dd4618d40f7e97b"} -2023-12-16T14:28:25.851Z INFO initializing dbft {"height": 8362, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:25.851Z debug frostfs-node/morph.go:229 new block {"index": 8361} -2023-12-16T14:28:26.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8361, "blockHeight": 8361, "took": "6.261034ms"} -2023-12-16T14:28:26.851Z INFO sending PrepareRequest {"height": 8362, "view": 0} -2023-12-16T14:28:26.851Z INFO sending Commit {"height": 8362, "view": 0} -2023-12-16T14:28:26.851Z INFO approving block {"height": 8362, "hash": "9d354520e8a2befddd0b4e3deb6aa4022f9d428f8e3aede2152c4371b430d4da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "788231a2ef991367fa8e5ac5a87a30541858a384a7c8bf6d543603314531b92e"} -2023-12-16T14:28:26.852Z INFO initializing dbft {"height": 8363, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:26.853Z debug frostfs-node/morph.go:229 new block {"index": 8362} -2023-12-16T14:28:27.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8362, "blockHeight": 8362, "took": "6.787002ms"} -2023-12-16T14:28:27.852Z INFO sending PrepareRequest {"height": 8363, "view": 0} -2023-12-16T14:28:27.852Z INFO sending Commit {"height": 8363, "view": 0} -2023-12-16T14:28:27.852Z INFO approving block {"height": 8363, "hash": "7b40464c3ad88d4f18dae4deef14597e80e8b95af5e3a886f5c332311c558948", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d354520e8a2befddd0b4e3deb6aa4022f9d428f8e3aede2152c4371b430d4da"} -2023-12-16T14:28:27.853Z INFO initializing dbft {"height": 8364, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:27.854Z debug frostfs-node/morph.go:229 new block {"index": 8363} -2023-12-16T14:28:28.461Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8363, "blockHeight": 8363, "took": "5.106951ms"} -2023-12-16T14:28:28.853Z INFO sending PrepareRequest {"height": 8364, "view": 0} -2023-12-16T14:28:28.854Z INFO sending Commit {"height": 8364, "view": 0} -2023-12-16T14:28:28.854Z INFO approving block {"height": 8364, "hash": "2481a3ec811e2c01c77afcff9dd623d958761220b752ce3dc6fc7b19a4f5c2b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b40464c3ad88d4f18dae4deef14597e80e8b95af5e3a886f5c332311c558948"} -2023-12-16T14:28:28.855Z INFO initializing dbft {"height": 8365, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:28.855Z debug frostfs-node/morph.go:229 new block {"index": 8364} -2023-12-16T14:28:29.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8364, "blockHeight": 8364, "took": "5.642835ms"} -2023-12-16T14:28:29.855Z INFO sending PrepareRequest {"height": 8365, "view": 0} -2023-12-16T14:28:29.855Z INFO sending Commit {"height": 8365, "view": 0} -2023-12-16T14:28:29.855Z INFO approving block {"height": 8365, "hash": "d3ce7159c7baa07c3ede4c46242fd6eeded4bc7f79bf1fadef6084ee71b8722f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2481a3ec811e2c01c77afcff9dd623d958761220b752ce3dc6fc7b19a4f5c2b5"} -2023-12-16T14:28:29.856Z INFO initializing dbft {"height": 8366, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:29.857Z debug frostfs-node/morph.go:229 new block {"index": 8365} -2023-12-16T14:28:30.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8365, "blockHeight": 8365, "took": "5.015986ms"} -2023-12-16T14:28:30.856Z INFO sending PrepareRequest {"height": 8366, "view": 0} -2023-12-16T14:28:30.857Z INFO sending Commit {"height": 8366, "view": 0} -2023-12-16T14:28:30.857Z INFO approving block {"height": 8366, "hash": "166c4d2ab67ba5b91bacf111dfeab03850909e63b8b64b915e5bbc2ef9f92ad5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3ce7159c7baa07c3ede4c46242fd6eeded4bc7f79bf1fadef6084ee71b8722f"} -2023-12-16T14:28:30.858Z INFO initializing dbft {"height": 8367, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:30.859Z debug frostfs-node/morph.go:229 new block {"index": 8366} -2023-12-16T14:28:31.466Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8366, "blockHeight": 8366, "took": "8.384638ms"} -2023-12-16T14:28:31.858Z INFO sending PrepareRequest {"height": 8367, "view": 0} -2023-12-16T14:28:31.858Z INFO sending Commit {"height": 8367, "view": 0} -2023-12-16T14:28:31.858Z INFO approving block {"height": 8367, "hash": "b897cc2c81e21a0b1611d0645f679da4d1a506c6933aceb7719109c089369a19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "166c4d2ab67ba5b91bacf111dfeab03850909e63b8b64b915e5bbc2ef9f92ad5"} -2023-12-16T14:28:31.859Z INFO initializing dbft {"height": 8368, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:31.860Z debug frostfs-node/morph.go:229 new block {"index": 8367} -2023-12-16T14:28:32.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8367, "blockHeight": 8367, "took": "5.685017ms"} -2023-12-16T14:28:32.860Z INFO sending PrepareRequest {"height": 8368, "view": 0} -2023-12-16T14:28:32.860Z INFO sending Commit {"height": 8368, "view": 0} -2023-12-16T14:28:32.860Z INFO approving block {"height": 8368, "hash": "17c24238d5722d18f46a1140fa19c300dab12437e0bea960d5b5067e380293a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b897cc2c81e21a0b1611d0645f679da4d1a506c6933aceb7719109c089369a19"} -2023-12-16T14:28:32.861Z INFO initializing dbft {"height": 8369, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:32.861Z debug frostfs-node/morph.go:229 new block {"index": 8368} -2023-12-16T14:28:33.466Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8368, "blockHeight": 8368, "took": "6.406188ms"} -2023-12-16T14:28:33.861Z INFO sending PrepareRequest {"height": 8369, "view": 0} -2023-12-16T14:28:33.862Z INFO sending Commit {"height": 8369, "view": 0} -2023-12-16T14:28:33.862Z INFO approving block {"height": 8369, "hash": "dd4dfe4638823dc7cb9bceb652871eb2f00999177fa95f54462ac7e15d7bb3c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17c24238d5722d18f46a1140fa19c300dab12437e0bea960d5b5067e380293a3"} -2023-12-16T14:28:33.862Z INFO initializing dbft {"height": 8370, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:33.863Z debug frostfs-node/morph.go:229 new block {"index": 8369} -2023-12-16T14:28:34.465Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8369, "blockHeight": 8369, "took": "5.567072ms"} -2023-12-16T14:28:34.863Z INFO sending PrepareRequest {"height": 8370, "view": 0} -2023-12-16T14:28:34.863Z INFO sending Commit {"height": 8370, "view": 0} -2023-12-16T14:28:34.863Z INFO approving block {"height": 8370, "hash": "688d1383e99177ca5244e66cc42caa890d12b371862130b671e88674584c7f38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd4dfe4638823dc7cb9bceb652871eb2f00999177fa95f54462ac7e15d7bb3c5"} -2023-12-16T14:28:34.864Z INFO initializing dbft {"height": 8371, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:34.865Z debug frostfs-node/morph.go:229 new block {"index": 8370} -2023-12-16T14:28:35.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8370, "blockHeight": 8370, "took": "7.051865ms"} -2023-12-16T14:28:35.865Z INFO sending PrepareRequest {"height": 8371, "view": 0} -2023-12-16T14:28:35.865Z INFO sending Commit {"height": 8371, "view": 0} -2023-12-16T14:28:35.865Z INFO approving block {"height": 8371, "hash": "b27a554fbf693e834d6607a2b43d9c2b5f5545a07e203587b1acd030b08a1832", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "688d1383e99177ca5244e66cc42caa890d12b371862130b671e88674584c7f38"} -2023-12-16T14:28:35.867Z INFO initializing dbft {"height": 8372, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:35.867Z debug frostfs-node/morph.go:229 new block {"index": 8371} -2023-12-16T14:28:36.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8371, "blockHeight": 8371, "took": "10.041101ms"} -2023-12-16T14:28:36.867Z INFO sending PrepareRequest {"height": 8372, "view": 0} -2023-12-16T14:28:36.867Z INFO sending Commit {"height": 8372, "view": 0} -2023-12-16T14:28:36.867Z INFO approving block {"height": 8372, "hash": "71d7087d86b1b22166c28e8ff580f069ce5b8361a6c1e6b43154cea2015f23b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b27a554fbf693e834d6607a2b43d9c2b5f5545a07e203587b1acd030b08a1832"} -2023-12-16T14:28:36.868Z INFO initializing dbft {"height": 8373, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:36.869Z debug frostfs-node/morph.go:229 new block {"index": 8372} -2023-12-16T14:28:37.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8372, "blockHeight": 8372, "took": "7.634612ms"} -2023-12-16T14:28:37.868Z INFO sending PrepareRequest {"height": 8373, "view": 0} -2023-12-16T14:28:37.868Z INFO sending Commit {"height": 8373, "view": 0} -2023-12-16T14:28:37.868Z INFO approving block {"height": 8373, "hash": "55eb487ca0cb7c9a407941521aaf1378442c3c1d41a3c8ae721cb1f129ac5e93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71d7087d86b1b22166c28e8ff580f069ce5b8361a6c1e6b43154cea2015f23b9"} -2023-12-16T14:28:37.869Z INFO initializing dbft {"height": 8374, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:37.869Z debug frostfs-node/morph.go:229 new block {"index": 8373} -2023-12-16T14:28:37.872Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 35, "iteration": 2, "error": "no data for 1 iteration in 35 epoch for consumers's trusts"} -2023-12-16T14:28:37.873Z info settlement/calls.go:106 start basic income distribution {"epoch": 35} -2023-12-16T14:28:38.471Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8373, "blockHeight": 8373, "took": "8.936089ms"} -2023-12-16T14:28:38.869Z INFO sending PrepareRequest {"height": 8374, "view": 0} -2023-12-16T14:28:38.869Z INFO sending Commit {"height": 8374, "view": 0} -2023-12-16T14:28:38.870Z INFO approving block {"height": 8374, "hash": "6cff444d9e63c13e725c4b2777b581ea018af8911af09e16c8cafb0c1b129295", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55eb487ca0cb7c9a407941521aaf1378442c3c1d41a3c8ae721cb1f129ac5e93"} -2023-12-16T14:28:38.871Z INFO initializing dbft {"height": 8375, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:38.871Z debug frostfs-node/morph.go:229 new block {"index": 8374} -2023-12-16T14:28:39.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8374, "blockHeight": 8374, "took": "5.022136ms"} -2023-12-16T14:28:39.870Z INFO sending PrepareRequest {"height": 8375, "view": 0} -2023-12-16T14:28:39.870Z INFO sending Commit {"height": 8375, "view": 0} -2023-12-16T14:28:39.870Z INFO approving block {"height": 8375, "hash": "6906618ed2f37549d41398b8f12c9e3469675d1064c85feb717e8e7137f523ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cff444d9e63c13e725c4b2777b581ea018af8911af09e16c8cafb0c1b129295"} -2023-12-16T14:28:39.871Z INFO initializing dbft {"height": 8376, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:39.872Z debug frostfs-node/morph.go:229 new block {"index": 8375} -2023-12-16T14:28:40.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8375, "blockHeight": 8375, "took": "10.503348ms"} -2023-12-16T14:28:40.872Z INFO sending PrepareRequest {"height": 8376, "view": 0} -2023-12-16T14:28:40.872Z INFO sending Commit {"height": 8376, "view": 0} -2023-12-16T14:28:40.872Z INFO approving block {"height": 8376, "hash": "bbc303759d9262028e255280a4df590e7663d0abb08042167b1f8041498075a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6906618ed2f37549d41398b8f12c9e3469675d1064c85feb717e8e7137f523ff"} -2023-12-16T14:28:40.873Z INFO initializing dbft {"height": 8377, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:40.873Z debug frostfs-node/morph.go:229 new block {"index": 8376} -2023-12-16T14:28:41.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8376, "blockHeight": 8376, "took": "6.260672ms"} -2023-12-16T14:28:41.873Z INFO sending PrepareRequest {"height": 8377, "view": 0} -2023-12-16T14:28:41.873Z INFO sending Commit {"height": 8377, "view": 0} -2023-12-16T14:28:41.873Z INFO approving block {"height": 8377, "hash": "0ac68c9635cdd570eda234fb36bb93055a2ca72d508988103bbc1786d2c03185", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbc303759d9262028e255280a4df590e7663d0abb08042167b1f8041498075a2"} -2023-12-16T14:28:41.874Z INFO initializing dbft {"height": 8378, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:41.875Z debug frostfs-node/morph.go:229 new block {"index": 8377} -2023-12-16T14:28:42.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8377, "blockHeight": 8377, "took": "8.668671ms"} -2023-12-16T14:28:42.874Z INFO sending PrepareRequest {"height": 8378, "view": 0} -2023-12-16T14:28:42.875Z INFO sending Commit {"height": 8378, "view": 0} -2023-12-16T14:28:42.875Z INFO approving block {"height": 8378, "hash": "489300c78874a4a030b3ffa7a24076a7d61020b47135b86c0ed3394b9246545d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ac68c9635cdd570eda234fb36bb93055a2ca72d508988103bbc1786d2c03185"} -2023-12-16T14:28:42.876Z INFO initializing dbft {"height": 8379, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:42.877Z debug frostfs-node/morph.go:229 new block {"index": 8378} -2023-12-16T14:28:43.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8378, "blockHeight": 8378, "took": "6.934721ms"} -2023-12-16T14:28:43.877Z INFO sending PrepareRequest {"height": 8379, "view": 0} -2023-12-16T14:28:43.877Z INFO sending Commit {"height": 8379, "view": 0} -2023-12-16T14:28:43.877Z INFO approving block {"height": 8379, "hash": "65c0badd91f1bdb59cd485c80e934ea7212bf35eb2727b61f18a9afe2d19890e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "489300c78874a4a030b3ffa7a24076a7d61020b47135b86c0ed3394b9246545d"} -2023-12-16T14:28:43.878Z INFO initializing dbft {"height": 8380, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:43.878Z debug frostfs-node/morph.go:229 new block {"index": 8379} -2023-12-16T14:28:44.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8379, "blockHeight": 8379, "took": "6.472763ms"} -2023-12-16T14:28:44.878Z INFO sending PrepareRequest {"height": 8380, "view": 0} -2023-12-16T14:28:44.878Z INFO sending Commit {"height": 8380, "view": 0} -2023-12-16T14:28:44.878Z INFO approving block {"height": 8380, "hash": "730328a29ca3d84d93705c993862674888b3ce40216be452fda42591f6a9b973", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65c0badd91f1bdb59cd485c80e934ea7212bf35eb2727b61f18a9afe2d19890e"} -2023-12-16T14:28:44.880Z INFO initializing dbft {"height": 8381, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:44.880Z debug frostfs-node/morph.go:229 new block {"index": 8380} -2023-12-16T14:28:45.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8380, "blockHeight": 8380, "took": "6.982466ms"} -2023-12-16T14:28:45.880Z INFO sending PrepareRequest {"height": 8381, "view": 0} -2023-12-16T14:28:45.880Z INFO sending Commit {"height": 8381, "view": 0} -2023-12-16T14:28:45.880Z INFO approving block {"height": 8381, "hash": "4beb7394e07b6dc8d491f3cb72c5a3a5c17a8bb629fa217254f9353697f041e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "730328a29ca3d84d93705c993862674888b3ce40216be452fda42591f6a9b973"} -2023-12-16T14:28:45.882Z INFO initializing dbft {"height": 8382, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:45.883Z debug frostfs-node/morph.go:229 new block {"index": 8381} -2023-12-16T14:28:46.476Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8381, "blockHeight": 8381, "took": "8.064613ms"} -2023-12-16T14:28:46.881Z INFO sending PrepareRequest {"height": 8382, "view": 0} -2023-12-16T14:28:46.882Z INFO sending Commit {"height": 8382, "view": 0} -2023-12-16T14:28:46.882Z INFO approving block {"height": 8382, "hash": "fc797acf43c1ef329cebe30a12e8699d579b8c53857e9b3abcb6d7b98cfc076a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4beb7394e07b6dc8d491f3cb72c5a3a5c17a8bb629fa217254f9353697f041e3"} -2023-12-16T14:28:46.883Z INFO initializing dbft {"height": 8383, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:46.884Z debug frostfs-node/morph.go:229 new block {"index": 8382} -2023-12-16T14:28:47.475Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8382, "blockHeight": 8382, "took": "6.075933ms"} -2023-12-16T14:28:47.884Z INFO sending PrepareRequest {"height": 8383, "view": 0} -2023-12-16T14:28:47.884Z INFO sending Commit {"height": 8383, "view": 0} -2023-12-16T14:28:47.884Z INFO approving block {"height": 8383, "hash": "dec369ef020c65823285c2f2cacb5e9dad910db8592b5a0b301cf75148f58bea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc797acf43c1ef329cebe30a12e8699d579b8c53857e9b3abcb6d7b98cfc076a"} -2023-12-16T14:28:47.886Z INFO initializing dbft {"height": 8384, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:47.887Z debug frostfs-node/morph.go:229 new block {"index": 8383} -2023-12-16T14:28:48.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8383, "blockHeight": 8383, "took": "9.983007ms"} -2023-12-16T14:28:48.885Z INFO sending PrepareRequest {"height": 8384, "view": 0} -2023-12-16T14:28:48.885Z INFO sending Commit {"height": 8384, "view": 0} -2023-12-16T14:28:48.886Z INFO approving block {"height": 8384, "hash": "d66d9302b7b675e3b2723a2095f340a4013e9fb847687118419cb295237cbc20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dec369ef020c65823285c2f2cacb5e9dad910db8592b5a0b301cf75148f58bea"} -2023-12-16T14:28:48.887Z INFO initializing dbft {"height": 8385, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:48.888Z debug frostfs-node/morph.go:229 new block {"index": 8384} -2023-12-16T14:28:49.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8384, "blockHeight": 8384, "took": "7.607121ms"} -2023-12-16T14:28:49.887Z INFO sending PrepareRequest {"height": 8385, "view": 0} -2023-12-16T14:28:49.887Z INFO sending Commit {"height": 8385, "view": 0} -2023-12-16T14:28:49.887Z INFO approving block {"height": 8385, "hash": "fea37792a566c17b3ccfb605574d8c9a2141d180486bf178f31b85e3e4e9c325", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d66d9302b7b675e3b2723a2095f340a4013e9fb847687118419cb295237cbc20"} -2023-12-16T14:28:49.888Z INFO initializing dbft {"height": 8386, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:49.888Z debug frostfs-node/morph.go:229 new block {"index": 8385} -2023-12-16T14:28:50.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8385, "blockHeight": 8385, "took": "9.140284ms"} -2023-12-16T14:28:50.888Z INFO sending PrepareRequest {"height": 8386, "view": 0} -2023-12-16T14:28:50.889Z INFO sending Commit {"height": 8386, "view": 0} -2023-12-16T14:28:50.889Z INFO approving block {"height": 8386, "hash": "70ce9e58ffe0f51ea0367f2537ae74e98f724f50c2d49a92af04ee654c8f5d25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fea37792a566c17b3ccfb605574d8c9a2141d180486bf178f31b85e3e4e9c325"} -2023-12-16T14:28:50.889Z INFO initializing dbft {"height": 8387, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:50.890Z debug frostfs-node/morph.go:229 new block {"index": 8386} -2023-12-16T14:28:51.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8386, "blockHeight": 8386, "took": "9.222789ms"} -2023-12-16T14:28:51.890Z INFO sending PrepareRequest {"height": 8387, "view": 0} -2023-12-16T14:28:51.891Z INFO sending Commit {"height": 8387, "view": 0} -2023-12-16T14:28:51.891Z INFO approving block {"height": 8387, "hash": "5772002731a3e99c68e5c20267fcd51abb2cdc5d47f428d575bdc614cdfb46b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70ce9e58ffe0f51ea0367f2537ae74e98f724f50c2d49a92af04ee654c8f5d25"} -2023-12-16T14:28:51.893Z INFO initializing dbft {"height": 8388, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:51.893Z debug frostfs-node/morph.go:229 new block {"index": 8387} -2023-12-16T14:28:52.476Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8387, "blockHeight": 8387, "took": "4.043938ms"} -2023-12-16T14:28:52.892Z INFO sending PrepareRequest {"height": 8388, "view": 0} -2023-12-16T14:28:52.892Z INFO sending Commit {"height": 8388, "view": 0} -2023-12-16T14:28:52.892Z INFO approving block {"height": 8388, "hash": "53d574381e66a02e5f9625fe73934afce49488ac68396d52b80cd1ef59169d97", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5772002731a3e99c68e5c20267fcd51abb2cdc5d47f428d575bdc614cdfb46b2"} -2023-12-16T14:28:52.894Z INFO initializing dbft {"height": 8389, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:52.895Z debug frostfs-node/morph.go:229 new block {"index": 8388} -2023-12-16T14:28:53.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8388, "blockHeight": 8388, "took": "5.47764ms"} -2023-12-16T14:28:53.893Z INFO sending PrepareRequest {"height": 8389, "view": 0} -2023-12-16T14:28:53.894Z INFO sending Commit {"height": 8389, "view": 0} -2023-12-16T14:28:53.894Z INFO approving block {"height": 8389, "hash": "81d03c461007fd2d61a0595126e630eada94a4fa90302a5dd540c2c712846697", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53d574381e66a02e5f9625fe73934afce49488ac68396d52b80cd1ef59169d97"} -2023-12-16T14:28:53.895Z INFO initializing dbft {"height": 8390, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:53.896Z debug frostfs-node/morph.go:229 new block {"index": 8389} -2023-12-16T14:28:54.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8389, "blockHeight": 8389, "took": "6.906064ms"} -2023-12-16T14:28:54.895Z INFO sending PrepareRequest {"height": 8390, "view": 0} -2023-12-16T14:28:54.895Z INFO sending Commit {"height": 8390, "view": 0} -2023-12-16T14:28:54.895Z INFO approving block {"height": 8390, "hash": "a67afe8968593f00a2f62e8aa82654bb2218f70a26e656a9e0930f2afb67d465", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81d03c461007fd2d61a0595126e630eada94a4fa90302a5dd540c2c712846697"} -2023-12-16T14:28:54.896Z INFO initializing dbft {"height": 8391, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:54.897Z debug frostfs-node/morph.go:229 new block {"index": 8390} -2023-12-16T14:28:55.481Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8390, "blockHeight": 8390, "took": "6.633843ms"} -2023-12-16T14:28:55.897Z INFO sending PrepareRequest {"height": 8391, "view": 0} -2023-12-16T14:28:55.897Z INFO sending Commit {"height": 8391, "view": 0} -2023-12-16T14:28:55.897Z INFO approving block {"height": 8391, "hash": "551aa781a09dc5df2c8061aea837bb328928a8584b85deb0b6d4308ff56b9de1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a67afe8968593f00a2f62e8aa82654bb2218f70a26e656a9e0930f2afb67d465"} -2023-12-16T14:28:55.899Z INFO initializing dbft {"height": 8392, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:55.900Z debug frostfs-node/morph.go:229 new block {"index": 8391} -2023-12-16T14:28:56.482Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8391, "blockHeight": 8391, "took": "6.896902ms"} -2023-12-16T14:28:56.898Z INFO sending PrepareRequest {"height": 8392, "view": 0} -2023-12-16T14:28:56.899Z INFO sending Commit {"height": 8392, "view": 0} -2023-12-16T14:28:56.899Z INFO approving block {"height": 8392, "hash": "f3aef0d34263be6492e6e6df421b65d4755aa6ceb68195e10b688e461d87c6ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "551aa781a09dc5df2c8061aea837bb328928a8584b85deb0b6d4308ff56b9de1"} -2023-12-16T14:28:56.901Z INFO initializing dbft {"height": 8393, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:56.901Z debug frostfs-node/morph.go:229 new block {"index": 8392} -2023-12-16T14:28:57.482Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8392, "blockHeight": 8392, "took": "6.309214ms"} -2023-12-16T14:28:57.900Z INFO sending PrepareRequest {"height": 8393, "view": 0} -2023-12-16T14:28:57.900Z INFO sending Commit {"height": 8393, "view": 0} -2023-12-16T14:28:57.901Z INFO approving block {"height": 8393, "hash": "fd6f9a319fa048b79979f6af44f9e9a4ed76a3b61db98610ede95d59d6e0a310", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3aef0d34263be6492e6e6df421b65d4755aa6ceb68195e10b688e461d87c6ec"} -2023-12-16T14:28:57.902Z INFO initializing dbft {"height": 8394, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:57.903Z debug frostfs-node/morph.go:229 new block {"index": 8393} -2023-12-16T14:28:58.486Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8393, "blockHeight": 8393, "took": "9.740863ms"} -2023-12-16T14:28:58.902Z INFO sending PrepareRequest {"height": 8394, "view": 0} -2023-12-16T14:28:58.902Z INFO sending Commit {"height": 8394, "view": 0} -2023-12-16T14:28:58.902Z INFO approving block {"height": 8394, "hash": "758977402851bb67f923c9ec9ff10a03d3a6e4283e783bb6f8005f57156a8763", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd6f9a319fa048b79979f6af44f9e9a4ed76a3b61db98610ede95d59d6e0a310"} -2023-12-16T14:28:58.904Z INFO initializing dbft {"height": 8395, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:58.904Z debug frostfs-node/morph.go:229 new block {"index": 8394} -2023-12-16T14:28:59.485Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8394, "blockHeight": 8394, "took": "7.383705ms"} -2023-12-16T14:28:59.903Z INFO sending PrepareRequest {"height": 8395, "view": 0} -2023-12-16T14:28:59.903Z INFO sending Commit {"height": 8395, "view": 0} -2023-12-16T14:28:59.904Z INFO approving block {"height": 8395, "hash": "caaed9e76f9ebea51ca03e19bb3519d814d05109cb9145d5a1c1b94868e9176e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "758977402851bb67f923c9ec9ff10a03d3a6e4283e783bb6f8005f57156a8763"} -2023-12-16T14:28:59.905Z INFO initializing dbft {"height": 8396, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:28:59.905Z debug frostfs-node/morph.go:229 new block {"index": 8395} -2023-12-16T14:29:00.482Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8395, "blockHeight": 8395, "took": "4.350186ms"} -2023-12-16T14:29:00.905Z INFO sending PrepareRequest {"height": 8396, "view": 0} -2023-12-16T14:29:00.905Z INFO sending Commit {"height": 8396, "view": 0} -2023-12-16T14:29:00.906Z INFO approving block {"height": 8396, "hash": "c8c6f3b82eec5e9bf9619c78e7a3fb2dcf102d115f7df649b17f100eb26eb120", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "caaed9e76f9ebea51ca03e19bb3519d814d05109cb9145d5a1c1b94868e9176e"} -2023-12-16T14:29:00.906Z INFO initializing dbft {"height": 8397, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:00.907Z debug frostfs-node/morph.go:229 new block {"index": 8396} -2023-12-16T14:29:01.484Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8396, "blockHeight": 8396, "took": "5.073355ms"} -2023-12-16T14:29:01.907Z INFO sending PrepareRequest {"height": 8397, "view": 0} -2023-12-16T14:29:01.907Z INFO sending Commit {"height": 8397, "view": 0} -2023-12-16T14:29:01.908Z INFO approving block {"height": 8397, "hash": "8f3ad58ffb74d578da4e425608fd51929f68a7230b9b0c56270a12fb781f2de4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8c6f3b82eec5e9bf9619c78e7a3fb2dcf102d115f7df649b17f100eb26eb120"} -2023-12-16T14:29:01.909Z INFO initializing dbft {"height": 8398, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:01.909Z debug frostfs-node/morph.go:229 new block {"index": 8397} -2023-12-16T14:29:02.486Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8397, "blockHeight": 8397, "took": "6.611876ms"} -2023-12-16T14:29:02.908Z INFO sending PrepareRequest {"height": 8398, "view": 0} -2023-12-16T14:29:02.908Z INFO sending Commit {"height": 8398, "view": 0} -2023-12-16T14:29:02.908Z INFO approving block {"height": 8398, "hash": "20ad5bfd0d9001e0fec88e940dad75b483e6f5a75e1dc122a814357900fe1be7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f3ad58ffb74d578da4e425608fd51929f68a7230b9b0c56270a12fb781f2de4"} -2023-12-16T14:29:02.909Z INFO initializing dbft {"height": 8399, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:02.909Z debug frostfs-node/morph.go:229 new block {"index": 8398} -2023-12-16T14:29:03.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8398, "blockHeight": 8398, "took": "8.438075ms"} -2023-12-16T14:29:03.909Z INFO sending PrepareRequest {"height": 8399, "view": 0} -2023-12-16T14:29:03.909Z INFO sending Commit {"height": 8399, "view": 0} -2023-12-16T14:29:03.910Z INFO approving block {"height": 8399, "hash": "252ef03f63d86e0b8965eb034c209341c4a4cd3ae19d6f7908c01c7d80f62510", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20ad5bfd0d9001e0fec88e940dad75b483e6f5a75e1dc122a814357900fe1be7"} -2023-12-16T14:29:03.911Z INFO initializing dbft {"height": 8400, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:03.911Z debug frostfs-node/morph.go:229 new block {"index": 8399} -2023-12-16T14:29:04.486Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8399, "blockHeight": 8399, "took": "5.729677ms"} -2023-12-16T14:29:04.910Z INFO sending PrepareRequest {"height": 8400, "view": 0} -2023-12-16T14:29:04.910Z INFO sending Commit {"height": 8400, "view": 0} -2023-12-16T14:29:04.910Z INFO approving block {"height": 8400, "hash": "d3f226edadd3a3f16b199f456c8f4ee1eca346ce494dab049d50029c2e5aa3a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "252ef03f63d86e0b8965eb034c209341c4a4cd3ae19d6f7908c01c7d80f62510"} -2023-12-16T14:29:04.911Z INFO initializing dbft {"height": 8401, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:04.912Z debug frostfs-node/morph.go:229 new block {"index": 8400} -2023-12-16T14:29:04.913Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:29:04.916Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:29:04.916Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:29:05.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8400, "blockHeight": 8400, "took": "7.015835ms"} -2023-12-16T14:29:05.911Z INFO sending PrepareRequest {"height": 8401, "view": 0} -2023-12-16T14:29:05.911Z INFO sending Commit {"height": 8401, "view": 0} -2023-12-16T14:29:05.912Z INFO approving block {"height": 8401, "hash": "76108e43ac76854cdb0146a394c76e42817cabbbd7f72b7185f6b31081fb9705", "tx_count": 2, "merkle": "8e8fbfc527df2f6dc353443bc21f8c86c8e686c83064dbee29bb565df53bb28f", "prev": "d3f226edadd3a3f16b199f456c8f4ee1eca346ce494dab049d50029c2e5aa3a1"} -2023-12-16T14:29:05.913Z INFO runtime log {"tx": "5e54fef196dbc00b7817459767d5928eed8f955e88120a7e5b0eb27ee0441718", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:29:05.913Z INFO runtime log {"tx": "5e54fef196dbc00b7817459767d5928eed8f955e88120a7e5b0eb27ee0441718", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:29:05.914Z INFO initializing dbft {"height": 8402, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:05.915Z debug frostfs-node/morph.go:229 new block {"index": 8401} -2023-12-16T14:29:06.493Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8401, "blockHeight": 8401, "took": "11.419253ms"} -2023-12-16T14:29:06.913Z INFO sending PrepareRequest {"height": 8402, "view": 0} -2023-12-16T14:29:06.913Z INFO sending Commit {"height": 8402, "view": 0} -2023-12-16T14:29:06.913Z INFO approving block {"height": 8402, "hash": "00b24bf1687c8dd9c391b675a30c6026e685118e96356d5319bb5a347ed40cc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76108e43ac76854cdb0146a394c76e42817cabbbd7f72b7185f6b31081fb9705"} -2023-12-16T14:29:06.914Z INFO initializing dbft {"height": 8403, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:06.914Z debug frostfs-node/morph.go:229 new block {"index": 8402} -2023-12-16T14:29:07.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8402, "blockHeight": 8402, "took": "10.140092ms"} -2023-12-16T14:29:07.914Z INFO sending PrepareRequest {"height": 8403, "view": 0} -2023-12-16T14:29:07.914Z INFO sending Commit {"height": 8403, "view": 0} -2023-12-16T14:29:07.915Z INFO approving block {"height": 8403, "hash": "2b6d854b1522c39239796573114c0bf052f713d02c4cdb1ad4a7d55e31089794", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00b24bf1687c8dd9c391b675a30c6026e685118e96356d5319bb5a347ed40cc1"} -2023-12-16T14:29:07.915Z INFO initializing dbft {"height": 8404, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:07.916Z debug frostfs-node/morph.go:229 new block {"index": 8403} -2023-12-16T14:29:08.491Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8403, "blockHeight": 8403, "took": "8.116365ms"} -2023-12-16T14:29:08.916Z INFO sending PrepareRequest {"height": 8404, "view": 0} -2023-12-16T14:29:08.916Z INFO sending Commit {"height": 8404, "view": 0} -2023-12-16T14:29:08.916Z INFO approving block {"height": 8404, "hash": "daa5d61b84a730cc27820f2595770d4cb7034fa63ad4d77242f095e145d35150", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b6d854b1522c39239796573114c0bf052f713d02c4cdb1ad4a7d55e31089794"} -2023-12-16T14:29:08.917Z INFO initializing dbft {"height": 8405, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:08.918Z debug frostfs-node/morph.go:229 new block {"index": 8404} -2023-12-16T14:29:09.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8404, "blockHeight": 8404, "took": "6.55178ms"} -2023-12-16T14:29:09.918Z INFO sending PrepareRequest {"height": 8405, "view": 0} -2023-12-16T14:29:09.918Z INFO sending Commit {"height": 8405, "view": 0} -2023-12-16T14:29:09.918Z INFO approving block {"height": 8405, "hash": "adbe538b9501f847386f7f36d582b42d670e0920a9fe28ceeb922cf026d8b043", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "daa5d61b84a730cc27820f2595770d4cb7034fa63ad4d77242f095e145d35150"} -2023-12-16T14:29:09.919Z INFO initializing dbft {"height": 8406, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:09.920Z debug frostfs-node/morph.go:229 new block {"index": 8405} -2023-12-16T14:29:10.489Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8405, "blockHeight": 8405, "took": "5.086967ms"} -2023-12-16T14:29:10.919Z INFO sending PrepareRequest {"height": 8406, "view": 0} -2023-12-16T14:29:10.919Z INFO sending Commit {"height": 8406, "view": 0} -2023-12-16T14:29:10.919Z INFO approving block {"height": 8406, "hash": "a81ad84b81c3a802f571697f554a31e47496c1b97e1d93eaa5f1bc3bbba385e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adbe538b9501f847386f7f36d582b42d670e0920a9fe28ceeb922cf026d8b043"} -2023-12-16T14:29:10.920Z INFO initializing dbft {"height": 8407, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:10.921Z debug frostfs-node/morph.go:229 new block {"index": 8406} -2023-12-16T14:29:11.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8406, "blockHeight": 8406, "took": "8.396614ms"} -2023-12-16T14:29:11.920Z INFO sending PrepareRequest {"height": 8407, "view": 0} -2023-12-16T14:29:11.921Z INFO sending Commit {"height": 8407, "view": 0} -2023-12-16T14:29:11.921Z INFO approving block {"height": 8407, "hash": "70b8814075b3b75b175f8d1f558de7a418831b6897d6d46cd55ff7ba86a0d066", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a81ad84b81c3a802f571697f554a31e47496c1b97e1d93eaa5f1bc3bbba385e1"} -2023-12-16T14:29:11.922Z INFO initializing dbft {"height": 8408, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:11.922Z debug frostfs-node/morph.go:229 new block {"index": 8407} -2023-12-16T14:29:12.491Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8407, "blockHeight": 8407, "took": "5.609012ms"} -2023-12-16T14:29:12.922Z INFO sending PrepareRequest {"height": 8408, "view": 0} -2023-12-16T14:29:12.922Z INFO sending Commit {"height": 8408, "view": 0} -2023-12-16T14:29:12.922Z INFO approving block {"height": 8408, "hash": "2ebe8bbd1621ce05e5deeddf1428c11108656f5aca058f297ec9e15bdff3da08", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70b8814075b3b75b175f8d1f558de7a418831b6897d6d46cd55ff7ba86a0d066"} -2023-12-16T14:29:12.923Z INFO initializing dbft {"height": 8409, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:12.924Z debug frostfs-node/morph.go:229 new block {"index": 8408} -2023-12-16T14:29:13.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8408, "blockHeight": 8408, "took": "4.4886ms"} -2023-12-16T14:29:13.924Z INFO sending PrepareRequest {"height": 8409, "view": 0} -2023-12-16T14:29:13.924Z INFO sending Commit {"height": 8409, "view": 0} -2023-12-16T14:29:13.924Z INFO approving block {"height": 8409, "hash": "b849112426a2c808d5622e4a3acad111bb7c28701808328b9f0f92aa6b136994", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ebe8bbd1621ce05e5deeddf1428c11108656f5aca058f297ec9e15bdff3da08"} -2023-12-16T14:29:13.925Z INFO initializing dbft {"height": 8410, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:13.926Z debug frostfs-node/morph.go:229 new block {"index": 8409} -2023-12-16T14:29:14.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8409, "blockHeight": 8409, "took": "8.232478ms"} -2023-12-16T14:29:14.925Z INFO sending PrepareRequest {"height": 8410, "view": 0} -2023-12-16T14:29:14.925Z INFO sending Commit {"height": 8410, "view": 0} -2023-12-16T14:29:14.925Z INFO approving block {"height": 8410, "hash": "9a30833ae6b942e7175515752dd72c9eb4182429dcd5261d98ce2f235611c6b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b849112426a2c808d5622e4a3acad111bb7c28701808328b9f0f92aa6b136994"} -2023-12-16T14:29:14.926Z INFO initializing dbft {"height": 8411, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:14.927Z debug frostfs-node/morph.go:229 new block {"index": 8410} -2023-12-16T14:29:15.493Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8410, "blockHeight": 8410, "took": "6.239041ms"} -2023-12-16T14:29:15.927Z INFO sending PrepareRequest {"height": 8411, "view": 0} -2023-12-16T14:29:15.927Z INFO sending Commit {"height": 8411, "view": 0} -2023-12-16T14:29:15.927Z INFO approving block {"height": 8411, "hash": "893a12bdfcb353867b84f06799a234e2d3d9f2a1021d63888820f085e7c01774", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a30833ae6b942e7175515752dd72c9eb4182429dcd5261d98ce2f235611c6b2"} -2023-12-16T14:29:15.928Z INFO initializing dbft {"height": 8412, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:15.929Z debug frostfs-node/morph.go:229 new block {"index": 8411} -2023-12-16T14:29:16.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8411, "blockHeight": 8411, "took": "6.582115ms"} -2023-12-16T14:29:16.928Z INFO sending PrepareRequest {"height": 8412, "view": 0} -2023-12-16T14:29:16.928Z INFO sending Commit {"height": 8412, "view": 0} -2023-12-16T14:29:16.929Z INFO approving block {"height": 8412, "hash": "63adfb7c4f557f7d9a23f46406507740d586a187e4c6f724cf22bcbbca5c5b8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "893a12bdfcb353867b84f06799a234e2d3d9f2a1021d63888820f085e7c01774"} -2023-12-16T14:29:16.929Z INFO initializing dbft {"height": 8413, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:16.930Z debug frostfs-node/morph.go:229 new block {"index": 8412} -2023-12-16T14:29:17.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8412, "blockHeight": 8412, "took": "4.619409ms"} -2023-12-16T14:29:17.930Z INFO sending PrepareRequest {"height": 8413, "view": 0} -2023-12-16T14:29:17.930Z INFO sending Commit {"height": 8413, "view": 0} -2023-12-16T14:29:17.930Z INFO approving block {"height": 8413, "hash": "7e06f024df60aa4f5204166f8e9370d1a82a775452836f539798ec440ddad3cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63adfb7c4f557f7d9a23f46406507740d586a187e4c6f724cf22bcbbca5c5b8b"} -2023-12-16T14:29:17.931Z INFO initializing dbft {"height": 8414, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:17.931Z debug frostfs-node/morph.go:229 new block {"index": 8413} -2023-12-16T14:29:18.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8413, "blockHeight": 8413, "took": "3.71084ms"} -2023-12-16T14:29:18.932Z INFO sending PrepareRequest {"height": 8414, "view": 0} -2023-12-16T14:29:18.932Z INFO sending Commit {"height": 8414, "view": 0} -2023-12-16T14:29:18.932Z INFO approving block {"height": 8414, "hash": "aa30698965eba5fe0a9b9c15ceee2157421ace8fa59c9b9061836c70ba1c483c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e06f024df60aa4f5204166f8e9370d1a82a775452836f539798ec440ddad3cb"} -2023-12-16T14:29:18.933Z INFO initializing dbft {"height": 8415, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:18.934Z debug frostfs-node/morph.go:229 new block {"index": 8414} -2023-12-16T14:29:19.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8414, "blockHeight": 8414, "took": "5.490321ms"} -2023-12-16T14:29:19.933Z INFO sending PrepareRequest {"height": 8415, "view": 0} -2023-12-16T14:29:19.933Z INFO sending Commit {"height": 8415, "view": 0} -2023-12-16T14:29:19.933Z INFO approving block {"height": 8415, "hash": "1b49481fc1e7acb75e193aa747cf97afb078e0cb363f83da26ac853ba53720c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa30698965eba5fe0a9b9c15ceee2157421ace8fa59c9b9061836c70ba1c483c"} -2023-12-16T14:29:19.934Z INFO initializing dbft {"height": 8416, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:19.935Z debug frostfs-node/morph.go:229 new block {"index": 8415} -2023-12-16T14:29:20.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8415, "blockHeight": 8415, "took": "4.913266ms"} -2023-12-16T14:29:20.934Z INFO sending PrepareRequest {"height": 8416, "view": 0} -2023-12-16T14:29:20.935Z INFO sending Commit {"height": 8416, "view": 0} -2023-12-16T14:29:20.935Z INFO approving block {"height": 8416, "hash": "804a04b6afc76a23b923996eebb7fedb3aef5215e12dc4cc0532e00f73c85d70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b49481fc1e7acb75e193aa747cf97afb078e0cb363f83da26ac853ba53720c1"} -2023-12-16T14:29:20.935Z INFO initializing dbft {"height": 8417, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:20.936Z debug frostfs-node/morph.go:229 new block {"index": 8416} -2023-12-16T14:29:21.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8416, "blockHeight": 8416, "took": "3.822443ms"} -2023-12-16T14:29:21.935Z INFO sending PrepareRequest {"height": 8417, "view": 0} -2023-12-16T14:29:21.936Z INFO sending Commit {"height": 8417, "view": 0} -2023-12-16T14:29:21.936Z INFO approving block {"height": 8417, "hash": "a2c3088fad802dd00ececf395c813c49373c45752dd79af53fd2fc2b6ae20f06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "804a04b6afc76a23b923996eebb7fedb3aef5215e12dc4cc0532e00f73c85d70"} -2023-12-16T14:29:21.938Z INFO initializing dbft {"height": 8418, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:21.938Z debug frostfs-node/morph.go:229 new block {"index": 8417} -2023-12-16T14:29:22.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8417, "blockHeight": 8417, "took": "4.861374ms"} -2023-12-16T14:29:22.937Z INFO sending PrepareRequest {"height": 8418, "view": 0} -2023-12-16T14:29:22.937Z INFO sending Commit {"height": 8418, "view": 0} -2023-12-16T14:29:22.937Z INFO approving block {"height": 8418, "hash": "c28a546cfcc3bc2fb9b4f374c93c5ec955e319b87f65be2881d7debe47b3af4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2c3088fad802dd00ececf395c813c49373c45752dd79af53fd2fc2b6ae20f06"} -2023-12-16T14:29:22.938Z INFO initializing dbft {"height": 8419, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:22.939Z debug frostfs-node/morph.go:229 new block {"index": 8418} -2023-12-16T14:29:23.497Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8418, "blockHeight": 8418, "took": "5.944245ms"} -2023-12-16T14:29:23.939Z INFO sending PrepareRequest {"height": 8419, "view": 0} -2023-12-16T14:29:23.939Z INFO sending Commit {"height": 8419, "view": 0} -2023-12-16T14:29:23.939Z INFO approving block {"height": 8419, "hash": "5694ae4b011856ae3015d03c7903462b74066840eecc55807049d8da33c44619", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c28a546cfcc3bc2fb9b4f374c93c5ec955e319b87f65be2881d7debe47b3af4c"} -2023-12-16T14:29:23.941Z INFO initializing dbft {"height": 8420, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:23.941Z debug frostfs-node/morph.go:229 new block {"index": 8419} -2023-12-16T14:29:24.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8419, "blockHeight": 8419, "took": "6.09317ms"} -2023-12-16T14:29:24.940Z INFO sending PrepareRequest {"height": 8420, "view": 0} -2023-12-16T14:29:24.941Z INFO sending Commit {"height": 8420, "view": 0} -2023-12-16T14:29:24.941Z INFO approving block {"height": 8420, "hash": "3a1aae7dc43d9fbb9f50787ae0fc74b43e5d8d0f27062cf07822458d67ebf8d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5694ae4b011856ae3015d03c7903462b74066840eecc55807049d8da33c44619"} -2023-12-16T14:29:24.942Z INFO initializing dbft {"height": 8421, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:24.943Z debug frostfs-node/morph.go:229 new block {"index": 8420} -2023-12-16T14:29:25.497Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8420, "blockHeight": 8420, "took": "4.070129ms"} -2023-12-16T14:29:25.942Z INFO sending PrepareRequest {"height": 8421, "view": 0} -2023-12-16T14:29:25.942Z INFO sending Commit {"height": 8421, "view": 0} -2023-12-16T14:29:25.942Z INFO approving block {"height": 8421, "hash": "676d0dde05e90d5e2bb3c5150b3e10e38e3b2dc808e3309d9c0d026e4ccda7d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a1aae7dc43d9fbb9f50787ae0fc74b43e5d8d0f27062cf07822458d67ebf8d1"} -2023-12-16T14:29:25.943Z INFO initializing dbft {"height": 8422, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:25.944Z debug frostfs-node/morph.go:229 new block {"index": 8421} -2023-12-16T14:29:26.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8421, "blockHeight": 8421, "took": "4.836202ms"} -2023-12-16T14:29:26.943Z INFO sending PrepareRequest {"height": 8422, "view": 0} -2023-12-16T14:29:26.943Z INFO sending Commit {"height": 8422, "view": 0} -2023-12-16T14:29:26.944Z INFO approving block {"height": 8422, "hash": "dc9e9f61fd57bdb53af6f3f1fe9932726f89b1edbb000206de97ce87ea9bf2b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "676d0dde05e90d5e2bb3c5150b3e10e38e3b2dc808e3309d9c0d026e4ccda7d3"} -2023-12-16T14:29:26.944Z INFO initializing dbft {"height": 8423, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:26.945Z debug frostfs-node/morph.go:229 new block {"index": 8422} -2023-12-16T14:29:27.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8422, "blockHeight": 8422, "took": "4.614512ms"} -2023-12-16T14:29:27.945Z INFO sending PrepareRequest {"height": 8423, "view": 0} -2023-12-16T14:29:27.945Z INFO sending Commit {"height": 8423, "view": 0} -2023-12-16T14:29:27.945Z INFO approving block {"height": 8423, "hash": "1c8bc79f8b3d3981a06de0e4be96d0ab769a863889d44af77a45ba3352a4b9e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc9e9f61fd57bdb53af6f3f1fe9932726f89b1edbb000206de97ce87ea9bf2b1"} -2023-12-16T14:29:27.946Z INFO initializing dbft {"height": 8424, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:27.947Z debug frostfs-node/morph.go:229 new block {"index": 8423} -2023-12-16T14:29:28.501Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8423, "blockHeight": 8423, "took": "6.779949ms"} -2023-12-16T14:29:28.947Z INFO sending PrepareRequest {"height": 8424, "view": 0} -2023-12-16T14:29:28.947Z INFO sending Commit {"height": 8424, "view": 0} -2023-12-16T14:29:28.947Z INFO approving block {"height": 8424, "hash": "7e4221e741f8548558b54c19f9a63da1bd8dd4074700f907e55c768a7334e514", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c8bc79f8b3d3981a06de0e4be96d0ab769a863889d44af77a45ba3352a4b9e5"} -2023-12-16T14:29:28.948Z INFO initializing dbft {"height": 8425, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:28.948Z debug frostfs-node/morph.go:229 new block {"index": 8424} -2023-12-16T14:29:29.502Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8424, "blockHeight": 8424, "took": "6.80927ms"} -2023-12-16T14:29:29.948Z INFO sending PrepareRequest {"height": 8425, "view": 0} -2023-12-16T14:29:29.948Z INFO sending Commit {"height": 8425, "view": 0} -2023-12-16T14:29:29.948Z INFO approving block {"height": 8425, "hash": "eb7ae7336fb520ceaa6c28c3ccfef4327544eca95250ffe3aee8ae0216746cfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e4221e741f8548558b54c19f9a63da1bd8dd4074700f907e55c768a7334e514"} -2023-12-16T14:29:29.949Z INFO initializing dbft {"height": 8426, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:29.949Z debug frostfs-node/morph.go:229 new block {"index": 8425} -2023-12-16T14:29:30.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8425, "blockHeight": 8425, "took": "8.094586ms"} -2023-12-16T14:29:30.949Z INFO sending PrepareRequest {"height": 8426, "view": 0} -2023-12-16T14:29:30.949Z INFO sending Commit {"height": 8426, "view": 0} -2023-12-16T14:29:30.950Z INFO approving block {"height": 8426, "hash": "5e81dc558643f42cb2f09dbb7cc04f8515aefa15db8c76ed3c2eedcdda2a416f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb7ae7336fb520ceaa6c28c3ccfef4327544eca95250ffe3aee8ae0216746cfc"} -2023-12-16T14:29:30.951Z INFO initializing dbft {"height": 8427, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:30.951Z debug frostfs-node/morph.go:229 new block {"index": 8426} -2023-12-16T14:29:31.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8426, "blockHeight": 8426, "took": "6.008587ms"} -2023-12-16T14:29:31.951Z INFO sending PrepareRequest {"height": 8427, "view": 0} -2023-12-16T14:29:31.951Z INFO sending Commit {"height": 8427, "view": 0} -2023-12-16T14:29:31.952Z INFO approving block {"height": 8427, "hash": "51b6ed6a5fcb6925166d567f701993b58a9d84fa5994691768d52924cffd24b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5e81dc558643f42cb2f09dbb7cc04f8515aefa15db8c76ed3c2eedcdda2a416f"} -2023-12-16T14:29:31.952Z INFO initializing dbft {"height": 8428, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:31.953Z debug frostfs-node/morph.go:229 new block {"index": 8427} -2023-12-16T14:29:32.506Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8427, "blockHeight": 8427, "took": "7.911118ms"} -2023-12-16T14:29:32.952Z INFO sending PrepareRequest {"height": 8428, "view": 0} -2023-12-16T14:29:32.953Z INFO sending Commit {"height": 8428, "view": 0} -2023-12-16T14:29:32.953Z INFO approving block {"height": 8428, "hash": "592246bd6b6f16448ee39c434c9bb98cb38c603821e7806a71e986cd2ab3ddac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51b6ed6a5fcb6925166d567f701993b58a9d84fa5994691768d52924cffd24b1"} -2023-12-16T14:29:32.954Z INFO initializing dbft {"height": 8429, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:32.955Z debug frostfs-node/morph.go:229 new block {"index": 8428} -2023-12-16T14:29:33.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8428, "blockHeight": 8428, "took": "4.549344ms"} -2023-12-16T14:29:33.954Z INFO sending PrepareRequest {"height": 8429, "view": 0} -2023-12-16T14:29:33.955Z INFO sending Commit {"height": 8429, "view": 0} -2023-12-16T14:29:33.955Z INFO approving block {"height": 8429, "hash": "f52a346b77ceec4bf83afbc1b362104491788b8d3e53595095f977eae439b8e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "592246bd6b6f16448ee39c434c9bb98cb38c603821e7806a71e986cd2ab3ddac"} -2023-12-16T14:29:33.956Z INFO initializing dbft {"height": 8430, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:33.956Z debug frostfs-node/morph.go:229 new block {"index": 8429} -2023-12-16T14:29:34.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8429, "blockHeight": 8429, "took": "3.887995ms"} -2023-12-16T14:29:34.956Z INFO sending PrepareRequest {"height": 8430, "view": 0} -2023-12-16T14:29:34.956Z INFO sending Commit {"height": 8430, "view": 0} -2023-12-16T14:29:34.956Z INFO approving block {"height": 8430, "hash": "11b281361a3552f8305b2751972baef5e24ceb99afa2be7f89202eee28bb49ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f52a346b77ceec4bf83afbc1b362104491788b8d3e53595095f977eae439b8e2"} -2023-12-16T14:29:34.957Z INFO initializing dbft {"height": 8431, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:34.958Z debug frostfs-node/morph.go:229 new block {"index": 8430} -2023-12-16T14:29:35.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8430, "blockHeight": 8430, "took": "7.220923ms"} -2023-12-16T14:29:35.958Z INFO sending PrepareRequest {"height": 8431, "view": 0} -2023-12-16T14:29:35.958Z INFO sending Commit {"height": 8431, "view": 0} -2023-12-16T14:29:35.958Z INFO approving block {"height": 8431, "hash": "44430fd29295eb2fc386f32a0e8c3d33d95de8a5f0f896a763ed64557807c04f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11b281361a3552f8305b2751972baef5e24ceb99afa2be7f89202eee28bb49ca"} -2023-12-16T14:29:35.959Z INFO initializing dbft {"height": 8432, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:35.959Z debug frostfs-node/morph.go:229 new block {"index": 8431} -2023-12-16T14:29:36.506Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8431, "blockHeight": 8431, "took": "4.823562ms"} -2023-12-16T14:29:36.960Z INFO sending PrepareRequest {"height": 8432, "view": 0} -2023-12-16T14:29:36.960Z INFO sending Commit {"height": 8432, "view": 0} -2023-12-16T14:29:36.961Z INFO approving block {"height": 8432, "hash": "ea65dc2f3b5ea2cd02b5820b0ce09d57c8f18cca3699683bc8d7db6b143347f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44430fd29295eb2fc386f32a0e8c3d33d95de8a5f0f896a763ed64557807c04f"} -2023-12-16T14:29:36.961Z INFO initializing dbft {"height": 8433, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:36.962Z debug frostfs-node/morph.go:229 new block {"index": 8432} -2023-12-16T14:29:37.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8432, "blockHeight": 8432, "took": "6.267965ms"} -2023-12-16T14:29:37.961Z INFO sending PrepareRequest {"height": 8433, "view": 0} -2023-12-16T14:29:37.962Z INFO sending Commit {"height": 8433, "view": 0} -2023-12-16T14:29:37.962Z INFO approving block {"height": 8433, "hash": "e039ef27b0e9b709313fb28d2a96e83734ac93432c9610b75a92bacedf22eddc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea65dc2f3b5ea2cd02b5820b0ce09d57c8f18cca3699683bc8d7db6b143347f7"} -2023-12-16T14:29:37.964Z INFO initializing dbft {"height": 8434, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:37.964Z debug frostfs-node/morph.go:229 new block {"index": 8433} -2023-12-16T14:29:37.966Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:29:37.967Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 35, "iteration": 3, "error": "no data for 2 iteration in 35 epoch for consumers's trusts"} -2023-12-16T14:29:37.969Z INFO runtime log {"tx": "0879a027ada6eb5e00a4b9045f9b7226f3503b22843612b4cc6a7661f4e813e2", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:29:38.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8433, "blockHeight": 8433, "took": "4.673527ms"} -2023-12-16T14:29:38.963Z INFO sending PrepareRequest {"height": 8434, "view": 0} -2023-12-16T14:29:38.963Z INFO sending Commit {"height": 8434, "view": 0} -2023-12-16T14:29:38.963Z INFO approving block {"height": 8434, "hash": "6e26ca39e1569deff15ff0bcfb3eb2e822cac4ab407bdecd39535f1817b442f0", "tx_count": 1, "merkle": "fada37a44441280ac3eaa5f3e102514e7b22d622cf7bca7c04f7e2eadb8ee0a4", "prev": "e039ef27b0e9b709313fb28d2a96e83734ac93432c9610b75a92bacedf22eddc"} -2023-12-16T14:29:38.964Z INFO runtime log {"tx": "a4e08edbeae2f7047cca7bcf22d6227b4e5102e1f3a5eac30a284144a437dafa", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:29:38.970Z INFO initializing dbft {"height": 8435, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:38.970Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 37} -2023-12-16T14:29:38.970Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 37} -2023-12-16T14:29:38.970Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:29:38.970Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 37} -2023-12-16T14:29:38.970Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-16T14:29:38.971Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 37} -2023-12-16T14:29:38.971Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 37} -2023-12-16T14:29:38.970Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:29:38.971Z debug controller/calls.go:95 starting to report local trust values {"epoch": 36} -2023-12-16T14:29:38.971Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 36} -2023-12-16T14:29:38.970Z debug frostfs-node/morph.go:229 new block {"index": 8434} -2023-12-16T14:29:38.973Z debug controller/calls.go:146 reporting successfully finished {"epoch": 36} -2023-12-16T14:29:38.973Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 36} -2023-12-16T14:29:38.975Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:29:38.975Z INFO runtime log {"tx": "c5fc110dd6d8d8b4da51c042356f5b09b5f0f1b430e8dcbeea2fed529c23d752", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:29:38.976Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 8437, "tx_hash": "9cb7867e68226cae8d9b141d15d5459a8ac22e776f25c8062df3bc7a17dc030e"} -2023-12-16T14:29:38.982Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:29:38.982Z info audit/handlers.go:13 new round of audit {"epoch": 37} -2023-12-16T14:29:38.982Z info settlement/calls.go:26 new audit settlement event {"epoch": 37} -2023-12-16T14:29:38.982Z info settlement/handlers.go:14 process audit settlements {"epoch": 37} -2023-12-16T14:29:38.982Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 37} -2023-12-16T14:29:38.983Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 8500, "fallback_valid_for": 40, "tx_hash": "cc489de1b2676c2f299ee0d73d54ca6eac1aaa670b7e762ca2a482b07e55d596"} -2023-12-16T14:29:38.983Z info settlement/handlers.go:18 audit processing finished {"epoch": 37} -2023-12-16T14:29:38.987Z info audit/process.go:39 select containers for audit {"epoch": 37, "amount": 0} -2023-12-16T14:29:38.989Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-16T14:29:38.990Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 8437, "tx_hash": "b358f4ab091dbee701f7c7f8f021f6e62cfa67886bdc1626c52a0e43d61066bb"} -2023-12-16T14:29:39.514Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 8434, "blockHeight": 8434, "took": "10.471719ms"} -2023-12-16T14:29:39.964Z INFO sending PrepareRequest {"height": 8435, "view": 0} -2023-12-16T14:29:39.964Z INFO sending Commit {"height": 8435, "view": 0} -2023-12-16T14:29:39.964Z INFO approving block {"height": 8435, "hash": "4cf9f7bae4b32cee6bd4afe5851cf8fe39870ded7174508f97c0f041513ded32", "tx_count": 3, "merkle": "88bb4b13621cc295a9b578e72f2c345a195344707173357a08d58eeaab0f3654", "prev": "6e26ca39e1569deff15ff0bcfb3eb2e822cac4ab407bdecd39535f1817b442f0"} -2023-12-16T14:29:39.965Z INFO runtime log {"tx": "523429db1eec5acc7dd7ab235321f94296135207b01a2972a9b802b553db73e1", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:29:39.966Z INFO initializing dbft {"height": 8436, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:39.967Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 36} -2023-12-16T14:29:39.967Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 36} -2023-12-16T14:29:39.967Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 36} -2023-12-16T14:29:39.968Z debug frostfs-node/morph.go:229 new block {"index": 8435} -2023-12-16T14:29:40.512Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 8435, "blockHeight": 8435, "took": "8.272555ms"} -2023-12-16T14:29:40.965Z INFO sending PrepareRequest {"height": 8436, "view": 0} -2023-12-16T14:29:40.966Z INFO sending Commit {"height": 8436, "view": 0} -2023-12-16T14:29:40.966Z INFO approving block {"height": 8436, "hash": "3fbabe2a3515e55290f5af04f87ce868b6e5f5894cea14bc8b4ca7ac8fd50205", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cf9f7bae4b32cee6bd4afe5851cf8fe39870ded7174508f97c0f041513ded32"} -2023-12-16T14:29:40.968Z INFO initializing dbft {"height": 8437, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:40.969Z debug frostfs-node/morph.go:229 new block {"index": 8436} -2023-12-16T14:29:41.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8436, "blockHeight": 8436, "took": "8.966155ms"} -2023-12-16T14:29:41.968Z INFO sending PrepareRequest {"height": 8437, "view": 0} -2023-12-16T14:29:41.968Z INFO sending Commit {"height": 8437, "view": 0} -2023-12-16T14:29:41.968Z INFO approving block {"height": 8437, "hash": "ff2bee480501f00bddfe9cbc7468621c3f9307a996e554305c3a90ac8b7dd88c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3fbabe2a3515e55290f5af04f87ce868b6e5f5894cea14bc8b4ca7ac8fd50205"} -2023-12-16T14:29:41.969Z INFO initializing dbft {"height": 8438, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:41.969Z debug frostfs-node/morph.go:229 new block {"index": 8437} -2023-12-16T14:29:42.511Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8437, "blockHeight": 8437, "took": "5.529488ms"} -2023-12-16T14:29:42.970Z INFO sending PrepareRequest {"height": 8438, "view": 0} -2023-12-16T14:29:42.970Z INFO sending Commit {"height": 8438, "view": 0} -2023-12-16T14:29:42.970Z INFO approving block {"height": 8438, "hash": "7004ddb2c0c25896cd977782fb24c45871bcc3ff7a579986bbdc488cf065f0d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff2bee480501f00bddfe9cbc7468621c3f9307a996e554305c3a90ac8b7dd88c"} -2023-12-16T14:29:42.972Z INFO initializing dbft {"height": 8439, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:42.972Z debug frostfs-node/morph.go:229 new block {"index": 8438} -2023-12-16T14:29:43.511Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8438, "blockHeight": 8438, "took": "4.849177ms"} -2023-12-16T14:29:43.971Z INFO sending PrepareRequest {"height": 8439, "view": 0} -2023-12-16T14:29:43.971Z INFO sending Commit {"height": 8439, "view": 0} -2023-12-16T14:29:43.971Z INFO approving block {"height": 8439, "hash": "1c1702360db134ab5d52f64083b579933b94b72eea9f198065299c24dfd33e07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7004ddb2c0c25896cd977782fb24c45871bcc3ff7a579986bbdc488cf065f0d3"} -2023-12-16T14:29:43.972Z INFO initializing dbft {"height": 8440, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:43.973Z debug frostfs-node/morph.go:229 new block {"index": 8439} -2023-12-16T14:29:44.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8439, "blockHeight": 8439, "took": "6.936807ms"} -2023-12-16T14:29:44.972Z INFO sending PrepareRequest {"height": 8440, "view": 0} -2023-12-16T14:29:44.972Z INFO sending Commit {"height": 8440, "view": 0} -2023-12-16T14:29:44.973Z INFO approving block {"height": 8440, "hash": "ee11600c48de7cfa2e722b28d571508982408a7a81e80dfce194177417f3e347", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c1702360db134ab5d52f64083b579933b94b72eea9f198065299c24dfd33e07"} -2023-12-16T14:29:44.974Z INFO initializing dbft {"height": 8441, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:44.975Z debug frostfs-node/morph.go:229 new block {"index": 8440} -2023-12-16T14:29:45.512Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8440, "blockHeight": 8440, "took": "4.984012ms"} -2023-12-16T14:29:45.974Z INFO sending PrepareRequest {"height": 8441, "view": 0} -2023-12-16T14:29:45.975Z INFO sending Commit {"height": 8441, "view": 0} -2023-12-16T14:29:45.975Z INFO approving block {"height": 8441, "hash": "991511280cdf2e1423704e51898e1754e8975ec0895aa51c68c975d6d702882f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee11600c48de7cfa2e722b28d571508982408a7a81e80dfce194177417f3e347"} -2023-12-16T14:29:45.976Z INFO initializing dbft {"height": 8442, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:45.976Z debug frostfs-node/morph.go:229 new block {"index": 8441} -2023-12-16T14:29:46.514Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8441, "blockHeight": 8441, "took": "6.343986ms"} -2023-12-16T14:29:46.975Z INFO sending PrepareRequest {"height": 8442, "view": 0} -2023-12-16T14:29:46.975Z INFO sending Commit {"height": 8442, "view": 0} -2023-12-16T14:29:46.976Z INFO approving block {"height": 8442, "hash": "7aa02e5ab1055874a971ee9119f624a3d6c0a527b4fd128b93cbb0639fdccca1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "991511280cdf2e1423704e51898e1754e8975ec0895aa51c68c975d6d702882f"} -2023-12-16T14:29:46.977Z INFO initializing dbft {"height": 8443, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:46.977Z debug frostfs-node/morph.go:229 new block {"index": 8442} -2023-12-16T14:29:47.514Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8442, "blockHeight": 8442, "took": "4.945315ms"} -2023-12-16T14:29:47.976Z INFO sending PrepareRequest {"height": 8443, "view": 0} -2023-12-16T14:29:47.977Z INFO sending Commit {"height": 8443, "view": 0} -2023-12-16T14:29:47.977Z INFO approving block {"height": 8443, "hash": "355236e07ce2127d4e9d5129f2db420d0f0c71cb7b3312adad5f0bf3b074f990", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7aa02e5ab1055874a971ee9119f624a3d6c0a527b4fd128b93cbb0639fdccca1"} -2023-12-16T14:29:47.980Z INFO initializing dbft {"height": 8444, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:47.981Z debug frostfs-node/morph.go:229 new block {"index": 8443} -2023-12-16T14:29:48.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8443, "blockHeight": 8443, "took": "6.828834ms"} -2023-12-16T14:29:48.978Z INFO sending PrepareRequest {"height": 8444, "view": 0} -2023-12-16T14:29:48.978Z INFO sending Commit {"height": 8444, "view": 0} -2023-12-16T14:29:48.978Z INFO approving block {"height": 8444, "hash": "40de7fff06976772a6b4776055a60b825140be199aa593d314e5f69ce45efbc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "355236e07ce2127d4e9d5129f2db420d0f0c71cb7b3312adad5f0bf3b074f990"} -2023-12-16T14:29:48.979Z INFO initializing dbft {"height": 8445, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:48.979Z debug frostfs-node/morph.go:229 new block {"index": 8444} -2023-12-16T14:29:49.514Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8444, "blockHeight": 8444, "took": "4.08432ms"} -2023-12-16T14:29:49.979Z INFO sending PrepareRequest {"height": 8445, "view": 0} -2023-12-16T14:29:49.979Z INFO sending Commit {"height": 8445, "view": 0} -2023-12-16T14:29:49.979Z INFO approving block {"height": 8445, "hash": "b54a6974bf2a4ba5054fc06bc7293aeb8b6c7e31ee32a3840087e2622c0fe473", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40de7fff06976772a6b4776055a60b825140be199aa593d314e5f69ce45efbc5"} -2023-12-16T14:29:49.981Z INFO initializing dbft {"height": 8446, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:49.981Z debug frostfs-node/morph.go:229 new block {"index": 8445} -2023-12-16T14:29:50.515Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8445, "blockHeight": 8445, "took": "4.283816ms"} -2023-12-16T14:29:50.981Z INFO sending PrepareRequest {"height": 8446, "view": 0} -2023-12-16T14:29:50.981Z INFO sending Commit {"height": 8446, "view": 0} -2023-12-16T14:29:50.981Z INFO approving block {"height": 8446, "hash": "2d59a4bada7ccf0afe282c19ff071dacc124898dd912389fb5a7ba5ff3af5df3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b54a6974bf2a4ba5054fc06bc7293aeb8b6c7e31ee32a3840087e2622c0fe473"} -2023-12-16T14:29:50.983Z INFO initializing dbft {"height": 8447, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:50.984Z debug frostfs-node/morph.go:229 new block {"index": 8446} -2023-12-16T14:29:51.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8446, "blockHeight": 8446, "took": "4.111501ms"} -2023-12-16T14:29:51.982Z INFO sending PrepareRequest {"height": 8447, "view": 0} -2023-12-16T14:29:51.982Z INFO sending Commit {"height": 8447, "view": 0} -2023-12-16T14:29:51.982Z INFO approving block {"height": 8447, "hash": "9208eec9278dc568b2d1a1047015eb53077a34566c64afd88ac30f9c9bb1ebd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d59a4bada7ccf0afe282c19ff071dacc124898dd912389fb5a7ba5ff3af5df3"} -2023-12-16T14:29:51.983Z INFO initializing dbft {"height": 8448, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:51.984Z debug frostfs-node/morph.go:229 new block {"index": 8447} -2023-12-16T14:29:52.520Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8447, "blockHeight": 8447, "took": "7.203585ms"} -2023-12-16T14:29:52.983Z INFO sending PrepareRequest {"height": 8448, "view": 0} -2023-12-16T14:29:52.983Z INFO sending Commit {"height": 8448, "view": 0} -2023-12-16T14:29:52.983Z INFO approving block {"height": 8448, "hash": "bc6b89c272c09e0df6a7fcdb3439acfe5fbb2e121874bd38aabc84530c02dd4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9208eec9278dc568b2d1a1047015eb53077a34566c64afd88ac30f9c9bb1ebd1"} -2023-12-16T14:29:52.984Z INFO initializing dbft {"height": 8449, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:52.985Z debug frostfs-node/morph.go:229 new block {"index": 8448} -2023-12-16T14:29:53.519Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8448, "blockHeight": 8448, "took": "6.002867ms"} -2023-12-16T14:29:53.984Z INFO sending PrepareRequest {"height": 8449, "view": 0} -2023-12-16T14:29:53.984Z INFO sending Commit {"height": 8449, "view": 0} -2023-12-16T14:29:53.985Z INFO approving block {"height": 8449, "hash": "d893c6684af6bf12677099f0ae602e8851dc052d13a876d6675f5a6754e7e218", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc6b89c272c09e0df6a7fcdb3439acfe5fbb2e121874bd38aabc84530c02dd4c"} -2023-12-16T14:29:53.986Z INFO initializing dbft {"height": 8450, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:53.986Z debug frostfs-node/morph.go:229 new block {"index": 8449} -2023-12-16T14:29:54.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8449, "blockHeight": 8449, "took": "4.466272ms"} -2023-12-16T14:29:54.986Z INFO sending PrepareRequest {"height": 8450, "view": 0} -2023-12-16T14:29:54.986Z INFO sending Commit {"height": 8450, "view": 0} -2023-12-16T14:29:54.986Z INFO approving block {"height": 8450, "hash": "b365576a33d9bc18c7f1a8b9288c6eeaf721306f459eafe7b751ee11c14e533c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d893c6684af6bf12677099f0ae602e8851dc052d13a876d6675f5a6754e7e218"} -2023-12-16T14:29:54.987Z INFO initializing dbft {"height": 8451, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:54.987Z debug frostfs-node/morph.go:229 new block {"index": 8450} -2023-12-16T14:29:54.990Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:29:54.992Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:29:54.992Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:29:55.525Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8450, "blockHeight": 8450, "took": "9.886972ms"} -2023-12-16T14:29:55.987Z INFO sending PrepareRequest {"height": 8451, "view": 0} -2023-12-16T14:29:55.988Z INFO sending Commit {"height": 8451, "view": 0} -2023-12-16T14:29:55.988Z INFO approving block {"height": 8451, "hash": "8970fe03d12eadb195f39967e0e22a16d209d5a33efb887e579da649091aecc0", "tx_count": 2, "merkle": "0bc9b633a4b5402f766567191aefd8459db101a11166eed61b88344bb1366cce", "prev": "b365576a33d9bc18c7f1a8b9288c6eeaf721306f459eafe7b751ee11c14e533c"} -2023-12-16T14:29:55.989Z INFO runtime log {"tx": "adba2fc1df740999c97e57e820348917a8641bdc413cd9fa416a0df9fde7ced3", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:29:55.989Z INFO runtime log {"tx": "adba2fc1df740999c97e57e820348917a8641bdc413cd9fa416a0df9fde7ced3", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:29:55.991Z INFO initializing dbft {"height": 8452, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:55.995Z debug frostfs-node/morph.go:229 new block {"index": 8451} -2023-12-16T14:29:56.524Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8451, "blockHeight": 8451, "took": "7.986992ms"} -2023-12-16T14:29:56.989Z INFO sending PrepareRequest {"height": 8452, "view": 0} -2023-12-16T14:29:56.989Z INFO sending Commit {"height": 8452, "view": 0} -2023-12-16T14:29:56.990Z INFO approving block {"height": 8452, "hash": "e4f35abed3e5e4a04eb214b49460bb7b57b079e095a16149751fa89b7fdda846", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8970fe03d12eadb195f39967e0e22a16d209d5a33efb887e579da649091aecc0"} -2023-12-16T14:29:56.992Z INFO initializing dbft {"height": 8453, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:56.992Z debug frostfs-node/morph.go:229 new block {"index": 8452} -2023-12-16T14:29:57.522Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8452, "blockHeight": 8452, "took": "5.490628ms"} -2023-12-16T14:29:57.991Z INFO sending PrepareRequest {"height": 8453, "view": 0} -2023-12-16T14:29:57.991Z INFO sending Commit {"height": 8453, "view": 0} -2023-12-16T14:29:57.992Z INFO approving block {"height": 8453, "hash": "b2e7e4de59660c0d41412f4fe6c0e8e85293de0757ccb547d96d261ef3739be8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4f35abed3e5e4a04eb214b49460bb7b57b079e095a16149751fa89b7fdda846"} -2023-12-16T14:29:57.993Z INFO initializing dbft {"height": 8454, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:57.994Z debug frostfs-node/morph.go:229 new block {"index": 8453} -2023-12-16T14:29:58.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8453, "blockHeight": 8453, "took": "3.332016ms"} -2023-12-16T14:29:58.993Z INFO sending PrepareRequest {"height": 8454, "view": 0} -2023-12-16T14:29:58.993Z INFO sending Commit {"height": 8454, "view": 0} -2023-12-16T14:29:58.993Z INFO approving block {"height": 8454, "hash": "0e44abb5ea07c76edca589efb44796b171f46ac2d5308a6d87c5f8f9e6ee114c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2e7e4de59660c0d41412f4fe6c0e8e85293de0757ccb547d96d261ef3739be8"} -2023-12-16T14:29:58.995Z INFO initializing dbft {"height": 8455, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:58.996Z debug frostfs-node/morph.go:229 new block {"index": 8454} -2023-12-16T14:29:59.525Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8454, "blockHeight": 8454, "took": "7.096894ms"} -2023-12-16T14:29:59.994Z INFO sending PrepareRequest {"height": 8455, "view": 0} -2023-12-16T14:29:59.995Z INFO sending Commit {"height": 8455, "view": 0} -2023-12-16T14:29:59.995Z INFO approving block {"height": 8455, "hash": "87268b2805ee69a9150e104b42bd4f197f39dde04a7d7d5a1952ace9451ed767", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e44abb5ea07c76edca589efb44796b171f46ac2d5308a6d87c5f8f9e6ee114c"} -2023-12-16T14:29:59.997Z INFO initializing dbft {"height": 8456, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:29:59.997Z debug frostfs-node/morph.go:229 new block {"index": 8455} -2023-12-16T14:30:00.523Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8455, "blockHeight": 8455, "took": "4.483352ms"} -2023-12-16T14:30:00.996Z INFO sending PrepareRequest {"height": 8456, "view": 0} -2023-12-16T14:30:00.996Z INFO sending Commit {"height": 8456, "view": 0} -2023-12-16T14:30:00.996Z INFO approving block {"height": 8456, "hash": "bfe58f7740157131ee84f35c49dfc3d4cd08302226b9df46898a7352698bb3cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87268b2805ee69a9150e104b42bd4f197f39dde04a7d7d5a1952ace9451ed767"} -2023-12-16T14:30:00.998Z INFO initializing dbft {"height": 8457, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:00.999Z debug frostfs-node/morph.go:229 new block {"index": 8456} -2023-12-16T14:30:01.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8456, "blockHeight": 8456, "took": "4.661447ms"} -2023-12-16T14:30:01.997Z INFO sending PrepareRequest {"height": 8457, "view": 0} -2023-12-16T14:30:01.997Z INFO sending Commit {"height": 8457, "view": 0} -2023-12-16T14:30:01.998Z INFO approving block {"height": 8457, "hash": "cc43921691c5c85c1bfce54980b23ba785e56986694a96561e5781104ff6e7e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfe58f7740157131ee84f35c49dfc3d4cd08302226b9df46898a7352698bb3cb"} -2023-12-16T14:30:01.999Z INFO initializing dbft {"height": 8458, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:02.000Z debug frostfs-node/morph.go:229 new block {"index": 8457} -2023-12-16T14:30:02.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8457, "blockHeight": 8457, "took": "5.992786ms"} -2023-12-16T14:30:02.998Z INFO sending PrepareRequest {"height": 8458, "view": 0} -2023-12-16T14:30:02.998Z INFO sending Commit {"height": 8458, "view": 0} -2023-12-16T14:30:02.999Z INFO approving block {"height": 8458, "hash": "d5dd6fa949c2589b8684bf8ed6b285b51da9fad3d51cd7745591bcbc47356e37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc43921691c5c85c1bfce54980b23ba785e56986694a96561e5781104ff6e7e6"} -2023-12-16T14:30:03.000Z INFO initializing dbft {"height": 8459, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:03.000Z debug frostfs-node/morph.go:229 new block {"index": 8458} -2023-12-16T14:30:03.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8458, "blockHeight": 8458, "took": "3.902275ms"} -2023-12-16T14:30:04.000Z INFO sending PrepareRequest {"height": 8459, "view": 0} -2023-12-16T14:30:04.000Z INFO sending Commit {"height": 8459, "view": 0} -2023-12-16T14:30:04.000Z INFO approving block {"height": 8459, "hash": "54c4b89cfbd2427b631ba6fbcb37c98a424bc0de59d4cec7d04d31c3bb28ac2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5dd6fa949c2589b8684bf8ed6b285b51da9fad3d51cd7745591bcbc47356e37"} -2023-12-16T14:30:04.001Z INFO initializing dbft {"height": 8460, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:04.002Z debug frostfs-node/morph.go:229 new block {"index": 8459} -2023-12-16T14:30:04.525Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8459, "blockHeight": 8459, "took": "4.892648ms"} -2023-12-16T14:30:05.001Z INFO sending PrepareRequest {"height": 8460, "view": 0} -2023-12-16T14:30:05.002Z INFO sending Commit {"height": 8460, "view": 0} -2023-12-16T14:30:05.002Z INFO approving block {"height": 8460, "hash": "ff4c90c650ee529317484e564fecb9a13d245329f8ddafc01de69399371c99e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54c4b89cfbd2427b631ba6fbcb37c98a424bc0de59d4cec7d04d31c3bb28ac2b"} -2023-12-16T14:30:05.003Z INFO initializing dbft {"height": 8461, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:05.004Z debug frostfs-node/morph.go:229 new block {"index": 8460} -2023-12-16T14:30:05.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8460, "blockHeight": 8460, "took": "5.284669ms"} -2023-12-16T14:30:06.003Z INFO sending PrepareRequest {"height": 8461, "view": 0} -2023-12-16T14:30:06.004Z INFO sending Commit {"height": 8461, "view": 0} -2023-12-16T14:30:06.004Z INFO approving block {"height": 8461, "hash": "b55f87b3c42aef0dda106776a033ed1f1a6b5ee6258e416df00b6e8d4f24347e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff4c90c650ee529317484e564fecb9a13d245329f8ddafc01de69399371c99e3"} -2023-12-16T14:30:06.005Z INFO initializing dbft {"height": 8462, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:06.005Z debug frostfs-node/morph.go:229 new block {"index": 8461} -2023-12-16T14:30:06.527Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8461, "blockHeight": 8461, "took": "5.934809ms"} -2023-12-16T14:30:07.005Z INFO sending PrepareRequest {"height": 8462, "view": 0} -2023-12-16T14:30:07.006Z INFO sending Commit {"height": 8462, "view": 0} -2023-12-16T14:30:07.006Z INFO approving block {"height": 8462, "hash": "6231308e232cdc8f0b8a499561c8af296850c5e5531f0c20aff8292554d2145b", "tx_count": 1, "merkle": "9e1bcd7c71637744e7fd9210bb75635422339116cdd61f4b75638f8573617b0e", "prev": "b55f87b3c42aef0dda106776a033ed1f1a6b5ee6258e416df00b6e8d4f24347e"} -2023-12-16T14:30:07.007Z INFO initializing dbft {"height": 8463, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:07.008Z debug frostfs-node/morph.go:229 new block {"index": 8462} -2023-12-16T14:30:07.010Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-16T14:30:07.529Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 8462, "blockHeight": 8462, "took": "6.73073ms"} -2023-12-16T14:30:08.007Z INFO sending PrepareRequest {"height": 8463, "view": 0} -2023-12-16T14:30:08.007Z INFO sending Commit {"height": 8463, "view": 0} -2023-12-16T14:30:08.008Z INFO approving block {"height": 8463, "hash": "8f6d0c5866085dbf5b1459bf77680457ed1e8adcf05c9b301ef21c40f6d8c8aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6231308e232cdc8f0b8a499561c8af296850c5e5531f0c20aff8292554d2145b"} -2023-12-16T14:30:08.009Z INFO initializing dbft {"height": 8464, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:08.010Z debug frostfs-node/morph.go:229 new block {"index": 8463} -2023-12-16T14:30:08.529Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8463, "blockHeight": 8463, "took": "5.077824ms"} -2023-12-16T14:30:09.009Z INFO sending PrepareRequest {"height": 8464, "view": 0} -2023-12-16T14:30:09.009Z INFO sending Commit {"height": 8464, "view": 0} -2023-12-16T14:30:09.010Z INFO approving block {"height": 8464, "hash": "c4f456fb89fd34b9f90a5888ed6f229bbd68bda292822d4d71407104e33a52f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f6d0c5866085dbf5b1459bf77680457ed1e8adcf05c9b301ef21c40f6d8c8aa"} -2023-12-16T14:30:09.011Z INFO initializing dbft {"height": 8465, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:09.012Z debug frostfs-node/morph.go:229 new block {"index": 8464} -2023-12-16T14:30:09.529Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8464, "blockHeight": 8464, "took": "4.464637ms"} -2023-12-16T14:30:10.011Z INFO sending PrepareRequest {"height": 8465, "view": 0} -2023-12-16T14:30:10.011Z INFO sending Commit {"height": 8465, "view": 0} -2023-12-16T14:30:10.011Z INFO approving block {"height": 8465, "hash": "afaf88777c32418acdc7d1a5fc569e9c61b1d804399b01d8987f96c4ad9236e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4f456fb89fd34b9f90a5888ed6f229bbd68bda292822d4d71407104e33a52f0"} -2023-12-16T14:30:10.012Z INFO initializing dbft {"height": 8466, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:10.012Z debug frostfs-node/morph.go:229 new block {"index": 8465} -2023-12-16T14:30:10.531Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8465, "blockHeight": 8465, "took": "6.501422ms"} -2023-12-16T14:30:11.012Z INFO sending PrepareRequest {"height": 8466, "view": 0} -2023-12-16T14:30:11.013Z INFO sending Commit {"height": 8466, "view": 0} -2023-12-16T14:30:11.013Z INFO approving block {"height": 8466, "hash": "35f25666eba886444ca268352cde578c7c8a09ed96b32ba12d73330d08ba9736", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afaf88777c32418acdc7d1a5fc569e9c61b1d804399b01d8987f96c4ad9236e0"} -2023-12-16T14:30:11.014Z INFO initializing dbft {"height": 8467, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:11.015Z debug frostfs-node/morph.go:229 new block {"index": 8466} -2023-12-16T14:30:11.529Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8466, "blockHeight": 8466, "took": "3.860543ms"} -2023-12-16T14:30:12.015Z INFO sending PrepareRequest {"height": 8467, "view": 0} -2023-12-16T14:30:12.015Z INFO sending Commit {"height": 8467, "view": 0} -2023-12-16T14:30:12.015Z INFO approving block {"height": 8467, "hash": "21fb41c0a0f4a06ecb55cc12ee3475cf4e5a0fd11cc48a1fd6a40294c9e34dc3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35f25666eba886444ca268352cde578c7c8a09ed96b32ba12d73330d08ba9736"} -2023-12-16T14:30:12.016Z INFO initializing dbft {"height": 8468, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:12.016Z debug frostfs-node/morph.go:229 new block {"index": 8467} -2023-12-16T14:30:12.530Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8467, "blockHeight": 8467, "took": "4.187702ms"} -2023-12-16T14:30:13.017Z INFO sending PrepareRequest {"height": 8468, "view": 0} -2023-12-16T14:30:13.017Z INFO sending Commit {"height": 8468, "view": 0} -2023-12-16T14:30:13.017Z INFO approving block {"height": 8468, "hash": "79d7edbd5b34136de575cca9722e063cc8d4537fab02768e39fc64ee49866764", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21fb41c0a0f4a06ecb55cc12ee3475cf4e5a0fd11cc48a1fd6a40294c9e34dc3"} -2023-12-16T14:30:13.018Z INFO initializing dbft {"height": 8469, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:13.019Z debug frostfs-node/morph.go:229 new block {"index": 8468} -2023-12-16T14:30:13.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8468, "blockHeight": 8468, "took": "6.281015ms"} -2023-12-16T14:30:14.018Z INFO sending PrepareRequest {"height": 8469, "view": 0} -2023-12-16T14:30:14.018Z INFO sending Commit {"height": 8469, "view": 0} -2023-12-16T14:30:14.019Z INFO approving block {"height": 8469, "hash": "bf4fee96b728a08c782395f60d291ba247c0d273786df2811f81c45963a60727", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79d7edbd5b34136de575cca9722e063cc8d4537fab02768e39fc64ee49866764"} -2023-12-16T14:30:14.019Z INFO initializing dbft {"height": 8470, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:14.020Z debug frostfs-node/morph.go:229 new block {"index": 8469} -2023-12-16T14:30:14.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8469, "blockHeight": 8469, "took": "6.106049ms"} -2023-12-16T14:30:15.020Z INFO sending PrepareRequest {"height": 8470, "view": 0} -2023-12-16T14:30:15.020Z INFO sending Commit {"height": 8470, "view": 0} -2023-12-16T14:30:15.020Z INFO approving block {"height": 8470, "hash": "17c1219e83763cee6f9aa0b7de4081ac2414829fb3f4f36a3171e00a42d500cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf4fee96b728a08c782395f60d291ba247c0d273786df2811f81c45963a60727"} -2023-12-16T14:30:15.021Z INFO initializing dbft {"height": 8471, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:15.021Z debug frostfs-node/morph.go:229 new block {"index": 8470} -2023-12-16T14:30:15.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8470, "blockHeight": 8470, "took": "5.77237ms"} -2023-12-16T14:30:16.022Z INFO sending PrepareRequest {"height": 8471, "view": 0} -2023-12-16T14:30:16.022Z INFO sending Commit {"height": 8471, "view": 0} -2023-12-16T14:30:16.022Z INFO approving block {"height": 8471, "hash": "2c5b08cf9b28d2acf1c07f072a4bf4b4bc8ccfff2ca28731c136a183e498dcda", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17c1219e83763cee6f9aa0b7de4081ac2414829fb3f4f36a3171e00a42d500cd"} -2023-12-16T14:30:16.024Z INFO initializing dbft {"height": 8472, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:16.025Z debug frostfs-node/morph.go:229 new block {"index": 8471} -2023-12-16T14:30:16.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8471, "blockHeight": 8471, "took": "6.835404ms"} -2023-12-16T14:30:17.023Z INFO sending PrepareRequest {"height": 8472, "view": 0} -2023-12-16T14:30:17.024Z INFO sending Commit {"height": 8472, "view": 0} -2023-12-16T14:30:17.024Z INFO approving block {"height": 8472, "hash": "df503691a763999e25dcc5c5c94d2279fca070ada1281d81dee73559ccae5579", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2c5b08cf9b28d2acf1c07f072a4bf4b4bc8ccfff2ca28731c136a183e498dcda"} -2023-12-16T14:30:17.025Z INFO initializing dbft {"height": 8473, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:17.026Z debug frostfs-node/morph.go:229 new block {"index": 8472} -2023-12-16T14:30:17.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8472, "blockHeight": 8472, "took": "4.998957ms"} -2023-12-16T14:30:18.026Z INFO sending PrepareRequest {"height": 8473, "view": 0} -2023-12-16T14:30:18.026Z INFO sending Commit {"height": 8473, "view": 0} -2023-12-16T14:30:18.026Z INFO approving block {"height": 8473, "hash": "5ed5698bd0303bb347500b3a3561b977586195a7350d78db1b440a8627a10a03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df503691a763999e25dcc5c5c94d2279fca070ada1281d81dee73559ccae5579"} -2023-12-16T14:30:18.027Z INFO initializing dbft {"height": 8474, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:18.027Z debug frostfs-node/morph.go:229 new block {"index": 8473} -2023-12-16T14:30:18.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8473, "blockHeight": 8473, "took": "4.305277ms"} -2023-12-16T14:30:19.027Z INFO sending PrepareRequest {"height": 8474, "view": 0} -2023-12-16T14:30:19.027Z INFO sending Commit {"height": 8474, "view": 0} -2023-12-16T14:30:19.027Z INFO approving block {"height": 8474, "hash": "7b364e1585712ad15ae9fd2039ecae7417d3aae67f2fb81de1a5017fbcd67249", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ed5698bd0303bb347500b3a3561b977586195a7350d78db1b440a8627a10a03"} -2023-12-16T14:30:19.028Z INFO initializing dbft {"height": 8475, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:19.028Z debug frostfs-node/morph.go:229 new block {"index": 8474} -2023-12-16T14:30:19.535Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8474, "blockHeight": 8474, "took": "5.013197ms"} -2023-12-16T14:30:20.029Z INFO sending PrepareRequest {"height": 8475, "view": 0} -2023-12-16T14:30:20.029Z INFO sending Commit {"height": 8475, "view": 0} -2023-12-16T14:30:20.029Z INFO approving block {"height": 8475, "hash": "ab9c54b7cd59fd34768d0e4549818268a26baf14ceb20d7ee6a0b2c8086be349", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b364e1585712ad15ae9fd2039ecae7417d3aae67f2fb81de1a5017fbcd67249"} -2023-12-16T14:30:20.030Z INFO initializing dbft {"height": 8476, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:20.031Z debug frostfs-node/morph.go:229 new block {"index": 8475} -2023-12-16T14:30:20.539Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8475, "blockHeight": 8475, "took": "7.386787ms"} -2023-12-16T14:30:21.031Z INFO sending PrepareRequest {"height": 8476, "view": 0} -2023-12-16T14:30:21.031Z INFO sending Commit {"height": 8476, "view": 0} -2023-12-16T14:30:21.031Z INFO approving block {"height": 8476, "hash": "4e8278c8f6d36463758c7ff743934eb4943ed5984d8997672f15217e83f8ae40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ab9c54b7cd59fd34768d0e4549818268a26baf14ceb20d7ee6a0b2c8086be349"} -2023-12-16T14:30:21.032Z INFO initializing dbft {"height": 8477, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:21.033Z debug frostfs-node/morph.go:229 new block {"index": 8476} -2023-12-16T14:30:21.537Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8476, "blockHeight": 8476, "took": "4.784431ms"} -2023-12-16T14:30:22.032Z INFO sending PrepareRequest {"height": 8477, "view": 0} -2023-12-16T14:30:22.032Z INFO sending Commit {"height": 8477, "view": 0} -2023-12-16T14:30:22.032Z INFO approving block {"height": 8477, "hash": "11ae4729d07b94fb6cb827989796795cb5f3c860e0ac9d0358685c04f5579914", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e8278c8f6d36463758c7ff743934eb4943ed5984d8997672f15217e83f8ae40"} -2023-12-16T14:30:22.033Z INFO initializing dbft {"height": 8478, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:22.034Z debug frostfs-node/morph.go:229 new block {"index": 8477} -2023-12-16T14:30:22.538Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8477, "blockHeight": 8477, "took": "6.15811ms"} -2023-12-16T14:30:23.033Z INFO sending PrepareRequest {"height": 8478, "view": 0} -2023-12-16T14:30:23.033Z INFO sending Commit {"height": 8478, "view": 0} -2023-12-16T14:30:23.033Z INFO approving block {"height": 8478, "hash": "5ee1c40fae11e28355bbc43b3fe85cf56cf2104975742d983b88d7a3e58ad475", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11ae4729d07b94fb6cb827989796795cb5f3c860e0ac9d0358685c04f5579914"} -2023-12-16T14:30:23.034Z INFO initializing dbft {"height": 8479, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:23.035Z debug frostfs-node/morph.go:229 new block {"index": 8478} -2023-12-16T14:30:23.538Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8478, "blockHeight": 8478, "took": "4.930585ms"} -2023-12-16T14:30:24.035Z INFO sending PrepareRequest {"height": 8479, "view": 0} -2023-12-16T14:30:24.035Z INFO sending Commit {"height": 8479, "view": 0} -2023-12-16T14:30:24.035Z INFO approving block {"height": 8479, "hash": "2d3e509121501d79194c8f3279fd7ca2b5d0b05655c377fdbbfbb0b8b39b013b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ee1c40fae11e28355bbc43b3fe85cf56cf2104975742d983b88d7a3e58ad475"} -2023-12-16T14:30:24.037Z INFO initializing dbft {"height": 8480, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:24.037Z debug frostfs-node/morph.go:229 new block {"index": 8479} -2023-12-16T14:30:24.540Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8479, "blockHeight": 8479, "took": "6.279954ms"} -2023-12-16T14:30:25.036Z INFO sending PrepareRequest {"height": 8480, "view": 0} -2023-12-16T14:30:25.036Z INFO sending Commit {"height": 8480, "view": 0} -2023-12-16T14:30:25.037Z INFO approving block {"height": 8480, "hash": "4a6fc4520c4e9b0b4dfc6aaefd045b4d1dd691a4c3a8a6747b4ec2d91f5d5fa9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d3e509121501d79194c8f3279fd7ca2b5d0b05655c377fdbbfbb0b8b39b013b"} -2023-12-16T14:30:25.037Z INFO initializing dbft {"height": 8481, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:25.038Z debug frostfs-node/morph.go:229 new block {"index": 8480} -2023-12-16T14:30:25.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8480, "blockHeight": 8480, "took": "5.424511ms"} -2023-12-16T14:30:26.037Z INFO sending PrepareRequest {"height": 8481, "view": 0} -2023-12-16T14:30:26.037Z INFO sending Commit {"height": 8481, "view": 0} -2023-12-16T14:30:26.038Z INFO approving block {"height": 8481, "hash": "566f020fb1c01f20359725bd6aecbd01ca562861677f7f4773416aafef450ee7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a6fc4520c4e9b0b4dfc6aaefd045b4d1dd691a4c3a8a6747b4ec2d91f5d5fa9"} -2023-12-16T14:30:26.038Z INFO initializing dbft {"height": 8482, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:26.039Z debug frostfs-node/morph.go:229 new block {"index": 8481} -2023-12-16T14:30:26.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8481, "blockHeight": 8481, "took": "5.712269ms"} -2023-12-16T14:30:27.039Z INFO sending PrepareRequest {"height": 8482, "view": 0} -2023-12-16T14:30:27.039Z INFO sending Commit {"height": 8482, "view": 0} -2023-12-16T14:30:27.039Z INFO approving block {"height": 8482, "hash": "df7bd02ba965e10ced87903c762f109342e050cadd87dcb640d6a6584f9fac04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "566f020fb1c01f20359725bd6aecbd01ca562861677f7f4773416aafef450ee7"} -2023-12-16T14:30:27.040Z INFO initializing dbft {"height": 8483, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:27.040Z debug frostfs-node/morph.go:229 new block {"index": 8482} -2023-12-16T14:30:27.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8482, "blockHeight": 8482, "took": "5.584854ms"} -2023-12-16T14:30:28.040Z INFO sending PrepareRequest {"height": 8483, "view": 0} -2023-12-16T14:30:28.040Z INFO sending Commit {"height": 8483, "view": 0} -2023-12-16T14:30:28.040Z INFO approving block {"height": 8483, "hash": "31ff7af38b087d8a37a4674cab9cf81040a68ccb60558d43bcf87417b722de76", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df7bd02ba965e10ced87903c762f109342e050cadd87dcb640d6a6584f9fac04"} -2023-12-16T14:30:28.041Z INFO initializing dbft {"height": 8484, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:28.042Z debug frostfs-node/morph.go:229 new block {"index": 8483} -2023-12-16T14:30:28.542Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8483, "blockHeight": 8483, "took": "5.276405ms"} -2023-12-16T14:30:29.041Z INFO sending PrepareRequest {"height": 8484, "view": 0} -2023-12-16T14:30:29.041Z INFO sending Commit {"height": 8484, "view": 0} -2023-12-16T14:30:29.042Z INFO approving block {"height": 8484, "hash": "8a6029fe50e240fa15f658fd8880f5f34b1b75ba22309d6ca9ab3a760dd2c806", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31ff7af38b087d8a37a4674cab9cf81040a68ccb60558d43bcf87417b722de76"} -2023-12-16T14:30:29.042Z INFO initializing dbft {"height": 8485, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:29.043Z debug frostfs-node/morph.go:229 new block {"index": 8484} -2023-12-16T14:30:29.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8484, "blockHeight": 8484, "took": "6.583012ms"} -2023-12-16T14:30:30.043Z INFO sending PrepareRequest {"height": 8485, "view": 0} -2023-12-16T14:30:30.043Z INFO sending Commit {"height": 8485, "view": 0} -2023-12-16T14:30:30.043Z INFO approving block {"height": 8485, "hash": "abbd06bc7e115f738bb513284533c62ccc0b7c086a79ac61798261888070c362", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a6029fe50e240fa15f658fd8880f5f34b1b75ba22309d6ca9ab3a760dd2c806"} -2023-12-16T14:30:30.044Z INFO initializing dbft {"height": 8486, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:30.045Z debug frostfs-node/morph.go:229 new block {"index": 8485} -2023-12-16T14:30:30.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8485, "blockHeight": 8485, "took": "6.060892ms"} -2023-12-16T14:30:31.044Z INFO sending PrepareRequest {"height": 8486, "view": 0} -2023-12-16T14:30:31.044Z INFO sending Commit {"height": 8486, "view": 0} -2023-12-16T14:30:31.044Z INFO approving block {"height": 8486, "hash": "078b4204eab7a1343624a7160474f839c161a60ef55742bfa1ed31d80b6531f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abbd06bc7e115f738bb513284533c62ccc0b7c086a79ac61798261888070c362"} -2023-12-16T14:30:31.045Z INFO initializing dbft {"height": 8487, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:31.046Z debug frostfs-node/morph.go:229 new block {"index": 8486} -2023-12-16T14:30:31.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8486, "blockHeight": 8486, "took": "8.149979ms"} -2023-12-16T14:30:32.046Z INFO sending PrepareRequest {"height": 8487, "view": 0} -2023-12-16T14:30:32.046Z INFO sending Commit {"height": 8487, "view": 0} -2023-12-16T14:30:32.047Z INFO approving block {"height": 8487, "hash": "e6953ff603e6ea39d30f2342ec68c4ceed83bc0e4ab716116183e805b85c3191", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "078b4204eab7a1343624a7160474f839c161a60ef55742bfa1ed31d80b6531f1"} -2023-12-16T14:30:32.048Z INFO initializing dbft {"height": 8488, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:32.048Z debug frostfs-node/morph.go:229 new block {"index": 8487} -2023-12-16T14:30:32.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8487, "blockHeight": 8487, "took": "4.945615ms"} -2023-12-16T14:30:33.047Z INFO sending PrepareRequest {"height": 8488, "view": 0} -2023-12-16T14:30:33.047Z INFO sending Commit {"height": 8488, "view": 0} -2023-12-16T14:30:33.048Z INFO approving block {"height": 8488, "hash": "6f764fe8927d5c11aa27168cfbdc2d4ed63958d911492f329b1be6567b4e0776", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e6953ff603e6ea39d30f2342ec68c4ceed83bc0e4ab716116183e805b85c3191"} -2023-12-16T14:30:33.048Z INFO initializing dbft {"height": 8489, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:33.049Z debug frostfs-node/morph.go:229 new block {"index": 8488} -2023-12-16T14:30:33.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8488, "blockHeight": 8488, "took": "3.877643ms"} -2023-12-16T14:30:34.049Z INFO sending PrepareRequest {"height": 8489, "view": 0} -2023-12-16T14:30:34.049Z INFO sending Commit {"height": 8489, "view": 0} -2023-12-16T14:30:34.049Z INFO approving block {"height": 8489, "hash": "bf2df87be40725fda4391b6ef76cad2cd97bc8b9eb46b22bc72559621b157dea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f764fe8927d5c11aa27168cfbdc2d4ed63958d911492f329b1be6567b4e0776"} -2023-12-16T14:30:34.050Z INFO initializing dbft {"height": 8490, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:34.050Z debug frostfs-node/morph.go:229 new block {"index": 8489} -2023-12-16T14:30:34.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8489, "blockHeight": 8489, "took": "6.80806ms"} -2023-12-16T14:30:35.050Z INFO sending PrepareRequest {"height": 8490, "view": 0} -2023-12-16T14:30:35.051Z INFO sending Commit {"height": 8490, "view": 0} -2023-12-16T14:30:35.051Z INFO approving block {"height": 8490, "hash": "96be1b4de982c9ec1b438f9c6408b9eae5e821bc4f51e2d3dca6cca4dfe0cdfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf2df87be40725fda4391b6ef76cad2cd97bc8b9eb46b22bc72559621b157dea"} -2023-12-16T14:30:35.051Z INFO initializing dbft {"height": 8491, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:35.052Z debug frostfs-node/morph.go:229 new block {"index": 8490} -2023-12-16T14:30:35.545Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8490, "blockHeight": 8490, "took": "4.987635ms"} -2023-12-16T14:30:36.052Z INFO sending PrepareRequest {"height": 8491, "view": 0} -2023-12-16T14:30:36.052Z INFO sending Commit {"height": 8491, "view": 0} -2023-12-16T14:30:36.052Z INFO approving block {"height": 8491, "hash": "a741649c3a3615a01fef16837545414bcb6eacc8eff191bb4974f1428989b08e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96be1b4de982c9ec1b438f9c6408b9eae5e821bc4f51e2d3dca6cca4dfe0cdfe"} -2023-12-16T14:30:36.053Z INFO initializing dbft {"height": 8492, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:36.053Z debug frostfs-node/morph.go:229 new block {"index": 8491} -2023-12-16T14:30:36.545Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8491, "blockHeight": 8491, "took": "4.638967ms"} -2023-12-16T14:30:37.053Z INFO sending PrepareRequest {"height": 8492, "view": 0} -2023-12-16T14:30:37.053Z INFO sending Commit {"height": 8492, "view": 0} -2023-12-16T14:30:37.054Z INFO approving block {"height": 8492, "hash": "cbc019532847f0917788924d780e35a86e80d3020931137aace6a97052a553a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a741649c3a3615a01fef16837545414bcb6eacc8eff191bb4974f1428989b08e"} -2023-12-16T14:30:37.054Z INFO initializing dbft {"height": 8493, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:37.055Z debug frostfs-node/morph.go:229 new block {"index": 8492} -2023-12-16T14:30:37.548Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8492, "blockHeight": 8492, "took": "7.684649ms"} -2023-12-16T14:30:38.055Z INFO sending PrepareRequest {"height": 8493, "view": 0} -2023-12-16T14:30:38.055Z INFO sending Commit {"height": 8493, "view": 0} -2023-12-16T14:30:38.055Z INFO approving block {"height": 8493, "hash": "52d67f31b88d56414be81cb01f886e021c66744feadedf110f60c6b86c2501a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbc019532847f0917788924d780e35a86e80d3020931137aace6a97052a553a4"} -2023-12-16T14:30:38.056Z INFO initializing dbft {"height": 8494, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:38.057Z debug frostfs-node/morph.go:229 new block {"index": 8493} -2023-12-16T14:30:38.548Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8493, "blockHeight": 8493, "took": "6.777869ms"} -2023-12-16T14:30:39.056Z INFO sending PrepareRequest {"height": 8494, "view": 0} -2023-12-16T14:30:39.057Z INFO sending Commit {"height": 8494, "view": 0} -2023-12-16T14:30:39.057Z INFO approving block {"height": 8494, "hash": "52c6f0e058dbaf97f1169c25a9e03d6d28dbe089d6f96715a18c4765db50f1c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52d67f31b88d56414be81cb01f886e021c66744feadedf110f60c6b86c2501a3"} -2023-12-16T14:30:39.058Z INFO initializing dbft {"height": 8495, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:39.058Z debug frostfs-node/morph.go:229 new block {"index": 8494} -2023-12-16T14:30:39.064Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 36 epoch for daughters"} -2023-12-16T14:30:39.066Z INFO runtime log {"tx": "9e1cf81fafd0033684c6cbf2d2c31f97aeac346bf6fa45af5144cd662923e3f6", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:30:39.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8494, "blockHeight": 8494, "took": "4.612904ms"} -2023-12-16T14:30:40.058Z INFO sending PrepareRequest {"height": 8495, "view": 0} -2023-12-16T14:30:40.059Z INFO sending Commit {"height": 8495, "view": 0} -2023-12-16T14:30:40.059Z INFO approving block {"height": 8495, "hash": "1cd18e4250af02f3b57fb331febbea40e609892ddc6660720136fd90c64acf6c", "tx_count": 1, "merkle": "4c6b3eb2afb2d067452aadef1f46a0c9833b6441975c9a364682766583f1f883", "prev": "52c6f0e058dbaf97f1169c25a9e03d6d28dbe089d6f96715a18c4765db50f1c3"} -2023-12-16T14:30:40.060Z INFO runtime log {"tx": "83f8f18365768246369a5c9741643b83c9a0461fefad2a4567d0b2afb23e6b4c", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:30:40.060Z INFO initializing dbft {"height": 8496, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:40.061Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 36} -2023-12-16T14:30:40.061Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 36} -2023-12-16T14:30:40.062Z debug frostfs-node/morph.go:229 new block {"index": 8495} -2023-12-16T14:30:40.552Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 8495, "blockHeight": 8495, "took": "9.401005ms"} -2023-12-16T14:30:41.061Z INFO sending PrepareRequest {"height": 8496, "view": 0} -2023-12-16T14:30:41.061Z INFO sending Commit {"height": 8496, "view": 0} -2023-12-16T14:30:41.061Z INFO approving block {"height": 8496, "hash": "4a49f3e51b3426ca716d484d657891f69573510db0ea37898a28e76be96c5be0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cd18e4250af02f3b57fb331febbea40e609892ddc6660720136fd90c64acf6c"} -2023-12-16T14:30:41.062Z INFO initializing dbft {"height": 8497, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:41.063Z debug frostfs-node/morph.go:229 new block {"index": 8496} -2023-12-16T14:30:41.548Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8496, "blockHeight": 8496, "took": "4.365997ms"} -2023-12-16T14:30:42.062Z INFO sending PrepareRequest {"height": 8497, "view": 0} -2023-12-16T14:30:42.062Z INFO sending Commit {"height": 8497, "view": 0} -2023-12-16T14:30:42.062Z INFO approving block {"height": 8497, "hash": "22861369ec2bf3a2246818e725c9726f674685a194ccd6575d78b3b132aaca28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a49f3e51b3426ca716d484d657891f69573510db0ea37898a28e76be96c5be0"} -2023-12-16T14:30:42.063Z INFO initializing dbft {"height": 8498, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:42.064Z debug frostfs-node/morph.go:229 new block {"index": 8497} -2023-12-16T14:30:42.549Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8497, "blockHeight": 8497, "took": "4.727548ms"} -2023-12-16T14:30:43.064Z INFO sending PrepareRequest {"height": 8498, "view": 0} -2023-12-16T14:30:43.064Z INFO sending Commit {"height": 8498, "view": 0} -2023-12-16T14:30:43.064Z INFO approving block {"height": 8498, "hash": "99382b2d317978e7d075ec8c2672481ab1506066f118a2235c9894defe8abac1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22861369ec2bf3a2246818e725c9726f674685a194ccd6575d78b3b132aaca28"} -2023-12-16T14:30:43.065Z INFO initializing dbft {"height": 8499, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:43.065Z debug frostfs-node/morph.go:229 new block {"index": 8498} -2023-12-16T14:30:43.552Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8498, "blockHeight": 8498, "took": "7.320544ms"} -2023-12-16T14:30:44.065Z INFO sending PrepareRequest {"height": 8499, "view": 0} -2023-12-16T14:30:44.066Z INFO sending Commit {"height": 8499, "view": 0} -2023-12-16T14:30:44.067Z INFO approving block {"height": 8499, "hash": "6cb3f566751f381644e9634938c03f14824b37f1bd29f5a7bc029e6d3e02df96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99382b2d317978e7d075ec8c2672481ab1506066f118a2235c9894defe8abac1"} -2023-12-16T14:30:44.069Z INFO initializing dbft {"height": 8500, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:44.069Z debug frostfs-node/morph.go:229 new block {"index": 8499} -2023-12-16T14:30:44.553Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8499, "blockHeight": 8499, "took": "7.358085ms"} -2023-12-16T14:30:45.068Z INFO sending PrepareRequest {"height": 8500, "view": 0} -2023-12-16T14:30:45.068Z INFO sending Commit {"height": 8500, "view": 0} -2023-12-16T14:30:45.069Z INFO approving block {"height": 8500, "hash": "41875474764754e79c278d482c8605828d482fe069241881eee6b521844c34ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cb3f566751f381644e9634938c03f14824b37f1bd29f5a7bc029e6d3e02df96"} -2023-12-16T14:30:45.070Z INFO initializing dbft {"height": 8501, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:45.070Z debug frostfs-node/morph.go:229 new block {"index": 8500} -2023-12-16T14:30:45.073Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:30:45.074Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:30:45.075Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:30:45.551Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8500, "blockHeight": 8500, "took": "4.871987ms"} -2023-12-16T14:30:46.070Z INFO sending PrepareRequest {"height": 8501, "view": 0} -2023-12-16T14:30:46.070Z INFO sending Commit {"height": 8501, "view": 0} -2023-12-16T14:30:46.070Z INFO approving block {"height": 8501, "hash": "0881931786639cf7123bec4812cd401aba8b0fd4c328168c18e137196abdf9a2", "tx_count": 2, "merkle": "53705bf39fe5a27856225a9b2773094115fc28a770ff5b9942f6358151112ded", "prev": "41875474764754e79c278d482c8605828d482fe069241881eee6b521844c34ca"} -2023-12-16T14:30:46.071Z INFO runtime log {"tx": "9356722ed5857b86970cb576e47dcca295fb785ae27af1869e823c57c2979a36", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:30:46.072Z INFO runtime log {"tx": "9356722ed5857b86970cb576e47dcca295fb785ae27af1869e823c57c2979a36", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:30:46.073Z INFO initializing dbft {"height": 8502, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:46.074Z debug frostfs-node/morph.go:229 new block {"index": 8501} -2023-12-16T14:30:46.555Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8501, "blockHeight": 8501, "took": "8.298429ms"} -2023-12-16T14:30:47.071Z INFO sending PrepareRequest {"height": 8502, "view": 0} -2023-12-16T14:30:47.071Z INFO sending Commit {"height": 8502, "view": 0} -2023-12-16T14:30:47.071Z INFO approving block {"height": 8502, "hash": "99e1f3ec0021b3740731c6e75e2cd1c26f945f851da582d35bad9294b1445223", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0881931786639cf7123bec4812cd401aba8b0fd4c328168c18e137196abdf9a2"} -2023-12-16T14:30:47.072Z INFO initializing dbft {"height": 8503, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:47.073Z debug frostfs-node/morph.go:229 new block {"index": 8502} -2023-12-16T14:30:47.553Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8502, "blockHeight": 8502, "took": "5.748213ms"} -2023-12-16T14:30:48.073Z INFO sending PrepareRequest {"height": 8503, "view": 0} -2023-12-16T14:30:48.073Z INFO sending Commit {"height": 8503, "view": 0} -2023-12-16T14:30:48.073Z INFO approving block {"height": 8503, "hash": "5efe2cda1a59fbace7172a77b0bb6eb4e6e0053090590a669c37d0b4d572e5ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99e1f3ec0021b3740731c6e75e2cd1c26f945f851da582d35bad9294b1445223"} -2023-12-16T14:30:48.075Z INFO initializing dbft {"height": 8504, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:48.075Z debug frostfs-node/morph.go:229 new block {"index": 8503} -2023-12-16T14:30:48.552Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8503, "blockHeight": 8503, "took": "4.06935ms"} -2023-12-16T14:30:49.074Z INFO sending PrepareRequest {"height": 8504, "view": 0} -2023-12-16T14:30:49.074Z INFO sending Commit {"height": 8504, "view": 0} -2023-12-16T14:30:49.075Z INFO approving block {"height": 8504, "hash": "e585892d4e834b5332627a11f83953783dacd6ae98cf1bac7e1e434eec3ee568", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5efe2cda1a59fbace7172a77b0bb6eb4e6e0053090590a669c37d0b4d572e5ef"} -2023-12-16T14:30:49.075Z INFO initializing dbft {"height": 8505, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:49.076Z debug frostfs-node/morph.go:229 new block {"index": 8504} -2023-12-16T14:30:49.553Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8504, "blockHeight": 8504, "took": "4.514522ms"} -2023-12-16T14:30:50.076Z INFO sending PrepareRequest {"height": 8505, "view": 0} -2023-12-16T14:30:50.076Z INFO sending Commit {"height": 8505, "view": 0} -2023-12-16T14:30:50.076Z INFO approving block {"height": 8505, "hash": "d13666bcec83a04b614553e69f0173ee3afdc0460bcb84adcd9a6aeef4cb22b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e585892d4e834b5332627a11f83953783dacd6ae98cf1bac7e1e434eec3ee568"} -2023-12-16T14:30:50.077Z INFO initializing dbft {"height": 8506, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:50.078Z debug frostfs-node/morph.go:229 new block {"index": 8505} -2023-12-16T14:30:50.553Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8505, "blockHeight": 8505, "took": "3.677538ms"} -2023-12-16T14:30:51.078Z INFO sending PrepareRequest {"height": 8506, "view": 0} -2023-12-16T14:30:51.078Z INFO sending Commit {"height": 8506, "view": 0} -2023-12-16T14:30:51.078Z INFO approving block {"height": 8506, "hash": "45a553c1c0e5caae987f7bb8c795c401e3c73a994dd265adf504351175e42f8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d13666bcec83a04b614553e69f0173ee3afdc0460bcb84adcd9a6aeef4cb22b9"} -2023-12-16T14:30:51.080Z INFO initializing dbft {"height": 8507, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:51.080Z debug frostfs-node/morph.go:229 new block {"index": 8506} -2023-12-16T14:30:51.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8506, "blockHeight": 8506, "took": "7.272612ms"} -2023-12-16T14:30:52.080Z INFO sending PrepareRequest {"height": 8507, "view": 0} -2023-12-16T14:30:52.080Z INFO sending Commit {"height": 8507, "view": 0} -2023-12-16T14:30:52.080Z INFO approving block {"height": 8507, "hash": "10ef9c09cb0c4b7169081bb69693f02ce88921ba867f6bb8e956a1a4983f6f85", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45a553c1c0e5caae987f7bb8c795c401e3c73a994dd265adf504351175e42f8b"} -2023-12-16T14:30:52.081Z INFO initializing dbft {"height": 8508, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:52.082Z debug frostfs-node/morph.go:229 new block {"index": 8507} -2023-12-16T14:30:52.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8507, "blockHeight": 8507, "took": "3.663067ms"} -2023-12-16T14:30:53.081Z INFO sending PrepareRequest {"height": 8508, "view": 0} -2023-12-16T14:30:53.081Z INFO sending Commit {"height": 8508, "view": 0} -2023-12-16T14:30:53.082Z INFO approving block {"height": 8508, "hash": "fdcbca7729cf777d7f70c3405239d3e9ac36d0485a584cedddce0c3bc1aca807", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10ef9c09cb0c4b7169081bb69693f02ce88921ba867f6bb8e956a1a4983f6f85"} -2023-12-16T14:30:53.082Z INFO initializing dbft {"height": 8509, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:53.083Z debug frostfs-node/morph.go:229 new block {"index": 8508} -2023-12-16T14:30:53.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8508, "blockHeight": 8508, "took": "5.82108ms"} -2023-12-16T14:30:54.083Z INFO sending PrepareRequest {"height": 8509, "view": 0} -2023-12-16T14:30:54.083Z INFO sending Commit {"height": 8509, "view": 0} -2023-12-16T14:30:54.084Z INFO approving block {"height": 8509, "hash": "d7dc501af5fdac8f462dabf56647c51b5864146572a558405ae7a52c443a7c03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdcbca7729cf777d7f70c3405239d3e9ac36d0485a584cedddce0c3bc1aca807"} -2023-12-16T14:30:54.084Z INFO initializing dbft {"height": 8510, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:54.085Z debug frostfs-node/morph.go:229 new block {"index": 8509} -2023-12-16T14:30:54.556Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8509, "blockHeight": 8509, "took": "3.922275ms"} -2023-12-16T14:30:55.084Z INFO sending PrepareRequest {"height": 8510, "view": 0} -2023-12-16T14:30:55.085Z INFO sending Commit {"height": 8510, "view": 0} -2023-12-16T14:30:55.085Z INFO approving block {"height": 8510, "hash": "f272a91d5b63ebc719490ffb5ce438e1ba2811de935ab76d7ea56f64bd14b98f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7dc501af5fdac8f462dabf56647c51b5864146572a558405ae7a52c443a7c03"} -2023-12-16T14:30:55.085Z INFO initializing dbft {"height": 8511, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:55.086Z debug frostfs-node/morph.go:229 new block {"index": 8510} -2023-12-16T14:30:55.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8510, "blockHeight": 8510, "took": "4.677482ms"} -2023-12-16T14:30:56.086Z INFO sending PrepareRequest {"height": 8511, "view": 0} -2023-12-16T14:30:56.087Z INFO sending Commit {"height": 8511, "view": 0} -2023-12-16T14:30:56.088Z INFO approving block {"height": 8511, "hash": "8314457f12a23c5a3a9454d0cd49ccd249dcb2d3597da4335e7ef760bf003b00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f272a91d5b63ebc719490ffb5ce438e1ba2811de935ab76d7ea56f64bd14b98f"} -2023-12-16T14:30:56.091Z debug frostfs-node/morph.go:229 new block {"index": 8511} -2023-12-16T14:30:56.091Z INFO initializing dbft {"height": 8512, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:56.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8511, "blockHeight": 8511, "took": "4.505811ms"} -2023-12-16T14:30:57.089Z INFO sending PrepareRequest {"height": 8512, "view": 0} -2023-12-16T14:30:57.090Z INFO sending Commit {"height": 8512, "view": 0} -2023-12-16T14:30:57.090Z INFO approving block {"height": 8512, "hash": "f9fc04ca36cc6265a2e6f2608ae044d2de0255567ceab1595082f3f2b19a8c07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8314457f12a23c5a3a9454d0cd49ccd249dcb2d3597da4335e7ef760bf003b00"} -2023-12-16T14:30:57.091Z INFO initializing dbft {"height": 8513, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:57.091Z debug frostfs-node/morph.go:229 new block {"index": 8512} -2023-12-16T14:30:57.559Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8512, "blockHeight": 8512, "took": "4.939795ms"} -2023-12-16T14:30:58.091Z INFO sending PrepareRequest {"height": 8513, "view": 0} -2023-12-16T14:30:58.091Z INFO sending Commit {"height": 8513, "view": 0} -2023-12-16T14:30:58.091Z INFO approving block {"height": 8513, "hash": "27b80c26b1e26bb9fd177398c586df6cb6d6135b6e2e4c6df2eac20b18695cae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9fc04ca36cc6265a2e6f2608ae044d2de0255567ceab1595082f3f2b19a8c07"} -2023-12-16T14:30:58.092Z INFO initializing dbft {"height": 8514, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:58.092Z debug frostfs-node/morph.go:229 new block {"index": 8513} -2023-12-16T14:30:58.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8513, "blockHeight": 8513, "took": "3.911525ms"} -2023-12-16T14:30:59.092Z INFO sending PrepareRequest {"height": 8514, "view": 0} -2023-12-16T14:30:59.092Z INFO sending Commit {"height": 8514, "view": 0} -2023-12-16T14:30:59.092Z INFO approving block {"height": 8514, "hash": "66729f02c348a24c70da8eda1e516ec51810df5e7bef38fa09447c98e97a15ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27b80c26b1e26bb9fd177398c586df6cb6d6135b6e2e4c6df2eac20b18695cae"} -2023-12-16T14:30:59.093Z INFO initializing dbft {"height": 8515, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:30:59.094Z debug frostfs-node/morph.go:229 new block {"index": 8514} -2023-12-16T14:30:59.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8514, "blockHeight": 8514, "took": "3.640696ms"} -2023-12-16T14:31:00.094Z INFO sending PrepareRequest {"height": 8515, "view": 0} -2023-12-16T14:31:00.094Z INFO sending Commit {"height": 8515, "view": 0} -2023-12-16T14:31:00.094Z INFO approving block {"height": 8515, "hash": "b5c21709a44fbb4748917c4340543af312ea40ecbe03a5875a87f37c3b6adc47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66729f02c348a24c70da8eda1e516ec51810df5e7bef38fa09447c98e97a15ca"} -2023-12-16T14:31:00.095Z INFO initializing dbft {"height": 8516, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:00.096Z debug frostfs-node/morph.go:229 new block {"index": 8515} -2023-12-16T14:31:00.559Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8515, "blockHeight": 8515, "took": "3.79017ms"} -2023-12-16T14:31:01.095Z INFO sending PrepareRequest {"height": 8516, "view": 0} -2023-12-16T14:31:01.095Z INFO sending Commit {"height": 8516, "view": 0} -2023-12-16T14:31:01.095Z INFO approving block {"height": 8516, "hash": "b9d976e2836c8c71abdb04b650206f5e4a56de5bf2d0a6640d44e081fbcc47f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5c21709a44fbb4748917c4340543af312ea40ecbe03a5875a87f37c3b6adc47"} -2023-12-16T14:31:01.096Z INFO initializing dbft {"height": 8517, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:01.097Z debug frostfs-node/morph.go:229 new block {"index": 8516} -2023-12-16T14:31:01.562Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8516, "blockHeight": 8516, "took": "6.714576ms"} -2023-12-16T14:31:02.097Z INFO sending PrepareRequest {"height": 8517, "view": 0} -2023-12-16T14:31:02.097Z INFO sending Commit {"height": 8517, "view": 0} -2023-12-16T14:31:02.097Z INFO approving block {"height": 8517, "hash": "2b59bdee7472f16c2cda46795a56922b61f51117201cf685be41faeb642eebb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9d976e2836c8c71abdb04b650206f5e4a56de5bf2d0a6640d44e081fbcc47f9"} -2023-12-16T14:31:02.098Z INFO initializing dbft {"height": 8518, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:02.099Z debug frostfs-node/morph.go:229 new block {"index": 8517} -2023-12-16T14:31:02.560Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8517, "blockHeight": 8517, "took": "3.956925ms"} -2023-12-16T14:31:03.098Z INFO sending PrepareRequest {"height": 8518, "view": 0} -2023-12-16T14:31:03.098Z INFO sending Commit {"height": 8518, "view": 0} -2023-12-16T14:31:03.098Z INFO approving block {"height": 8518, "hash": "9918781bfc6ae6578227bbc18b8826ae48de445e26893fabf57e10b7f96eef82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b59bdee7472f16c2cda46795a56922b61f51117201cf685be41faeb642eebb1"} -2023-12-16T14:31:03.099Z INFO initializing dbft {"height": 8519, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:03.100Z debug frostfs-node/morph.go:229 new block {"index": 8518} -2023-12-16T14:31:03.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8518, "blockHeight": 8518, "took": "5.049905ms"} -2023-12-16T14:31:04.099Z INFO sending PrepareRequest {"height": 8519, "view": 0} -2023-12-16T14:31:04.100Z INFO sending Commit {"height": 8519, "view": 0} -2023-12-16T14:31:04.100Z INFO approving block {"height": 8519, "hash": "5aa2aebd584f8d634f6ffa4e3b5983bf285fb75b99ee6eec162f9191bc1cf205", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9918781bfc6ae6578227bbc18b8826ae48de445e26893fabf57e10b7f96eef82"} -2023-12-16T14:31:04.102Z INFO initializing dbft {"height": 8520, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:04.103Z debug frostfs-node/morph.go:229 new block {"index": 8519} -2023-12-16T14:31:04.564Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8519, "blockHeight": 8519, "took": "7.097737ms"} -2023-12-16T14:31:05.101Z INFO sending PrepareRequest {"height": 8520, "view": 0} -2023-12-16T14:31:05.101Z INFO sending Commit {"height": 8520, "view": 0} -2023-12-16T14:31:05.102Z INFO approving block {"height": 8520, "hash": "bc65c5717782e22c58f23f51e40dae3bb37d192a5379540888b2c1deffa63b8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aa2aebd584f8d634f6ffa4e3b5983bf285fb75b99ee6eec162f9191bc1cf205"} -2023-12-16T14:31:05.103Z INFO initializing dbft {"height": 8521, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:05.103Z debug frostfs-node/morph.go:229 new block {"index": 8520} -2023-12-16T14:31:05.577Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8520, "blockHeight": 8520, "took": "19.449852ms"} -2023-12-16T14:31:06.102Z INFO sending PrepareRequest {"height": 8521, "view": 0} -2023-12-16T14:31:06.103Z INFO sending Commit {"height": 8521, "view": 0} -2023-12-16T14:31:06.103Z INFO approving block {"height": 8521, "hash": "278854e47118297ea61b3d13db7ac48b1a7e247d5b8858bd9bcf5f285ddb3e8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc65c5717782e22c58f23f51e40dae3bb37d192a5379540888b2c1deffa63b8e"} -2023-12-16T14:31:06.104Z INFO initializing dbft {"height": 8522, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:06.105Z debug frostfs-node/morph.go:229 new block {"index": 8521} -2023-12-16T14:31:06.562Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8521, "blockHeight": 8521, "took": "4.417769ms"} -2023-12-16T14:31:07.104Z INFO sending PrepareRequest {"height": 8522, "view": 0} -2023-12-16T14:31:07.104Z INFO sending Commit {"height": 8522, "view": 0} -2023-12-16T14:31:07.104Z INFO approving block {"height": 8522, "hash": "a46a05eff536f1d2f5ac5e4d2e9c92044267381a6ee8e4d26f16c7e11b2a3afe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "278854e47118297ea61b3d13db7ac48b1a7e247d5b8858bd9bcf5f285ddb3e8a"} -2023-12-16T14:31:07.105Z INFO initializing dbft {"height": 8523, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:07.106Z debug frostfs-node/morph.go:229 new block {"index": 8522} -2023-12-16T14:31:07.561Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8522, "blockHeight": 8522, "took": "3.211123ms"} -2023-12-16T14:31:08.105Z INFO sending PrepareRequest {"height": 8523, "view": 0} -2023-12-16T14:31:08.105Z INFO sending Commit {"height": 8523, "view": 0} -2023-12-16T14:31:08.106Z INFO approving block {"height": 8523, "hash": "9582799541726a30a6605b729c855196af900b9889a0fd1ef79cf4fd4937103a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a46a05eff536f1d2f5ac5e4d2e9c92044267381a6ee8e4d26f16c7e11b2a3afe"} -2023-12-16T14:31:08.107Z INFO initializing dbft {"height": 8524, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:08.108Z debug frostfs-node/morph.go:229 new block {"index": 8523} -2023-12-16T14:31:08.563Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8523, "blockHeight": 8523, "took": "4.533892ms"} -2023-12-16T14:31:09.106Z INFO sending PrepareRequest {"height": 8524, "view": 0} -2023-12-16T14:31:09.107Z INFO sending Commit {"height": 8524, "view": 0} -2023-12-16T14:31:09.107Z INFO approving block {"height": 8524, "hash": "9e7f9ad6bb91949dba2d49bbc74a0238dc18201ea1141b38fc2c93113f665c88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9582799541726a30a6605b729c855196af900b9889a0fd1ef79cf4fd4937103a"} -2023-12-16T14:31:09.108Z INFO initializing dbft {"height": 8525, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:09.108Z debug frostfs-node/morph.go:229 new block {"index": 8524} -2023-12-16T14:31:09.563Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8524, "blockHeight": 8524, "took": "4.326515ms"} -2023-12-16T14:31:10.108Z INFO sending PrepareRequest {"height": 8525, "view": 0} -2023-12-16T14:31:10.108Z INFO sending Commit {"height": 8525, "view": 0} -2023-12-16T14:31:10.108Z INFO approving block {"height": 8525, "hash": "a41f16f29d09f8ea6c99bd3dc0d6b35b602f7e191cdb07631463460f00ea1cd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e7f9ad6bb91949dba2d49bbc74a0238dc18201ea1141b38fc2c93113f665c88"} -2023-12-16T14:31:10.109Z INFO initializing dbft {"height": 8526, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:10.110Z debug frostfs-node/morph.go:229 new block {"index": 8525} -2023-12-16T14:31:10.570Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8525, "blockHeight": 8525, "took": "10.852014ms"} -2023-12-16T14:31:11.110Z INFO sending PrepareRequest {"height": 8526, "view": 0} -2023-12-16T14:31:11.110Z INFO sending Commit {"height": 8526, "view": 0} -2023-12-16T14:31:11.110Z INFO approving block {"height": 8526, "hash": "95f3ca2100eb4d4c8f7b81c313055707b9b40c4713db692d2f14ce52e60fb716", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a41f16f29d09f8ea6c99bd3dc0d6b35b602f7e191cdb07631463460f00ea1cd1"} -2023-12-16T14:31:11.112Z INFO initializing dbft {"height": 8527, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:11.114Z debug frostfs-node/morph.go:229 new block {"index": 8526} -2023-12-16T14:31:11.568Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8526, "blockHeight": 8526, "took": "7.526389ms"} -2023-12-16T14:31:12.111Z INFO sending PrepareRequest {"height": 8527, "view": 0} -2023-12-16T14:31:12.111Z INFO sending Commit {"height": 8527, "view": 0} -2023-12-16T14:31:12.111Z INFO approving block {"height": 8527, "hash": "c3fa79fc07edecd266080008ac1c770ba20177a69f2d2e5692498ceba1eac7ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95f3ca2100eb4d4c8f7b81c313055707b9b40c4713db692d2f14ce52e60fb716"} -2023-12-16T14:31:12.112Z INFO initializing dbft {"height": 8528, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:12.112Z debug frostfs-node/morph.go:229 new block {"index": 8527} -2023-12-16T14:31:12.564Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8527, "blockHeight": 8527, "took": "3.365278ms"} -2023-12-16T14:31:13.112Z INFO sending PrepareRequest {"height": 8528, "view": 0} -2023-12-16T14:31:13.112Z INFO sending Commit {"height": 8528, "view": 0} -2023-12-16T14:31:13.113Z INFO approving block {"height": 8528, "hash": "fd3505fb7f58bf182beea22752ea63adb618b0d217073eee5e6dd47fc8f79d89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3fa79fc07edecd266080008ac1c770ba20177a69f2d2e5692498ceba1eac7ac"} -2023-12-16T14:31:13.114Z INFO initializing dbft {"height": 8529, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:13.114Z debug frostfs-node/morph.go:229 new block {"index": 8528} -2023-12-16T14:31:13.565Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8528, "blockHeight": 8528, "took": "3.613085ms"} -2023-12-16T14:31:14.114Z INFO sending PrepareRequest {"height": 8529, "view": 0} -2023-12-16T14:31:14.114Z INFO sending Commit {"height": 8529, "view": 0} -2023-12-16T14:31:14.114Z INFO approving block {"height": 8529, "hash": "86a353aa3100e2b7d092199c5a793ca805453615efb3f7468c2d65fb8ece4955", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd3505fb7f58bf182beea22752ea63adb618b0d217073eee5e6dd47fc8f79d89"} -2023-12-16T14:31:14.115Z INFO initializing dbft {"height": 8530, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:14.115Z debug frostfs-node/morph.go:229 new block {"index": 8529} -2023-12-16T14:31:14.567Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8529, "blockHeight": 8529, "took": "4.745239ms"} -2023-12-16T14:31:15.116Z INFO sending PrepareRequest {"height": 8530, "view": 0} -2023-12-16T14:31:15.116Z INFO sending Commit {"height": 8530, "view": 0} -2023-12-16T14:31:15.116Z INFO approving block {"height": 8530, "hash": "bd2f79f178ff8a95c419434a937ecb4530f97fee8114af82c1b599ce12dc1a6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86a353aa3100e2b7d092199c5a793ca805453615efb3f7468c2d65fb8ece4955"} -2023-12-16T14:31:15.117Z INFO initializing dbft {"height": 8531, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:15.118Z debug frostfs-node/morph.go:229 new block {"index": 8530} -2023-12-16T14:31:15.566Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8530, "blockHeight": 8530, "took": "3.598675ms"} -2023-12-16T14:31:16.117Z INFO sending PrepareRequest {"height": 8531, "view": 0} -2023-12-16T14:31:16.117Z INFO sending Commit {"height": 8531, "view": 0} -2023-12-16T14:31:16.117Z INFO approving block {"height": 8531, "hash": "27edf6712b9c9bba5cbc3688ad65eea379e1ce7b4a8de23d0f51342922f9af81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd2f79f178ff8a95c419434a937ecb4530f97fee8114af82c1b599ce12dc1a6c"} -2023-12-16T14:31:16.118Z INFO initializing dbft {"height": 8532, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:16.119Z debug frostfs-node/morph.go:229 new block {"index": 8531} -2023-12-16T14:31:16.567Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8531, "blockHeight": 8531, "took": "3.374478ms"} -2023-12-16T14:31:17.118Z INFO sending PrepareRequest {"height": 8532, "view": 0} -2023-12-16T14:31:17.119Z INFO sending Commit {"height": 8532, "view": 0} -2023-12-16T14:31:17.119Z INFO approving block {"height": 8532, "hash": "716ece291c7f3854b17363aa7eed6f6c32a36bc56ee3749a3fb22e8173dbaacc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27edf6712b9c9bba5cbc3688ad65eea379e1ce7b4a8de23d0f51342922f9af81"} -2023-12-16T14:31:17.119Z INFO initializing dbft {"height": 8533, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:17.120Z debug frostfs-node/morph.go:229 new block {"index": 8532} -2023-12-16T14:31:17.569Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8532, "blockHeight": 8532, "took": "5.627014ms"} -2023-12-16T14:31:18.120Z INFO sending PrepareRequest {"height": 8533, "view": 0} -2023-12-16T14:31:18.120Z INFO sending Commit {"height": 8533, "view": 0} -2023-12-16T14:31:18.120Z INFO approving block {"height": 8533, "hash": "5ebe84d32f2a34bc5a28360825d40ba1a5052c5997d7f5f1c43bf9997e2e8a27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "716ece291c7f3854b17363aa7eed6f6c32a36bc56ee3749a3fb22e8173dbaacc"} -2023-12-16T14:31:18.121Z INFO initializing dbft {"height": 8534, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:18.122Z debug frostfs-node/morph.go:229 new block {"index": 8533} -2023-12-16T14:31:18.569Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8533, "blockHeight": 8533, "took": "5.222992ms"} -2023-12-16T14:31:19.121Z INFO sending PrepareRequest {"height": 8534, "view": 0} -2023-12-16T14:31:19.121Z INFO sending Commit {"height": 8534, "view": 0} -2023-12-16T14:31:19.122Z INFO approving block {"height": 8534, "hash": "2a90c0904e291687b2f7fa5e881479950069edb5b8fa0fca98b94ddf485a71a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ebe84d32f2a34bc5a28360825d40ba1a5052c5997d7f5f1c43bf9997e2e8a27"} -2023-12-16T14:31:19.123Z INFO initializing dbft {"height": 8535, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:19.123Z debug frostfs-node/morph.go:229 new block {"index": 8534} -2023-12-16T14:31:19.571Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8534, "blockHeight": 8534, "took": "6.035995ms"} -2023-12-16T14:31:20.122Z INFO sending PrepareRequest {"height": 8535, "view": 0} -2023-12-16T14:31:20.122Z INFO sending Commit {"height": 8535, "view": 0} -2023-12-16T14:31:20.123Z INFO approving block {"height": 8535, "hash": "e7453225aa857f61bb311022a17d00be0e79aa8b08d85e0c73c97ee15c5619a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a90c0904e291687b2f7fa5e881479950069edb5b8fa0fca98b94ddf485a71a8"} -2023-12-16T14:31:20.123Z INFO initializing dbft {"height": 8536, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:20.124Z debug frostfs-node/morph.go:229 new block {"index": 8535} -2023-12-16T14:31:20.571Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8535, "blockHeight": 8535, "took": "5.14692ms"} -2023-12-16T14:31:21.124Z INFO sending PrepareRequest {"height": 8536, "view": 0} -2023-12-16T14:31:21.124Z INFO sending Commit {"height": 8536, "view": 0} -2023-12-16T14:31:21.124Z INFO approving block {"height": 8536, "hash": "2dd833ea174fa2ed21536e2dc2163a380dd6c2de4bd9854afc6462a4fbd65110", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7453225aa857f61bb311022a17d00be0e79aa8b08d85e0c73c97ee15c5619a9"} -2023-12-16T14:31:21.125Z INFO initializing dbft {"height": 8537, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:21.126Z debug frostfs-node/morph.go:229 new block {"index": 8536} -2023-12-16T14:31:21.571Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8536, "blockHeight": 8536, "took": "4.45344ms"} -2023-12-16T14:31:22.125Z INFO sending PrepareRequest {"height": 8537, "view": 0} -2023-12-16T14:31:22.125Z INFO sending Commit {"height": 8537, "view": 0} -2023-12-16T14:31:22.125Z INFO approving block {"height": 8537, "hash": "62231242046227caa80fc47cbdc2643104c6b84b341f08ae327aea085c2c9473", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2dd833ea174fa2ed21536e2dc2163a380dd6c2de4bd9854afc6462a4fbd65110"} -2023-12-16T14:31:22.126Z INFO initializing dbft {"height": 8538, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:22.127Z debug frostfs-node/morph.go:229 new block {"index": 8537} -2023-12-16T14:31:22.574Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8537, "blockHeight": 8537, "took": "6.86773ms"} -2023-12-16T14:31:23.127Z INFO sending PrepareRequest {"height": 8538, "view": 0} -2023-12-16T14:31:23.127Z INFO sending Commit {"height": 8538, "view": 0} -2023-12-16T14:31:23.127Z INFO approving block {"height": 8538, "hash": "4bc04ecd443377f069aaaee75b6601f400015b3edf7143adbb89552dc14cd71f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62231242046227caa80fc47cbdc2643104c6b84b341f08ae327aea085c2c9473"} -2023-12-16T14:31:23.128Z INFO initializing dbft {"height": 8539, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:23.128Z debug frostfs-node/morph.go:229 new block {"index": 8538} -2023-12-16T14:31:23.573Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8538, "blockHeight": 8538, "took": "4.880863ms"} -2023-12-16T14:31:24.128Z INFO sending PrepareRequest {"height": 8539, "view": 0} -2023-12-16T14:31:24.129Z INFO sending Commit {"height": 8539, "view": 0} -2023-12-16T14:31:24.129Z INFO approving block {"height": 8539, "hash": "2d7acfe0b695270df6a9df389309e06025f92a7f6b71ce66fd045ffbe0394693", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bc04ecd443377f069aaaee75b6601f400015b3edf7143adbb89552dc14cd71f"} -2023-12-16T14:31:24.129Z INFO initializing dbft {"height": 8540, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:24.130Z debug frostfs-node/morph.go:229 new block {"index": 8539} -2023-12-16T14:31:24.574Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8539, "blockHeight": 8539, "took": "5.435478ms"} -2023-12-16T14:31:25.129Z INFO sending PrepareRequest {"height": 8540, "view": 0} -2023-12-16T14:31:25.129Z INFO sending Commit {"height": 8540, "view": 0} -2023-12-16T14:31:25.130Z INFO approving block {"height": 8540, "hash": "f7f4a954f331667bac279696eb9c8550b93e4f666c69a1716af11bb882f550dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d7acfe0b695270df6a9df389309e06025f92a7f6b71ce66fd045ffbe0394693"} -2023-12-16T14:31:25.130Z INFO initializing dbft {"height": 8541, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:25.131Z debug frostfs-node/morph.go:229 new block {"index": 8540} -2023-12-16T14:31:25.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8540, "blockHeight": 8540, "took": "6.50503ms"} -2023-12-16T14:31:26.131Z INFO sending PrepareRequest {"height": 8541, "view": 0} -2023-12-16T14:31:26.131Z INFO sending Commit {"height": 8541, "view": 0} -2023-12-16T14:31:26.132Z INFO approving block {"height": 8541, "hash": "89272fcb4587d73f0d512a38b45dd9fd1b7eeaf6f5b6c06e9ee73ecf53292f3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f7f4a954f331667bac279696eb9c8550b93e4f666c69a1716af11bb882f550dd"} -2023-12-16T14:31:26.133Z INFO initializing dbft {"height": 8542, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:26.133Z debug frostfs-node/morph.go:229 new block {"index": 8541} -2023-12-16T14:31:26.574Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8541, "blockHeight": 8541, "took": "4.864988ms"} -2023-12-16T14:31:27.132Z INFO sending PrepareRequest {"height": 8542, "view": 0} -2023-12-16T14:31:27.132Z INFO sending Commit {"height": 8542, "view": 0} -2023-12-16T14:31:27.133Z INFO approving block {"height": 8542, "hash": "fdc3ac1506e50b8bf8a73c5fccba2ecce951889b68a798501aef0b0a9fa9d459", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89272fcb4587d73f0d512a38b45dd9fd1b7eeaf6f5b6c06e9ee73ecf53292f3e"} -2023-12-16T14:31:27.133Z INFO initializing dbft {"height": 8543, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:27.134Z debug frostfs-node/morph.go:229 new block {"index": 8542} -2023-12-16T14:31:27.576Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8542, "blockHeight": 8542, "took": "6.572968ms"} -2023-12-16T14:31:28.134Z INFO sending PrepareRequest {"height": 8543, "view": 0} -2023-12-16T14:31:28.134Z INFO sending Commit {"height": 8543, "view": 0} -2023-12-16T14:31:28.134Z INFO approving block {"height": 8543, "hash": "a72f8ffd97202871ed953ab80f2ba17dc51edda794f1d64afa38e150d2aea01d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdc3ac1506e50b8bf8a73c5fccba2ecce951889b68a798501aef0b0a9fa9d459"} -2023-12-16T14:31:28.135Z INFO initializing dbft {"height": 8544, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:28.135Z debug frostfs-node/morph.go:229 new block {"index": 8543} -2023-12-16T14:31:28.574Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8543, "blockHeight": 8543, "took": "4.514432ms"} -2023-12-16T14:31:29.135Z INFO sending PrepareRequest {"height": 8544, "view": 0} -2023-12-16T14:31:29.135Z INFO sending Commit {"height": 8544, "view": 0} -2023-12-16T14:31:29.135Z INFO approving block {"height": 8544, "hash": "5645bbf6a041fa321d23ed294c3a25c1fe51abb25f401cfccc9b97fce29026b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a72f8ffd97202871ed953ab80f2ba17dc51edda794f1d64afa38e150d2aea01d"} -2023-12-16T14:31:29.136Z INFO initializing dbft {"height": 8545, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:29.137Z debug frostfs-node/morph.go:229 new block {"index": 8544} -2023-12-16T14:31:29.576Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8544, "blockHeight": 8544, "took": "5.821449ms"} -2023-12-16T14:31:30.136Z INFO sending PrepareRequest {"height": 8545, "view": 0} -2023-12-16T14:31:30.136Z INFO sending Commit {"height": 8545, "view": 0} -2023-12-16T14:31:30.137Z INFO approving block {"height": 8545, "hash": "0bc6cf17ed8840034a03d6fc176e01a174f5b8be0fa4b619842042a82f819365", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5645bbf6a041fa321d23ed294c3a25c1fe51abb25f401cfccc9b97fce29026b1"} -2023-12-16T14:31:30.137Z INFO initializing dbft {"height": 8546, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:30.138Z debug frostfs-node/morph.go:229 new block {"index": 8545} -2023-12-16T14:31:30.575Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8545, "blockHeight": 8545, "took": "4.405439ms"} -2023-12-16T14:31:31.138Z INFO sending PrepareRequest {"height": 8546, "view": 0} -2023-12-16T14:31:31.138Z INFO sending Commit {"height": 8546, "view": 0} -2023-12-16T14:31:31.138Z INFO approving block {"height": 8546, "hash": "249574da21d9842451e207e76ea999bf3b148f7e62527c975c1f008c74c0c1a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bc6cf17ed8840034a03d6fc176e01a174f5b8be0fa4b619842042a82f819365"} -2023-12-16T14:31:31.139Z INFO initializing dbft {"height": 8547, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:31.140Z debug frostfs-node/morph.go:229 new block {"index": 8546} -2023-12-16T14:31:31.577Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8546, "blockHeight": 8546, "took": "5.977522ms"} -2023-12-16T14:31:32.139Z INFO sending PrepareRequest {"height": 8547, "view": 0} -2023-12-16T14:31:32.139Z INFO sending Commit {"height": 8547, "view": 0} -2023-12-16T14:31:32.139Z INFO approving block {"height": 8547, "hash": "f8a541f0e72bdebee44586d810049b7b557d06ac791afbc9415b3b370560691a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "249574da21d9842451e207e76ea999bf3b148f7e62527c975c1f008c74c0c1a1"} -2023-12-16T14:31:32.140Z INFO initializing dbft {"height": 8548, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:32.141Z debug frostfs-node/morph.go:229 new block {"index": 8547} -2023-12-16T14:31:32.577Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8547, "blockHeight": 8547, "took": "5.030587ms"} -2023-12-16T14:31:33.141Z INFO sending PrepareRequest {"height": 8548, "view": 0} -2023-12-16T14:31:33.141Z INFO sending Commit {"height": 8548, "view": 0} -2023-12-16T14:31:33.141Z INFO approving block {"height": 8548, "hash": "27a17d43bcda37f8c523b5029429a4d2436fce03fe210a62d4d2766cc414fc78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8a541f0e72bdebee44586d810049b7b557d06ac791afbc9415b3b370560691a"} -2023-12-16T14:31:33.142Z INFO initializing dbft {"height": 8549, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:33.143Z debug frostfs-node/morph.go:229 new block {"index": 8548} -2023-12-16T14:31:33.578Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8548, "blockHeight": 8548, "took": "5.945644ms"} -2023-12-16T14:31:34.142Z INFO sending PrepareRequest {"height": 8549, "view": 0} -2023-12-16T14:31:34.142Z INFO sending Commit {"height": 8549, "view": 0} -2023-12-16T14:31:34.142Z INFO approving block {"height": 8549, "hash": "995a985e6fff02a77622690970985acd7468ef718dc6e7579791b55715e0e32f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "27a17d43bcda37f8c523b5029429a4d2436fce03fe210a62d4d2766cc414fc78"} -2023-12-16T14:31:34.143Z INFO initializing dbft {"height": 8550, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:34.144Z debug frostfs-node/morph.go:229 new block {"index": 8549} -2023-12-16T14:31:34.578Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8549, "blockHeight": 8549, "took": "5.70477ms"} -2023-12-16T14:31:35.144Z INFO sending PrepareRequest {"height": 8550, "view": 0} -2023-12-16T14:31:35.144Z INFO sending Commit {"height": 8550, "view": 0} -2023-12-16T14:31:35.144Z INFO approving block {"height": 8550, "hash": "e64476858a5c9066e1301940ad1f318377ecf323ea70b5f696a52f1dd0b7cba9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "995a985e6fff02a77622690970985acd7468ef718dc6e7579791b55715e0e32f"} -2023-12-16T14:31:35.145Z INFO initializing dbft {"height": 8551, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:35.146Z debug frostfs-node/morph.go:229 new block {"index": 8550} -2023-12-16T14:31:35.148Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:31:35.152Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:31:35.152Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:31:35.580Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8550, "blockHeight": 8550, "took": "7.533086ms"} -2023-12-16T14:31:36.145Z INFO sending PrepareRequest {"height": 8551, "view": 0} -2023-12-16T14:31:36.145Z INFO sending Commit {"height": 8551, "view": 0} -2023-12-16T14:31:36.145Z INFO approving block {"height": 8551, "hash": "ee2d98e3939ea0cf165fc9a0329454ed2cbd918793f063d28e55bc1adbe25043", "tx_count": 2, "merkle": "655254de95eb0562d44c85a3bb723bfe662fab12434d270f758bc3c38c47338b", "prev": "e64476858a5c9066e1301940ad1f318377ecf323ea70b5f696a52f1dd0b7cba9"} -2023-12-16T14:31:36.146Z INFO runtime log {"tx": "8a7c3033b4e004ef049c465cbfd6ba37e232b55e8cb0c7cfbcfa8467861a8440", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:31:36.146Z INFO runtime log {"tx": "8a7c3033b4e004ef049c465cbfd6ba37e232b55e8cb0c7cfbcfa8467861a8440", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:31:36.147Z INFO initializing dbft {"height": 8552, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:36.148Z debug frostfs-node/morph.go:229 new block {"index": 8551} -2023-12-16T14:31:36.582Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8551, "blockHeight": 8551, "took": "8.49592ms"} -2023-12-16T14:31:37.146Z INFO sending PrepareRequest {"height": 8552, "view": 0} -2023-12-16T14:31:37.146Z INFO sending Commit {"height": 8552, "view": 0} -2023-12-16T14:31:37.147Z INFO approving block {"height": 8552, "hash": "f5c866fe533223e20498d81e61de5d9a9e1347b43fb841d40759f47962e1b8b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee2d98e3939ea0cf165fc9a0329454ed2cbd918793f063d28e55bc1adbe25043"} -2023-12-16T14:31:37.147Z INFO initializing dbft {"height": 8553, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:37.148Z debug frostfs-node/morph.go:229 new block {"index": 8552} -2023-12-16T14:31:37.578Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8552, "blockHeight": 8552, "took": "4.096948ms"} -2023-12-16T14:31:38.148Z INFO sending PrepareRequest {"height": 8553, "view": 0} -2023-12-16T14:31:38.148Z INFO sending Commit {"height": 8553, "view": 0} -2023-12-16T14:31:38.148Z INFO approving block {"height": 8553, "hash": "ea173eae5990bce94c8309af4f1e146df150ef1bf525d4720b1fecb5e1923366", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5c866fe533223e20498d81e61de5d9a9e1347b43fb841d40759f47962e1b8b8"} -2023-12-16T14:31:38.149Z INFO initializing dbft {"height": 8554, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:38.150Z debug frostfs-node/morph.go:229 new block {"index": 8553} -2023-12-16T14:31:38.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8553, "blockHeight": 8553, "took": "8.877066ms"} -2023-12-16T14:31:39.149Z INFO sending PrepareRequest {"height": 8554, "view": 0} -2023-12-16T14:31:39.149Z INFO sending Commit {"height": 8554, "view": 0} -2023-12-16T14:31:39.149Z INFO approving block {"height": 8554, "hash": "d3064a7276cd767bccab67f6d37e56310f07c3b49eadff6df315599961419ad8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ea173eae5990bce94c8309af4f1e146df150ef1bf525d4720b1fecb5e1923366"} -2023-12-16T14:31:39.150Z INFO initializing dbft {"height": 8555, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:39.151Z debug frostfs-node/morph.go:229 new block {"index": 8554} -2023-12-16T14:31:39.152Z info settlement/calls.go:61 start basic income collection {"epoch": 36} -2023-12-16T14:31:39.153Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 36, "iteration": 1, "error": "no data for 0 iteration in 36 epoch for consumers's trusts"} -2023-12-16T14:31:39.580Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8554, "blockHeight": 8554, "took": "5.186948ms"} -2023-12-16T14:31:40.150Z INFO sending PrepareRequest {"height": 8555, "view": 0} -2023-12-16T14:31:40.150Z INFO sending Commit {"height": 8555, "view": 0} -2023-12-16T14:31:40.151Z INFO approving block {"height": 8555, "hash": "2733362106a4374fd07b41dd8fa9f785953441b9e129764ced7ca507668ae1ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3064a7276cd767bccab67f6d37e56310f07c3b49eadff6df315599961419ad8"} -2023-12-16T14:31:40.151Z INFO initializing dbft {"height": 8556, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:40.152Z debug frostfs-node/morph.go:229 new block {"index": 8555} -2023-12-16T14:31:40.580Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8555, "blockHeight": 8555, "took": "4.021256ms"} -2023-12-16T14:31:41.152Z INFO sending PrepareRequest {"height": 8556, "view": 0} -2023-12-16T14:31:41.152Z INFO sending Commit {"height": 8556, "view": 0} -2023-12-16T14:31:41.152Z INFO approving block {"height": 8556, "hash": "e0e3e86baa60c136dc625df1d26dc9bb1d59ea3012c90a88f8edf1690d88092a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2733362106a4374fd07b41dd8fa9f785953441b9e129764ced7ca507668ae1ca"} -2023-12-16T14:31:41.153Z INFO initializing dbft {"height": 8557, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:41.153Z debug frostfs-node/morph.go:229 new block {"index": 8556} -2023-12-16T14:31:41.581Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8556, "blockHeight": 8556, "took": "4.010139ms"} -2023-12-16T14:31:42.153Z INFO sending PrepareRequest {"height": 8557, "view": 0} -2023-12-16T14:31:42.153Z INFO sending Commit {"height": 8557, "view": 0} -2023-12-16T14:31:42.154Z INFO approving block {"height": 8557, "hash": "fff6d87d2bdd53d3d80712f82d4552fde4fc4ca11fcb38f72212f2b895f87629", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0e3e86baa60c136dc625df1d26dc9bb1d59ea3012c90a88f8edf1690d88092a"} -2023-12-16T14:31:42.155Z INFO initializing dbft {"height": 8558, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:42.156Z debug frostfs-node/morph.go:229 new block {"index": 8557} -2023-12-16T14:31:42.581Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8557, "blockHeight": 8557, "took": "4.346696ms"} -2023-12-16T14:31:43.155Z INFO sending PrepareRequest {"height": 8558, "view": 0} -2023-12-16T14:31:43.155Z INFO sending Commit {"height": 8558, "view": 0} -2023-12-16T14:31:43.155Z INFO approving block {"height": 8558, "hash": "694ecbd583c8de97be11dba548d1eeb6e199a3abb7cef3939f6d057e6f8b36ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fff6d87d2bdd53d3d80712f82d4552fde4fc4ca11fcb38f72212f2b895f87629"} -2023-12-16T14:31:43.156Z INFO initializing dbft {"height": 8559, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:43.157Z debug frostfs-node/morph.go:229 new block {"index": 8558} -2023-12-16T14:31:43.584Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8558, "blockHeight": 8558, "took": "6.404586ms"} -2023-12-16T14:31:44.157Z INFO sending PrepareRequest {"height": 8559, "view": 0} -2023-12-16T14:31:44.157Z INFO sending Commit {"height": 8559, "view": 0} -2023-12-16T14:31:44.157Z INFO approving block {"height": 8559, "hash": "22ea0e4d85faab05171130b657f663b8744410243ea9ab1fd152258e8a88e738", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "694ecbd583c8de97be11dba548d1eeb6e199a3abb7cef3939f6d057e6f8b36ff"} -2023-12-16T14:31:44.158Z INFO initializing dbft {"height": 8560, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:44.158Z debug frostfs-node/morph.go:229 new block {"index": 8559} -2023-12-16T14:31:44.585Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8559, "blockHeight": 8559, "took": "6.752595ms"} -2023-12-16T14:31:45.158Z INFO sending PrepareRequest {"height": 8560, "view": 0} -2023-12-16T14:31:45.158Z INFO sending Commit {"height": 8560, "view": 0} -2023-12-16T14:31:45.159Z INFO approving block {"height": 8560, "hash": "49fb1b3e189c20f8d5136862809bdb3f9b9fc5de672cbaee42b4a6d9d486612a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "22ea0e4d85faab05171130b657f663b8744410243ea9ab1fd152258e8a88e738"} -2023-12-16T14:31:45.159Z INFO initializing dbft {"height": 8561, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:45.160Z debug frostfs-node/morph.go:229 new block {"index": 8560} -2023-12-16T14:31:45.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8560, "blockHeight": 8560, "took": "4.307354ms"} -2023-12-16T14:31:46.160Z INFO sending PrepareRequest {"height": 8561, "view": 0} -2023-12-16T14:31:46.160Z INFO sending Commit {"height": 8561, "view": 0} -2023-12-16T14:31:46.160Z INFO approving block {"height": 8561, "hash": "4b642241a994024c31eb3b3945b995e0abd4fcf8f1db4dc9bb36975c428cb9f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49fb1b3e189c20f8d5136862809bdb3f9b9fc5de672cbaee42b4a6d9d486612a"} -2023-12-16T14:31:46.161Z INFO initializing dbft {"height": 8562, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:46.161Z debug frostfs-node/morph.go:229 new block {"index": 8561} -2023-12-16T14:31:46.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8561, "blockHeight": 8561, "took": "4.593304ms"} -2023-12-16T14:31:47.161Z INFO sending PrepareRequest {"height": 8562, "view": 0} -2023-12-16T14:31:47.162Z INFO sending Commit {"height": 8562, "view": 0} -2023-12-16T14:31:47.162Z INFO approving block {"height": 8562, "hash": "23368d1f2c0166aa192cc84efae44f2796cc12eed220caf485b5831c6ad39583", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b642241a994024c31eb3b3945b995e0abd4fcf8f1db4dc9bb36975c428cb9f5"} -2023-12-16T14:31:47.163Z INFO initializing dbft {"height": 8563, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:47.164Z debug frostfs-node/morph.go:229 new block {"index": 8562} -2023-12-16T14:31:47.584Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8562, "blockHeight": 8562, "took": "4.368356ms"} -2023-12-16T14:31:48.163Z INFO sending PrepareRequest {"height": 8563, "view": 0} -2023-12-16T14:31:48.163Z INFO sending Commit {"height": 8563, "view": 0} -2023-12-16T14:31:48.164Z INFO approving block {"height": 8563, "hash": "122302416095e7f1ea51ffe732a39cb0eb2b037b962aacc41e2c8641c140dd2a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23368d1f2c0166aa192cc84efae44f2796cc12eed220caf485b5831c6ad39583"} -2023-12-16T14:31:48.164Z INFO initializing dbft {"height": 8564, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:48.165Z debug frostfs-node/morph.go:229 new block {"index": 8563} -2023-12-16T14:31:48.583Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8563, "blockHeight": 8563, "took": "3.864352ms"} -2023-12-16T14:31:49.165Z INFO sending PrepareRequest {"height": 8564, "view": 0} -2023-12-16T14:31:49.165Z INFO sending Commit {"height": 8564, "view": 0} -2023-12-16T14:31:49.165Z INFO approving block {"height": 8564, "hash": "6d285cefb48005596ace2c12f84708c36689cc953548b575f7211932e4bd80ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "122302416095e7f1ea51ffe732a39cb0eb2b037b962aacc41e2c8641c140dd2a"} -2023-12-16T14:31:49.166Z INFO initializing dbft {"height": 8565, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:49.166Z debug frostfs-node/morph.go:229 new block {"index": 8564} -2023-12-16T14:31:49.585Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8564, "blockHeight": 8564, "took": "4.561732ms"} -2023-12-16T14:31:50.167Z INFO sending PrepareRequest {"height": 8565, "view": 0} -2023-12-16T14:31:50.167Z INFO sending Commit {"height": 8565, "view": 0} -2023-12-16T14:31:50.167Z INFO approving block {"height": 8565, "hash": "056e3a100753cd5bbb6d62538c51651d2137927af1c7182d36e94d76b3c28566", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d285cefb48005596ace2c12f84708c36689cc953548b575f7211932e4bd80ed"} -2023-12-16T14:31:50.168Z INFO initializing dbft {"height": 8566, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:50.168Z debug frostfs-node/morph.go:229 new block {"index": 8565} -2023-12-16T14:31:50.585Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8565, "blockHeight": 8565, "took": "4.110529ms"} -2023-12-16T14:31:51.168Z INFO sending PrepareRequest {"height": 8566, "view": 0} -2023-12-16T14:31:51.168Z INFO sending Commit {"height": 8566, "view": 0} -2023-12-16T14:31:51.168Z INFO approving block {"height": 8566, "hash": "c5285f59fcd93c787384ef815cfb2a51c04d99d0eb2819a04133908700c2556e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "056e3a100753cd5bbb6d62538c51651d2137927af1c7182d36e94d76b3c28566"} -2023-12-16T14:31:51.169Z INFO initializing dbft {"height": 8567, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:51.170Z debug frostfs-node/morph.go:229 new block {"index": 8566} -2023-12-16T14:31:51.586Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8566, "blockHeight": 8566, "took": "4.254094ms"} -2023-12-16T14:31:52.170Z INFO sending PrepareRequest {"height": 8567, "view": 0} -2023-12-16T14:31:52.170Z INFO sending Commit {"height": 8567, "view": 0} -2023-12-16T14:31:52.170Z INFO approving block {"height": 8567, "hash": "81842163e915c7a0a8db302a831b00dd32c5d50b71179adda8c9448ac015b1fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5285f59fcd93c787384ef815cfb2a51c04d99d0eb2819a04133908700c2556e"} -2023-12-16T14:31:52.171Z INFO initializing dbft {"height": 8568, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:52.171Z debug frostfs-node/morph.go:229 new block {"index": 8567} -2023-12-16T14:31:52.586Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8567, "blockHeight": 8567, "took": "3.772479ms"} -2023-12-16T14:31:53.171Z INFO sending PrepareRequest {"height": 8568, "view": 0} -2023-12-16T14:31:53.171Z INFO sending Commit {"height": 8568, "view": 0} -2023-12-16T14:31:53.171Z INFO approving block {"height": 8568, "hash": "aafe895ce62909fbdfc66d8d661df84d79dad8d784a419ea8ca5b2e745f0bc38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81842163e915c7a0a8db302a831b00dd32c5d50b71179adda8c9448ac015b1fd"} -2023-12-16T14:31:53.172Z INFO initializing dbft {"height": 8569, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:53.172Z debug frostfs-node/morph.go:229 new block {"index": 8568} -2023-12-16T14:31:53.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8568, "blockHeight": 8568, "took": "6.487059ms"} -2023-12-16T14:31:54.173Z INFO sending PrepareRequest {"height": 8569, "view": 0} -2023-12-16T14:31:54.173Z INFO sending Commit {"height": 8569, "view": 0} -2023-12-16T14:31:54.173Z INFO approving block {"height": 8569, "hash": "b169727377822c2e3a8181d6a91904f4eb4582e7b9b414a12546d970c51196da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aafe895ce62909fbdfc66d8d661df84d79dad8d784a419ea8ca5b2e745f0bc38"} -2023-12-16T14:31:54.174Z INFO initializing dbft {"height": 8570, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:54.174Z debug frostfs-node/morph.go:229 new block {"index": 8569} -2023-12-16T14:31:54.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8569, "blockHeight": 8569, "took": "6.342822ms"} -2023-12-16T14:31:55.174Z INFO sending PrepareRequest {"height": 8570, "view": 0} -2023-12-16T14:31:55.174Z INFO sending Commit {"height": 8570, "view": 0} -2023-12-16T14:31:55.174Z INFO approving block {"height": 8570, "hash": "328961ac83754a56e957f3f3c3318d386cb9374129d3a72391747a352bc321c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b169727377822c2e3a8181d6a91904f4eb4582e7b9b414a12546d970c51196da"} -2023-12-16T14:31:55.175Z INFO initializing dbft {"height": 8571, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:55.176Z debug frostfs-node/morph.go:229 new block {"index": 8570} -2023-12-16T14:31:55.587Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8570, "blockHeight": 8570, "took": "3.558556ms"} -2023-12-16T14:31:56.175Z INFO sending PrepareRequest {"height": 8571, "view": 0} -2023-12-16T14:31:56.175Z INFO sending Commit {"height": 8571, "view": 0} -2023-12-16T14:31:56.176Z INFO approving block {"height": 8571, "hash": "a4d961523851f1c60cef06e94bc0daffc6ddacd88c8e463b58923dd6123d4096", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "328961ac83754a56e957f3f3c3318d386cb9374129d3a72391747a352bc321c0"} -2023-12-16T14:31:56.177Z INFO initializing dbft {"height": 8572, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:56.177Z debug frostfs-node/morph.go:229 new block {"index": 8571} -2023-12-16T14:31:56.588Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8571, "blockHeight": 8571, "took": "4.168842ms"} -2023-12-16T14:31:57.177Z INFO sending PrepareRequest {"height": 8572, "view": 0} -2023-12-16T14:31:57.177Z INFO sending Commit {"height": 8572, "view": 0} -2023-12-16T14:31:57.178Z INFO approving block {"height": 8572, "hash": "f5862cd918c7e5feadb0423df85599627b64adc7bf18a6af030434e8dde7b7c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4d961523851f1c60cef06e94bc0daffc6ddacd88c8e463b58923dd6123d4096"} -2023-12-16T14:31:57.178Z INFO initializing dbft {"height": 8573, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:57.179Z debug frostfs-node/morph.go:229 new block {"index": 8572} -2023-12-16T14:31:57.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8572, "blockHeight": 8572, "took": "5.13105ms"} -2023-12-16T14:31:58.179Z INFO sending PrepareRequest {"height": 8573, "view": 0} -2023-12-16T14:31:58.179Z INFO sending Commit {"height": 8573, "view": 0} -2023-12-16T14:31:58.179Z INFO approving block {"height": 8573, "hash": "9caafdd6d3846f5bfaeff9ba6ae5834b58327a66c4daa70962e71221d777d6bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5862cd918c7e5feadb0423df85599627b64adc7bf18a6af030434e8dde7b7c1"} -2023-12-16T14:31:58.180Z INFO initializing dbft {"height": 8574, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:58.180Z debug frostfs-node/morph.go:229 new block {"index": 8573} -2023-12-16T14:31:58.588Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8573, "blockHeight": 8573, "took": "3.971818ms"} -2023-12-16T14:31:59.180Z INFO sending PrepareRequest {"height": 8574, "view": 0} -2023-12-16T14:31:59.181Z INFO sending Commit {"height": 8574, "view": 0} -2023-12-16T14:31:59.181Z INFO approving block {"height": 8574, "hash": "52e20b6c792657215d87f7f0385dd7e441bb7ec2455e7ced1b1685ba1f0b88aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9caafdd6d3846f5bfaeff9ba6ae5834b58327a66c4daa70962e71221d777d6bc"} -2023-12-16T14:31:59.182Z INFO initializing dbft {"height": 8575, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:31:59.182Z debug frostfs-node/morph.go:229 new block {"index": 8574} -2023-12-16T14:31:59.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8574, "blockHeight": 8574, "took": "4.607744ms"} -2023-12-16T14:32:00.182Z INFO sending PrepareRequest {"height": 8575, "view": 0} -2023-12-16T14:32:00.182Z INFO sending Commit {"height": 8575, "view": 0} -2023-12-16T14:32:00.182Z INFO approving block {"height": 8575, "hash": "2a0d1521073951ce29a5fca5bd237a325d851eaed30512ae2a84508f99fb99b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52e20b6c792657215d87f7f0385dd7e441bb7ec2455e7ced1b1685ba1f0b88aa"} -2023-12-16T14:32:00.183Z INFO initializing dbft {"height": 8576, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:00.183Z debug frostfs-node/morph.go:229 new block {"index": 8575} -2023-12-16T14:32:00.589Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8575, "blockHeight": 8575, "took": "3.487332ms"} -2023-12-16T14:32:01.183Z INFO sending PrepareRequest {"height": 8576, "view": 0} -2023-12-16T14:32:01.183Z INFO sending Commit {"height": 8576, "view": 0} -2023-12-16T14:32:01.184Z INFO approving block {"height": 8576, "hash": "be9407b86022683181a9b2b9046476d1bd307d80c77a9f30ea07b01ed6abb952", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a0d1521073951ce29a5fca5bd237a325d851eaed30512ae2a84508f99fb99b4"} -2023-12-16T14:32:01.184Z INFO initializing dbft {"height": 8577, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:01.185Z debug frostfs-node/morph.go:229 new block {"index": 8576} -2023-12-16T14:32:01.590Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8576, "blockHeight": 8576, "took": "4.533869ms"} -2023-12-16T14:32:02.185Z INFO sending PrepareRequest {"height": 8577, "view": 0} -2023-12-16T14:32:02.185Z INFO sending Commit {"height": 8577, "view": 0} -2023-12-16T14:32:02.185Z INFO approving block {"height": 8577, "hash": "3f667a7561fb4e30d99d15f2db6de6c206b372cb924facc7232c2b8eef034cb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be9407b86022683181a9b2b9046476d1bd307d80c77a9f30ea07b01ed6abb952"} -2023-12-16T14:32:02.186Z INFO initializing dbft {"height": 8578, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:02.186Z debug frostfs-node/morph.go:229 new block {"index": 8577} -2023-12-16T14:32:02.590Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8577, "blockHeight": 8577, "took": "4.10134ms"} -2023-12-16T14:32:03.186Z INFO sending PrepareRequest {"height": 8578, "view": 0} -2023-12-16T14:32:03.186Z INFO sending Commit {"height": 8578, "view": 0} -2023-12-16T14:32:03.186Z INFO approving block {"height": 8578, "hash": "53fd9ff46ffc75589219738e6f04e0dc851c7a61695373f8aca4e0535d9d2488", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f667a7561fb4e30d99d15f2db6de6c206b372cb924facc7232c2b8eef034cb1"} -2023-12-16T14:32:03.187Z INFO initializing dbft {"height": 8579, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:03.187Z debug frostfs-node/morph.go:229 new block {"index": 8578} -2023-12-16T14:32:03.590Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8578, "blockHeight": 8578, "took": "4.08419ms"} -2023-12-16T14:32:04.187Z INFO sending PrepareRequest {"height": 8579, "view": 0} -2023-12-16T14:32:04.187Z INFO sending Commit {"height": 8579, "view": 0} -2023-12-16T14:32:04.188Z INFO approving block {"height": 8579, "hash": "c4c7b5039d80e27ecc0745ad905efcd92ae1d88c0f0b01d1dd7982ae042da3ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53fd9ff46ffc75589219738e6f04e0dc851c7a61695373f8aca4e0535d9d2488"} -2023-12-16T14:32:04.188Z INFO initializing dbft {"height": 8580, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:04.189Z debug frostfs-node/morph.go:229 new block {"index": 8579} -2023-12-16T14:32:04.592Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8579, "blockHeight": 8579, "took": "5.286004ms"} -2023-12-16T14:32:05.189Z INFO sending PrepareRequest {"height": 8580, "view": 0} -2023-12-16T14:32:05.189Z INFO sending Commit {"height": 8580, "view": 0} -2023-12-16T14:32:05.189Z INFO approving block {"height": 8580, "hash": "de3d9613e2769dafbeee46cebf970be2c1fa039d74309d8434100785c80f9ce0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4c7b5039d80e27ecc0745ad905efcd92ae1d88c0f0b01d1dd7982ae042da3ba"} -2023-12-16T14:32:05.190Z INFO initializing dbft {"height": 8581, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:05.190Z debug frostfs-node/morph.go:229 new block {"index": 8580} -2023-12-16T14:32:05.591Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8580, "blockHeight": 8580, "took": "3.807378ms"} -2023-12-16T14:32:06.190Z INFO sending PrepareRequest {"height": 8581, "view": 0} -2023-12-16T14:32:06.191Z INFO sending Commit {"height": 8581, "view": 0} -2023-12-16T14:32:06.191Z INFO approving block {"height": 8581, "hash": "802be421180290bb3cfb8515c646190560728d39bc7505074273549557519390", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "de3d9613e2769dafbeee46cebf970be2c1fa039d74309d8434100785c80f9ce0"} -2023-12-16T14:32:06.192Z INFO initializing dbft {"height": 8582, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:06.192Z debug frostfs-node/morph.go:229 new block {"index": 8581} -2023-12-16T14:32:06.591Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8581, "blockHeight": 8581, "took": "3.267645ms"} -2023-12-16T14:32:07.192Z INFO sending PrepareRequest {"height": 8582, "view": 0} -2023-12-16T14:32:07.192Z INFO sending Commit {"height": 8582, "view": 0} -2023-12-16T14:32:07.192Z INFO approving block {"height": 8582, "hash": "51e39edbc839419ac27b4d13569f24b0fb614db860020420d43c3380175c3b91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "802be421180290bb3cfb8515c646190560728d39bc7505074273549557519390"} -2023-12-16T14:32:07.193Z INFO initializing dbft {"height": 8583, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:07.193Z debug frostfs-node/morph.go:229 new block {"index": 8582} -2023-12-16T14:32:07.591Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8582, "blockHeight": 8582, "took": "3.333947ms"} -2023-12-16T14:32:08.194Z INFO sending PrepareRequest {"height": 8583, "view": 0} -2023-12-16T14:32:08.194Z INFO sending Commit {"height": 8583, "view": 0} -2023-12-16T14:32:08.195Z INFO approving block {"height": 8583, "hash": "73b2fff4e8362c683e64e6b522ef45a4907247cff7919fda2d499e8ca3df0402", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51e39edbc839419ac27b4d13569f24b0fb614db860020420d43c3380175c3b91"} -2023-12-16T14:32:08.196Z INFO initializing dbft {"height": 8584, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:08.197Z debug frostfs-node/morph.go:229 new block {"index": 8583} -2023-12-16T14:32:08.592Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8583, "blockHeight": 8583, "took": "3.613516ms"} -2023-12-16T14:32:09.195Z INFO sending PrepareRequest {"height": 8584, "view": 0} -2023-12-16T14:32:09.196Z INFO sending Commit {"height": 8584, "view": 0} -2023-12-16T14:32:09.196Z INFO approving block {"height": 8584, "hash": "20e2662c8a4b0fb26a7fe172bf076c208befcf17c6279471b0288e36d48bc0cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73b2fff4e8362c683e64e6b522ef45a4907247cff7919fda2d499e8ca3df0402"} -2023-12-16T14:32:09.197Z INFO initializing dbft {"height": 8585, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:09.197Z debug frostfs-node/morph.go:229 new block {"index": 8584} -2023-12-16T14:32:09.593Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8584, "blockHeight": 8584, "took": "4.324756ms"} -2023-12-16T14:32:10.197Z INFO sending PrepareRequest {"height": 8585, "view": 0} -2023-12-16T14:32:10.197Z INFO sending Commit {"height": 8585, "view": 0} -2023-12-16T14:32:10.197Z INFO approving block {"height": 8585, "hash": "f8862d269ed46022cc02f81153d5395541d1ab61bd321a84edfc945eb27e9d88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20e2662c8a4b0fb26a7fe172bf076c208befcf17c6279471b0288e36d48bc0cc"} -2023-12-16T14:32:10.198Z INFO initializing dbft {"height": 8586, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:10.199Z debug frostfs-node/morph.go:229 new block {"index": 8585} -2023-12-16T14:32:10.595Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8585, "blockHeight": 8585, "took": "5.096459ms"} -2023-12-16T14:32:11.199Z INFO sending PrepareRequest {"height": 8586, "view": 0} -2023-12-16T14:32:11.199Z INFO sending Commit {"height": 8586, "view": 0} -2023-12-16T14:32:11.199Z INFO approving block {"height": 8586, "hash": "5f647e89cbdf4d4073985e30a1f0ba3bd4aecbdb4c029c56dfb8ded69ba1c96a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8862d269ed46022cc02f81153d5395541d1ab61bd321a84edfc945eb27e9d88"} -2023-12-16T14:32:11.201Z INFO initializing dbft {"height": 8587, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:11.201Z debug frostfs-node/morph.go:229 new block {"index": 8586} -2023-12-16T14:32:11.597Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8586, "blockHeight": 8586, "took": "6.529671ms"} -2023-12-16T14:32:12.200Z INFO sending PrepareRequest {"height": 8587, "view": 0} -2023-12-16T14:32:12.201Z INFO sending Commit {"height": 8587, "view": 0} -2023-12-16T14:32:12.201Z INFO approving block {"height": 8587, "hash": "419eb329e0e88881900cff6a6d142a4667387aa8885a393c63a1cfa4f952fed4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f647e89cbdf4d4073985e30a1f0ba3bd4aecbdb4c029c56dfb8ded69ba1c96a"} -2023-12-16T14:32:12.202Z INFO initializing dbft {"height": 8588, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:12.203Z debug frostfs-node/morph.go:229 new block {"index": 8587} -2023-12-16T14:32:12.595Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8587, "blockHeight": 8587, "took": "4.661216ms"} -2023-12-16T14:32:13.202Z INFO sending PrepareRequest {"height": 8588, "view": 0} -2023-12-16T14:32:13.202Z INFO sending Commit {"height": 8588, "view": 0} -2023-12-16T14:32:13.202Z INFO approving block {"height": 8588, "hash": "380439e53c805cf5e36d42f769e4dbb578290e79fcd79476c26d51bccf028d89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "419eb329e0e88881900cff6a6d142a4667387aa8885a393c63a1cfa4f952fed4"} -2023-12-16T14:32:13.203Z INFO initializing dbft {"height": 8589, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:13.203Z debug frostfs-node/morph.go:229 new block {"index": 8588} -2023-12-16T14:32:13.596Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8588, "blockHeight": 8588, "took": "5.361057ms"} -2023-12-16T14:32:14.203Z INFO sending PrepareRequest {"height": 8589, "view": 0} -2023-12-16T14:32:14.203Z INFO sending Commit {"height": 8589, "view": 0} -2023-12-16T14:32:14.203Z INFO approving block {"height": 8589, "hash": "b6ec473131e5bed52e0108f3b6517d6913595fd417ec108364b4ea4a2fc41aa5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "380439e53c805cf5e36d42f769e4dbb578290e79fcd79476c26d51bccf028d89"} -2023-12-16T14:32:14.204Z INFO initializing dbft {"height": 8590, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:14.204Z debug frostfs-node/morph.go:229 new block {"index": 8589} -2023-12-16T14:32:14.598Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8589, "blockHeight": 8589, "took": "5.443953ms"} -2023-12-16T14:32:15.204Z INFO sending PrepareRequest {"height": 8590, "view": 0} -2023-12-16T14:32:15.205Z INFO sending Commit {"height": 8590, "view": 0} -2023-12-16T14:32:15.205Z INFO approving block {"height": 8590, "hash": "25afe68f15f3076a374be2244eddba52dbc55155ee76d6eb89ce0aa55ace7120", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6ec473131e5bed52e0108f3b6517d6913595fd417ec108364b4ea4a2fc41aa5"} -2023-12-16T14:32:15.206Z INFO initializing dbft {"height": 8591, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:15.206Z debug frostfs-node/morph.go:229 new block {"index": 8590} -2023-12-16T14:32:15.597Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8590, "blockHeight": 8590, "took": "4.397511ms"} -2023-12-16T14:32:16.206Z INFO sending PrepareRequest {"height": 8591, "view": 0} -2023-12-16T14:32:16.206Z INFO sending Commit {"height": 8591, "view": 0} -2023-12-16T14:32:16.207Z INFO approving block {"height": 8591, "hash": "7f118c78d72cf5e21481485422be0ed3573ea69d8cb02e4452e6b7551f96b378", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25afe68f15f3076a374be2244eddba52dbc55155ee76d6eb89ce0aa55ace7120"} -2023-12-16T14:32:16.208Z INFO initializing dbft {"height": 8592, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:16.208Z debug frostfs-node/morph.go:229 new block {"index": 8591} -2023-12-16T14:32:16.599Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8591, "blockHeight": 8591, "took": "5.904021ms"} -2023-12-16T14:32:17.208Z INFO sending PrepareRequest {"height": 8592, "view": 0} -2023-12-16T14:32:17.208Z INFO sending Commit {"height": 8592, "view": 0} -2023-12-16T14:32:17.208Z INFO approving block {"height": 8592, "hash": "2d2bf2c18b04dcf21711d670b27995c7a47d8e5234c87ed2ee96da3df5640d62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f118c78d72cf5e21481485422be0ed3573ea69d8cb02e4452e6b7551f96b378"} -2023-12-16T14:32:17.209Z INFO initializing dbft {"height": 8593, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:17.210Z debug frostfs-node/morph.go:229 new block {"index": 8592} -2023-12-16T14:32:17.598Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8592, "blockHeight": 8592, "took": "4.263787ms"} -2023-12-16T14:32:18.210Z INFO sending PrepareRequest {"height": 8593, "view": 0} -2023-12-16T14:32:18.210Z INFO sending Commit {"height": 8593, "view": 0} -2023-12-16T14:32:18.210Z INFO approving block {"height": 8593, "hash": "1ca021c9fcdea715a2bd324f4eb41cb81e661278e4b9e7f31b4b0cb43426a893", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d2bf2c18b04dcf21711d670b27995c7a47d8e5234c87ed2ee96da3df5640d62"} -2023-12-16T14:32:18.211Z INFO initializing dbft {"height": 8594, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:18.212Z debug frostfs-node/morph.go:229 new block {"index": 8593} -2023-12-16T14:32:18.597Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8593, "blockHeight": 8593, "took": "3.550573ms"} -2023-12-16T14:32:19.211Z INFO sending PrepareRequest {"height": 8594, "view": 0} -2023-12-16T14:32:19.211Z INFO sending Commit {"height": 8594, "view": 0} -2023-12-16T14:32:19.211Z INFO approving block {"height": 8594, "hash": "beb310c2d4fc18299d36e11c05aa87c5eef43bfb813a481b62eb0a7bfa019823", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ca021c9fcdea715a2bd324f4eb41cb81e661278e4b9e7f31b4b0cb43426a893"} -2023-12-16T14:32:19.212Z INFO initializing dbft {"height": 8595, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:19.213Z debug frostfs-node/morph.go:229 new block {"index": 8594} -2023-12-16T14:32:19.600Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8594, "blockHeight": 8594, "took": "5.420598ms"} -2023-12-16T14:32:20.213Z INFO sending PrepareRequest {"height": 8595, "view": 0} -2023-12-16T14:32:20.213Z INFO sending Commit {"height": 8595, "view": 0} -2023-12-16T14:32:20.213Z INFO approving block {"height": 8595, "hash": "37c5a93c2a74132e389c75d4206bb25a6ca7c2af000515e0152fb2857cc91581", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "beb310c2d4fc18299d36e11c05aa87c5eef43bfb813a481b62eb0a7bfa019823"} -2023-12-16T14:32:20.214Z INFO initializing dbft {"height": 8596, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:20.215Z debug frostfs-node/morph.go:229 new block {"index": 8595} -2023-12-16T14:32:20.599Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8595, "blockHeight": 8595, "took": "4.383018ms"} -2023-12-16T14:32:21.214Z INFO sending PrepareRequest {"height": 8596, "view": 0} -2023-12-16T14:32:21.214Z INFO sending Commit {"height": 8596, "view": 0} -2023-12-16T14:32:21.214Z INFO approving block {"height": 8596, "hash": "3da6cb559175081c20662f211e804af742310beb19697250089db41210c9f1a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37c5a93c2a74132e389c75d4206bb25a6ca7c2af000515e0152fb2857cc91581"} -2023-12-16T14:32:21.215Z INFO initializing dbft {"height": 8597, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:21.216Z debug frostfs-node/morph.go:229 new block {"index": 8596} -2023-12-16T14:32:21.601Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8596, "blockHeight": 8596, "took": "6.089523ms"} -2023-12-16T14:32:22.215Z INFO sending PrepareRequest {"height": 8597, "view": 0} -2023-12-16T14:32:22.215Z INFO sending Commit {"height": 8597, "view": 0} -2023-12-16T14:32:22.216Z INFO approving block {"height": 8597, "hash": "dac7f4032ebfa81c94469d12927ddf181808187b80008c88b816648c4e535924", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3da6cb559175081c20662f211e804af742310beb19697250089db41210c9f1a5"} -2023-12-16T14:32:22.217Z INFO initializing dbft {"height": 8598, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:22.217Z debug frostfs-node/morph.go:229 new block {"index": 8597} -2023-12-16T14:32:22.599Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8597, "blockHeight": 8597, "took": "3.976326ms"} -2023-12-16T14:32:23.217Z INFO sending PrepareRequest {"height": 8598, "view": 0} -2023-12-16T14:32:23.217Z INFO sending Commit {"height": 8598, "view": 0} -2023-12-16T14:32:23.217Z INFO approving block {"height": 8598, "hash": "98daa544a471767b65a9293a49dc99d1ca84f0980756f28b031efd32360e8422", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dac7f4032ebfa81c94469d12927ddf181808187b80008c88b816648c4e535924"} -2023-12-16T14:32:23.218Z INFO initializing dbft {"height": 8599, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:23.218Z debug frostfs-node/morph.go:229 new block {"index": 8598} -2023-12-16T14:32:23.600Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8598, "blockHeight": 8598, "took": "3.735029ms"} -2023-12-16T14:32:24.219Z INFO sending PrepareRequest {"height": 8599, "view": 0} -2023-12-16T14:32:24.219Z INFO sending Commit {"height": 8599, "view": 0} -2023-12-16T14:32:24.219Z INFO approving block {"height": 8599, "hash": "967cf80db94ced1a89df3af420abc98111cf575eba838899bce276fc79587ed3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98daa544a471767b65a9293a49dc99d1ca84f0980756f28b031efd32360e8422"} -2023-12-16T14:32:24.220Z INFO initializing dbft {"height": 8600, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:24.221Z debug frostfs-node/morph.go:229 new block {"index": 8599} -2023-12-16T14:32:24.602Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8599, "blockHeight": 8599, "took": "5.322804ms"} -2023-12-16T14:32:25.221Z INFO sending PrepareRequest {"height": 8600, "view": 0} -2023-12-16T14:32:25.221Z INFO sending Commit {"height": 8600, "view": 0} -2023-12-16T14:32:25.221Z INFO approving block {"height": 8600, "hash": "0c44c2318636667660cf493c7f7fe7bf58012936b5c3b0cf6f360af879eb8a3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "967cf80db94ced1a89df3af420abc98111cf575eba838899bce276fc79587ed3"} -2023-12-16T14:32:25.222Z INFO initializing dbft {"height": 8601, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:25.223Z debug frostfs-node/morph.go:229 new block {"index": 8600} -2023-12-16T14:32:25.225Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:32:25.228Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:32:25.228Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:32:25.605Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8600, "blockHeight": 8600, "took": "6.582702ms"} -2023-12-16T14:32:26.222Z INFO sending PrepareRequest {"height": 8601, "view": 0} -2023-12-16T14:32:26.222Z INFO sending Commit {"height": 8601, "view": 0} -2023-12-16T14:32:26.223Z INFO approving block {"height": 8601, "hash": "8060ca4e2eccbc4eef01153b7b5a744bd7f0f4c24343159c2a9738d82732408a", "tx_count": 2, "merkle": "07aef037b368992fd850456d2e35887ea10bb2e8159fe3d39e52253087d45afb", "prev": "0c44c2318636667660cf493c7f7fe7bf58012936b5c3b0cf6f360af879eb8a3e"} -2023-12-16T14:32:26.223Z INFO runtime log {"tx": "24cbe03b11e2b63e6f18b1d6ec3734ee0eb55b6753035fcdb76983ec0eea321d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:32:26.223Z INFO runtime log {"tx": "24cbe03b11e2b63e6f18b1d6ec3734ee0eb55b6753035fcdb76983ec0eea321d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:32:26.224Z INFO initializing dbft {"height": 8602, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:26.225Z debug frostfs-node/morph.go:229 new block {"index": 8601} -2023-12-16T14:32:26.614Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8601, "blockHeight": 8601, "took": "15.059845ms"} -2023-12-16T14:32:27.224Z INFO sending PrepareRequest {"height": 8602, "view": 0} -2023-12-16T14:32:27.224Z INFO sending Commit {"height": 8602, "view": 0} -2023-12-16T14:32:27.224Z INFO approving block {"height": 8602, "hash": "67d32a3454e99f11a65535e4f743886ef2489b802d2fb3d2bf2ce1a3c744c0d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8060ca4e2eccbc4eef01153b7b5a744bd7f0f4c24343159c2a9738d82732408a"} -2023-12-16T14:32:27.225Z INFO initializing dbft {"height": 8603, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:27.225Z debug frostfs-node/morph.go:229 new block {"index": 8602} -2023-12-16T14:32:27.603Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8602, "blockHeight": 8602, "took": "4.165081ms"} -2023-12-16T14:32:28.225Z INFO sending PrepareRequest {"height": 8603, "view": 0} -2023-12-16T14:32:28.225Z INFO sending Commit {"height": 8603, "view": 0} -2023-12-16T14:32:28.225Z INFO approving block {"height": 8603, "hash": "b371e5bb88d9318641732347f0fd8661171502be37287f3e4c833e6c71db1224", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67d32a3454e99f11a65535e4f743886ef2489b802d2fb3d2bf2ce1a3c744c0d2"} -2023-12-16T14:32:28.226Z INFO initializing dbft {"height": 8604, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:28.227Z debug frostfs-node/morph.go:229 new block {"index": 8603} -2023-12-16T14:32:28.603Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8603, "blockHeight": 8603, "took": "4.039097ms"} -2023-12-16T14:32:29.226Z INFO sending PrepareRequest {"height": 8604, "view": 0} -2023-12-16T14:32:29.226Z INFO sending Commit {"height": 8604, "view": 0} -2023-12-16T14:32:29.226Z INFO approving block {"height": 8604, "hash": "b8c9d885de74893e729f83c16f9f5dd8010f57165f56449ea1d5af780d08abc0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b371e5bb88d9318641732347f0fd8661171502be37287f3e4c833e6c71db1224"} -2023-12-16T14:32:29.227Z INFO initializing dbft {"height": 8605, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:29.228Z debug frostfs-node/morph.go:229 new block {"index": 8604} -2023-12-16T14:32:29.604Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8604, "blockHeight": 8604, "took": "3.817021ms"} -2023-12-16T14:32:30.227Z INFO sending PrepareRequest {"height": 8605, "view": 0} -2023-12-16T14:32:30.228Z INFO sending Commit {"height": 8605, "view": 0} -2023-12-16T14:32:30.228Z INFO approving block {"height": 8605, "hash": "a2738b2e45d816f1c9d334d3c3d4c239ce275b0d0e99ff445543822136cf9be3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8c9d885de74893e729f83c16f9f5dd8010f57165f56449ea1d5af780d08abc0"} -2023-12-16T14:32:30.229Z INFO initializing dbft {"height": 8606, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:30.229Z debug frostfs-node/morph.go:229 new block {"index": 8605} -2023-12-16T14:32:30.605Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8605, "blockHeight": 8605, "took": "4.608885ms"} -2023-12-16T14:32:31.229Z INFO sending PrepareRequest {"height": 8606, "view": 0} -2023-12-16T14:32:31.229Z INFO sending Commit {"height": 8606, "view": 0} -2023-12-16T14:32:31.229Z INFO approving block {"height": 8606, "hash": "46e341555d068c6b9e6fbeb7418821c841bd8d2fdf2c2117527c0abbc3c8d63f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2738b2e45d816f1c9d334d3c3d4c239ce275b0d0e99ff445543822136cf9be3"} -2023-12-16T14:32:31.230Z INFO initializing dbft {"height": 8607, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:31.231Z debug frostfs-node/morph.go:229 new block {"index": 8606} -2023-12-16T14:32:31.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8606, "blockHeight": 8606, "took": "5.473953ms"} -2023-12-16T14:32:32.230Z INFO sending PrepareRequest {"height": 8607, "view": 0} -2023-12-16T14:32:32.230Z INFO sending Commit {"height": 8607, "view": 0} -2023-12-16T14:32:32.231Z INFO approving block {"height": 8607, "hash": "cd6bee0813d45381a6a57d94c9751f754d0b4b4d954d9a65f870fcc4d5e8aafd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46e341555d068c6b9e6fbeb7418821c841bd8d2fdf2c2117527c0abbc3c8d63f"} -2023-12-16T14:32:32.232Z INFO initializing dbft {"height": 8608, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:32.232Z debug frostfs-node/morph.go:229 new block {"index": 8607} -2023-12-16T14:32:32.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8607, "blockHeight": 8607, "took": "5.553408ms"} -2023-12-16T14:32:33.232Z INFO sending PrepareRequest {"height": 8608, "view": 0} -2023-12-16T14:32:33.232Z INFO sending Commit {"height": 8608, "view": 0} -2023-12-16T14:32:33.233Z INFO approving block {"height": 8608, "hash": "6a3384d709fa1bbe7d2b10d22f10f74e390fece2e8540fe36d7e90999ab41268", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd6bee0813d45381a6a57d94c9751f754d0b4b4d954d9a65f870fcc4d5e8aafd"} -2023-12-16T14:32:33.234Z INFO initializing dbft {"height": 8609, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:33.234Z debug frostfs-node/morph.go:229 new block {"index": 8608} -2023-12-16T14:32:33.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8608, "blockHeight": 8608, "took": "4.466657ms"} -2023-12-16T14:32:34.233Z INFO sending PrepareRequest {"height": 8609, "view": 0} -2023-12-16T14:32:34.234Z INFO sending Commit {"height": 8609, "view": 0} -2023-12-16T14:32:34.234Z INFO approving block {"height": 8609, "hash": "2a422ef1910d0310bf28b78f8b94786ca4d94464aee240ed28e4dc6a578d31b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a3384d709fa1bbe7d2b10d22f10f74e390fece2e8540fe36d7e90999ab41268"} -2023-12-16T14:32:34.234Z INFO initializing dbft {"height": 8610, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:34.235Z debug frostfs-node/morph.go:229 new block {"index": 8609} -2023-12-16T14:32:34.607Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8609, "blockHeight": 8609, "took": "4.508152ms"} -2023-12-16T14:32:35.234Z INFO sending PrepareRequest {"height": 8610, "view": 0} -2023-12-16T14:32:35.234Z INFO sending Commit {"height": 8610, "view": 0} -2023-12-16T14:32:35.235Z INFO approving block {"height": 8610, "hash": "65055c2737add2bdcadc8c4ae3f1d5d781eb65477d75811a532c29443cb6a73d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a422ef1910d0310bf28b78f8b94786ca4d94464aee240ed28e4dc6a578d31b4"} -2023-12-16T14:32:35.236Z INFO initializing dbft {"height": 8611, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:35.237Z debug frostfs-node/morph.go:229 new block {"index": 8610} -2023-12-16T14:32:35.608Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8610, "blockHeight": 8610, "took": "4.102133ms"} -2023-12-16T14:32:36.236Z INFO sending PrepareRequest {"height": 8611, "view": 0} -2023-12-16T14:32:36.236Z INFO sending Commit {"height": 8611, "view": 0} -2023-12-16T14:32:36.236Z INFO approving block {"height": 8611, "hash": "99fb5d2ce71b4765647ab2ee8976143824446e2b4779bd0bbfaf2cd303aaa53d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65055c2737add2bdcadc8c4ae3f1d5d781eb65477d75811a532c29443cb6a73d"} -2023-12-16T14:32:36.237Z INFO initializing dbft {"height": 8612, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:36.238Z debug frostfs-node/morph.go:229 new block {"index": 8611} -2023-12-16T14:32:36.608Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8611, "blockHeight": 8611, "took": "3.904401ms"} -2023-12-16T14:32:37.237Z INFO sending PrepareRequest {"height": 8612, "view": 0} -2023-12-16T14:32:37.237Z INFO sending Commit {"height": 8612, "view": 0} -2023-12-16T14:32:37.238Z INFO approving block {"height": 8612, "hash": "5660f53a798b46ccb677641278af4bfbf62eeeb06913ece074cbdc421dd8cf7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99fb5d2ce71b4765647ab2ee8976143824446e2b4779bd0bbfaf2cd303aaa53d"} -2023-12-16T14:32:37.239Z INFO initializing dbft {"height": 8613, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:37.239Z debug frostfs-node/morph.go:229 new block {"index": 8612} -2023-12-16T14:32:37.609Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8612, "blockHeight": 8612, "took": "4.48056ms"} -2023-12-16T14:32:38.239Z INFO sending PrepareRequest {"height": 8613, "view": 0} -2023-12-16T14:32:38.239Z INFO sending Commit {"height": 8613, "view": 0} -2023-12-16T14:32:38.239Z INFO approving block {"height": 8613, "hash": "e3676085432852fb70c3e3d1b968ceb1016052e8daa842070bfe9819f5239db1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5660f53a798b46ccb677641278af4bfbf62eeeb06913ece074cbdc421dd8cf7d"} -2023-12-16T14:32:38.240Z INFO initializing dbft {"height": 8614, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:38.240Z debug frostfs-node/morph.go:229 new block {"index": 8613} -2023-12-16T14:32:38.609Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8613, "blockHeight": 8613, "took": "4.018984ms"} -2023-12-16T14:32:39.240Z INFO sending PrepareRequest {"height": 8614, "view": 0} -2023-12-16T14:32:39.240Z INFO sending Commit {"height": 8614, "view": 0} -2023-12-16T14:32:39.240Z INFO approving block {"height": 8614, "hash": "443427105f18bd0ba92d259231bd69177de257342e3a76f275b09497c9629acb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3676085432852fb70c3e3d1b968ceb1016052e8daa842070bfe9819f5239db1"} -2023-12-16T14:32:39.241Z INFO initializing dbft {"height": 8615, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:39.242Z debug frostfs-node/morph.go:229 new block {"index": 8614} -2023-12-16T14:32:39.243Z info settlement/calls.go:106 start basic income distribution {"epoch": 36} -2023-12-16T14:32:39.245Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 36, "iteration": 2, "error": "no data for 1 iteration in 36 epoch for consumers's trusts"} -2023-12-16T14:32:39.610Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8614, "blockHeight": 8614, "took": "4.253064ms"} -2023-12-16T14:32:40.241Z INFO sending PrepareRequest {"height": 8615, "view": 0} -2023-12-16T14:32:40.241Z INFO sending Commit {"height": 8615, "view": 0} -2023-12-16T14:32:40.241Z INFO approving block {"height": 8615, "hash": "7fe7cf1046d9e63724e2ba3ca4f4fe01137d87bf19137001d7d991adcd23ae7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "443427105f18bd0ba92d259231bd69177de257342e3a76f275b09497c9629acb"} -2023-12-16T14:32:40.242Z INFO initializing dbft {"height": 8616, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:40.242Z debug frostfs-node/morph.go:229 new block {"index": 8615} -2023-12-16T14:32:40.610Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8615, "blockHeight": 8615, "took": "4.069007ms"} -2023-12-16T14:32:41.242Z INFO sending PrepareRequest {"height": 8616, "view": 0} -2023-12-16T14:32:41.242Z INFO sending Commit {"height": 8616, "view": 0} -2023-12-16T14:32:41.243Z INFO approving block {"height": 8616, "hash": "d5ed137405030d5c180a6e9952bb6cb876fbc0f8da13dbfc47a450d3a546bac0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fe7cf1046d9e63724e2ba3ca4f4fe01137d87bf19137001d7d991adcd23ae7b"} -2023-12-16T14:32:41.243Z INFO initializing dbft {"height": 8617, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:41.244Z debug frostfs-node/morph.go:229 new block {"index": 8616} -2023-12-16T14:32:41.612Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8616, "blockHeight": 8616, "took": "4.674098ms"} -2023-12-16T14:32:42.243Z INFO sending PrepareRequest {"height": 8617, "view": 0} -2023-12-16T14:32:42.243Z INFO sending Commit {"height": 8617, "view": 0} -2023-12-16T14:32:42.243Z INFO approving block {"height": 8617, "hash": "e555159b5e6523e13f628d89ff523aae8f1eeb8e561f639780da91eb94be3b3d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5ed137405030d5c180a6e9952bb6cb876fbc0f8da13dbfc47a450d3a546bac0"} -2023-12-16T14:32:42.244Z INFO initializing dbft {"height": 8618, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:42.245Z debug frostfs-node/morph.go:229 new block {"index": 8617} -2023-12-16T14:32:42.612Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8617, "blockHeight": 8617, "took": "4.284008ms"} -2023-12-16T14:32:43.244Z INFO sending PrepareRequest {"height": 8618, "view": 0} -2023-12-16T14:32:43.245Z INFO sending Commit {"height": 8618, "view": 0} -2023-12-16T14:32:43.245Z INFO approving block {"height": 8618, "hash": "ddc93ed0a6ad80d8d790d3dda421c84d4fd9a6e3ec3c50581896611f69365fb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e555159b5e6523e13f628d89ff523aae8f1eeb8e561f639780da91eb94be3b3d"} -2023-12-16T14:32:43.246Z INFO initializing dbft {"height": 8619, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:43.246Z debug frostfs-node/morph.go:229 new block {"index": 8618} -2023-12-16T14:32:43.611Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8618, "blockHeight": 8618, "took": "3.790614ms"} -2023-12-16T14:32:44.246Z INFO sending PrepareRequest {"height": 8619, "view": 0} -2023-12-16T14:32:44.246Z INFO sending Commit {"height": 8619, "view": 0} -2023-12-16T14:32:44.247Z INFO approving block {"height": 8619, "hash": "246b498df2fbfd6211ee428d4e2997afb11bd8e47380bd3e647ba0bfb872fa49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddc93ed0a6ad80d8d790d3dda421c84d4fd9a6e3ec3c50581896611f69365fb7"} -2023-12-16T14:32:44.248Z INFO initializing dbft {"height": 8620, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:44.249Z debug frostfs-node/morph.go:229 new block {"index": 8619} -2023-12-16T14:32:44.613Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8619, "blockHeight": 8619, "took": "4.983238ms"} -2023-12-16T14:32:45.248Z INFO sending PrepareRequest {"height": 8620, "view": 0} -2023-12-16T14:32:45.248Z INFO sending Commit {"height": 8620, "view": 0} -2023-12-16T14:32:45.248Z INFO approving block {"height": 8620, "hash": "fc8b31f629dd99714bb2f61de20d4c56b911ca091f22c8e631bc0d543ab2185c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "246b498df2fbfd6211ee428d4e2997afb11bd8e47380bd3e647ba0bfb872fa49"} -2023-12-16T14:32:45.250Z INFO initializing dbft {"height": 8621, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:45.250Z debug frostfs-node/morph.go:229 new block {"index": 8620} -2023-12-16T14:32:45.615Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8620, "blockHeight": 8620, "took": "6.480771ms"} -2023-12-16T14:32:46.249Z INFO sending PrepareRequest {"height": 8621, "view": 0} -2023-12-16T14:32:46.249Z INFO sending Commit {"height": 8621, "view": 0} -2023-12-16T14:32:46.249Z INFO approving block {"height": 8621, "hash": "e55f1ee904757b2a882fe1babc48c1a6387e36893d977baf55bb5b0a2ff89e15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc8b31f629dd99714bb2f61de20d4c56b911ca091f22c8e631bc0d543ab2185c"} -2023-12-16T14:32:46.250Z INFO initializing dbft {"height": 8622, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:46.250Z debug frostfs-node/morph.go:229 new block {"index": 8621} -2023-12-16T14:32:46.614Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8621, "blockHeight": 8621, "took": "4.732ms"} -2023-12-16T14:32:47.250Z INFO sending PrepareRequest {"height": 8622, "view": 0} -2023-12-16T14:32:47.250Z INFO sending Commit {"height": 8622, "view": 0} -2023-12-16T14:32:47.251Z INFO approving block {"height": 8622, "hash": "d4668564ee52ce67fab5bc48a0192cc4ab4feb62d4f819b51619e3cd9dffbf45", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e55f1ee904757b2a882fe1babc48c1a6387e36893d977baf55bb5b0a2ff89e15"} -2023-12-16T14:32:47.252Z INFO initializing dbft {"height": 8623, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:47.252Z debug frostfs-node/morph.go:229 new block {"index": 8622} -2023-12-16T14:32:47.618Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8622, "blockHeight": 8622, "took": "7.820065ms"} -2023-12-16T14:32:48.251Z INFO sending PrepareRequest {"height": 8623, "view": 0} -2023-12-16T14:32:48.251Z INFO sending Commit {"height": 8623, "view": 0} -2023-12-16T14:32:48.251Z INFO approving block {"height": 8623, "hash": "078bda6423200db227622cd5799cfcaa8446a0c2babe5ee5196e0fa6667ca0e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4668564ee52ce67fab5bc48a0192cc4ab4feb62d4f819b51619e3cd9dffbf45"} -2023-12-16T14:32:48.253Z INFO initializing dbft {"height": 8624, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:48.253Z debug frostfs-node/morph.go:229 new block {"index": 8623} -2023-12-16T14:32:48.616Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8623, "blockHeight": 8623, "took": "4.362907ms"} -2023-12-16T14:32:49.253Z INFO sending PrepareRequest {"height": 8624, "view": 0} -2023-12-16T14:32:49.253Z INFO sending Commit {"height": 8624, "view": 0} -2023-12-16T14:32:49.253Z INFO approving block {"height": 8624, "hash": "6f174e33ea3b5d71abe919831895ff733e00f7539d557f0db47066ddb1f89ed5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "078bda6423200db227622cd5799cfcaa8446a0c2babe5ee5196e0fa6667ca0e9"} -2023-12-16T14:32:49.254Z INFO initializing dbft {"height": 8625, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:49.255Z debug frostfs-node/morph.go:229 new block {"index": 8624} -2023-12-16T14:32:49.616Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8624, "blockHeight": 8624, "took": "4.277753ms"} -2023-12-16T14:32:50.255Z INFO sending PrepareRequest {"height": 8625, "view": 0} -2023-12-16T14:32:50.255Z INFO sending Commit {"height": 8625, "view": 0} -2023-12-16T14:32:50.255Z INFO approving block {"height": 8625, "hash": "7a77758a10338906fc29ac9b2e1a440e3a54c9daaed62c0d30375123175e9546", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f174e33ea3b5d71abe919831895ff733e00f7539d557f0db47066ddb1f89ed5"} -2023-12-16T14:32:50.256Z INFO initializing dbft {"height": 8626, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:50.256Z debug frostfs-node/morph.go:229 new block {"index": 8625} -2023-12-16T14:32:50.617Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8625, "blockHeight": 8625, "took": "3.971425ms"} -2023-12-16T14:32:51.257Z INFO sending PrepareRequest {"height": 8626, "view": 0} -2023-12-16T14:32:51.257Z INFO sending Commit {"height": 8626, "view": 0} -2023-12-16T14:32:51.257Z INFO approving block {"height": 8626, "hash": "b498c18d5317844d76496838ddbbb29b155c5eac2c8f4a60f1921dec924f77d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a77758a10338906fc29ac9b2e1a440e3a54c9daaed62c0d30375123175e9546"} -2023-12-16T14:32:51.258Z INFO initializing dbft {"height": 8627, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:51.259Z debug frostfs-node/morph.go:229 new block {"index": 8626} -2023-12-16T14:32:51.618Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8626, "blockHeight": 8626, "took": "4.044558ms"} -2023-12-16T14:32:52.258Z INFO sending PrepareRequest {"height": 8627, "view": 0} -2023-12-16T14:32:52.258Z INFO sending Commit {"height": 8627, "view": 0} -2023-12-16T14:32:52.258Z INFO approving block {"height": 8627, "hash": "17a5c1b965000b1a93ec8afff87043eccf70ede27c6436e5cfa1adcdc3f97403", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b498c18d5317844d76496838ddbbb29b155c5eac2c8f4a60f1921dec924f77d6"} -2023-12-16T14:32:52.259Z INFO initializing dbft {"height": 8628, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:52.260Z debug frostfs-node/morph.go:229 new block {"index": 8627} -2023-12-16T14:32:52.621Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8627, "blockHeight": 8627, "took": "5.445339ms"} -2023-12-16T14:32:53.259Z INFO sending PrepareRequest {"height": 8628, "view": 0} -2023-12-16T14:32:53.259Z INFO sending Commit {"height": 8628, "view": 0} -2023-12-16T14:32:53.259Z INFO approving block {"height": 8628, "hash": "bfca3e867049e2134b378796f7b81bc6d2a3e4a47865b7625888c2063c471a68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17a5c1b965000b1a93ec8afff87043eccf70ede27c6436e5cfa1adcdc3f97403"} -2023-12-16T14:32:53.260Z INFO initializing dbft {"height": 8629, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:53.261Z debug frostfs-node/morph.go:229 new block {"index": 8628} -2023-12-16T14:32:53.621Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8628, "blockHeight": 8628, "took": "4.753148ms"} -2023-12-16T14:32:54.260Z INFO sending PrepareRequest {"height": 8629, "view": 0} -2023-12-16T14:32:54.262Z INFO sending Commit {"height": 8629, "view": 0} -2023-12-16T14:32:54.262Z INFO approving block {"height": 8629, "hash": "90d5cdc2eca0ec4090393cc605b4330fec1c3fda1da34ded50194cc897790d71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfca3e867049e2134b378796f7b81bc6d2a3e4a47865b7625888c2063c471a68"} -2023-12-16T14:32:54.264Z INFO initializing dbft {"height": 8630, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:54.264Z debug frostfs-node/morph.go:229 new block {"index": 8629} -2023-12-16T14:32:54.620Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8629, "blockHeight": 8629, "took": "4.12403ms"} -2023-12-16T14:32:55.263Z INFO sending PrepareRequest {"height": 8630, "view": 0} -2023-12-16T14:32:55.263Z INFO sending Commit {"height": 8630, "view": 0} -2023-12-16T14:32:55.263Z INFO approving block {"height": 8630, "hash": "1d20311b27966411a3ddbde8289b8bed9e1c4d47b00f4a820390c8ff61627dfc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90d5cdc2eca0ec4090393cc605b4330fec1c3fda1da34ded50194cc897790d71"} -2023-12-16T14:32:55.264Z INFO initializing dbft {"height": 8631, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:55.265Z debug frostfs-node/morph.go:229 new block {"index": 8630} -2023-12-16T14:32:55.621Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8630, "blockHeight": 8630, "took": "3.75528ms"} -2023-12-16T14:32:56.264Z INFO sending PrepareRequest {"height": 8631, "view": 0} -2023-12-16T14:32:56.264Z INFO sending Commit {"height": 8631, "view": 0} -2023-12-16T14:32:56.265Z INFO approving block {"height": 8631, "hash": "79b53b59a4ea5e016f6caec7bb9205ffd19892ab695d4a9b674eb161629bbe69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d20311b27966411a3ddbde8289b8bed9e1c4d47b00f4a820390c8ff61627dfc"} -2023-12-16T14:32:56.265Z INFO initializing dbft {"height": 8632, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:56.266Z debug frostfs-node/morph.go:229 new block {"index": 8631} -2023-12-16T14:32:56.622Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8631, "blockHeight": 8631, "took": "4.167392ms"} -2023-12-16T14:32:57.265Z INFO sending PrepareRequest {"height": 8632, "view": 0} -2023-12-16T14:32:57.266Z INFO sending Commit {"height": 8632, "view": 0} -2023-12-16T14:32:57.266Z INFO approving block {"height": 8632, "hash": "5115e108c3506419b155c774296b0f019202b27ed17903b1365c849c0a177982", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79b53b59a4ea5e016f6caec7bb9205ffd19892ab695d4a9b674eb161629bbe69"} -2023-12-16T14:32:57.267Z INFO initializing dbft {"height": 8633, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:57.267Z debug frostfs-node/morph.go:229 new block {"index": 8632} -2023-12-16T14:32:57.624Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8632, "blockHeight": 8632, "took": "6.41028ms"} -2023-12-16T14:32:58.267Z INFO sending PrepareRequest {"height": 8633, "view": 0} -2023-12-16T14:32:58.267Z INFO sending Commit {"height": 8633, "view": 0} -2023-12-16T14:32:58.268Z INFO approving block {"height": 8633, "hash": "28667e413b424c4c2a8dc49526837e1b8b74b76aaa9afd446624f370b9bb73c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5115e108c3506419b155c774296b0f019202b27ed17903b1365c849c0a177982"} -2023-12-16T14:32:58.269Z INFO initializing dbft {"height": 8634, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:58.270Z debug frostfs-node/morph.go:229 new block {"index": 8633} -2023-12-16T14:32:58.624Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8633, "blockHeight": 8633, "took": "5.719557ms"} -2023-12-16T14:32:59.268Z INFO sending PrepareRequest {"height": 8634, "view": 0} -2023-12-16T14:32:59.268Z INFO sending Commit {"height": 8634, "view": 0} -2023-12-16T14:32:59.269Z INFO approving block {"height": 8634, "hash": "70e80f41dfe0d3479c962ccdc054803e5bf7df2afd52913e26c57380894c7df5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28667e413b424c4c2a8dc49526837e1b8b74b76aaa9afd446624f370b9bb73c2"} -2023-12-16T14:32:59.269Z INFO initializing dbft {"height": 8635, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:32:59.270Z debug frostfs-node/morph.go:229 new block {"index": 8634} -2023-12-16T14:32:59.626Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8634, "blockHeight": 8634, "took": "7.4108ms"} -2023-12-16T14:33:00.269Z INFO sending PrepareRequest {"height": 8635, "view": 0} -2023-12-16T14:33:00.269Z INFO sending Commit {"height": 8635, "view": 0} -2023-12-16T14:33:00.269Z INFO approving block {"height": 8635, "hash": "68bce3d709ef5adf344184edb7689d2ab6bdae4ab455672296e38b6b38f1334d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70e80f41dfe0d3479c962ccdc054803e5bf7df2afd52913e26c57380894c7df5"} -2023-12-16T14:33:00.270Z INFO initializing dbft {"height": 8636, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:00.271Z debug frostfs-node/morph.go:229 new block {"index": 8635} -2023-12-16T14:33:00.627Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8635, "blockHeight": 8635, "took": "7.946931ms"} -2023-12-16T14:33:01.271Z INFO sending PrepareRequest {"height": 8636, "view": 0} -2023-12-16T14:33:01.271Z INFO sending Commit {"height": 8636, "view": 0} -2023-12-16T14:33:01.271Z INFO approving block {"height": 8636, "hash": "c4f495988b4a4982dada9e5d421e6f46b961c999db1a96dbe6eaf6fe2f782cea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68bce3d709ef5adf344184edb7689d2ab6bdae4ab455672296e38b6b38f1334d"} -2023-12-16T14:33:01.272Z INFO initializing dbft {"height": 8637, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:01.273Z debug frostfs-node/morph.go:229 new block {"index": 8636} -2023-12-16T14:33:01.624Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8636, "blockHeight": 8636, "took": "3.399295ms"} -2023-12-16T14:33:02.273Z INFO sending PrepareRequest {"height": 8637, "view": 0} -2023-12-16T14:33:02.273Z INFO sending Commit {"height": 8637, "view": 0} -2023-12-16T14:33:02.273Z INFO approving block {"height": 8637, "hash": "32ce8d77038fbf24344efd65d5855c8b34d55fe02d49e293fefbc99ee423d8f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4f495988b4a4982dada9e5d421e6f46b961c999db1a96dbe6eaf6fe2f782cea"} -2023-12-16T14:33:02.274Z INFO initializing dbft {"height": 8638, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:02.274Z debug frostfs-node/morph.go:229 new block {"index": 8637} -2023-12-16T14:33:02.625Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8637, "blockHeight": 8637, "took": "4.722208ms"} -2023-12-16T14:33:03.274Z INFO sending PrepareRequest {"height": 8638, "view": 0} -2023-12-16T14:33:03.275Z INFO sending Commit {"height": 8638, "view": 0} -2023-12-16T14:33:03.275Z INFO approving block {"height": 8638, "hash": "7469ac17953b57b1b55e887cc90a012a7dee5e0813eafe9248a177491a1ef139", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32ce8d77038fbf24344efd65d5855c8b34d55fe02d49e293fefbc99ee423d8f9"} -2023-12-16T14:33:03.277Z INFO initializing dbft {"height": 8639, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:03.277Z debug frostfs-node/morph.go:229 new block {"index": 8638} -2023-12-16T14:33:03.628Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8638, "blockHeight": 8638, "took": "6.458279ms"} -2023-12-16T14:33:04.276Z INFO sending PrepareRequest {"height": 8639, "view": 0} -2023-12-16T14:33:04.277Z INFO sending Commit {"height": 8639, "view": 0} -2023-12-16T14:33:04.277Z INFO approving block {"height": 8639, "hash": "cd52ef3ef36f803d0c3928e632647e92c49337749af0f09b3c1f1ec0392ec00b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7469ac17953b57b1b55e887cc90a012a7dee5e0813eafe9248a177491a1ef139"} -2023-12-16T14:33:04.278Z INFO initializing dbft {"height": 8640, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:04.279Z debug frostfs-node/morph.go:229 new block {"index": 8639} -2023-12-16T14:33:04.627Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8639, "blockHeight": 8639, "took": "4.434269ms"} -2023-12-16T14:33:05.278Z INFO sending PrepareRequest {"height": 8640, "view": 0} -2023-12-16T14:33:05.278Z INFO sending Commit {"height": 8640, "view": 0} -2023-12-16T14:33:05.279Z INFO approving block {"height": 8640, "hash": "9c6d979d920a14d9b87b60375f63c81641663bec0671b1a85ae024c26d4e35d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd52ef3ef36f803d0c3928e632647e92c49337749af0f09b3c1f1ec0392ec00b"} -2023-12-16T14:33:05.281Z INFO initializing dbft {"height": 8641, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:05.282Z debug frostfs-node/morph.go:229 new block {"index": 8640} -2023-12-16T14:33:05.631Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8640, "blockHeight": 8640, "took": "8.172648ms"} -2023-12-16T14:33:06.279Z INFO sending PrepareRequest {"height": 8641, "view": 0} -2023-12-16T14:33:06.279Z INFO sending Commit {"height": 8641, "view": 0} -2023-12-16T14:33:06.280Z INFO approving block {"height": 8641, "hash": "e179f457bbc5c671dfafc6fc8316eac0711a417803afe59b8886e69ca5d9dc24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c6d979d920a14d9b87b60375f63c81641663bec0671b1a85ae024c26d4e35d7"} -2023-12-16T14:33:06.281Z INFO initializing dbft {"height": 8642, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:06.281Z debug frostfs-node/morph.go:229 new block {"index": 8641} -2023-12-16T14:33:06.629Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8641, "blockHeight": 8641, "took": "5.291024ms"} -2023-12-16T14:33:07.280Z INFO sending PrepareRequest {"height": 8642, "view": 0} -2023-12-16T14:33:07.281Z INFO sending Commit {"height": 8642, "view": 0} -2023-12-16T14:33:07.281Z INFO approving block {"height": 8642, "hash": "4b1e8e3b08204b319d0b951d8158e7238bbce63787eb54c6dfd64b3b2aecd771", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e179f457bbc5c671dfafc6fc8316eac0711a417803afe59b8886e69ca5d9dc24"} -2023-12-16T14:33:07.283Z INFO initializing dbft {"height": 8643, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:07.283Z debug frostfs-node/morph.go:229 new block {"index": 8642} -2023-12-16T14:33:07.629Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8642, "blockHeight": 8642, "took": "4.598543ms"} -2023-12-16T14:33:08.282Z INFO sending PrepareRequest {"height": 8643, "view": 0} -2023-12-16T14:33:08.282Z INFO sending Commit {"height": 8643, "view": 0} -2023-12-16T14:33:08.282Z INFO approving block {"height": 8643, "hash": "5ad51959e0303f2c5c797142b76be60464be06ee90ff9605caff773ea399ebce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b1e8e3b08204b319d0b951d8158e7238bbce63787eb54c6dfd64b3b2aecd771"} -2023-12-16T14:33:08.283Z INFO initializing dbft {"height": 8644, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:08.283Z debug frostfs-node/morph.go:229 new block {"index": 8643} -2023-12-16T14:33:08.634Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8643, "blockHeight": 8643, "took": "9.487263ms"} -2023-12-16T14:33:09.282Z INFO sending PrepareRequest {"height": 8644, "view": 0} -2023-12-16T14:33:09.283Z INFO sending Commit {"height": 8644, "view": 0} -2023-12-16T14:33:09.283Z INFO approving block {"height": 8644, "hash": "8e2fb4619358d2c965838504774f769525e2efd4cab53d6e7b104a4fd452ac78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ad51959e0303f2c5c797142b76be60464be06ee90ff9605caff773ea399ebce"} -2023-12-16T14:33:09.285Z INFO initializing dbft {"height": 8645, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:09.286Z debug frostfs-node/morph.go:229 new block {"index": 8644} -2023-12-16T14:33:09.631Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8644, "blockHeight": 8644, "took": "6.236221ms"} -2023-12-16T14:33:10.283Z INFO sending PrepareRequest {"height": 8645, "view": 0} -2023-12-16T14:33:10.284Z INFO sending Commit {"height": 8645, "view": 0} -2023-12-16T14:33:10.284Z INFO approving block {"height": 8645, "hash": "4e8ac01863553c9c01d16bf3db36056d240915750ae65d0815a7bdc1b555c9bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e2fb4619358d2c965838504774f769525e2efd4cab53d6e7b104a4fd452ac78"} -2023-12-16T14:33:10.286Z INFO initializing dbft {"height": 8646, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:10.286Z debug frostfs-node/morph.go:229 new block {"index": 8645} -2023-12-16T14:33:10.631Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8645, "blockHeight": 8645, "took": "5.304521ms"} -2023-12-16T14:33:11.285Z INFO sending PrepareRequest {"height": 8646, "view": 0} -2023-12-16T14:33:11.285Z INFO sending Commit {"height": 8646, "view": 0} -2023-12-16T14:33:11.285Z INFO approving block {"height": 8646, "hash": "d18b9f0d5e5a83e8f51e132074440963540f66d64fdb4e5adec862abec011683", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e8ac01863553c9c01d16bf3db36056d240915750ae65d0815a7bdc1b555c9bb"} -2023-12-16T14:33:11.287Z INFO initializing dbft {"height": 8647, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:11.287Z debug frostfs-node/morph.go:229 new block {"index": 8646} -2023-12-16T14:33:11.633Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8646, "blockHeight": 8646, "took": "6.911289ms"} -2023-12-16T14:33:12.287Z INFO sending PrepareRequest {"height": 8647, "view": 0} -2023-12-16T14:33:12.287Z INFO sending Commit {"height": 8647, "view": 0} -2023-12-16T14:33:12.287Z INFO approving block {"height": 8647, "hash": "87c2575706fe0b1b5b1981144ccbe3b81baec06da30121fa0ad02da38b27963d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d18b9f0d5e5a83e8f51e132074440963540f66d64fdb4e5adec862abec011683"} -2023-12-16T14:33:12.288Z INFO initializing dbft {"height": 8648, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:12.289Z debug frostfs-node/morph.go:229 new block {"index": 8647} -2023-12-16T14:33:12.630Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8647, "blockHeight": 8647, "took": "4.048718ms"} -2023-12-16T14:33:13.288Z INFO sending PrepareRequest {"height": 8648, "view": 0} -2023-12-16T14:33:13.288Z INFO sending Commit {"height": 8648, "view": 0} -2023-12-16T14:33:13.289Z INFO approving block {"height": 8648, "hash": "fec69b078c73a5f9b9dbb3b7d6c2f42ed8210311029ecc704e326d270e9c60d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87c2575706fe0b1b5b1981144ccbe3b81baec06da30121fa0ad02da38b27963d"} -2023-12-16T14:33:13.290Z INFO initializing dbft {"height": 8649, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:13.291Z debug frostfs-node/morph.go:229 new block {"index": 8648} -2023-12-16T14:33:13.635Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8648, "blockHeight": 8648, "took": "8.166009ms"} -2023-12-16T14:33:14.289Z INFO sending PrepareRequest {"height": 8649, "view": 0} -2023-12-16T14:33:14.290Z INFO sending Commit {"height": 8649, "view": 0} -2023-12-16T14:33:14.290Z INFO approving block {"height": 8649, "hash": "653f0bb3dd11a7a5bc81be60a1f97b277fb0200713834030e62b75368b337459", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fec69b078c73a5f9b9dbb3b7d6c2f42ed8210311029ecc704e326d270e9c60d8"} -2023-12-16T14:33:14.292Z INFO initializing dbft {"height": 8650, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:14.292Z debug frostfs-node/morph.go:229 new block {"index": 8649} -2023-12-16T14:33:14.634Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8649, "blockHeight": 8649, "took": "6.900349ms"} -2023-12-16T14:33:15.291Z INFO sending PrepareRequest {"height": 8650, "view": 0} -2023-12-16T14:33:15.291Z INFO sending Commit {"height": 8650, "view": 0} -2023-12-16T14:33:15.291Z INFO approving block {"height": 8650, "hash": "50a3763f1fa92ee5c1e6a0a8cdfb076aa5701d2de9efe2d6fb3f7f832afc5beb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "653f0bb3dd11a7a5bc81be60a1f97b277fb0200713834030e62b75368b337459"} -2023-12-16T14:33:15.292Z INFO initializing dbft {"height": 8651, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:15.293Z debug frostfs-node/morph.go:229 new block {"index": 8650} -2023-12-16T14:33:15.296Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:33:15.299Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:33:15.300Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:33:15.632Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8650, "blockHeight": 8650, "took": "3.836281ms"} -2023-12-16T14:33:16.292Z INFO sending PrepareRequest {"height": 8651, "view": 0} -2023-12-16T14:33:16.292Z INFO sending Commit {"height": 8651, "view": 0} -2023-12-16T14:33:16.293Z INFO approving block {"height": 8651, "hash": "7305b95a9e6fa750d0d7a96d9de2bee9bdf1cb4866f8eb45d1fe7a7abb3f2ef5", "tx_count": 2, "merkle": "03a19112662b87b6d8b65b2fea7d16dee09f8fe982f6726092689b2db9a1b12e", "prev": "50a3763f1fa92ee5c1e6a0a8cdfb076aa5701d2de9efe2d6fb3f7f832afc5beb"} -2023-12-16T14:33:16.294Z INFO runtime log {"tx": "00a27e886c9b12183b4fecfd8cfaa4d417518d3a06a53d4a456db69ba61c45d2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:33:16.294Z INFO runtime log {"tx": "00a27e886c9b12183b4fecfd8cfaa4d417518d3a06a53d4a456db69ba61c45d2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:33:16.295Z INFO initializing dbft {"height": 8652, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:16.296Z debug frostfs-node/morph.go:229 new block {"index": 8651} -2023-12-16T14:33:16.636Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8651, "blockHeight": 8651, "took": "8.012882ms"} -2023-12-16T14:33:17.294Z INFO sending PrepareRequest {"height": 8652, "view": 0} -2023-12-16T14:33:17.294Z INFO sending Commit {"height": 8652, "view": 0} -2023-12-16T14:33:17.294Z INFO approving block {"height": 8652, "hash": "1b224702905cb10d8604aa176efe2f5d7ec5905ee1c12de9a4d127eac8abc35b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7305b95a9e6fa750d0d7a96d9de2bee9bdf1cb4866f8eb45d1fe7a7abb3f2ef5"} -2023-12-16T14:33:17.295Z INFO initializing dbft {"height": 8653, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:17.295Z debug frostfs-node/morph.go:229 new block {"index": 8652} -2023-12-16T14:33:17.633Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8652, "blockHeight": 8652, "took": "4.535122ms"} -2023-12-16T14:33:18.295Z INFO sending PrepareRequest {"height": 8653, "view": 0} -2023-12-16T14:33:18.295Z INFO sending Commit {"height": 8653, "view": 0} -2023-12-16T14:33:18.296Z INFO approving block {"height": 8653, "hash": "0d915f9d4682830ce7c2e4fda660ba692b5fecd89ac1264a2248b1181dfa558f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b224702905cb10d8604aa176efe2f5d7ec5905ee1c12de9a4d127eac8abc35b"} -2023-12-16T14:33:18.297Z INFO initializing dbft {"height": 8654, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:18.297Z debug frostfs-node/morph.go:229 new block {"index": 8653} -2023-12-16T14:33:18.632Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8653, "blockHeight": 8653, "took": "3.285396ms"} -2023-12-16T14:33:19.297Z INFO sending PrepareRequest {"height": 8654, "view": 0} -2023-12-16T14:33:19.297Z INFO sending Commit {"height": 8654, "view": 0} -2023-12-16T14:33:19.297Z INFO approving block {"height": 8654, "hash": "4267cbb3c4d4043f2536af6b7d4bd60db5aefc2fe112eb67367f0d61ad4ea136", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d915f9d4682830ce7c2e4fda660ba692b5fecd89ac1264a2248b1181dfa558f"} -2023-12-16T14:33:19.299Z INFO initializing dbft {"height": 8655, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:19.300Z debug frostfs-node/morph.go:229 new block {"index": 8654} -2023-12-16T14:33:19.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8654, "blockHeight": 8654, "took": "6.051326ms"} -2023-12-16T14:33:20.299Z INFO sending PrepareRequest {"height": 8655, "view": 0} -2023-12-16T14:33:20.299Z INFO sending Commit {"height": 8655, "view": 0} -2023-12-16T14:33:20.300Z INFO approving block {"height": 8655, "hash": "43923eb70b3239714a5d0f6d9d2cbff3c25d4ed6f7a6527168d239eb3b76d97b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4267cbb3c4d4043f2536af6b7d4bd60db5aefc2fe112eb67367f0d61ad4ea136"} -2023-12-16T14:33:20.301Z INFO initializing dbft {"height": 8656, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:20.301Z debug frostfs-node/morph.go:229 new block {"index": 8655} -2023-12-16T14:33:20.636Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8655, "blockHeight": 8655, "took": "4.548893ms"} -2023-12-16T14:33:21.300Z INFO sending PrepareRequest {"height": 8656, "view": 0} -2023-12-16T14:33:21.300Z INFO sending Commit {"height": 8656, "view": 0} -2023-12-16T14:33:21.301Z INFO approving block {"height": 8656, "hash": "fdc1656e376261f79b230058c519420f4eea21c43e49d7738b22a628983e7e2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43923eb70b3239714a5d0f6d9d2cbff3c25d4ed6f7a6527168d239eb3b76d97b"} -2023-12-16T14:33:21.301Z INFO initializing dbft {"height": 8657, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:21.302Z debug frostfs-node/morph.go:229 new block {"index": 8656} -2023-12-16T14:33:21.637Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8656, "blockHeight": 8656, "took": "5.575317ms"} -2023-12-16T14:33:22.301Z INFO sending PrepareRequest {"height": 8657, "view": 0} -2023-12-16T14:33:22.302Z INFO sending Commit {"height": 8657, "view": 0} -2023-12-16T14:33:22.302Z INFO approving block {"height": 8657, "hash": "f93e1f5ac9d593573794cda4abe116854be32c7c853303c9ec1e2d4396a8c332", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdc1656e376261f79b230058c519420f4eea21c43e49d7738b22a628983e7e2f"} -2023-12-16T14:33:22.302Z INFO initializing dbft {"height": 8658, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:22.303Z debug frostfs-node/morph.go:229 new block {"index": 8657} -2023-12-16T14:33:22.637Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8657, "blockHeight": 8657, "took": "4.394839ms"} -2023-12-16T14:33:23.303Z INFO sending PrepareRequest {"height": 8658, "view": 0} -2023-12-16T14:33:23.303Z INFO sending Commit {"height": 8658, "view": 0} -2023-12-16T14:33:23.303Z INFO approving block {"height": 8658, "hash": "587f533923daf9b59d9bda6b25f117f2119971577dc2c6feae76ab342be6bb22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f93e1f5ac9d593573794cda4abe116854be32c7c853303c9ec1e2d4396a8c332"} -2023-12-16T14:33:23.305Z INFO initializing dbft {"height": 8659, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:23.305Z debug frostfs-node/morph.go:229 new block {"index": 8658} -2023-12-16T14:33:23.637Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8658, "blockHeight": 8658, "took": "3.43432ms"} -2023-12-16T14:33:24.304Z INFO sending PrepareRequest {"height": 8659, "view": 0} -2023-12-16T14:33:24.304Z INFO sending Commit {"height": 8659, "view": 0} -2023-12-16T14:33:24.304Z INFO approving block {"height": 8659, "hash": "7e6c55d818498baa0995347e2c0f79c1b49d2eb4aecd3b81e0038bff9e6570dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "587f533923daf9b59d9bda6b25f117f2119971577dc2c6feae76ab342be6bb22"} -2023-12-16T14:33:24.305Z INFO initializing dbft {"height": 8660, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:24.306Z debug frostfs-node/morph.go:229 new block {"index": 8659} -2023-12-16T14:33:24.639Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8659, "blockHeight": 8659, "took": "4.182041ms"} -2023-12-16T14:33:25.305Z INFO sending PrepareRequest {"height": 8660, "view": 0} -2023-12-16T14:33:25.305Z INFO sending Commit {"height": 8660, "view": 0} -2023-12-16T14:33:25.306Z INFO approving block {"height": 8660, "hash": "e7e700096867d51279882389cbe723e4fb982162aef9015fb7ee8a979017f02e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e6c55d818498baa0995347e2c0f79c1b49d2eb4aecd3b81e0038bff9e6570dc"} -2023-12-16T14:33:25.307Z INFO initializing dbft {"height": 8661, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:25.308Z debug frostfs-node/morph.go:229 new block {"index": 8660} -2023-12-16T14:33:25.639Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8660, "blockHeight": 8660, "took": "3.680592ms"} -2023-12-16T14:33:26.307Z INFO sending PrepareRequest {"height": 8661, "view": 0} -2023-12-16T14:33:26.307Z INFO sending Commit {"height": 8661, "view": 0} -2023-12-16T14:33:26.307Z INFO approving block {"height": 8661, "hash": "30a2b11a4fea6c56ecb17f0a5e81affd65dd0d0e5ab06d7ae23d452af25111be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7e700096867d51279882389cbe723e4fb982162aef9015fb7ee8a979017f02e"} -2023-12-16T14:33:26.309Z INFO initializing dbft {"height": 8662, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:26.309Z debug frostfs-node/morph.go:229 new block {"index": 8661} -2023-12-16T14:33:26.640Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8661, "blockHeight": 8661, "took": "4.49797ms"} -2023-12-16T14:33:27.308Z INFO sending PrepareRequest {"height": 8662, "view": 0} -2023-12-16T14:33:27.308Z INFO sending Commit {"height": 8662, "view": 0} -2023-12-16T14:33:27.308Z INFO approving block {"height": 8662, "hash": "1e84ec4a2b8cc171d648d62be995d7579908dc53703253f9a99cbf4a200c1c9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30a2b11a4fea6c56ecb17f0a5e81affd65dd0d0e5ab06d7ae23d452af25111be"} -2023-12-16T14:33:27.309Z INFO initializing dbft {"height": 8663, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:27.310Z debug frostfs-node/morph.go:229 new block {"index": 8662} -2023-12-16T14:33:27.640Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8662, "blockHeight": 8662, "took": "3.375298ms"} -2023-12-16T14:33:28.309Z INFO sending PrepareRequest {"height": 8663, "view": 0} -2023-12-16T14:33:28.309Z INFO sending Commit {"height": 8663, "view": 0} -2023-12-16T14:33:28.310Z INFO approving block {"height": 8663, "hash": "31243dd9c604e49f0b80968fcddb9e0260ed0b169184ba9a2dd25f139c30027b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e84ec4a2b8cc171d648d62be995d7579908dc53703253f9a99cbf4a200c1c9f"} -2023-12-16T14:33:28.310Z INFO initializing dbft {"height": 8664, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:28.311Z debug frostfs-node/morph.go:229 new block {"index": 8663} -2023-12-16T14:33:28.641Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8663, "blockHeight": 8663, "took": "4.396327ms"} -2023-12-16T14:33:29.311Z INFO sending PrepareRequest {"height": 8664, "view": 0} -2023-12-16T14:33:29.311Z INFO sending Commit {"height": 8664, "view": 0} -2023-12-16T14:33:29.311Z INFO approving block {"height": 8664, "hash": "345c9fd3618edaf5f316923556982804f028bd5e019c67532c7f7abd9d27e258", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31243dd9c604e49f0b80968fcddb9e0260ed0b169184ba9a2dd25f139c30027b"} -2023-12-16T14:33:29.313Z INFO initializing dbft {"height": 8665, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:29.313Z debug frostfs-node/morph.go:229 new block {"index": 8664} -2023-12-16T14:33:29.641Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8664, "blockHeight": 8664, "took": "4.461242ms"} -2023-12-16T14:33:30.312Z INFO sending PrepareRequest {"height": 8665, "view": 0} -2023-12-16T14:33:30.312Z INFO sending Commit {"height": 8665, "view": 0} -2023-12-16T14:33:30.312Z INFO approving block {"height": 8665, "hash": "6a8a6a8c89ac5d6ca6f17e7b3370e1456ce42d8e7f3b03b24f0ab74ce3eb4051", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "345c9fd3618edaf5f316923556982804f028bd5e019c67532c7f7abd9d27e258"} -2023-12-16T14:33:30.313Z INFO initializing dbft {"height": 8666, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:30.313Z debug frostfs-node/morph.go:229 new block {"index": 8665} -2023-12-16T14:33:30.641Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8665, "blockHeight": 8665, "took": "3.757076ms"} -2023-12-16T14:33:31.313Z INFO sending PrepareRequest {"height": 8666, "view": 0} -2023-12-16T14:33:31.314Z INFO sending Commit {"height": 8666, "view": 0} -2023-12-16T14:33:31.314Z INFO approving block {"height": 8666, "hash": "3bc9d2798ae4b6ea0c8b9916c031d26bc60708c946a5cdc511fb63b9acd92c7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a8a6a8c89ac5d6ca6f17e7b3370e1456ce42d8e7f3b03b24f0ab74ce3eb4051"} -2023-12-16T14:33:31.314Z INFO initializing dbft {"height": 8667, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:31.315Z debug frostfs-node/morph.go:229 new block {"index": 8666} -2023-12-16T14:33:31.642Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8666, "blockHeight": 8666, "took": "4.426988ms"} -2023-12-16T14:33:32.315Z INFO sending PrepareRequest {"height": 8667, "view": 0} -2023-12-16T14:33:32.315Z INFO sending Commit {"height": 8667, "view": 0} -2023-12-16T14:33:32.316Z INFO approving block {"height": 8667, "hash": "42c03fcd690bd5adfca7b5ee557674cbcab27e8be5c75331b58c8950bd8c5369", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bc9d2798ae4b6ea0c8b9916c031d26bc60708c946a5cdc511fb63b9acd92c7d"} -2023-12-16T14:33:32.317Z INFO initializing dbft {"height": 8668, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:32.317Z debug frostfs-node/morph.go:229 new block {"index": 8667} -2023-12-16T14:33:32.642Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8667, "blockHeight": 8667, "took": "3.75628ms"} -2023-12-16T14:33:33.317Z INFO sending PrepareRequest {"height": 8668, "view": 0} -2023-12-16T14:33:33.317Z INFO sending Commit {"height": 8668, "view": 0} -2023-12-16T14:33:33.318Z INFO approving block {"height": 8668, "hash": "faa6dbc452df8a7db848a674ec7bd73daa071bd4c6a56bedfed6d1fce26b414f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42c03fcd690bd5adfca7b5ee557674cbcab27e8be5c75331b58c8950bd8c5369"} -2023-12-16T14:33:33.318Z INFO initializing dbft {"height": 8669, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:33.319Z debug frostfs-node/morph.go:229 new block {"index": 8668} -2023-12-16T14:33:33.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8668, "blockHeight": 8668, "took": "5.541115ms"} -2023-12-16T14:33:34.319Z INFO sending PrepareRequest {"height": 8669, "view": 0} -2023-12-16T14:33:34.319Z INFO sending Commit {"height": 8669, "view": 0} -2023-12-16T14:33:34.319Z INFO approving block {"height": 8669, "hash": "9580c70a49aa7b574bfd6d53aae5d786df0ba93580d216ddd4d52cceff9d7890", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "faa6dbc452df8a7db848a674ec7bd73daa071bd4c6a56bedfed6d1fce26b414f"} -2023-12-16T14:33:34.320Z INFO initializing dbft {"height": 8670, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:34.320Z debug frostfs-node/morph.go:229 new block {"index": 8669} -2023-12-16T14:33:34.643Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8669, "blockHeight": 8669, "took": "4.023858ms"} -2023-12-16T14:33:35.320Z INFO sending PrepareRequest {"height": 8670, "view": 0} -2023-12-16T14:33:35.320Z INFO sending Commit {"height": 8670, "view": 0} -2023-12-16T14:33:35.321Z INFO approving block {"height": 8670, "hash": "35236931e44c2afad52d634fb3082170fa908119d516053145f50f718e5c03b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9580c70a49aa7b574bfd6d53aae5d786df0ba93580d216ddd4d52cceff9d7890"} -2023-12-16T14:33:35.321Z INFO initializing dbft {"height": 8671, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:35.322Z debug frostfs-node/morph.go:229 new block {"index": 8670} -2023-12-16T14:33:35.643Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8670, "blockHeight": 8670, "took": "3.636066ms"} -2023-12-16T14:33:36.322Z INFO sending PrepareRequest {"height": 8671, "view": 0} -2023-12-16T14:33:36.322Z INFO sending Commit {"height": 8671, "view": 0} -2023-12-16T14:33:36.323Z INFO approving block {"height": 8671, "hash": "33aef2d96623e64e6491b8d935ee90b7a68aff4793c848dfd11056eecbda820f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35236931e44c2afad52d634fb3082170fa908119d516053145f50f718e5c03b1"} -2023-12-16T14:33:36.324Z INFO initializing dbft {"height": 8672, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:36.324Z debug frostfs-node/morph.go:229 new block {"index": 8671} -2023-12-16T14:33:36.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8671, "blockHeight": 8671, "took": "4.46066ms"} -2023-12-16T14:33:37.323Z INFO sending PrepareRequest {"height": 8672, "view": 0} -2023-12-16T14:33:37.323Z INFO sending Commit {"height": 8672, "view": 0} -2023-12-16T14:33:37.324Z INFO approving block {"height": 8672, "hash": "eab2d441b111b42edd5aa0eb060a8b190b01db0a0985ffb22789b121062c7d58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33aef2d96623e64e6491b8d935ee90b7a68aff4793c848dfd11056eecbda820f"} -2023-12-16T14:33:37.325Z INFO initializing dbft {"height": 8673, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:37.325Z debug frostfs-node/morph.go:229 new block {"index": 8672} -2023-12-16T14:33:37.644Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8672, "blockHeight": 8672, "took": "3.671047ms"} -2023-12-16T14:33:38.325Z INFO sending PrepareRequest {"height": 8673, "view": 0} -2023-12-16T14:33:38.326Z INFO sending Commit {"height": 8673, "view": 0} -2023-12-16T14:33:38.326Z INFO approving block {"height": 8673, "hash": "90aed28ad4dbc43eae846fd9468144a41f241a35ddeec7ad5169ab4cc87e3ef4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eab2d441b111b42edd5aa0eb060a8b190b01db0a0985ffb22789b121062c7d58"} -2023-12-16T14:33:38.328Z INFO initializing dbft {"height": 8674, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:38.328Z debug frostfs-node/morph.go:229 new block {"index": 8673} -2023-12-16T14:33:38.647Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8673, "blockHeight": 8673, "took": "5.685546ms"} -2023-12-16T14:33:39.327Z INFO sending PrepareRequest {"height": 8674, "view": 0} -2023-12-16T14:33:39.327Z INFO sending Commit {"height": 8674, "view": 0} -2023-12-16T14:33:39.327Z INFO approving block {"height": 8674, "hash": "6ecb330598674a26fcef55ba2f04168b45ef7337af5a2c183793f671a1214cd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90aed28ad4dbc43eae846fd9468144a41f241a35ddeec7ad5169ab4cc87e3ef4"} -2023-12-16T14:33:39.328Z INFO initializing dbft {"height": 8675, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:39.329Z debug frostfs-node/morph.go:229 new block {"index": 8674} -2023-12-16T14:33:39.330Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:33:39.332Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 36, "iteration": 3, "error": "no data for 2 iteration in 36 epoch for consumers's trusts"} -2023-12-16T14:33:39.334Z INFO runtime log {"tx": "f1f06557f9ae1af6942f28426326e63a7e39f9cc796f46af0a0f2c4d6dc356ea", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:33:39.646Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8674, "blockHeight": 8674, "took": "4.522037ms"} -2023-12-16T14:33:40.328Z INFO sending PrepareRequest {"height": 8675, "view": 0} -2023-12-16T14:33:40.328Z INFO sending Commit {"height": 8675, "view": 0} -2023-12-16T14:33:40.328Z INFO approving block {"height": 8675, "hash": "c441a663a5b417962a2e7f483a354c045bc8237d0ececb0ccda27a725da53108", "tx_count": 1, "merkle": "a707fb8e07db609d28e550492d1b21e1f3165875f5ae62cf37b9ea77b29e8b55", "prev": "6ecb330598674a26fcef55ba2f04168b45ef7337af5a2c183793f671a1214cd8"} -2023-12-16T14:33:40.329Z INFO runtime log {"tx": "558b9eb277eab937cf62aef5755816f3e1211b2d4950e5289d60db078efb07a7", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:33:40.330Z INFO initializing dbft {"height": 8676, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:40.330Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 38} -2023-12-16T14:33:40.330Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 38} -2023-12-16T14:33:40.331Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:33:40.331Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:33:40.331Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 38} -2023-12-16T14:33:40.331Z debug controller/calls.go:95 starting to report local trust values {"epoch": 37} -2023-12-16T14:33:40.331Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 38} -2023-12-16T14:33:40.331Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 37} -2023-12-16T14:33:40.331Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 38} -2023-12-16T14:33:40.331Z debug frostfs-node/morph.go:229 new block {"index": 8675} -2023-12-16T14:33:40.333Z debug controller/calls.go:146 reporting successfully finished {"epoch": 37} -2023-12-16T14:33:40.333Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 37} -2023-12-16T14:33:40.334Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:33:40.336Z INFO runtime log {"tx": "217b3506d985792e0a556be28b5a5d726a46c3689e12524cb1fed9fc64959f4d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:33:40.338Z info client/notary.go:214 notary deposit invoke {"amount": 8772277432, "expire_at": 4294967295, "vub": 8678, "tx_hash": "a1adaf18117548f627e43b04bb9057687866d0446a7cb2511aac31ee84e8775a"} -2023-12-16T14:33:40.342Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:33:40.342Z info audit/handlers.go:13 new round of audit {"epoch": 38} -2023-12-16T14:33:40.343Z info settlement/calls.go:26 new audit settlement event {"epoch": 38} -2023-12-16T14:33:40.343Z info settlement/handlers.go:14 process audit settlements {"epoch": 38} -2023-12-16T14:33:40.343Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 38} -2023-12-16T14:33:40.344Z info settlement/handlers.go:18 audit processing finished {"epoch": 38} -2023-12-16T14:33:40.344Z info audit/process.go:39 select containers for audit {"epoch": 38, "amount": 0} -2023-12-16T14:33:40.347Z info client/notary.go:214 notary deposit invoke {"amount": 411657711542, "expire_at": 4294967295, "vub": 8678, "tx_hash": "ce55692da94749f4ee5dc95fad8f2bc61a94a9b047fe77bb887b363bb161bbc8"} -2023-12-16T14:33:40.651Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 8675, "blockHeight": 8675, "took": "7.719926ms"} -2023-12-16T14:33:41.329Z INFO sending PrepareRequest {"height": 8676, "view": 0} -2023-12-16T14:33:41.329Z INFO sending Commit {"height": 8676, "view": 0} -2023-12-16T14:33:41.329Z INFO approving block {"height": 8676, "hash": "246a4825584ce0b2a11308011523636ccd947eb1209b2b57be50805cbb8699e2", "tx_count": 3, "merkle": "2aa7def4a15ae4378b19c43a610ae45f8c86d0fd3dc9095bb22ab2be668b0c0e", "prev": "c441a663a5b417962a2e7f483a354c045bc8237d0ececb0ccda27a725da53108"} -2023-12-16T14:33:41.330Z INFO runtime log {"tx": "7416c730d4fd725fd541eda0375879d377ad32338f751a3de2075016ad4ca3da", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:33:41.331Z INFO initializing dbft {"height": 8677, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:41.332Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 37} -2023-12-16T14:33:41.332Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 37} -2023-12-16T14:33:41.332Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 37} -2023-12-16T14:33:41.333Z debug frostfs-node/morph.go:229 new block {"index": 8676} -2023-12-16T14:33:41.654Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 8676, "blockHeight": 8676, "took": "10.757636ms"} -2023-12-16T14:33:42.331Z INFO sending PrepareRequest {"height": 8677, "view": 0} -2023-12-16T14:33:42.331Z INFO sending Commit {"height": 8677, "view": 0} -2023-12-16T14:33:42.331Z INFO approving block {"height": 8677, "hash": "56ff804490228b3cc7df313043c14736be15322645ee480ede248e4ed777df61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "246a4825584ce0b2a11308011523636ccd947eb1209b2b57be50805cbb8699e2"} -2023-12-16T14:33:42.332Z INFO initializing dbft {"height": 8678, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:42.333Z debug frostfs-node/morph.go:229 new block {"index": 8677} -2023-12-16T14:33:42.649Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8677, "blockHeight": 8677, "took": "4.745032ms"} -2023-12-16T14:33:43.332Z INFO sending PrepareRequest {"height": 8678, "view": 0} -2023-12-16T14:33:43.332Z INFO sending Commit {"height": 8678, "view": 0} -2023-12-16T14:33:43.332Z INFO approving block {"height": 8678, "hash": "b7724c7bfb2766cf68a03c4094375dbede887ad2162dc8d7c9897149d1f71577", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56ff804490228b3cc7df313043c14736be15322645ee480ede248e4ed777df61"} -2023-12-16T14:33:43.333Z INFO initializing dbft {"height": 8679, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:43.333Z debug frostfs-node/morph.go:229 new block {"index": 8678} -2023-12-16T14:33:43.650Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8678, "blockHeight": 8678, "took": "4.600974ms"} -2023-12-16T14:33:44.333Z INFO sending PrepareRequest {"height": 8679, "view": 0} -2023-12-16T14:33:44.333Z INFO sending Commit {"height": 8679, "view": 0} -2023-12-16T14:33:44.334Z INFO approving block {"height": 8679, "hash": "d1e03670c519f8e2cc955aa41dfeae556ae59256634eba5a61882ae615afd424", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7724c7bfb2766cf68a03c4094375dbede887ad2162dc8d7c9897149d1f71577"} -2023-12-16T14:33:44.334Z INFO initializing dbft {"height": 8680, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:44.335Z debug frostfs-node/morph.go:229 new block {"index": 8679} -2023-12-16T14:33:44.652Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8679, "blockHeight": 8679, "took": "6.466512ms"} -2023-12-16T14:33:45.335Z INFO sending PrepareRequest {"height": 8680, "view": 0} -2023-12-16T14:33:45.335Z INFO sending Commit {"height": 8680, "view": 0} -2023-12-16T14:33:45.335Z INFO approving block {"height": 8680, "hash": "765de5c1ceeae8e1cb33deaadae6b929f8024170e6d97fdc903cc942d46a8237", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1e03670c519f8e2cc955aa41dfeae556ae59256634eba5a61882ae615afd424"} -2023-12-16T14:33:45.336Z INFO initializing dbft {"height": 8681, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:45.337Z debug frostfs-node/morph.go:229 new block {"index": 8680} -2023-12-16T14:33:45.652Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8680, "blockHeight": 8680, "took": "5.777208ms"} -2023-12-16T14:33:46.337Z INFO sending PrepareRequest {"height": 8681, "view": 0} -2023-12-16T14:33:46.337Z INFO sending Commit {"height": 8681, "view": 0} -2023-12-16T14:33:46.337Z INFO approving block {"height": 8681, "hash": "2b8b426903b231497fc1369753d0bdbb9dedb60d4e3f039c5bb6a501ec2c3195", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "765de5c1ceeae8e1cb33deaadae6b929f8024170e6d97fdc903cc942d46a8237"} -2023-12-16T14:33:46.338Z INFO initializing dbft {"height": 8682, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:46.339Z debug frostfs-node/morph.go:229 new block {"index": 8681} -2023-12-16T14:33:46.651Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8681, "blockHeight": 8681, "took": "4.603965ms"} -2023-12-16T14:33:47.338Z INFO sending PrepareRequest {"height": 8682, "view": 0} -2023-12-16T14:33:47.338Z INFO sending Commit {"height": 8682, "view": 0} -2023-12-16T14:33:47.338Z INFO approving block {"height": 8682, "hash": "4e5973aac45a157dda6c9dec7ebcdba28e7ed69f7c7072ebf1be4c754650e338", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b8b426903b231497fc1369753d0bdbb9dedb60d4e3f039c5bb6a501ec2c3195"} -2023-12-16T14:33:47.339Z INFO initializing dbft {"height": 8683, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:47.339Z debug frostfs-node/morph.go:229 new block {"index": 8682} -2023-12-16T14:33:47.650Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8682, "blockHeight": 8682, "took": "3.341627ms"} -2023-12-16T14:33:48.339Z INFO sending PrepareRequest {"height": 8683, "view": 0} -2023-12-16T14:33:48.339Z INFO sending Commit {"height": 8683, "view": 0} -2023-12-16T14:33:48.339Z INFO approving block {"height": 8683, "hash": "4bb7260b995f3aab5b07741574e27b381fe94942046d23385b75efbe47b7ac7e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e5973aac45a157dda6c9dec7ebcdba28e7ed69f7c7072ebf1be4c754650e338"} -2023-12-16T14:33:48.340Z INFO initializing dbft {"height": 8684, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:48.340Z debug frostfs-node/morph.go:229 new block {"index": 8683} -2023-12-16T14:33:48.652Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8683, "blockHeight": 8683, "took": "3.527783ms"} -2023-12-16T14:33:49.341Z INFO sending PrepareRequest {"height": 8684, "view": 0} -2023-12-16T14:33:49.341Z INFO sending Commit {"height": 8684, "view": 0} -2023-12-16T14:33:49.341Z INFO approving block {"height": 8684, "hash": "7ae21a0ea91eca0d3bc5e3dbd5bce44056fd09c1486155d9cc8a138d28483645", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bb7260b995f3aab5b07741574e27b381fe94942046d23385b75efbe47b7ac7e"} -2023-12-16T14:33:49.342Z INFO initializing dbft {"height": 8685, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:49.343Z debug frostfs-node/morph.go:229 new block {"index": 8684} -2023-12-16T14:33:49.654Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8684, "blockHeight": 8684, "took": "5.350761ms"} -2023-12-16T14:33:50.341Z INFO sending PrepareRequest {"height": 8685, "view": 0} -2023-12-16T14:33:50.342Z INFO sending Commit {"height": 8685, "view": 0} -2023-12-16T14:33:50.342Z INFO approving block {"height": 8685, "hash": "424309eff469641c7990289b19134125709e318cad6fdf29f74b5e989b54cb5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ae21a0ea91eca0d3bc5e3dbd5bce44056fd09c1486155d9cc8a138d28483645"} -2023-12-16T14:33:50.343Z INFO initializing dbft {"height": 8686, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:50.343Z debug frostfs-node/morph.go:229 new block {"index": 8685} -2023-12-16T14:33:50.653Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8685, "blockHeight": 8685, "took": "3.313506ms"} -2023-12-16T14:33:51.343Z INFO sending PrepareRequest {"height": 8686, "view": 0} -2023-12-16T14:33:51.343Z INFO sending Commit {"height": 8686, "view": 0} -2023-12-16T14:33:51.344Z INFO approving block {"height": 8686, "hash": "d05ba2fc0125b8b26d54eb53d4f6f5cde66492decd91737a9b3d15205b6c05e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "424309eff469641c7990289b19134125709e318cad6fdf29f74b5e989b54cb5b"} -2023-12-16T14:33:51.344Z INFO initializing dbft {"height": 8687, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:51.345Z debug frostfs-node/morph.go:229 new block {"index": 8686} -2023-12-16T14:33:51.655Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8686, "blockHeight": 8686, "took": "4.395314ms"} -2023-12-16T14:33:52.344Z INFO sending PrepareRequest {"height": 8687, "view": 0} -2023-12-16T14:33:52.344Z INFO sending Commit {"height": 8687, "view": 0} -2023-12-16T14:33:52.344Z INFO approving block {"height": 8687, "hash": "1af084bd08027954fb29d4253e6709c3901bcb0d6c70f846a1fa0137d2735695", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d05ba2fc0125b8b26d54eb53d4f6f5cde66492decd91737a9b3d15205b6c05e6"} -2023-12-16T14:33:52.345Z INFO initializing dbft {"height": 8688, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:52.346Z debug frostfs-node/morph.go:229 new block {"index": 8687} -2023-12-16T14:33:52.655Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8687, "blockHeight": 8687, "took": "4.392859ms"} -2023-12-16T14:33:53.345Z INFO sending PrepareRequest {"height": 8688, "view": 0} -2023-12-16T14:33:53.345Z INFO sending Commit {"height": 8688, "view": 0} -2023-12-16T14:33:53.346Z INFO approving block {"height": 8688, "hash": "bf3453926d5ac266dabf6027c749d04ce6fbc3e0fc5b0fe85d52dbca38eff760", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1af084bd08027954fb29d4253e6709c3901bcb0d6c70f846a1fa0137d2735695"} -2023-12-16T14:33:53.347Z INFO initializing dbft {"height": 8689, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:53.347Z debug frostfs-node/morph.go:229 new block {"index": 8688} -2023-12-16T14:33:53.655Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8688, "blockHeight": 8688, "took": "3.0783ms"} -2023-12-16T14:33:54.347Z INFO sending PrepareRequest {"height": 8689, "view": 0} -2023-12-16T14:33:54.347Z INFO sending Commit {"height": 8689, "view": 0} -2023-12-16T14:33:54.347Z INFO approving block {"height": 8689, "hash": "8f08293a0b1e70f1ea899bc82f4a736f89242aa279c7bc36d09ce756ed2f6fcc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf3453926d5ac266dabf6027c749d04ce6fbc3e0fc5b0fe85d52dbca38eff760"} -2023-12-16T14:33:54.348Z INFO initializing dbft {"height": 8690, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:54.348Z debug frostfs-node/morph.go:229 new block {"index": 8689} -2023-12-16T14:33:54.661Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8689, "blockHeight": 8689, "took": "8.822444ms"} -2023-12-16T14:33:55.348Z INFO sending PrepareRequest {"height": 8690, "view": 0} -2023-12-16T14:33:55.348Z INFO sending Commit {"height": 8690, "view": 0} -2023-12-16T14:33:55.348Z INFO approving block {"height": 8690, "hash": "9d3db70a41c2b201f984c15ec31f70edb50b6285ae4a8df0718c481b39b4fb68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f08293a0b1e70f1ea899bc82f4a736f89242aa279c7bc36d09ce756ed2f6fcc"} -2023-12-16T14:33:55.349Z INFO initializing dbft {"height": 8691, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:55.349Z debug frostfs-node/morph.go:229 new block {"index": 8690} -2023-12-16T14:33:55.657Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8690, "blockHeight": 8690, "took": "4.235562ms"} -2023-12-16T14:33:56.349Z INFO sending PrepareRequest {"height": 8691, "view": 0} -2023-12-16T14:33:56.349Z INFO sending Commit {"height": 8691, "view": 0} -2023-12-16T14:33:56.350Z INFO approving block {"height": 8691, "hash": "e07a638df8f282904c898638ce41bd8031ac6da59a6ffe9df67a22caff3459d7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d3db70a41c2b201f984c15ec31f70edb50b6285ae4a8df0718c481b39b4fb68"} -2023-12-16T14:33:56.351Z INFO initializing dbft {"height": 8692, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:56.351Z debug frostfs-node/morph.go:229 new block {"index": 8691} -2023-12-16T14:33:56.657Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8691, "blockHeight": 8691, "took": "3.969666ms"} -2023-12-16T14:33:57.351Z INFO sending PrepareRequest {"height": 8692, "view": 0} -2023-12-16T14:33:57.351Z INFO sending Commit {"height": 8692, "view": 0} -2023-12-16T14:33:57.351Z INFO approving block {"height": 8692, "hash": "f40af7cc318d9df67107c5b00be945346cc19ebde51af03efae2ada27af38897", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e07a638df8f282904c898638ce41bd8031ac6da59a6ffe9df67a22caff3459d7"} -2023-12-16T14:33:57.352Z INFO initializing dbft {"height": 8693, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:57.352Z debug frostfs-node/morph.go:229 new block {"index": 8692} -2023-12-16T14:33:57.658Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8692, "blockHeight": 8692, "took": "3.867633ms"} -2023-12-16T14:33:58.352Z INFO sending PrepareRequest {"height": 8693, "view": 0} -2023-12-16T14:33:58.352Z INFO sending Commit {"height": 8693, "view": 0} -2023-12-16T14:33:58.352Z INFO approving block {"height": 8693, "hash": "195e62e8c3ca1b150d3d62308d18e05e5bcaa31f8e746d547b4025661d22f115", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f40af7cc318d9df67107c5b00be945346cc19ebde51af03efae2ada27af38897"} -2023-12-16T14:33:58.353Z INFO initializing dbft {"height": 8694, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:58.354Z debug frostfs-node/morph.go:229 new block {"index": 8693} -2023-12-16T14:33:58.657Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8693, "blockHeight": 8693, "took": "3.08469ms"} -2023-12-16T14:33:59.353Z INFO sending PrepareRequest {"height": 8694, "view": 0} -2023-12-16T14:33:59.353Z INFO sending Commit {"height": 8694, "view": 0} -2023-12-16T14:33:59.354Z INFO approving block {"height": 8694, "hash": "10aaec55b355d7626725aa3827a5b9d8fbdcb08d327e389103dbaac8c6ae0382", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "195e62e8c3ca1b150d3d62308d18e05e5bcaa31f8e746d547b4025661d22f115"} -2023-12-16T14:33:59.354Z INFO initializing dbft {"height": 8695, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:33:59.355Z debug frostfs-node/morph.go:229 new block {"index": 8694} -2023-12-16T14:33:59.658Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8694, "blockHeight": 8694, "took": "3.515662ms"} -2023-12-16T14:34:00.355Z INFO sending PrepareRequest {"height": 8695, "view": 0} -2023-12-16T14:34:00.355Z INFO sending Commit {"height": 8695, "view": 0} -2023-12-16T14:34:00.355Z INFO approving block {"height": 8695, "hash": "68523fbdd7f8763991087ff1c1528a0aa195342441b37bd48e8ab89167dbb1c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10aaec55b355d7626725aa3827a5b9d8fbdcb08d327e389103dbaac8c6ae0382"} -2023-12-16T14:34:00.356Z INFO initializing dbft {"height": 8696, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:00.357Z debug frostfs-node/morph.go:229 new block {"index": 8695} -2023-12-16T14:34:00.659Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8695, "blockHeight": 8695, "took": "3.784381ms"} -2023-12-16T14:34:01.356Z INFO sending PrepareRequest {"height": 8696, "view": 0} -2023-12-16T14:34:01.357Z INFO sending Commit {"height": 8696, "view": 0} -2023-12-16T14:34:01.357Z INFO approving block {"height": 8696, "hash": "b1012fd42868b9174c6bf5eff17839afa86144d8254625f25a13fa2e7d996f80", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "68523fbdd7f8763991087ff1c1528a0aa195342441b37bd48e8ab89167dbb1c6"} -2023-12-16T14:34:01.358Z INFO initializing dbft {"height": 8697, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:01.358Z debug frostfs-node/morph.go:229 new block {"index": 8696} -2023-12-16T14:34:01.659Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8696, "blockHeight": 8696, "took": "3.79331ms"} -2023-12-16T14:34:02.357Z INFO sending PrepareRequest {"height": 8697, "view": 0} -2023-12-16T14:34:02.358Z INFO sending Commit {"height": 8697, "view": 0} -2023-12-16T14:34:02.358Z INFO approving block {"height": 8697, "hash": "7303c597eafc9a71684dd6613537bd0674efd102044d61745f7fb8aeaf9020e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1012fd42868b9174c6bf5eff17839afa86144d8254625f25a13fa2e7d996f80"} -2023-12-16T14:34:02.358Z INFO initializing dbft {"height": 8698, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:02.359Z debug frostfs-node/morph.go:229 new block {"index": 8697} -2023-12-16T14:34:02.660Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8697, "blockHeight": 8697, "took": "3.785311ms"} -2023-12-16T14:34:03.359Z INFO sending PrepareRequest {"height": 8698, "view": 0} -2023-12-16T14:34:03.359Z INFO sending Commit {"height": 8698, "view": 0} -2023-12-16T14:34:03.359Z INFO approving block {"height": 8698, "hash": "4ab6a94370b17845addbfe75da1e77525e54ef97bf65a3647d6027184fafc653", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7303c597eafc9a71684dd6613537bd0674efd102044d61745f7fb8aeaf9020e7"} -2023-12-16T14:34:03.360Z INFO initializing dbft {"height": 8699, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:03.360Z debug frostfs-node/morph.go:229 new block {"index": 8698} -2023-12-16T14:34:03.662Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8698, "blockHeight": 8698, "took": "5.356286ms"} -2023-12-16T14:34:04.360Z INFO sending PrepareRequest {"height": 8699, "view": 0} -2023-12-16T14:34:04.361Z INFO sending Commit {"height": 8699, "view": 0} -2023-12-16T14:34:04.361Z INFO approving block {"height": 8699, "hash": "a780064711aca9076f6df53fdc34becadd90e42119ea94335c7140bde753d4be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ab6a94370b17845addbfe75da1e77525e54ef97bf65a3647d6027184fafc653"} -2023-12-16T14:34:04.362Z INFO initializing dbft {"height": 8700, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:04.362Z debug frostfs-node/morph.go:229 new block {"index": 8699} -2023-12-16T14:34:04.661Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8699, "blockHeight": 8699, "took": "3.220895ms"} -2023-12-16T14:34:05.362Z INFO sending PrepareRequest {"height": 8700, "view": 0} -2023-12-16T14:34:05.362Z INFO sending Commit {"height": 8700, "view": 0} -2023-12-16T14:34:05.362Z INFO approving block {"height": 8700, "hash": "adc147045e5512f0706678b78effe6360c53461672ea251f681b2db8e0c2ed54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a780064711aca9076f6df53fdc34becadd90e42119ea94335c7140bde753d4be"} -2023-12-16T14:34:05.363Z INFO initializing dbft {"height": 8701, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:05.363Z debug frostfs-node/morph.go:229 new block {"index": 8700} -2023-12-16T14:34:05.365Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:34:05.368Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:34:05.368Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:34:05.662Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8700, "blockHeight": 8700, "took": "3.470412ms"} -2023-12-16T14:34:06.363Z INFO sending PrepareRequest {"height": 8701, "view": 0} -2023-12-16T14:34:06.363Z INFO sending Commit {"height": 8701, "view": 0} -2023-12-16T14:34:06.363Z INFO approving block {"height": 8701, "hash": "d8f99f52d3dc88e41b5bb235aef3b498911345e8d7bee857a663b81d6b3f5d2d", "tx_count": 2, "merkle": "a25417c08ca103b32489f41bb8e0711c9fc1a99a2dac3d86e4f04f37c8705715", "prev": "adc147045e5512f0706678b78effe6360c53461672ea251f681b2db8e0c2ed54"} -2023-12-16T14:34:06.364Z INFO runtime log {"tx": "15acf52b7c0a711fa1a7b2f4ed0233ab97229691e808a450e99cbbaa6f1de134", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:34:06.364Z INFO runtime log {"tx": "15acf52b7c0a711fa1a7b2f4ed0233ab97229691e808a450e99cbbaa6f1de134", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:34:06.365Z INFO initializing dbft {"height": 8702, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:06.365Z debug frostfs-node/morph.go:229 new block {"index": 8701} -2023-12-16T14:34:06.665Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8701, "blockHeight": 8701, "took": "6.679344ms"} -2023-12-16T14:34:07.364Z INFO sending PrepareRequest {"height": 8702, "view": 0} -2023-12-16T14:34:07.364Z INFO sending Commit {"height": 8702, "view": 0} -2023-12-16T14:34:07.364Z INFO approving block {"height": 8702, "hash": "80450714a55a21e51cedef02c52286e1e1072caad1e5f5f2fec9399963405b30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8f99f52d3dc88e41b5bb235aef3b498911345e8d7bee857a663b81d6b3f5d2d"} -2023-12-16T14:34:07.365Z INFO initializing dbft {"height": 8703, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:07.365Z debug frostfs-node/morph.go:229 new block {"index": 8702} -2023-12-16T14:34:07.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8702, "blockHeight": 8702, "took": "8.388358ms"} -2023-12-16T14:34:08.365Z INFO sending PrepareRequest {"height": 8703, "view": 0} -2023-12-16T14:34:08.365Z INFO sending Commit {"height": 8703, "view": 0} -2023-12-16T14:34:08.365Z INFO approving block {"height": 8703, "hash": "2d3ee9ab7a09b4ba1e4aebc47578f644a10579defff7260aa9a14cbe066e1083", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80450714a55a21e51cedef02c52286e1e1072caad1e5f5f2fec9399963405b30"} -2023-12-16T14:34:08.366Z INFO initializing dbft {"height": 8704, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:08.367Z debug frostfs-node/morph.go:229 new block {"index": 8703} -2023-12-16T14:34:08.663Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8703, "blockHeight": 8703, "took": "3.533022ms"} -2023-12-16T14:34:09.366Z INFO sending PrepareRequest {"height": 8704, "view": 0} -2023-12-16T14:34:09.366Z INFO sending Commit {"height": 8704, "view": 0} -2023-12-16T14:34:09.366Z INFO approving block {"height": 8704, "hash": "265d9e8be33a07bb465842f19c7e8f47a81d18a66ed9e08291e98653d1cb70df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d3ee9ab7a09b4ba1e4aebc47578f644a10579defff7260aa9a14cbe066e1083"} -2023-12-16T14:34:09.367Z INFO initializing dbft {"height": 8705, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:09.368Z debug frostfs-node/morph.go:229 new block {"index": 8704} -2023-12-16T14:34:09.665Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8704, "blockHeight": 8704, "took": "4.37873ms"} -2023-12-16T14:34:10.367Z INFO sending PrepareRequest {"height": 8705, "view": 0} -2023-12-16T14:34:10.368Z INFO sending Commit {"height": 8705, "view": 0} -2023-12-16T14:34:10.368Z INFO approving block {"height": 8705, "hash": "29b738d9e860d83d7442c7ec4eb9ab3f1c6b12d2c595146ee807c6956dec9235", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "265d9e8be33a07bb465842f19c7e8f47a81d18a66ed9e08291e98653d1cb70df"} -2023-12-16T14:34:10.368Z INFO initializing dbft {"height": 8706, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:10.369Z debug frostfs-node/morph.go:229 new block {"index": 8705} -2023-12-16T14:34:10.664Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8705, "blockHeight": 8705, "took": "4.012228ms"} -2023-12-16T14:34:11.368Z INFO sending PrepareRequest {"height": 8706, "view": 0} -2023-12-16T14:34:11.368Z INFO sending Commit {"height": 8706, "view": 0} -2023-12-16T14:34:11.369Z INFO approving block {"height": 8706, "hash": "94fc6026a03e3725b53ae5067b5e80b5559cd8bb300a66ccc3dcbbd150cffecc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29b738d9e860d83d7442c7ec4eb9ab3f1c6b12d2c595146ee807c6956dec9235"} -2023-12-16T14:34:11.369Z INFO initializing dbft {"height": 8707, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:11.370Z debug frostfs-node/morph.go:229 new block {"index": 8706} -2023-12-16T14:34:11.667Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8706, "blockHeight": 8706, "took": "5.696176ms"} -2023-12-16T14:34:12.370Z INFO sending PrepareRequest {"height": 8707, "view": 0} -2023-12-16T14:34:12.370Z INFO sending Commit {"height": 8707, "view": 0} -2023-12-16T14:34:12.370Z INFO approving block {"height": 8707, "hash": "7d46bc10a71c15703e1189409f236bf15e20e7cf3df0655deb363a943f27a933", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94fc6026a03e3725b53ae5067b5e80b5559cd8bb300a66ccc3dcbbd150cffecc"} -2023-12-16T14:34:12.371Z INFO initializing dbft {"height": 8708, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:12.372Z debug frostfs-node/morph.go:229 new block {"index": 8707} -2023-12-16T14:34:12.665Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8707, "blockHeight": 8707, "took": "3.220544ms"} -2023-12-16T14:34:13.371Z INFO sending PrepareRequest {"height": 8708, "view": 0} -2023-12-16T14:34:13.371Z INFO sending Commit {"height": 8708, "view": 0} -2023-12-16T14:34:13.371Z INFO approving block {"height": 8708, "hash": "b7bc4a8d798b39182067ff574cb094f0175ea90b284ba9a77ffa9f45f156a065", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7d46bc10a71c15703e1189409f236bf15e20e7cf3df0655deb363a943f27a933"} -2023-12-16T14:34:13.372Z INFO initializing dbft {"height": 8709, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:13.372Z debug frostfs-node/morph.go:229 new block {"index": 8708} -2023-12-16T14:34:13.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8708, "blockHeight": 8708, "took": "4.417079ms"} -2023-12-16T14:34:14.372Z INFO sending PrepareRequest {"height": 8709, "view": 0} -2023-12-16T14:34:14.373Z INFO sending Commit {"height": 8709, "view": 0} -2023-12-16T14:34:14.373Z INFO approving block {"height": 8709, "hash": "5ba698aa413f57dc7caaa3349997feeadbf58a46000694e851fdf72ffe70a01c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7bc4a8d798b39182067ff574cb094f0175ea90b284ba9a77ffa9f45f156a065"} -2023-12-16T14:34:14.374Z INFO initializing dbft {"height": 8710, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:14.375Z debug frostfs-node/morph.go:229 new block {"index": 8709} -2023-12-16T14:34:14.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8709, "blockHeight": 8709, "took": "4.127197ms"} -2023-12-16T14:34:15.374Z INFO sending PrepareRequest {"height": 8710, "view": 0} -2023-12-16T14:34:15.374Z INFO sending Commit {"height": 8710, "view": 0} -2023-12-16T14:34:15.374Z INFO approving block {"height": 8710, "hash": "4d1e81c86602819b656585550085d4fae07c25d1b9a15c127701ec3bbe0f2dbf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ba698aa413f57dc7caaa3349997feeadbf58a46000694e851fdf72ffe70a01c"} -2023-12-16T14:34:15.375Z INFO initializing dbft {"height": 8711, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:15.375Z debug frostfs-node/morph.go:229 new block {"index": 8710} -2023-12-16T14:34:15.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8710, "blockHeight": 8710, "took": "3.815862ms"} -2023-12-16T14:34:16.375Z INFO sending PrepareRequest {"height": 8711, "view": 0} -2023-12-16T14:34:16.375Z INFO sending Commit {"height": 8711, "view": 0} -2023-12-16T14:34:16.375Z INFO approving block {"height": 8711, "hash": "cd45b865391e4c78da83453bb077e080c6cf0dce0f3165026bf73bb9a6b99187", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d1e81c86602819b656585550085d4fae07c25d1b9a15c127701ec3bbe0f2dbf"} -2023-12-16T14:34:16.376Z INFO initializing dbft {"height": 8712, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:16.377Z debug frostfs-node/morph.go:229 new block {"index": 8711} -2023-12-16T14:34:16.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8711, "blockHeight": 8711, "took": "3.840422ms"} -2023-12-16T14:34:17.376Z INFO sending PrepareRequest {"height": 8712, "view": 0} -2023-12-16T14:34:17.377Z INFO sending Commit {"height": 8712, "view": 0} -2023-12-16T14:34:17.377Z INFO approving block {"height": 8712, "hash": "3296740ed5508951dd47ee67c3447e9b36ad102ec7a9805df84b2b1f24fe7994", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd45b865391e4c78da83453bb077e080c6cf0dce0f3165026bf73bb9a6b99187"} -2023-12-16T14:34:17.378Z INFO initializing dbft {"height": 8713, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:17.378Z debug frostfs-node/morph.go:229 new block {"index": 8712} -2023-12-16T14:34:17.668Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8712, "blockHeight": 8712, "took": "3.618985ms"} -2023-12-16T14:34:18.377Z INFO sending PrepareRequest {"height": 8713, "view": 0} -2023-12-16T14:34:18.377Z INFO sending Commit {"height": 8713, "view": 0} -2023-12-16T14:34:18.378Z INFO approving block {"height": 8713, "hash": "2938cdb8de44f27833ff55cbda90f7b91fa91b61c444ac7a3f1cf3295990f8ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3296740ed5508951dd47ee67c3447e9b36ad102ec7a9805df84b2b1f24fe7994"} -2023-12-16T14:34:18.378Z INFO initializing dbft {"height": 8714, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:18.379Z debug frostfs-node/morph.go:229 new block {"index": 8713} -2023-12-16T14:34:18.669Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8713, "blockHeight": 8713, "took": "3.752969ms"} -2023-12-16T14:34:19.379Z INFO sending PrepareRequest {"height": 8714, "view": 0} -2023-12-16T14:34:19.379Z INFO sending Commit {"height": 8714, "view": 0} -2023-12-16T14:34:19.379Z INFO approving block {"height": 8714, "hash": "49e33c196a7760fd3eec9863b86508f227ec4ca08138cbc8a76546c24e26ff75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2938cdb8de44f27833ff55cbda90f7b91fa91b61c444ac7a3f1cf3295990f8ca"} -2023-12-16T14:34:19.380Z INFO initializing dbft {"height": 8715, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:19.380Z debug frostfs-node/morph.go:229 new block {"index": 8714} -2023-12-16T14:34:19.670Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8714, "blockHeight": 8714, "took": "3.578684ms"} -2023-12-16T14:34:20.380Z INFO sending PrepareRequest {"height": 8715, "view": 0} -2023-12-16T14:34:20.380Z INFO sending Commit {"height": 8715, "view": 0} -2023-12-16T14:34:20.380Z INFO approving block {"height": 8715, "hash": "54f9e57420666a7a962d9978af444e9eb8605f65bd652e0e2d190ce2a31e823d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49e33c196a7760fd3eec9863b86508f227ec4ca08138cbc8a76546c24e26ff75"} -2023-12-16T14:34:20.381Z INFO initializing dbft {"height": 8716, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:20.382Z debug frostfs-node/morph.go:229 new block {"index": 8715} -2023-12-16T14:34:20.672Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8715, "blockHeight": 8715, "took": "4.81248ms"} -2023-12-16T14:34:21.381Z INFO sending PrepareRequest {"height": 8716, "view": 0} -2023-12-16T14:34:21.381Z INFO sending Commit {"height": 8716, "view": 0} -2023-12-16T14:34:21.382Z INFO approving block {"height": 8716, "hash": "eb8470df90ce04092f446f1c0240198b77d986a1629faef087cb0e893e6d1249", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54f9e57420666a7a962d9978af444e9eb8605f65bd652e0e2d190ce2a31e823d"} -2023-12-16T14:34:21.383Z INFO initializing dbft {"height": 8717, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:21.383Z debug frostfs-node/morph.go:229 new block {"index": 8716} -2023-12-16T14:34:21.674Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8716, "blockHeight": 8716, "took": "6.569801ms"} -2023-12-16T14:34:22.382Z INFO sending PrepareRequest {"height": 8717, "view": 0} -2023-12-16T14:34:22.383Z INFO sending Commit {"height": 8717, "view": 0} -2023-12-16T14:34:22.383Z INFO approving block {"height": 8717, "hash": "14fbc56674cf31e09574ecb4cbb950dbd28b8ab3efe3fce6a887f27de6f96766", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb8470df90ce04092f446f1c0240198b77d986a1629faef087cb0e893e6d1249"} -2023-12-16T14:34:22.383Z INFO initializing dbft {"height": 8718, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:22.384Z debug frostfs-node/morph.go:229 new block {"index": 8717} -2023-12-16T14:34:22.672Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8717, "blockHeight": 8717, "took": "3.650324ms"} -2023-12-16T14:34:23.384Z INFO sending PrepareRequest {"height": 8718, "view": 0} -2023-12-16T14:34:23.385Z INFO sending Commit {"height": 8718, "view": 0} -2023-12-16T14:34:23.385Z INFO approving block {"height": 8718, "hash": "119824ba34d8e9651ec0b43fa5cd0532650eb4942af267f49e5124ad4eab251b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14fbc56674cf31e09574ecb4cbb950dbd28b8ab3efe3fce6a887f27de6f96766"} -2023-12-16T14:34:23.387Z INFO initializing dbft {"height": 8719, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:23.387Z debug frostfs-node/morph.go:229 new block {"index": 8718} -2023-12-16T14:34:23.675Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8718, "blockHeight": 8718, "took": "5.250624ms"} -2023-12-16T14:34:24.386Z INFO sending PrepareRequest {"height": 8719, "view": 0} -2023-12-16T14:34:24.386Z INFO sending Commit {"height": 8719, "view": 0} -2023-12-16T14:34:24.387Z INFO approving block {"height": 8719, "hash": "9a14484b471cb55f64d824f8ba61e9b06c33ff1100f167c9d696dc1ef6ebfa19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "119824ba34d8e9651ec0b43fa5cd0532650eb4942af267f49e5124ad4eab251b"} -2023-12-16T14:34:24.388Z INFO initializing dbft {"height": 8720, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:24.389Z debug frostfs-node/morph.go:229 new block {"index": 8719} -2023-12-16T14:34:24.674Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8719, "blockHeight": 8719, "took": "4.236743ms"} -2023-12-16T14:34:25.388Z INFO sending PrepareRequest {"height": 8720, "view": 0} -2023-12-16T14:34:25.388Z INFO sending Commit {"height": 8720, "view": 0} -2023-12-16T14:34:25.388Z INFO approving block {"height": 8720, "hash": "ec797c8b734f110205861bf5b2ee76cb91241831ecc168527c3e44445638e296", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a14484b471cb55f64d824f8ba61e9b06c33ff1100f167c9d696dc1ef6ebfa19"} -2023-12-16T14:34:25.389Z INFO initializing dbft {"height": 8721, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:25.389Z debug frostfs-node/morph.go:229 new block {"index": 8720} -2023-12-16T14:34:25.675Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8720, "blockHeight": 8720, "took": "4.387233ms"} -2023-12-16T14:34:26.389Z INFO sending PrepareRequest {"height": 8721, "view": 0} -2023-12-16T14:34:26.390Z INFO sending Commit {"height": 8721, "view": 0} -2023-12-16T14:34:26.390Z INFO approving block {"height": 8721, "hash": "9dce537f155641aac97052f8eacab78ffc06e5041667adc7d5e79ec166fb39d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec797c8b734f110205861bf5b2ee76cb91241831ecc168527c3e44445638e296"} -2023-12-16T14:34:26.391Z INFO initializing dbft {"height": 8722, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:26.391Z debug frostfs-node/morph.go:229 new block {"index": 8721} -2023-12-16T14:34:26.677Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8721, "blockHeight": 8721, "took": "5.267834ms"} -2023-12-16T14:34:27.391Z INFO sending PrepareRequest {"height": 8722, "view": 0} -2023-12-16T14:34:27.391Z INFO sending Commit {"height": 8722, "view": 0} -2023-12-16T14:34:27.392Z INFO approving block {"height": 8722, "hash": "e7b44840433bb5d1a28b36465986187f15c7b67a022841415766ea1dc73a0a77", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9dce537f155641aac97052f8eacab78ffc06e5041667adc7d5e79ec166fb39d0"} -2023-12-16T14:34:27.393Z INFO initializing dbft {"height": 8723, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:27.393Z debug frostfs-node/morph.go:229 new block {"index": 8722} -2023-12-16T14:34:27.676Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8722, "blockHeight": 8722, "took": "4.360127ms"} -2023-12-16T14:34:28.392Z INFO sending PrepareRequest {"height": 8723, "view": 0} -2023-12-16T14:34:28.392Z INFO sending Commit {"height": 8723, "view": 0} -2023-12-16T14:34:28.393Z INFO approving block {"height": 8723, "hash": "7b6da6434e78ffe6a3d601e6476c24f40575cf5bd81c96e2b78a61de4aebee6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7b44840433bb5d1a28b36465986187f15c7b67a022841415766ea1dc73a0a77"} -2023-12-16T14:34:28.393Z INFO initializing dbft {"height": 8724, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:28.394Z debug frostfs-node/morph.go:229 new block {"index": 8723} -2023-12-16T14:34:28.676Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8723, "blockHeight": 8723, "took": "3.881783ms"} -2023-12-16T14:34:29.394Z INFO sending PrepareRequest {"height": 8724, "view": 0} -2023-12-16T14:34:29.394Z INFO sending Commit {"height": 8724, "view": 0} -2023-12-16T14:34:29.394Z INFO approving block {"height": 8724, "hash": "513ac9619ba32115f656a9d5fac54b9b65ab898c4ca06c0740195d8d93844e33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b6da6434e78ffe6a3d601e6476c24f40575cf5bd81c96e2b78a61de4aebee6e"} -2023-12-16T14:34:29.395Z INFO initializing dbft {"height": 8725, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:29.395Z debug frostfs-node/morph.go:229 new block {"index": 8724} -2023-12-16T14:34:29.679Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8724, "blockHeight": 8724, "took": "6.12438ms"} -2023-12-16T14:34:30.395Z INFO sending PrepareRequest {"height": 8725, "view": 0} -2023-12-16T14:34:30.395Z INFO sending Commit {"height": 8725, "view": 0} -2023-12-16T14:34:30.396Z INFO approving block {"height": 8725, "hash": "a2f13bac69719004d59ba4f22c544380472db149bcd0723c9b50884a4a02f607", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "513ac9619ba32115f656a9d5fac54b9b65ab898c4ca06c0740195d8d93844e33"} -2023-12-16T14:34:30.396Z INFO initializing dbft {"height": 8726, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:30.397Z debug frostfs-node/morph.go:229 new block {"index": 8725} -2023-12-16T14:34:30.679Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8725, "blockHeight": 8725, "took": "5.435057ms"} -2023-12-16T14:34:31.396Z INFO sending PrepareRequest {"height": 8726, "view": 0} -2023-12-16T14:34:31.396Z INFO sending Commit {"height": 8726, "view": 0} -2023-12-16T14:34:31.397Z INFO approving block {"height": 8726, "hash": "4a6dce27ee1960c448617e18298f875c2e192e3c4cc12a977422a4879b5b9b61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a2f13bac69719004d59ba4f22c544380472db149bcd0723c9b50884a4a02f607"} -2023-12-16T14:34:31.397Z INFO initializing dbft {"height": 8727, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:31.398Z debug frostfs-node/morph.go:229 new block {"index": 8726} -2023-12-16T14:34:31.678Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8726, "blockHeight": 8726, "took": "3.363348ms"} -2023-12-16T14:34:32.398Z INFO sending PrepareRequest {"height": 8727, "view": 0} -2023-12-16T14:34:32.398Z INFO sending Commit {"height": 8727, "view": 0} -2023-12-16T14:34:32.398Z INFO approving block {"height": 8727, "hash": "f17f44cf1eb931844d068ef100172df565ed78d87f9cda271629e1fba847517c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a6dce27ee1960c448617e18298f875c2e192e3c4cc12a977422a4879b5b9b61"} -2023-12-16T14:34:32.399Z INFO initializing dbft {"height": 8728, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:32.400Z debug frostfs-node/morph.go:229 new block {"index": 8727} -2023-12-16T14:34:32.681Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8727, "blockHeight": 8727, "took": "6.054857ms"} -2023-12-16T14:34:33.399Z INFO sending PrepareRequest {"height": 8728, "view": 0} -2023-12-16T14:34:33.400Z INFO sending Commit {"height": 8728, "view": 0} -2023-12-16T14:34:33.400Z INFO approving block {"height": 8728, "hash": "3c58790772d85a5adb93b3f2a2cc7cb0a0bac244e428e59e863b2b373685e8c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f17f44cf1eb931844d068ef100172df565ed78d87f9cda271629e1fba847517c"} -2023-12-16T14:34:33.401Z INFO initializing dbft {"height": 8729, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:33.401Z debug frostfs-node/morph.go:229 new block {"index": 8728} -2023-12-16T14:34:33.679Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8728, "blockHeight": 8728, "took": "3.355448ms"} -2023-12-16T14:34:34.401Z INFO sending PrepareRequest {"height": 8729, "view": 0} -2023-12-16T14:34:34.401Z INFO sending Commit {"height": 8729, "view": 0} -2023-12-16T14:34:34.401Z INFO approving block {"height": 8729, "hash": "4202f7a5655a5ada41a7b2ccdb3232f7bc26e1e275a88d8fed954f65a3c8e1ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c58790772d85a5adb93b3f2a2cc7cb0a0bac244e428e59e863b2b373685e8c4"} -2023-12-16T14:34:34.402Z INFO initializing dbft {"height": 8730, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:34.403Z debug frostfs-node/morph.go:229 new block {"index": 8729} -2023-12-16T14:34:34.681Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8729, "blockHeight": 8729, "took": "4.267115ms"} -2023-12-16T14:34:35.402Z INFO sending PrepareRequest {"height": 8730, "view": 0} -2023-12-16T14:34:35.402Z INFO sending Commit {"height": 8730, "view": 0} -2023-12-16T14:34:35.402Z INFO approving block {"height": 8730, "hash": "e122bba1d54ac12d6482350f28691292b9fc613f0937b4ec1b1e3822ff92f330", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4202f7a5655a5ada41a7b2ccdb3232f7bc26e1e275a88d8fed954f65a3c8e1ef"} -2023-12-16T14:34:35.403Z INFO initializing dbft {"height": 8731, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:35.403Z debug frostfs-node/morph.go:229 new block {"index": 8730} -2023-12-16T14:34:35.681Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8730, "blockHeight": 8730, "took": "3.614115ms"} -2023-12-16T14:34:36.403Z INFO sending PrepareRequest {"height": 8731, "view": 0} -2023-12-16T14:34:36.403Z INFO sending Commit {"height": 8731, "view": 0} -2023-12-16T14:34:36.404Z INFO approving block {"height": 8731, "hash": "be5449841cc437e8a52993a740ac77b3df74352ad87356d6a7f6e9cff10ffeab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e122bba1d54ac12d6482350f28691292b9fc613f0937b4ec1b1e3822ff92f330"} -2023-12-16T14:34:36.404Z INFO initializing dbft {"height": 8732, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:36.405Z debug frostfs-node/morph.go:229 new block {"index": 8731} -2023-12-16T14:34:36.685Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8731, "blockHeight": 8731, "took": "7.727679ms"} -2023-12-16T14:34:37.404Z INFO sending PrepareRequest {"height": 8732, "view": 0} -2023-12-16T14:34:37.404Z INFO sending Commit {"height": 8732, "view": 0} -2023-12-16T14:34:37.405Z INFO approving block {"height": 8732, "hash": "7809eac4624a6a42bd32ebd123041ea5c42604bc567c540e391eddb86ec48c6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be5449841cc437e8a52993a740ac77b3df74352ad87356d6a7f6e9cff10ffeab"} -2023-12-16T14:34:37.405Z INFO initializing dbft {"height": 8733, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:37.406Z debug frostfs-node/morph.go:229 new block {"index": 8732} -2023-12-16T14:34:37.683Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8732, "blockHeight": 8732, "took": "4.236883ms"} -2023-12-16T14:34:38.406Z INFO sending PrepareRequest {"height": 8733, "view": 0} -2023-12-16T14:34:38.406Z INFO sending Commit {"height": 8733, "view": 0} -2023-12-16T14:34:38.406Z INFO approving block {"height": 8733, "hash": "86068e2f2078cef44e7acce5108546bc3944b0ae41718c91459dbcec5b591061", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7809eac4624a6a42bd32ebd123041ea5c42604bc567c540e391eddb86ec48c6a"} -2023-12-16T14:34:38.407Z INFO initializing dbft {"height": 8734, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:38.407Z debug frostfs-node/morph.go:229 new block {"index": 8733} -2023-12-16T14:34:38.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8733, "blockHeight": 8733, "took": "5.550892ms"} -2023-12-16T14:34:39.407Z INFO sending PrepareRequest {"height": 8734, "view": 0} -2023-12-16T14:34:39.407Z INFO sending Commit {"height": 8734, "view": 0} -2023-12-16T14:34:39.407Z INFO approving block {"height": 8734, "hash": "e51206504085973cf26647d42275a81cf796adcbe2c47593bdeaf29614267a50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86068e2f2078cef44e7acce5108546bc3944b0ae41718c91459dbcec5b591061"} -2023-12-16T14:34:39.408Z INFO initializing dbft {"height": 8735, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:39.409Z debug frostfs-node/morph.go:229 new block {"index": 8734} -2023-12-16T14:34:39.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8734, "blockHeight": 8734, "took": "4.629145ms"} -2023-12-16T14:34:40.409Z INFO sending PrepareRequest {"height": 8735, "view": 0} -2023-12-16T14:34:40.409Z INFO sending Commit {"height": 8735, "view": 0} -2023-12-16T14:34:40.409Z INFO approving block {"height": 8735, "hash": "562e28cd8a7e5e9a13bbae1cafe684e947a0614830a90753277392a5a7781d56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e51206504085973cf26647d42275a81cf796adcbe2c47593bdeaf29614267a50"} -2023-12-16T14:34:40.410Z INFO initializing dbft {"height": 8736, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:40.411Z debug frostfs-node/morph.go:229 new block {"index": 8735} -2023-12-16T14:34:40.416Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 37 epoch for daughters"} -2023-12-16T14:34:40.418Z INFO runtime log {"tx": "abcdf041b99f3565a97ddbb69588a3a8c1376dc3714db230e095fc03bdaccbcf", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:34:40.684Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8735, "blockHeight": 8735, "took": "4.626585ms"} -2023-12-16T14:34:41.410Z INFO sending PrepareRequest {"height": 8736, "view": 0} -2023-12-16T14:34:41.410Z INFO sending Commit {"height": 8736, "view": 0} -2023-12-16T14:34:41.410Z INFO approving block {"height": 8736, "hash": "7907a2e173fed3df53a5e45e09d4899bdaf6501c4d7894ca8387b89a9c91ae68", "tx_count": 1, "merkle": "98ec03f8884effd4fa1537e4788d5ecbb3d5c083ec07721f86cd09b4b3240fcd", "prev": "562e28cd8a7e5e9a13bbae1cafe684e947a0614830a90753277392a5a7781d56"} -2023-12-16T14:34:41.411Z INFO runtime log {"tx": "cd0f24b3b409cd861f7207ec83c0d5b3cb5e8d78e43715fad4ff4e88f803ec98", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:34:41.412Z INFO initializing dbft {"height": 8737, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:41.412Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 37} -2023-12-16T14:34:41.412Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 37} -2023-12-16T14:34:41.412Z debug frostfs-node/morph.go:229 new block {"index": 8736} -2023-12-16T14:34:41.687Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 8736, "blockHeight": 8736, "took": "7.059566ms"} -2023-12-16T14:34:42.412Z INFO sending PrepareRequest {"height": 8737, "view": 0} -2023-12-16T14:34:42.412Z INFO sending Commit {"height": 8737, "view": 0} -2023-12-16T14:34:42.412Z INFO approving block {"height": 8737, "hash": "838c1f36122a1f0c229b1c645d55bd00bfc99e584fde45cbf9b880376199429d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7907a2e173fed3df53a5e45e09d4899bdaf6501c4d7894ca8387b89a9c91ae68"} -2023-12-16T14:34:42.413Z INFO initializing dbft {"height": 8738, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:42.414Z debug frostfs-node/morph.go:229 new block {"index": 8737} -2023-12-16T14:34:42.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8737, "blockHeight": 8737, "took": "5.378696ms"} -2023-12-16T14:34:43.413Z INFO sending PrepareRequest {"height": 8738, "view": 0} -2023-12-16T14:34:43.413Z INFO sending Commit {"height": 8738, "view": 0} -2023-12-16T14:34:43.413Z INFO approving block {"height": 8738, "hash": "0700ef0e5f709c6d223518aee67a8eb28b1cf591989d1df5a6efc4136f8cead4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "838c1f36122a1f0c229b1c645d55bd00bfc99e584fde45cbf9b880376199429d"} -2023-12-16T14:34:43.414Z INFO initializing dbft {"height": 8739, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:43.415Z debug frostfs-node/morph.go:229 new block {"index": 8738} -2023-12-16T14:34:43.687Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8738, "blockHeight": 8738, "took": "5.470908ms"} -2023-12-16T14:34:44.414Z INFO sending PrepareRequest {"height": 8739, "view": 0} -2023-12-16T14:34:44.415Z INFO sending Commit {"height": 8739, "view": 0} -2023-12-16T14:34:44.415Z INFO approving block {"height": 8739, "hash": "d803be0e6dd090310fc608034c4e070d22c4339619e1c5ceacfaba8d2bc57d51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0700ef0e5f709c6d223518aee67a8eb28b1cf591989d1df5a6efc4136f8cead4"} -2023-12-16T14:34:44.416Z INFO initializing dbft {"height": 8740, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:44.416Z debug frostfs-node/morph.go:229 new block {"index": 8739} -2023-12-16T14:34:44.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8739, "blockHeight": 8739, "took": "3.980746ms"} -2023-12-16T14:34:45.416Z INFO sending PrepareRequest {"height": 8740, "view": 0} -2023-12-16T14:34:45.416Z INFO sending Commit {"height": 8740, "view": 0} -2023-12-16T14:34:45.417Z INFO approving block {"height": 8740, "hash": "8e4c52b320888647552260a28770d7fa4b8cec56e7df5b3236f9298fad4a746c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d803be0e6dd090310fc608034c4e070d22c4339619e1c5ceacfaba8d2bc57d51"} -2023-12-16T14:34:45.418Z INFO initializing dbft {"height": 8741, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:45.418Z debug frostfs-node/morph.go:229 new block {"index": 8740} -2023-12-16T14:34:45.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8740, "blockHeight": 8740, "took": "3.638846ms"} -2023-12-16T14:34:46.417Z INFO sending PrepareRequest {"height": 8741, "view": 0} -2023-12-16T14:34:46.417Z INFO sending Commit {"height": 8741, "view": 0} -2023-12-16T14:34:46.418Z INFO approving block {"height": 8741, "hash": "375e0b27c85406ed319b591afcb01f01782051b2e32b05cbf100b5f5e33fb0c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e4c52b320888647552260a28770d7fa4b8cec56e7df5b3236f9298fad4a746c"} -2023-12-16T14:34:46.418Z INFO initializing dbft {"height": 8742, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:46.419Z debug frostfs-node/morph.go:229 new block {"index": 8741} -2023-12-16T14:34:46.686Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8741, "blockHeight": 8741, "took": "4.107514ms"} -2023-12-16T14:34:47.419Z INFO sending PrepareRequest {"height": 8742, "view": 0} -2023-12-16T14:34:47.419Z INFO sending Commit {"height": 8742, "view": 0} -2023-12-16T14:34:47.419Z INFO approving block {"height": 8742, "hash": "0838ecf6032dc951550c592198007c0c17fa1e8a19156bde90ab17d50c6311d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "375e0b27c85406ed319b591afcb01f01782051b2e32b05cbf100b5f5e33fb0c1"} -2023-12-16T14:34:47.421Z INFO initializing dbft {"height": 8743, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:47.422Z debug frostfs-node/morph.go:229 new block {"index": 8742} -2023-12-16T14:34:47.688Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8742, "blockHeight": 8742, "took": "5.47664ms"} -2023-12-16T14:34:48.420Z INFO sending PrepareRequest {"height": 8743, "view": 0} -2023-12-16T14:34:48.420Z INFO sending Commit {"height": 8743, "view": 0} -2023-12-16T14:34:48.420Z INFO approving block {"height": 8743, "hash": "af61de467c12b08dbef0f93cbae0100be110497bfeee1fa32a26b3f1597e9470", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0838ecf6032dc951550c592198007c0c17fa1e8a19156bde90ab17d50c6311d2"} -2023-12-16T14:34:48.422Z INFO initializing dbft {"height": 8744, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:48.422Z debug frostfs-node/morph.go:229 new block {"index": 8743} -2023-12-16T14:34:48.692Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8743, "blockHeight": 8743, "took": "8.858721ms"} -2023-12-16T14:34:49.422Z INFO sending PrepareRequest {"height": 8744, "view": 0} -2023-12-16T14:34:49.422Z INFO sending Commit {"height": 8744, "view": 0} -2023-12-16T14:34:49.422Z INFO approving block {"height": 8744, "hash": "02e43a37bd6a600e86a2825c9a3a18a7b107a9deeb7d39fe8049b505e4ef0149", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af61de467c12b08dbef0f93cbae0100be110497bfeee1fa32a26b3f1597e9470"} -2023-12-16T14:34:49.423Z INFO initializing dbft {"height": 8745, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:49.424Z debug frostfs-node/morph.go:229 new block {"index": 8744} -2023-12-16T14:34:49.689Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8744, "blockHeight": 8744, "took": "5.232832ms"} -2023-12-16T14:34:50.423Z INFO sending PrepareRequest {"height": 8745, "view": 0} -2023-12-16T14:34:50.424Z INFO sending Commit {"height": 8745, "view": 0} -2023-12-16T14:34:50.424Z INFO approving block {"height": 8745, "hash": "44b9cf7bdecd05bd359967e759f1698a45113a33afc935fa0f4ad17b1aebaf47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02e43a37bd6a600e86a2825c9a3a18a7b107a9deeb7d39fe8049b505e4ef0149"} -2023-12-16T14:34:50.426Z INFO initializing dbft {"height": 8746, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:50.426Z debug frostfs-node/morph.go:229 new block {"index": 8745} -2023-12-16T14:34:50.689Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8745, "blockHeight": 8745, "took": "4.223772ms"} -2023-12-16T14:34:51.425Z INFO sending PrepareRequest {"height": 8746, "view": 0} -2023-12-16T14:34:51.425Z INFO sending Commit {"height": 8746, "view": 0} -2023-12-16T14:34:51.425Z INFO approving block {"height": 8746, "hash": "1bd9d5a8c07c2b1ad791bd29e76ac1a6f9c26586866f7101913d23fd0ac14bd4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44b9cf7bdecd05bd359967e759f1698a45113a33afc935fa0f4ad17b1aebaf47"} -2023-12-16T14:34:51.426Z INFO initializing dbft {"height": 8747, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:51.427Z debug frostfs-node/morph.go:229 new block {"index": 8746} -2023-12-16T14:34:51.690Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8746, "blockHeight": 8746, "took": "5.163876ms"} -2023-12-16T14:34:52.427Z INFO sending PrepareRequest {"height": 8747, "view": 0} -2023-12-16T14:34:52.427Z INFO sending Commit {"height": 8747, "view": 0} -2023-12-16T14:34:52.427Z INFO approving block {"height": 8747, "hash": "8a971cf18d38ccec18c63e1fdc8cc1942c9e10d79e27f66bfb3bc2892c36a16a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bd9d5a8c07c2b1ad791bd29e76ac1a6f9c26586866f7101913d23fd0ac14bd4"} -2023-12-16T14:34:52.429Z INFO initializing dbft {"height": 8748, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:52.430Z debug frostfs-node/morph.go:229 new block {"index": 8747} -2023-12-16T14:34:52.690Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8747, "blockHeight": 8747, "took": "3.893075ms"} -2023-12-16T14:34:53.428Z INFO sending PrepareRequest {"height": 8748, "view": 0} -2023-12-16T14:34:53.429Z INFO sending Commit {"height": 8748, "view": 0} -2023-12-16T14:34:53.429Z INFO approving block {"height": 8748, "hash": "a466e4ed1efa92dd6294ad7c603087953105190a1dab71c4392a7c6fc6b41e6c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a971cf18d38ccec18c63e1fdc8cc1942c9e10d79e27f66bfb3bc2892c36a16a"} -2023-12-16T14:34:53.430Z INFO initializing dbft {"height": 8749, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:53.430Z debug frostfs-node/morph.go:229 new block {"index": 8748} -2023-12-16T14:34:53.691Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8748, "blockHeight": 8748, "took": "4.46421ms"} -2023-12-16T14:34:54.430Z INFO sending PrepareRequest {"height": 8749, "view": 0} -2023-12-16T14:34:54.430Z INFO sending Commit {"height": 8749, "view": 0} -2023-12-16T14:34:54.431Z INFO approving block {"height": 8749, "hash": "32a392b7d2debe76dbffd559826c3c3d68870e6a2c780f065e68b16c87fd5481", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a466e4ed1efa92dd6294ad7c603087953105190a1dab71c4392a7c6fc6b41e6c"} -2023-12-16T14:34:54.432Z INFO initializing dbft {"height": 8750, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:54.434Z debug frostfs-node/morph.go:229 new block {"index": 8749} -2023-12-16T14:34:54.693Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8749, "blockHeight": 8749, "took": "5.646564ms"} -2023-12-16T14:34:55.432Z INFO sending PrepareRequest {"height": 8750, "view": 0} -2023-12-16T14:34:55.432Z INFO sending Commit {"height": 8750, "view": 0} -2023-12-16T14:34:55.432Z INFO approving block {"height": 8750, "hash": "7e094a67cadb95380aa18c8a65767453caddc60ee626f2bef30f9d21eb53133b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32a392b7d2debe76dbffd559826c3c3d68870e6a2c780f065e68b16c87fd5481"} -2023-12-16T14:34:55.433Z INFO initializing dbft {"height": 8751, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:55.434Z debug frostfs-node/morph.go:229 new block {"index": 8750} -2023-12-16T14:34:55.436Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:34:55.439Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:34:55.439Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:34:55.691Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8750, "blockHeight": 8750, "took": "3.378439ms"} -2023-12-16T14:34:56.433Z INFO sending PrepareRequest {"height": 8751, "view": 0} -2023-12-16T14:34:56.433Z INFO sending Commit {"height": 8751, "view": 0} -2023-12-16T14:34:56.433Z INFO approving block {"height": 8751, "hash": "3d0a52918d186c5b0d69e714964cb8502b07cc0b3121564fdd5d84893aa7f666", "tx_count": 2, "merkle": "a7fb154c017d98f399e9d4609be63d71031b9e409f0d5ab78d3b7632d504b8eb", "prev": "7e094a67cadb95380aa18c8a65767453caddc60ee626f2bef30f9d21eb53133b"} -2023-12-16T14:34:56.434Z INFO runtime log {"tx": "2f28669adafd56fa2bb6456f36bbb045ae0e500ebcc618ce53ca76c9a4022f0b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:34:56.434Z INFO runtime log {"tx": "2f28669adafd56fa2bb6456f36bbb045ae0e500ebcc618ce53ca76c9a4022f0b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:34:56.434Z INFO initializing dbft {"height": 8752, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:56.435Z debug frostfs-node/morph.go:229 new block {"index": 8751} -2023-12-16T14:34:56.694Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8751, "blockHeight": 8751, "took": "5.894453ms"} -2023-12-16T14:34:57.434Z INFO sending PrepareRequest {"height": 8752, "view": 0} -2023-12-16T14:34:57.434Z INFO sending Commit {"height": 8752, "view": 0} -2023-12-16T14:34:57.435Z INFO approving block {"height": 8752, "hash": "e8156e5e6dbeb88f761eb85281f49e63636bb646e7296e8410d6066ef128ec31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d0a52918d186c5b0d69e714964cb8502b07cc0b3121564fdd5d84893aa7f666"} -2023-12-16T14:34:57.435Z INFO initializing dbft {"height": 8753, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:57.436Z debug frostfs-node/morph.go:229 new block {"index": 8752} -2023-12-16T14:34:57.695Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8752, "blockHeight": 8752, "took": "7.127927ms"} -2023-12-16T14:34:58.435Z INFO sending PrepareRequest {"height": 8753, "view": 0} -2023-12-16T14:34:58.435Z INFO sending Commit {"height": 8753, "view": 0} -2023-12-16T14:34:58.436Z INFO approving block {"height": 8753, "hash": "894baa0f0e997b7958bb065ffef00d1cdf1d731b38318af41f1b4c5cf5a1252b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8156e5e6dbeb88f761eb85281f49e63636bb646e7296e8410d6066ef128ec31"} -2023-12-16T14:34:58.436Z INFO initializing dbft {"height": 8754, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:58.437Z debug frostfs-node/morph.go:229 new block {"index": 8753} -2023-12-16T14:34:58.694Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8753, "blockHeight": 8753, "took": "6.007364ms"} -2023-12-16T14:34:59.437Z INFO sending PrepareRequest {"height": 8754, "view": 0} -2023-12-16T14:34:59.437Z INFO sending Commit {"height": 8754, "view": 0} -2023-12-16T14:34:59.438Z INFO approving block {"height": 8754, "hash": "40949a525509200c3c6ebc32906c31879d4f9e2827c04d974a6469ed8f96a21c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "894baa0f0e997b7958bb065ffef00d1cdf1d731b38318af41f1b4c5cf5a1252b"} -2023-12-16T14:34:59.439Z INFO initializing dbft {"height": 8755, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:34:59.440Z debug frostfs-node/morph.go:229 new block {"index": 8754} -2023-12-16T14:34:59.693Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8754, "blockHeight": 8754, "took": "3.478762ms"} -2023-12-16T14:35:00.439Z INFO sending PrepareRequest {"height": 8755, "view": 0} -2023-12-16T14:35:00.439Z INFO sending Commit {"height": 8755, "view": 0} -2023-12-16T14:35:00.440Z INFO approving block {"height": 8755, "hash": "8ac8256963dbeabd4ecdbda6eccad9ab66013caba3b08d2a6d6389f3df490a9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40949a525509200c3c6ebc32906c31879d4f9e2827c04d974a6469ed8f96a21c"} -2023-12-16T14:35:00.441Z INFO initializing dbft {"height": 8756, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:00.442Z debug frostfs-node/morph.go:229 new block {"index": 8755} -2023-12-16T14:35:00.694Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8755, "blockHeight": 8755, "took": "4.242834ms"} -2023-12-16T14:35:01.440Z INFO sending PrepareRequest {"height": 8756, "view": 0} -2023-12-16T14:35:01.440Z INFO sending Commit {"height": 8756, "view": 0} -2023-12-16T14:35:01.441Z INFO approving block {"height": 8756, "hash": "583863825b3a7266dfa120b603d1b45d666d854e602f61d9feefdb87fd6f5f9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ac8256963dbeabd4ecdbda6eccad9ab66013caba3b08d2a6d6389f3df490a9d"} -2023-12-16T14:35:01.441Z INFO initializing dbft {"height": 8757, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:01.442Z debug frostfs-node/morph.go:229 new block {"index": 8756} -2023-12-16T14:35:01.699Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8756, "blockHeight": 8756, "took": "8.719889ms"} -2023-12-16T14:35:02.441Z INFO sending PrepareRequest {"height": 8757, "view": 0} -2023-12-16T14:35:02.441Z INFO sending Commit {"height": 8757, "view": 0} -2023-12-16T14:35:02.441Z INFO approving block {"height": 8757, "hash": "adcca96c3170175b0cfd03f12e77c25efb5fb6c4bfa059bb3729c2c60190f5d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "583863825b3a7266dfa120b603d1b45d666d854e602f61d9feefdb87fd6f5f9b"} -2023-12-16T14:35:02.442Z INFO initializing dbft {"height": 8758, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:02.443Z debug frostfs-node/morph.go:229 new block {"index": 8757} -2023-12-16T14:35:02.697Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8757, "blockHeight": 8757, "took": "5.355616ms"} -2023-12-16T14:35:03.442Z INFO sending PrepareRequest {"height": 8758, "view": 0} -2023-12-16T14:35:03.442Z INFO sending Commit {"height": 8758, "view": 0} -2023-12-16T14:35:03.442Z INFO approving block {"height": 8758, "hash": "744ed27b6723c09173fdf377ab3a4fa3bbc6dbe3761075e201ff3212a71cdf2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "adcca96c3170175b0cfd03f12e77c25efb5fb6c4bfa059bb3729c2c60190f5d1"} -2023-12-16T14:35:03.443Z INFO initializing dbft {"height": 8759, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:03.444Z debug frostfs-node/morph.go:229 new block {"index": 8758} -2023-12-16T14:35:03.695Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8758, "blockHeight": 8758, "took": "3.356248ms"} -2023-12-16T14:35:04.443Z INFO sending PrepareRequest {"height": 8759, "view": 0} -2023-12-16T14:35:04.443Z INFO sending Commit {"height": 8759, "view": 0} -2023-12-16T14:35:04.444Z INFO approving block {"height": 8759, "hash": "9d1d20355677d42de6707ae434d88621afb222f29488706941f73ceb45f29cbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "744ed27b6723c09173fdf377ab3a4fa3bbc6dbe3761075e201ff3212a71cdf2c"} -2023-12-16T14:35:04.444Z INFO initializing dbft {"height": 8760, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:04.445Z debug frostfs-node/morph.go:229 new block {"index": 8759} -2023-12-16T14:35:04.696Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8759, "blockHeight": 8759, "took": "3.508132ms"} -2023-12-16T14:35:05.445Z INFO sending PrepareRequest {"height": 8760, "view": 0} -2023-12-16T14:35:05.445Z INFO sending Commit {"height": 8760, "view": 0} -2023-12-16T14:35:05.445Z INFO approving block {"height": 8760, "hash": "81256e6b6332045f9b261150ab6df6b0d7898ca8ca1fa25aa9576f2c896893f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d1d20355677d42de6707ae434d88621afb222f29488706941f73ceb45f29cbc"} -2023-12-16T14:35:05.446Z INFO initializing dbft {"height": 8761, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:05.446Z debug frostfs-node/morph.go:229 new block {"index": 8760} -2023-12-16T14:35:05.702Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8760, "blockHeight": 8760, "took": "8.898469ms"} -2023-12-16T14:35:06.445Z INFO sending PrepareRequest {"height": 8761, "view": 0} -2023-12-16T14:35:06.446Z INFO sending Commit {"height": 8761, "view": 0} -2023-12-16T14:35:06.446Z INFO approving block {"height": 8761, "hash": "0cf0518c35c5f506fa5f4f3e9e93492aa66d3b7858d904ae02dba510b44ccf62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81256e6b6332045f9b261150ab6df6b0d7898ca8ca1fa25aa9576f2c896893f1"} -2023-12-16T14:35:06.447Z INFO initializing dbft {"height": 8762, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:06.447Z debug frostfs-node/morph.go:229 new block {"index": 8761} -2023-12-16T14:35:06.698Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8761, "blockHeight": 8761, "took": "4.499961ms"} -2023-12-16T14:35:07.447Z INFO sending PrepareRequest {"height": 8762, "view": 0} -2023-12-16T14:35:07.447Z INFO sending Commit {"height": 8762, "view": 0} -2023-12-16T14:35:07.448Z INFO approving block {"height": 8762, "hash": "3327626e53eacc91229dd58c27dd4aefbc7fbc01957a02867497bcabab469d5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cf0518c35c5f506fa5f4f3e9e93492aa66d3b7858d904ae02dba510b44ccf62"} -2023-12-16T14:35:07.449Z INFO initializing dbft {"height": 8763, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:07.449Z debug frostfs-node/morph.go:229 new block {"index": 8762} -2023-12-16T14:35:07.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8762, "blockHeight": 8762, "took": "6.345024ms"} -2023-12-16T14:35:08.449Z INFO sending PrepareRequest {"height": 8763, "view": 0} -2023-12-16T14:35:08.449Z INFO sending Commit {"height": 8763, "view": 0} -2023-12-16T14:35:08.449Z INFO approving block {"height": 8763, "hash": "26594970965b82dbd5624e5ed70aa879ca27cede7bb6a557c6f8465027444d04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3327626e53eacc91229dd58c27dd4aefbc7fbc01957a02867497bcabab469d5c"} -2023-12-16T14:35:08.450Z INFO initializing dbft {"height": 8764, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:08.451Z debug frostfs-node/morph.go:229 new block {"index": 8763} -2023-12-16T14:35:08.699Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8763, "blockHeight": 8763, "took": "4.44269ms"} -2023-12-16T14:35:09.451Z INFO sending PrepareRequest {"height": 8764, "view": 0} -2023-12-16T14:35:09.451Z INFO sending Commit {"height": 8764, "view": 0} -2023-12-16T14:35:09.451Z INFO approving block {"height": 8764, "hash": "ed5b314e1516f25ece846488b3d6bf640cf81488b87ab893103db31400ee2f29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26594970965b82dbd5624e5ed70aa879ca27cede7bb6a557c6f8465027444d04"} -2023-12-16T14:35:09.452Z INFO initializing dbft {"height": 8765, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:09.452Z debug frostfs-node/morph.go:229 new block {"index": 8764} -2023-12-16T14:35:09.702Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8764, "blockHeight": 8764, "took": "5.966923ms"} -2023-12-16T14:35:10.452Z INFO sending PrepareRequest {"height": 8765, "view": 0} -2023-12-16T14:35:10.453Z INFO sending Commit {"height": 8765, "view": 0} -2023-12-16T14:35:10.453Z INFO approving block {"height": 8765, "hash": "29b823d0ad1f858decf5adbd50c3f2f1da09273a02dd8316caef9f0aca00eba2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed5b314e1516f25ece846488b3d6bf640cf81488b87ab893103db31400ee2f29"} -2023-12-16T14:35:10.454Z INFO initializing dbft {"height": 8766, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:10.455Z debug frostfs-node/morph.go:229 new block {"index": 8765} -2023-12-16T14:35:10.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8765, "blockHeight": 8765, "took": "5.061927ms"} -2023-12-16T14:35:11.454Z INFO sending PrepareRequest {"height": 8766, "view": 0} -2023-12-16T14:35:11.454Z INFO sending Commit {"height": 8766, "view": 0} -2023-12-16T14:35:11.454Z INFO approving block {"height": 8766, "hash": "e568da122bb74b29437e7172a95ea2c8234eb99249d621f564c9b340a1168f23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29b823d0ad1f858decf5adbd50c3f2f1da09273a02dd8316caef9f0aca00eba2"} -2023-12-16T14:35:11.455Z INFO initializing dbft {"height": 8767, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:11.456Z debug frostfs-node/morph.go:229 new block {"index": 8766} -2023-12-16T14:35:11.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8766, "blockHeight": 8766, "took": "4.417337ms"} -2023-12-16T14:35:12.455Z INFO sending PrepareRequest {"height": 8767, "view": 0} -2023-12-16T14:35:12.455Z INFO sending Commit {"height": 8767, "view": 0} -2023-12-16T14:35:12.455Z INFO approving block {"height": 8767, "hash": "3f3ad01d93b1d27155bea0664d93b60a11463c92725726ad4c855e0e16e4d115", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e568da122bb74b29437e7172a95ea2c8234eb99249d621f564c9b340a1168f23"} -2023-12-16T14:35:12.456Z INFO initializing dbft {"height": 8768, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:12.457Z debug frostfs-node/morph.go:229 new block {"index": 8767} -2023-12-16T14:35:12.704Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8767, "blockHeight": 8767, "took": "6.441418ms"} -2023-12-16T14:35:13.457Z INFO sending PrepareRequest {"height": 8768, "view": 0} -2023-12-16T14:35:13.457Z INFO sending Commit {"height": 8768, "view": 0} -2023-12-16T14:35:13.457Z INFO approving block {"height": 8768, "hash": "20bb3442d643c96d64932f7c5c38ecaebe62e3966dcf5451149f54b4ac7328d0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f3ad01d93b1d27155bea0664d93b60a11463c92725726ad4c855e0e16e4d115"} -2023-12-16T14:35:13.458Z INFO initializing dbft {"height": 8769, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:13.458Z debug frostfs-node/morph.go:229 new block {"index": 8768} -2023-12-16T14:35:13.701Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8768, "blockHeight": 8768, "took": "3.572151ms"} -2023-12-16T14:35:14.458Z INFO sending PrepareRequest {"height": 8769, "view": 0} -2023-12-16T14:35:14.458Z INFO sending Commit {"height": 8769, "view": 0} -2023-12-16T14:35:14.458Z INFO approving block {"height": 8769, "hash": "34748f5eabc8ab8fb2bb7ba4077180b6d9e8f378f53d5419159abbd3ad5a3961", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20bb3442d643c96d64932f7c5c38ecaebe62e3966dcf5451149f54b4ac7328d0"} -2023-12-16T14:35:14.459Z INFO initializing dbft {"height": 8770, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:14.459Z debug frostfs-node/morph.go:229 new block {"index": 8769} -2023-12-16T14:35:14.705Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8769, "blockHeight": 8769, "took": "7.315253ms"} -2023-12-16T14:35:15.459Z INFO sending PrepareRequest {"height": 8770, "view": 0} -2023-12-16T14:35:15.460Z INFO sending Commit {"height": 8770, "view": 0} -2023-12-16T14:35:15.460Z INFO approving block {"height": 8770, "hash": "12160c93c83b9c180deb7c1357032c3088bf7551a2afb748861add334136b945", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34748f5eabc8ab8fb2bb7ba4077180b6d9e8f378f53d5419159abbd3ad5a3961"} -2023-12-16T14:35:15.461Z INFO initializing dbft {"height": 8771, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:15.461Z debug frostfs-node/morph.go:229 new block {"index": 8770} -2023-12-16T14:35:15.702Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8770, "blockHeight": 8770, "took": "3.335897ms"} -2023-12-16T14:35:16.461Z INFO sending PrepareRequest {"height": 8771, "view": 0} -2023-12-16T14:35:16.461Z INFO sending Commit {"height": 8771, "view": 0} -2023-12-16T14:35:16.461Z INFO approving block {"height": 8771, "hash": "3de5233f4dfa73b44cff999af21b4df74014271f505e18bed2e8173ed6b7d8c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "12160c93c83b9c180deb7c1357032c3088bf7551a2afb748861add334136b945"} -2023-12-16T14:35:16.462Z INFO initializing dbft {"height": 8772, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:16.462Z debug frostfs-node/morph.go:229 new block {"index": 8771} -2023-12-16T14:35:16.704Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8771, "blockHeight": 8771, "took": "5.352766ms"} -2023-12-16T14:35:17.462Z INFO sending PrepareRequest {"height": 8772, "view": 0} -2023-12-16T14:35:17.462Z INFO sending Commit {"height": 8772, "view": 0} -2023-12-16T14:35:17.462Z INFO approving block {"height": 8772, "hash": "00ba5735aaa03f4b13304f381d215fa0532e2af95498dc99a6289f374f30f53a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3de5233f4dfa73b44cff999af21b4df74014271f505e18bed2e8173ed6b7d8c1"} -2023-12-16T14:35:17.463Z INFO initializing dbft {"height": 8773, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:17.464Z debug frostfs-node/morph.go:229 new block {"index": 8772} -2023-12-16T14:35:17.709Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8772, "blockHeight": 8772, "took": "9.249486ms"} -2023-12-16T14:35:18.463Z INFO sending PrepareRequest {"height": 8773, "view": 0} -2023-12-16T14:35:18.464Z INFO sending Commit {"height": 8773, "view": 0} -2023-12-16T14:35:18.464Z INFO approving block {"height": 8773, "hash": "9cfc87f74f82e24ecdbcaaca4d1516c4d8d1046716ab294aa81153d3e166c0b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00ba5735aaa03f4b13304f381d215fa0532e2af95498dc99a6289f374f30f53a"} -2023-12-16T14:35:18.465Z INFO initializing dbft {"height": 8774, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:18.466Z debug frostfs-node/morph.go:229 new block {"index": 8773} -2023-12-16T14:35:18.706Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8773, "blockHeight": 8773, "took": "5.808129ms"} -2023-12-16T14:35:19.465Z INFO sending PrepareRequest {"height": 8774, "view": 0} -2023-12-16T14:35:19.466Z INFO sending Commit {"height": 8774, "view": 0} -2023-12-16T14:35:19.466Z INFO approving block {"height": 8774, "hash": "31105acdfe646277692ddc6616dc23fd32bfcd8002a8e213917616d913e74704", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9cfc87f74f82e24ecdbcaaca4d1516c4d8d1046716ab294aa81153d3e166c0b9"} -2023-12-16T14:35:19.467Z INFO initializing dbft {"height": 8775, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:19.468Z debug frostfs-node/morph.go:229 new block {"index": 8774} -2023-12-16T14:35:19.707Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8774, "blockHeight": 8774, "took": "5.967563ms"} -2023-12-16T14:35:20.467Z INFO sending PrepareRequest {"height": 8775, "view": 0} -2023-12-16T14:35:20.467Z INFO sending Commit {"height": 8775, "view": 0} -2023-12-16T14:35:20.468Z INFO approving block {"height": 8775, "hash": "dc79a9a86950be38f9131d00e5905dc267b37eec5a785d736eb4629fa8261bc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31105acdfe646277692ddc6616dc23fd32bfcd8002a8e213917616d913e74704"} -2023-12-16T14:35:20.469Z INFO initializing dbft {"height": 8776, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:20.470Z debug frostfs-node/morph.go:229 new block {"index": 8775} -2023-12-16T14:35:20.706Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8775, "blockHeight": 8775, "took": "3.900514ms"} -2023-12-16T14:35:21.469Z INFO sending PrepareRequest {"height": 8776, "view": 0} -2023-12-16T14:35:21.469Z INFO sending Commit {"height": 8776, "view": 0} -2023-12-16T14:35:21.469Z INFO approving block {"height": 8776, "hash": "3381589e811f67b8efdb9c3bab93fcdc44168844d79cfed0803707d511da5cb9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc79a9a86950be38f9131d00e5905dc267b37eec5a785d736eb4629fa8261bc5"} -2023-12-16T14:35:21.470Z INFO initializing dbft {"height": 8777, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:21.471Z debug frostfs-node/morph.go:229 new block {"index": 8776} -2023-12-16T14:35:21.708Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8776, "blockHeight": 8776, "took": "5.630864ms"} -2023-12-16T14:35:22.470Z INFO sending PrepareRequest {"height": 8777, "view": 0} -2023-12-16T14:35:22.470Z INFO sending Commit {"height": 8777, "view": 0} -2023-12-16T14:35:22.470Z INFO approving block {"height": 8777, "hash": "52b234d9f2f68972db1a24e4adc7c03333fbae7db5741e18a3e55a251c1ebff4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3381589e811f67b8efdb9c3bab93fcdc44168844d79cfed0803707d511da5cb9"} -2023-12-16T14:35:22.471Z INFO initializing dbft {"height": 8778, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:22.472Z debug frostfs-node/morph.go:229 new block {"index": 8777} -2023-12-16T14:35:22.707Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8777, "blockHeight": 8777, "took": "3.933134ms"} -2023-12-16T14:35:23.471Z INFO sending PrepareRequest {"height": 8778, "view": 0} -2023-12-16T14:35:23.471Z INFO sending Commit {"height": 8778, "view": 0} -2023-12-16T14:35:23.472Z INFO approving block {"height": 8778, "hash": "45b3e4b9c42dee6cc86c569fe1317051189fe6a14938a045e01a1b057f120f13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52b234d9f2f68972db1a24e4adc7c03333fbae7db5741e18a3e55a251c1ebff4"} -2023-12-16T14:35:23.473Z INFO initializing dbft {"height": 8779, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:23.473Z debug frostfs-node/morph.go:229 new block {"index": 8778} -2023-12-16T14:35:23.711Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8778, "blockHeight": 8778, "took": "6.369707ms"} -2023-12-16T14:35:24.472Z INFO sending PrepareRequest {"height": 8779, "view": 0} -2023-12-16T14:35:24.472Z INFO sending Commit {"height": 8779, "view": 0} -2023-12-16T14:35:24.473Z INFO approving block {"height": 8779, "hash": "e1c6850593be1a901ac3959bd07c19c3d2b508d9a7d32e40bfdf92daf6530533", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45b3e4b9c42dee6cc86c569fe1317051189fe6a14938a045e01a1b057f120f13"} -2023-12-16T14:35:24.474Z INFO initializing dbft {"height": 8780, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:24.475Z debug frostfs-node/morph.go:229 new block {"index": 8779} -2023-12-16T14:35:24.712Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8779, "blockHeight": 8779, "took": "7.122018ms"} -2023-12-16T14:35:25.474Z INFO sending PrepareRequest {"height": 8780, "view": 0} -2023-12-16T14:35:25.474Z INFO sending Commit {"height": 8780, "view": 0} -2023-12-16T14:35:25.474Z INFO approving block {"height": 8780, "hash": "258ad8738397ee5f8cb2a353af442ad085b1025002302c9458b7a38628150d14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1c6850593be1a901ac3959bd07c19c3d2b508d9a7d32e40bfdf92daf6530533"} -2023-12-16T14:35:25.475Z INFO initializing dbft {"height": 8781, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:25.476Z debug frostfs-node/morph.go:229 new block {"index": 8780} -2023-12-16T14:35:25.710Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8780, "blockHeight": 8780, "took": "3.497842ms"} -2023-12-16T14:35:26.476Z INFO sending PrepareRequest {"height": 8781, "view": 0} -2023-12-16T14:35:26.476Z INFO sending Commit {"height": 8781, "view": 0} -2023-12-16T14:35:26.477Z INFO approving block {"height": 8781, "hash": "a10542acd42080956d808439f0a3f61923f35e1a926f9afa35c5c73a26c3ee3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "258ad8738397ee5f8cb2a353af442ad085b1025002302c9458b7a38628150d14"} -2023-12-16T14:35:26.478Z INFO initializing dbft {"height": 8782, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:26.479Z debug frostfs-node/morph.go:229 new block {"index": 8781} -2023-12-16T14:35:26.711Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8781, "blockHeight": 8781, "took": "3.521173ms"} -2023-12-16T14:35:27.477Z INFO sending PrepareRequest {"height": 8782, "view": 0} -2023-12-16T14:35:27.478Z INFO sending Commit {"height": 8782, "view": 0} -2023-12-16T14:35:27.478Z INFO approving block {"height": 8782, "hash": "07004503e90e6cb02d4ad8cedff6da615230ae50606a0617a308612d66e880b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a10542acd42080956d808439f0a3f61923f35e1a926f9afa35c5c73a26c3ee3c"} -2023-12-16T14:35:27.479Z INFO initializing dbft {"height": 8783, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:27.480Z debug frostfs-node/morph.go:229 new block {"index": 8782} -2023-12-16T14:35:27.712Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8782, "blockHeight": 8782, "took": "4.041377ms"} -2023-12-16T14:35:28.479Z INFO sending PrepareRequest {"height": 8783, "view": 0} -2023-12-16T14:35:28.479Z INFO sending Commit {"height": 8783, "view": 0} -2023-12-16T14:35:28.479Z INFO approving block {"height": 8783, "hash": "dd855e405f0def78b4419c58e3dbb4fabe6cf6d4553667db727e8a789347a5e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07004503e90e6cb02d4ad8cedff6da615230ae50606a0617a308612d66e880b4"} -2023-12-16T14:35:28.480Z INFO initializing dbft {"height": 8784, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:28.480Z debug frostfs-node/morph.go:229 new block {"index": 8783} -2023-12-16T14:35:28.714Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8783, "blockHeight": 8783, "took": "5.745477ms"} -2023-12-16T14:35:29.481Z INFO sending PrepareRequest {"height": 8784, "view": 0} -2023-12-16T14:35:29.481Z INFO sending Commit {"height": 8784, "view": 0} -2023-12-16T14:35:29.481Z INFO approving block {"height": 8784, "hash": "bbcc6e4398b894f3d51d2084e20dc5555b3c8948418ef9bf43b3afec868224b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd855e405f0def78b4419c58e3dbb4fabe6cf6d4553667db727e8a789347a5e3"} -2023-12-16T14:35:29.483Z INFO initializing dbft {"height": 8785, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:29.483Z debug frostfs-node/morph.go:229 new block {"index": 8784} -2023-12-16T14:35:29.713Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8784, "blockHeight": 8784, "took": "4.079439ms"} -2023-12-16T14:35:30.482Z INFO sending PrepareRequest {"height": 8785, "view": 0} -2023-12-16T14:35:30.482Z INFO sending Commit {"height": 8785, "view": 0} -2023-12-16T14:35:30.482Z INFO approving block {"height": 8785, "hash": "5baa4a2ac4d4e2c4345b2b281aa3dad780ada6b01d6ef7a569ded74b5030951b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbcc6e4398b894f3d51d2084e20dc5555b3c8948418ef9bf43b3afec868224b0"} -2023-12-16T14:35:30.483Z INFO initializing dbft {"height": 8786, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:30.483Z debug frostfs-node/morph.go:229 new block {"index": 8785} -2023-12-16T14:35:30.712Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8785, "blockHeight": 8785, "took": "3.138711ms"} -2023-12-16T14:35:31.483Z INFO sending PrepareRequest {"height": 8786, "view": 0} -2023-12-16T14:35:31.484Z INFO sending Commit {"height": 8786, "view": 0} -2023-12-16T14:35:31.484Z INFO approving block {"height": 8786, "hash": "4563a52d8f0123d3bfe722e1b2dd043b80bfa48d9f167ceea3c364127b8f4de8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5baa4a2ac4d4e2c4345b2b281aa3dad780ada6b01d6ef7a569ded74b5030951b"} -2023-12-16T14:35:31.485Z INFO initializing dbft {"height": 8787, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:31.485Z debug frostfs-node/morph.go:229 new block {"index": 8786} -2023-12-16T14:35:31.715Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8786, "blockHeight": 8786, "took": "5.60975ms"} -2023-12-16T14:35:32.485Z INFO sending PrepareRequest {"height": 8787, "view": 0} -2023-12-16T14:35:32.485Z INFO sending Commit {"height": 8787, "view": 0} -2023-12-16T14:35:32.486Z INFO approving block {"height": 8787, "hash": "6b0c4163f01d754f4b600f447d0dc5bd81ae097639f9f448ecdab0464d620a67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4563a52d8f0123d3bfe722e1b2dd043b80bfa48d9f167ceea3c364127b8f4de8"} -2023-12-16T14:35:32.487Z INFO initializing dbft {"height": 8788, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:32.487Z debug frostfs-node/morph.go:229 new block {"index": 8787} -2023-12-16T14:35:32.719Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8787, "blockHeight": 8787, "took": "8.25746ms"} -2023-12-16T14:35:33.487Z INFO sending PrepareRequest {"height": 8788, "view": 0} -2023-12-16T14:35:33.487Z INFO sending Commit {"height": 8788, "view": 0} -2023-12-16T14:35:33.487Z INFO approving block {"height": 8788, "hash": "35b05b7a785205375354dba6f9f83cbe89737c269486d0b3b22237eba8c5511c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b0c4163f01d754f4b600f447d0dc5bd81ae097639f9f448ecdab0464d620a67"} -2023-12-16T14:35:33.489Z INFO initializing dbft {"height": 8789, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:33.489Z debug frostfs-node/morph.go:229 new block {"index": 8788} -2023-12-16T14:35:33.715Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8788, "blockHeight": 8788, "took": "4.058578ms"} -2023-12-16T14:35:34.489Z INFO sending PrepareRequest {"height": 8789, "view": 0} -2023-12-16T14:35:34.489Z INFO sending Commit {"height": 8789, "view": 0} -2023-12-16T14:35:34.489Z INFO approving block {"height": 8789, "hash": "a45b93e0eda800e5457033164b327483bbf7578863e75c419b54f24f3fd4d04f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "35b05b7a785205375354dba6f9f83cbe89737c269486d0b3b22237eba8c5511c"} -2023-12-16T14:35:34.490Z INFO initializing dbft {"height": 8790, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:34.490Z debug frostfs-node/morph.go:229 new block {"index": 8789} -2023-12-16T14:35:34.716Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8789, "blockHeight": 8789, "took": "4.267835ms"} -2023-12-16T14:35:35.490Z INFO sending PrepareRequest {"height": 8790, "view": 0} -2023-12-16T14:35:35.490Z INFO sending Commit {"height": 8790, "view": 0} -2023-12-16T14:35:35.490Z INFO approving block {"height": 8790, "hash": "9c8df418e854c5c62f597209a428848c8f1bf63ef233bcf6bc5468238a12c862", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a45b93e0eda800e5457033164b327483bbf7578863e75c419b54f24f3fd4d04f"} -2023-12-16T14:35:35.491Z INFO initializing dbft {"height": 8791, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:35.492Z debug frostfs-node/morph.go:229 new block {"index": 8790} -2023-12-16T14:35:35.718Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8790, "blockHeight": 8790, "took": "5.847903ms"} -2023-12-16T14:35:36.492Z INFO sending PrepareRequest {"height": 8791, "view": 0} -2023-12-16T14:35:36.492Z INFO sending Commit {"height": 8791, "view": 0} -2023-12-16T14:35:36.492Z INFO approving block {"height": 8791, "hash": "a44d179cc42a4be73ceb03aafbe9f018fe044703f65d9a8e443838c139e021e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c8df418e854c5c62f597209a428848c8f1bf63ef233bcf6bc5468238a12c862"} -2023-12-16T14:35:36.493Z INFO initializing dbft {"height": 8792, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:36.493Z debug frostfs-node/morph.go:229 new block {"index": 8791} -2023-12-16T14:35:36.718Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8791, "blockHeight": 8791, "took": "4.393458ms"} -2023-12-16T14:35:37.494Z INFO sending PrepareRequest {"height": 8792, "view": 0} -2023-12-16T14:35:37.494Z INFO sending Commit {"height": 8792, "view": 0} -2023-12-16T14:35:37.494Z INFO approving block {"height": 8792, "hash": "baf205f76b13a4d95003f82689380871b1ceb5860b0ff4ea30d241c1bae8b3fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a44d179cc42a4be73ceb03aafbe9f018fe044703f65d9a8e443838c139e021e3"} -2023-12-16T14:35:37.495Z INFO initializing dbft {"height": 8793, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:37.496Z debug frostfs-node/morph.go:229 new block {"index": 8792} -2023-12-16T14:35:37.718Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8792, "blockHeight": 8792, "took": "3.971275ms"} -2023-12-16T14:35:38.495Z INFO sending PrepareRequest {"height": 8793, "view": 0} -2023-12-16T14:35:38.495Z INFO sending Commit {"height": 8793, "view": 0} -2023-12-16T14:35:38.495Z INFO approving block {"height": 8793, "hash": "cea93a73dfd363b4ebe0d23e7ea0b7dd012920db76e951f6563500b69a88e0fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "baf205f76b13a4d95003f82689380871b1ceb5860b0ff4ea30d241c1bae8b3fc"} -2023-12-16T14:35:38.496Z INFO initializing dbft {"height": 8794, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:38.497Z debug frostfs-node/morph.go:229 new block {"index": 8793} -2023-12-16T14:35:38.724Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8793, "blockHeight": 8793, "took": "9.668652ms"} -2023-12-16T14:35:39.496Z INFO sending PrepareRequest {"height": 8794, "view": 0} -2023-12-16T14:35:39.497Z INFO sending Commit {"height": 8794, "view": 0} -2023-12-16T14:35:39.497Z INFO approving block {"height": 8794, "hash": "c260f083d45dbad2fb471ed664d8254d8aea22de96aba9bcbccdc51ba7f56a24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cea93a73dfd363b4ebe0d23e7ea0b7dd012920db76e951f6563500b69a88e0fd"} -2023-12-16T14:35:39.498Z INFO initializing dbft {"height": 8795, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:39.499Z debug frostfs-node/morph.go:229 new block {"index": 8794} -2023-12-16T14:35:39.721Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8794, "blockHeight": 8794, "took": "5.588673ms"} -2023-12-16T14:35:40.498Z INFO sending PrepareRequest {"height": 8795, "view": 0} -2023-12-16T14:35:40.498Z INFO sending Commit {"height": 8795, "view": 0} -2023-12-16T14:35:40.498Z INFO approving block {"height": 8795, "hash": "f63f74481b2462ba6ec0917011598117aaebab8d28fb97b9c7539dc662207d34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c260f083d45dbad2fb471ed664d8254d8aea22de96aba9bcbccdc51ba7f56a24"} -2023-12-16T14:35:40.499Z INFO initializing dbft {"height": 8796, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:40.499Z debug frostfs-node/morph.go:229 new block {"index": 8795} -2023-12-16T14:35:40.502Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 37, "iteration": 1, "error": "no data for 0 iteration in 37 epoch for consumers's trusts"} -2023-12-16T14:35:40.503Z info settlement/calls.go:61 start basic income collection {"epoch": 37} -2023-12-16T14:35:40.723Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8795, "blockHeight": 8795, "took": "6.426715ms"} -2023-12-16T14:35:41.499Z INFO sending PrepareRequest {"height": 8796, "view": 0} -2023-12-16T14:35:41.499Z INFO sending Commit {"height": 8796, "view": 0} -2023-12-16T14:35:41.499Z INFO approving block {"height": 8796, "hash": "a53b997cdbed0792d70ed03a76160319e2b7e586d70a29420b079ec9a7378de4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f63f74481b2462ba6ec0917011598117aaebab8d28fb97b9c7539dc662207d34"} -2023-12-16T14:35:41.500Z INFO initializing dbft {"height": 8797, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:41.500Z debug frostfs-node/morph.go:229 new block {"index": 8796} -2023-12-16T14:35:41.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8796, "blockHeight": 8796, "took": "4.837326ms"} -2023-12-16T14:35:42.501Z INFO sending PrepareRequest {"height": 8797, "view": 0} -2023-12-16T14:35:42.501Z INFO sending Commit {"height": 8797, "view": 0} -2023-12-16T14:35:42.501Z INFO approving block {"height": 8797, "hash": "24439d92ce8fcc76d4889fa7bcc01edd39e513d7c72e056dcf097a3dc75097d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a53b997cdbed0792d70ed03a76160319e2b7e586d70a29420b079ec9a7378de4"} -2023-12-16T14:35:42.502Z INFO initializing dbft {"height": 8798, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:42.502Z debug frostfs-node/morph.go:229 new block {"index": 8797} -2023-12-16T14:35:42.723Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8797, "blockHeight": 8797, "took": "4.841592ms"} -2023-12-16T14:35:43.501Z INFO sending PrepareRequest {"height": 8798, "view": 0} -2023-12-16T14:35:43.502Z INFO sending Commit {"height": 8798, "view": 0} -2023-12-16T14:35:43.502Z INFO approving block {"height": 8798, "hash": "a21c264e78481609683812a548d14d8719c3dff894eac1648014ffd8ca87af15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24439d92ce8fcc76d4889fa7bcc01edd39e513d7c72e056dcf097a3dc75097d4"} -2023-12-16T14:35:43.503Z INFO initializing dbft {"height": 8799, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:43.503Z debug frostfs-node/morph.go:229 new block {"index": 8798} -2023-12-16T14:35:43.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8798, "blockHeight": 8798, "took": "3.313087ms"} -2023-12-16T14:35:44.503Z INFO sending PrepareRequest {"height": 8799, "view": 0} -2023-12-16T14:35:44.503Z INFO sending Commit {"height": 8799, "view": 0} -2023-12-16T14:35:44.503Z INFO approving block {"height": 8799, "hash": "f3db1f06c0819f5c53fe4a593a9306ed7f7ef9ac74247facc601e2d44ff6342b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a21c264e78481609683812a548d14d8719c3dff894eac1648014ffd8ca87af15"} -2023-12-16T14:35:44.504Z INFO initializing dbft {"height": 8800, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:44.504Z debug frostfs-node/morph.go:229 new block {"index": 8799} -2023-12-16T14:35:44.722Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8799, "blockHeight": 8799, "took": "3.287726ms"} -2023-12-16T14:35:45.504Z INFO sending PrepareRequest {"height": 8800, "view": 0} -2023-12-16T14:35:45.504Z INFO sending Commit {"height": 8800, "view": 0} -2023-12-16T14:35:45.505Z INFO approving block {"height": 8800, "hash": "71cee433c5d6962cc0d41760f8b438d2e95373cbe52f6f89b7ee039a0571f0b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3db1f06c0819f5c53fe4a593a9306ed7f7ef9ac74247facc601e2d44ff6342b"} -2023-12-16T14:35:45.505Z INFO initializing dbft {"height": 8801, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:45.506Z debug frostfs-node/morph.go:229 new block {"index": 8800} -2023-12-16T14:35:45.507Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:35:45.508Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:35:45.508Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:35:45.723Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8800, "blockHeight": 8800, "took": "3.98421ms"} -2023-12-16T14:35:46.505Z INFO sending PrepareRequest {"height": 8801, "view": 0} -2023-12-16T14:35:46.506Z INFO sending Commit {"height": 8801, "view": 0} -2023-12-16T14:35:46.506Z INFO approving block {"height": 8801, "hash": "e4391eadb4e5cc3ef673fefd0cb4dd54155ffe2313ac2abda6c6ca1f95447720", "tx_count": 2, "merkle": "0cb99ee69d682a281a235a9d17bd9e26aeae5f11568b384ecfc9ebf10e8820e3", "prev": "71cee433c5d6962cc0d41760f8b438d2e95373cbe52f6f89b7ee039a0571f0b0"} -2023-12-16T14:35:46.507Z INFO runtime log {"tx": "8d472f5915b513416116c49c9fad10f2e367ab62382449e4e0787030fb0338f4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:35:46.507Z INFO runtime log {"tx": "8d472f5915b513416116c49c9fad10f2e367ab62382449e4e0787030fb0338f4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:35:46.508Z INFO initializing dbft {"height": 8802, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:46.510Z debug frostfs-node/morph.go:229 new block {"index": 8801} -2023-12-16T14:35:46.725Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8801, "blockHeight": 8801, "took": "5.241146ms"} -2023-12-16T14:35:47.507Z INFO sending PrepareRequest {"height": 8802, "view": 0} -2023-12-16T14:35:47.507Z INFO sending Commit {"height": 8802, "view": 0} -2023-12-16T14:35:47.507Z INFO approving block {"height": 8802, "hash": "64a1c6bc86a1a3b82164d5d35f44024470623625bb39f58640fb524039dd653e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4391eadb4e5cc3ef673fefd0cb4dd54155ffe2313ac2abda6c6ca1f95447720"} -2023-12-16T14:35:47.508Z INFO initializing dbft {"height": 8803, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:47.508Z debug frostfs-node/morph.go:229 new block {"index": 8802} -2023-12-16T14:35:47.723Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8802, "blockHeight": 8802, "took": "3.453281ms"} -2023-12-16T14:35:48.508Z INFO sending PrepareRequest {"height": 8803, "view": 0} -2023-12-16T14:35:48.508Z INFO sending Commit {"height": 8803, "view": 0} -2023-12-16T14:35:48.508Z INFO approving block {"height": 8803, "hash": "82dc1b3cae55e6ae850f2eb8d6756130e4b428b1bdcfdf47a5842372c1ae8b92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64a1c6bc86a1a3b82164d5d35f44024470623625bb39f58640fb524039dd653e"} -2023-12-16T14:35:48.509Z INFO initializing dbft {"height": 8804, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:48.510Z debug frostfs-node/morph.go:229 new block {"index": 8803} -2023-12-16T14:35:48.725Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8803, "blockHeight": 8803, "took": "3.77931ms"} -2023-12-16T14:35:49.509Z INFO sending PrepareRequest {"height": 8804, "view": 0} -2023-12-16T14:35:49.509Z INFO sending Commit {"height": 8804, "view": 0} -2023-12-16T14:35:49.509Z INFO approving block {"height": 8804, "hash": "660e8693816b7dc96aa9caac688ec1558b34f893e78d32de540bb4f5fb700772", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82dc1b3cae55e6ae850f2eb8d6756130e4b428b1bdcfdf47a5842372c1ae8b92"} -2023-12-16T14:35:49.510Z INFO initializing dbft {"height": 8805, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:49.511Z debug frostfs-node/morph.go:229 new block {"index": 8804} -2023-12-16T14:35:49.727Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8804, "blockHeight": 8804, "took": "6.114796ms"} -2023-12-16T14:35:50.510Z INFO sending PrepareRequest {"height": 8805, "view": 0} -2023-12-16T14:35:50.510Z INFO sending Commit {"height": 8805, "view": 0} -2023-12-16T14:35:50.511Z INFO approving block {"height": 8805, "hash": "23013429e0c79515a0151d5d8078616d2245fa8b6bd64caaa151b38f2a494a55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "660e8693816b7dc96aa9caac688ec1558b34f893e78d32de540bb4f5fb700772"} -2023-12-16T14:35:50.512Z INFO initializing dbft {"height": 8806, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:50.512Z debug frostfs-node/morph.go:229 new block {"index": 8805} -2023-12-16T14:35:50.728Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8805, "blockHeight": 8805, "took": "5.680646ms"} -2023-12-16T14:35:51.512Z INFO sending PrepareRequest {"height": 8806, "view": 0} -2023-12-16T14:35:51.512Z INFO sending Commit {"height": 8806, "view": 0} -2023-12-16T14:35:51.512Z INFO approving block {"height": 8806, "hash": "8e54f2420ac033005077f08e7cccf3f07a4854a87272030309bdb031f5908852", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23013429e0c79515a0151d5d8078616d2245fa8b6bd64caaa151b38f2a494a55"} -2023-12-16T14:35:51.513Z INFO initializing dbft {"height": 8807, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:51.514Z debug frostfs-node/morph.go:229 new block {"index": 8806} -2023-12-16T14:35:51.726Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8806, "blockHeight": 8806, "took": "3.735679ms"} -2023-12-16T14:35:52.513Z INFO sending PrepareRequest {"height": 8807, "view": 0} -2023-12-16T14:35:52.513Z INFO sending Commit {"height": 8807, "view": 0} -2023-12-16T14:35:52.513Z INFO approving block {"height": 8807, "hash": "58162a94438185699b8324eb0a10250d5df8dea62f2ab1438525312d5389abcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e54f2420ac033005077f08e7cccf3f07a4854a87272030309bdb031f5908852"} -2023-12-16T14:35:52.514Z INFO initializing dbft {"height": 8808, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:52.514Z debug frostfs-node/morph.go:229 new block {"index": 8807} -2023-12-16T14:35:52.727Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8807, "blockHeight": 8807, "took": "3.932995ms"} -2023-12-16T14:35:53.514Z INFO sending PrepareRequest {"height": 8808, "view": 0} -2023-12-16T14:35:53.514Z INFO sending Commit {"height": 8808, "view": 0} -2023-12-16T14:35:53.514Z INFO approving block {"height": 8808, "hash": "71724dcc06a04d4dde7e9b30293fe4133ac8b2ccba4dd2010bea196865f320a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58162a94438185699b8324eb0a10250d5df8dea62f2ab1438525312d5389abcf"} -2023-12-16T14:35:53.515Z INFO initializing dbft {"height": 8809, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:53.516Z debug frostfs-node/morph.go:229 new block {"index": 8808} -2023-12-16T14:35:53.729Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8808, "blockHeight": 8808, "took": "4.472801ms"} -2023-12-16T14:35:54.516Z INFO sending PrepareRequest {"height": 8809, "view": 0} -2023-12-16T14:35:54.516Z INFO sending Commit {"height": 8809, "view": 0} -2023-12-16T14:35:54.517Z INFO approving block {"height": 8809, "hash": "ca056caa82ff780889b23d4d1cb9fd7be2a91bb21774d241476a67aa13e49d25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71724dcc06a04d4dde7e9b30293fe4133ac8b2ccba4dd2010bea196865f320a4"} -2023-12-16T14:35:54.518Z INFO initializing dbft {"height": 8810, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:54.518Z debug frostfs-node/morph.go:229 new block {"index": 8809} -2023-12-16T14:35:54.730Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8809, "blockHeight": 8809, "took": "4.925045ms"} -2023-12-16T14:35:55.518Z INFO sending PrepareRequest {"height": 8810, "view": 0} -2023-12-16T14:35:55.518Z INFO sending Commit {"height": 8810, "view": 0} -2023-12-16T14:35:55.518Z INFO approving block {"height": 8810, "hash": "07d445020303d01f0e23117932cfcdc27c185c6c9680d1db60f73b81706ed1a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca056caa82ff780889b23d4d1cb9fd7be2a91bb21774d241476a67aa13e49d25"} -2023-12-16T14:35:55.519Z INFO initializing dbft {"height": 8811, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:55.520Z debug frostfs-node/morph.go:229 new block {"index": 8810} -2023-12-16T14:35:55.730Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8810, "blockHeight": 8810, "took": "3.831215ms"} -2023-12-16T14:35:56.519Z INFO sending PrepareRequest {"height": 8811, "view": 0} -2023-12-16T14:35:56.519Z INFO sending Commit {"height": 8811, "view": 0} -2023-12-16T14:35:56.520Z INFO approving block {"height": 8811, "hash": "a1e74a584b318e2451666bd03b70a1928c9ce9f188ec45a2ee86c8e2cce65682", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07d445020303d01f0e23117932cfcdc27c185c6c9680d1db60f73b81706ed1a4"} -2023-12-16T14:35:56.520Z INFO initializing dbft {"height": 8812, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:56.521Z debug frostfs-node/morph.go:229 new block {"index": 8811} -2023-12-16T14:35:56.731Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8811, "blockHeight": 8811, "took": "4.443042ms"} -2023-12-16T14:35:57.520Z INFO sending PrepareRequest {"height": 8812, "view": 0} -2023-12-16T14:35:57.521Z INFO sending Commit {"height": 8812, "view": 0} -2023-12-16T14:35:57.521Z INFO approving block {"height": 8812, "hash": "bad3551e5b85dd5fdd726f1f7a7d1fafeec04eaa5058783683ada87aaa5fa30c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1e74a584b318e2451666bd03b70a1928c9ce9f188ec45a2ee86c8e2cce65682"} -2023-12-16T14:35:57.522Z INFO initializing dbft {"height": 8813, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:57.522Z debug frostfs-node/morph.go:229 new block {"index": 8812} -2023-12-16T14:35:57.730Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8812, "blockHeight": 8812, "took": "3.352867ms"} -2023-12-16T14:35:58.522Z INFO sending PrepareRequest {"height": 8813, "view": 0} -2023-12-16T14:35:58.522Z INFO sending Commit {"height": 8813, "view": 0} -2023-12-16T14:35:58.522Z INFO approving block {"height": 8813, "hash": "823cc3656f18491ee5552504101cc46329d2d99ad5b04c6cabf3e798e6a51921", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bad3551e5b85dd5fdd726f1f7a7d1fafeec04eaa5058783683ada87aaa5fa30c"} -2023-12-16T14:35:58.523Z INFO initializing dbft {"height": 8814, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:58.523Z debug frostfs-node/morph.go:229 new block {"index": 8813} -2023-12-16T14:35:58.733Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8813, "blockHeight": 8813, "took": "6.043016ms"} -2023-12-16T14:35:59.523Z INFO sending PrepareRequest {"height": 8814, "view": 0} -2023-12-16T14:35:59.524Z INFO sending Commit {"height": 8814, "view": 0} -2023-12-16T14:35:59.524Z INFO approving block {"height": 8814, "hash": "8308191806f33e4274a95f5b7235e479d70f6dd6c9aa84ea35aab42728c65f82", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "823cc3656f18491ee5552504101cc46329d2d99ad5b04c6cabf3e798e6a51921"} -2023-12-16T14:35:59.526Z INFO initializing dbft {"height": 8815, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:35:59.527Z debug frostfs-node/morph.go:229 new block {"index": 8814} -2023-12-16T14:35:59.732Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8814, "blockHeight": 8814, "took": "4.438279ms"} -2023-12-16T14:36:00.525Z INFO sending PrepareRequest {"height": 8815, "view": 0} -2023-12-16T14:36:00.525Z INFO sending Commit {"height": 8815, "view": 0} -2023-12-16T14:36:00.525Z INFO approving block {"height": 8815, "hash": "aa04f5bdc5d0f1d876a57f640257ed064c961566dd9d9ee23c2e3e42eb0c8245", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8308191806f33e4274a95f5b7235e479d70f6dd6c9aa84ea35aab42728c65f82"} -2023-12-16T14:36:00.526Z INFO initializing dbft {"height": 8816, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:00.527Z debug frostfs-node/morph.go:229 new block {"index": 8815} -2023-12-16T14:36:00.733Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8815, "blockHeight": 8815, "took": "4.77146ms"} -2023-12-16T14:36:01.526Z INFO sending PrepareRequest {"height": 8816, "view": 0} -2023-12-16T14:36:01.526Z INFO sending Commit {"height": 8816, "view": 0} -2023-12-16T14:36:01.527Z INFO approving block {"height": 8816, "hash": "795fc69001c8ed489edd7265fc76838652dc076247a4995e823886a1e601b359", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa04f5bdc5d0f1d876a57f640257ed064c961566dd9d9ee23c2e3e42eb0c8245"} -2023-12-16T14:36:01.527Z INFO initializing dbft {"height": 8817, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:01.528Z debug frostfs-node/morph.go:229 new block {"index": 8816} -2023-12-16T14:36:01.732Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8816, "blockHeight": 8816, "took": "3.468291ms"} -2023-12-16T14:36:02.528Z INFO sending PrepareRequest {"height": 8817, "view": 0} -2023-12-16T14:36:02.528Z INFO sending Commit {"height": 8817, "view": 0} -2023-12-16T14:36:02.528Z INFO approving block {"height": 8817, "hash": "536f58a3e7e9d9fafbac100dec41bdd06f5bb89982c9e7e3a5b5237449bc029b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "795fc69001c8ed489edd7265fc76838652dc076247a4995e823886a1e601b359"} -2023-12-16T14:36:02.529Z INFO initializing dbft {"height": 8818, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:02.529Z debug frostfs-node/morph.go:229 new block {"index": 8817} -2023-12-16T14:36:02.735Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8817, "blockHeight": 8817, "took": "5.781392ms"} -2023-12-16T14:36:03.529Z INFO sending PrepareRequest {"height": 8818, "view": 0} -2023-12-16T14:36:03.529Z INFO sending Commit {"height": 8818, "view": 0} -2023-12-16T14:36:03.529Z INFO approving block {"height": 8818, "hash": "81ab8b88bf875eea0a7a70c220ca3309c17fede9804e20e3834163fa461c7698", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "536f58a3e7e9d9fafbac100dec41bdd06f5bb89982c9e7e3a5b5237449bc029b"} -2023-12-16T14:36:03.530Z INFO initializing dbft {"height": 8819, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:03.531Z debug frostfs-node/morph.go:229 new block {"index": 8818} -2023-12-16T14:36:03.733Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8818, "blockHeight": 8818, "took": "4.294585ms"} -2023-12-16T14:36:04.530Z INFO sending PrepareRequest {"height": 8819, "view": 0} -2023-12-16T14:36:04.531Z INFO sending Commit {"height": 8819, "view": 0} -2023-12-16T14:36:04.531Z INFO approving block {"height": 8819, "hash": "790fe2390f62fcaebbb9af657f162e59130a30e99bb7747f11f64b1f639cdf17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81ab8b88bf875eea0a7a70c220ca3309c17fede9804e20e3834163fa461c7698"} -2023-12-16T14:36:04.532Z INFO initializing dbft {"height": 8820, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:04.532Z debug frostfs-node/morph.go:229 new block {"index": 8819} -2023-12-16T14:36:04.734Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8819, "blockHeight": 8819, "took": "4.707098ms"} -2023-12-16T14:36:05.532Z INFO sending PrepareRequest {"height": 8820, "view": 0} -2023-12-16T14:36:05.532Z INFO sending Commit {"height": 8820, "view": 0} -2023-12-16T14:36:05.532Z INFO approving block {"height": 8820, "hash": "9959c6d45bf68c2c13dbe78c38a1ef8ad6ca81de3bc091fe835e874111b89140", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "790fe2390f62fcaebbb9af657f162e59130a30e99bb7747f11f64b1f639cdf17"} -2023-12-16T14:36:05.533Z INFO initializing dbft {"height": 8821, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:05.533Z debug frostfs-node/morph.go:229 new block {"index": 8820} -2023-12-16T14:36:05.735Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8820, "blockHeight": 8820, "took": "4.992626ms"} -2023-12-16T14:36:06.533Z INFO sending PrepareRequest {"height": 8821, "view": 0} -2023-12-16T14:36:06.533Z INFO sending Commit {"height": 8821, "view": 0} -2023-12-16T14:36:06.534Z INFO approving block {"height": 8821, "hash": "06b8b0675205e64fc3cde18a698b552437ab505b581be0a470a957774c8bbe5f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9959c6d45bf68c2c13dbe78c38a1ef8ad6ca81de3bc091fe835e874111b89140"} -2023-12-16T14:36:06.535Z INFO initializing dbft {"height": 8822, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:06.535Z debug frostfs-node/morph.go:229 new block {"index": 8821} -2023-12-16T14:36:06.734Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8821, "blockHeight": 8821, "took": "3.577804ms"} -2023-12-16T14:36:07.535Z INFO sending PrepareRequest {"height": 8822, "view": 0} -2023-12-16T14:36:07.535Z INFO sending Commit {"height": 8822, "view": 0} -2023-12-16T14:36:07.535Z INFO approving block {"height": 8822, "hash": "b071cd0ef4c56d7f1740c15ce98f6decabcaa93bcb6141f97e7b35b5361c70c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06b8b0675205e64fc3cde18a698b552437ab505b581be0a470a957774c8bbe5f"} -2023-12-16T14:36:07.536Z INFO initializing dbft {"height": 8823, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:07.537Z debug frostfs-node/morph.go:229 new block {"index": 8822} -2023-12-16T14:36:07.736Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8822, "blockHeight": 8822, "took": "5.577566ms"} -2023-12-16T14:36:08.536Z INFO sending PrepareRequest {"height": 8823, "view": 0} -2023-12-16T14:36:08.536Z INFO sending Commit {"height": 8823, "view": 0} -2023-12-16T14:36:08.536Z INFO approving block {"height": 8823, "hash": "60086b5f990241b4708f7cedd14029925a38b00a675a16885fef8aca18b0d426", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b071cd0ef4c56d7f1740c15ce98f6decabcaa93bcb6141f97e7b35b5361c70c6"} -2023-12-16T14:36:08.537Z INFO initializing dbft {"height": 8824, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:08.538Z debug frostfs-node/morph.go:229 new block {"index": 8823} -2023-12-16T14:36:08.735Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8823, "blockHeight": 8823, "took": "3.935155ms"} -2023-12-16T14:36:09.537Z INFO sending PrepareRequest {"height": 8824, "view": 0} -2023-12-16T14:36:09.537Z INFO sending Commit {"height": 8824, "view": 0} -2023-12-16T14:36:09.538Z INFO approving block {"height": 8824, "hash": "a804396d1c772a0ede2c5ca6a0872465c7da141597dd26315333f79d5ce172f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60086b5f990241b4708f7cedd14029925a38b00a675a16885fef8aca18b0d426"} -2023-12-16T14:36:09.538Z INFO initializing dbft {"height": 8825, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:09.539Z debug frostfs-node/morph.go:229 new block {"index": 8824} -2023-12-16T14:36:09.735Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8824, "blockHeight": 8824, "took": "3.44125ms"} -2023-12-16T14:36:10.539Z INFO sending PrepareRequest {"height": 8825, "view": 0} -2023-12-16T14:36:10.539Z INFO sending Commit {"height": 8825, "view": 0} -2023-12-16T14:36:10.540Z INFO approving block {"height": 8825, "hash": "7498d052c975854703f8bc625fc9a82370c41b01b00447918da4e5fc44d3311f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a804396d1c772a0ede2c5ca6a0872465c7da141597dd26315333f79d5ce172f2"} -2023-12-16T14:36:10.541Z INFO initializing dbft {"height": 8826, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:10.541Z debug frostfs-node/morph.go:229 new block {"index": 8825} -2023-12-16T14:36:10.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8825, "blockHeight": 8825, "took": "5.46774ms"} -2023-12-16T14:36:11.540Z INFO sending PrepareRequest {"height": 8826, "view": 0} -2023-12-16T14:36:11.541Z INFO sending Commit {"height": 8826, "view": 0} -2023-12-16T14:36:11.541Z INFO approving block {"height": 8826, "hash": "ef38e6a4ad0b62fe2be81b469f8da3938a6148e358eeb5366ff6ff15d74fe8be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7498d052c975854703f8bc625fc9a82370c41b01b00447918da4e5fc44d3311f"} -2023-12-16T14:36:11.542Z INFO initializing dbft {"height": 8827, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:11.542Z debug frostfs-node/morph.go:229 new block {"index": 8826} -2023-12-16T14:36:11.739Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8826, "blockHeight": 8826, "took": "6.497125ms"} -2023-12-16T14:36:12.542Z INFO sending PrepareRequest {"height": 8827, "view": 0} -2023-12-16T14:36:12.542Z INFO sending Commit {"height": 8827, "view": 0} -2023-12-16T14:36:12.542Z INFO approving block {"height": 8827, "hash": "16a41005acd1eea36e901cbe0ceab410e132cfb986ad5d64b10304aed2450dae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef38e6a4ad0b62fe2be81b469f8da3938a6148e358eeb5366ff6ff15d74fe8be"} -2023-12-16T14:36:12.543Z INFO initializing dbft {"height": 8828, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:12.544Z debug frostfs-node/morph.go:229 new block {"index": 8827} -2023-12-16T14:36:12.737Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8827, "blockHeight": 8827, "took": "3.415601ms"} -2023-12-16T14:36:13.544Z INFO sending PrepareRequest {"height": 8828, "view": 0} -2023-12-16T14:36:13.544Z INFO sending Commit {"height": 8828, "view": 0} -2023-12-16T14:36:13.544Z INFO approving block {"height": 8828, "hash": "af56d152144492a587dd3ee7641231ae26aecaff871d690e936d3ccca5347a96", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16a41005acd1eea36e901cbe0ceab410e132cfb986ad5d64b10304aed2450dae"} -2023-12-16T14:36:13.546Z INFO initializing dbft {"height": 8829, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:13.547Z debug frostfs-node/morph.go:229 new block {"index": 8828} -2023-12-16T14:36:13.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8828, "blockHeight": 8828, "took": "4.187438ms"} -2023-12-16T14:36:14.545Z INFO sending PrepareRequest {"height": 8829, "view": 0} -2023-12-16T14:36:14.545Z INFO sending Commit {"height": 8829, "view": 0} -2023-12-16T14:36:14.545Z INFO approving block {"height": 8829, "hash": "c701c0aa771061c08d2eb9346aa84826e88262ce28d20453a8781394c0d1adcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af56d152144492a587dd3ee7641231ae26aecaff871d690e936d3ccca5347a96"} -2023-12-16T14:36:14.546Z INFO initializing dbft {"height": 8830, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:14.547Z debug frostfs-node/morph.go:229 new block {"index": 8829} -2023-12-16T14:36:14.739Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8829, "blockHeight": 8829, "took": "5.078891ms"} -2023-12-16T14:36:15.546Z INFO sending PrepareRequest {"height": 8830, "view": 0} -2023-12-16T14:36:15.547Z INFO sending Commit {"height": 8830, "view": 0} -2023-12-16T14:36:15.547Z INFO approving block {"height": 8830, "hash": "62ad78f7dd231a904db93d25e207c6cd107e37b10968fdae511a7683dda62286", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c701c0aa771061c08d2eb9346aa84826e88262ce28d20453a8781394c0d1adcf"} -2023-12-16T14:36:15.548Z INFO initializing dbft {"height": 8831, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:15.548Z debug frostfs-node/morph.go:229 new block {"index": 8830} -2023-12-16T14:36:15.738Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8830, "blockHeight": 8830, "took": "3.692498ms"} -2023-12-16T14:36:16.548Z INFO sending PrepareRequest {"height": 8831, "view": 0} -2023-12-16T14:36:16.548Z INFO sending Commit {"height": 8831, "view": 0} -2023-12-16T14:36:16.549Z INFO approving block {"height": 8831, "hash": "d3f0e80faeaed4724c257d8178b9f7a0445727c6c5bdf495a919ae6116f87c21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62ad78f7dd231a904db93d25e207c6cd107e37b10968fdae511a7683dda62286"} -2023-12-16T14:36:16.550Z INFO initializing dbft {"height": 8832, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:16.551Z debug frostfs-node/morph.go:229 new block {"index": 8831} -2023-12-16T14:36:16.739Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8831, "blockHeight": 8831, "took": "4.303619ms"} -2023-12-16T14:36:17.549Z INFO sending PrepareRequest {"height": 8832, "view": 0} -2023-12-16T14:36:17.549Z INFO sending Commit {"height": 8832, "view": 0} -2023-12-16T14:36:17.550Z INFO approving block {"height": 8832, "hash": "0364408e8853a36283ceb40c8130e5f014e211a2a3d4be7c5438fb8cbe517e7b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3f0e80faeaed4724c257d8178b9f7a0445727c6c5bdf495a919ae6116f87c21"} -2023-12-16T14:36:17.550Z INFO initializing dbft {"height": 8833, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:17.551Z debug frostfs-node/morph.go:229 new block {"index": 8832} -2023-12-16T14:36:17.740Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8832, "blockHeight": 8832, "took": "4.449871ms"} -2023-12-16T14:36:18.550Z INFO sending PrepareRequest {"height": 8833, "view": 0} -2023-12-16T14:36:18.551Z INFO sending Commit {"height": 8833, "view": 0} -2023-12-16T14:36:18.551Z INFO approving block {"height": 8833, "hash": "cc59354c9b0caa37315e45106d4a06d6977d73c37e05a87594eddb93cf48f28c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0364408e8853a36283ceb40c8130e5f014e211a2a3d4be7c5438fb8cbe517e7b"} -2023-12-16T14:36:18.552Z INFO initializing dbft {"height": 8834, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:18.553Z debug frostfs-node/morph.go:229 new block {"index": 8833} -2023-12-16T14:36:18.740Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8833, "blockHeight": 8833, "took": "3.588216ms"} -2023-12-16T14:36:19.552Z INFO sending PrepareRequest {"height": 8834, "view": 0} -2023-12-16T14:36:19.552Z INFO sending Commit {"height": 8834, "view": 0} -2023-12-16T14:36:19.552Z INFO approving block {"height": 8834, "hash": "c714cb948fb0d2da3078c6a14e4f4ab1616d39d2ab9b11c0d82a28040c2fa8a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc59354c9b0caa37315e45106d4a06d6977d73c37e05a87594eddb93cf48f28c"} -2023-12-16T14:36:19.553Z INFO initializing dbft {"height": 8835, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:19.553Z debug frostfs-node/morph.go:229 new block {"index": 8834} -2023-12-16T14:36:19.745Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8834, "blockHeight": 8834, "took": "7.713856ms"} -2023-12-16T14:36:20.553Z INFO sending PrepareRequest {"height": 8835, "view": 0} -2023-12-16T14:36:20.553Z INFO sending Commit {"height": 8835, "view": 0} -2023-12-16T14:36:20.553Z INFO approving block {"height": 8835, "hash": "9de6d4eaef4381eb81dc27a4f24503eeb5b269e0ce77f200c2a3871595b3e22b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c714cb948fb0d2da3078c6a14e4f4ab1616d39d2ab9b11c0d82a28040c2fa8a2"} -2023-12-16T14:36:20.554Z INFO initializing dbft {"height": 8836, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:20.554Z debug frostfs-node/morph.go:229 new block {"index": 8835} -2023-12-16T14:36:20.742Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8835, "blockHeight": 8835, "took": "4.514362ms"} -2023-12-16T14:36:21.554Z INFO sending PrepareRequest {"height": 8836, "view": 0} -2023-12-16T14:36:21.554Z INFO sending Commit {"height": 8836, "view": 0} -2023-12-16T14:36:21.555Z INFO approving block {"height": 8836, "hash": "7197b553000e2bd9f77610ee61ee302e9844ee946aed0ec05e2c9396517e6ef1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9de6d4eaef4381eb81dc27a4f24503eeb5b269e0ce77f200c2a3871595b3e22b"} -2023-12-16T14:36:21.556Z INFO initializing dbft {"height": 8837, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:21.556Z debug frostfs-node/morph.go:229 new block {"index": 8836} -2023-12-16T14:36:21.743Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8836, "blockHeight": 8836, "took": "4.201756ms"} -2023-12-16T14:36:22.555Z INFO sending PrepareRequest {"height": 8837, "view": 0} -2023-12-16T14:36:22.556Z INFO sending Commit {"height": 8837, "view": 0} -2023-12-16T14:36:22.556Z INFO approving block {"height": 8837, "hash": "0e2b1376758687caeb1dea256df2be9b2141c1d6e9848d20dac3ff3f58e64b88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7197b553000e2bd9f77610ee61ee302e9844ee946aed0ec05e2c9396517e6ef1"} -2023-12-16T14:36:22.557Z INFO initializing dbft {"height": 8838, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:22.557Z debug frostfs-node/morph.go:229 new block {"index": 8837} -2023-12-16T14:36:22.744Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8837, "blockHeight": 8837, "took": "4.608595ms"} -2023-12-16T14:36:23.557Z INFO sending PrepareRequest {"height": 8838, "view": 0} -2023-12-16T14:36:23.557Z INFO sending Commit {"height": 8838, "view": 0} -2023-12-16T14:36:23.558Z INFO approving block {"height": 8838, "hash": "1ec5501c97b2f66d510a52bedc764a8f72d4a89ece989af65d95292ccd540130", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e2b1376758687caeb1dea256df2be9b2141c1d6e9848d20dac3ff3f58e64b88"} -2023-12-16T14:36:23.558Z INFO initializing dbft {"height": 8839, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:23.559Z debug frostfs-node/morph.go:229 new block {"index": 8838} -2023-12-16T14:36:23.746Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8838, "blockHeight": 8838, "took": "5.183912ms"} -2023-12-16T14:36:24.560Z INFO sending PrepareRequest {"height": 8839, "view": 0} -2023-12-16T14:36:24.560Z INFO sending Commit {"height": 8839, "view": 0} -2023-12-16T14:36:24.560Z INFO approving block {"height": 8839, "hash": "dfc24ffa073cfb913dabe78321d7f8e0ec3f4b18f3b6bea85fb83de0ef234015", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ec5501c97b2f66d510a52bedc764a8f72d4a89ece989af65d95292ccd540130"} -2023-12-16T14:36:24.561Z INFO initializing dbft {"height": 8840, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:24.562Z debug frostfs-node/morph.go:229 new block {"index": 8839} -2023-12-16T14:36:24.747Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8839, "blockHeight": 8839, "took": "5.884782ms"} -2023-12-16T14:36:25.562Z INFO sending PrepareRequest {"height": 8840, "view": 0} -2023-12-16T14:36:25.562Z INFO sending Commit {"height": 8840, "view": 0} -2023-12-16T14:36:25.562Z INFO approving block {"height": 8840, "hash": "fdf726bb5d5b0bbe98ad383f7332d87d403b95e6911b616142287df250e91e03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dfc24ffa073cfb913dabe78321d7f8e0ec3f4b18f3b6bea85fb83de0ef234015"} -2023-12-16T14:36:25.563Z INFO initializing dbft {"height": 8841, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:25.564Z debug frostfs-node/morph.go:229 new block {"index": 8840} -2023-12-16T14:36:25.746Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8840, "blockHeight": 8840, "took": "4.581984ms"} -2023-12-16T14:36:26.563Z INFO sending PrepareRequest {"height": 8841, "view": 0} -2023-12-16T14:36:26.563Z INFO sending Commit {"height": 8841, "view": 0} -2023-12-16T14:36:26.564Z INFO approving block {"height": 8841, "hash": "cb59f044fd6a3e213f6c0dce6033988f403e1144e342719639640b9e244ba747", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdf726bb5d5b0bbe98ad383f7332d87d403b95e6911b616142287df250e91e03"} -2023-12-16T14:36:26.565Z INFO initializing dbft {"height": 8842, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:26.565Z debug frostfs-node/morph.go:229 new block {"index": 8841} -2023-12-16T14:36:26.750Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8841, "blockHeight": 8841, "took": "7.26841ms"} -2023-12-16T14:36:27.564Z INFO sending PrepareRequest {"height": 8842, "view": 0} -2023-12-16T14:36:27.564Z INFO sending Commit {"height": 8842, "view": 0} -2023-12-16T14:36:27.565Z INFO approving block {"height": 8842, "hash": "24c47dd093aab7f3af24a062aae9e4b3d12fef32c297648d5356b695ef108fb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb59f044fd6a3e213f6c0dce6033988f403e1144e342719639640b9e244ba747"} -2023-12-16T14:36:27.566Z INFO initializing dbft {"height": 8843, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:27.567Z debug frostfs-node/morph.go:229 new block {"index": 8842} -2023-12-16T14:36:27.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8842, "blockHeight": 8842, "took": "5.838071ms"} -2023-12-16T14:36:28.566Z INFO sending PrepareRequest {"height": 8843, "view": 0} -2023-12-16T14:36:28.566Z INFO sending Commit {"height": 8843, "view": 0} -2023-12-16T14:36:28.567Z INFO approving block {"height": 8843, "hash": "59c1311b42ce6ff61bc6bfe9fa21f6bde2816cc50e54382a9f6c3f5ed079c972", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24c47dd093aab7f3af24a062aae9e4b3d12fef32c297648d5356b695ef108fb5"} -2023-12-16T14:36:28.568Z INFO initializing dbft {"height": 8844, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:28.568Z debug frostfs-node/morph.go:229 new block {"index": 8843} -2023-12-16T14:36:28.748Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8843, "blockHeight": 8843, "took": "4.544313ms"} -2023-12-16T14:36:29.567Z INFO sending PrepareRequest {"height": 8844, "view": 0} -2023-12-16T14:36:29.568Z INFO sending Commit {"height": 8844, "view": 0} -2023-12-16T14:36:29.568Z INFO approving block {"height": 8844, "hash": "05ec8767a978eb081c4cc2724a67a2d0864ba63c4a4245fe9376c66bad57ee88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59c1311b42ce6ff61bc6bfe9fa21f6bde2816cc50e54382a9f6c3f5ed079c972"} -2023-12-16T14:36:29.570Z INFO initializing dbft {"height": 8845, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:29.570Z debug frostfs-node/morph.go:229 new block {"index": 8844} -2023-12-16T14:36:29.750Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8844, "blockHeight": 8844, "took": "5.881773ms"} -2023-12-16T14:36:30.569Z INFO sending PrepareRequest {"height": 8845, "view": 0} -2023-12-16T14:36:30.569Z INFO sending Commit {"height": 8845, "view": 0} -2023-12-16T14:36:30.569Z INFO approving block {"height": 8845, "hash": "d94a619c0d8ae1456c017244911af17e6220405ba76686162a02f050f0e8e5ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05ec8767a978eb081c4cc2724a67a2d0864ba63c4a4245fe9376c66bad57ee88"} -2023-12-16T14:36:30.570Z INFO initializing dbft {"height": 8846, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:30.570Z debug frostfs-node/morph.go:229 new block {"index": 8845} -2023-12-16T14:36:30.749Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8845, "blockHeight": 8845, "took": "4.553144ms"} -2023-12-16T14:36:31.570Z INFO sending PrepareRequest {"height": 8846, "view": 0} -2023-12-16T14:36:31.570Z INFO sending Commit {"height": 8846, "view": 0} -2023-12-16T14:36:31.571Z INFO approving block {"height": 8846, "hash": "57f1e8843a4423b4e6d0656c4f061df66beb301d8b2f6641c1207cd66f203081", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d94a619c0d8ae1456c017244911af17e6220405ba76686162a02f050f0e8e5ee"} -2023-12-16T14:36:31.571Z INFO initializing dbft {"height": 8847, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:31.572Z debug frostfs-node/morph.go:229 new block {"index": 8846} -2023-12-16T14:36:31.751Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8846, "blockHeight": 8846, "took": "5.447927ms"} -2023-12-16T14:36:32.572Z INFO sending PrepareRequest {"height": 8847, "view": 0} -2023-12-16T14:36:32.572Z INFO sending Commit {"height": 8847, "view": 0} -2023-12-16T14:36:32.572Z INFO approving block {"height": 8847, "hash": "879e576a24988fce4f7a25ff5259cf9fc0eb83ec48bd9b2497305d33437b346d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57f1e8843a4423b4e6d0656c4f061df66beb301d8b2f6641c1207cd66f203081"} -2023-12-16T14:36:32.574Z INFO initializing dbft {"height": 8848, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:32.575Z debug frostfs-node/morph.go:229 new block {"index": 8847} -2023-12-16T14:36:32.753Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8847, "blockHeight": 8847, "took": "7.067198ms"} -2023-12-16T14:36:33.573Z INFO sending PrepareRequest {"height": 8848, "view": 0} -2023-12-16T14:36:33.573Z INFO sending Commit {"height": 8848, "view": 0} -2023-12-16T14:36:33.574Z INFO approving block {"height": 8848, "hash": "b6ececafbe43f2378a347b2e8525f7c016d7fa900c204671a1005136c886c99c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "879e576a24988fce4f7a25ff5259cf9fc0eb83ec48bd9b2497305d33437b346d"} -2023-12-16T14:36:33.575Z INFO initializing dbft {"height": 8849, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:33.576Z debug frostfs-node/morph.go:229 new block {"index": 8848} -2023-12-16T14:36:33.752Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8848, "blockHeight": 8848, "took": "4.740989ms"} -2023-12-16T14:36:34.575Z INFO sending PrepareRequest {"height": 8849, "view": 0} -2023-12-16T14:36:34.575Z INFO sending Commit {"height": 8849, "view": 0} -2023-12-16T14:36:34.576Z INFO approving block {"height": 8849, "hash": "11bca8b75184d7a9df9446a598850012d8d78eb24fb784442191890a66afb3aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6ececafbe43f2378a347b2e8525f7c016d7fa900c204671a1005136c886c99c"} -2023-12-16T14:36:34.577Z INFO initializing dbft {"height": 8850, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:34.578Z debug frostfs-node/morph.go:229 new block {"index": 8849} -2023-12-16T14:36:34.754Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8849, "blockHeight": 8849, "took": "6.138091ms"} -2023-12-16T14:36:35.577Z INFO sending PrepareRequest {"height": 8850, "view": 0} -2023-12-16T14:36:35.577Z INFO sending Commit {"height": 8850, "view": 0} -2023-12-16T14:36:35.577Z INFO approving block {"height": 8850, "hash": "67df6b30fbae8cebb01acd9f618bdfe2905287727e7d624eb21790d78bb7350a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "11bca8b75184d7a9df9446a598850012d8d78eb24fb784442191890a66afb3aa"} -2023-12-16T14:36:35.578Z INFO initializing dbft {"height": 8851, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:35.579Z debug frostfs-node/morph.go:229 new block {"index": 8850} -2023-12-16T14:36:35.580Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:36:35.583Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:36:35.583Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:36:35.753Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8850, "blockHeight": 8850, "took": "5.059577ms"} -2023-12-16T14:36:36.578Z INFO sending PrepareRequest {"height": 8851, "view": 0} -2023-12-16T14:36:36.578Z INFO sending Commit {"height": 8851, "view": 0} -2023-12-16T14:36:36.579Z INFO approving block {"height": 8851, "hash": "207a5f3e628fa001399f6a88967d75db5fc15cac72c05885b6ee375ed13a0105", "tx_count": 2, "merkle": "818606a29be22a839bdd360fa87cdb79e51d6afc761e7ffc4d5eff673a4a110b", "prev": "67df6b30fbae8cebb01acd9f618bdfe2905287727e7d624eb21790d78bb7350a"} -2023-12-16T14:36:36.580Z INFO runtime log {"tx": "4114e8fc00f0cc013e9f57521c4d1cfa531c436b842e15a87de9ea7c547685e0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:36:36.580Z INFO runtime log {"tx": "4114e8fc00f0cc013e9f57521c4d1cfa531c436b842e15a87de9ea7c547685e0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:36:36.581Z INFO initializing dbft {"height": 8852, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:36.581Z debug frostfs-node/morph.go:229 new block {"index": 8851} -2023-12-16T14:36:36.755Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8851, "blockHeight": 8851, "took": "5.987574ms"} -2023-12-16T14:36:37.579Z INFO sending PrepareRequest {"height": 8852, "view": 0} -2023-12-16T14:36:37.580Z INFO sending Commit {"height": 8852, "view": 0} -2023-12-16T14:36:37.580Z INFO approving block {"height": 8852, "hash": "70a39ff7c590b871f3c107b92bee8e384d3fee3d382fd8165bb4826bf5370e6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "207a5f3e628fa001399f6a88967d75db5fc15cac72c05885b6ee375ed13a0105"} -2023-12-16T14:36:37.580Z INFO initializing dbft {"height": 8853, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:37.581Z debug frostfs-node/morph.go:229 new block {"index": 8852} -2023-12-16T14:36:37.754Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8852, "blockHeight": 8852, "took": "4.123632ms"} -2023-12-16T14:36:38.581Z INFO sending PrepareRequest {"height": 8853, "view": 0} -2023-12-16T14:36:38.581Z INFO sending Commit {"height": 8853, "view": 0} -2023-12-16T14:36:38.581Z INFO approving block {"height": 8853, "hash": "c035e73ab74b2d83df755b8c0dec3e06261079a7aef112ea3c5940b5f36471e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70a39ff7c590b871f3c107b92bee8e384d3fee3d382fd8165bb4826bf5370e6f"} -2023-12-16T14:36:38.583Z INFO initializing dbft {"height": 8854, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:38.583Z debug frostfs-node/morph.go:229 new block {"index": 8853} -2023-12-16T14:36:38.755Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8853, "blockHeight": 8853, "took": "4.875083ms"} -2023-12-16T14:36:39.582Z INFO sending PrepareRequest {"height": 8854, "view": 0} -2023-12-16T14:36:39.583Z INFO sending Commit {"height": 8854, "view": 0} -2023-12-16T14:36:39.583Z INFO approving block {"height": 8854, "hash": "fa5c9fcf93e7adc5a7f11b3e587d6d5ad3c6c1c120462f6d0fcdf051b05e7075", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c035e73ab74b2d83df755b8c0dec3e06261079a7aef112ea3c5940b5f36471e2"} -2023-12-16T14:36:39.585Z INFO initializing dbft {"height": 8855, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:39.585Z debug frostfs-node/morph.go:229 new block {"index": 8854} -2023-12-16T14:36:39.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8854, "blockHeight": 8854, "took": "5.107982ms"} -2023-12-16T14:36:40.584Z INFO sending PrepareRequest {"height": 8855, "view": 0} -2023-12-16T14:36:40.584Z INFO sending Commit {"height": 8855, "view": 0} -2023-12-16T14:36:40.584Z INFO approving block {"height": 8855, "hash": "efbad066dede779bffcfca8db5d1760ece69d0648c3052b579ed5b65c4f082be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa5c9fcf93e7adc5a7f11b3e587d6d5ad3c6c1c120462f6d0fcdf051b05e7075"} -2023-12-16T14:36:40.585Z INFO initializing dbft {"height": 8856, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:40.586Z debug frostfs-node/morph.go:229 new block {"index": 8855} -2023-12-16T14:36:40.587Z info settlement/calls.go:106 start basic income distribution {"epoch": 37} -2023-12-16T14:36:40.588Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 37, "iteration": 2, "error": "no data for 1 iteration in 37 epoch for consumers's trusts"} -2023-12-16T14:36:40.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8855, "blockHeight": 8855, "took": "4.668576ms"} -2023-12-16T14:36:41.586Z INFO sending PrepareRequest {"height": 8856, "view": 0} -2023-12-16T14:36:41.586Z INFO sending Commit {"height": 8856, "view": 0} -2023-12-16T14:36:41.587Z INFO approving block {"height": 8856, "hash": "ba8fdaa19f4eafaf16cec474f66ebffc4d406318fca5bd27a30edaab9269d0bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efbad066dede779bffcfca8db5d1760ece69d0648c3052b579ed5b65c4f082be"} -2023-12-16T14:36:41.588Z INFO initializing dbft {"height": 8857, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:41.589Z debug frostfs-node/morph.go:229 new block {"index": 8856} -2023-12-16T14:36:41.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8856, "blockHeight": 8856, "took": "4.442519ms"} -2023-12-16T14:36:42.588Z INFO sending PrepareRequest {"height": 8857, "view": 0} -2023-12-16T14:36:42.588Z INFO sending Commit {"height": 8857, "view": 0} -2023-12-16T14:36:42.588Z INFO approving block {"height": 8857, "hash": "f57e2a56802bb751b7a5e61b0d23d7612b73db6921671616520df667c43a0338", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba8fdaa19f4eafaf16cec474f66ebffc4d406318fca5bd27a30edaab9269d0bd"} -2023-12-16T14:36:42.589Z INFO initializing dbft {"height": 8858, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:42.590Z debug frostfs-node/morph.go:229 new block {"index": 8857} -2023-12-16T14:36:42.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8857, "blockHeight": 8857, "took": "3.592365ms"} -2023-12-16T14:36:43.589Z INFO sending PrepareRequest {"height": 8858, "view": 0} -2023-12-16T14:36:43.589Z INFO sending Commit {"height": 8858, "view": 0} -2023-12-16T14:36:43.589Z INFO approving block {"height": 8858, "hash": "8ff11c614745086631055353b0ced21831630f345bdb38d838c77cb69052f042", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f57e2a56802bb751b7a5e61b0d23d7612b73db6921671616520df667c43a0338"} -2023-12-16T14:36:43.590Z INFO initializing dbft {"height": 8859, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:43.591Z debug frostfs-node/morph.go:229 new block {"index": 8858} -2023-12-16T14:36:43.756Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8858, "blockHeight": 8858, "took": "3.217714ms"} -2023-12-16T14:36:44.590Z INFO sending PrepareRequest {"height": 8859, "view": 0} -2023-12-16T14:36:44.590Z INFO sending Commit {"height": 8859, "view": 0} -2023-12-16T14:36:44.590Z INFO approving block {"height": 8859, "hash": "65f399ed746051839ba3a0f27a6b2706658cb96e531aaec2f6fe1e15c144f0f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ff11c614745086631055353b0ced21831630f345bdb38d838c77cb69052f042"} -2023-12-16T14:36:44.591Z INFO initializing dbft {"height": 8860, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:44.592Z debug frostfs-node/morph.go:229 new block {"index": 8859} -2023-12-16T14:36:44.758Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8859, "blockHeight": 8859, "took": "3.655626ms"} -2023-12-16T14:36:45.591Z INFO sending PrepareRequest {"height": 8860, "view": 0} -2023-12-16T14:36:45.591Z INFO sending Commit {"height": 8860, "view": 0} -2023-12-16T14:36:45.591Z INFO approving block {"height": 8860, "hash": "5d6cc663126329339dde3a9a27abc3e37712fe81a69f86933b56d5a3f5802c2d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65f399ed746051839ba3a0f27a6b2706658cb96e531aaec2f6fe1e15c144f0f7"} -2023-12-16T14:36:45.592Z INFO initializing dbft {"height": 8861, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:45.592Z debug frostfs-node/morph.go:229 new block {"index": 8860} -2023-12-16T14:36:45.758Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8860, "blockHeight": 8860, "took": "3.073629ms"} -2023-12-16T14:36:46.592Z INFO sending PrepareRequest {"height": 8861, "view": 0} -2023-12-16T14:36:46.593Z INFO sending Commit {"height": 8861, "view": 0} -2023-12-16T14:36:46.593Z INFO approving block {"height": 8861, "hash": "e940b9ef52a5d3c7a75b560c425c8971a0a57c7d72fd1fa57ce29dfdd80f133d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d6cc663126329339dde3a9a27abc3e37712fe81a69f86933b56d5a3f5802c2d"} -2023-12-16T14:36:46.594Z INFO initializing dbft {"height": 8862, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:46.594Z debug frostfs-node/morph.go:229 new block {"index": 8861} -2023-12-16T14:36:46.760Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8861, "blockHeight": 8861, "took": "4.099743ms"} -2023-12-16T14:36:47.594Z INFO sending PrepareRequest {"height": 8862, "view": 0} -2023-12-16T14:36:47.594Z INFO sending Commit {"height": 8862, "view": 0} -2023-12-16T14:36:47.594Z INFO approving block {"height": 8862, "hash": "e8edee4bbece70c57794b8f4e19e038f23a30dfdf0c6e13f9af3bc716cc6f155", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e940b9ef52a5d3c7a75b560c425c8971a0a57c7d72fd1fa57ce29dfdd80f133d"} -2023-12-16T14:36:47.596Z INFO initializing dbft {"height": 8863, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:47.596Z debug frostfs-node/morph.go:229 new block {"index": 8862} -2023-12-16T14:36:47.762Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8862, "blockHeight": 8862, "took": "6.401016ms"} -2023-12-16T14:36:48.596Z INFO sending PrepareRequest {"height": 8863, "view": 0} -2023-12-16T14:36:48.596Z INFO sending Commit {"height": 8863, "view": 0} -2023-12-16T14:36:48.596Z INFO approving block {"height": 8863, "hash": "c4d5aa924ec15b9861e52949b37274c044b61513c689081b31449f86bd934d23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8edee4bbece70c57794b8f4e19e038f23a30dfdf0c6e13f9af3bc716cc6f155"} -2023-12-16T14:36:48.597Z INFO initializing dbft {"height": 8864, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:48.598Z debug frostfs-node/morph.go:229 new block {"index": 8863} -2023-12-16T14:36:48.761Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8863, "blockHeight": 8863, "took": "4.453011ms"} -2023-12-16T14:36:49.597Z INFO sending PrepareRequest {"height": 8864, "view": 0} -2023-12-16T14:36:49.597Z INFO sending Commit {"height": 8864, "view": 0} -2023-12-16T14:36:49.597Z INFO approving block {"height": 8864, "hash": "6b40f03171c4316d469be876516956845cafb2d70af9a17ebc8529caf787eebb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4d5aa924ec15b9861e52949b37274c044b61513c689081b31449f86bd934d23"} -2023-12-16T14:36:49.598Z INFO initializing dbft {"height": 8865, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:49.599Z debug frostfs-node/morph.go:229 new block {"index": 8864} -2023-12-16T14:36:49.760Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8864, "blockHeight": 8864, "took": "3.06619ms"} -2023-12-16T14:36:50.598Z INFO sending PrepareRequest {"height": 8865, "view": 0} -2023-12-16T14:36:50.599Z INFO sending Commit {"height": 8865, "view": 0} -2023-12-16T14:36:50.599Z INFO approving block {"height": 8865, "hash": "f714d84719d0cbad72c40c17d1609db037a817c8d6a11633f83dc1716d773d60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b40f03171c4316d469be876516956845cafb2d70af9a17ebc8529caf787eebb"} -2023-12-16T14:36:50.599Z INFO initializing dbft {"height": 8866, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:50.600Z debug frostfs-node/morph.go:229 new block {"index": 8865} -2023-12-16T14:36:50.761Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8865, "blockHeight": 8865, "took": "3.555726ms"} -2023-12-16T14:36:51.600Z INFO sending PrepareRequest {"height": 8866, "view": 0} -2023-12-16T14:36:51.600Z INFO sending Commit {"height": 8866, "view": 0} -2023-12-16T14:36:51.600Z INFO approving block {"height": 8866, "hash": "197a8dd4db40b18278ab2bb0a0958139a0f379af880a3313727a4b7f550044ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f714d84719d0cbad72c40c17d1609db037a817c8d6a11633f83dc1716d773d60"} -2023-12-16T14:36:51.601Z INFO initializing dbft {"height": 8867, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:51.601Z debug frostfs-node/morph.go:229 new block {"index": 8866} -2023-12-16T14:36:51.762Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8866, "blockHeight": 8866, "took": "3.737709ms"} -2023-12-16T14:36:52.601Z INFO sending PrepareRequest {"height": 8867, "view": 0} -2023-12-16T14:36:52.601Z INFO sending Commit {"height": 8867, "view": 0} -2023-12-16T14:36:52.601Z INFO approving block {"height": 8867, "hash": "79643d21c8cfc320f08082d8aa343b116eabf8ca1f0306a0dc23297ac71887d8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "197a8dd4db40b18278ab2bb0a0958139a0f379af880a3313727a4b7f550044ee"} -2023-12-16T14:36:52.602Z INFO initializing dbft {"height": 8868, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:52.603Z debug frostfs-node/morph.go:229 new block {"index": 8867} -2023-12-16T14:36:52.762Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8867, "blockHeight": 8867, "took": "3.018498ms"} -2023-12-16T14:36:53.603Z INFO sending PrepareRequest {"height": 8868, "view": 0} -2023-12-16T14:36:53.603Z INFO sending Commit {"height": 8868, "view": 0} -2023-12-16T14:36:53.603Z INFO approving block {"height": 8868, "hash": "86afe9f284a37229654606a8bd306474c115d9cbcb9fce16d4ea2a021c4e8f64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79643d21c8cfc320f08082d8aa343b116eabf8ca1f0306a0dc23297ac71887d8"} -2023-12-16T14:36:53.604Z debug frostfs-node/morph.go:229 new block {"index": 8868} -2023-12-16T14:36:53.605Z INFO initializing dbft {"height": 8869, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:53.765Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8868, "blockHeight": 8868, "took": "5.47819ms"} -2023-12-16T14:36:54.604Z INFO sending PrepareRequest {"height": 8869, "view": 0} -2023-12-16T14:36:54.604Z INFO sending Commit {"height": 8869, "view": 0} -2023-12-16T14:36:54.604Z INFO approving block {"height": 8869, "hash": "b5ec40b2d44da931d2aa4147f42a70910400384ca249c0216004cdbc741f4ef1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86afe9f284a37229654606a8bd306474c115d9cbcb9fce16d4ea2a021c4e8f64"} -2023-12-16T14:36:54.605Z INFO initializing dbft {"height": 8870, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:54.605Z debug frostfs-node/morph.go:229 new block {"index": 8869} -2023-12-16T14:36:54.767Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8869, "blockHeight": 8869, "took": "5.562473ms"} -2023-12-16T14:36:55.605Z INFO sending PrepareRequest {"height": 8870, "view": 0} -2023-12-16T14:36:55.605Z INFO sending Commit {"height": 8870, "view": 0} -2023-12-16T14:36:55.605Z INFO approving block {"height": 8870, "hash": "a436deb36117b5716e0c3d21692b1227973c6cf62e3096b483449506611adebc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5ec40b2d44da931d2aa4147f42a70910400384ca249c0216004cdbc741f4ef1"} -2023-12-16T14:36:55.606Z INFO initializing dbft {"height": 8871, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:55.607Z debug frostfs-node/morph.go:229 new block {"index": 8870} -2023-12-16T14:36:55.766Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8870, "blockHeight": 8870, "took": "3.899284ms"} -2023-12-16T14:36:56.606Z INFO sending PrepareRequest {"height": 8871, "view": 0} -2023-12-16T14:36:56.606Z INFO sending Commit {"height": 8871, "view": 0} -2023-12-16T14:36:56.607Z INFO approving block {"height": 8871, "hash": "d4f60b0799eeec38835aeb1bd47dff9885043b20a0c198dc3e29c8f71de836e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a436deb36117b5716e0c3d21692b1227973c6cf62e3096b483449506611adebc"} -2023-12-16T14:36:56.607Z INFO initializing dbft {"height": 8872, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:56.608Z debug frostfs-node/morph.go:229 new block {"index": 8871} -2023-12-16T14:36:56.767Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8871, "blockHeight": 8871, "took": "4.978458ms"} -2023-12-16T14:36:57.608Z INFO sending PrepareRequest {"height": 8872, "view": 0} -2023-12-16T14:36:57.608Z INFO sending Commit {"height": 8872, "view": 0} -2023-12-16T14:36:57.608Z INFO approving block {"height": 8872, "hash": "3191e297c1be84a7574c43f73e4d4a00958bcd195f20d3df48aecab1ada153dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4f60b0799eeec38835aeb1bd47dff9885043b20a0c198dc3e29c8f71de836e5"} -2023-12-16T14:36:57.609Z INFO initializing dbft {"height": 8873, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:57.609Z debug frostfs-node/morph.go:229 new block {"index": 8872} -2023-12-16T14:36:57.766Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8872, "blockHeight": 8872, "took": "3.498185ms"} -2023-12-16T14:36:58.609Z INFO sending PrepareRequest {"height": 8873, "view": 0} -2023-12-16T14:36:58.609Z INFO sending Commit {"height": 8873, "view": 0} -2023-12-16T14:36:58.609Z INFO approving block {"height": 8873, "hash": "0e23dc8f6561a0603ed45eebd9370b6e66fff38c4a36ffe76f3c18157447b9bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3191e297c1be84a7574c43f73e4d4a00958bcd195f20d3df48aecab1ada153dc"} -2023-12-16T14:36:58.610Z INFO initializing dbft {"height": 8874, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:58.611Z debug frostfs-node/morph.go:229 new block {"index": 8873} -2023-12-16T14:36:58.767Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8873, "blockHeight": 8873, "took": "3.469431ms"} -2023-12-16T14:36:59.610Z INFO sending PrepareRequest {"height": 8874, "view": 0} -2023-12-16T14:36:59.610Z INFO sending Commit {"height": 8874, "view": 0} -2023-12-16T14:36:59.611Z INFO approving block {"height": 8874, "hash": "20255b79b7aa556e362855991b2e97f40d7c3963cd3be010177b1b313749fb06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e23dc8f6561a0603ed45eebd9370b6e66fff38c4a36ffe76f3c18157447b9bc"} -2023-12-16T14:36:59.611Z INFO initializing dbft {"height": 8875, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:36:59.612Z debug frostfs-node/morph.go:229 new block {"index": 8874} -2023-12-16T14:36:59.768Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8874, "blockHeight": 8874, "took": "4.001184ms"} -2023-12-16T14:37:00.612Z INFO sending PrepareRequest {"height": 8875, "view": 0} -2023-12-16T14:37:00.612Z INFO sending Commit {"height": 8875, "view": 0} -2023-12-16T14:37:00.612Z INFO approving block {"height": 8875, "hash": "8afd0f745930184b9eb05e8aceefb1ddc844fb5d073ae037cee7892ac80ca834", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20255b79b7aa556e362855991b2e97f40d7c3963cd3be010177b1b313749fb06"} -2023-12-16T14:37:00.613Z INFO initializing dbft {"height": 8876, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:00.613Z debug frostfs-node/morph.go:229 new block {"index": 8875} -2023-12-16T14:37:00.769Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8875, "blockHeight": 8875, "took": "4.023217ms"} -2023-12-16T14:37:01.613Z INFO sending PrepareRequest {"height": 8876, "view": 0} -2023-12-16T14:37:01.613Z INFO sending Commit {"height": 8876, "view": 0} -2023-12-16T14:37:01.613Z INFO approving block {"height": 8876, "hash": "06ffb7e88fa4d3d6a9fb27cad26a507d301920503b1b05f5d39d2159e18a5f1d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8afd0f745930184b9eb05e8aceefb1ddc844fb5d073ae037cee7892ac80ca834"} -2023-12-16T14:37:01.614Z INFO initializing dbft {"height": 8877, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:01.614Z debug frostfs-node/morph.go:229 new block {"index": 8876} -2023-12-16T14:37:01.770Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8876, "blockHeight": 8876, "took": "4.721665ms"} -2023-12-16T14:37:02.614Z INFO sending PrepareRequest {"height": 8877, "view": 0} -2023-12-16T14:37:02.614Z INFO sending Commit {"height": 8877, "view": 0} -2023-12-16T14:37:02.615Z INFO approving block {"height": 8877, "hash": "cae694dc2179bab25bfbff131ddd30cac81c29668de807f680dc2698b0912d00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06ffb7e88fa4d3d6a9fb27cad26a507d301920503b1b05f5d39d2159e18a5f1d"} -2023-12-16T14:37:02.616Z INFO initializing dbft {"height": 8878, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:02.617Z debug frostfs-node/morph.go:229 new block {"index": 8877} -2023-12-16T14:37:02.770Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8877, "blockHeight": 8877, "took": "3.619846ms"} -2023-12-16T14:37:03.615Z INFO sending PrepareRequest {"height": 8878, "view": 0} -2023-12-16T14:37:03.616Z INFO sending Commit {"height": 8878, "view": 0} -2023-12-16T14:37:03.616Z INFO approving block {"height": 8878, "hash": "0711673ba117ad6f49f90bbbfcbfcebb0b18638da59ccbfd148b3dbf3bae3bcb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cae694dc2179bab25bfbff131ddd30cac81c29668de807f680dc2698b0912d00"} -2023-12-16T14:37:03.617Z INFO initializing dbft {"height": 8879, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:03.618Z debug frostfs-node/morph.go:229 new block {"index": 8878} -2023-12-16T14:37:03.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8878, "blockHeight": 8878, "took": "4.143614ms"} -2023-12-16T14:37:04.617Z INFO sending PrepareRequest {"height": 8879, "view": 0} -2023-12-16T14:37:04.617Z INFO sending Commit {"height": 8879, "view": 0} -2023-12-16T14:37:04.617Z INFO approving block {"height": 8879, "hash": "bb3f97f71b57fb5c2e70b92d6d86900e2de0d72fb91c329d7a7b9c8bfacc7050", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0711673ba117ad6f49f90bbbfcbfcebb0b18638da59ccbfd148b3dbf3bae3bcb"} -2023-12-16T14:37:04.618Z INFO initializing dbft {"height": 8880, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:04.619Z debug frostfs-node/morph.go:229 new block {"index": 8879} -2023-12-16T14:37:04.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8879, "blockHeight": 8879, "took": "3.794871ms"} -2023-12-16T14:37:05.618Z INFO sending PrepareRequest {"height": 8880, "view": 0} -2023-12-16T14:37:05.618Z INFO sending Commit {"height": 8880, "view": 0} -2023-12-16T14:37:05.619Z INFO approving block {"height": 8880, "hash": "c6ea769adc8eda67550c9a60133d9c6036236c1511bdd65e2f69cd76c3aa01be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb3f97f71b57fb5c2e70b92d6d86900e2de0d72fb91c329d7a7b9c8bfacc7050"} -2023-12-16T14:37:05.619Z INFO initializing dbft {"height": 8881, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:05.620Z debug frostfs-node/morph.go:229 new block {"index": 8880} -2023-12-16T14:37:05.771Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8880, "blockHeight": 8880, "took": "4.070544ms"} -2023-12-16T14:37:06.620Z INFO sending PrepareRequest {"height": 8881, "view": 0} -2023-12-16T14:37:06.620Z INFO sending Commit {"height": 8881, "view": 0} -2023-12-16T14:37:06.620Z INFO approving block {"height": 8881, "hash": "c208f9b44bcbd74769067edb0afdc79744c963ecbc84f065b6a86cfa7e28ca29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6ea769adc8eda67550c9a60133d9c6036236c1511bdd65e2f69cd76c3aa01be"} -2023-12-16T14:37:06.622Z INFO initializing dbft {"height": 8882, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:06.623Z debug frostfs-node/morph.go:229 new block {"index": 8881} -2023-12-16T14:37:06.772Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8881, "blockHeight": 8881, "took": "4.035448ms"} -2023-12-16T14:37:07.621Z INFO sending PrepareRequest {"height": 8882, "view": 0} -2023-12-16T14:37:07.621Z INFO sending Commit {"height": 8882, "view": 0} -2023-12-16T14:37:07.622Z INFO approving block {"height": 8882, "hash": "6e1d6e7a2aaed7d89bb42ca42da071a4107ed5fdf60762ab67c0c8300cc827bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c208f9b44bcbd74769067edb0afdc79744c963ecbc84f065b6a86cfa7e28ca29"} -2023-12-16T14:37:07.623Z INFO initializing dbft {"height": 8883, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:07.623Z debug frostfs-node/morph.go:229 new block {"index": 8882} -2023-12-16T14:37:07.775Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8882, "blockHeight": 8882, "took": "6.288724ms"} -2023-12-16T14:37:08.623Z INFO sending PrepareRequest {"height": 8883, "view": 0} -2023-12-16T14:37:08.623Z INFO sending Commit {"height": 8883, "view": 0} -2023-12-16T14:37:08.623Z INFO approving block {"height": 8883, "hash": "fe47e88ce9ea093cdcfd2430c791d8d3e2b6dad49ad503985b81fbc9f3e91d47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e1d6e7a2aaed7d89bb42ca42da071a4107ed5fdf60762ab67c0c8300cc827bd"} -2023-12-16T14:37:08.624Z INFO initializing dbft {"height": 8884, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:08.625Z debug frostfs-node/morph.go:229 new block {"index": 8883} -2023-12-16T14:37:08.774Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8883, "blockHeight": 8883, "took": "5.548232ms"} -2023-12-16T14:37:09.624Z INFO sending PrepareRequest {"height": 8884, "view": 0} -2023-12-16T14:37:09.624Z INFO sending Commit {"height": 8884, "view": 0} -2023-12-16T14:37:09.625Z INFO approving block {"height": 8884, "hash": "3e209d0274c2f01e12781abadd141c269a1e59b21d07bd38eba05dfe976be50d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe47e88ce9ea093cdcfd2430c791d8d3e2b6dad49ad503985b81fbc9f3e91d47"} -2023-12-16T14:37:09.627Z INFO initializing dbft {"height": 8885, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:09.627Z debug frostfs-node/morph.go:229 new block {"index": 8884} -2023-12-16T14:37:09.774Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8884, "blockHeight": 8884, "took": "4.610052ms"} -2023-12-16T14:37:10.625Z INFO sending PrepareRequest {"height": 8885, "view": 0} -2023-12-16T14:37:10.625Z INFO sending Commit {"height": 8885, "view": 0} -2023-12-16T14:37:10.626Z INFO approving block {"height": 8885, "hash": "c345d42fdca2718cd95bd2a397ebc65f5e2ac568f872a7e45613122560f9803c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e209d0274c2f01e12781abadd141c269a1e59b21d07bd38eba05dfe976be50d"} -2023-12-16T14:37:10.626Z INFO initializing dbft {"height": 8886, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:10.627Z debug frostfs-node/morph.go:229 new block {"index": 8885} -2023-12-16T14:37:10.773Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8885, "blockHeight": 8885, "took": "3.624926ms"} -2023-12-16T14:37:11.626Z INFO sending PrepareRequest {"height": 8886, "view": 0} -2023-12-16T14:37:11.627Z INFO sending Commit {"height": 8886, "view": 0} -2023-12-16T14:37:11.627Z INFO approving block {"height": 8886, "hash": "d706c23376a9d4c1505850439e354a92b0ddb829c92cd1c521ba2e2dbc8d457e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c345d42fdca2718cd95bd2a397ebc65f5e2ac568f872a7e45613122560f9803c"} -2023-12-16T14:37:11.628Z INFO initializing dbft {"height": 8887, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:11.628Z debug frostfs-node/morph.go:229 new block {"index": 8886} -2023-12-16T14:37:11.776Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8886, "blockHeight": 8886, "took": "5.649287ms"} -2023-12-16T14:37:12.628Z INFO sending PrepareRequest {"height": 8887, "view": 0} -2023-12-16T14:37:12.628Z INFO sending Commit {"height": 8887, "view": 0} -2023-12-16T14:37:12.629Z INFO approving block {"height": 8887, "hash": "3b0fddef328aeb58e40b40f9d2295db8b6e7ee9e3e1ec33902a8abf4b14cfe3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d706c23376a9d4c1505850439e354a92b0ddb829c92cd1c521ba2e2dbc8d457e"} -2023-12-16T14:37:12.629Z INFO initializing dbft {"height": 8888, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:12.630Z debug frostfs-node/morph.go:229 new block {"index": 8887} -2023-12-16T14:37:12.776Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8887, "blockHeight": 8887, "took": "5.209732ms"} -2023-12-16T14:37:13.630Z INFO sending PrepareRequest {"height": 8888, "view": 0} -2023-12-16T14:37:13.630Z INFO sending Commit {"height": 8888, "view": 0} -2023-12-16T14:37:13.631Z INFO approving block {"height": 8888, "hash": "2e1235305ef5205a15a485bb44b0e5f22ea4fb4839c0e3d8f3e054ce6ba48645", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b0fddef328aeb58e40b40f9d2295db8b6e7ee9e3e1ec33902a8abf4b14cfe3f"} -2023-12-16T14:37:13.632Z INFO initializing dbft {"height": 8889, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:13.633Z debug frostfs-node/morph.go:229 new block {"index": 8888} -2023-12-16T14:37:13.780Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8888, "blockHeight": 8888, "took": "7.397496ms"} -2023-12-16T14:37:14.633Z INFO sending PrepareRequest {"height": 8889, "view": 0} -2023-12-16T14:37:14.633Z INFO sending Commit {"height": 8889, "view": 0} -2023-12-16T14:37:14.633Z INFO approving block {"height": 8889, "hash": "14707943716d005663d63baca3a8962aa5f639df594fb55c943f00c28da804d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e1235305ef5205a15a485bb44b0e5f22ea4fb4839c0e3d8f3e054ce6ba48645"} -2023-12-16T14:37:14.635Z INFO initializing dbft {"height": 8890, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:14.635Z debug frostfs-node/morph.go:229 new block {"index": 8889} -2023-12-16T14:37:14.778Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8889, "blockHeight": 8889, "took": "5.275934ms"} -2023-12-16T14:37:15.634Z INFO sending PrepareRequest {"height": 8890, "view": 0} -2023-12-16T14:37:15.634Z INFO sending Commit {"height": 8890, "view": 0} -2023-12-16T14:37:15.634Z INFO approving block {"height": 8890, "hash": "2caa089d037bf13c1619f1e8dcb9cff1d525ae4bc316cba1de5936ceb79600c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14707943716d005663d63baca3a8962aa5f639df594fb55c943f00c28da804d1"} -2023-12-16T14:37:15.635Z INFO initializing dbft {"height": 8891, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:15.636Z debug frostfs-node/morph.go:229 new block {"index": 8890} -2023-12-16T14:37:15.778Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8890, "blockHeight": 8890, "took": "4.78676ms"} -2023-12-16T14:37:16.636Z INFO sending PrepareRequest {"height": 8891, "view": 0} -2023-12-16T14:37:16.636Z INFO sending Commit {"height": 8891, "view": 0} -2023-12-16T14:37:16.636Z INFO approving block {"height": 8891, "hash": "844371844feb32b6bfe6cd34aff2ff41912babdd7329e3ccaa7f8666cc4330a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2caa089d037bf13c1619f1e8dcb9cff1d525ae4bc316cba1de5936ceb79600c3"} -2023-12-16T14:37:16.637Z INFO initializing dbft {"height": 8892, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:16.638Z debug frostfs-node/morph.go:229 new block {"index": 8891} -2023-12-16T14:37:16.778Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8891, "blockHeight": 8891, "took": "4.356107ms"} -2023-12-16T14:37:17.637Z INFO sending PrepareRequest {"height": 8892, "view": 0} -2023-12-16T14:37:17.638Z INFO sending Commit {"height": 8892, "view": 0} -2023-12-16T14:37:17.638Z INFO approving block {"height": 8892, "hash": "9891f1b866c280c46c491123f68f682f57580f6dec33004680f28556833fb901", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "844371844feb32b6bfe6cd34aff2ff41912babdd7329e3ccaa7f8666cc4330a5"} -2023-12-16T14:37:17.639Z INFO initializing dbft {"height": 8893, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:17.639Z debug frostfs-node/morph.go:229 new block {"index": 8892} -2023-12-16T14:37:17.779Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8892, "blockHeight": 8892, "took": "4.433269ms"} -2023-12-16T14:37:18.639Z INFO sending PrepareRequest {"height": 8893, "view": 0} -2023-12-16T14:37:18.639Z INFO sending Commit {"height": 8893, "view": 0} -2023-12-16T14:37:18.639Z INFO approving block {"height": 8893, "hash": "7fcadc8eee210e453dad9822f27a4f3fc989872d4a5f27b68adf4d5cc6b4a2c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9891f1b866c280c46c491123f68f682f57580f6dec33004680f28556833fb901"} -2023-12-16T14:37:18.640Z INFO initializing dbft {"height": 8894, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:18.641Z debug frostfs-node/morph.go:229 new block {"index": 8893} -2023-12-16T14:37:18.780Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8893, "blockHeight": 8893, "took": "4.606685ms"} -2023-12-16T14:37:19.640Z INFO sending PrepareRequest {"height": 8894, "view": 0} -2023-12-16T14:37:19.640Z INFO sending Commit {"height": 8894, "view": 0} -2023-12-16T14:37:19.641Z INFO approving block {"height": 8894, "hash": "427b99c7321c9ea72562eafe979ae28f984e2758e51a87e77dc20d0aac81045d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7fcadc8eee210e453dad9822f27a4f3fc989872d4a5f27b68adf4d5cc6b4a2c2"} -2023-12-16T14:37:19.642Z INFO initializing dbft {"height": 8895, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:19.642Z debug frostfs-node/morph.go:229 new block {"index": 8894} -2023-12-16T14:37:19.779Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8894, "blockHeight": 8894, "took": "3.991889ms"} -2023-12-16T14:37:20.642Z INFO sending PrepareRequest {"height": 8895, "view": 0} -2023-12-16T14:37:20.642Z INFO sending Commit {"height": 8895, "view": 0} -2023-12-16T14:37:20.642Z INFO approving block {"height": 8895, "hash": "af42736a2a38a67eae3f5613dafeee92e58c9b474b74d1f1a09212df276c8b25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "427b99c7321c9ea72562eafe979ae28f984e2758e51a87e77dc20d0aac81045d"} -2023-12-16T14:37:20.643Z INFO initializing dbft {"height": 8896, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:20.644Z debug frostfs-node/morph.go:229 new block {"index": 8895} -2023-12-16T14:37:20.781Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8895, "blockHeight": 8895, "took": "4.958104ms"} -2023-12-16T14:37:21.643Z INFO sending PrepareRequest {"height": 8896, "view": 0} -2023-12-16T14:37:21.644Z INFO sending Commit {"height": 8896, "view": 0} -2023-12-16T14:37:21.644Z INFO approving block {"height": 8896, "hash": "f3999ab796947559e667583f6e5a68b9796ac6f39f02ec2e323930a60811e4e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af42736a2a38a67eae3f5613dafeee92e58c9b474b74d1f1a09212df276c8b25"} -2023-12-16T14:37:21.645Z INFO initializing dbft {"height": 8897, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:21.646Z debug frostfs-node/morph.go:229 new block {"index": 8896} -2023-12-16T14:37:21.784Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8896, "blockHeight": 8896, "took": "6.81973ms"} -2023-12-16T14:37:22.645Z INFO sending PrepareRequest {"height": 8897, "view": 0} -2023-12-16T14:37:22.645Z INFO sending Commit {"height": 8897, "view": 0} -2023-12-16T14:37:22.646Z INFO approving block {"height": 8897, "hash": "222ea5231fc9fca98ede87e32b5ad315f210f5352c226123bc01242a13f15e1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3999ab796947559e667583f6e5a68b9796ac6f39f02ec2e323930a60811e4e3"} -2023-12-16T14:37:22.647Z INFO initializing dbft {"height": 8898, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:22.647Z debug frostfs-node/morph.go:229 new block {"index": 8897} -2023-12-16T14:37:22.782Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8897, "blockHeight": 8897, "took": "4.036577ms"} -2023-12-16T14:37:23.647Z INFO sending PrepareRequest {"height": 8898, "view": 0} -2023-12-16T14:37:23.647Z INFO sending Commit {"height": 8898, "view": 0} -2023-12-16T14:37:23.648Z INFO approving block {"height": 8898, "hash": "5a876beeb9a73f5c19011ac1b5b1236c97a241cbaef2ed3888ee4404a7210dfd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "222ea5231fc9fca98ede87e32b5ad315f210f5352c226123bc01242a13f15e1a"} -2023-12-16T14:37:23.649Z INFO initializing dbft {"height": 8899, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:23.650Z debug frostfs-node/morph.go:229 new block {"index": 8898} -2023-12-16T14:37:23.784Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8898, "blockHeight": 8898, "took": "5.079308ms"} -2023-12-16T14:37:24.649Z INFO sending PrepareRequest {"height": 8899, "view": 0} -2023-12-16T14:37:24.649Z INFO sending Commit {"height": 8899, "view": 0} -2023-12-16T14:37:24.649Z INFO approving block {"height": 8899, "hash": "cfcca418fbe9e8a839e911c0ff191124f95be9ccee9cb02ec5398f4e3ba464a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a876beeb9a73f5c19011ac1b5b1236c97a241cbaef2ed3888ee4404a7210dfd"} -2023-12-16T14:37:24.650Z INFO initializing dbft {"height": 8900, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:24.651Z debug frostfs-node/morph.go:229 new block {"index": 8899} -2023-12-16T14:37:24.786Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8899, "blockHeight": 8899, "took": "5.692866ms"} -2023-12-16T14:37:25.651Z INFO sending PrepareRequest {"height": 8900, "view": 0} -2023-12-16T14:37:25.651Z INFO sending Commit {"height": 8900, "view": 0} -2023-12-16T14:37:25.652Z INFO approving block {"height": 8900, "hash": "8a77de7fbfb7cff1dbc98d728eb59b821bd6e73b250a82ab39e6c11a765e44f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cfcca418fbe9e8a839e911c0ff191124f95be9ccee9cb02ec5398f4e3ba464a9"} -2023-12-16T14:37:25.653Z INFO initializing dbft {"height": 8901, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:25.654Z debug frostfs-node/morph.go:229 new block {"index": 8900} -2023-12-16T14:37:25.657Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:37:25.661Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:37:25.661Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:37:25.788Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8900, "blockHeight": 8900, "took": "7.210101ms"} -2023-12-16T14:37:26.653Z INFO sending PrepareRequest {"height": 8901, "view": 0} -2023-12-16T14:37:26.653Z INFO sending Commit {"height": 8901, "view": 0} -2023-12-16T14:37:26.653Z INFO approving block {"height": 8901, "hash": "c54208d519b804a0e747bedaa30e247df85e758f1578d5db4401353bbbe89f06", "tx_count": 2, "merkle": "301029c1a98afb62e86d65b02528bfcf2b51a260949956a9bb0cf71f67be6dcd", "prev": "8a77de7fbfb7cff1dbc98d728eb59b821bd6e73b250a82ab39e6c11a765e44f6"} -2023-12-16T14:37:26.655Z INFO runtime log {"tx": "4fc7d51e78475a6c1354d2a2efba75bb0701732112cb04c01cb0379cdae5d91f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:37:26.655Z INFO runtime log {"tx": "4fc7d51e78475a6c1354d2a2efba75bb0701732112cb04c01cb0379cdae5d91f", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:37:26.656Z INFO initializing dbft {"height": 8902, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:26.656Z debug frostfs-node/morph.go:229 new block {"index": 8901} -2023-12-16T14:37:26.788Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8901, "blockHeight": 8901, "took": "5.917913ms"} -2023-12-16T14:37:27.655Z INFO sending PrepareRequest {"height": 8902, "view": 0} -2023-12-16T14:37:27.655Z INFO sending Commit {"height": 8902, "view": 0} -2023-12-16T14:37:27.656Z INFO approving block {"height": 8902, "hash": "6a86576a20ca33e87287fac4b8b329a4f98eaa7e9c16f44395f8fda74274b501", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c54208d519b804a0e747bedaa30e247df85e758f1578d5db4401353bbbe89f06"} -2023-12-16T14:37:27.657Z INFO initializing dbft {"height": 8903, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:27.658Z debug frostfs-node/morph.go:229 new block {"index": 8902} -2023-12-16T14:37:27.786Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8902, "blockHeight": 8902, "took": "3.385248ms"} -2023-12-16T14:37:28.657Z INFO sending PrepareRequest {"height": 8903, "view": 0} -2023-12-16T14:37:28.657Z INFO sending Commit {"height": 8903, "view": 0} -2023-12-16T14:37:28.658Z INFO approving block {"height": 8903, "hash": "232068cdb2f57ae0e1d904b96fab1e528b6002a284456324316202fac297e4ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a86576a20ca33e87287fac4b8b329a4f98eaa7e9c16f44395f8fda74274b501"} -2023-12-16T14:37:28.659Z INFO initializing dbft {"height": 8904, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:28.660Z debug frostfs-node/morph.go:229 new block {"index": 8903} -2023-12-16T14:37:28.787Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8903, "blockHeight": 8903, "took": "3.597085ms"} -2023-12-16T14:37:29.659Z INFO sending PrepareRequest {"height": 8904, "view": 0} -2023-12-16T14:37:29.659Z INFO sending Commit {"height": 8904, "view": 0} -2023-12-16T14:37:29.660Z INFO approving block {"height": 8904, "hash": "5ecbc87fd0c6181099bb16a06bc266c670e02f31ad4123df3b22323b9b8bd489", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "232068cdb2f57ae0e1d904b96fab1e528b6002a284456324316202fac297e4ee"} -2023-12-16T14:37:29.661Z INFO initializing dbft {"height": 8905, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:29.661Z debug frostfs-node/morph.go:229 new block {"index": 8904} -2023-12-16T14:37:29.789Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8904, "blockHeight": 8904, "took": "4.967554ms"} -2023-12-16T14:37:30.661Z INFO sending PrepareRequest {"height": 8905, "view": 0} -2023-12-16T14:37:30.661Z INFO sending Commit {"height": 8905, "view": 0} -2023-12-16T14:37:30.661Z INFO approving block {"height": 8905, "hash": "ded553041fa3345d1bcb53244be4c3087eb6547c33e56b93f58ba84379d49eb8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ecbc87fd0c6181099bb16a06bc266c670e02f31ad4123df3b22323b9b8bd489"} -2023-12-16T14:37:30.663Z INFO initializing dbft {"height": 8906, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:30.663Z debug frostfs-node/morph.go:229 new block {"index": 8905} -2023-12-16T14:37:30.790Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8905, "blockHeight": 8905, "took": "5.126959ms"} -2023-12-16T14:37:31.662Z INFO sending PrepareRequest {"height": 8906, "view": 0} -2023-12-16T14:37:31.662Z INFO sending Commit {"height": 8906, "view": 0} -2023-12-16T14:37:31.663Z INFO approving block {"height": 8906, "hash": "1045b7f6dc158b5105232c9e06d02dd2ede2cef18036f5a12e9a339ee5085e15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ded553041fa3345d1bcb53244be4c3087eb6547c33e56b93f58ba84379d49eb8"} -2023-12-16T14:37:31.664Z INFO initializing dbft {"height": 8907, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:31.665Z debug frostfs-node/morph.go:229 new block {"index": 8906} -2023-12-16T14:37:31.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8906, "blockHeight": 8906, "took": "7.113597ms"} -2023-12-16T14:37:32.664Z INFO sending PrepareRequest {"height": 8907, "view": 0} -2023-12-16T14:37:32.664Z INFO sending Commit {"height": 8907, "view": 0} -2023-12-16T14:37:32.664Z INFO approving block {"height": 8907, "hash": "5d2e1938574051c8de079519971f440e07134f96594f1d2565ab0284d4d34903", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1045b7f6dc158b5105232c9e06d02dd2ede2cef18036f5a12e9a339ee5085e15"} -2023-12-16T14:37:32.665Z INFO initializing dbft {"height": 8908, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:32.665Z debug frostfs-node/morph.go:229 new block {"index": 8907} -2023-12-16T14:37:32.790Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8907, "blockHeight": 8907, "took": "3.822521ms"} -2023-12-16T14:37:33.665Z INFO sending PrepareRequest {"height": 8908, "view": 0} -2023-12-16T14:37:33.665Z INFO sending Commit {"height": 8908, "view": 0} -2023-12-16T14:37:33.665Z INFO approving block {"height": 8908, "hash": "4f06aa274255a829f9d803e1923796f370e9e7bd307e8117df2e24520264a1a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5d2e1938574051c8de079519971f440e07134f96594f1d2565ab0284d4d34903"} -2023-12-16T14:37:33.666Z INFO initializing dbft {"height": 8909, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:33.666Z debug frostfs-node/morph.go:229 new block {"index": 8908} -2023-12-16T14:37:33.791Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8908, "blockHeight": 8908, "took": "3.750697ms"} -2023-12-16T14:37:34.667Z INFO sending PrepareRequest {"height": 8909, "view": 0} -2023-12-16T14:37:34.667Z INFO sending Commit {"height": 8909, "view": 0} -2023-12-16T14:37:34.668Z INFO approving block {"height": 8909, "hash": "658c92c329d07f99639a533a88273d056c3b91990d271e4d5426c8222a274ab4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f06aa274255a829f9d803e1923796f370e9e7bd307e8117df2e24520264a1a1"} -2023-12-16T14:37:34.669Z INFO initializing dbft {"height": 8910, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:34.670Z debug frostfs-node/morph.go:229 new block {"index": 8909} -2023-12-16T14:37:34.795Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8909, "blockHeight": 8909, "took": "7.879099ms"} -2023-12-16T14:37:35.669Z INFO sending PrepareRequest {"height": 8910, "view": 0} -2023-12-16T14:37:35.669Z INFO sending Commit {"height": 8910, "view": 0} -2023-12-16T14:37:35.669Z INFO approving block {"height": 8910, "hash": "1cedc1feb8038e0adb271a6486e00036377ae680aebf486bf1e96f35d564ece4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "658c92c329d07f99639a533a88273d056c3b91990d271e4d5426c8222a274ab4"} -2023-12-16T14:37:35.670Z INFO initializing dbft {"height": 8911, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:35.670Z debug frostfs-node/morph.go:229 new block {"index": 8910} -2023-12-16T14:37:35.791Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8910, "blockHeight": 8910, "took": "3.327557ms"} -2023-12-16T14:37:36.670Z INFO sending PrepareRequest {"height": 8911, "view": 0} -2023-12-16T14:37:36.670Z INFO sending Commit {"height": 8911, "view": 0} -2023-12-16T14:37:36.671Z INFO approving block {"height": 8911, "hash": "879e8ae669b7985bc89c2b63187f4ce22a2a62ffec976472cf82ffa1a94fbad5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cedc1feb8038e0adb271a6486e00036377ae680aebf486bf1e96f35d564ece4"} -2023-12-16T14:37:36.671Z INFO initializing dbft {"height": 8912, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:36.672Z debug frostfs-node/morph.go:229 new block {"index": 8911} -2023-12-16T14:37:36.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8911, "blockHeight": 8911, "took": "3.342792ms"} -2023-12-16T14:37:37.672Z INFO sending PrepareRequest {"height": 8912, "view": 0} -2023-12-16T14:37:37.672Z INFO sending Commit {"height": 8912, "view": 0} -2023-12-16T14:37:37.672Z INFO approving block {"height": 8912, "hash": "4bdc6b42872095e594f5ac0b31cc2dc4d7ecba632c3df18f81d58f64cffa710f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "879e8ae669b7985bc89c2b63187f4ce22a2a62ffec976472cf82ffa1a94fbad5"} -2023-12-16T14:37:37.673Z INFO initializing dbft {"height": 8913, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:37.673Z debug frostfs-node/morph.go:229 new block {"index": 8912} -2023-12-16T14:37:37.792Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8912, "blockHeight": 8912, "took": "3.560714ms"} -2023-12-16T14:37:38.673Z INFO sending PrepareRequest {"height": 8913, "view": 0} -2023-12-16T14:37:38.673Z INFO sending Commit {"height": 8913, "view": 0} -2023-12-16T14:37:38.673Z INFO approving block {"height": 8913, "hash": "36c4d196040035fa6236ffa7089ec0bab2946817b5edf29f73745af945197b6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bdc6b42872095e594f5ac0b31cc2dc4d7ecba632c3df18f81d58f64cffa710f"} -2023-12-16T14:37:38.674Z INFO initializing dbft {"height": 8914, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:38.675Z debug frostfs-node/morph.go:229 new block {"index": 8913} -2023-12-16T14:37:38.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8913, "blockHeight": 8913, "took": "4.686989ms"} -2023-12-16T14:37:39.675Z INFO sending PrepareRequest {"height": 8914, "view": 0} -2023-12-16T14:37:39.675Z INFO sending Commit {"height": 8914, "view": 0} -2023-12-16T14:37:39.675Z INFO approving block {"height": 8914, "hash": "d0c2e6590dfeee8f34bb5245dc128699da55b4ce6c243211fd5cf446940bab66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36c4d196040035fa6236ffa7089ec0bab2946817b5edf29f73745af945197b6b"} -2023-12-16T14:37:39.676Z debug frostfs-node/morph.go:229 new block {"index": 8914} -2023-12-16T14:37:39.676Z INFO initializing dbft {"height": 8915, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:39.794Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8914, "blockHeight": 8914, "took": "3.936535ms"} -2023-12-16T14:37:40.676Z INFO sending PrepareRequest {"height": 8915, "view": 0} -2023-12-16T14:37:40.676Z INFO sending Commit {"height": 8915, "view": 0} -2023-12-16T14:37:40.676Z INFO approving block {"height": 8915, "hash": "07135dc0b1477535f28694053c29e6db9b62bf6ab9f09803dbbb573bdbb0942a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0c2e6590dfeee8f34bb5245dc128699da55b4ce6c243211fd5cf446940bab66"} -2023-12-16T14:37:40.677Z INFO initializing dbft {"height": 8916, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:40.678Z debug frostfs-node/morph.go:229 new block {"index": 8915} -2023-12-16T14:37:40.680Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:37:40.681Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 37, "iteration": 3, "error": "no data for 2 iteration in 37 epoch for consumers's trusts"} -2023-12-16T14:37:40.683Z INFO runtime log {"tx": "9a49f7f12e7af5cc437d2625795bbff14823d1f4c1a52fc305f15640c362a405", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:37:40.795Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8915, "blockHeight": 8915, "took": "4.160112ms"} -2023-12-16T14:37:41.677Z INFO sending PrepareRequest {"height": 8916, "view": 0} -2023-12-16T14:37:41.677Z INFO sending Commit {"height": 8916, "view": 0} -2023-12-16T14:37:41.677Z INFO approving block {"height": 8916, "hash": "ac695027475fb2a199598c17a1a54a9550fbcee4126c2ae99cbfff248e6323ae", "tx_count": 1, "merkle": "8606aeafb142f5cc0336ee291613c919fec455d16087d28ad8188db9a4a74071", "prev": "07135dc0b1477535f28694053c29e6db9b62bf6ab9f09803dbbb573bdbb0942a"} -2023-12-16T14:37:41.678Z INFO runtime log {"tx": "7140a7a4b98d18d88ad28760d155c4fe19c9131629ee3603ccf542b1afae0686", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:37:41.679Z INFO initializing dbft {"height": 8917, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:41.679Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 39} -2023-12-16T14:37:41.680Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 39} -2023-12-16T14:37:41.680Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:37:41.680Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 39} -2023-12-16T14:37:41.680Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 39} -2023-12-16T14:37:41.680Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 39} -2023-12-16T14:37:41.680Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-16T14:37:41.680Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:37:41.680Z debug controller/calls.go:95 starting to report local trust values {"epoch": 38} -2023-12-16T14:37:41.680Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 38} -2023-12-16T14:37:41.680Z debug frostfs-node/morph.go:229 new block {"index": 8916} -2023-12-16T14:37:41.683Z debug controller/calls.go:146 reporting successfully finished {"epoch": 38} -2023-12-16T14:37:41.683Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 38} -2023-12-16T14:37:41.684Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:37:41.685Z INFO runtime log {"tx": "aefcf66a23477d84502c3c229a8d71621f5e752dd3825bab8486b649e4aba782", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:37:41.689Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 8919, "tx_hash": "4748cef9b03cccd406a9440264307863303e9be41da16c3511dc91afc8e30e9e"} -2023-12-16T14:37:41.695Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:37:41.695Z info audit/handlers.go:13 new round of audit {"epoch": 39} -2023-12-16T14:37:41.695Z info settlement/calls.go:26 new audit settlement event {"epoch": 39} -2023-12-16T14:37:41.695Z info settlement/handlers.go:14 process audit settlements {"epoch": 39} -2023-12-16T14:37:41.695Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 39} -2023-12-16T14:37:41.696Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 9000, "fallback_valid_for": 40, "tx_hash": "f9ead3f452e2599c5f61f29a7458fc70d32c40a72ab46dc96beca7b51a576e8b"} -2023-12-16T14:37:41.697Z info settlement/handlers.go:18 audit processing finished {"epoch": 39} -2023-12-16T14:37:41.698Z info audit/process.go:39 select containers for audit {"epoch": 39, "amount": 0} -2023-12-16T14:37:41.698Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-16T14:37:41.700Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 8919, "tx_hash": "782217002a58e464c4596bc286db85fc8e6fe2cc313dc01a764019635a1455d5"} -2023-12-16T14:37:41.799Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 8916, "blockHeight": 8916, "took": "6.942913ms"} -2023-12-16T14:37:42.678Z INFO sending PrepareRequest {"height": 8917, "view": 0} -2023-12-16T14:37:42.678Z INFO sending Commit {"height": 8917, "view": 0} -2023-12-16T14:37:42.678Z INFO approving block {"height": 8917, "hash": "7565c7bd9ef39f487e75514b64919038b804cd8ae10bd3091b51074d205c4e77", "tx_count": 3, "merkle": "91e563fb9150dbc9e92e0b9599e9c9466910f711cf69ea5897c970571f36c9a2", "prev": "ac695027475fb2a199598c17a1a54a9550fbcee4126c2ae99cbfff248e6323ae"} -2023-12-16T14:37:42.679Z INFO runtime log {"tx": "cb09a03dace0a537802337c67da914dc32bf8b484127c302c4995602af2b7a88", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:37:42.680Z INFO initializing dbft {"height": 8918, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:42.681Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 38} -2023-12-16T14:37:42.681Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 38} -2023-12-16T14:37:42.681Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 38} -2023-12-16T14:37:42.681Z debug frostfs-node/morph.go:229 new block {"index": 8917} -2023-12-16T14:37:42.799Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 8917, "blockHeight": 8917, "took": "6.868671ms"} -2023-12-16T14:37:43.679Z INFO sending PrepareRequest {"height": 8918, "view": 0} -2023-12-16T14:37:43.680Z INFO sending Commit {"height": 8918, "view": 0} -2023-12-16T14:37:43.680Z INFO approving block {"height": 8918, "hash": "1a20fafefbd3922ab5e642bb882c67bb120468826ede458e8a02e5004fdd2661", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7565c7bd9ef39f487e75514b64919038b804cd8ae10bd3091b51074d205c4e77"} -2023-12-16T14:37:43.681Z INFO initializing dbft {"height": 8919, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:43.681Z debug frostfs-node/morph.go:229 new block {"index": 8918} -2023-12-16T14:37:43.797Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8918, "blockHeight": 8918, "took": "4.300825ms"} -2023-12-16T14:37:44.681Z INFO sending PrepareRequest {"height": 8919, "view": 0} -2023-12-16T14:37:44.681Z INFO sending Commit {"height": 8919, "view": 0} -2023-12-16T14:37:44.681Z INFO approving block {"height": 8919, "hash": "d7711e0b83bb9a2d9d54d8bb26e64426baf911d94666afa452ebf20c3e3832da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a20fafefbd3922ab5e642bb882c67bb120468826ede458e8a02e5004fdd2661"} -2023-12-16T14:37:44.682Z INFO initializing dbft {"height": 8920, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:44.682Z debug frostfs-node/morph.go:229 new block {"index": 8919} -2023-12-16T14:37:44.800Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8919, "blockHeight": 8919, "took": "7.361955ms"} -2023-12-16T14:37:45.683Z INFO sending PrepareRequest {"height": 8920, "view": 0} -2023-12-16T14:37:45.683Z INFO sending Commit {"height": 8920, "view": 0} -2023-12-16T14:37:45.683Z INFO approving block {"height": 8920, "hash": "3728ba763e62380e4f9c1c018fad2085a676618068ac505e5cba375fee584d64", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d7711e0b83bb9a2d9d54d8bb26e64426baf911d94666afa452ebf20c3e3832da"} -2023-12-16T14:37:45.685Z INFO initializing dbft {"height": 8921, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:45.685Z debug frostfs-node/morph.go:229 new block {"index": 8920} -2023-12-16T14:37:45.798Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8920, "blockHeight": 8920, "took": "4.692907ms"} -2023-12-16T14:37:46.684Z INFO sending PrepareRequest {"height": 8921, "view": 0} -2023-12-16T14:37:46.684Z INFO sending Commit {"height": 8921, "view": 0} -2023-12-16T14:37:46.684Z INFO approving block {"height": 8921, "hash": "1cc177cb4dcdcf342afd5ee10f4f0f46bb1b625dbbd100fc01ad6ecb6e16e1e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3728ba763e62380e4f9c1c018fad2085a676618068ac505e5cba375fee584d64"} -2023-12-16T14:37:46.685Z INFO initializing dbft {"height": 8922, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:46.686Z debug frostfs-node/morph.go:229 new block {"index": 8921} -2023-12-16T14:37:46.797Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8921, "blockHeight": 8921, "took": "3.149123ms"} -2023-12-16T14:37:47.685Z INFO sending PrepareRequest {"height": 8922, "view": 0} -2023-12-16T14:37:47.685Z INFO sending Commit {"height": 8922, "view": 0} -2023-12-16T14:37:47.686Z INFO approving block {"height": 8922, "hash": "f233a7dbf0154d09dd45e50b4ea3724888612299b317d01c204a543f76650bf6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cc177cb4dcdcf342afd5ee10f4f0f46bb1b625dbbd100fc01ad6ecb6e16e1e0"} -2023-12-16T14:37:47.687Z INFO initializing dbft {"height": 8923, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:47.687Z debug frostfs-node/morph.go:229 new block {"index": 8922} -2023-12-16T14:37:47.800Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8922, "blockHeight": 8922, "took": "5.900823ms"} -2023-12-16T14:37:48.687Z INFO sending PrepareRequest {"height": 8923, "view": 0} -2023-12-16T14:37:48.687Z INFO sending Commit {"height": 8923, "view": 0} -2023-12-16T14:37:48.687Z INFO approving block {"height": 8923, "hash": "9f7078e02a84375f34e436bfd532cd79c082fb7c58cad4c5d661cd555e2b1eef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f233a7dbf0154d09dd45e50b4ea3724888612299b317d01c204a543f76650bf6"} -2023-12-16T14:37:48.688Z INFO initializing dbft {"height": 8924, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:48.689Z debug frostfs-node/morph.go:229 new block {"index": 8923} -2023-12-16T14:37:48.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8923, "blockHeight": 8923, "took": "6.155839ms"} -2023-12-16T14:37:49.688Z INFO sending PrepareRequest {"height": 8924, "view": 0} -2023-12-16T14:37:49.688Z INFO sending Commit {"height": 8924, "view": 0} -2023-12-16T14:37:49.688Z INFO approving block {"height": 8924, "hash": "ef05a50b936bd3e782acf805051f0d5d9eb1442a2dddf4908fe9669b49b14236", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f7078e02a84375f34e436bfd532cd79c082fb7c58cad4c5d661cd555e2b1eef"} -2023-12-16T14:37:49.689Z INFO initializing dbft {"height": 8925, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:49.690Z debug frostfs-node/morph.go:229 new block {"index": 8924} -2023-12-16T14:37:49.800Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8924, "blockHeight": 8924, "took": "4.96418ms"} -2023-12-16T14:37:50.689Z INFO sending PrepareRequest {"height": 8925, "view": 0} -2023-12-16T14:37:50.689Z INFO sending Commit {"height": 8925, "view": 0} -2023-12-16T14:37:50.689Z INFO approving block {"height": 8925, "hash": "7720c330c57bff6cbd356864b2e6a73ac58e767f32f5434c9c6e82e4675c625b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef05a50b936bd3e782acf805051f0d5d9eb1442a2dddf4908fe9669b49b14236"} -2023-12-16T14:37:50.690Z INFO initializing dbft {"height": 8926, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:50.690Z debug frostfs-node/morph.go:229 new block {"index": 8925} -2023-12-16T14:37:50.799Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8925, "blockHeight": 8925, "took": "3.324897ms"} -2023-12-16T14:37:51.690Z INFO sending PrepareRequest {"height": 8926, "view": 0} -2023-12-16T14:37:51.690Z INFO sending Commit {"height": 8926, "view": 0} -2023-12-16T14:37:51.691Z INFO approving block {"height": 8926, "hash": "a7629221484b920009cfb8001d645deb46f5305c929f0ea6ababdb930b007c66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7720c330c57bff6cbd356864b2e6a73ac58e767f32f5434c9c6e82e4675c625b"} -2023-12-16T14:37:51.691Z INFO initializing dbft {"height": 8927, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:51.692Z debug frostfs-node/morph.go:229 new block {"index": 8926} -2023-12-16T14:37:51.801Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8926, "blockHeight": 8926, "took": "4.379692ms"} -2023-12-16T14:37:52.691Z INFO sending PrepareRequest {"height": 8927, "view": 0} -2023-12-16T14:37:52.691Z INFO sending Commit {"height": 8927, "view": 0} -2023-12-16T14:37:52.692Z INFO approving block {"height": 8927, "hash": "3d4722c5d4b26ea87615a18ff4c693775c4cf7b9780aa6251c61209009dbd00b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7629221484b920009cfb8001d645deb46f5305c929f0ea6ababdb930b007c66"} -2023-12-16T14:37:52.693Z INFO initializing dbft {"height": 8928, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:52.693Z debug frostfs-node/morph.go:229 new block {"index": 8927} -2023-12-16T14:37:52.802Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8927, "blockHeight": 8927, "took": "4.621008ms"} -2023-12-16T14:37:53.693Z INFO sending PrepareRequest {"height": 8928, "view": 0} -2023-12-16T14:37:53.693Z INFO sending Commit {"height": 8928, "view": 0} -2023-12-16T14:37:53.693Z INFO approving block {"height": 8928, "hash": "ced6cdc53fa4600adbbeb01ca85553d6010d10c42582c7f2e4cb6b2e278cc5e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d4722c5d4b26ea87615a18ff4c693775c4cf7b9780aa6251c61209009dbd00b"} -2023-12-16T14:37:53.696Z INFO initializing dbft {"height": 8929, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:53.697Z debug frostfs-node/morph.go:229 new block {"index": 8928} -2023-12-16T14:37:53.803Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8928, "blockHeight": 8928, "took": "3.786615ms"} -2023-12-16T14:37:54.694Z INFO sending PrepareRequest {"height": 8929, "view": 0} -2023-12-16T14:37:54.694Z INFO sending Commit {"height": 8929, "view": 0} -2023-12-16T14:37:54.695Z INFO approving block {"height": 8929, "hash": "39063a5e1cd35748b363117ce9d1e91680dc2322a47145a7977db225bcde095c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ced6cdc53fa4600adbbeb01ca85553d6010d10c42582c7f2e4cb6b2e278cc5e3"} -2023-12-16T14:37:54.696Z INFO initializing dbft {"height": 8930, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:54.696Z debug frostfs-node/morph.go:229 new block {"index": 8929} -2023-12-16T14:37:54.803Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8929, "blockHeight": 8929, "took": "3.804641ms"} -2023-12-16T14:37:55.696Z INFO sending PrepareRequest {"height": 8930, "view": 0} -2023-12-16T14:37:55.696Z INFO sending Commit {"height": 8930, "view": 0} -2023-12-16T14:37:55.696Z INFO approving block {"height": 8930, "hash": "a7a70656796737a51f5c281c3eed4d337858e659713f2e1be6df7c046002dcab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39063a5e1cd35748b363117ce9d1e91680dc2322a47145a7977db225bcde095c"} -2023-12-16T14:37:55.697Z INFO initializing dbft {"height": 8931, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:55.697Z debug frostfs-node/morph.go:229 new block {"index": 8930} -2023-12-16T14:37:55.803Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8930, "blockHeight": 8930, "took": "3.592195ms"} -2023-12-16T14:37:56.697Z INFO sending PrepareRequest {"height": 8931, "view": 0} -2023-12-16T14:37:56.697Z INFO sending Commit {"height": 8931, "view": 0} -2023-12-16T14:37:56.697Z INFO approving block {"height": 8931, "hash": "2af9ebdcc5d768b9df0816ed0dd46d6b2b69a02d5bfdbce84385d65a59b05f5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7a70656796737a51f5c281c3eed4d337858e659713f2e1be6df7c046002dcab"} -2023-12-16T14:37:56.698Z INFO initializing dbft {"height": 8932, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:56.699Z debug frostfs-node/morph.go:229 new block {"index": 8931} -2023-12-16T14:37:56.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8931, "blockHeight": 8931, "took": "4.668768ms"} -2023-12-16T14:37:57.699Z INFO sending PrepareRequest {"height": 8932, "view": 0} -2023-12-16T14:37:57.699Z INFO sending Commit {"height": 8932, "view": 0} -2023-12-16T14:37:57.699Z INFO approving block {"height": 8932, "hash": "ef64d9228ead89425c7f8879a670a3b12895a6da5c3fb543b5acb5c99c2f7ca3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2af9ebdcc5d768b9df0816ed0dd46d6b2b69a02d5bfdbce84385d65a59b05f5b"} -2023-12-16T14:37:57.700Z INFO initializing dbft {"height": 8933, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:57.701Z debug frostfs-node/morph.go:229 new block {"index": 8932} -2023-12-16T14:37:57.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8932, "blockHeight": 8932, "took": "3.955415ms"} -2023-12-16T14:37:58.700Z INFO sending PrepareRequest {"height": 8933, "view": 0} -2023-12-16T14:37:58.700Z INFO sending Commit {"height": 8933, "view": 0} -2023-12-16T14:37:58.701Z INFO approving block {"height": 8933, "hash": "2b0681af7800d0569b1dc3f5c9baf20f2e3108db76122f66507edf407f23b401", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef64d9228ead89425c7f8879a670a3b12895a6da5c3fb543b5acb5c99c2f7ca3"} -2023-12-16T14:37:58.701Z INFO initializing dbft {"height": 8934, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:58.702Z debug frostfs-node/morph.go:229 new block {"index": 8933} -2023-12-16T14:37:58.805Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8933, "blockHeight": 8933, "took": "3.517363ms"} -2023-12-16T14:37:59.702Z INFO sending PrepareRequest {"height": 8934, "view": 0} -2023-12-16T14:37:59.702Z INFO sending Commit {"height": 8934, "view": 0} -2023-12-16T14:37:59.703Z INFO approving block {"height": 8934, "hash": "8760a0cf41de066b9327885f48beb5ba1c199c5e554083bce9604dc0cbc92fe2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b0681af7800d0569b1dc3f5c9baf20f2e3108db76122f66507edf407f23b401"} -2023-12-16T14:37:59.704Z INFO initializing dbft {"height": 8935, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:37:59.705Z debug frostfs-node/morph.go:229 new block {"index": 8934} -2023-12-16T14:37:59.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8934, "blockHeight": 8934, "took": "4.332446ms"} -2023-12-16T14:38:00.703Z INFO sending PrepareRequest {"height": 8935, "view": 0} -2023-12-16T14:38:00.703Z INFO sending Commit {"height": 8935, "view": 0} -2023-12-16T14:38:00.704Z INFO approving block {"height": 8935, "hash": "b3f77b4aef4a167965eaae30a1366f6be9abcac36b111bfb35d7497237d64f3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8760a0cf41de066b9327885f48beb5ba1c199c5e554083bce9604dc0cbc92fe2"} -2023-12-16T14:38:00.704Z INFO initializing dbft {"height": 8936, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:00.705Z debug frostfs-node/morph.go:229 new block {"index": 8935} -2023-12-16T14:38:00.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8935, "blockHeight": 8935, "took": "4.051999ms"} -2023-12-16T14:38:01.705Z INFO sending PrepareRequest {"height": 8936, "view": 0} -2023-12-16T14:38:01.705Z INFO sending Commit {"height": 8936, "view": 0} -2023-12-16T14:38:01.706Z INFO approving block {"height": 8936, "hash": "ba3d3d685775b2c32dfb470948f4fb66889a1cdcee3306ca74203e68489d741d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3f77b4aef4a167965eaae30a1366f6be9abcac36b111bfb35d7497237d64f3e"} -2023-12-16T14:38:01.707Z INFO initializing dbft {"height": 8937, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:01.708Z debug frostfs-node/morph.go:229 new block {"index": 8936} -2023-12-16T14:38:01.806Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8936, "blockHeight": 8936, "took": "3.631317ms"} -2023-12-16T14:38:02.706Z INFO sending PrepareRequest {"height": 8937, "view": 0} -2023-12-16T14:38:02.707Z INFO sending Commit {"height": 8937, "view": 0} -2023-12-16T14:38:02.707Z INFO approving block {"height": 8937, "hash": "2925b1dd6c722beae1a8b84d8e979d5e20b1a39202b3b54fe756f17f9ca72339", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba3d3d685775b2c32dfb470948f4fb66889a1cdcee3306ca74203e68489d741d"} -2023-12-16T14:38:02.708Z INFO initializing dbft {"height": 8938, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:02.709Z debug frostfs-node/morph.go:229 new block {"index": 8937} -2023-12-16T14:38:02.809Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8937, "blockHeight": 8937, "took": "5.56326ms"} -2023-12-16T14:38:03.708Z INFO sending PrepareRequest {"height": 8938, "view": 0} -2023-12-16T14:38:03.708Z INFO sending Commit {"height": 8938, "view": 0} -2023-12-16T14:38:03.708Z INFO approving block {"height": 8938, "hash": "470751fef734b8ec8c328fcfce1f1846b0fae280404f8fd1341d8fc3e6e12090", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2925b1dd6c722beae1a8b84d8e979d5e20b1a39202b3b54fe756f17f9ca72339"} -2023-12-16T14:38:03.710Z INFO initializing dbft {"height": 8939, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:03.711Z debug frostfs-node/morph.go:229 new block {"index": 8938} -2023-12-16T14:38:03.808Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8938, "blockHeight": 8938, "took": "4.179912ms"} -2023-12-16T14:38:04.709Z INFO sending PrepareRequest {"height": 8939, "view": 0} -2023-12-16T14:38:04.709Z INFO sending Commit {"height": 8939, "view": 0} -2023-12-16T14:38:04.709Z INFO approving block {"height": 8939, "hash": "0d5a319eaeed2dc659e5d747d98d86c2d9dcf12f5a27c7fedb624196780a3ba8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "470751fef734b8ec8c328fcfce1f1846b0fae280404f8fd1341d8fc3e6e12090"} -2023-12-16T14:38:04.711Z INFO initializing dbft {"height": 8940, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:04.711Z debug frostfs-node/morph.go:229 new block {"index": 8939} -2023-12-16T14:38:04.808Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8939, "blockHeight": 8939, "took": "3.753549ms"} -2023-12-16T14:38:05.710Z INFO sending PrepareRequest {"height": 8940, "view": 0} -2023-12-16T14:38:05.711Z INFO sending Commit {"height": 8940, "view": 0} -2023-12-16T14:38:05.711Z INFO approving block {"height": 8940, "hash": "abe4bd2c915c155bc0a7ca45e34c831b50d593c50d14769110eebb4deab57345", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d5a319eaeed2dc659e5d747d98d86c2d9dcf12f5a27c7fedb624196780a3ba8"} -2023-12-16T14:38:05.712Z INFO initializing dbft {"height": 8941, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:05.713Z debug frostfs-node/morph.go:229 new block {"index": 8940} -2023-12-16T14:38:05.812Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8940, "blockHeight": 8940, "took": "6.737046ms"} -2023-12-16T14:38:06.712Z INFO sending PrepareRequest {"height": 8941, "view": 0} -2023-12-16T14:38:06.712Z INFO sending Commit {"height": 8941, "view": 0} -2023-12-16T14:38:06.713Z INFO approving block {"height": 8941, "hash": "8c85498e44f37ed0dc4e898f685a18ee3a24fb014691ec722c855affc4f6e75f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abe4bd2c915c155bc0a7ca45e34c831b50d593c50d14769110eebb4deab57345"} -2023-12-16T14:38:06.714Z INFO initializing dbft {"height": 8942, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:06.714Z debug frostfs-node/morph.go:229 new block {"index": 8941} -2023-12-16T14:38:06.811Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8941, "blockHeight": 8941, "took": "4.847253ms"} -2023-12-16T14:38:07.714Z INFO sending PrepareRequest {"height": 8942, "view": 0} -2023-12-16T14:38:07.714Z INFO sending Commit {"height": 8942, "view": 0} -2023-12-16T14:38:07.714Z INFO approving block {"height": 8942, "hash": "4468c0abfa14ce00aec99691f1ba5628ea616333e8c131f71554b712f92381a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c85498e44f37ed0dc4e898f685a18ee3a24fb014691ec722c855affc4f6e75f"} -2023-12-16T14:38:07.716Z INFO initializing dbft {"height": 8943, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:07.717Z debug frostfs-node/morph.go:229 new block {"index": 8942} -2023-12-16T14:38:07.811Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8942, "blockHeight": 8942, "took": "4.606022ms"} -2023-12-16T14:38:08.715Z INFO sending PrepareRequest {"height": 8943, "view": 0} -2023-12-16T14:38:08.715Z INFO sending Commit {"height": 8943, "view": 0} -2023-12-16T14:38:08.715Z INFO approving block {"height": 8943, "hash": "cf2c45e7ce5987e95f8e195b6cd153497594e59ec1a7c6ff0698a916e762d464", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4468c0abfa14ce00aec99691f1ba5628ea616333e8c131f71554b712f92381a8"} -2023-12-16T14:38:08.716Z INFO initializing dbft {"height": 8944, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:08.717Z debug frostfs-node/morph.go:229 new block {"index": 8943} -2023-12-16T14:38:08.811Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8943, "blockHeight": 8943, "took": "4.262557ms"} -2023-12-16T14:38:09.717Z INFO sending PrepareRequest {"height": 8944, "view": 0} -2023-12-16T14:38:09.717Z INFO sending Commit {"height": 8944, "view": 0} -2023-12-16T14:38:09.717Z INFO approving block {"height": 8944, "hash": "06060b737490c9c51b896a44d982cab14e8f1a04346b3a1e0907932fddbc2961", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf2c45e7ce5987e95f8e195b6cd153497594e59ec1a7c6ff0698a916e762d464"} -2023-12-16T14:38:09.719Z INFO initializing dbft {"height": 8945, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:09.720Z debug frostfs-node/morph.go:229 new block {"index": 8944} -2023-12-16T14:38:09.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8944, "blockHeight": 8944, "took": "5.81613ms"} -2023-12-16T14:38:10.718Z INFO sending PrepareRequest {"height": 8945, "view": 0} -2023-12-16T14:38:10.718Z INFO sending Commit {"height": 8945, "view": 0} -2023-12-16T14:38:10.719Z INFO approving block {"height": 8945, "hash": "3079e3ab96cddad88cf48376e3adde1dbd1992b2bae3518e27ef66e3b1e5108e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06060b737490c9c51b896a44d982cab14e8f1a04346b3a1e0907932fddbc2961"} -2023-12-16T14:38:10.720Z INFO initializing dbft {"height": 8946, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:10.720Z debug frostfs-node/morph.go:229 new block {"index": 8945} -2023-12-16T14:38:10.812Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8945, "blockHeight": 8945, "took": "3.915399ms"} -2023-12-16T14:38:11.720Z INFO sending PrepareRequest {"height": 8946, "view": 0} -2023-12-16T14:38:11.720Z INFO sending Commit {"height": 8946, "view": 0} -2023-12-16T14:38:11.720Z INFO approving block {"height": 8946, "hash": "ed28df4a5e827b88c5f7aa720732f7e988b07feafd923954faeaf5bebd59c46d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3079e3ab96cddad88cf48376e3adde1dbd1992b2bae3518e27ef66e3b1e5108e"} -2023-12-16T14:38:11.721Z INFO initializing dbft {"height": 8947, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:11.721Z debug frostfs-node/morph.go:229 new block {"index": 8946} -2023-12-16T14:38:11.812Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8946, "blockHeight": 8946, "took": "3.340767ms"} -2023-12-16T14:38:12.721Z INFO sending PrepareRequest {"height": 8947, "view": 0} -2023-12-16T14:38:12.721Z INFO sending Commit {"height": 8947, "view": 0} -2023-12-16T14:38:12.722Z INFO approving block {"height": 8947, "hash": "122cf338e40b4da5ae346dc66ebbe93d0205536b695887cee9c2e56be33eee15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed28df4a5e827b88c5f7aa720732f7e988b07feafd923954faeaf5bebd59c46d"} -2023-12-16T14:38:12.723Z INFO initializing dbft {"height": 8948, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:12.723Z debug frostfs-node/morph.go:229 new block {"index": 8947} -2023-12-16T14:38:12.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8947, "blockHeight": 8947, "took": "4.733699ms"} -2023-12-16T14:38:13.723Z INFO sending PrepareRequest {"height": 8948, "view": 0} -2023-12-16T14:38:13.723Z INFO sending Commit {"height": 8948, "view": 0} -2023-12-16T14:38:13.723Z INFO approving block {"height": 8948, "hash": "80f070c12c6b9d6f708cf83bd352b75b6939388bc0f8bccde06a8e8b04d6b20d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "122cf338e40b4da5ae346dc66ebbe93d0205536b695887cee9c2e56be33eee15"} -2023-12-16T14:38:13.724Z INFO initializing dbft {"height": 8949, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:13.725Z debug frostfs-node/morph.go:229 new block {"index": 8948} -2023-12-16T14:38:13.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8948, "blockHeight": 8948, "took": "3.951225ms"} -2023-12-16T14:38:14.724Z INFO sending PrepareRequest {"height": 8949, "view": 0} -2023-12-16T14:38:14.724Z INFO sending Commit {"height": 8949, "view": 0} -2023-12-16T14:38:14.725Z INFO approving block {"height": 8949, "hash": "f635bcbe30b025e6b404d68f12dcc0c5e711a48917912f49fffee4b1faf4f8a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80f070c12c6b9d6f708cf83bd352b75b6939388bc0f8bccde06a8e8b04d6b20d"} -2023-12-16T14:38:14.726Z INFO initializing dbft {"height": 8950, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:14.726Z debug frostfs-node/morph.go:229 new block {"index": 8949} -2023-12-16T14:38:14.814Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8949, "blockHeight": 8949, "took": "3.45075ms"} -2023-12-16T14:38:15.726Z INFO sending PrepareRequest {"height": 8950, "view": 0} -2023-12-16T14:38:15.726Z INFO sending Commit {"height": 8950, "view": 0} -2023-12-16T14:38:15.726Z INFO approving block {"height": 8950, "hash": "5c8e760da2091af4cfa1b4907b600a7c4176ea2daf79c3da06f6082044544cbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f635bcbe30b025e6b404d68f12dcc0c5e711a48917912f49fffee4b1faf4f8a2"} -2023-12-16T14:38:15.727Z INFO initializing dbft {"height": 8951, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:15.727Z debug frostfs-node/morph.go:229 new block {"index": 8950} -2023-12-16T14:38:15.729Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:38:15.732Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:38:15.732Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:38:15.815Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8950, "blockHeight": 8950, "took": "3.741039ms"} -2023-12-16T14:38:16.727Z INFO sending PrepareRequest {"height": 8951, "view": 0} -2023-12-16T14:38:16.727Z INFO sending Commit {"height": 8951, "view": 0} -2023-12-16T14:38:16.728Z INFO approving block {"height": 8951, "hash": "96d6aa588da7306c6d12fd86f5f51d152381db6ff7119527c3f96cdc4bae7d57", "tx_count": 2, "merkle": "cd208c81ce5dcbe6df0a94e92251027af48d108cdcc739078de23f7335a9f70b", "prev": "5c8e760da2091af4cfa1b4907b600a7c4176ea2daf79c3da06f6082044544cbb"} -2023-12-16T14:38:16.728Z INFO runtime log {"tx": "9f5da28ca6b5cf3412f1b85737e4a23e4ce9a3468eed1c1f0cc5ff0cabf53306", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:38:16.728Z INFO runtime log {"tx": "9f5da28ca6b5cf3412f1b85737e4a23e4ce9a3468eed1c1f0cc5ff0cabf53306", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:38:16.731Z INFO initializing dbft {"height": 8952, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:16.732Z debug frostfs-node/morph.go:229 new block {"index": 8951} -2023-12-16T14:38:16.818Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 8951, "blockHeight": 8951, "took": "6.396093ms"} -2023-12-16T14:38:17.729Z INFO sending PrepareRequest {"height": 8952, "view": 0} -2023-12-16T14:38:17.729Z INFO sending Commit {"height": 8952, "view": 0} -2023-12-16T14:38:17.729Z INFO approving block {"height": 8952, "hash": "9224e61c9a31452aeda0f3ff1e0d1fdfa2130855e67fd01bf345f69813d97b2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96d6aa588da7306c6d12fd86f5f51d152381db6ff7119527c3f96cdc4bae7d57"} -2023-12-16T14:38:17.731Z INFO initializing dbft {"height": 8953, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:17.732Z debug frostfs-node/morph.go:229 new block {"index": 8952} -2023-12-16T14:38:17.815Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8952, "blockHeight": 8952, "took": "3.562134ms"} -2023-12-16T14:38:18.730Z INFO sending PrepareRequest {"height": 8953, "view": 0} -2023-12-16T14:38:18.730Z INFO sending Commit {"height": 8953, "view": 0} -2023-12-16T14:38:18.731Z INFO approving block {"height": 8953, "hash": "fb3ad563b85a9296cbc37a5bc04a765fd77522281663e110577077b3e9eeca15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9224e61c9a31452aeda0f3ff1e0d1fdfa2130855e67fd01bf345f69813d97b2b"} -2023-12-16T14:38:18.732Z INFO initializing dbft {"height": 8954, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:18.732Z debug frostfs-node/morph.go:229 new block {"index": 8953} -2023-12-16T14:38:18.816Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8953, "blockHeight": 8953, "took": "3.321716ms"} -2023-12-16T14:38:19.732Z INFO sending PrepareRequest {"height": 8954, "view": 0} -2023-12-16T14:38:19.732Z INFO sending Commit {"height": 8954, "view": 0} -2023-12-16T14:38:19.732Z INFO approving block {"height": 8954, "hash": "efb969a53dbcfe3690fe2bbd63b2db25b8c1419e907cbb0bc253d16592b76596", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb3ad563b85a9296cbc37a5bc04a765fd77522281663e110577077b3e9eeca15"} -2023-12-16T14:38:19.733Z INFO initializing dbft {"height": 8955, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:19.734Z debug frostfs-node/morph.go:229 new block {"index": 8954} -2023-12-16T14:38:19.816Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8954, "blockHeight": 8954, "took": "3.293426ms"} -2023-12-16T14:38:20.732Z INFO sending PrepareRequest {"height": 8955, "view": 0} -2023-12-16T14:38:20.733Z INFO sending Commit {"height": 8955, "view": 0} -2023-12-16T14:38:20.733Z INFO approving block {"height": 8955, "hash": "303a9af1df82dd49e79adb783533a6de0da924cd0e1880d8c156ebe5a693ee62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efb969a53dbcfe3690fe2bbd63b2db25b8c1419e907cbb0bc253d16592b76596"} -2023-12-16T14:38:20.734Z INFO initializing dbft {"height": 8956, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:20.734Z debug frostfs-node/morph.go:229 new block {"index": 8955} -2023-12-16T14:38:20.818Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8955, "blockHeight": 8955, "took": "4.220303ms"} -2023-12-16T14:38:21.734Z INFO sending PrepareRequest {"height": 8956, "view": 0} -2023-12-16T14:38:21.734Z INFO sending Commit {"height": 8956, "view": 0} -2023-12-16T14:38:21.734Z INFO approving block {"height": 8956, "hash": "b30471da40ce46ea1da260a1a9e393cf3384fa9fe2d3517b2e518a15eaa6f07d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "303a9af1df82dd49e79adb783533a6de0da924cd0e1880d8c156ebe5a693ee62"} -2023-12-16T14:38:21.735Z INFO initializing dbft {"height": 8957, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:21.736Z debug frostfs-node/morph.go:229 new block {"index": 8956} -2023-12-16T14:38:21.817Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8956, "blockHeight": 8956, "took": "3.326752ms"} -2023-12-16T14:38:22.735Z INFO sending PrepareRequest {"height": 8957, "view": 0} -2023-12-16T14:38:22.736Z INFO sending Commit {"height": 8957, "view": 0} -2023-12-16T14:38:22.736Z INFO approving block {"height": 8957, "hash": "7ad28c2dd341263d7cca41b4fc0349e21052d89a4fc312ae7e6be18fddcab517", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b30471da40ce46ea1da260a1a9e393cf3384fa9fe2d3517b2e518a15eaa6f07d"} -2023-12-16T14:38:22.737Z INFO initializing dbft {"height": 8958, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:22.737Z debug frostfs-node/morph.go:229 new block {"index": 8957} -2023-12-16T14:38:22.819Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8957, "blockHeight": 8957, "took": "4.353587ms"} -2023-12-16T14:38:23.737Z INFO sending PrepareRequest {"height": 8958, "view": 0} -2023-12-16T14:38:23.737Z INFO sending Commit {"height": 8958, "view": 0} -2023-12-16T14:38:23.738Z INFO approving block {"height": 8958, "hash": "ddf39321b5aa571f52c1b64e3bc4dc069b357c4e2daff17a8fcd8561418d75df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ad28c2dd341263d7cca41b4fc0349e21052d89a4fc312ae7e6be18fddcab517"} -2023-12-16T14:38:23.739Z INFO initializing dbft {"height": 8959, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:23.739Z debug frostfs-node/morph.go:229 new block {"index": 8958} -2023-12-16T14:38:23.819Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8958, "blockHeight": 8958, "took": "3.77195ms"} -2023-12-16T14:38:24.739Z INFO sending PrepareRequest {"height": 8959, "view": 0} -2023-12-16T14:38:24.739Z INFO sending Commit {"height": 8959, "view": 0} -2023-12-16T14:38:24.739Z INFO approving block {"height": 8959, "hash": "62b48ee8b5c69da3614544897fdd2d07ac3543dc3b80139d534f481566a5da0b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ddf39321b5aa571f52c1b64e3bc4dc069b357c4e2daff17a8fcd8561418d75df"} -2023-12-16T14:38:24.741Z INFO initializing dbft {"height": 8960, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:24.742Z debug frostfs-node/morph.go:229 new block {"index": 8959} -2023-12-16T14:38:24.820Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 8959, "blockHeight": 8959, "took": "4.044308ms"} -2023-12-16T14:38:25.740Z INFO sending PrepareRequest {"height": 8960, "view": 0} -2023-12-16T14:38:25.740Z INFO sending Commit {"height": 8960, "view": 0} -2023-12-16T14:38:25.740Z INFO approving block {"height": 8960, "hash": "8164812cb7719b12af3a040afb397c0b65bc2ebe202028ad5f76167fbaf0a7be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62b48ee8b5c69da3614544897fdd2d07ac3543dc3b80139d534f481566a5da0b"} -2023-12-16T14:38:25.741Z INFO initializing dbft {"height": 8961, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:25.742Z debug frostfs-node/morph.go:229 new block {"index": 8960} -2023-12-16T14:38:25.821Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8960, "blockHeight": 8960, "took": "4.341237ms"} -2023-12-16T14:38:26.742Z INFO sending PrepareRequest {"height": 8961, "view": 0} -2023-12-16T14:38:26.742Z INFO sending Commit {"height": 8961, "view": 0} -2023-12-16T14:38:26.742Z INFO approving block {"height": 8961, "hash": "f8d06b9df3fe51436ec973cf72f7f01129a550d592d23e80d9a6201a7c0a6aba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8164812cb7719b12af3a040afb397c0b65bc2ebe202028ad5f76167fbaf0a7be"} -2023-12-16T14:38:26.743Z INFO initializing dbft {"height": 8962, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:26.744Z debug frostfs-node/morph.go:229 new block {"index": 8961} -2023-12-16T14:38:26.820Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8961, "blockHeight": 8961, "took": "3.655726ms"} -2023-12-16T14:38:27.743Z INFO sending PrepareRequest {"height": 8962, "view": 0} -2023-12-16T14:38:27.743Z INFO sending Commit {"height": 8962, "view": 0} -2023-12-16T14:38:27.743Z INFO approving block {"height": 8962, "hash": "76a8b72443499c35bf65ad0cb8e8b85b72ae37b9f1ec9b71f0333832ef729292", "tx_count": 1, "merkle": "99528e9f6da61f52ef821990034df37c3653ac9114a07986962a23dc3a30cbd8", "prev": "f8d06b9df3fe51436ec973cf72f7f01129a550d592d23e80d9a6201a7c0a6aba"} -2023-12-16T14:38:27.744Z INFO initializing dbft {"height": 8963, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:27.745Z debug frostfs-node/morph.go:229 new block {"index": 8962} -2023-12-16T14:38:27.747Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-16T14:38:27.831Z INFO persisted to disk {"blocks": 1, "keys": 44, "headerHeight": 8962, "blockHeight": 8962, "took": "14.282407ms"} -2023-12-16T14:38:28.745Z INFO sending PrepareRequest {"height": 8963, "view": 0} -2023-12-16T14:38:28.745Z INFO sending Commit {"height": 8963, "view": 0} -2023-12-16T14:38:28.745Z INFO approving block {"height": 8963, "hash": "a1c490b77a5ffa325c81413b936f70ce7aee76cbc25447c55cc8138b296594f3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76a8b72443499c35bf65ad0cb8e8b85b72ae37b9f1ec9b71f0333832ef729292"} -2023-12-16T14:38:28.746Z INFO initializing dbft {"height": 8964, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:28.747Z debug frostfs-node/morph.go:229 new block {"index": 8963} -2023-12-16T14:38:28.821Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8963, "blockHeight": 8963, "took": "3.950045ms"} -2023-12-16T14:38:29.746Z INFO sending PrepareRequest {"height": 8964, "view": 0} -2023-12-16T14:38:29.746Z INFO sending Commit {"height": 8964, "view": 0} -2023-12-16T14:38:29.746Z INFO approving block {"height": 8964, "hash": "a8be4233a8bcfeba9749e8c1659cc43a4eb9ffcf925850c84e81733f0fed54b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1c490b77a5ffa325c81413b936f70ce7aee76cbc25447c55cc8138b296594f3"} -2023-12-16T14:38:29.747Z INFO initializing dbft {"height": 8965, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:29.748Z debug frostfs-node/morph.go:229 new block {"index": 8964} -2023-12-16T14:38:29.822Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8964, "blockHeight": 8964, "took": "3.812271ms"} -2023-12-16T14:38:30.748Z INFO sending PrepareRequest {"height": 8965, "view": 0} -2023-12-16T14:38:30.748Z INFO sending Commit {"height": 8965, "view": 0} -2023-12-16T14:38:30.749Z INFO approving block {"height": 8965, "hash": "377ce34a8527b2eb253e6e19785d90f983032a80f846aebd7277a2a94e0db963", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8be4233a8bcfeba9749e8c1659cc43a4eb9ffcf925850c84e81733f0fed54b0"} -2023-12-16T14:38:30.749Z INFO initializing dbft {"height": 8966, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:30.750Z debug frostfs-node/morph.go:229 new block {"index": 8965} -2023-12-16T14:38:30.822Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8965, "blockHeight": 8965, "took": "3.269885ms"} -2023-12-16T14:38:31.749Z INFO sending PrepareRequest {"height": 8966, "view": 0} -2023-12-16T14:38:31.750Z INFO sending Commit {"height": 8966, "view": 0} -2023-12-16T14:38:31.750Z INFO approving block {"height": 8966, "hash": "fd584e3e99d031f11e7d60311e5daf390fe1c689e2219a1574405cf3a7a993b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "377ce34a8527b2eb253e6e19785d90f983032a80f846aebd7277a2a94e0db963"} -2023-12-16T14:38:31.750Z INFO initializing dbft {"height": 8967, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:31.751Z debug frostfs-node/morph.go:229 new block {"index": 8966} -2023-12-16T14:38:31.824Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8966, "blockHeight": 8966, "took": "3.866657ms"} -2023-12-16T14:38:32.751Z INFO sending PrepareRequest {"height": 8967, "view": 0} -2023-12-16T14:38:32.751Z INFO sending Commit {"height": 8967, "view": 0} -2023-12-16T14:38:32.752Z INFO approving block {"height": 8967, "hash": "db644ffacb1000e3ce78815514974ae3f35b893fbacde0dcf57ce3b5db4c8d5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd584e3e99d031f11e7d60311e5daf390fe1c689e2219a1574405cf3a7a993b6"} -2023-12-16T14:38:32.753Z INFO initializing dbft {"height": 8968, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:32.754Z debug frostfs-node/morph.go:229 new block {"index": 8967} -2023-12-16T14:38:32.823Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8967, "blockHeight": 8967, "took": "3.348543ms"} -2023-12-16T14:38:33.752Z INFO sending PrepareRequest {"height": 8968, "view": 0} -2023-12-16T14:38:33.752Z INFO sending Commit {"height": 8968, "view": 0} -2023-12-16T14:38:33.753Z INFO approving block {"height": 8968, "hash": "ec7a6a38838ee9d7c79a75ebbee9d1aa5a93ad96e1f2b00f29d9260c3a7e30b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db644ffacb1000e3ce78815514974ae3f35b893fbacde0dcf57ce3b5db4c8d5e"} -2023-12-16T14:38:33.754Z INFO initializing dbft {"height": 8969, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:33.754Z debug frostfs-node/morph.go:229 new block {"index": 8968} -2023-12-16T14:38:33.826Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8968, "blockHeight": 8968, "took": "5.808329ms"} -2023-12-16T14:38:34.753Z INFO sending PrepareRequest {"height": 8969, "view": 0} -2023-12-16T14:38:34.753Z INFO sending Commit {"height": 8969, "view": 0} -2023-12-16T14:38:34.754Z INFO approving block {"height": 8969, "hash": "f98f2bfb42028e5b85544da862520a940e8554eece7b7872d2d47a7cf34ec950", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec7a6a38838ee9d7c79a75ebbee9d1aa5a93ad96e1f2b00f29d9260c3a7e30b0"} -2023-12-16T14:38:34.754Z INFO initializing dbft {"height": 8970, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:34.755Z debug frostfs-node/morph.go:229 new block {"index": 8969} -2023-12-16T14:38:34.827Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8969, "blockHeight": 8969, "took": "5.288325ms"} -2023-12-16T14:38:35.755Z INFO sending PrepareRequest {"height": 8970, "view": 0} -2023-12-16T14:38:35.755Z INFO sending Commit {"height": 8970, "view": 0} -2023-12-16T14:38:35.755Z INFO approving block {"height": 8970, "hash": "40c0dc8ec4f94cf5ecea13b79e52df4dc716e1ddd624d93e238641620ed82f6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f98f2bfb42028e5b85544da862520a940e8554eece7b7872d2d47a7cf34ec950"} -2023-12-16T14:38:35.756Z INFO initializing dbft {"height": 8971, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:35.756Z debug frostfs-node/morph.go:229 new block {"index": 8970} -2023-12-16T14:38:35.829Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8970, "blockHeight": 8970, "took": "6.664695ms"} -2023-12-16T14:38:36.756Z INFO sending PrepareRequest {"height": 8971, "view": 0} -2023-12-16T14:38:36.756Z INFO sending Commit {"height": 8971, "view": 0} -2023-12-16T14:38:36.756Z INFO approving block {"height": 8971, "hash": "1c4b5b1f5dc04dc3b1976a91303985cb0f28fdf2fdc6383f7a262658f05ecd60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40c0dc8ec4f94cf5ecea13b79e52df4dc716e1ddd624d93e238641620ed82f6b"} -2023-12-16T14:38:36.757Z INFO initializing dbft {"height": 8972, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:36.758Z debug frostfs-node/morph.go:229 new block {"index": 8971} -2023-12-16T14:38:36.828Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8971, "blockHeight": 8971, "took": "5.300655ms"} -2023-12-16T14:38:37.757Z INFO sending PrepareRequest {"height": 8972, "view": 0} -2023-12-16T14:38:37.757Z INFO sending Commit {"height": 8972, "view": 0} -2023-12-16T14:38:37.757Z INFO approving block {"height": 8972, "hash": "732d9c7a2cd856a4dcbd069de5d5c93bb713f50d9c6d487f99b8405a16b16588", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c4b5b1f5dc04dc3b1976a91303985cb0f28fdf2fdc6383f7a262658f05ecd60"} -2023-12-16T14:38:37.758Z INFO initializing dbft {"height": 8973, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:37.759Z debug frostfs-node/morph.go:229 new block {"index": 8972} -2023-12-16T14:38:37.828Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8972, "blockHeight": 8972, "took": "4.484866ms"} -2023-12-16T14:38:38.759Z INFO sending PrepareRequest {"height": 8973, "view": 0} -2023-12-16T14:38:38.759Z INFO sending Commit {"height": 8973, "view": 0} -2023-12-16T14:38:38.759Z INFO approving block {"height": 8973, "hash": "d806921bdc99925d226711d7206ab87f066a16134d40fc5e96d5d858eabd5cfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "732d9c7a2cd856a4dcbd069de5d5c93bb713f50d9c6d487f99b8405a16b16588"} -2023-12-16T14:38:38.760Z INFO initializing dbft {"height": 8974, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:38.761Z debug frostfs-node/morph.go:229 new block {"index": 8973} -2023-12-16T14:38:38.831Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8973, "blockHeight": 8973, "took": "7.124392ms"} -2023-12-16T14:38:39.760Z INFO sending PrepareRequest {"height": 8974, "view": 0} -2023-12-16T14:38:39.760Z INFO sending Commit {"height": 8974, "view": 0} -2023-12-16T14:38:39.760Z INFO approving block {"height": 8974, "hash": "45fc4a171ede55caf49b4384e9be7d50ec6de70b86d67e7047e6553c589735ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d806921bdc99925d226711d7206ab87f066a16134d40fc5e96d5d858eabd5cfe"} -2023-12-16T14:38:39.761Z INFO initializing dbft {"height": 8975, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:39.761Z debug frostfs-node/morph.go:229 new block {"index": 8974} -2023-12-16T14:38:39.829Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8974, "blockHeight": 8974, "took": "3.537313ms"} -2023-12-16T14:38:40.761Z INFO sending PrepareRequest {"height": 8975, "view": 0} -2023-12-16T14:38:40.762Z INFO sending Commit {"height": 8975, "view": 0} -2023-12-16T14:38:40.762Z INFO approving block {"height": 8975, "hash": "bace5401365d50e0ae79e8d11581b90cf18e3db077a6382378e73f4e0691bd9d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45fc4a171ede55caf49b4384e9be7d50ec6de70b86d67e7047e6553c589735ed"} -2023-12-16T14:38:40.763Z INFO initializing dbft {"height": 8976, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:40.763Z debug frostfs-node/morph.go:229 new block {"index": 8975} -2023-12-16T14:38:40.767Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 38 epoch for daughters"} -2023-12-16T14:38:40.829Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8975, "blockHeight": 8975, "took": "3.428665ms"} -2023-12-16T14:38:41.762Z INFO sending PrepareRequest {"height": 8976, "view": 0} -2023-12-16T14:38:41.762Z INFO sending Commit {"height": 8976, "view": 0} -2023-12-16T14:38:41.763Z INFO approving block {"height": 8976, "hash": "22468942ddb1d96f8415acc2d35188fdb87ff7136b1715567d9372fdfd0556d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bace5401365d50e0ae79e8d11581b90cf18e3db077a6382378e73f4e0691bd9d"} -2023-12-16T14:38:41.763Z INFO initializing dbft {"height": 8977, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:41.764Z debug frostfs-node/morph.go:229 new block {"index": 8976} -2023-12-16T14:38:41.769Z INFO runtime log {"tx": "57bab420bbd776fe556d84edbac57f28c98b8fef1efe31397d7c1b50d3db8709", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:38:41.830Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8976, "blockHeight": 8976, "took": "3.109401ms"} -2023-12-16T14:38:42.763Z INFO sending PrepareRequest {"height": 8977, "view": 0} -2023-12-16T14:38:42.763Z INFO sending Commit {"height": 8977, "view": 0} -2023-12-16T14:38:42.763Z INFO approving block {"height": 8977, "hash": "3ae07c8c8d36512e9577c60f58d0fe4b49362127a012bb2374d8af9153208c84", "tx_count": 1, "merkle": "d36af5bb001038bf0224ccb0adcdcdf58178fa034e9132dd54702c2df577328b", "prev": "22468942ddb1d96f8415acc2d35188fdb87ff7136b1715567d9372fdfd0556d5"} -2023-12-16T14:38:42.764Z INFO runtime log {"tx": "8b3277f52d2c7054dd32914e03fa7881f5cdcdadb0cc2402bf381000bbf56ad3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:38:42.765Z INFO initializing dbft {"height": 8978, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:42.765Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 38} -2023-12-16T14:38:42.765Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 38} -2023-12-16T14:38:42.765Z debug frostfs-node/morph.go:229 new block {"index": 8977} -2023-12-16T14:38:42.836Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 8977, "blockHeight": 8977, "took": "8.915022ms"} -2023-12-16T14:38:43.765Z INFO sending PrepareRequest {"height": 8978, "view": 0} -2023-12-16T14:38:43.765Z INFO sending Commit {"height": 8978, "view": 0} -2023-12-16T14:38:43.765Z INFO approving block {"height": 8978, "hash": "6c3c2d0ed573965310c3ad5a0ce51e39c02792f6d240fb531aa8611daedb9007", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ae07c8c8d36512e9577c60f58d0fe4b49362127a012bb2374d8af9153208c84"} -2023-12-16T14:38:43.766Z INFO initializing dbft {"height": 8979, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:43.766Z debug frostfs-node/morph.go:229 new block {"index": 8978} -2023-12-16T14:38:43.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8978, "blockHeight": 8978, "took": "4.80692ms"} -2023-12-16T14:38:44.766Z INFO sending PrepareRequest {"height": 8979, "view": 0} -2023-12-16T14:38:44.766Z INFO sending Commit {"height": 8979, "view": 0} -2023-12-16T14:38:44.767Z INFO approving block {"height": 8979, "hash": "bba2aa38c0b04f6fc83cfe4e179b115aebf9b9d19b0736a31976a202da16f194", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c3c2d0ed573965310c3ad5a0ce51e39c02792f6d240fb531aa8611daedb9007"} -2023-12-16T14:38:44.767Z INFO initializing dbft {"height": 8980, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:44.768Z debug frostfs-node/morph.go:229 new block {"index": 8979} -2023-12-16T14:38:44.834Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8979, "blockHeight": 8979, "took": "4.510032ms"} -2023-12-16T14:38:45.767Z INFO sending PrepareRequest {"height": 8980, "view": 0} -2023-12-16T14:38:45.767Z INFO sending Commit {"height": 8980, "view": 0} -2023-12-16T14:38:45.767Z INFO approving block {"height": 8980, "hash": "1cae15c86ce83c34d98cb03fdda92c0cf3c5ea6705fe922a14f8520cfbe40cd0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bba2aa38c0b04f6fc83cfe4e179b115aebf9b9d19b0736a31976a202da16f194"} -2023-12-16T14:38:45.768Z INFO initializing dbft {"height": 8981, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:45.769Z debug frostfs-node/morph.go:229 new block {"index": 8980} -2023-12-16T14:38:45.835Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8980, "blockHeight": 8980, "took": "5.108108ms"} -2023-12-16T14:38:46.768Z INFO sending PrepareRequest {"height": 8981, "view": 0} -2023-12-16T14:38:46.769Z INFO sending Commit {"height": 8981, "view": 0} -2023-12-16T14:38:46.769Z INFO approving block {"height": 8981, "hash": "19aa33aafda14b061332f2aaef3480759359c846bc8adf318beed6af5a2bddc3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cae15c86ce83c34d98cb03fdda92c0cf3c5ea6705fe922a14f8520cfbe40cd0"} -2023-12-16T14:38:46.769Z INFO initializing dbft {"height": 8982, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:46.770Z debug frostfs-node/morph.go:229 new block {"index": 8981} -2023-12-16T14:38:46.837Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8981, "blockHeight": 8981, "took": "5.330386ms"} -2023-12-16T14:38:47.770Z INFO sending PrepareRequest {"height": 8982, "view": 0} -2023-12-16T14:38:47.770Z INFO sending Commit {"height": 8982, "view": 0} -2023-12-16T14:38:47.770Z INFO approving block {"height": 8982, "hash": "9179594ebcb214e767f402428614ba7140e178f649f95486e0496f1a6a0e9296", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19aa33aafda14b061332f2aaef3480759359c846bc8adf318beed6af5a2bddc3"} -2023-12-16T14:38:47.771Z INFO initializing dbft {"height": 8983, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:47.772Z debug frostfs-node/morph.go:229 new block {"index": 8982} -2023-12-16T14:38:47.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8982, "blockHeight": 8982, "took": "4.12646ms"} -2023-12-16T14:38:48.771Z INFO sending PrepareRequest {"height": 8983, "view": 0} -2023-12-16T14:38:48.771Z INFO sending Commit {"height": 8983, "view": 0} -2023-12-16T14:38:48.772Z INFO approving block {"height": 8983, "hash": "81b5f5d1b1f7e24f4ae83cd9974b01f787694e5f8cc4fd1d10c054f1ec77890a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9179594ebcb214e767f402428614ba7140e178f649f95486e0496f1a6a0e9296"} -2023-12-16T14:38:48.772Z INFO initializing dbft {"height": 8984, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:48.773Z debug frostfs-node/morph.go:229 new block {"index": 8983} -2023-12-16T14:38:48.836Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8983, "blockHeight": 8983, "took": "4.079999ms"} -2023-12-16T14:38:49.773Z INFO sending PrepareRequest {"height": 8984, "view": 0} -2023-12-16T14:38:49.773Z INFO sending Commit {"height": 8984, "view": 0} -2023-12-16T14:38:49.773Z INFO approving block {"height": 8984, "hash": "c04c15b95385dd1ca61cb5d28f38d68d8081a5e09c29d4ad1b28a98437add7b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "81b5f5d1b1f7e24f4ae83cd9974b01f787694e5f8cc4fd1d10c054f1ec77890a"} -2023-12-16T14:38:49.774Z INFO initializing dbft {"height": 8985, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:49.774Z debug frostfs-node/morph.go:229 new block {"index": 8984} -2023-12-16T14:38:49.839Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8984, "blockHeight": 8984, "took": "5.655015ms"} -2023-12-16T14:38:50.774Z INFO sending PrepareRequest {"height": 8985, "view": 0} -2023-12-16T14:38:50.775Z INFO sending Commit {"height": 8985, "view": 0} -2023-12-16T14:38:50.775Z INFO approving block {"height": 8985, "hash": "b0926a0d9d6c9c77b3e60009dbf4f0087468c21deeb74ec40f16e1b7c5b5dc34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c04c15b95385dd1ca61cb5d28f38d68d8081a5e09c29d4ad1b28a98437add7b1"} -2023-12-16T14:38:50.776Z INFO initializing dbft {"height": 8986, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:50.776Z debug frostfs-node/morph.go:229 new block {"index": 8985} -2023-12-16T14:38:50.838Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8985, "blockHeight": 8985, "took": "3.721983ms"} -2023-12-16T14:38:51.776Z INFO sending PrepareRequest {"height": 8986, "view": 0} -2023-12-16T14:38:51.776Z INFO sending Commit {"height": 8986, "view": 0} -2023-12-16T14:38:51.776Z INFO approving block {"height": 8986, "hash": "2ecd5d4a8909eb9e89c5143f71b672b1da1ef0d2f6df4c1e74ab3704b36350f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0926a0d9d6c9c77b3e60009dbf4f0087468c21deeb74ec40f16e1b7c5b5dc34"} -2023-12-16T14:38:51.777Z INFO initializing dbft {"height": 8987, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:51.778Z debug frostfs-node/morph.go:229 new block {"index": 8986} -2023-12-16T14:38:51.840Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8986, "blockHeight": 8986, "took": "5.216812ms"} -2023-12-16T14:38:52.777Z INFO sending PrepareRequest {"height": 8987, "view": 0} -2023-12-16T14:38:52.778Z INFO sending Commit {"height": 8987, "view": 0} -2023-12-16T14:38:52.778Z INFO approving block {"height": 8987, "hash": "349a18ac44d89fff22bfe89b4d8f8c00096e877f3440010bdd7607154549db00", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ecd5d4a8909eb9e89c5143f71b672b1da1ef0d2f6df4c1e74ab3704b36350f4"} -2023-12-16T14:38:52.779Z INFO initializing dbft {"height": 8988, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:52.779Z debug frostfs-node/morph.go:229 new block {"index": 8987} -2023-12-16T14:38:52.841Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8987, "blockHeight": 8987, "took": "5.242373ms"} -2023-12-16T14:38:53.779Z INFO sending PrepareRequest {"height": 8988, "view": 0} -2023-12-16T14:38:53.779Z INFO sending Commit {"height": 8988, "view": 0} -2023-12-16T14:38:53.780Z INFO approving block {"height": 8988, "hash": "dcd83f5ade87cc8e60fed3ea7a5464ec5d9997b7921037b95f11aad065ce6c06", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "349a18ac44d89fff22bfe89b4d8f8c00096e877f3440010bdd7607154549db00"} -2023-12-16T14:38:53.781Z INFO initializing dbft {"height": 8989, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:53.781Z debug frostfs-node/morph.go:229 new block {"index": 8988} -2023-12-16T14:38:53.840Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8988, "blockHeight": 8988, "took": "3.375269ms"} -2023-12-16T14:38:54.781Z INFO sending PrepareRequest {"height": 8989, "view": 0} -2023-12-16T14:38:54.781Z INFO sending Commit {"height": 8989, "view": 0} -2023-12-16T14:38:54.781Z INFO approving block {"height": 8989, "hash": "409ebd00451ed55337e7a8f9b6bda25581ca639200fd1ac6db12641607bdae60", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcd83f5ade87cc8e60fed3ea7a5464ec5d9997b7921037b95f11aad065ce6c06"} -2023-12-16T14:38:54.782Z INFO initializing dbft {"height": 8990, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:54.782Z debug frostfs-node/morph.go:229 new block {"index": 8989} -2023-12-16T14:38:54.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8989, "blockHeight": 8989, "took": "6.592802ms"} -2023-12-16T14:38:55.783Z INFO sending PrepareRequest {"height": 8990, "view": 0} -2023-12-16T14:38:55.783Z INFO sending Commit {"height": 8990, "view": 0} -2023-12-16T14:38:55.783Z INFO approving block {"height": 8990, "hash": "ff21e32a41562b3e2caf0177e0038c8489ec4ceacd7adf682c2528b2694b1e5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "409ebd00451ed55337e7a8f9b6bda25581ca639200fd1ac6db12641607bdae60"} -2023-12-16T14:38:55.784Z INFO initializing dbft {"height": 8991, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:55.785Z debug frostfs-node/morph.go:229 new block {"index": 8990} -2023-12-16T14:38:55.843Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8990, "blockHeight": 8990, "took": "5.164931ms"} -2023-12-16T14:38:56.784Z INFO sending PrepareRequest {"height": 8991, "view": 0} -2023-12-16T14:38:56.784Z INFO sending Commit {"height": 8991, "view": 0} -2023-12-16T14:38:56.785Z INFO approving block {"height": 8991, "hash": "59c7e971035c8a4701225b926ab68ad4c8bff7dde0aa61722ecbc8b85365043f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff21e32a41562b3e2caf0177e0038c8489ec4ceacd7adf682c2528b2694b1e5c"} -2023-12-16T14:38:56.785Z INFO initializing dbft {"height": 8992, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:56.786Z debug frostfs-node/morph.go:229 new block {"index": 8991} -2023-12-16T14:38:56.845Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8991, "blockHeight": 8991, "took": "6.52422ms"} -2023-12-16T14:38:57.786Z INFO sending PrepareRequest {"height": 8992, "view": 0} -2023-12-16T14:38:57.786Z INFO sending Commit {"height": 8992, "view": 0} -2023-12-16T14:38:57.786Z INFO approving block {"height": 8992, "hash": "e7b753e373e0a452436dc543c00b18bf3bf388e8fb586b6b760c9dd4790ab27f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59c7e971035c8a4701225b926ab68ad4c8bff7dde0aa61722ecbc8b85365043f"} -2023-12-16T14:38:57.787Z INFO initializing dbft {"height": 8993, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:57.787Z debug frostfs-node/morph.go:229 new block {"index": 8992} -2023-12-16T14:38:57.842Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8992, "blockHeight": 8992, "took": "3.270826ms"} -2023-12-16T14:38:58.788Z INFO sending PrepareRequest {"height": 8993, "view": 0} -2023-12-16T14:38:58.788Z INFO sending Commit {"height": 8993, "view": 0} -2023-12-16T14:38:58.788Z INFO approving block {"height": 8993, "hash": "23709f0fd0412f7abfb29d5563cb70e332957909fb7016ca6dc061b6a4db3a72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7b753e373e0a452436dc543c00b18bf3bf388e8fb586b6b760c9dd4790ab27f"} -2023-12-16T14:38:58.789Z INFO initializing dbft {"height": 8994, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:58.789Z debug frostfs-node/morph.go:229 new block {"index": 8993} -2023-12-16T14:38:58.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8993, "blockHeight": 8993, "took": "5.11851ms"} -2023-12-16T14:38:59.789Z INFO sending PrepareRequest {"height": 8994, "view": 0} -2023-12-16T14:38:59.789Z INFO sending Commit {"height": 8994, "view": 0} -2023-12-16T14:38:59.790Z INFO approving block {"height": 8994, "hash": "3611ce2781b6e41168f02e2a35c14ce62e9f3e7c609c633af4f9f78f839ae9f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "23709f0fd0412f7abfb29d5563cb70e332957909fb7016ca6dc061b6a4db3a72"} -2023-12-16T14:38:59.791Z INFO initializing dbft {"height": 8995, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:38:59.792Z debug frostfs-node/morph.go:229 new block {"index": 8994} -2023-12-16T14:38:59.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8994, "blockHeight": 8994, "took": "3.894443ms"} -2023-12-16T14:39:00.791Z INFO sending PrepareRequest {"height": 8995, "view": 0} -2023-12-16T14:39:00.791Z INFO sending Commit {"height": 8995, "view": 0} -2023-12-16T14:39:00.791Z INFO approving block {"height": 8995, "hash": "dec8ca3bec1a75c4786895d9f33779f831d53408cceb706c9cf2a874aa7a17dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3611ce2781b6e41168f02e2a35c14ce62e9f3e7c609c633af4f9f78f839ae9f9"} -2023-12-16T14:39:00.792Z INFO initializing dbft {"height": 8996, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:00.793Z debug frostfs-node/morph.go:229 new block {"index": 8995} -2023-12-16T14:39:00.844Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8995, "blockHeight": 8995, "took": "3.292316ms"} -2023-12-16T14:39:01.793Z INFO sending PrepareRequest {"height": 8996, "view": 0} -2023-12-16T14:39:01.793Z INFO sending Commit {"height": 8996, "view": 0} -2023-12-16T14:39:01.793Z INFO approving block {"height": 8996, "hash": "8f143c577db906d4c43481080e8ae179cd3dcbee2cb8d2b503cf6be36968f20f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dec8ca3bec1a75c4786895d9f33779f831d53408cceb706c9cf2a874aa7a17dc"} -2023-12-16T14:39:01.794Z INFO initializing dbft {"height": 8997, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:01.795Z debug frostfs-node/morph.go:229 new block {"index": 8996} -2023-12-16T14:39:01.846Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8996, "blockHeight": 8996, "took": "4.231773ms"} -2023-12-16T14:39:02.795Z INFO sending PrepareRequest {"height": 8997, "view": 0} -2023-12-16T14:39:02.795Z INFO sending Commit {"height": 8997, "view": 0} -2023-12-16T14:39:02.795Z INFO approving block {"height": 8997, "hash": "7700c07e1ffd48fd0e23f61a41350e92721f8e587d2efd76c377a03af720b118", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8f143c577db906d4c43481080e8ae179cd3dcbee2cb8d2b503cf6be36968f20f"} -2023-12-16T14:39:02.796Z INFO initializing dbft {"height": 8998, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:02.796Z debug frostfs-node/morph.go:229 new block {"index": 8997} -2023-12-16T14:39:02.846Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8997, "blockHeight": 8997, "took": "3.572679ms"} -2023-12-16T14:39:03.797Z INFO sending PrepareRequest {"height": 8998, "view": 0} -2023-12-16T14:39:03.797Z INFO sending Commit {"height": 8998, "view": 0} -2023-12-16T14:39:03.797Z INFO approving block {"height": 8998, "hash": "9c3a2514b5ef9a8d8c97ca6042201830e86a451f5622aab7f2d7d3e144ea7586", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7700c07e1ffd48fd0e23f61a41350e92721f8e587d2efd76c377a03af720b118"} -2023-12-16T14:39:03.798Z INFO initializing dbft {"height": 8999, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:03.798Z debug frostfs-node/morph.go:229 new block {"index": 8998} -2023-12-16T14:39:03.848Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8998, "blockHeight": 8998, "took": "4.709527ms"} -2023-12-16T14:39:04.798Z INFO sending PrepareRequest {"height": 8999, "view": 0} -2023-12-16T14:39:04.798Z INFO sending Commit {"height": 8999, "view": 0} -2023-12-16T14:39:04.798Z INFO approving block {"height": 8999, "hash": "fd9f1556d51c3d5638f181ca0e3d7c030ea13caf648545af8d48f1847f2b0e89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c3a2514b5ef9a8d8c97ca6042201830e86a451f5622aab7f2d7d3e144ea7586"} -2023-12-16T14:39:04.799Z INFO initializing dbft {"height": 9000, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:04.799Z debug frostfs-node/morph.go:229 new block {"index": 8999} -2023-12-16T14:39:04.847Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 8999, "blockHeight": 8999, "took": "3.258595ms"} -2023-12-16T14:39:05.799Z INFO sending PrepareRequest {"height": 9000, "view": 0} -2023-12-16T14:39:05.800Z INFO sending Commit {"height": 9000, "view": 0} -2023-12-16T14:39:05.800Z INFO approving block {"height": 9000, "hash": "876e2741a45cf6ce7700b66c57f78f961f92ef1d6749603e12ea2ded789605c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd9f1556d51c3d5638f181ca0e3d7c030ea13caf648545af8d48f1847f2b0e89"} -2023-12-16T14:39:05.801Z INFO initializing dbft {"height": 9001, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:05.801Z debug frostfs-node/morph.go:229 new block {"index": 9000} -2023-12-16T14:39:05.803Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:39:05.805Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:39:05.805Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:39:05.851Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9000, "blockHeight": 9000, "took": "5.765761ms"} -2023-12-16T14:39:06.801Z INFO sending PrepareRequest {"height": 9001, "view": 0} -2023-12-16T14:39:06.802Z INFO sending Commit {"height": 9001, "view": 0} -2023-12-16T14:39:06.802Z INFO approving block {"height": 9001, "hash": "3508a0a3d254a4a42efbaad737da10ebbf7d6144a0344b33aab4892cc3495a0a", "tx_count": 2, "merkle": "602b8eba82aa6539be883b5089b043b56ac90002e630ee75ec9f78d53e94d51f", "prev": "876e2741a45cf6ce7700b66c57f78f961f92ef1d6749603e12ea2ded789605c4"} -2023-12-16T14:39:06.803Z INFO runtime log {"tx": "b237204965957f3ce870f231abfca71a99dbff3270fd68ff1be8a9c296dc8aa8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:39:06.803Z INFO runtime log {"tx": "b237204965957f3ce870f231abfca71a99dbff3270fd68ff1be8a9c296dc8aa8", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:39:06.804Z INFO initializing dbft {"height": 9002, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:06.805Z debug frostfs-node/morph.go:229 new block {"index": 9001} -2023-12-16T14:39:06.851Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 9001, "blockHeight": 9001, "took": "5.033327ms"} -2023-12-16T14:39:07.803Z INFO sending PrepareRequest {"height": 9002, "view": 0} -2023-12-16T14:39:07.803Z INFO sending Commit {"height": 9002, "view": 0} -2023-12-16T14:39:07.803Z INFO approving block {"height": 9002, "hash": "170c435b31505121ef9467e7868a76188c923b180d628b9bcab751cfd2884f04", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3508a0a3d254a4a42efbaad737da10ebbf7d6144a0344b33aab4892cc3495a0a"} -2023-12-16T14:39:07.805Z INFO initializing dbft {"height": 9003, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:07.805Z debug frostfs-node/morph.go:229 new block {"index": 9002} -2023-12-16T14:39:07.850Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9002, "blockHeight": 9002, "took": "3.44273ms"} -2023-12-16T14:39:08.805Z INFO sending PrepareRequest {"height": 9003, "view": 0} -2023-12-16T14:39:08.805Z INFO sending Commit {"height": 9003, "view": 0} -2023-12-16T14:39:08.805Z INFO approving block {"height": 9003, "hash": "26526db3c8b64f22c2f9bd90da3bd2b66061e5dfa0d4356ef5d236fea1092f33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "170c435b31505121ef9467e7868a76188c923b180d628b9bcab751cfd2884f04"} -2023-12-16T14:39:08.807Z INFO initializing dbft {"height": 9004, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:08.807Z debug frostfs-node/morph.go:229 new block {"index": 9003} -2023-12-16T14:39:08.851Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9003, "blockHeight": 9003, "took": "3.391258ms"} -2023-12-16T14:39:09.806Z INFO sending PrepareRequest {"height": 9004, "view": 0} -2023-12-16T14:39:09.807Z INFO sending Commit {"height": 9004, "view": 0} -2023-12-16T14:39:09.807Z INFO approving block {"height": 9004, "hash": "b8c09c010077006bd9d0398083b9316e5e5c64d43a31a5664c49994f5bd318db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26526db3c8b64f22c2f9bd90da3bd2b66061e5dfa0d4356ef5d236fea1092f33"} -2023-12-16T14:39:09.808Z INFO initializing dbft {"height": 9005, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:09.809Z debug frostfs-node/morph.go:229 new block {"index": 9004} -2023-12-16T14:39:09.851Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9004, "blockHeight": 9004, "took": "2.999597ms"} -2023-12-16T14:39:10.808Z INFO sending PrepareRequest {"height": 9005, "view": 0} -2023-12-16T14:39:10.808Z INFO sending Commit {"height": 9005, "view": 0} -2023-12-16T14:39:10.808Z INFO approving block {"height": 9005, "hash": "4a7a0b1f47250bf7a399676f5f479f0f0dc6211975eb3a070c2c9e6f0341e06b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8c09c010077006bd9d0398083b9316e5e5c64d43a31a5664c49994f5bd318db"} -2023-12-16T14:39:10.810Z INFO initializing dbft {"height": 9006, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:10.811Z debug frostfs-node/morph.go:229 new block {"index": 9005} -2023-12-16T14:39:10.852Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9005, "blockHeight": 9005, "took": "3.746949ms"} -2023-12-16T14:39:11.809Z INFO sending PrepareRequest {"height": 9006, "view": 0} -2023-12-16T14:39:11.809Z INFO sending Commit {"height": 9006, "view": 0} -2023-12-16T14:39:11.810Z INFO approving block {"height": 9006, "hash": "662ef5f941b1f1c9a836dd3e9f3f0c6a7a2937f1723c71f44ce1ffc40219ed44", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a7a0b1f47250bf7a399676f5f479f0f0dc6211975eb3a070c2c9e6f0341e06b"} -2023-12-16T14:39:11.811Z INFO initializing dbft {"height": 9007, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:11.812Z debug frostfs-node/morph.go:229 new block {"index": 9006} -2023-12-16T14:39:11.854Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9006, "blockHeight": 9006, "took": "4.48744ms"} -2023-12-16T14:39:12.810Z INFO sending PrepareRequest {"height": 9007, "view": 0} -2023-12-16T14:39:12.811Z INFO sending Commit {"height": 9007, "view": 0} -2023-12-16T14:39:12.811Z INFO approving block {"height": 9007, "hash": "6870c0b7e7354df60fc139abb60ba1c552de4b7fc59e8921a3d82773166aad24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "662ef5f941b1f1c9a836dd3e9f3f0c6a7a2937f1723c71f44ce1ffc40219ed44"} -2023-12-16T14:39:12.811Z INFO initializing dbft {"height": 9008, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:12.812Z debug frostfs-node/morph.go:229 new block {"index": 9007} -2023-12-16T14:39:12.853Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9007, "blockHeight": 9007, "took": "3.598935ms"} -2023-12-16T14:39:13.812Z INFO sending PrepareRequest {"height": 9008, "view": 0} -2023-12-16T14:39:13.812Z INFO sending Commit {"height": 9008, "view": 0} -2023-12-16T14:39:13.812Z INFO approving block {"height": 9008, "hash": "fc41ba2fe423c33d28a005b63e51c3ecded40a9c643926690a093b27a5518bed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6870c0b7e7354df60fc139abb60ba1c552de4b7fc59e8921a3d82773166aad24"} -2023-12-16T14:39:13.813Z INFO initializing dbft {"height": 9009, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:13.814Z debug frostfs-node/morph.go:229 new block {"index": 9008} -2023-12-16T14:39:13.855Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9008, "blockHeight": 9008, "took": "4.1317ms"} -2023-12-16T14:39:14.813Z INFO sending PrepareRequest {"height": 9009, "view": 0} -2023-12-16T14:39:14.813Z INFO sending Commit {"height": 9009, "view": 0} -2023-12-16T14:39:14.814Z INFO approving block {"height": 9009, "hash": "acb7b4d44a5c869c4f628ba4a613a7f4b2ee8c62497807c3f5d3fbfcd04c6b81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc41ba2fe423c33d28a005b63e51c3ecded40a9c643926690a093b27a5518bed"} -2023-12-16T14:39:14.815Z INFO initializing dbft {"height": 9010, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:14.816Z debug frostfs-node/morph.go:229 new block {"index": 9009} -2023-12-16T14:39:14.855Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9009, "blockHeight": 9009, "took": "4.393428ms"} -2023-12-16T14:39:15.815Z INFO sending PrepareRequest {"height": 9010, "view": 0} -2023-12-16T14:39:15.815Z INFO sending Commit {"height": 9010, "view": 0} -2023-12-16T14:39:15.815Z INFO approving block {"height": 9010, "hash": "f915dc953bdbe9b56a9b06fba2620709210c4b0153db49e35cd032375e0d5cd7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acb7b4d44a5c869c4f628ba4a613a7f4b2ee8c62497807c3f5d3fbfcd04c6b81"} -2023-12-16T14:39:15.816Z INFO initializing dbft {"height": 9011, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:15.817Z debug frostfs-node/morph.go:229 new block {"index": 9010} -2023-12-16T14:39:15.855Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9010, "blockHeight": 9010, "took": "3.648426ms"} -2023-12-16T14:39:16.817Z INFO sending PrepareRequest {"height": 9011, "view": 0} -2023-12-16T14:39:16.817Z INFO sending Commit {"height": 9011, "view": 0} -2023-12-16T14:39:16.817Z INFO approving block {"height": 9011, "hash": "bec8384c81ecb58e05fe0d1ce7ddf467aec14e59385098a00d26d1dcf20e6253", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f915dc953bdbe9b56a9b06fba2620709210c4b0153db49e35cd032375e0d5cd7"} -2023-12-16T14:39:16.819Z INFO initializing dbft {"height": 9012, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:16.819Z debug frostfs-node/morph.go:229 new block {"index": 9011} -2023-12-16T14:39:16.856Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9011, "blockHeight": 9011, "took": "3.266905ms"} -2023-12-16T14:39:17.818Z INFO sending PrepareRequest {"height": 9012, "view": 0} -2023-12-16T14:39:17.819Z INFO sending Commit {"height": 9012, "view": 0} -2023-12-16T14:39:17.819Z INFO approving block {"height": 9012, "hash": "430608f57b26e4d28278b99fded7af4640f543e3c53490c436c7fcd5ca1c552e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bec8384c81ecb58e05fe0d1ce7ddf467aec14e59385098a00d26d1dcf20e6253"} -2023-12-16T14:39:17.820Z INFO initializing dbft {"height": 9013, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:17.821Z debug frostfs-node/morph.go:229 new block {"index": 9012} -2023-12-16T14:39:17.857Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9012, "blockHeight": 9012, "took": "3.660527ms"} -2023-12-16T14:39:18.820Z INFO sending PrepareRequest {"height": 9013, "view": 0} -2023-12-16T14:39:18.820Z INFO sending Commit {"height": 9013, "view": 0} -2023-12-16T14:39:18.820Z INFO approving block {"height": 9013, "hash": "97db3dc13ddd795b95cc6b7a37db5192f3155ed485daefc6cd7c4112a7a2268e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "430608f57b26e4d28278b99fded7af4640f543e3c53490c436c7fcd5ca1c552e"} -2023-12-16T14:39:18.821Z INFO initializing dbft {"height": 9014, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:18.822Z debug frostfs-node/morph.go:229 new block {"index": 9013} -2023-12-16T14:39:18.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9013, "blockHeight": 9013, "took": "5.456029ms"} -2023-12-16T14:39:19.821Z INFO sending PrepareRequest {"height": 9014, "view": 0} -2023-12-16T14:39:19.821Z INFO sending Commit {"height": 9014, "view": 0} -2023-12-16T14:39:19.821Z INFO approving block {"height": 9014, "hash": "a050d24581d3f11ffd7615c08f9b39dcd99ad17a0b4380a6213dfa3be6b7f69e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97db3dc13ddd795b95cc6b7a37db5192f3155ed485daefc6cd7c4112a7a2268e"} -2023-12-16T14:39:19.822Z INFO initializing dbft {"height": 9015, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:19.823Z debug frostfs-node/morph.go:229 new block {"index": 9014} -2023-12-16T14:39:19.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9014, "blockHeight": 9014, "took": "4.84164ms"} -2023-12-16T14:39:20.822Z INFO sending PrepareRequest {"height": 9015, "view": 0} -2023-12-16T14:39:20.822Z INFO sending Commit {"height": 9015, "view": 0} -2023-12-16T14:39:20.823Z INFO approving block {"height": 9015, "hash": "9d21ded4d05fd9ed9390986e6edc82a07914f6f95701ee139797364594fa0ede", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a050d24581d3f11ffd7615c08f9b39dcd99ad17a0b4380a6213dfa3be6b7f69e"} -2023-12-16T14:39:20.824Z INFO initializing dbft {"height": 9016, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:20.824Z debug frostfs-node/morph.go:229 new block {"index": 9015} -2023-12-16T14:39:20.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9015, "blockHeight": 9015, "took": "4.371037ms"} -2023-12-16T14:39:21.824Z INFO sending PrepareRequest {"height": 9016, "view": 0} -2023-12-16T14:39:21.824Z INFO sending Commit {"height": 9016, "view": 0} -2023-12-16T14:39:21.825Z INFO approving block {"height": 9016, "hash": "149d41010f8dc667d8a5eb28dcef562b2de98804e07b2bbb62a1e256d9bcae49", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d21ded4d05fd9ed9390986e6edc82a07914f6f95701ee139797364594fa0ede"} -2023-12-16T14:39:21.826Z INFO initializing dbft {"height": 9017, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:21.827Z debug frostfs-node/morph.go:229 new block {"index": 9016} -2023-12-16T14:39:21.859Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9016, "blockHeight": 9016, "took": "3.238974ms"} -2023-12-16T14:39:22.825Z INFO sending PrepareRequest {"height": 9017, "view": 0} -2023-12-16T14:39:22.826Z INFO sending Commit {"height": 9017, "view": 0} -2023-12-16T14:39:22.826Z INFO approving block {"height": 9017, "hash": "49f64aaa3dd3f7f7bab21a347b2578363295048de00df77259224dd1c6bfc4b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "149d41010f8dc667d8a5eb28dcef562b2de98804e07b2bbb62a1e256d9bcae49"} -2023-12-16T14:39:22.827Z INFO initializing dbft {"height": 9018, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:22.828Z debug frostfs-node/morph.go:229 new block {"index": 9017} -2023-12-16T14:39:22.862Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9017, "blockHeight": 9017, "took": "5.618484ms"} -2023-12-16T14:39:23.827Z INFO sending PrepareRequest {"height": 9018, "view": 0} -2023-12-16T14:39:23.827Z INFO sending Commit {"height": 9018, "view": 0} -2023-12-16T14:39:23.827Z INFO approving block {"height": 9018, "hash": "f1207ea6776f3519c838fcb1c8210f2f7da9af72a34aa1821f0f1b822f28ee03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49f64aaa3dd3f7f7bab21a347b2578363295048de00df77259224dd1c6bfc4b2"} -2023-12-16T14:39:23.828Z INFO initializing dbft {"height": 9019, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:23.828Z debug frostfs-node/morph.go:229 new block {"index": 9018} -2023-12-16T14:39:23.862Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9018, "blockHeight": 9018, "took": "4.694867ms"} -2023-12-16T14:39:24.829Z INFO sending PrepareRequest {"height": 9019, "view": 0} -2023-12-16T14:39:24.829Z INFO sending Commit {"height": 9019, "view": 0} -2023-12-16T14:39:24.829Z INFO approving block {"height": 9019, "hash": "dd7a8190f6b56b422f1bdd4769be4865a287a469ef2040a8d70b34fc77bf5422", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1207ea6776f3519c838fcb1c8210f2f7da9af72a34aa1821f0f1b822f28ee03"} -2023-12-16T14:39:24.830Z INFO initializing dbft {"height": 9020, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:24.831Z debug frostfs-node/morph.go:229 new block {"index": 9019} -2023-12-16T14:39:24.861Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9019, "blockHeight": 9019, "took": "3.404059ms"} -2023-12-16T14:39:25.830Z INFO sending PrepareRequest {"height": 9020, "view": 0} -2023-12-16T14:39:25.830Z INFO sending Commit {"height": 9020, "view": 0} -2023-12-16T14:39:25.831Z INFO approving block {"height": 9020, "hash": "0bd3ac827d1807acf3321c4c11e1f7794efc31f68e98a51aba0c03d918d96101", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd7a8190f6b56b422f1bdd4769be4865a287a469ef2040a8d70b34fc77bf5422"} -2023-12-16T14:39:25.832Z INFO initializing dbft {"height": 9021, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:25.833Z debug frostfs-node/morph.go:229 new block {"index": 9020} -2023-12-16T14:39:25.862Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9020, "blockHeight": 9020, "took": "3.239534ms"} -2023-12-16T14:39:26.831Z INFO sending PrepareRequest {"height": 9021, "view": 0} -2023-12-16T14:39:26.832Z INFO sending Commit {"height": 9021, "view": 0} -2023-12-16T14:39:26.832Z INFO approving block {"height": 9021, "hash": "14eebc6e995f24b172d7cd8bc9f1223b35d3c69b4cdd37afa8109a959f08e830", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0bd3ac827d1807acf3321c4c11e1f7794efc31f68e98a51aba0c03d918d96101"} -2023-12-16T14:39:26.833Z INFO initializing dbft {"height": 9022, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:26.834Z debug frostfs-node/morph.go:229 new block {"index": 9021} -2023-12-16T14:39:26.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9021, "blockHeight": 9021, "took": "4.684184ms"} -2023-12-16T14:39:27.833Z INFO sending PrepareRequest {"height": 9022, "view": 0} -2023-12-16T14:39:27.834Z INFO sending Commit {"height": 9022, "view": 0} -2023-12-16T14:39:27.834Z INFO approving block {"height": 9022, "hash": "37e2f572daa66d4dde846e64ab5a58ca151e2b5c485888b89f1879a61dad443d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14eebc6e995f24b172d7cd8bc9f1223b35d3c69b4cdd37afa8109a959f08e830"} -2023-12-16T14:39:27.835Z INFO initializing dbft {"height": 9023, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:27.836Z debug frostfs-node/morph.go:229 new block {"index": 9022} -2023-12-16T14:39:27.863Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9022, "blockHeight": 9022, "took": "3.063409ms"} -2023-12-16T14:39:28.835Z INFO sending PrepareRequest {"height": 9023, "view": 0} -2023-12-16T14:39:28.835Z INFO sending Commit {"height": 9023, "view": 0} -2023-12-16T14:39:28.835Z INFO approving block {"height": 9023, "hash": "3df4b9bac574221139395b109f278fe57c475fdbf2910bde7471252f7b2dd1b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37e2f572daa66d4dde846e64ab5a58ca151e2b5c485888b89f1879a61dad443d"} -2023-12-16T14:39:28.837Z INFO initializing dbft {"height": 9024, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:28.838Z debug frostfs-node/morph.go:229 new block {"index": 9023} -2023-12-16T14:39:28.865Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9023, "blockHeight": 9023, "took": "4.580073ms"} -2023-12-16T14:39:29.836Z INFO sending PrepareRequest {"height": 9024, "view": 0} -2023-12-16T14:39:29.837Z INFO sending Commit {"height": 9024, "view": 0} -2023-12-16T14:39:29.837Z INFO approving block {"height": 9024, "hash": "f0ede7a743065f13ce043ceb75fc52b5dfd29d05447ce9851b600bdf352dbc57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3df4b9bac574221139395b109f278fe57c475fdbf2910bde7471252f7b2dd1b4"} -2023-12-16T14:39:29.838Z INFO initializing dbft {"height": 9025, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:29.839Z debug frostfs-node/morph.go:229 new block {"index": 9024} -2023-12-16T14:39:29.864Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9024, "blockHeight": 9024, "took": "3.083279ms"} -2023-12-16T14:39:30.838Z INFO sending PrepareRequest {"height": 9025, "view": 0} -2023-12-16T14:39:30.838Z INFO sending Commit {"height": 9025, "view": 0} -2023-12-16T14:39:30.838Z INFO approving block {"height": 9025, "hash": "8a1e1c7c8ac10d3b5ce32734cf868174a4b4013574997576b77c2b63d09be1a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0ede7a743065f13ce043ceb75fc52b5dfd29d05447ce9851b600bdf352dbc57"} -2023-12-16T14:39:30.839Z INFO initializing dbft {"height": 9026, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:30.839Z debug frostfs-node/morph.go:229 new block {"index": 9025} -2023-12-16T14:39:30.865Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9025, "blockHeight": 9025, "took": "3.348617ms"} -2023-12-16T14:39:31.839Z INFO sending PrepareRequest {"height": 9026, "view": 0} -2023-12-16T14:39:31.839Z INFO sending Commit {"height": 9026, "view": 0} -2023-12-16T14:39:31.839Z INFO approving block {"height": 9026, "hash": "7be620a33bdf8cc2d37868b5c2b3243ff2392e0eafd6a6c014ec67b0c7d18919", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a1e1c7c8ac10d3b5ce32734cf868174a4b4013574997576b77c2b63d09be1a9"} -2023-12-16T14:39:31.840Z INFO initializing dbft {"height": 9027, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:31.841Z debug frostfs-node/morph.go:229 new block {"index": 9026} -2023-12-16T14:39:31.865Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9026, "blockHeight": 9026, "took": "3.239474ms"} -2023-12-16T14:39:32.840Z INFO sending PrepareRequest {"height": 9027, "view": 0} -2023-12-16T14:39:32.841Z INFO sending Commit {"height": 9027, "view": 0} -2023-12-16T14:39:32.841Z INFO approving block {"height": 9027, "hash": "05940ec2faeb7fa3f4d1c1772ffb2131bbd6a44bc9d5ab5e09cafa93eb92571b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7be620a33bdf8cc2d37868b5c2b3243ff2392e0eafd6a6c014ec67b0c7d18919"} -2023-12-16T14:39:32.842Z INFO initializing dbft {"height": 9028, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:32.842Z debug frostfs-node/morph.go:229 new block {"index": 9027} -2023-12-16T14:39:32.866Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9027, "blockHeight": 9027, "took": "3.961858ms"} -2023-12-16T14:39:33.842Z INFO sending PrepareRequest {"height": 9028, "view": 0} -2023-12-16T14:39:33.842Z INFO sending Commit {"height": 9028, "view": 0} -2023-12-16T14:39:33.842Z INFO approving block {"height": 9028, "hash": "58aceffb9bfd5cf02d342dd80f238c630135a39b78b3707054d8a1abf824c668", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05940ec2faeb7fa3f4d1c1772ffb2131bbd6a44bc9d5ab5e09cafa93eb92571b"} -2023-12-16T14:39:33.843Z INFO initializing dbft {"height": 9029, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:33.844Z debug frostfs-node/morph.go:229 new block {"index": 9028} -2023-12-16T14:39:33.866Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9028, "blockHeight": 9028, "took": "3.293245ms"} -2023-12-16T14:39:34.843Z INFO sending PrepareRequest {"height": 9029, "view": 0} -2023-12-16T14:39:34.844Z INFO sending Commit {"height": 9029, "view": 0} -2023-12-16T14:39:34.844Z INFO approving block {"height": 9029, "hash": "bdb1c4f1b9076fe1967085bd3485c743390b0865c0f436f45ef9da37843935fa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "58aceffb9bfd5cf02d342dd80f238c630135a39b78b3707054d8a1abf824c668"} -2023-12-16T14:39:34.845Z INFO initializing dbft {"height": 9030, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:34.846Z debug frostfs-node/morph.go:229 new block {"index": 9029} -2023-12-16T14:39:34.867Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9029, "blockHeight": 9029, "took": "3.302806ms"} -2023-12-16T14:39:35.845Z INFO sending PrepareRequest {"height": 9030, "view": 0} -2023-12-16T14:39:35.846Z INFO sending Commit {"height": 9030, "view": 0} -2023-12-16T14:39:35.846Z INFO approving block {"height": 9030, "hash": "29481b47efc0a8571149fe79fbdc4783e9fc5e37649492a7d0aa97ebec0e8ec5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bdb1c4f1b9076fe1967085bd3485c743390b0865c0f436f45ef9da37843935fa"} -2023-12-16T14:39:35.847Z INFO initializing dbft {"height": 9031, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:35.848Z debug frostfs-node/morph.go:229 new block {"index": 9030} -2023-12-16T14:39:35.870Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9030, "blockHeight": 9030, "took": "4.920513ms"} -2023-12-16T14:39:36.847Z INFO sending PrepareRequest {"height": 9031, "view": 0} -2023-12-16T14:39:36.847Z INFO sending Commit {"height": 9031, "view": 0} -2023-12-16T14:39:36.847Z INFO approving block {"height": 9031, "hash": "b95412f9fb0b7905e2c3c4c536689626d97fd6b377108726323f09c9fd9870ca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29481b47efc0a8571149fe79fbdc4783e9fc5e37649492a7d0aa97ebec0e8ec5"} -2023-12-16T14:39:36.848Z INFO initializing dbft {"height": 9032, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:36.849Z debug frostfs-node/morph.go:229 new block {"index": 9031} -2023-12-16T14:39:36.870Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9031, "blockHeight": 9031, "took": "4.595374ms"} -2023-12-16T14:39:37.849Z INFO sending PrepareRequest {"height": 9032, "view": 0} -2023-12-16T14:39:37.849Z INFO sending Commit {"height": 9032, "view": 0} -2023-12-16T14:39:37.849Z INFO approving block {"height": 9032, "hash": "40b79d8fd2461c917b49beca24311c901dd7ea6ce87aaeb172c8ea754c7ecd25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b95412f9fb0b7905e2c3c4c536689626d97fd6b377108726323f09c9fd9870ca"} -2023-12-16T14:39:37.851Z INFO initializing dbft {"height": 9033, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:37.851Z debug frostfs-node/morph.go:229 new block {"index": 9032} -2023-12-16T14:39:37.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9032, "blockHeight": 9032, "took": "5.477525ms"} -2023-12-16T14:39:38.850Z INFO sending PrepareRequest {"height": 9033, "view": 0} -2023-12-16T14:39:38.850Z INFO sending Commit {"height": 9033, "view": 0} -2023-12-16T14:39:38.851Z INFO approving block {"height": 9033, "hash": "cc3704e05b9a038885afb7954b64571eebb7f4c676fe2315629c7dcd71a7eff6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40b79d8fd2461c917b49beca24311c901dd7ea6ce87aaeb172c8ea754c7ecd25"} -2023-12-16T14:39:38.851Z INFO initializing dbft {"height": 9034, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:38.852Z debug frostfs-node/morph.go:229 new block {"index": 9033} -2023-12-16T14:39:38.871Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9033, "blockHeight": 9033, "took": "4.438619ms"} -2023-12-16T14:39:39.852Z INFO sending PrepareRequest {"height": 9034, "view": 0} -2023-12-16T14:39:39.852Z INFO sending Commit {"height": 9034, "view": 0} -2023-12-16T14:39:39.852Z INFO approving block {"height": 9034, "hash": "a769351f7c6d96a9de8390a1ca630d751f123dca83c5e90abcef53f2fd793968", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cc3704e05b9a038885afb7954b64571eebb7f4c676fe2315629c7dcd71a7eff6"} -2023-12-16T14:39:39.853Z INFO initializing dbft {"height": 9035, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:39.853Z debug frostfs-node/morph.go:229 new block {"index": 9034} -2023-12-16T14:39:39.870Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9034, "blockHeight": 9034, "took": "3.404599ms"} -2023-12-16T14:39:40.854Z INFO sending PrepareRequest {"height": 9035, "view": 0} -2023-12-16T14:39:40.854Z INFO sending Commit {"height": 9035, "view": 0} -2023-12-16T14:39:40.854Z INFO approving block {"height": 9035, "hash": "778cfd9978489441552eca93043e2aa18c8d2778943f3f5884d7816d80971d9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a769351f7c6d96a9de8390a1ca630d751f123dca83c5e90abcef53f2fd793968"} -2023-12-16T14:39:40.855Z INFO initializing dbft {"height": 9036, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:40.855Z debug frostfs-node/morph.go:229 new block {"index": 9035} -2023-12-16T14:39:40.858Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 38, "iteration": 1, "error": "no data for 0 iteration in 38 epoch for consumers's trusts"} -2023-12-16T14:39:40.872Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9035, "blockHeight": 9035, "took": "4.783417ms"} -2023-12-16T14:39:41.855Z INFO sending PrepareRequest {"height": 9036, "view": 0} -2023-12-16T14:39:41.855Z INFO sending Commit {"height": 9036, "view": 0} -2023-12-16T14:39:41.855Z INFO approving block {"height": 9036, "hash": "9b9b790a633edf8ec2d2e4af7847a3c321a29c2635769c7042071a66d7a72ef2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "778cfd9978489441552eca93043e2aa18c8d2778943f3f5884d7816d80971d9c"} -2023-12-16T14:39:41.856Z INFO initializing dbft {"height": 9037, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:41.856Z debug frostfs-node/morph.go:229 new block {"index": 9036} -2023-12-16T14:39:41.860Z info settlement/calls.go:61 start basic income collection {"epoch": 38} -2023-12-16T14:39:41.873Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9036, "blockHeight": 9036, "took": "5.316873ms"} -2023-12-16T14:39:42.857Z INFO sending PrepareRequest {"height": 9037, "view": 0} -2023-12-16T14:39:42.857Z INFO sending Commit {"height": 9037, "view": 0} -2023-12-16T14:39:42.857Z INFO approving block {"height": 9037, "hash": "7268903834ee1e7587ac285c50e4ffcf5e671e5be06f19dd169595d6f4977e07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b9b790a633edf8ec2d2e4af7847a3c321a29c2635769c7042071a66d7a72ef2"} -2023-12-16T14:39:42.860Z INFO initializing dbft {"height": 9038, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:42.861Z debug frostfs-node/morph.go:229 new block {"index": 9037} -2023-12-16T14:39:42.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9037, "blockHeight": 9037, "took": "5.160219ms"} -2023-12-16T14:39:43.858Z INFO sending PrepareRequest {"height": 9038, "view": 0} -2023-12-16T14:39:43.859Z INFO sending Commit {"height": 9038, "view": 0} -2023-12-16T14:39:43.859Z INFO approving block {"height": 9038, "hash": "4d8a6dfe2048ea16106ebf0de302bec2ce55b3cfd65b25cc7fb302d2d063adf0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7268903834ee1e7587ac285c50e4ffcf5e671e5be06f19dd169595d6f4977e07"} -2023-12-16T14:39:43.860Z INFO initializing dbft {"height": 9039, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:43.861Z debug frostfs-node/morph.go:229 new block {"index": 9038} -2023-12-16T14:39:43.873Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9038, "blockHeight": 9038, "took": "3.867749ms"} -2023-12-16T14:39:44.860Z INFO sending PrepareRequest {"height": 9039, "view": 0} -2023-12-16T14:39:44.860Z INFO sending Commit {"height": 9039, "view": 0} -2023-12-16T14:39:44.860Z INFO approving block {"height": 9039, "hash": "26cee5a26fac6461a881513f7317f254947049f4003564a9460c2fb2624e9dbc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d8a6dfe2048ea16106ebf0de302bec2ce55b3cfd65b25cc7fb302d2d063adf0"} -2023-12-16T14:39:44.861Z INFO initializing dbft {"height": 9040, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:44.861Z debug frostfs-node/morph.go:229 new block {"index": 9039} -2023-12-16T14:39:44.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9039, "blockHeight": 9039, "took": "4.488777ms"} -2023-12-16T14:39:45.861Z INFO sending PrepareRequest {"height": 9040, "view": 0} -2023-12-16T14:39:45.861Z INFO sending Commit {"height": 9040, "view": 0} -2023-12-16T14:39:45.861Z INFO approving block {"height": 9040, "hash": "879744182fda45fd19dee7d3535dc0b27a54fe0a2baa5635cfa17c827b6ef232", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "26cee5a26fac6461a881513f7317f254947049f4003564a9460c2fb2624e9dbc"} -2023-12-16T14:39:45.862Z INFO initializing dbft {"height": 9041, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:45.862Z debug frostfs-node/morph.go:229 new block {"index": 9040} -2023-12-16T14:39:45.874Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9040, "blockHeight": 9040, "took": "3.850858ms"} -2023-12-16T14:39:46.862Z INFO sending PrepareRequest {"height": 9041, "view": 0} -2023-12-16T14:39:46.862Z INFO sending Commit {"height": 9041, "view": 0} -2023-12-16T14:39:46.862Z INFO approving block {"height": 9041, "hash": "942d099eaf7affa817efe8b610d45e016561557aafe008f813398489fd89e829", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "879744182fda45fd19dee7d3535dc0b27a54fe0a2baa5635cfa17c827b6ef232"} -2023-12-16T14:39:46.863Z INFO initializing dbft {"height": 9042, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:46.864Z debug frostfs-node/morph.go:229 new block {"index": 9041} -2023-12-16T14:39:46.876Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9041, "blockHeight": 9041, "took": "4.754449ms"} -2023-12-16T14:39:47.864Z INFO sending PrepareRequest {"height": 9042, "view": 0} -2023-12-16T14:39:47.864Z INFO sending Commit {"height": 9042, "view": 0} -2023-12-16T14:39:47.864Z INFO approving block {"height": 9042, "hash": "f0031f56800259bd44fc28f397f4be7baaf8e3caa38b67055d426ac755f59f26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "942d099eaf7affa817efe8b610d45e016561557aafe008f813398489fd89e829"} -2023-12-16T14:39:47.866Z INFO initializing dbft {"height": 9043, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:47.867Z debug frostfs-node/morph.go:229 new block {"index": 9042} -2023-12-16T14:39:47.875Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9042, "blockHeight": 9042, "took": "3.849032ms"} -2023-12-16T14:39:48.865Z INFO sending PrepareRequest {"height": 9043, "view": 0} -2023-12-16T14:39:48.865Z INFO sending Commit {"height": 9043, "view": 0} -2023-12-16T14:39:48.865Z INFO approving block {"height": 9043, "hash": "c58b8a1b9d1476b1cda563f397eb438500123d5d7be5c3a8e5d46a675f51c938", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f0031f56800259bd44fc28f397f4be7baaf8e3caa38b67055d426ac755f59f26"} -2023-12-16T14:39:48.866Z INFO initializing dbft {"height": 9044, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:48.867Z debug frostfs-node/morph.go:229 new block {"index": 9043} -2023-12-16T14:39:48.875Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9043, "blockHeight": 9043, "took": "3.414071ms"} -2023-12-16T14:39:49.867Z INFO sending PrepareRequest {"height": 9044, "view": 0} -2023-12-16T14:39:49.867Z INFO sending Commit {"height": 9044, "view": 0} -2023-12-16T14:39:49.867Z INFO approving block {"height": 9044, "hash": "1343ca58ef40a0b5fdfa61d21b05510bac2d84d02065edb6a53669e7d818da21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c58b8a1b9d1476b1cda563f397eb438500123d5d7be5c3a8e5d46a675f51c938"} -2023-12-16T14:39:49.868Z INFO initializing dbft {"height": 9045, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:49.868Z debug frostfs-node/morph.go:229 new block {"index": 9044} -2023-12-16T14:39:49.878Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9044, "blockHeight": 9044, "took": "4.780002ms"} -2023-12-16T14:39:50.868Z INFO sending PrepareRequest {"height": 9045, "view": 0} -2023-12-16T14:39:50.868Z INFO sending Commit {"height": 9045, "view": 0} -2023-12-16T14:39:50.869Z INFO approving block {"height": 9045, "hash": "afb85b7434abe727688bf9bbdaa22e94d25460e9be907c911faec59ed517c085", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1343ca58ef40a0b5fdfa61d21b05510bac2d84d02065edb6a53669e7d818da21"} -2023-12-16T14:39:50.869Z INFO initializing dbft {"height": 9046, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:50.870Z debug frostfs-node/morph.go:229 new block {"index": 9045} -2023-12-16T14:39:50.877Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9045, "blockHeight": 9045, "took": "3.783149ms"} -2023-12-16T14:39:51.870Z INFO sending PrepareRequest {"height": 9046, "view": 0} -2023-12-16T14:39:51.870Z INFO sending Commit {"height": 9046, "view": 0} -2023-12-16T14:39:51.870Z INFO approving block {"height": 9046, "hash": "eba76446711c32144f1685e57ac577dd04574508304d4590befb4938cea75c0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afb85b7434abe727688bf9bbdaa22e94d25460e9be907c911faec59ed517c085"} -2023-12-16T14:39:51.871Z INFO initializing dbft {"height": 9047, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:51.872Z debug frostfs-node/morph.go:229 new block {"index": 9046} -2023-12-16T14:39:51.880Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9046, "blockHeight": 9046, "took": "5.631429ms"} -2023-12-16T14:39:52.872Z INFO sending PrepareRequest {"height": 9047, "view": 0} -2023-12-16T14:39:52.872Z INFO sending Commit {"height": 9047, "view": 0} -2023-12-16T14:39:52.872Z INFO approving block {"height": 9047, "hash": "7673e8531e4dd86c67c95396cee4994690865e9ffe91eef2c19d0dcaee4cc060", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eba76446711c32144f1685e57ac577dd04574508304d4590befb4938cea75c0a"} -2023-12-16T14:39:52.873Z INFO initializing dbft {"height": 9048, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:52.873Z debug frostfs-node/morph.go:229 new block {"index": 9047} -2023-12-16T14:39:52.878Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9047, "blockHeight": 9047, "took": "3.580741ms"} -2023-12-16T14:39:53.872Z INFO sending PrepareRequest {"height": 9048, "view": 0} -2023-12-16T14:39:53.873Z INFO sending Commit {"height": 9048, "view": 0} -2023-12-16T14:39:53.873Z INFO approving block {"height": 9048, "hash": "08052a832e30486b8f1ef66621c87dad5c263dc2d699f35aff3d0af35e99c1d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7673e8531e4dd86c67c95396cee4994690865e9ffe91eef2c19d0dcaee4cc060"} -2023-12-16T14:39:53.873Z INFO initializing dbft {"height": 9049, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:53.874Z debug frostfs-node/morph.go:229 new block {"index": 9048} -2023-12-16T14:39:53.880Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9048, "blockHeight": 9048, "took": "4.792234ms"} -2023-12-16T14:39:54.873Z INFO sending PrepareRequest {"height": 9049, "view": 0} -2023-12-16T14:39:54.874Z INFO sending Commit {"height": 9049, "view": 0} -2023-12-16T14:39:54.874Z INFO approving block {"height": 9049, "hash": "f8d1597013ff3d4259d981e27324f888a62065103a77c69b574c23aed15a7823", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08052a832e30486b8f1ef66621c87dad5c263dc2d699f35aff3d0af35e99c1d3"} -2023-12-16T14:39:54.875Z INFO initializing dbft {"height": 9050, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:54.876Z debug frostfs-node/morph.go:229 new block {"index": 9049} -2023-12-16T14:39:54.882Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9049, "blockHeight": 9049, "took": "5.178927ms"} -2023-12-16T14:39:55.875Z INFO sending PrepareRequest {"height": 9050, "view": 0} -2023-12-16T14:39:55.876Z INFO sending Commit {"height": 9050, "view": 0} -2023-12-16T14:39:55.876Z INFO approving block {"height": 9050, "hash": "b8d7c25fcfcb38e888433e106b1c56880c522885229e935f3f4845f086cfc42d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8d1597013ff3d4259d981e27324f888a62065103a77c69b574c23aed15a7823"} -2023-12-16T14:39:55.876Z INFO initializing dbft {"height": 9051, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:55.878Z debug frostfs-node/morph.go:229 new block {"index": 9050} -2023-12-16T14:39:55.880Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:39:55.881Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:39:55.881Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:39:55.883Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9050, "blockHeight": 9050, "took": "5.884482ms"} -2023-12-16T14:39:56.877Z INFO sending PrepareRequest {"height": 9051, "view": 0} -2023-12-16T14:39:56.877Z INFO sending Commit {"height": 9051, "view": 0} -2023-12-16T14:39:56.877Z INFO approving block {"height": 9051, "hash": "47be7643b68e24a8010430e3ed528b2de13a36366fa929db9e8ba7c2b83fcb18", "tx_count": 2, "merkle": "0235e45c483c8469465d212cccf60a3e0a94904cf39257a9574fb0d8d556d12d", "prev": "b8d7c25fcfcb38e888433e106b1c56880c522885229e935f3f4845f086cfc42d"} -2023-12-16T14:39:56.878Z INFO runtime log {"tx": "aaff10496946826e6fc6b4537a3e26cc69e5df075b04420cce8140e2cfb3bab4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:39:56.878Z INFO runtime log {"tx": "aaff10496946826e6fc6b4537a3e26cc69e5df075b04420cce8140e2cfb3bab4", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:39:56.879Z INFO initializing dbft {"height": 9052, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:56.879Z debug frostfs-node/morph.go:229 new block {"index": 9051} -2023-12-16T14:39:57.878Z INFO sending PrepareRequest {"height": 9052, "view": 0} -2023-12-16T14:39:57.878Z INFO sending Commit {"height": 9052, "view": 0} -2023-12-16T14:39:57.879Z INFO approving block {"height": 9052, "hash": "6543b725b7c315622b5d8d2cff55771320f94093f30cebcfa2d30ec9bdb637e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47be7643b68e24a8010430e3ed528b2de13a36366fa929db9e8ba7c2b83fcb18"} -2023-12-16T14:39:57.879Z INFO initializing dbft {"height": 9053, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:57.880Z debug frostfs-node/morph.go:229 new block {"index": 9052} -2023-12-16T14:39:57.886Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9051, "blockHeight": 9051, "took": "7.931532ms"} -2023-12-16T14:39:58.880Z INFO sending PrepareRequest {"height": 9053, "view": 0} -2023-12-16T14:39:58.880Z INFO sending Commit {"height": 9053, "view": 0} -2023-12-16T14:39:58.880Z INFO approving block {"height": 9053, "hash": "777406ea1fa4cbfbb7809689a285e44eaec1e5e44fd3a1a98f641869149d7f28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6543b725b7c315622b5d8d2cff55771320f94093f30cebcfa2d30ec9bdb637e5"} -2023-12-16T14:39:58.881Z INFO initializing dbft {"height": 9054, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:58.882Z debug frostfs-node/morph.go:229 new block {"index": 9053} -2023-12-16T14:39:58.882Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9052, "blockHeight": 9052, "took": "4.079567ms"} -2023-12-16T14:39:59.882Z INFO sending PrepareRequest {"height": 9054, "view": 0} -2023-12-16T14:39:59.883Z INFO sending Commit {"height": 9054, "view": 0} -2023-12-16T14:39:59.883Z INFO approving block {"height": 9054, "hash": "4d6c1ea73fa52557a8b081ca9857ab9b571326bcdf6415c432774ccfddf5689f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "777406ea1fa4cbfbb7809689a285e44eaec1e5e44fd3a1a98f641869149d7f28"} -2023-12-16T14:39:59.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9053, "blockHeight": 9053, "took": "4.938591ms"} -2023-12-16T14:39:59.884Z INFO initializing dbft {"height": 9055, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:39:59.884Z debug frostfs-node/morph.go:229 new block {"index": 9054} -2023-12-16T14:40:00.882Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9054, "blockHeight": 9054, "took": "3.468601ms"} -2023-12-16T14:40:00.883Z INFO sending PrepareRequest {"height": 9055, "view": 0} -2023-12-16T14:40:00.884Z INFO sending Commit {"height": 9055, "view": 0} -2023-12-16T14:40:00.884Z INFO approving block {"height": 9055, "hash": "d2bcc8fc3f10c9917844b1b39b295c8ee5f5e454b3f667c0e82fc4744364f01e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d6c1ea73fa52557a8b081ca9857ab9b571326bcdf6415c432774ccfddf5689f"} -2023-12-16T14:40:00.885Z INFO initializing dbft {"height": 9056, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:00.885Z debug frostfs-node/morph.go:229 new block {"index": 9055} -2023-12-16T14:40:01.886Z INFO sending PrepareRequest {"height": 9056, "view": 0} -2023-12-16T14:40:01.886Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9055, "blockHeight": 9055, "took": "6.445358ms"} -2023-12-16T14:40:01.886Z INFO sending Commit {"height": 9056, "view": 0} -2023-12-16T14:40:01.887Z INFO approving block {"height": 9056, "hash": "c43312151b7c3501d57eee39e54b454eeca7fe8aa9d1d34b20fcea6340190646", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2bcc8fc3f10c9917844b1b39b295c8ee5f5e454b3f667c0e82fc4744364f01e"} -2023-12-16T14:40:01.888Z INFO initializing dbft {"height": 9057, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:01.889Z debug frostfs-node/morph.go:229 new block {"index": 9056} -2023-12-16T14:40:02.884Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9056, "blockHeight": 9056, "took": "3.231014ms"} -2023-12-16T14:40:02.888Z INFO sending PrepareRequest {"height": 9057, "view": 0} -2023-12-16T14:40:02.888Z INFO sending Commit {"height": 9057, "view": 0} -2023-12-16T14:40:02.889Z INFO approving block {"height": 9057, "hash": "4feaf1b92781102f766fd127bb3e8a9a5e3616459539f126d9ec4ae2723374f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c43312151b7c3501d57eee39e54b454eeca7fe8aa9d1d34b20fcea6340190646"} -2023-12-16T14:40:02.889Z INFO initializing dbft {"height": 9058, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:02.890Z debug frostfs-node/morph.go:229 new block {"index": 9057} -2023-12-16T14:40:03.885Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9057, "blockHeight": 9057, "took": "3.673517ms"} -2023-12-16T14:40:03.890Z INFO sending PrepareRequest {"height": 9058, "view": 0} -2023-12-16T14:40:03.890Z INFO sending Commit {"height": 9058, "view": 0} -2023-12-16T14:40:03.890Z INFO approving block {"height": 9058, "hash": "b08f19860b2da829aa09a7789e6b5b879d95d06752ec597027f8aef777925a6f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4feaf1b92781102f766fd127bb3e8a9a5e3616459539f126d9ec4ae2723374f2"} -2023-12-16T14:40:03.891Z INFO initializing dbft {"height": 9059, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:03.891Z debug frostfs-node/morph.go:229 new block {"index": 9058} -2023-12-16T14:40:04.887Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9058, "blockHeight": 9058, "took": "5.2165ms"} -2023-12-16T14:40:04.891Z INFO sending PrepareRequest {"height": 9059, "view": 0} -2023-12-16T14:40:04.891Z INFO sending Commit {"height": 9059, "view": 0} -2023-12-16T14:40:04.892Z INFO approving block {"height": 9059, "hash": "594df8e0f239865daff055225bc22cdad2a359a3746333549d449273e4ca2f54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b08f19860b2da829aa09a7789e6b5b879d95d06752ec597027f8aef777925a6f"} -2023-12-16T14:40:04.892Z INFO initializing dbft {"height": 9060, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:04.893Z debug frostfs-node/morph.go:229 new block {"index": 9059} -2023-12-16T14:40:05.887Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9059, "blockHeight": 9059, "took": "5.103348ms"} -2023-12-16T14:40:05.893Z INFO sending PrepareRequest {"height": 9060, "view": 0} -2023-12-16T14:40:05.893Z INFO sending Commit {"height": 9060, "view": 0} -2023-12-16T14:40:05.893Z INFO approving block {"height": 9060, "hash": "cb7f6e8b32165002de9f6becc7746269f7f16f7d3faf17b88774b429611eee4b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "594df8e0f239865daff055225bc22cdad2a359a3746333549d449273e4ca2f54"} -2023-12-16T14:40:05.894Z INFO initializing dbft {"height": 9061, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:05.894Z debug frostfs-node/morph.go:229 new block {"index": 9060} -2023-12-16T14:40:06.888Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9060, "blockHeight": 9060, "took": "5.085727ms"} -2023-12-16T14:40:06.894Z INFO sending PrepareRequest {"height": 9061, "view": 0} -2023-12-16T14:40:06.894Z INFO sending Commit {"height": 9061, "view": 0} -2023-12-16T14:40:06.895Z INFO approving block {"height": 9061, "hash": "481d21debbeaa766cc5b16b28e9de1f3eb475fa9789048596b437046d80e846b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb7f6e8b32165002de9f6becc7746269f7f16f7d3faf17b88774b429611eee4b"} -2023-12-16T14:40:06.895Z INFO initializing dbft {"height": 9062, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:06.896Z debug frostfs-node/morph.go:229 new block {"index": 9061} -2023-12-16T14:40:07.886Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9061, "blockHeight": 9061, "took": "3.45451ms"} -2023-12-16T14:40:07.896Z INFO sending PrepareRequest {"height": 9062, "view": 0} -2023-12-16T14:40:07.896Z INFO sending Commit {"height": 9062, "view": 0} -2023-12-16T14:40:07.896Z INFO approving block {"height": 9062, "hash": "875d733f71f3a21aa8eada8147edb4fa3b2165a942f9879702332172ff216b68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "481d21debbeaa766cc5b16b28e9de1f3eb475fa9789048596b437046d80e846b"} -2023-12-16T14:40:07.897Z INFO initializing dbft {"height": 9063, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:07.898Z debug frostfs-node/morph.go:229 new block {"index": 9062} -2023-12-16T14:40:08.888Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9062, "blockHeight": 9062, "took": "4.006375ms"} -2023-12-16T14:40:08.897Z INFO sending PrepareRequest {"height": 9063, "view": 0} -2023-12-16T14:40:08.897Z INFO sending Commit {"height": 9063, "view": 0} -2023-12-16T14:40:08.897Z INFO approving block {"height": 9063, "hash": "bc6049067f22759d54a602c0cfbdf8772e3d259e3a84f3fe6742ac6437119d94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "875d733f71f3a21aa8eada8147edb4fa3b2165a942f9879702332172ff216b68"} -2023-12-16T14:40:08.898Z INFO initializing dbft {"height": 9064, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:08.899Z debug frostfs-node/morph.go:229 new block {"index": 9063} -2023-12-16T14:40:09.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9063, "blockHeight": 9063, "took": "4.890071ms"} -2023-12-16T14:40:09.899Z INFO sending PrepareRequest {"height": 9064, "view": 0} -2023-12-16T14:40:09.899Z INFO sending Commit {"height": 9064, "view": 0} -2023-12-16T14:40:09.899Z INFO approving block {"height": 9064, "hash": "7c1c0ffdc2c81967590a4382916c776b9258dd67352d5b7a32adc9b01e9e1055", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc6049067f22759d54a602c0cfbdf8772e3d259e3a84f3fe6742ac6437119d94"} -2023-12-16T14:40:09.900Z INFO initializing dbft {"height": 9065, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:09.901Z debug frostfs-node/morph.go:229 new block {"index": 9064} -2023-12-16T14:40:10.890Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9064, "blockHeight": 9064, "took": "5.454155ms"} -2023-12-16T14:40:10.900Z INFO sending PrepareRequest {"height": 9065, "view": 0} -2023-12-16T14:40:10.900Z INFO sending Commit {"height": 9065, "view": 0} -2023-12-16T14:40:10.900Z INFO approving block {"height": 9065, "hash": "48bb50f825acbce5d562e196d1088e8e06acd35d4d4a4a4a858c26ef8fe41a4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7c1c0ffdc2c81967590a4382916c776b9258dd67352d5b7a32adc9b01e9e1055"} -2023-12-16T14:40:10.901Z INFO initializing dbft {"height": 9066, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:10.902Z debug frostfs-node/morph.go:229 new block {"index": 9065} -2023-12-16T14:40:11.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9065, "blockHeight": 9065, "took": "4.439058ms"} -2023-12-16T14:40:11.901Z INFO sending PrepareRequest {"height": 9066, "view": 0} -2023-12-16T14:40:11.902Z INFO sending Commit {"height": 9066, "view": 0} -2023-12-16T14:40:11.902Z INFO approving block {"height": 9066, "hash": "47b8ca024d7fc2ced8350f9773769eb3a2647ba53792bed5739f13fb9ba5621a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48bb50f825acbce5d562e196d1088e8e06acd35d4d4a4a4a858c26ef8fe41a4a"} -2023-12-16T14:40:11.902Z INFO initializing dbft {"height": 9067, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:11.903Z debug frostfs-node/morph.go:229 new block {"index": 9066} -2023-12-16T14:40:12.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9066, "blockHeight": 9066, "took": "3.853314ms"} -2023-12-16T14:40:12.903Z INFO sending PrepareRequest {"height": 9067, "view": 0} -2023-12-16T14:40:12.903Z INFO sending Commit {"height": 9067, "view": 0} -2023-12-16T14:40:12.903Z INFO approving block {"height": 9067, "hash": "8c804800096c8677c6ff876e117db5c58d544e29b98ce1f92d3ed8ec97975631", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47b8ca024d7fc2ced8350f9773769eb3a2647ba53792bed5739f13fb9ba5621a"} -2023-12-16T14:40:12.904Z INFO initializing dbft {"height": 9068, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:12.904Z debug frostfs-node/morph.go:229 new block {"index": 9067} -2023-12-16T14:40:13.889Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9067, "blockHeight": 9067, "took": "3.572665ms"} -2023-12-16T14:40:13.904Z INFO sending PrepareRequest {"height": 9068, "view": 0} -2023-12-16T14:40:13.904Z INFO sending Commit {"height": 9068, "view": 0} -2023-12-16T14:40:13.905Z INFO approving block {"height": 9068, "hash": "c000bb5ebfa6821cddccec1045565a8f1347dbe4bbe8ab0b8081f5e32ae90462", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c804800096c8677c6ff876e117db5c58d544e29b98ce1f92d3ed8ec97975631"} -2023-12-16T14:40:13.905Z INFO initializing dbft {"height": 9069, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:13.906Z debug frostfs-node/morph.go:229 new block {"index": 9068} -2023-12-16T14:40:14.892Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9068, "blockHeight": 9068, "took": "6.158564ms"} -2023-12-16T14:40:14.906Z INFO sending PrepareRequest {"height": 9069, "view": 0} -2023-12-16T14:40:14.906Z INFO sending Commit {"height": 9069, "view": 0} -2023-12-16T14:40:14.907Z INFO approving block {"height": 9069, "hash": "3492d246a8b8b2ad5a70a89b7539dcfe85481da1c651a9309a7f7ede98454fa7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c000bb5ebfa6821cddccec1045565a8f1347dbe4bbe8ab0b8081f5e32ae90462"} -2023-12-16T14:40:14.908Z INFO initializing dbft {"height": 9070, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:14.908Z debug frostfs-node/morph.go:229 new block {"index": 9069} -2023-12-16T14:40:15.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9069, "blockHeight": 9069, "took": "9.240933ms"} -2023-12-16T14:40:15.907Z INFO sending PrepareRequest {"height": 9070, "view": 0} -2023-12-16T14:40:15.908Z INFO sending Commit {"height": 9070, "view": 0} -2023-12-16T14:40:15.908Z INFO approving block {"height": 9070, "hash": "d007505fab3e2a1ad6877f31b8d0cf1c1adc77ee8518362984622eb20b53f342", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3492d246a8b8b2ad5a70a89b7539dcfe85481da1c651a9309a7f7ede98454fa7"} -2023-12-16T14:40:15.909Z INFO initializing dbft {"height": 9071, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:15.909Z debug frostfs-node/morph.go:229 new block {"index": 9070} -2023-12-16T14:40:16.891Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9070, "blockHeight": 9070, "took": "3.712825ms"} -2023-12-16T14:40:16.909Z INFO sending PrepareRequest {"height": 9071, "view": 0} -2023-12-16T14:40:16.909Z INFO sending Commit {"height": 9071, "view": 0} -2023-12-16T14:40:16.910Z INFO approving block {"height": 9071, "hash": "97c8011e58fa08c42ba79fe33bfe9a35173ae37ed2567bf32adb6e70c8cce338", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d007505fab3e2a1ad6877f31b8d0cf1c1adc77ee8518362984622eb20b53f342"} -2023-12-16T14:40:16.911Z INFO initializing dbft {"height": 9072, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:16.912Z debug frostfs-node/morph.go:229 new block {"index": 9071} -2023-12-16T14:40:17.893Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9071, "blockHeight": 9071, "took": "4.627352ms"} -2023-12-16T14:40:17.911Z INFO sending PrepareRequest {"height": 9072, "view": 0} -2023-12-16T14:40:17.911Z INFO sending Commit {"height": 9072, "view": 0} -2023-12-16T14:40:17.911Z INFO approving block {"height": 9072, "hash": "7bd485d3175aef8831646c6717e6e54d7b89503743bbb27d87e3e24ce021a4c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97c8011e58fa08c42ba79fe33bfe9a35173ae37ed2567bf32adb6e70c8cce338"} -2023-12-16T14:40:17.912Z INFO initializing dbft {"height": 9073, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:17.912Z debug frostfs-node/morph.go:229 new block {"index": 9072} -2023-12-16T14:40:18.894Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9072, "blockHeight": 9072, "took": "5.193146ms"} -2023-12-16T14:40:18.911Z INFO sending PrepareRequest {"height": 9073, "view": 0} -2023-12-16T14:40:18.911Z INFO sending Commit {"height": 9073, "view": 0} -2023-12-16T14:40:18.912Z INFO approving block {"height": 9073, "hash": "f1515134374cf5cfdb4f69db38866dbf2c2edd0d7d5e9e8a87c31fa199092969", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7bd485d3175aef8831646c6717e6e54d7b89503743bbb27d87e3e24ce021a4c1"} -2023-12-16T14:40:18.913Z INFO initializing dbft {"height": 9074, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:18.913Z debug frostfs-node/morph.go:229 new block {"index": 9073} -2023-12-16T14:40:19.893Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9073, "blockHeight": 9073, "took": "3.713192ms"} -2023-12-16T14:40:19.913Z INFO sending PrepareRequest {"height": 9074, "view": 0} -2023-12-16T14:40:19.913Z INFO sending Commit {"height": 9074, "view": 0} -2023-12-16T14:40:19.914Z INFO approving block {"height": 9074, "hash": "38c9520390ad22f84de631dd22b1d35cacd0640bd9c1444755f8b42798a67a7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1515134374cf5cfdb4f69db38866dbf2c2edd0d7d5e9e8a87c31fa199092969"} -2023-12-16T14:40:19.915Z INFO initializing dbft {"height": 9075, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:19.915Z debug frostfs-node/morph.go:229 new block {"index": 9074} -2023-12-16T14:40:20.894Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9074, "blockHeight": 9074, "took": "3.683608ms"} -2023-12-16T14:40:20.914Z INFO sending PrepareRequest {"height": 9075, "view": 0} -2023-12-16T14:40:20.915Z INFO sending Commit {"height": 9075, "view": 0} -2023-12-16T14:40:20.915Z INFO approving block {"height": 9075, "hash": "6f4d99c155b5c02dec53a60e8980ccceb47bd10f73b3d04d6acdc5f6fa38077d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38c9520390ad22f84de631dd22b1d35cacd0640bd9c1444755f8b42798a67a7d"} -2023-12-16T14:40:20.916Z INFO initializing dbft {"height": 9076, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:20.916Z debug frostfs-node/morph.go:229 new block {"index": 9075} -2023-12-16T14:40:21.897Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9075, "blockHeight": 9075, "took": "5.532171ms"} -2023-12-16T14:40:21.916Z INFO sending PrepareRequest {"height": 9076, "view": 0} -2023-12-16T14:40:21.916Z INFO sending Commit {"height": 9076, "view": 0} -2023-12-16T14:40:21.916Z INFO approving block {"height": 9076, "hash": "2189183a4647484d033eb4817a2fb6c685f0bced4d37faff6702aaf822381dbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f4d99c155b5c02dec53a60e8980ccceb47bd10f73b3d04d6acdc5f6fa38077d"} -2023-12-16T14:40:21.918Z INFO initializing dbft {"height": 9077, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:21.918Z debug frostfs-node/morph.go:229 new block {"index": 9076} -2023-12-16T14:40:22.897Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9076, "blockHeight": 9076, "took": "5.431936ms"} -2023-12-16T14:40:22.918Z INFO sending PrepareRequest {"height": 9077, "view": 0} -2023-12-16T14:40:22.918Z INFO sending Commit {"height": 9077, "view": 0} -2023-12-16T14:40:22.918Z INFO approving block {"height": 9077, "hash": "5f6c81f4c03b929818cb2719218c2c54477916ebbbbe3e4c051ff96b38954cf1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2189183a4647484d033eb4817a2fb6c685f0bced4d37faff6702aaf822381dbe"} -2023-12-16T14:40:22.919Z INFO initializing dbft {"height": 9078, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:22.919Z debug frostfs-node/morph.go:229 new block {"index": 9077} -2023-12-16T14:40:23.896Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9077, "blockHeight": 9077, "took": "4.028252ms"} -2023-12-16T14:40:23.919Z INFO sending PrepareRequest {"height": 9078, "view": 0} -2023-12-16T14:40:23.919Z INFO sending Commit {"height": 9078, "view": 0} -2023-12-16T14:40:23.920Z INFO approving block {"height": 9078, "hash": "25ed7c88f085219267a8b6e060339a1f3136858d77d9d9a064e6ee45198c5450", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5f6c81f4c03b929818cb2719218c2c54477916ebbbbe3e4c051ff96b38954cf1"} -2023-12-16T14:40:23.921Z INFO initializing dbft {"height": 9079, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:23.921Z debug frostfs-node/morph.go:229 new block {"index": 9078} -2023-12-16T14:40:24.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9078, "blockHeight": 9078, "took": "4.538582ms"} -2023-12-16T14:40:24.921Z INFO sending PrepareRequest {"height": 9079, "view": 0} -2023-12-16T14:40:24.921Z INFO sending Commit {"height": 9079, "view": 0} -2023-12-16T14:40:24.921Z INFO approving block {"height": 9079, "hash": "300c4b3c7c4915d62827bfea476f19dae40170993299aa305991fdd6a4dab3e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25ed7c88f085219267a8b6e060339a1f3136858d77d9d9a064e6ee45198c5450"} -2023-12-16T14:40:24.922Z INFO initializing dbft {"height": 9080, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:24.923Z debug frostfs-node/morph.go:229 new block {"index": 9079} -2023-12-16T14:40:25.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9079, "blockHeight": 9079, "took": "3.848522ms"} -2023-12-16T14:40:25.923Z INFO sending PrepareRequest {"height": 9080, "view": 0} -2023-12-16T14:40:25.923Z INFO sending Commit {"height": 9080, "view": 0} -2023-12-16T14:40:25.923Z INFO approving block {"height": 9080, "hash": "2d37b7c07580a028670a0a24acfff49554094298b8647cc68dc28c72b0cdee34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "300c4b3c7c4915d62827bfea476f19dae40170993299aa305991fdd6a4dab3e7"} -2023-12-16T14:40:25.924Z INFO initializing dbft {"height": 9081, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:25.925Z debug frostfs-node/morph.go:229 new block {"index": 9080} -2023-12-16T14:40:26.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9080, "blockHeight": 9080, "took": "3.896854ms"} -2023-12-16T14:40:26.924Z INFO sending PrepareRequest {"height": 9081, "view": 0} -2023-12-16T14:40:26.924Z INFO sending Commit {"height": 9081, "view": 0} -2023-12-16T14:40:26.925Z INFO approving block {"height": 9081, "hash": "eb668ea0a6bb7cd035d46c01847b682476806e95720d2489112f8a5852de549d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2d37b7c07580a028670a0a24acfff49554094298b8647cc68dc28c72b0cdee34"} -2023-12-16T14:40:26.926Z INFO initializing dbft {"height": 9082, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:26.926Z debug frostfs-node/morph.go:229 new block {"index": 9081} -2023-12-16T14:40:27.898Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9081, "blockHeight": 9081, "took": "3.08645ms"} -2023-12-16T14:40:27.926Z INFO sending PrepareRequest {"height": 9082, "view": 0} -2023-12-16T14:40:27.926Z INFO sending Commit {"height": 9082, "view": 0} -2023-12-16T14:40:27.927Z INFO approving block {"height": 9082, "hash": "1a5cf71f71cf228e7d4349f2f548696542575ad7a0fcad8f90f8b04344fbe15c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb668ea0a6bb7cd035d46c01847b682476806e95720d2489112f8a5852de549d"} -2023-12-16T14:40:27.928Z INFO initializing dbft {"height": 9083, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:27.928Z debug frostfs-node/morph.go:229 new block {"index": 9082} -2023-12-16T14:40:28.899Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9082, "blockHeight": 9082, "took": "3.595625ms"} -2023-12-16T14:40:28.927Z INFO sending PrepareRequest {"height": 9083, "view": 0} -2023-12-16T14:40:28.927Z INFO sending Commit {"height": 9083, "view": 0} -2023-12-16T14:40:28.928Z INFO approving block {"height": 9083, "hash": "ae3f78c992cc94381dc297e75e146a5007043407f3f498c70751081f114acea5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a5cf71f71cf228e7d4349f2f548696542575ad7a0fcad8f90f8b04344fbe15c"} -2023-12-16T14:40:28.929Z INFO initializing dbft {"height": 9084, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:28.929Z debug frostfs-node/morph.go:229 new block {"index": 9083} -2023-12-16T14:40:29.899Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9083, "blockHeight": 9083, "took": "3.313832ms"} -2023-12-16T14:40:29.929Z INFO sending PrepareRequest {"height": 9084, "view": 0} -2023-12-16T14:40:29.929Z INFO sending Commit {"height": 9084, "view": 0} -2023-12-16T14:40:29.929Z INFO approving block {"height": 9084, "hash": "dba6c5e6bec9b1236c5cfb3f195a921b2bbe26b17e7f55676b1cb69f870c85e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ae3f78c992cc94381dc297e75e146a5007043407f3f498c70751081f114acea5"} -2023-12-16T14:40:29.932Z INFO initializing dbft {"height": 9085, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:29.932Z debug frostfs-node/morph.go:229 new block {"index": 9084} -2023-12-16T14:40:30.900Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9084, "blockHeight": 9084, "took": "3.663877ms"} -2023-12-16T14:40:30.930Z INFO sending PrepareRequest {"height": 9085, "view": 0} -2023-12-16T14:40:30.930Z INFO sending Commit {"height": 9085, "view": 0} -2023-12-16T14:40:30.930Z INFO approving block {"height": 9085, "hash": "dd6e998e5fbb1485fbc552bc0b58285c2b0e77126ad67ebcf7c3d0a24177d87a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dba6c5e6bec9b1236c5cfb3f195a921b2bbe26b17e7f55676b1cb69f870c85e1"} -2023-12-16T14:40:30.931Z INFO initializing dbft {"height": 9086, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:30.931Z debug frostfs-node/morph.go:229 new block {"index": 9085} -2023-12-16T14:40:31.900Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9085, "blockHeight": 9085, "took": "3.461891ms"} -2023-12-16T14:40:31.931Z INFO sending PrepareRequest {"height": 9086, "view": 0} -2023-12-16T14:40:31.932Z INFO sending Commit {"height": 9086, "view": 0} -2023-12-16T14:40:31.932Z INFO approving block {"height": 9086, "hash": "a8cff3545466b7c1e6375c6fba8d90bd527332cd26e1a590bd787fd6f837b22c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd6e998e5fbb1485fbc552bc0b58285c2b0e77126ad67ebcf7c3d0a24177d87a"} -2023-12-16T14:40:31.932Z INFO initializing dbft {"height": 9087, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:31.933Z debug frostfs-node/morph.go:229 new block {"index": 9086} -2023-12-16T14:40:32.901Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9086, "blockHeight": 9086, "took": "4.136342ms"} -2023-12-16T14:40:32.934Z INFO sending PrepareRequest {"height": 9087, "view": 0} -2023-12-16T14:40:32.934Z INFO sending Commit {"height": 9087, "view": 0} -2023-12-16T14:40:32.935Z INFO approving block {"height": 9087, "hash": "43663f287c6824c3608cac534bb0757092b74517a9988584ff844c7196549633", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8cff3545466b7c1e6375c6fba8d90bd527332cd26e1a590bd787fd6f837b22c"} -2023-12-16T14:40:32.936Z INFO initializing dbft {"height": 9088, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:32.937Z debug frostfs-node/morph.go:229 new block {"index": 9087} -2023-12-16T14:40:33.905Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9087, "blockHeight": 9087, "took": "6.722408ms"} -2023-12-16T14:40:33.936Z INFO sending PrepareRequest {"height": 9088, "view": 0} -2023-12-16T14:40:33.936Z INFO sending Commit {"height": 9088, "view": 0} -2023-12-16T14:40:33.936Z INFO approving block {"height": 9088, "hash": "6aeb78777f87cf511a6dca0208089dad2e95aab91bfc52467112d9318475c928", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43663f287c6824c3608cac534bb0757092b74517a9988584ff844c7196549633"} -2023-12-16T14:40:33.937Z INFO initializing dbft {"height": 9089, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:33.937Z debug frostfs-node/morph.go:229 new block {"index": 9088} -2023-12-16T14:40:34.905Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9088, "blockHeight": 9088, "took": "5.83933ms"} -2023-12-16T14:40:34.937Z INFO sending PrepareRequest {"height": 9089, "view": 0} -2023-12-16T14:40:34.937Z INFO sending Commit {"height": 9089, "view": 0} -2023-12-16T14:40:34.938Z INFO approving block {"height": 9089, "hash": "c497adfd3831db281a6451452e7dc1ebdb1c901787f83a5a756ea4dce4750971", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6aeb78777f87cf511a6dca0208089dad2e95aab91bfc52467112d9318475c928"} -2023-12-16T14:40:34.938Z INFO initializing dbft {"height": 9090, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:34.939Z debug frostfs-node/morph.go:229 new block {"index": 9089} -2023-12-16T14:40:35.903Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9089, "blockHeight": 9089, "took": "3.583924ms"} -2023-12-16T14:40:35.939Z INFO sending PrepareRequest {"height": 9090, "view": 0} -2023-12-16T14:40:35.939Z INFO sending Commit {"height": 9090, "view": 0} -2023-12-16T14:40:35.939Z INFO approving block {"height": 9090, "hash": "8287797fe49add1c6c0f212f2195de44170a028d6995e650ad1544886b47fa32", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c497adfd3831db281a6451452e7dc1ebdb1c901787f83a5a756ea4dce4750971"} -2023-12-16T14:40:35.940Z INFO initializing dbft {"height": 9091, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:35.940Z debug frostfs-node/morph.go:229 new block {"index": 9090} -2023-12-16T14:40:36.903Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9090, "blockHeight": 9090, "took": "3.73087ms"} -2023-12-16T14:40:36.940Z INFO sending PrepareRequest {"height": 9091, "view": 0} -2023-12-16T14:40:36.941Z INFO sending Commit {"height": 9091, "view": 0} -2023-12-16T14:40:36.941Z INFO approving block {"height": 9091, "hash": "33d6f91ca37266bd262ca61403645a22b7b87b6e315f2df200fbdefb27a2c653", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8287797fe49add1c6c0f212f2195de44170a028d6995e650ad1544886b47fa32"} -2023-12-16T14:40:36.942Z INFO initializing dbft {"height": 9092, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:36.942Z debug frostfs-node/morph.go:229 new block {"index": 9091} -2023-12-16T14:40:37.904Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9091, "blockHeight": 9091, "took": "3.834242ms"} -2023-12-16T14:40:37.942Z INFO sending PrepareRequest {"height": 9092, "view": 0} -2023-12-16T14:40:37.942Z INFO sending Commit {"height": 9092, "view": 0} -2023-12-16T14:40:37.942Z INFO approving block {"height": 9092, "hash": "f87badd64b2502f4cd99f147596a75df854385b2e084dcbe99bc7ba165578c7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33d6f91ca37266bd262ca61403645a22b7b87b6e315f2df200fbdefb27a2c653"} -2023-12-16T14:40:37.943Z INFO initializing dbft {"height": 9093, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:37.943Z debug frostfs-node/morph.go:229 new block {"index": 9092} -2023-12-16T14:40:38.905Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9092, "blockHeight": 9092, "took": "4.172522ms"} -2023-12-16T14:40:38.943Z INFO sending PrepareRequest {"height": 9093, "view": 0} -2023-12-16T14:40:38.943Z INFO sending Commit {"height": 9093, "view": 0} -2023-12-16T14:40:38.943Z INFO approving block {"height": 9093, "hash": "f1a111598084b1b5b1a6928c7eb30a9dec6aefcdb727bcb128af8d0faab86883", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f87badd64b2502f4cd99f147596a75df854385b2e084dcbe99bc7ba165578c7d"} -2023-12-16T14:40:38.944Z INFO initializing dbft {"height": 9094, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:38.945Z debug frostfs-node/morph.go:229 new block {"index": 9093} -2023-12-16T14:40:39.906Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9093, "blockHeight": 9093, "took": "4.591889ms"} -2023-12-16T14:40:39.944Z INFO sending PrepareRequest {"height": 9094, "view": 0} -2023-12-16T14:40:39.945Z INFO sending Commit {"height": 9094, "view": 0} -2023-12-16T14:40:39.945Z INFO approving block {"height": 9094, "hash": "bf28635028047ba072eba7b975e7a9bd2540663fe6db49efe034805227f29b37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1a111598084b1b5b1a6928c7eb30a9dec6aefcdb727bcb128af8d0faab86883"} -2023-12-16T14:40:39.946Z INFO initializing dbft {"height": 9095, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:39.946Z debug frostfs-node/morph.go:229 new block {"index": 9094} -2023-12-16T14:40:40.907Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9094, "blockHeight": 9094, "took": "4.546842ms"} -2023-12-16T14:40:40.946Z INFO sending PrepareRequest {"height": 9095, "view": 0} -2023-12-16T14:40:40.946Z INFO sending Commit {"height": 9095, "view": 0} -2023-12-16T14:40:40.946Z INFO approving block {"height": 9095, "hash": "3f5a8af5c999210d66bd1ac77b768a95e053d59f9fa0946b1be9c24309ed60b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf28635028047ba072eba7b975e7a9bd2540663fe6db49efe034805227f29b37"} -2023-12-16T14:40:40.947Z INFO initializing dbft {"height": 9096, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:40.947Z debug frostfs-node/morph.go:229 new block {"index": 9095} -2023-12-16T14:40:40.950Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 38, "iteration": 2, "error": "no data for 1 iteration in 38 epoch for consumers's trusts"} -2023-12-16T14:40:41.908Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9095, "blockHeight": 9095, "took": "5.267122ms"} -2023-12-16T14:40:41.947Z INFO sending PrepareRequest {"height": 9096, "view": 0} -2023-12-16T14:40:41.947Z INFO sending Commit {"height": 9096, "view": 0} -2023-12-16T14:40:41.947Z INFO approving block {"height": 9096, "hash": "313925c85c32077781bb236297a4e58dc2262598693a9021b1bc888f9b74f1b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f5a8af5c999210d66bd1ac77b768a95e053d59f9fa0946b1be9c24309ed60b7"} -2023-12-16T14:40:41.948Z INFO initializing dbft {"height": 9097, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:41.949Z debug frostfs-node/morph.go:229 new block {"index": 9096} -2023-12-16T14:40:41.952Z info settlement/calls.go:106 start basic income distribution {"epoch": 38} -2023-12-16T14:40:42.911Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9096, "blockHeight": 9096, "took": "6.84826ms"} -2023-12-16T14:40:42.948Z INFO sending PrepareRequest {"height": 9097, "view": 0} -2023-12-16T14:40:42.948Z INFO sending Commit {"height": 9097, "view": 0} -2023-12-16T14:40:42.948Z INFO approving block {"height": 9097, "hash": "902822aff4085dcf95e61a12428a73d96d062ca82ff9c929d9e2107f91b04556", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "313925c85c32077781bb236297a4e58dc2262598693a9021b1bc888f9b74f1b8"} -2023-12-16T14:40:42.949Z INFO initializing dbft {"height": 9098, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:42.950Z debug frostfs-node/morph.go:229 new block {"index": 9097} -2023-12-16T14:40:43.908Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9097, "blockHeight": 9097, "took": "3.388249ms"} -2023-12-16T14:40:43.949Z INFO sending PrepareRequest {"height": 9098, "view": 0} -2023-12-16T14:40:43.949Z INFO sending Commit {"height": 9098, "view": 0} -2023-12-16T14:40:43.949Z INFO approving block {"height": 9098, "hash": "3d7a23e468c55a4f02428ef650fd0bd68ac93a3f0b0aba8fa57da29f221ddad6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "902822aff4085dcf95e61a12428a73d96d062ca82ff9c929d9e2107f91b04556"} -2023-12-16T14:40:43.950Z INFO initializing dbft {"height": 9099, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:43.951Z debug frostfs-node/morph.go:229 new block {"index": 9098} -2023-12-16T14:40:44.909Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9098, "blockHeight": 9098, "took": "4.482791ms"} -2023-12-16T14:40:44.951Z INFO sending PrepareRequest {"height": 9099, "view": 0} -2023-12-16T14:40:44.951Z INFO sending Commit {"height": 9099, "view": 0} -2023-12-16T14:40:44.951Z INFO approving block {"height": 9099, "hash": "4bdac8afc2c8f16903298720de9e8bfac10c827f9a35daacac70c4cadf336a9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d7a23e468c55a4f02428ef650fd0bd68ac93a3f0b0aba8fa57da29f221ddad6"} -2023-12-16T14:40:44.952Z INFO initializing dbft {"height": 9100, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:44.952Z debug frostfs-node/morph.go:229 new block {"index": 9099} -2023-12-16T14:40:45.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9099, "blockHeight": 9099, "took": "4.043698ms"} -2023-12-16T14:40:45.952Z INFO sending PrepareRequest {"height": 9100, "view": 0} -2023-12-16T14:40:45.953Z INFO sending Commit {"height": 9100, "view": 0} -2023-12-16T14:40:45.953Z INFO approving block {"height": 9100, "hash": "bd5185ee69f17aaff8cb6c09022356f04368924bbd188124fe6a0191bd4b8671", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bdac8afc2c8f16903298720de9e8bfac10c827f9a35daacac70c4cadf336a9e"} -2023-12-16T14:40:45.954Z INFO initializing dbft {"height": 9101, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:45.955Z debug frostfs-node/morph.go:229 new block {"index": 9100} -2023-12-16T14:40:45.957Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:40:45.958Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:40:45.958Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:40:46.910Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9100, "blockHeight": 9100, "took": "3.299316ms"} -2023-12-16T14:40:46.954Z INFO sending PrepareRequest {"height": 9101, "view": 0} -2023-12-16T14:40:46.954Z INFO sending Commit {"height": 9101, "view": 0} -2023-12-16T14:40:46.954Z INFO approving block {"height": 9101, "hash": "1ee2505b0e82a057364c7765c641e7141f4208c59db4bd5c5291609d40802067", "tx_count": 2, "merkle": "ba7d54ad43405954d0c60bde482560eb9adfed94da3308eb8e5c711ac0f24235", "prev": "bd5185ee69f17aaff8cb6c09022356f04368924bbd188124fe6a0191bd4b8671"} -2023-12-16T14:40:46.955Z INFO runtime log {"tx": "ddb35048af002f3a3d05e3c54190d2e0f6582dc70748e20dc6a5a3657740bca0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:40:46.955Z INFO runtime log {"tx": "ddb35048af002f3a3d05e3c54190d2e0f6582dc70748e20dc6a5a3657740bca0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:40:46.956Z INFO initializing dbft {"height": 9102, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:46.956Z debug frostfs-node/morph.go:229 new block {"index": 9101} -2023-12-16T14:40:47.914Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9101, "blockHeight": 9101, "took": "7.056405ms"} -2023-12-16T14:40:47.956Z INFO sending PrepareRequest {"height": 9102, "view": 0} -2023-12-16T14:40:47.956Z INFO sending Commit {"height": 9102, "view": 0} -2023-12-16T14:40:47.956Z INFO approving block {"height": 9102, "hash": "b95a7f9bc5d6899fe76eae97906cc3231ad4c36b43e5028603090cc57a88d483", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1ee2505b0e82a057364c7765c641e7141f4208c59db4bd5c5291609d40802067"} -2023-12-16T14:40:47.957Z INFO initializing dbft {"height": 9103, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:47.957Z debug frostfs-node/morph.go:229 new block {"index": 9102} -2023-12-16T14:40:48.914Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9102, "blockHeight": 9102, "took": "6.401316ms"} -2023-12-16T14:40:48.957Z INFO sending PrepareRequest {"height": 9103, "view": 0} -2023-12-16T14:40:48.957Z INFO sending Commit {"height": 9103, "view": 0} -2023-12-16T14:40:48.957Z INFO approving block {"height": 9103, "hash": "487e229be6fcf2a5b474db6c1d1da10eec9a84cc2a95b48213333d2127ea31f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b95a7f9bc5d6899fe76eae97906cc3231ad4c36b43e5028603090cc57a88d483"} -2023-12-16T14:40:48.958Z INFO initializing dbft {"height": 9104, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:48.959Z debug frostfs-node/morph.go:229 new block {"index": 9103} -2023-12-16T14:40:49.913Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9103, "blockHeight": 9103, "took": "4.381217ms"} -2023-12-16T14:40:49.959Z INFO sending PrepareRequest {"height": 9104, "view": 0} -2023-12-16T14:40:49.959Z INFO sending Commit {"height": 9104, "view": 0} -2023-12-16T14:40:49.959Z INFO approving block {"height": 9104, "hash": "0cfc24b404d57364b7f9095604d79cc4a018b8a636c7ed1b1f85fc6abc019ade", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "487e229be6fcf2a5b474db6c1d1da10eec9a84cc2a95b48213333d2127ea31f9"} -2023-12-16T14:40:49.960Z INFO initializing dbft {"height": 9105, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:49.960Z debug frostfs-node/morph.go:229 new block {"index": 9104} -2023-12-16T14:40:50.915Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9104, "blockHeight": 9104, "took": "5.595073ms"} -2023-12-16T14:40:50.960Z INFO sending PrepareRequest {"height": 9105, "view": 0} -2023-12-16T14:40:50.960Z INFO sending Commit {"height": 9105, "view": 0} -2023-12-16T14:40:50.960Z INFO approving block {"height": 9105, "hash": "d13f9a8d269807985a8dfb5196dd8ec3257507ab649abe94caccfa2dcd860a1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cfc24b404d57364b7f9095604d79cc4a018b8a636c7ed1b1f85fc6abc019ade"} -2023-12-16T14:40:50.961Z INFO initializing dbft {"height": 9106, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:50.961Z debug frostfs-node/morph.go:229 new block {"index": 9105} -2023-12-16T14:40:51.916Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9105, "blockHeight": 9105, "took": "5.397267ms"} -2023-12-16T14:40:51.961Z INFO sending PrepareRequest {"height": 9106, "view": 0} -2023-12-16T14:40:51.962Z INFO sending Commit {"height": 9106, "view": 0} -2023-12-16T14:40:51.962Z INFO approving block {"height": 9106, "hash": "d073798e05a0bd90b83aad924cbd549b9d7759b13e6091c34379c76d89ebe70e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d13f9a8d269807985a8dfb5196dd8ec3257507ab649abe94caccfa2dcd860a1c"} -2023-12-16T14:40:51.962Z INFO initializing dbft {"height": 9107, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:51.963Z debug frostfs-node/morph.go:229 new block {"index": 9106} -2023-12-16T14:40:52.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9106, "blockHeight": 9106, "took": "6.898335ms"} -2023-12-16T14:40:52.963Z INFO sending PrepareRequest {"height": 9107, "view": 0} -2023-12-16T14:40:52.963Z INFO sending Commit {"height": 9107, "view": 0} -2023-12-16T14:40:52.964Z INFO approving block {"height": 9107, "hash": "d6006e320dfc4c3c74ec1870e403a18b47f164ccfd9fd90c8a1cb71b930d631b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d073798e05a0bd90b83aad924cbd549b9d7759b13e6091c34379c76d89ebe70e"} -2023-12-16T14:40:52.966Z INFO initializing dbft {"height": 9108, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:52.967Z debug frostfs-node/morph.go:229 new block {"index": 9107} -2023-12-16T14:40:53.915Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9107, "blockHeight": 9107, "took": "3.181533ms"} -2023-12-16T14:40:53.965Z INFO sending PrepareRequest {"height": 9108, "view": 0} -2023-12-16T14:40:53.965Z INFO sending Commit {"height": 9108, "view": 0} -2023-12-16T14:40:53.965Z INFO approving block {"height": 9108, "hash": "02444064871588809b6ae5eec89f08f7a3e68b84706e01352e3e89f941145d3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6006e320dfc4c3c74ec1870e403a18b47f164ccfd9fd90c8a1cb71b930d631b"} -2023-12-16T14:40:53.966Z INFO initializing dbft {"height": 9109, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:53.966Z debug frostfs-node/morph.go:229 new block {"index": 9108} -2023-12-16T14:40:54.917Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9108, "blockHeight": 9108, "took": "4.10524ms"} -2023-12-16T14:40:54.967Z INFO sending PrepareRequest {"height": 9109, "view": 0} -2023-12-16T14:40:54.967Z INFO sending Commit {"height": 9109, "view": 0} -2023-12-16T14:40:54.967Z INFO approving block {"height": 9109, "hash": "616141b59f32447c0d9d9e3daa5753c416e1694788168897f4a2a673ad8cb0e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02444064871588809b6ae5eec89f08f7a3e68b84706e01352e3e89f941145d3a"} -2023-12-16T14:40:54.968Z INFO initializing dbft {"height": 9110, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:54.969Z debug frostfs-node/morph.go:229 new block {"index": 9109} -2023-12-16T14:40:55.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9109, "blockHeight": 9109, "took": "4.412199ms"} -2023-12-16T14:40:55.969Z INFO sending PrepareRequest {"height": 9110, "view": 0} -2023-12-16T14:40:55.969Z INFO sending Commit {"height": 9110, "view": 0} -2023-12-16T14:40:55.969Z INFO approving block {"height": 9110, "hash": "9d4ea310be074c39f632700e3d592fe2c05bc05c04eaa2203265700f568c5a6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "616141b59f32447c0d9d9e3daa5753c416e1694788168897f4a2a673ad8cb0e8"} -2023-12-16T14:40:55.969Z INFO initializing dbft {"height": 9111, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:55.970Z debug frostfs-node/morph.go:229 new block {"index": 9110} -2023-12-16T14:40:56.919Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9110, "blockHeight": 9110, "took": "4.612735ms"} -2023-12-16T14:40:56.970Z INFO sending PrepareRequest {"height": 9111, "view": 0} -2023-12-16T14:40:56.970Z INFO sending Commit {"height": 9111, "view": 0} -2023-12-16T14:40:56.971Z INFO approving block {"height": 9111, "hash": "edd915133499bc0b01af4caa7adf74840b46ec3d186f391c191e1cbda3788eee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d4ea310be074c39f632700e3d592fe2c05bc05c04eaa2203265700f568c5a6e"} -2023-12-16T14:40:56.972Z INFO initializing dbft {"height": 9112, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:56.972Z debug frostfs-node/morph.go:229 new block {"index": 9111} -2023-12-16T14:40:57.918Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9111, "blockHeight": 9111, "took": "3.037049ms"} -2023-12-16T14:40:57.972Z INFO sending PrepareRequest {"height": 9112, "view": 0} -2023-12-16T14:40:57.972Z INFO sending Commit {"height": 9112, "view": 0} -2023-12-16T14:40:57.972Z INFO approving block {"height": 9112, "hash": "cb50a0cdd95e59518084126bd15b1891a82ce7edc15ea53974157c547a96f240", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edd915133499bc0b01af4caa7adf74840b46ec3d186f391c191e1cbda3788eee"} -2023-12-16T14:40:57.973Z INFO initializing dbft {"height": 9113, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:57.974Z debug frostfs-node/morph.go:229 new block {"index": 9112} -2023-12-16T14:40:58.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9112, "blockHeight": 9112, "took": "4.994028ms"} -2023-12-16T14:40:58.974Z INFO sending PrepareRequest {"height": 9113, "view": 0} -2023-12-16T14:40:58.974Z INFO sending Commit {"height": 9113, "view": 0} -2023-12-16T14:40:58.974Z INFO approving block {"height": 9113, "hash": "aeddf935c83d419099b7362ebc1af13c4ba1e5acab64a1dc7b44de2a7706a815", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb50a0cdd95e59518084126bd15b1891a82ce7edc15ea53974157c547a96f240"} -2023-12-16T14:40:58.975Z INFO initializing dbft {"height": 9114, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:58.976Z debug frostfs-node/morph.go:229 new block {"index": 9113} -2023-12-16T14:40:59.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9113, "blockHeight": 9113, "took": "7.52477ms"} -2023-12-16T14:40:59.975Z INFO sending PrepareRequest {"height": 9114, "view": 0} -2023-12-16T14:40:59.976Z INFO sending Commit {"height": 9114, "view": 0} -2023-12-16T14:40:59.976Z INFO approving block {"height": 9114, "hash": "836facad68061a55960dbe830420d73c30419da56006446ee6e8d5053feb9510", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aeddf935c83d419099b7362ebc1af13c4ba1e5acab64a1dc7b44de2a7706a815"} -2023-12-16T14:40:59.977Z INFO initializing dbft {"height": 9115, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:40:59.978Z debug frostfs-node/morph.go:229 new block {"index": 9114} -2023-12-16T14:41:00.921Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9114, "blockHeight": 9114, "took": "3.913284ms"} -2023-12-16T14:41:00.978Z INFO sending PrepareRequest {"height": 9115, "view": 0} -2023-12-16T14:41:00.978Z INFO sending Commit {"height": 9115, "view": 0} -2023-12-16T14:41:00.978Z INFO approving block {"height": 9115, "hash": "9e2f5221dd7bfa08753a7d7441996a2abe6ae9d7bbf72390bd6d767285d50909", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "836facad68061a55960dbe830420d73c30419da56006446ee6e8d5053feb9510"} -2023-12-16T14:41:00.979Z INFO initializing dbft {"height": 9116, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:00.980Z debug frostfs-node/morph.go:229 new block {"index": 9115} -2023-12-16T14:41:01.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9115, "blockHeight": 9115, "took": "5.792949ms"} -2023-12-16T14:41:01.980Z INFO sending PrepareRequest {"height": 9116, "view": 0} -2023-12-16T14:41:01.980Z INFO sending Commit {"height": 9116, "view": 0} -2023-12-16T14:41:01.980Z INFO approving block {"height": 9116, "hash": "c177443adea362ebbfeea451abc5256aa1979bd8041c37da7edd56c912d3a10f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9e2f5221dd7bfa08753a7d7441996a2abe6ae9d7bbf72390bd6d767285d50909"} -2023-12-16T14:41:01.982Z INFO initializing dbft {"height": 9117, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:01.982Z debug frostfs-node/morph.go:229 new block {"index": 9116} -2023-12-16T14:41:02.922Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9116, "blockHeight": 9116, "took": "3.416283ms"} -2023-12-16T14:41:02.981Z INFO sending PrepareRequest {"height": 9117, "view": 0} -2023-12-16T14:41:02.982Z INFO sending Commit {"height": 9117, "view": 0} -2023-12-16T14:41:02.982Z INFO approving block {"height": 9117, "hash": "c51c9a4db20b0ad965daf7a06291b4c7fe29bf224499b0e80c86e80ac3298250", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c177443adea362ebbfeea451abc5256aa1979bd8041c37da7edd56c912d3a10f"} -2023-12-16T14:41:02.983Z INFO initializing dbft {"height": 9118, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:02.984Z debug frostfs-node/morph.go:229 new block {"index": 9117} -2023-12-16T14:41:03.924Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9117, "blockHeight": 9117, "took": "4.351716ms"} -2023-12-16T14:41:03.983Z INFO sending PrepareRequest {"height": 9118, "view": 0} -2023-12-16T14:41:03.983Z INFO sending Commit {"height": 9118, "view": 0} -2023-12-16T14:41:03.983Z INFO approving block {"height": 9118, "hash": "78bdfcf4e8cacce566fb41655c11eb6c6946e5d5483c846ab9f32f0d0ae6fa4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c51c9a4db20b0ad965daf7a06291b4c7fe29bf224499b0e80c86e80ac3298250"} -2023-12-16T14:41:03.984Z INFO initializing dbft {"height": 9119, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:03.985Z debug frostfs-node/morph.go:229 new block {"index": 9118} -2023-12-16T14:41:04.925Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9118, "blockHeight": 9118, "took": "4.733527ms"} -2023-12-16T14:41:04.985Z INFO sending PrepareRequest {"height": 9119, "view": 0} -2023-12-16T14:41:04.985Z INFO sending Commit {"height": 9119, "view": 0} -2023-12-16T14:41:04.985Z INFO approving block {"height": 9119, "hash": "5da71228b64d8f0d564f80bfbe1eecc64577b6fa72e4a0e236d5f77ec22e4c67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78bdfcf4e8cacce566fb41655c11eb6c6946e5d5483c846ab9f32f0d0ae6fa4f"} -2023-12-16T14:41:04.987Z INFO initializing dbft {"height": 9120, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:04.987Z debug frostfs-node/morph.go:229 new block {"index": 9119} -2023-12-16T14:41:05.925Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9119, "blockHeight": 9119, "took": "4.756029ms"} -2023-12-16T14:41:05.987Z INFO sending PrepareRequest {"height": 9120, "view": 0} -2023-12-16T14:41:05.987Z INFO sending Commit {"height": 9120, "view": 0} -2023-12-16T14:41:05.987Z INFO approving block {"height": 9120, "hash": "7f2a6f977714deedbf2bab4a119bc3624c0760d065e2e699c77e99c02cc432e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5da71228b64d8f0d564f80bfbe1eecc64577b6fa72e4a0e236d5f77ec22e4c67"} -2023-12-16T14:41:05.989Z INFO initializing dbft {"height": 9121, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:05.989Z debug frostfs-node/morph.go:229 new block {"index": 9120} -2023-12-16T14:41:06.925Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9120, "blockHeight": 9120, "took": "3.504153ms"} -2023-12-16T14:41:06.989Z INFO sending PrepareRequest {"height": 9121, "view": 0} -2023-12-16T14:41:06.989Z INFO sending Commit {"height": 9121, "view": 0} -2023-12-16T14:41:06.989Z INFO approving block {"height": 9121, "hash": "9b34e55da99e2437a7330104781debf2045a80cd61e5de8eca30701428fd3c8c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f2a6f977714deedbf2bab4a119bc3624c0760d065e2e699c77e99c02cc432e6"} -2023-12-16T14:41:06.990Z INFO initializing dbft {"height": 9122, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:06.991Z debug frostfs-node/morph.go:229 new block {"index": 9121} -2023-12-16T14:41:07.928Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9121, "blockHeight": 9121, "took": "5.859621ms"} -2023-12-16T14:41:07.991Z INFO sending PrepareRequest {"height": 9122, "view": 0} -2023-12-16T14:41:07.991Z INFO sending Commit {"height": 9122, "view": 0} -2023-12-16T14:41:07.991Z INFO approving block {"height": 9122, "hash": "4be0dcd904ed75f9bc69683c969f8d4823f5d64422341ad75c0cfd312f68835c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b34e55da99e2437a7330104781debf2045a80cd61e5de8eca30701428fd3c8c"} -2023-12-16T14:41:07.992Z INFO initializing dbft {"height": 9123, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:07.992Z debug frostfs-node/morph.go:229 new block {"index": 9122} -2023-12-16T14:41:08.930Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9122, "blockHeight": 9122, "took": "6.942312ms"} -2023-12-16T14:41:08.992Z INFO sending PrepareRequest {"height": 9123, "view": 0} -2023-12-16T14:41:08.992Z INFO sending Commit {"height": 9123, "view": 0} -2023-12-16T14:41:08.992Z INFO approving block {"height": 9123, "hash": "d52d045bdda4c3322c5c87f1627202fbcc2f9ce2c0aa6333b55cbb79689ae3ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4be0dcd904ed75f9bc69683c969f8d4823f5d64422341ad75c0cfd312f68835c"} -2023-12-16T14:41:08.994Z INFO initializing dbft {"height": 9124, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:08.995Z debug frostfs-node/morph.go:229 new block {"index": 9123} -2023-12-16T14:41:09.932Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9123, "blockHeight": 9123, "took": "8.121396ms"} -2023-12-16T14:41:09.993Z INFO sending PrepareRequest {"height": 9124, "view": 0} -2023-12-16T14:41:09.994Z INFO sending Commit {"height": 9124, "view": 0} -2023-12-16T14:41:09.994Z INFO approving block {"height": 9124, "hash": "397e272f72f43b1df12892e744d44de68fd8824357d12794c0635aa299a67fb0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d52d045bdda4c3322c5c87f1627202fbcc2f9ce2c0aa6333b55cbb79689ae3ef"} -2023-12-16T14:41:09.995Z INFO initializing dbft {"height": 9125, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:09.996Z debug frostfs-node/morph.go:229 new block {"index": 9124} -2023-12-16T14:41:10.930Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9124, "blockHeight": 9124, "took": "5.487314ms"} -2023-12-16T14:41:10.996Z INFO sending PrepareRequest {"height": 9125, "view": 0} -2023-12-16T14:41:10.996Z INFO sending Commit {"height": 9125, "view": 0} -2023-12-16T14:41:10.996Z INFO approving block {"height": 9125, "hash": "80f9ee8638949b687e71e92616cf01fccd964cdd8bc8db7ef579c40347cf5b47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "397e272f72f43b1df12892e744d44de68fd8824357d12794c0635aa299a67fb0"} -2023-12-16T14:41:10.997Z INFO initializing dbft {"height": 9126, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:10.998Z debug frostfs-node/morph.go:229 new block {"index": 9125} -2023-12-16T14:41:11.931Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9125, "blockHeight": 9125, "took": "4.639995ms"} -2023-12-16T14:41:11.997Z INFO sending PrepareRequest {"height": 9126, "view": 0} -2023-12-16T14:41:11.997Z INFO sending Commit {"height": 9126, "view": 0} -2023-12-16T14:41:11.998Z INFO approving block {"height": 9126, "hash": "fd66faef0efe3b9ea8413e11abd4c3dee6d74e6c08318e0cd319b9065214a51f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80f9ee8638949b687e71e92616cf01fccd964cdd8bc8db7ef579c40347cf5b47"} -2023-12-16T14:41:11.999Z INFO initializing dbft {"height": 9127, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:11.999Z debug frostfs-node/morph.go:229 new block {"index": 9126} -2023-12-16T14:41:12.932Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9126, "blockHeight": 9126, "took": "4.540072ms"} -2023-12-16T14:41:12.999Z INFO sending PrepareRequest {"height": 9127, "view": 0} -2023-12-16T14:41:12.999Z INFO sending Commit {"height": 9127, "view": 0} -2023-12-16T14:41:13.000Z INFO approving block {"height": 9127, "hash": "c93f50ac3e1f9b8f7c28cd80b46d32bb490ba69528360ec6914013355b8363bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd66faef0efe3b9ea8413e11abd4c3dee6d74e6c08318e0cd319b9065214a51f"} -2023-12-16T14:41:13.001Z INFO initializing dbft {"height": 9128, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:13.002Z debug frostfs-node/morph.go:229 new block {"index": 9127} -2023-12-16T14:41:13.931Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9127, "blockHeight": 9127, "took": "3.678686ms"} -2023-12-16T14:41:14.001Z INFO sending PrepareRequest {"height": 9128, "view": 0} -2023-12-16T14:41:14.001Z INFO sending Commit {"height": 9128, "view": 0} -2023-12-16T14:41:14.001Z INFO approving block {"height": 9128, "hash": "9fa8e2a0e571d41f9a8170e81022fbfc251ed4e5f0547ece01e0eef0614f0c13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c93f50ac3e1f9b8f7c28cd80b46d32bb490ba69528360ec6914013355b8363bf"} -2023-12-16T14:41:14.002Z INFO initializing dbft {"height": 9129, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:14.003Z debug frostfs-node/morph.go:229 new block {"index": 9128} -2023-12-16T14:41:14.932Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9128, "blockHeight": 9128, "took": "3.244215ms"} -2023-12-16T14:41:15.002Z INFO sending PrepareRequest {"height": 9129, "view": 0} -2023-12-16T14:41:15.002Z INFO sending Commit {"height": 9129, "view": 0} -2023-12-16T14:41:15.002Z INFO approving block {"height": 9129, "hash": "3e5dc137401f4b874a98c7563cc7df98c9647b276275ded224972d2df7b40628", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fa8e2a0e571d41f9a8170e81022fbfc251ed4e5f0547ece01e0eef0614f0c13"} -2023-12-16T14:41:15.003Z INFO initializing dbft {"height": 9130, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:15.004Z debug frostfs-node/morph.go:229 new block {"index": 9129} -2023-12-16T14:41:15.935Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9129, "blockHeight": 9129, "took": "5.679276ms"} -2023-12-16T14:41:16.004Z INFO sending PrepareRequest {"height": 9130, "view": 0} -2023-12-16T14:41:16.004Z INFO sending Commit {"height": 9130, "view": 0} -2023-12-16T14:41:16.005Z INFO approving block {"height": 9130, "hash": "d79eca5fcf1563982dae17aedcbd5ed2f185c3782799f2233d11456d0ed4382a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3e5dc137401f4b874a98c7563cc7df98c9647b276275ded224972d2df7b40628"} -2023-12-16T14:41:16.006Z INFO initializing dbft {"height": 9131, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:16.006Z debug frostfs-node/morph.go:229 new block {"index": 9130} -2023-12-16T14:41:16.934Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9130, "blockHeight": 9130, "took": "3.936425ms"} -2023-12-16T14:41:17.006Z INFO sending PrepareRequest {"height": 9131, "view": 0} -2023-12-16T14:41:17.006Z INFO sending Commit {"height": 9131, "view": 0} -2023-12-16T14:41:17.006Z INFO approving block {"height": 9131, "hash": "4d51732b0dc656111aa33b2eb8579642e0c2d50972db357f0b0f2c17e5ad943a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d79eca5fcf1563982dae17aedcbd5ed2f185c3782799f2233d11456d0ed4382a"} -2023-12-16T14:41:17.007Z INFO initializing dbft {"height": 9132, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:17.008Z debug frostfs-node/morph.go:229 new block {"index": 9131} -2023-12-16T14:41:17.935Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9131, "blockHeight": 9131, "took": "5.128299ms"} -2023-12-16T14:41:18.007Z INFO sending PrepareRequest {"height": 9132, "view": 0} -2023-12-16T14:41:18.008Z INFO sending Commit {"height": 9132, "view": 0} -2023-12-16T14:41:18.008Z INFO approving block {"height": 9132, "hash": "b6c152f2eff1aad9da2a6ea5f66d7891999b73878432f734b2e2450bf72f2b14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d51732b0dc656111aa33b2eb8579642e0c2d50972db357f0b0f2c17e5ad943a"} -2023-12-16T14:41:18.010Z INFO initializing dbft {"height": 9133, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:18.010Z debug frostfs-node/morph.go:229 new block {"index": 9132} -2023-12-16T14:41:18.935Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9132, "blockHeight": 9132, "took": "4.278799ms"} -2023-12-16T14:41:19.009Z INFO sending PrepareRequest {"height": 9133, "view": 0} -2023-12-16T14:41:19.009Z INFO sending Commit {"height": 9133, "view": 0} -2023-12-16T14:41:19.009Z INFO approving block {"height": 9133, "hash": "3b9aa33ad887b1b4dd2797f831832adc91f8966ac19cbc2368b775928f6dfcc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6c152f2eff1aad9da2a6ea5f66d7891999b73878432f734b2e2450bf72f2b14"} -2023-12-16T14:41:19.010Z INFO initializing dbft {"height": 9134, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:19.010Z debug frostfs-node/morph.go:229 new block {"index": 9133} -2023-12-16T14:41:19.942Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9133, "blockHeight": 9133, "took": "9.600698ms"} -2023-12-16T14:41:20.010Z INFO sending PrepareRequest {"height": 9134, "view": 0} -2023-12-16T14:41:20.010Z INFO sending Commit {"height": 9134, "view": 0} -2023-12-16T14:41:20.010Z INFO approving block {"height": 9134, "hash": "7cd5d0acdf428f0c117e872dc0b6a58b11a08994f377b983049593d538d9267c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b9aa33ad887b1b4dd2797f831832adc91f8966ac19cbc2368b775928f6dfcc1"} -2023-12-16T14:41:20.011Z INFO initializing dbft {"height": 9135, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:20.011Z debug frostfs-node/morph.go:229 new block {"index": 9134} -2023-12-16T14:41:20.938Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9134, "blockHeight": 9134, "took": "5.865635ms"} -2023-12-16T14:41:21.012Z INFO sending PrepareRequest {"height": 9135, "view": 0} -2023-12-16T14:41:21.012Z INFO sending Commit {"height": 9135, "view": 0} -2023-12-16T14:41:21.012Z INFO approving block {"height": 9135, "hash": "794f99680a734dd086c99ca78bbb408bc9faeac3f3dad62315bc28aa1ac83612", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cd5d0acdf428f0c117e872dc0b6a58b11a08994f377b983049593d538d9267c"} -2023-12-16T14:41:21.013Z INFO initializing dbft {"height": 9136, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:21.014Z debug frostfs-node/morph.go:229 new block {"index": 9135} -2023-12-16T14:41:21.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9135, "blockHeight": 9135, "took": "5.975636ms"} -2023-12-16T14:41:22.014Z INFO sending PrepareRequest {"height": 9136, "view": 0} -2023-12-16T14:41:22.014Z INFO sending Commit {"height": 9136, "view": 0} -2023-12-16T14:41:22.014Z INFO approving block {"height": 9136, "hash": "0c8093bd854558d5181d81db4e3402f490f8b49f828eebd4850999bcbba9ac39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "794f99680a734dd086c99ca78bbb408bc9faeac3f3dad62315bc28aa1ac83612"} -2023-12-16T14:41:22.015Z INFO initializing dbft {"height": 9137, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:22.016Z debug frostfs-node/morph.go:229 new block {"index": 9136} -2023-12-16T14:41:22.940Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9136, "blockHeight": 9136, "took": "5.801728ms"} -2023-12-16T14:41:23.015Z INFO sending PrepareRequest {"height": 9137, "view": 0} -2023-12-16T14:41:23.015Z INFO sending Commit {"height": 9137, "view": 0} -2023-12-16T14:41:23.015Z INFO approving block {"height": 9137, "hash": "734962f3487c679cbb5e59da15f880247b2dd63d61a237871f40106ca74e0526", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0c8093bd854558d5181d81db4e3402f490f8b49f828eebd4850999bcbba9ac39"} -2023-12-16T14:41:23.016Z INFO initializing dbft {"height": 9138, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:23.016Z debug frostfs-node/morph.go:229 new block {"index": 9137} -2023-12-16T14:41:23.939Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9137, "blockHeight": 9137, "took": "4.582133ms"} -2023-12-16T14:41:24.016Z INFO sending PrepareRequest {"height": 9138, "view": 0} -2023-12-16T14:41:24.016Z INFO sending Commit {"height": 9138, "view": 0} -2023-12-16T14:41:24.017Z INFO approving block {"height": 9138, "hash": "e0829430f4bda90b6cc26a11aedc8c2bd292c6912603c4ad3cf3fb2a2c9906ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "734962f3487c679cbb5e59da15f880247b2dd63d61a237871f40106ca74e0526"} -2023-12-16T14:41:24.018Z INFO initializing dbft {"height": 9139, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:24.018Z debug frostfs-node/morph.go:229 new block {"index": 9138} -2023-12-16T14:41:24.942Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9138, "blockHeight": 9138, "took": "6.303303ms"} -2023-12-16T14:41:25.018Z INFO sending PrepareRequest {"height": 9139, "view": 0} -2023-12-16T14:41:25.018Z INFO sending Commit {"height": 9139, "view": 0} -2023-12-16T14:41:25.019Z INFO approving block {"height": 9139, "hash": "8970c89b79d1e3e5ea6d3744e9fcc1c11ddaea27d753f25e37ccebe9cc053f91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0829430f4bda90b6cc26a11aedc8c2bd292c6912603c4ad3cf3fb2a2c9906ec"} -2023-12-16T14:41:25.020Z INFO initializing dbft {"height": 9140, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:25.020Z debug frostfs-node/morph.go:229 new block {"index": 9139} -2023-12-16T14:41:25.940Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9139, "blockHeight": 9139, "took": "3.76931ms"} -2023-12-16T14:41:26.020Z INFO sending PrepareRequest {"height": 9140, "view": 0} -2023-12-16T14:41:26.020Z INFO sending Commit {"height": 9140, "view": 0} -2023-12-16T14:41:26.020Z INFO approving block {"height": 9140, "hash": "bc726f4e83b023a834634d1315b4d8c2983bf1170c4017d28bd882103d5f4285", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8970c89b79d1e3e5ea6d3744e9fcc1c11ddaea27d753f25e37ccebe9cc053f91"} -2023-12-16T14:41:26.022Z INFO initializing dbft {"height": 9141, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:26.022Z debug frostfs-node/morph.go:229 new block {"index": 9140} -2023-12-16T14:41:26.943Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9140, "blockHeight": 9140, "took": "5.412765ms"} -2023-12-16T14:41:27.022Z INFO sending PrepareRequest {"height": 9141, "view": 0} -2023-12-16T14:41:27.022Z INFO sending Commit {"height": 9141, "view": 0} -2023-12-16T14:41:27.022Z INFO approving block {"height": 9141, "hash": "f68c5a556a7b582bb74f747e2bc6a1167aa5fda3ae7bf2f0df132c4c9f6451cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc726f4e83b023a834634d1315b4d8c2983bf1170c4017d28bd882103d5f4285"} -2023-12-16T14:41:27.023Z INFO initializing dbft {"height": 9142, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:27.024Z debug frostfs-node/morph.go:229 new block {"index": 9141} -2023-12-16T14:41:27.942Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9141, "blockHeight": 9141, "took": "4.341426ms"} -2023-12-16T14:41:28.024Z INFO sending PrepareRequest {"height": 9142, "view": 0} -2023-12-16T14:41:28.024Z INFO sending Commit {"height": 9142, "view": 0} -2023-12-16T14:41:28.024Z INFO approving block {"height": 9142, "hash": "6160cac4e13a4c60d0ada0eb6fc9aef5c56db825795d3b86b47b3c91971a89ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f68c5a556a7b582bb74f747e2bc6a1167aa5fda3ae7bf2f0df132c4c9f6451cf"} -2023-12-16T14:41:28.025Z INFO initializing dbft {"height": 9143, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:28.026Z debug frostfs-node/morph.go:229 new block {"index": 9142} -2023-12-16T14:41:28.943Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9142, "blockHeight": 9142, "took": "4.884743ms"} -2023-12-16T14:41:29.025Z INFO sending PrepareRequest {"height": 9143, "view": 0} -2023-12-16T14:41:29.025Z INFO sending Commit {"height": 9143, "view": 0} -2023-12-16T14:41:29.025Z INFO approving block {"height": 9143, "hash": "3b8ead20215712bc034e2ebfbd03e141e939824f358bcc4868cb9c655a140cc2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6160cac4e13a4c60d0ada0eb6fc9aef5c56db825795d3b86b47b3c91971a89ee"} -2023-12-16T14:41:29.026Z INFO initializing dbft {"height": 9144, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:29.027Z debug frostfs-node/morph.go:229 new block {"index": 9143} -2023-12-16T14:41:29.943Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9143, "blockHeight": 9143, "took": "4.520521ms"} -2023-12-16T14:41:30.027Z INFO sending PrepareRequest {"height": 9144, "view": 0} -2023-12-16T14:41:30.027Z INFO sending Commit {"height": 9144, "view": 0} -2023-12-16T14:41:30.027Z INFO approving block {"height": 9144, "hash": "212ca88a7d173bfe05d879349c784d9bedc2ac81d488e6cc7dbbfe4f63431ee5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b8ead20215712bc034e2ebfbd03e141e939824f358bcc4868cb9c655a140cc2"} -2023-12-16T14:41:30.028Z INFO initializing dbft {"height": 9145, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:30.029Z debug frostfs-node/morph.go:229 new block {"index": 9144} -2023-12-16T14:41:30.945Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9144, "blockHeight": 9144, "took": "5.094278ms"} -2023-12-16T14:41:31.029Z INFO sending PrepareRequest {"height": 9145, "view": 0} -2023-12-16T14:41:31.029Z INFO sending Commit {"height": 9145, "view": 0} -2023-12-16T14:41:31.029Z INFO approving block {"height": 9145, "hash": "7f67758270041a592b656ea4623fb6b1183ab2d9e01858986c0697a8ac19f0da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "212ca88a7d173bfe05d879349c784d9bedc2ac81d488e6cc7dbbfe4f63431ee5"} -2023-12-16T14:41:31.031Z INFO initializing dbft {"height": 9146, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:31.032Z debug frostfs-node/morph.go:229 new block {"index": 9145} -2023-12-16T14:41:31.945Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9145, "blockHeight": 9145, "took": "5.292114ms"} -2023-12-16T14:41:32.030Z INFO sending PrepareRequest {"height": 9146, "view": 0} -2023-12-16T14:41:32.030Z INFO sending Commit {"height": 9146, "view": 0} -2023-12-16T14:41:32.031Z INFO approving block {"height": 9146, "hash": "77dea9c5bf052bd82ad2bbe3d2dd187970552912c8cd4044eea470cd5471ab37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f67758270041a592b656ea4623fb6b1183ab2d9e01858986c0697a8ac19f0da"} -2023-12-16T14:41:32.032Z INFO initializing dbft {"height": 9147, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:32.033Z debug frostfs-node/morph.go:229 new block {"index": 9146} -2023-12-16T14:41:32.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9146, "blockHeight": 9146, "took": "7.990953ms"} -2023-12-16T14:41:33.032Z INFO sending PrepareRequest {"height": 9147, "view": 0} -2023-12-16T14:41:33.032Z INFO sending Commit {"height": 9147, "view": 0} -2023-12-16T14:41:33.033Z INFO approving block {"height": 9147, "hash": "ca1d7f107db5283e44179142a9c8917dda1d363dc0732ff7bfc7b746c47441c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "77dea9c5bf052bd82ad2bbe3d2dd187970552912c8cd4044eea470cd5471ab37"} -2023-12-16T14:41:33.034Z INFO initializing dbft {"height": 9148, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:33.035Z debug frostfs-node/morph.go:229 new block {"index": 9147} -2023-12-16T14:41:33.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9147, "blockHeight": 9147, "took": "8.968361ms"} -2023-12-16T14:41:34.034Z INFO sending PrepareRequest {"height": 9148, "view": 0} -2023-12-16T14:41:34.034Z INFO sending Commit {"height": 9148, "view": 0} -2023-12-16T14:41:34.034Z INFO approving block {"height": 9148, "hash": "99832f06aebe558a1369eb695a523502bda711012bb6cb93ac7ac9f930b81286", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca1d7f107db5283e44179142a9c8917dda1d363dc0732ff7bfc7b746c47441c5"} -2023-12-16T14:41:34.036Z INFO initializing dbft {"height": 9149, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:34.037Z debug frostfs-node/morph.go:229 new block {"index": 9148} -2023-12-16T14:41:34.948Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9148, "blockHeight": 9148, "took": "5.82484ms"} -2023-12-16T14:41:35.035Z INFO sending PrepareRequest {"height": 9149, "view": 0} -2023-12-16T14:41:35.035Z INFO sending Commit {"height": 9149, "view": 0} -2023-12-16T14:41:35.036Z INFO approving block {"height": 9149, "hash": "70a9203bb3a91453daa08116a61669a12bbc66547107cd12f9328e404cb17c93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99832f06aebe558a1369eb695a523502bda711012bb6cb93ac7ac9f930b81286"} -2023-12-16T14:41:35.036Z INFO initializing dbft {"height": 9150, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:35.037Z debug frostfs-node/morph.go:229 new block {"index": 9149} -2023-12-16T14:41:35.949Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9149, "blockHeight": 9149, "took": "6.353205ms"} -2023-12-16T14:41:36.037Z INFO sending PrepareRequest {"height": 9150, "view": 0} -2023-12-16T14:41:36.037Z INFO sending Commit {"height": 9150, "view": 0} -2023-12-16T14:41:36.037Z INFO approving block {"height": 9150, "hash": "4bae6befee04a13f63a446e1727772757a809bc0e0992ede5ea8364eb7766ab9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70a9203bb3a91453daa08116a61669a12bbc66547107cd12f9328e404cb17c93"} -2023-12-16T14:41:36.038Z INFO initializing dbft {"height": 9151, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:36.039Z debug frostfs-node/morph.go:229 new block {"index": 9150} -2023-12-16T14:41:36.041Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:41:36.045Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:41:36.045Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:41:36.948Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9150, "blockHeight": 9150, "took": "4.810163ms"} -2023-12-16T14:41:37.038Z INFO sending PrepareRequest {"height": 9151, "view": 0} -2023-12-16T14:41:37.038Z INFO sending Commit {"height": 9151, "view": 0} -2023-12-16T14:41:37.038Z INFO approving block {"height": 9151, "hash": "3410532c7dc4cae4544fa6fa5ec474bfe0fa39c50a3571b276d7edc141b02b31", "tx_count": 2, "merkle": "c88b93725d3f69a58bf7b5a8396f96279bc70f0f3b85a2110f59ed7205fea2d8", "prev": "4bae6befee04a13f63a446e1727772757a809bc0e0992ede5ea8364eb7766ab9"} -2023-12-16T14:41:37.040Z INFO runtime log {"tx": "69542d1355fc29c20c40cdacde165a4700a67c9aa7fb8387fceabff2d5c05de3", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:41:37.040Z INFO runtime log {"tx": "69542d1355fc29c20c40cdacde165a4700a67c9aa7fb8387fceabff2d5c05de3", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:41:37.041Z INFO initializing dbft {"height": 9152, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:37.042Z debug frostfs-node/morph.go:229 new block {"index": 9151} -2023-12-16T14:41:37.956Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9151, "blockHeight": 9151, "took": "12.302279ms"} -2023-12-16T14:41:38.040Z INFO sending PrepareRequest {"height": 9152, "view": 0} -2023-12-16T14:41:38.040Z INFO sending Commit {"height": 9152, "view": 0} -2023-12-16T14:41:38.040Z INFO approving block {"height": 9152, "hash": "6d99b3749677868200292d3af41ed7c8d47c4830b94dc6df6aeb4e5af53c751e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3410532c7dc4cae4544fa6fa5ec474bfe0fa39c50a3571b276d7edc141b02b31"} -2023-12-16T14:41:38.042Z INFO initializing dbft {"height": 9153, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:38.043Z debug frostfs-node/morph.go:229 new block {"index": 9152} -2023-12-16T14:41:38.948Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9152, "blockHeight": 9152, "took": "4.016787ms"} -2023-12-16T14:41:39.041Z INFO sending PrepareRequest {"height": 9153, "view": 0} -2023-12-16T14:41:39.042Z INFO sending Commit {"height": 9153, "view": 0} -2023-12-16T14:41:39.042Z INFO approving block {"height": 9153, "hash": "7cb5e861fd8d9d24b3c35f3f53fc91d7db39582ecf088c99b7d9b1925a3fd83c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d99b3749677868200292d3af41ed7c8d47c4830b94dc6df6aeb4e5af53c751e"} -2023-12-16T14:41:39.043Z INFO initializing dbft {"height": 9154, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:39.043Z debug frostfs-node/morph.go:229 new block {"index": 9153} -2023-12-16T14:41:39.951Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9153, "blockHeight": 9153, "took": "5.556582ms"} -2023-12-16T14:41:40.043Z INFO sending PrepareRequest {"height": 9154, "view": 0} -2023-12-16T14:41:40.044Z INFO sending Commit {"height": 9154, "view": 0} -2023-12-16T14:41:40.044Z INFO approving block {"height": 9154, "hash": "662a2bea8037016f748b35b2834f03b427fa1bad15f0fc6370cce6dab4947798", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cb5e861fd8d9d24b3c35f3f53fc91d7db39582ecf088c99b7d9b1925a3fd83c"} -2023-12-16T14:41:40.045Z INFO initializing dbft {"height": 9155, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:40.045Z debug frostfs-node/morph.go:229 new block {"index": 9154} -2023-12-16T14:41:40.953Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9154, "blockHeight": 9154, "took": "6.360395ms"} -2023-12-16T14:41:41.045Z INFO sending PrepareRequest {"height": 9155, "view": 0} -2023-12-16T14:41:41.046Z INFO sending Commit {"height": 9155, "view": 0} -2023-12-16T14:41:41.046Z INFO approving block {"height": 9155, "hash": "1c073ee26b172e8eabc458d9dbebd42eb0527bd1694cbf20169ed3bffd112cae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "662a2bea8037016f748b35b2834f03b427fa1bad15f0fc6370cce6dab4947798"} -2023-12-16T14:41:41.047Z INFO initializing dbft {"height": 9156, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:41.048Z debug frostfs-node/morph.go:229 new block {"index": 9155} -2023-12-16T14:41:41.051Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 38, "iteration": 3, "error": "no data for 2 iteration in 38 epoch for consumers's trusts"} -2023-12-16T14:41:41.950Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9155, "blockHeight": 9155, "took": "3.147501ms"} -2023-12-16T14:41:42.046Z INFO sending PrepareRequest {"height": 9156, "view": 0} -2023-12-16T14:41:42.046Z INFO sending Commit {"height": 9156, "view": 0} -2023-12-16T14:41:42.047Z INFO approving block {"height": 9156, "hash": "96aca087658b9be956a75c390b97262eef8e2c152eb78a29ae29cc68ee079c09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c073ee26b172e8eabc458d9dbebd42eb0527bd1694cbf20169ed3bffd112cae"} -2023-12-16T14:41:42.047Z INFO initializing dbft {"height": 9157, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:42.048Z debug frostfs-node/morph.go:229 new block {"index": 9156} -2023-12-16T14:41:42.049Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:41:42.051Z INFO runtime log {"tx": "d091c3f4c6099e40708b281769e015d1306fcedfea3fb0a9d52daa140ba5128d", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:41:42.954Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9156, "blockHeight": 9156, "took": "6.334195ms"} -2023-12-16T14:41:43.047Z INFO sending PrepareRequest {"height": 9157, "view": 0} -2023-12-16T14:41:43.048Z INFO sending Commit {"height": 9157, "view": 0} -2023-12-16T14:41:43.048Z INFO approving block {"height": 9157, "hash": "e04ef5be18f1ebd610c182b539eced88a13e7f8c0657eb1190684fda845bd439", "tx_count": 1, "merkle": "9af53ce810ebbbaceedb41c553d514d54cc3b2391955ec3aeed76dd5c6112694", "prev": "96aca087658b9be956a75c390b97262eef8e2c152eb78a29ae29cc68ee079c09"} -2023-12-16T14:41:43.048Z INFO runtime log {"tx": "942611c6d56dd7ee3aec551939b2c34cd514d553c541dbeeacbbeb10e83cf59a", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:41:43.049Z INFO initializing dbft {"height": 9158, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:43.049Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 40} -2023-12-16T14:41:43.050Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 40} -2023-12-16T14:41:43.050Z debug frostfs-node/morph.go:229 new block {"index": 9157} -2023-12-16T14:41:43.050Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 40} -2023-12-16T14:41:43.050Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:41:43.050Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 40} -2023-12-16T14:41:43.050Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 40} -2023-12-16T14:41:43.050Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:41:43.050Z debug controller/calls.go:95 starting to report local trust values {"epoch": 39} -2023-12-16T14:41:43.050Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 39} -2023-12-16T14:41:43.054Z debug controller/calls.go:146 reporting successfully finished {"epoch": 39} -2023-12-16T14:41:43.054Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 39} -2023-12-16T14:41:43.054Z INFO runtime log {"tx": "9b9a8fc74bf2c3daa5ad4e6774147d8c8507579243fef93e6ab31d3b9ec14d67", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:41:43.054Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:41:43.057Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9160, "tx_hash": "052725a63af4207756d03edc954467149112650a7d58c6308b5f55e49a8fea3c"} -2023-12-16T14:41:43.061Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:41:43.061Z info audit/handlers.go:13 new round of audit {"epoch": 40} -2023-12-16T14:41:43.061Z info settlement/calls.go:26 new audit settlement event {"epoch": 40} -2023-12-16T14:41:43.062Z info settlement/handlers.go:14 process audit settlements {"epoch": 40} -2023-12-16T14:41:43.062Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 40} -2023-12-16T14:41:43.062Z info settlement/handlers.go:18 audit processing finished {"epoch": 40} -2023-12-16T14:41:43.064Z info audit/process.go:39 select containers for audit {"epoch": 40, "amount": 0} -2023-12-16T14:41:43.066Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9160, "tx_hash": "5b88972d8a14766e826345d3a3c6be8da182ebe1ba752958a005584257421f51"} -2023-12-16T14:41:43.959Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 9157, "blockHeight": 9157, "took": "11.319299ms"} -2023-12-16T14:41:44.049Z INFO sending PrepareRequest {"height": 9158, "view": 0} -2023-12-16T14:41:44.050Z INFO sending Commit {"height": 9158, "view": 0} -2023-12-16T14:41:44.050Z INFO approving block {"height": 9158, "hash": "59f9cc0c5b51d57bb34159e58e54a8dc55d7a648abb8b8010cea6c5521270a17", "tx_count": 3, "merkle": "66ab2d73c8709be226f0972717184024c685451446369644bc818474e34dc8e4", "prev": "e04ef5be18f1ebd610c182b539eced88a13e7f8c0657eb1190684fda845bd439"} -2023-12-16T14:41:44.050Z INFO runtime log {"tx": "1277d1afa76a0dcf02dd0a10636d9f965428fb6c08163fd16a0f22350dd17c03", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:41:44.051Z INFO initializing dbft {"height": 9159, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:44.052Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 39} -2023-12-16T14:41:44.052Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 39} -2023-12-16T14:41:44.052Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 39} -2023-12-16T14:41:44.052Z debug frostfs-node/morph.go:229 new block {"index": 9158} -2023-12-16T14:41:44.955Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 9158, "blockHeight": 9158, "took": "5.83352ms"} -2023-12-16T14:41:45.051Z INFO sending PrepareRequest {"height": 9159, "view": 0} -2023-12-16T14:41:45.051Z INFO sending Commit {"height": 9159, "view": 0} -2023-12-16T14:41:45.052Z INFO approving block {"height": 9159, "hash": "28bdb90f6c8b773133188e6357b5cf615af416f74c9139e7d35ec0483276b2fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59f9cc0c5b51d57bb34159e58e54a8dc55d7a648abb8b8010cea6c5521270a17"} -2023-12-16T14:41:45.054Z INFO initializing dbft {"height": 9160, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:45.055Z debug frostfs-node/morph.go:229 new block {"index": 9159} -2023-12-16T14:41:45.955Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9159, "blockHeight": 9159, "took": "5.584444ms"} -2023-12-16T14:41:46.053Z INFO sending PrepareRequest {"height": 9160, "view": 0} -2023-12-16T14:41:46.053Z INFO sending Commit {"height": 9160, "view": 0} -2023-12-16T14:41:46.053Z INFO approving block {"height": 9160, "hash": "efadb9ccbe4d8b503d7292d525c5feef3130361310dce79cea45cd172a40c4e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28bdb90f6c8b773133188e6357b5cf615af416f74c9139e7d35ec0483276b2fd"} -2023-12-16T14:41:46.054Z INFO initializing dbft {"height": 9161, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:46.054Z debug frostfs-node/morph.go:229 new block {"index": 9160} -2023-12-16T14:41:46.954Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9160, "blockHeight": 9160, "took": "3.694538ms"} -2023-12-16T14:41:47.054Z INFO sending PrepareRequest {"height": 9161, "view": 0} -2023-12-16T14:41:47.055Z INFO sending Commit {"height": 9161, "view": 0} -2023-12-16T14:41:47.055Z INFO approving block {"height": 9161, "hash": "32d979184c5bf56d5806f6b7337cf7721698179b518b8346a5074f3ad4f689a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efadb9ccbe4d8b503d7292d525c5feef3130361310dce79cea45cd172a40c4e8"} -2023-12-16T14:41:47.055Z INFO initializing dbft {"height": 9162, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:47.056Z debug frostfs-node/morph.go:229 new block {"index": 9161} -2023-12-16T14:41:47.954Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9161, "blockHeight": 9161, "took": "3.145492ms"} -2023-12-16T14:41:48.056Z INFO sending PrepareRequest {"height": 9162, "view": 0} -2023-12-16T14:41:48.056Z INFO sending Commit {"height": 9162, "view": 0} -2023-12-16T14:41:48.056Z INFO approving block {"height": 9162, "hash": "9981b29f764c3d7fcea63a13d42872f3db2812b0707f4527c1eb00954bd57b15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32d979184c5bf56d5806f6b7337cf7721698179b518b8346a5074f3ad4f689a9"} -2023-12-16T14:41:48.057Z INFO initializing dbft {"height": 9163, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:48.058Z debug frostfs-node/morph.go:229 new block {"index": 9162} -2023-12-16T14:41:48.956Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9162, "blockHeight": 9162, "took": "4.011007ms"} -2023-12-16T14:41:49.058Z INFO sending PrepareRequest {"height": 9163, "view": 0} -2023-12-16T14:41:49.058Z INFO sending Commit {"height": 9163, "view": 0} -2023-12-16T14:41:49.058Z INFO approving block {"height": 9163, "hash": "639e0f6d8ed63593e69462e63dfce64ba2bf5272f7d56d0b3fdc1acb9497bce1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9981b29f764c3d7fcea63a13d42872f3db2812b0707f4527c1eb00954bd57b15"} -2023-12-16T14:41:49.059Z INFO initializing dbft {"height": 9164, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:49.059Z debug frostfs-node/morph.go:229 new block {"index": 9163} -2023-12-16T14:41:49.955Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9163, "blockHeight": 9163, "took": "3.294136ms"} -2023-12-16T14:41:50.058Z INFO sending PrepareRequest {"height": 9164, "view": 0} -2023-12-16T14:41:50.059Z INFO sending Commit {"height": 9164, "view": 0} -2023-12-16T14:41:50.059Z INFO approving block {"height": 9164, "hash": "9b99450d90f093ca8035c99f4e0a0a2201a25f3e1283964a4c469af542209d3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "639e0f6d8ed63593e69462e63dfce64ba2bf5272f7d56d0b3fdc1acb9497bce1"} -2023-12-16T14:41:50.059Z INFO initializing dbft {"height": 9165, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:50.060Z debug frostfs-node/morph.go:229 new block {"index": 9164} -2023-12-16T14:41:50.956Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9164, "blockHeight": 9164, "took": "4.304486ms"} -2023-12-16T14:41:51.060Z INFO sending PrepareRequest {"height": 9165, "view": 0} -2023-12-16T14:41:51.060Z INFO sending Commit {"height": 9165, "view": 0} -2023-12-16T14:41:51.060Z INFO approving block {"height": 9165, "hash": "1fce3f90f2790243d3a5ada766d547252855976a316c9a466802a6ff8547d682", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b99450d90f093ca8035c99f4e0a0a2201a25f3e1283964a4c469af542209d3e"} -2023-12-16T14:41:51.061Z INFO initializing dbft {"height": 9166, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:51.062Z debug frostfs-node/morph.go:229 new block {"index": 9165} -2023-12-16T14:41:51.957Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9165, "blockHeight": 9165, "took": "3.895954ms"} -2023-12-16T14:41:52.061Z INFO sending PrepareRequest {"height": 9166, "view": 0} -2023-12-16T14:41:52.061Z INFO sending Commit {"height": 9166, "view": 0} -2023-12-16T14:41:52.061Z INFO approving block {"height": 9166, "hash": "17e886b4d848abf282cfc1238ba06f09d743efc494895771a94899decf546861", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1fce3f90f2790243d3a5ada766d547252855976a316c9a466802a6ff8547d682"} -2023-12-16T14:41:52.062Z INFO initializing dbft {"height": 9167, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:52.062Z debug frostfs-node/morph.go:229 new block {"index": 9166} -2023-12-16T14:41:52.960Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9166, "blockHeight": 9166, "took": "5.049528ms"} -2023-12-16T14:41:53.063Z INFO sending PrepareRequest {"height": 9167, "view": 0} -2023-12-16T14:41:53.063Z INFO sending Commit {"height": 9167, "view": 0} -2023-12-16T14:41:53.063Z INFO approving block {"height": 9167, "hash": "20072f12211f44904f3610ad28420eaa0f4ae1dbf7a22b3105cc7cb01e6c3a9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17e886b4d848abf282cfc1238ba06f09d743efc494895771a94899decf546861"} -2023-12-16T14:41:53.064Z INFO initializing dbft {"height": 9168, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:53.065Z debug frostfs-node/morph.go:229 new block {"index": 9167} -2023-12-16T14:41:53.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9167, "blockHeight": 9167, "took": "5.668637ms"} -2023-12-16T14:41:54.064Z INFO sending PrepareRequest {"height": 9168, "view": 0} -2023-12-16T14:41:54.064Z INFO sending Commit {"height": 9168, "view": 0} -2023-12-16T14:41:54.065Z INFO approving block {"height": 9168, "hash": "0699fd3862d8902c4c6fc9aacd5542e00b14e0353d7c9bd3eb2dfe66600c08cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "20072f12211f44904f3610ad28420eaa0f4ae1dbf7a22b3105cc7cb01e6c3a9f"} -2023-12-16T14:41:54.065Z INFO initializing dbft {"height": 9169, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:54.066Z debug frostfs-node/morph.go:229 new block {"index": 9168} -2023-12-16T14:41:54.961Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9168, "blockHeight": 9168, "took": "4.639886ms"} -2023-12-16T14:41:55.065Z INFO sending PrepareRequest {"height": 9169, "view": 0} -2023-12-16T14:41:55.066Z INFO sending Commit {"height": 9169, "view": 0} -2023-12-16T14:41:55.066Z INFO approving block {"height": 9169, "hash": "6db66156657bf004dc6380cd8bfe56dd12147364ba28ee5c63c57a3b696c7f56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0699fd3862d8902c4c6fc9aacd5542e00b14e0353d7c9bd3eb2dfe66600c08cf"} -2023-12-16T14:41:55.067Z INFO initializing dbft {"height": 9170, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:55.068Z debug frostfs-node/morph.go:229 new block {"index": 9169} -2023-12-16T14:41:55.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9169, "blockHeight": 9169, "took": "6.131598ms"} -2023-12-16T14:41:56.067Z INFO sending PrepareRequest {"height": 9170, "view": 0} -2023-12-16T14:41:56.067Z INFO sending Commit {"height": 9170, "view": 0} -2023-12-16T14:41:56.068Z INFO approving block {"height": 9170, "hash": "4a8e4ef33e0e9fb74d894902e86ca5b5237f149863136528516056b211cd1ed6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6db66156657bf004dc6380cd8bfe56dd12147364ba28ee5c63c57a3b696c7f56"} -2023-12-16T14:41:56.069Z INFO initializing dbft {"height": 9171, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:56.069Z debug frostfs-node/morph.go:229 new block {"index": 9170} -2023-12-16T14:41:56.962Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9170, "blockHeight": 9170, "took": "4.743749ms"} -2023-12-16T14:41:57.069Z INFO sending PrepareRequest {"height": 9171, "view": 0} -2023-12-16T14:41:57.069Z INFO sending Commit {"height": 9171, "view": 0} -2023-12-16T14:41:57.069Z INFO approving block {"height": 9171, "hash": "e18f211ac0707e1ffc4b2100d33a7fa05d9d733fd7c0805aa17fcc203cf6ac95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a8e4ef33e0e9fb74d894902e86ca5b5237f149863136528516056b211cd1ed6"} -2023-12-16T14:41:57.070Z INFO initializing dbft {"height": 9172, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:57.070Z debug frostfs-node/morph.go:229 new block {"index": 9171} -2023-12-16T14:41:57.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9171, "blockHeight": 9171, "took": "5.692078ms"} -2023-12-16T14:41:58.071Z INFO sending PrepareRequest {"height": 9172, "view": 0} -2023-12-16T14:41:58.071Z INFO sending Commit {"height": 9172, "view": 0} -2023-12-16T14:41:58.071Z INFO approving block {"height": 9172, "hash": "3966d68d250c46f19e21bdd1c656af2b7ade8a35d0f27a53268345f211bae56d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e18f211ac0707e1ffc4b2100d33a7fa05d9d733fd7c0805aa17fcc203cf6ac95"} -2023-12-16T14:41:58.073Z INFO initializing dbft {"height": 9173, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:58.073Z debug frostfs-node/morph.go:229 new block {"index": 9172} -2023-12-16T14:41:58.964Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9172, "blockHeight": 9172, "took": "5.472832ms"} -2023-12-16T14:41:59.072Z INFO sending PrepareRequest {"height": 9173, "view": 0} -2023-12-16T14:41:59.072Z INFO sending Commit {"height": 9173, "view": 0} -2023-12-16T14:41:59.073Z INFO approving block {"height": 9173, "hash": "fbb2db955f30d8c30092d7a3d3158b8d13798857680902b88a475002453c368e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3966d68d250c46f19e21bdd1c656af2b7ade8a35d0f27a53268345f211bae56d"} -2023-12-16T14:41:59.074Z INFO initializing dbft {"height": 9174, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:41:59.074Z debug frostfs-node/morph.go:229 new block {"index": 9173} -2023-12-16T14:41:59.963Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9173, "blockHeight": 9173, "took": "3.945137ms"} -2023-12-16T14:42:00.074Z INFO sending PrepareRequest {"height": 9174, "view": 0} -2023-12-16T14:42:00.074Z INFO sending Commit {"height": 9174, "view": 0} -2023-12-16T14:42:00.074Z INFO approving block {"height": 9174, "hash": "2ae39d6e9040955907914e7ff617bbe5f07789d1c0bcc793439ca2cc863c1d1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbb2db955f30d8c30092d7a3d3158b8d13798857680902b88a475002453c368e"} -2023-12-16T14:42:00.075Z INFO initializing dbft {"height": 9175, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:00.075Z debug frostfs-node/morph.go:229 new block {"index": 9174} -2023-12-16T14:42:00.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9174, "blockHeight": 9174, "took": "7.574503ms"} -2023-12-16T14:42:01.075Z INFO sending PrepareRequest {"height": 9175, "view": 0} -2023-12-16T14:42:01.075Z INFO sending Commit {"height": 9175, "view": 0} -2023-12-16T14:42:01.075Z INFO approving block {"height": 9175, "hash": "180c2d688ab50418775b7d8112a573aaed51ba54941185b3dbcda4d611976ff5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ae39d6e9040955907914e7ff617bbe5f07789d1c0bcc793439ca2cc863c1d1e"} -2023-12-16T14:42:01.076Z INFO initializing dbft {"height": 9176, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:01.077Z debug frostfs-node/morph.go:229 new block {"index": 9175} -2023-12-16T14:42:01.966Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9175, "blockHeight": 9175, "took": "4.725869ms"} -2023-12-16T14:42:02.077Z INFO sending PrepareRequest {"height": 9176, "view": 0} -2023-12-16T14:42:02.077Z INFO sending Commit {"height": 9176, "view": 0} -2023-12-16T14:42:02.077Z INFO approving block {"height": 9176, "hash": "677cbe0bd5e1725fdb15db8fb68e3fddf848160a0c4b0692f774fc124934b18a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "180c2d688ab50418775b7d8112a573aaed51ba54941185b3dbcda4d611976ff5"} -2023-12-16T14:42:02.078Z INFO initializing dbft {"height": 9177, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:02.078Z debug frostfs-node/morph.go:229 new block {"index": 9176} -2023-12-16T14:42:02.964Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9176, "blockHeight": 9176, "took": "2.953367ms"} -2023-12-16T14:42:03.078Z INFO sending PrepareRequest {"height": 9177, "view": 0} -2023-12-16T14:42:03.078Z INFO sending Commit {"height": 9177, "view": 0} -2023-12-16T14:42:03.078Z INFO approving block {"height": 9177, "hash": "e7259d0f7c4de1e27be8aac2d30e0968016cc378f06df53bccd75bcf35e0b18a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "677cbe0bd5e1725fdb15db8fb68e3fddf848160a0c4b0692f774fc124934b18a"} -2023-12-16T14:42:03.080Z INFO initializing dbft {"height": 9178, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:03.081Z debug frostfs-node/morph.go:229 new block {"index": 9177} -2023-12-16T14:42:03.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9177, "blockHeight": 9177, "took": "5.893414ms"} -2023-12-16T14:42:04.079Z INFO sending PrepareRequest {"height": 9178, "view": 0} -2023-12-16T14:42:04.079Z INFO sending Commit {"height": 9178, "view": 0} -2023-12-16T14:42:04.080Z INFO approving block {"height": 9178, "hash": "9c3dd7589f5f2302f6cbad3b03b5c375acbf9c54a2c897145b4f009a2aa318b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7259d0f7c4de1e27be8aac2d30e0968016cc378f06df53bccd75bcf35e0b18a"} -2023-12-16T14:42:04.080Z INFO initializing dbft {"height": 9179, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:04.081Z debug frostfs-node/morph.go:229 new block {"index": 9178} -2023-12-16T14:42:04.969Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9178, "blockHeight": 9178, "took": "6.190581ms"} -2023-12-16T14:42:05.081Z INFO sending PrepareRequest {"height": 9179, "view": 0} -2023-12-16T14:42:05.081Z INFO sending Commit {"height": 9179, "view": 0} -2023-12-16T14:42:05.081Z INFO approving block {"height": 9179, "hash": "424c1cb1e5c69b37ab6c544f09a14b33cb47732a578aa0d58560beb0f3e1131c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c3dd7589f5f2302f6cbad3b03b5c375acbf9c54a2c897145b4f009a2aa318b4"} -2023-12-16T14:42:05.082Z INFO initializing dbft {"height": 9180, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:05.083Z debug frostfs-node/morph.go:229 new block {"index": 9179} -2023-12-16T14:42:05.968Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9179, "blockHeight": 9179, "took": "4.259835ms"} -2023-12-16T14:42:06.082Z INFO sending PrepareRequest {"height": 9180, "view": 0} -2023-12-16T14:42:06.082Z INFO sending Commit {"height": 9180, "view": 0} -2023-12-16T14:42:06.083Z INFO approving block {"height": 9180, "hash": "53b14054cc9a654fdde71b9cf8d2c014d26a255db3db5d0f606a6cdf81b77f83", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "424c1cb1e5c69b37ab6c544f09a14b33cb47732a578aa0d58560beb0f3e1131c"} -2023-12-16T14:42:06.084Z INFO initializing dbft {"height": 9181, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:06.084Z debug frostfs-node/morph.go:229 new block {"index": 9180} -2023-12-16T14:42:06.969Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9180, "blockHeight": 9180, "took": "3.930365ms"} -2023-12-16T14:42:07.083Z INFO sending PrepareRequest {"height": 9181, "view": 0} -2023-12-16T14:42:07.084Z INFO sending Commit {"height": 9181, "view": 0} -2023-12-16T14:42:07.084Z INFO approving block {"height": 9181, "hash": "d6aaff0c44b09ae4ad623cf274b69cdc094b28eac5342c2983dd89c15d23f744", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53b14054cc9a654fdde71b9cf8d2c014d26a255db3db5d0f606a6cdf81b77f83"} -2023-12-16T14:42:07.085Z INFO initializing dbft {"height": 9182, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:07.085Z debug frostfs-node/morph.go:229 new block {"index": 9181} -2023-12-16T14:42:07.973Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9181, "blockHeight": 9181, "took": "7.040946ms"} -2023-12-16T14:42:08.085Z INFO sending PrepareRequest {"height": 9182, "view": 0} -2023-12-16T14:42:08.086Z INFO sending Commit {"height": 9182, "view": 0} -2023-12-16T14:42:08.086Z INFO approving block {"height": 9182, "hash": "865ca9bdff1a5d5af5d0f20423e2e785605477ea42b07aa2af6e86d31e9ebff6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6aaff0c44b09ae4ad623cf274b69cdc094b28eac5342c2983dd89c15d23f744"} -2023-12-16T14:42:08.088Z INFO initializing dbft {"height": 9183, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:08.090Z debug frostfs-node/morph.go:229 new block {"index": 9182} -2023-12-16T14:42:08.971Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9182, "blockHeight": 9182, "took": "4.79914ms"} -2023-12-16T14:42:09.088Z INFO sending PrepareRequest {"height": 9183, "view": 0} -2023-12-16T14:42:09.088Z INFO sending Commit {"height": 9183, "view": 0} -2023-12-16T14:42:09.088Z INFO approving block {"height": 9183, "hash": "676458a613c502f1159613897baf9801a9da13f5399de0746d894b2aab63c767", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "865ca9bdff1a5d5af5d0f20423e2e785605477ea42b07aa2af6e86d31e9ebff6"} -2023-12-16T14:42:09.089Z INFO initializing dbft {"height": 9184, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:09.090Z debug frostfs-node/morph.go:229 new block {"index": 9183} -2023-12-16T14:42:09.973Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9183, "blockHeight": 9183, "took": "5.44437ms"} -2023-12-16T14:42:10.089Z INFO sending PrepareRequest {"height": 9184, "view": 0} -2023-12-16T14:42:10.089Z INFO sending Commit {"height": 9184, "view": 0} -2023-12-16T14:42:10.090Z INFO approving block {"height": 9184, "hash": "d4f6b2769baa35fdb4324c934b27d62941f95331aa13f1ce66a032ca1dc26576", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "676458a613c502f1159613897baf9801a9da13f5399de0746d894b2aab63c767"} -2023-12-16T14:42:10.090Z INFO initializing dbft {"height": 9185, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:10.091Z debug frostfs-node/morph.go:229 new block {"index": 9184} -2023-12-16T14:42:10.971Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9184, "blockHeight": 9184, "took": "3.215784ms"} -2023-12-16T14:42:11.090Z INFO sending PrepareRequest {"height": 9185, "view": 0} -2023-12-16T14:42:11.090Z INFO sending Commit {"height": 9185, "view": 0} -2023-12-16T14:42:11.091Z INFO approving block {"height": 9185, "hash": "74f3baac7bedefce96c10f4aee0ec258548b331c7f232d9701afc6ecc7f73fee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d4f6b2769baa35fdb4324c934b27d62941f95331aa13f1ce66a032ca1dc26576"} -2023-12-16T14:42:11.091Z INFO initializing dbft {"height": 9186, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:11.092Z debug frostfs-node/morph.go:229 new block {"index": 9185} -2023-12-16T14:42:11.972Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9185, "blockHeight": 9185, "took": "3.613256ms"} -2023-12-16T14:42:12.092Z INFO sending PrepareRequest {"height": 9186, "view": 0} -2023-12-16T14:42:12.092Z INFO sending Commit {"height": 9186, "view": 0} -2023-12-16T14:42:12.092Z INFO approving block {"height": 9186, "hash": "a0b1c83489dc074b69bd8f96606fd6c01ce217406c33d49c719f4d05bcb42def", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "74f3baac7bedefce96c10f4aee0ec258548b331c7f232d9701afc6ecc7f73fee"} -2023-12-16T14:42:12.093Z INFO initializing dbft {"height": 9187, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:12.093Z debug frostfs-node/morph.go:229 new block {"index": 9186} -2023-12-16T14:42:12.974Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9186, "blockHeight": 9186, "took": "5.657076ms"} -2023-12-16T14:42:13.094Z INFO sending PrepareRequest {"height": 9187, "view": 0} -2023-12-16T14:42:13.094Z INFO sending Commit {"height": 9187, "view": 0} -2023-12-16T14:42:13.094Z INFO approving block {"height": 9187, "hash": "7b18b8f7560abcb244e0f668ad33e0b58fde12fc865345b07b0948bd8c103e65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0b1c83489dc074b69bd8f96606fd6c01ce217406c33d49c719f4d05bcb42def"} -2023-12-16T14:42:13.095Z INFO initializing dbft {"height": 9188, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:13.096Z debug frostfs-node/morph.go:229 new block {"index": 9187} -2023-12-16T14:42:13.975Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9187, "blockHeight": 9187, "took": "5.182231ms"} -2023-12-16T14:42:14.095Z INFO sending PrepareRequest {"height": 9188, "view": 0} -2023-12-16T14:42:14.095Z INFO sending Commit {"height": 9188, "view": 0} -2023-12-16T14:42:14.096Z INFO approving block {"height": 9188, "hash": "9db89d377866c9777a1fe16295e1178289b907df128cb52049e7f030379b6933", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b18b8f7560abcb244e0f668ad33e0b58fde12fc865345b07b0948bd8c103e65"} -2023-12-16T14:42:14.096Z INFO initializing dbft {"height": 9189, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:14.097Z debug frostfs-node/morph.go:229 new block {"index": 9188} -2023-12-16T14:42:14.976Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9188, "blockHeight": 9188, "took": "5.920642ms"} -2023-12-16T14:42:15.097Z INFO sending PrepareRequest {"height": 9189, "view": 0} -2023-12-16T14:42:15.097Z INFO sending Commit {"height": 9189, "view": 0} -2023-12-16T14:42:15.097Z INFO approving block {"height": 9189, "hash": "aa87f5bdc56326e2c21cfdd39cb7d18ca4f36737e99c5c61992614a118c98545", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9db89d377866c9777a1fe16295e1178289b907df128cb52049e7f030379b6933"} -2023-12-16T14:42:15.099Z INFO initializing dbft {"height": 9190, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:15.100Z debug frostfs-node/morph.go:229 new block {"index": 9189} -2023-12-16T14:42:15.977Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9189, "blockHeight": 9189, "took": "5.769208ms"} -2023-12-16T14:42:16.098Z INFO sending PrepareRequest {"height": 9190, "view": 0} -2023-12-16T14:42:16.099Z INFO sending Commit {"height": 9190, "view": 0} -2023-12-16T14:42:16.099Z INFO approving block {"height": 9190, "hash": "bcd6786a4eb07030b35b11b2e7f9020bb967e11b810d3ffa2915c9f02de87bb5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa87f5bdc56326e2c21cfdd39cb7d18ca4f36737e99c5c61992614a118c98545"} -2023-12-16T14:42:16.101Z INFO initializing dbft {"height": 9191, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:16.101Z debug frostfs-node/morph.go:229 new block {"index": 9190} -2023-12-16T14:42:16.979Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9190, "blockHeight": 9190, "took": "6.301234ms"} -2023-12-16T14:42:17.100Z INFO sending PrepareRequest {"height": 9191, "view": 0} -2023-12-16T14:42:17.101Z INFO sending Commit {"height": 9191, "view": 0} -2023-12-16T14:42:17.101Z INFO approving block {"height": 9191, "hash": "9a94420cfa9784092fb6ba5fa4899eb7393d30bf7066e301daa4ca9bedfea50a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcd6786a4eb07030b35b11b2e7f9020bb967e11b810d3ffa2915c9f02de87bb5"} -2023-12-16T14:42:17.102Z INFO initializing dbft {"height": 9192, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:17.103Z debug frostfs-node/morph.go:229 new block {"index": 9191} -2023-12-16T14:42:17.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9191, "blockHeight": 9191, "took": "4.187412ms"} -2023-12-16T14:42:18.101Z INFO sending PrepareRequest {"height": 9192, "view": 0} -2023-12-16T14:42:18.102Z INFO sending Commit {"height": 9192, "view": 0} -2023-12-16T14:42:18.102Z INFO approving block {"height": 9192, "hash": "776171a22d680aa31f2c6c0c5bb71aac10fa5c104dacb565b1482d80cfccfb50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a94420cfa9784092fb6ba5fa4899eb7393d30bf7066e301daa4ca9bedfea50a"} -2023-12-16T14:42:18.103Z INFO initializing dbft {"height": 9193, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:18.103Z debug frostfs-node/morph.go:229 new block {"index": 9192} -2023-12-16T14:42:18.978Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9192, "blockHeight": 9192, "took": "4.417998ms"} -2023-12-16T14:42:19.103Z INFO sending PrepareRequest {"height": 9193, "view": 0} -2023-12-16T14:42:19.103Z INFO sending Commit {"height": 9193, "view": 0} -2023-12-16T14:42:19.103Z INFO approving block {"height": 9193, "hash": "0d13d6e205cd20a775eb3b4b4c4d373fa0f1ebc0fcbdb20c9c2f2ea7c490d787", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "776171a22d680aa31f2c6c0c5bb71aac10fa5c104dacb565b1482d80cfccfb50"} -2023-12-16T14:42:19.104Z INFO initializing dbft {"height": 9194, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:19.104Z debug frostfs-node/morph.go:229 new block {"index": 9193} -2023-12-16T14:42:19.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9193, "blockHeight": 9193, "took": "7.722675ms"} -2023-12-16T14:42:20.104Z INFO sending PrepareRequest {"height": 9194, "view": 0} -2023-12-16T14:42:20.104Z INFO sending Commit {"height": 9194, "view": 0} -2023-12-16T14:42:20.104Z INFO approving block {"height": 9194, "hash": "0cf29262a21338a75b46f6bb534dfb975b59c5df17b283012840f8315b10eeea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d13d6e205cd20a775eb3b4b4c4d373fa0f1ebc0fcbdb20c9c2f2ea7c490d787"} -2023-12-16T14:42:20.105Z INFO initializing dbft {"height": 9195, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:20.106Z debug frostfs-node/morph.go:229 new block {"index": 9194} -2023-12-16T14:42:20.980Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9194, "blockHeight": 9194, "took": "5.360806ms"} -2023-12-16T14:42:21.106Z INFO sending PrepareRequest {"height": 9195, "view": 0} -2023-12-16T14:42:21.106Z INFO sending Commit {"height": 9195, "view": 0} -2023-12-16T14:42:21.107Z INFO approving block {"height": 9195, "hash": "456078a21bdfd2dc506eb1f21116e1b2157c009a215af49be00422d009210efc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cf29262a21338a75b46f6bb534dfb975b59c5df17b283012840f8315b10eeea"} -2023-12-16T14:42:21.108Z INFO initializing dbft {"height": 9196, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:21.109Z debug frostfs-node/morph.go:229 new block {"index": 9195} -2023-12-16T14:42:21.983Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9195, "blockHeight": 9195, "took": "7.103827ms"} -2023-12-16T14:42:22.108Z INFO sending PrepareRequest {"height": 9196, "view": 0} -2023-12-16T14:42:22.108Z INFO sending Commit {"height": 9196, "view": 0} -2023-12-16T14:42:22.108Z INFO approving block {"height": 9196, "hash": "b0d6700125979f782f679df8ed6495404372d4065e4ff1c845331c42f33bf9cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "456078a21bdfd2dc506eb1f21116e1b2157c009a215af49be00422d009210efc"} -2023-12-16T14:42:22.109Z INFO initializing dbft {"height": 9197, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:22.109Z debug frostfs-node/morph.go:229 new block {"index": 9196} -2023-12-16T14:42:22.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9196, "blockHeight": 9196, "took": "5.266095ms"} -2023-12-16T14:42:23.109Z INFO sending PrepareRequest {"height": 9197, "view": 0} -2023-12-16T14:42:23.110Z INFO sending Commit {"height": 9197, "view": 0} -2023-12-16T14:42:23.110Z INFO approving block {"height": 9197, "hash": "b9f0959182e2c9f02a3c2070ffabbbfa963afb1d09fd741e4ead2764bbf3b2b0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0d6700125979f782f679df8ed6495404372d4065e4ff1c845331c42f33bf9cf"} -2023-12-16T14:42:23.111Z INFO initializing dbft {"height": 9198, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:23.112Z debug frostfs-node/morph.go:229 new block {"index": 9197} -2023-12-16T14:42:23.980Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9197, "blockHeight": 9197, "took": "3.446051ms"} -2023-12-16T14:42:24.111Z INFO sending PrepareRequest {"height": 9198, "view": 0} -2023-12-16T14:42:24.111Z INFO sending Commit {"height": 9198, "view": 0} -2023-12-16T14:42:24.111Z INFO approving block {"height": 9198, "hash": "d2fabcb8f0a237582efdc3378a08c49e39b28180cec551d31053d4d4bb0cfdfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b9f0959182e2c9f02a3c2070ffabbbfa963afb1d09fd741e4ead2764bbf3b2b0"} -2023-12-16T14:42:24.112Z INFO initializing dbft {"height": 9199, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:24.113Z debug frostfs-node/morph.go:229 new block {"index": 9198} -2023-12-16T14:42:24.983Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9198, "blockHeight": 9198, "took": "5.198722ms"} -2023-12-16T14:42:25.113Z INFO sending PrepareRequest {"height": 9199, "view": 0} -2023-12-16T14:42:25.113Z INFO sending Commit {"height": 9199, "view": 0} -2023-12-16T14:42:25.113Z INFO approving block {"height": 9199, "hash": "dd27cd18b565a057c8afb1a63e60b40cb1aec659d76414d8a53b4d522a7ed670", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2fabcb8f0a237582efdc3378a08c49e39b28180cec551d31053d4d4bb0cfdfa"} -2023-12-16T14:42:25.114Z INFO initializing dbft {"height": 9200, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:25.115Z debug frostfs-node/morph.go:229 new block {"index": 9199} -2023-12-16T14:42:25.982Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9199, "blockHeight": 9199, "took": "3.143801ms"} -2023-12-16T14:42:26.114Z INFO sending PrepareRequest {"height": 9200, "view": 0} -2023-12-16T14:42:26.115Z INFO sending Commit {"height": 9200, "view": 0} -2023-12-16T14:42:26.115Z INFO approving block {"height": 9200, "hash": "13683cb2f036264631678c3bf060ad64f033fdd68bc9ab82be7f585f710ec50a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd27cd18b565a057c8afb1a63e60b40cb1aec659d76414d8a53b4d522a7ed670"} -2023-12-16T14:42:26.115Z INFO initializing dbft {"height": 9201, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:26.116Z debug frostfs-node/morph.go:229 new block {"index": 9200} -2023-12-16T14:42:26.118Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:42:26.121Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:42:26.121Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:42:26.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9200, "blockHeight": 9200, "took": "6.583238ms"} -2023-12-16T14:42:27.115Z INFO sending PrepareRequest {"height": 9201, "view": 0} -2023-12-16T14:42:27.115Z INFO sending Commit {"height": 9201, "view": 0} -2023-12-16T14:42:27.116Z INFO approving block {"height": 9201, "hash": "39227236630b97b33e5e770eb8894053e95964e25e72a38cae3c4af12e3e2424", "tx_count": 2, "merkle": "942200f46ac62062be728355f6d3bbf2a551dfd5e9bde3f8761f97ef658d3522", "prev": "13683cb2f036264631678c3bf060ad64f033fdd68bc9ab82be7f585f710ec50a"} -2023-12-16T14:42:27.116Z INFO runtime log {"tx": "65bd010dc4ac860bbcb2207d8a24e2e10f52700bd806998a2b4c5abe484ee2c2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:42:27.116Z INFO runtime log {"tx": "65bd010dc4ac860bbcb2207d8a24e2e10f52700bd806998a2b4c5abe484ee2c2", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:42:27.117Z INFO initializing dbft {"height": 9202, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:27.118Z debug frostfs-node/morph.go:229 new block {"index": 9201} -2023-12-16T14:42:27.988Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9201, "blockHeight": 9201, "took": "7.806511ms"} -2023-12-16T14:42:28.117Z INFO sending PrepareRequest {"height": 9202, "view": 0} -2023-12-16T14:42:28.117Z INFO sending Commit {"height": 9202, "view": 0} -2023-12-16T14:42:28.117Z INFO approving block {"height": 9202, "hash": "719231649f7861edea2bdd53691811bfce9c5d226af47ba7b361e34eb49c6719", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39227236630b97b33e5e770eb8894053e95964e25e72a38cae3c4af12e3e2424"} -2023-12-16T14:42:28.118Z INFO initializing dbft {"height": 9203, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:28.119Z debug frostfs-node/morph.go:229 new block {"index": 9202} -2023-12-16T14:42:28.986Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9202, "blockHeight": 9202, "took": "5.288095ms"} -2023-12-16T14:42:29.118Z INFO sending PrepareRequest {"height": 9203, "view": 0} -2023-12-16T14:42:29.118Z INFO sending Commit {"height": 9203, "view": 0} -2023-12-16T14:42:29.119Z INFO approving block {"height": 9203, "hash": "4ffee01c5efe0c66e268b58b3ea42b8de72580e538e2c59526933aa592f27371", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "719231649f7861edea2bdd53691811bfce9c5d226af47ba7b361e34eb49c6719"} -2023-12-16T14:42:29.120Z INFO initializing dbft {"height": 9204, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:29.120Z debug frostfs-node/morph.go:229 new block {"index": 9203} -2023-12-16T14:42:29.985Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9203, "blockHeight": 9203, "took": "3.933277ms"} -2023-12-16T14:42:30.119Z INFO sending PrepareRequest {"height": 9204, "view": 0} -2023-12-16T14:42:30.119Z INFO sending Commit {"height": 9204, "view": 0} -2023-12-16T14:42:30.120Z INFO approving block {"height": 9204, "hash": "0d9e1acb702743c245e11126312c8f39e220a2c899fc7ca4dfa7d0898d7d841b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ffee01c5efe0c66e268b58b3ea42b8de72580e538e2c59526933aa592f27371"} -2023-12-16T14:42:30.120Z INFO initializing dbft {"height": 9205, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:30.121Z debug frostfs-node/morph.go:229 new block {"index": 9204} -2023-12-16T14:42:30.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9204, "blockHeight": 9204, "took": "5.52088ms"} -2023-12-16T14:42:31.120Z INFO sending PrepareRequest {"height": 9205, "view": 0} -2023-12-16T14:42:31.121Z INFO sending Commit {"height": 9205, "view": 0} -2023-12-16T14:42:31.121Z INFO approving block {"height": 9205, "hash": "ecd41bf89eea4be54b114abc83a94e58283b8066ced7d1a7aab5139e1705c6cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0d9e1acb702743c245e11126312c8f39e220a2c899fc7ca4dfa7d0898d7d841b"} -2023-12-16T14:42:31.122Z INFO initializing dbft {"height": 9206, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:31.122Z debug frostfs-node/morph.go:229 new block {"index": 9205} -2023-12-16T14:42:31.990Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9205, "blockHeight": 9205, "took": "7.665224ms"} -2023-12-16T14:42:32.122Z INFO sending PrepareRequest {"height": 9206, "view": 0} -2023-12-16T14:42:32.122Z INFO sending Commit {"height": 9206, "view": 0} -2023-12-16T14:42:32.122Z INFO approving block {"height": 9206, "hash": "08527178945b9a32ea800e84a022d71618d831a1af1a336a472814e05e62e846", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecd41bf89eea4be54b114abc83a94e58283b8066ced7d1a7aab5139e1705c6cd"} -2023-12-16T14:42:32.123Z INFO initializing dbft {"height": 9207, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:32.124Z debug frostfs-node/morph.go:229 new block {"index": 9206} -2023-12-16T14:42:32.987Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9206, "blockHeight": 9206, "took": "4.116951ms"} -2023-12-16T14:42:33.124Z INFO sending PrepareRequest {"height": 9207, "view": 0} -2023-12-16T14:42:33.124Z INFO sending Commit {"height": 9207, "view": 0} -2023-12-16T14:42:33.125Z INFO approving block {"height": 9207, "hash": "9c9e2843c625685a01a0adf4322d0e2e2ad90d650a036abd443ca80df9270bdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08527178945b9a32ea800e84a022d71618d831a1af1a336a472814e05e62e846"} -2023-12-16T14:42:33.126Z INFO initializing dbft {"height": 9208, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:33.127Z debug frostfs-node/morph.go:229 new block {"index": 9207} -2023-12-16T14:42:33.989Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9207, "blockHeight": 9207, "took": "5.298324ms"} -2023-12-16T14:42:34.125Z INFO sending PrepareRequest {"height": 9208, "view": 0} -2023-12-16T14:42:34.125Z INFO sending Commit {"height": 9208, "view": 0} -2023-12-16T14:42:34.126Z INFO approving block {"height": 9208, "hash": "1dd4147a37f8ecff83259dc2b1adf956f652b98207869a9f9733d4a32a960670", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9c9e2843c625685a01a0adf4322d0e2e2ad90d650a036abd443ca80df9270bdb"} -2023-12-16T14:42:34.127Z INFO initializing dbft {"height": 9209, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:34.127Z debug frostfs-node/morph.go:229 new block {"index": 9208} -2023-12-16T14:42:34.991Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9208, "blockHeight": 9208, "took": "6.919522ms"} -2023-12-16T14:42:35.127Z INFO sending PrepareRequest {"height": 9209, "view": 0} -2023-12-16T14:42:35.127Z INFO sending Commit {"height": 9209, "view": 0} -2023-12-16T14:42:35.128Z INFO approving block {"height": 9209, "hash": "abfc4618c857fa87e39041f011a206546f1c343af906aed458f978ed74694437", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1dd4147a37f8ecff83259dc2b1adf956f652b98207869a9f9733d4a32a960670"} -2023-12-16T14:42:35.129Z INFO initializing dbft {"height": 9210, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:35.130Z debug frostfs-node/morph.go:229 new block {"index": 9209} -2023-12-16T14:42:35.988Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9209, "blockHeight": 9209, "took": "3.380309ms"} -2023-12-16T14:42:36.129Z INFO sending PrepareRequest {"height": 9210, "view": 0} -2023-12-16T14:42:36.129Z INFO sending Commit {"height": 9210, "view": 0} -2023-12-16T14:42:36.129Z INFO approving block {"height": 9210, "hash": "3c54b86a4f38850f9f32c00f3c95a13d7774426210d51eba8bd306d148318ba1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abfc4618c857fa87e39041f011a206546f1c343af906aed458f978ed74694437"} -2023-12-16T14:42:36.130Z INFO initializing dbft {"height": 9211, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:36.131Z debug frostfs-node/morph.go:229 new block {"index": 9210} -2023-12-16T14:42:36.991Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9210, "blockHeight": 9210, "took": "5.340291ms"} -2023-12-16T14:42:37.130Z INFO sending PrepareRequest {"height": 9211, "view": 0} -2023-12-16T14:42:37.130Z INFO sending Commit {"height": 9211, "view": 0} -2023-12-16T14:42:37.131Z INFO approving block {"height": 9211, "hash": "be8675cc5d9c916040edab1d4bbe986e41808baa8b526f9fc1f092e445aa6165", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c54b86a4f38850f9f32c00f3c95a13d7774426210d51eba8bd306d148318ba1"} -2023-12-16T14:42:37.132Z INFO initializing dbft {"height": 9212, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:37.132Z debug frostfs-node/morph.go:229 new block {"index": 9211} -2023-12-16T14:42:37.989Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9211, "blockHeight": 9211, "took": "3.471131ms"} -2023-12-16T14:42:38.132Z INFO sending PrepareRequest {"height": 9212, "view": 0} -2023-12-16T14:42:38.132Z INFO sending Commit {"height": 9212, "view": 0} -2023-12-16T14:42:38.132Z INFO approving block {"height": 9212, "hash": "09ff5685c53610342eacfc996ef17cd21d56e05ad8551e94930292b673525422", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be8675cc5d9c916040edab1d4bbe986e41808baa8b526f9fc1f092e445aa6165"} -2023-12-16T14:42:38.133Z INFO initializing dbft {"height": 9213, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:38.134Z debug frostfs-node/morph.go:229 new block {"index": 9212} -2023-12-16T14:42:38.991Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9212, "blockHeight": 9212, "took": "4.228474ms"} -2023-12-16T14:42:39.133Z INFO sending PrepareRequest {"height": 9213, "view": 0} -2023-12-16T14:42:39.133Z INFO sending Commit {"height": 9213, "view": 0} -2023-12-16T14:42:39.134Z INFO approving block {"height": 9213, "hash": "37e2e5307ca99f340f35b520f558ce7e246ca4a1f4bc120f4d4aaf7db20c79eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09ff5685c53610342eacfc996ef17cd21d56e05ad8551e94930292b673525422"} -2023-12-16T14:42:39.135Z INFO initializing dbft {"height": 9214, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:39.135Z debug frostfs-node/morph.go:229 new block {"index": 9213} -2023-12-16T14:42:39.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9213, "blockHeight": 9213, "took": "5.455329ms"} -2023-12-16T14:42:40.135Z INFO sending PrepareRequest {"height": 9214, "view": 0} -2023-12-16T14:42:40.135Z INFO sending Commit {"height": 9214, "view": 0} -2023-12-16T14:42:40.135Z INFO approving block {"height": 9214, "hash": "60cf8dcdd75f809858664b9cdc0310e76dbe66ee16838ffc705423a3f883da98", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37e2e5307ca99f340f35b520f558ce7e246ca4a1f4bc120f4d4aaf7db20c79eb"} -2023-12-16T14:42:40.136Z INFO initializing dbft {"height": 9215, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:40.137Z debug frostfs-node/morph.go:229 new block {"index": 9214} -2023-12-16T14:42:40.994Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9214, "blockHeight": 9214, "took": "6.423059ms"} -2023-12-16T14:42:41.137Z INFO sending PrepareRequest {"height": 9215, "view": 0} -2023-12-16T14:42:41.137Z INFO sending Commit {"height": 9215, "view": 0} -2023-12-16T14:42:41.137Z INFO approving block {"height": 9215, "hash": "52d1de12895cd17eb4209df568d25ac79c5901f20c6e907db68850b7551b57c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60cf8dcdd75f809858664b9cdc0310e76dbe66ee16838ffc705423a3f883da98"} -2023-12-16T14:42:41.139Z INFO initializing dbft {"height": 9216, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:41.139Z debug frostfs-node/morph.go:229 new block {"index": 9215} -2023-12-16T14:42:41.991Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 9215, "blockHeight": 9215, "took": "3.593135ms"} -2023-12-16T14:42:42.139Z INFO sending PrepareRequest {"height": 9216, "view": 0} -2023-12-16T14:42:42.139Z INFO sending Commit {"height": 9216, "view": 0} -2023-12-16T14:42:42.139Z INFO approving block {"height": 9216, "hash": "6a9dd922a4a23b608e4b74ab307e731c561d275f9674245d8ab2c553d48bf414", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "52d1de12895cd17eb4209df568d25ac79c5901f20c6e907db68850b7551b57c4"} -2023-12-16T14:42:42.140Z INFO initializing dbft {"height": 9217, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:42.141Z debug frostfs-node/morph.go:229 new block {"index": 9216} -2023-12-16T14:42:42.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9216, "blockHeight": 9216, "took": "3.358037ms"} -2023-12-16T14:42:43.140Z INFO sending PrepareRequest {"height": 9217, "view": 0} -2023-12-16T14:42:43.140Z INFO sending Commit {"height": 9217, "view": 0} -2023-12-16T14:42:43.140Z INFO approving block {"height": 9217, "hash": "09730c7e6955ce487a7a1ee8c73c6711f8c27c014da579d8f74efc12ba716513", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a9dd922a4a23b608e4b74ab307e731c561d275f9674245d8ab2c553d48bf414"} -2023-12-16T14:42:43.141Z INFO initializing dbft {"height": 9218, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:43.142Z debug frostfs-node/morph.go:229 new block {"index": 9217} -2023-12-16T14:42:43.145Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 39 epoch for daughters"} -2023-12-16T14:42:43.147Z INFO runtime log {"tx": "0848b3d168a62ed432a650df18e6d20db32eb83a2e96c8b00a7bba518ccfe5f6", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:42:43.992Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9217, "blockHeight": 9217, "took": "3.629896ms"} -2023-12-16T14:42:44.141Z INFO sending PrepareRequest {"height": 9218, "view": 0} -2023-12-16T14:42:44.142Z INFO sending Commit {"height": 9218, "view": 0} -2023-12-16T14:42:44.142Z INFO approving block {"height": 9218, "hash": "9adbe11051a6b9935a41fbc1058a4e63a38f15c8f7e3582f1bc415705f2a4e6c", "tx_count": 1, "merkle": "6a448760f506e597fa20913b7f9c580b8166c0e7d66bf8e3f06dfe6ac2584892", "prev": "09730c7e6955ce487a7a1ee8c73c6711f8c27c014da579d8f74efc12ba716513"} -2023-12-16T14:42:44.142Z INFO runtime log {"tx": "924858c26afe6df0e3f86bd6e7c066810b589c7f3b9120fa97e506f56087446a", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:42:44.143Z INFO initializing dbft {"height": 9219, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:44.143Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 39} -2023-12-16T14:42:44.143Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 39} -2023-12-16T14:42:44.144Z debug frostfs-node/morph.go:229 new block {"index": 9218} -2023-12-16T14:42:44.995Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 9218, "blockHeight": 9218, "took": "5.181181ms"} -2023-12-16T14:42:45.143Z INFO sending PrepareRequest {"height": 9219, "view": 0} -2023-12-16T14:42:45.144Z INFO sending Commit {"height": 9219, "view": 0} -2023-12-16T14:42:45.144Z INFO approving block {"height": 9219, "hash": "94ccd72c75b773623bc19aaffa568e8c9776caeea2025fc44af73e72596f88fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9adbe11051a6b9935a41fbc1058a4e63a38f15c8f7e3582f1bc415705f2a4e6c"} -2023-12-16T14:42:45.145Z INFO initializing dbft {"height": 9220, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:45.146Z debug frostfs-node/morph.go:229 new block {"index": 9219} -2023-12-16T14:42:45.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9219, "blockHeight": 9219, "took": "5.879682ms"} -2023-12-16T14:42:46.145Z INFO sending PrepareRequest {"height": 9220, "view": 0} -2023-12-16T14:42:46.145Z INFO sending Commit {"height": 9220, "view": 0} -2023-12-16T14:42:46.145Z INFO approving block {"height": 9220, "hash": "5879d2670b565d8081702b7ea78d64a54740abc042b7c85826f7010eac7be4bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94ccd72c75b773623bc19aaffa568e8c9776caeea2025fc44af73e72596f88fe"} -2023-12-16T14:42:46.146Z INFO initializing dbft {"height": 9221, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:46.147Z debug frostfs-node/morph.go:229 new block {"index": 9220} -2023-12-16T14:42:46.995Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9220, "blockHeight": 9220, "took": "4.330797ms"} -2023-12-16T14:42:47.146Z INFO sending PrepareRequest {"height": 9221, "view": 0} -2023-12-16T14:42:47.146Z INFO sending Commit {"height": 9221, "view": 0} -2023-12-16T14:42:47.147Z INFO approving block {"height": 9221, "hash": "a65a38fc7024a7d2324bd2cde0579829336365c7502d557a8be3f8aab6851c36", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5879d2670b565d8081702b7ea78d64a54740abc042b7c85826f7010eac7be4bb"} -2023-12-16T14:42:47.148Z INFO initializing dbft {"height": 9222, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:47.148Z debug frostfs-node/morph.go:229 new block {"index": 9221} -2023-12-16T14:42:47.997Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9221, "blockHeight": 9221, "took": "5.403498ms"} -2023-12-16T14:42:48.148Z INFO sending PrepareRequest {"height": 9222, "view": 0} -2023-12-16T14:42:48.148Z INFO sending Commit {"height": 9222, "view": 0} -2023-12-16T14:42:48.149Z INFO approving block {"height": 9222, "hash": "73ebe1e8ef92ef66c6e49ca81acfcd029e6f3d5a1ff635cc676c60bff0506be9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a65a38fc7024a7d2324bd2cde0579829336365c7502d557a8be3f8aab6851c36"} -2023-12-16T14:42:48.150Z INFO initializing dbft {"height": 9223, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:48.150Z debug frostfs-node/morph.go:229 new block {"index": 9222} -2023-12-16T14:42:48.997Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9222, "blockHeight": 9222, "took": "4.129811ms"} -2023-12-16T14:42:49.150Z INFO sending PrepareRequest {"height": 9223, "view": 0} -2023-12-16T14:42:49.150Z INFO sending Commit {"height": 9223, "view": 0} -2023-12-16T14:42:49.150Z INFO approving block {"height": 9223, "hash": "56dffe96858972c428a373ae4bddbf9f9ed0db07979676336495d6a3e3eddf6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "73ebe1e8ef92ef66c6e49ca81acfcd029e6f3d5a1ff635cc676c60bff0506be9"} -2023-12-16T14:42:49.151Z INFO initializing dbft {"height": 9224, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:49.151Z debug frostfs-node/morph.go:229 new block {"index": 9223} -2023-12-16T14:42:49.996Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9223, "blockHeight": 9223, "took": "3.406819ms"} -2023-12-16T14:42:50.151Z INFO sending PrepareRequest {"height": 9224, "view": 0} -2023-12-16T14:42:50.151Z INFO sending Commit {"height": 9224, "view": 0} -2023-12-16T14:42:50.151Z INFO approving block {"height": 9224, "hash": "098c973a974dfd405806a7a58438a8e5595f089ca73baefad44d31094ff85340", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56dffe96858972c428a373ae4bddbf9f9ed0db07979676336495d6a3e3eddf6b"} -2023-12-16T14:42:50.152Z INFO initializing dbft {"height": 9225, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:50.152Z debug frostfs-node/morph.go:229 new block {"index": 9224} -2023-12-16T14:42:50.998Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9224, "blockHeight": 9224, "took": "4.486431ms"} -2023-12-16T14:42:51.153Z INFO sending PrepareRequest {"height": 9225, "view": 0} -2023-12-16T14:42:51.153Z INFO sending Commit {"height": 9225, "view": 0} -2023-12-16T14:42:51.153Z INFO approving block {"height": 9225, "hash": "3a5e3626ade81de14a8bdc2eccf68c8c0d276abf9ef6e057d5a8f2d873baed29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "098c973a974dfd405806a7a58438a8e5595f089ca73baefad44d31094ff85340"} -2023-12-16T14:42:51.154Z INFO initializing dbft {"height": 9226, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:51.154Z debug frostfs-node/morph.go:229 new block {"index": 9225} -2023-12-16T14:42:51.999Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9225, "blockHeight": 9225, "took": "4.664106ms"} -2023-12-16T14:42:52.154Z INFO sending PrepareRequest {"height": 9226, "view": 0} -2023-12-16T14:42:52.154Z INFO sending Commit {"height": 9226, "view": 0} -2023-12-16T14:42:52.155Z INFO approving block {"height": 9226, "hash": "4612a91ff6d62f6317ff2aed63cfb3edb9f205f354ee74ec007b5b13d7791055", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3a5e3626ade81de14a8bdc2eccf68c8c0d276abf9ef6e057d5a8f2d873baed29"} -2023-12-16T14:42:52.155Z INFO initializing dbft {"height": 9227, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:52.156Z debug frostfs-node/morph.go:229 new block {"index": 9226} -2023-12-16T14:42:53.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9226, "blockHeight": 9226, "took": "8.429985ms"} -2023-12-16T14:42:53.155Z INFO sending PrepareRequest {"height": 9227, "view": 0} -2023-12-16T14:42:53.156Z INFO sending Commit {"height": 9227, "view": 0} -2023-12-16T14:42:53.156Z INFO approving block {"height": 9227, "hash": "94e077d6192713ba3b6115338703f1bd2965c1128574dda6e0ce0ad7315cfc07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4612a91ff6d62f6317ff2aed63cfb3edb9f205f354ee74ec007b5b13d7791055"} -2023-12-16T14:42:53.157Z INFO initializing dbft {"height": 9228, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:53.157Z debug frostfs-node/morph.go:229 new block {"index": 9227} -2023-12-16T14:42:54.001Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9227, "blockHeight": 9227, "took": "4.742078ms"} -2023-12-16T14:42:54.156Z INFO sending PrepareRequest {"height": 9228, "view": 0} -2023-12-16T14:42:54.156Z INFO sending Commit {"height": 9228, "view": 0} -2023-12-16T14:42:54.157Z INFO approving block {"height": 9228, "hash": "eb24adb2ab86eac2730feb45f6d264087b5c54e434095939b4a8aa458c1ea08c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "94e077d6192713ba3b6115338703f1bd2965c1128574dda6e0ce0ad7315cfc07"} -2023-12-16T14:42:54.157Z INFO initializing dbft {"height": 9229, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:54.158Z debug frostfs-node/morph.go:229 new block {"index": 9228} -2023-12-16T14:42:55.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9228, "blockHeight": 9228, "took": "5.479869ms"} -2023-12-16T14:42:55.157Z INFO sending PrepareRequest {"height": 9229, "view": 0} -2023-12-16T14:42:55.157Z INFO sending Commit {"height": 9229, "view": 0} -2023-12-16T14:42:55.157Z INFO approving block {"height": 9229, "hash": "a58e80045d756212400f7ece819b64a08bb16726e9c125a21225c63d2d07a61b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb24adb2ab86eac2730feb45f6d264087b5c54e434095939b4a8aa458c1ea08c"} -2023-12-16T14:42:55.158Z INFO initializing dbft {"height": 9230, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:55.159Z debug frostfs-node/morph.go:229 new block {"index": 9229} -2023-12-16T14:42:56.001Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9229, "blockHeight": 9229, "took": "3.281945ms"} -2023-12-16T14:42:56.159Z INFO sending PrepareRequest {"height": 9230, "view": 0} -2023-12-16T14:42:56.159Z INFO sending Commit {"height": 9230, "view": 0} -2023-12-16T14:42:56.159Z INFO approving block {"height": 9230, "hash": "c56f1d37d619f7050f51c90e8240bdaa71b0467d95cc5dcd334501d2d36934de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a58e80045d756212400f7ece819b64a08bb16726e9c125a21225c63d2d07a61b"} -2023-12-16T14:42:56.160Z INFO initializing dbft {"height": 9231, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:56.161Z debug frostfs-node/morph.go:229 new block {"index": 9230} -2023-12-16T14:42:57.005Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9230, "blockHeight": 9230, "took": "6.425422ms"} -2023-12-16T14:42:57.161Z INFO sending PrepareRequest {"height": 9231, "view": 0} -2023-12-16T14:42:57.161Z INFO sending Commit {"height": 9231, "view": 0} -2023-12-16T14:42:57.161Z INFO approving block {"height": 9231, "hash": "85db8d23e98d2c34279caf963e1877fdaf8bb785bc0657bbe79fe193874941cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c56f1d37d619f7050f51c90e8240bdaa71b0467d95cc5dcd334501d2d36934de"} -2023-12-16T14:42:57.162Z INFO initializing dbft {"height": 9232, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:57.162Z debug frostfs-node/morph.go:229 new block {"index": 9231} -2023-12-16T14:42:58.003Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9231, "blockHeight": 9231, "took": "3.198502ms"} -2023-12-16T14:42:58.162Z INFO sending PrepareRequest {"height": 9232, "view": 0} -2023-12-16T14:42:58.162Z INFO sending Commit {"height": 9232, "view": 0} -2023-12-16T14:42:58.162Z INFO approving block {"height": 9232, "hash": "c55b47359f39cf72e821e2f40ed91d4675ef3cfde2c1b1add40b407097f658e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "85db8d23e98d2c34279caf963e1877fdaf8bb785bc0657bbe79fe193874941cf"} -2023-12-16T14:42:58.163Z INFO initializing dbft {"height": 9233, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:58.164Z debug frostfs-node/morph.go:229 new block {"index": 9232} -2023-12-16T14:42:59.006Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9232, "blockHeight": 9232, "took": "5.869758ms"} -2023-12-16T14:42:59.164Z INFO sending PrepareRequest {"height": 9233, "view": 0} -2023-12-16T14:42:59.164Z INFO sending Commit {"height": 9233, "view": 0} -2023-12-16T14:42:59.164Z INFO approving block {"height": 9233, "hash": "d9e98666a74b90b35385b3b4de64dfbc0842e45177ea17773bbb6a60853032ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c55b47359f39cf72e821e2f40ed91d4675ef3cfde2c1b1add40b407097f658e0"} -2023-12-16T14:42:59.165Z INFO initializing dbft {"height": 9234, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:42:59.165Z debug frostfs-node/morph.go:229 new block {"index": 9233} -2023-12-16T14:43:00.006Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9233, "blockHeight": 9233, "took": "5.805611ms"} -2023-12-16T14:43:00.165Z INFO sending PrepareRequest {"height": 9234, "view": 0} -2023-12-16T14:43:00.165Z INFO sending Commit {"height": 9234, "view": 0} -2023-12-16T14:43:00.166Z INFO approving block {"height": 9234, "hash": "aac290bff8379245130ace2551aedc070a72c425a355a353f42e7433abf7f1c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9e98666a74b90b35385b3b4de64dfbc0842e45177ea17773bbb6a60853032ad"} -2023-12-16T14:43:00.166Z INFO initializing dbft {"height": 9235, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:00.167Z debug frostfs-node/morph.go:229 new block {"index": 9234} -2023-12-16T14:43:01.004Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9234, "blockHeight": 9234, "took": "3.37281ms"} -2023-12-16T14:43:01.167Z INFO sending PrepareRequest {"height": 9235, "view": 0} -2023-12-16T14:43:01.167Z INFO sending Commit {"height": 9235, "view": 0} -2023-12-16T14:43:01.167Z INFO approving block {"height": 9235, "hash": "a1678d2fb2a74201f88192ed793319e6fb91def3ccff6a4962f721ed6369e4c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aac290bff8379245130ace2551aedc070a72c425a355a353f42e7433abf7f1c1"} -2023-12-16T14:43:01.168Z INFO initializing dbft {"height": 9236, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:01.169Z debug frostfs-node/morph.go:229 new block {"index": 9235} -2023-12-16T14:43:02.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9235, "blockHeight": 9235, "took": "8.138235ms"} -2023-12-16T14:43:02.168Z INFO sending PrepareRequest {"height": 9236, "view": 0} -2023-12-16T14:43:02.168Z INFO sending Commit {"height": 9236, "view": 0} -2023-12-16T14:43:02.168Z INFO approving block {"height": 9236, "hash": "d8af5142ab21beeb2563a98033d0088b7ad09d3bdd9719851acf863dcebc04b5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a1678d2fb2a74201f88192ed793319e6fb91def3ccff6a4962f721ed6369e4c2"} -2023-12-16T14:43:02.169Z INFO initializing dbft {"height": 9237, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:02.169Z debug frostfs-node/morph.go:229 new block {"index": 9236} -2023-12-16T14:43:03.006Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9236, "blockHeight": 9236, "took": "4.866664ms"} -2023-12-16T14:43:03.170Z INFO sending PrepareRequest {"height": 9237, "view": 0} -2023-12-16T14:43:03.170Z INFO sending Commit {"height": 9237, "view": 0} -2023-12-16T14:43:03.170Z INFO approving block {"height": 9237, "hash": "24040a0cd840eb0cc8f45d5ee68c875c6394f909d7c3104bf867758ac4a68059", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8af5142ab21beeb2563a98033d0088b7ad09d3bdd9719851acf863dcebc04b5"} -2023-12-16T14:43:03.171Z INFO initializing dbft {"height": 9238, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:03.172Z debug frostfs-node/morph.go:229 new block {"index": 9237} -2023-12-16T14:43:04.008Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9237, "blockHeight": 9237, "took": "5.913207ms"} -2023-12-16T14:43:04.171Z INFO sending PrepareRequest {"height": 9238, "view": 0} -2023-12-16T14:43:04.171Z INFO sending Commit {"height": 9238, "view": 0} -2023-12-16T14:43:04.172Z INFO approving block {"height": 9238, "hash": "b4bb1f1ce5022983a88e1611dbf73ded9dd361199e0cf8522b3ad9391c59f728", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24040a0cd840eb0cc8f45d5ee68c875c6394f909d7c3104bf867758ac4a68059"} -2023-12-16T14:43:04.173Z INFO initializing dbft {"height": 9239, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:04.175Z debug frostfs-node/morph.go:229 new block {"index": 9238} -2023-12-16T14:43:05.009Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9238, "blockHeight": 9238, "took": "6.383595ms"} -2023-12-16T14:43:05.173Z INFO sending PrepareRequest {"height": 9239, "view": 0} -2023-12-16T14:43:05.174Z INFO sending Commit {"height": 9239, "view": 0} -2023-12-16T14:43:05.174Z INFO approving block {"height": 9239, "hash": "4aebb41342180a82e4f389b42217deb399726ae9ced70f18f9dd3ca5331cab0a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4bb1f1ce5022983a88e1611dbf73ded9dd361199e0cf8522b3ad9391c59f728"} -2023-12-16T14:43:05.174Z INFO initializing dbft {"height": 9240, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:05.175Z debug frostfs-node/morph.go:229 new block {"index": 9239} -2023-12-16T14:43:06.010Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9239, "blockHeight": 9239, "took": "6.346143ms"} -2023-12-16T14:43:06.175Z INFO sending PrepareRequest {"height": 9240, "view": 0} -2023-12-16T14:43:06.175Z INFO sending Commit {"height": 9240, "view": 0} -2023-12-16T14:43:06.176Z INFO approving block {"height": 9240, "hash": "d51849e4c06455ce0cb7c0be48051c32ace3e1d1657aec03d7f898d9945e4be5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4aebb41342180a82e4f389b42217deb399726ae9ced70f18f9dd3ca5331cab0a"} -2023-12-16T14:43:06.177Z INFO initializing dbft {"height": 9241, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:06.177Z debug frostfs-node/morph.go:229 new block {"index": 9240} -2023-12-16T14:43:07.010Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9240, "blockHeight": 9240, "took": "5.688554ms"} -2023-12-16T14:43:07.176Z INFO sending PrepareRequest {"height": 9241, "view": 0} -2023-12-16T14:43:07.177Z INFO sending Commit {"height": 9241, "view": 0} -2023-12-16T14:43:07.177Z INFO approving block {"height": 9241, "hash": "2b0258c9a814d94b40932c4b71f50ecddef0c12a55ca52a6b4660a404763abca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d51849e4c06455ce0cb7c0be48051c32ace3e1d1657aec03d7f898d9945e4be5"} -2023-12-16T14:43:07.177Z INFO initializing dbft {"height": 9242, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:07.178Z debug frostfs-node/morph.go:229 new block {"index": 9241} -2023-12-16T14:43:08.012Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9241, "blockHeight": 9241, "took": "7.24784ms"} -2023-12-16T14:43:08.178Z INFO sending PrepareRequest {"height": 9242, "view": 0} -2023-12-16T14:43:08.178Z INFO sending Commit {"height": 9242, "view": 0} -2023-12-16T14:43:08.178Z INFO approving block {"height": 9242, "hash": "385d0a625e1030001f610b98ab5c80521ee28464cf0ce77003705b7f8ab9e0bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b0258c9a814d94b40932c4b71f50ecddef0c12a55ca52a6b4660a404763abca"} -2023-12-16T14:43:08.179Z INFO initializing dbft {"height": 9243, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:08.180Z debug frostfs-node/morph.go:229 new block {"index": 9242} -2023-12-16T14:43:09.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9242, "blockHeight": 9242, "took": "7.746357ms"} -2023-12-16T14:43:09.179Z INFO sending PrepareRequest {"height": 9243, "view": 0} -2023-12-16T14:43:09.179Z INFO sending Commit {"height": 9243, "view": 0} -2023-12-16T14:43:09.180Z INFO approving block {"height": 9243, "hash": "0f4aadb46f092d68720aa41abc72a3fc3bbe3af4fa3d9a1d9f0c733cf8e514be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "385d0a625e1030001f610b98ab5c80521ee28464cf0ce77003705b7f8ab9e0bc"} -2023-12-16T14:43:09.181Z INFO initializing dbft {"height": 9244, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:09.181Z debug frostfs-node/morph.go:229 new block {"index": 9243} -2023-12-16T14:43:10.013Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9243, "blockHeight": 9243, "took": "6.128858ms"} -2023-12-16T14:43:10.181Z INFO sending PrepareRequest {"height": 9244, "view": 0} -2023-12-16T14:43:10.181Z INFO sending Commit {"height": 9244, "view": 0} -2023-12-16T14:43:10.181Z INFO approving block {"height": 9244, "hash": "1059858d2d1306e4f8adf6736586351d4840b5d576d499aad05efeda38b513d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f4aadb46f092d68720aa41abc72a3fc3bbe3af4fa3d9a1d9f0c733cf8e514be"} -2023-12-16T14:43:10.182Z INFO initializing dbft {"height": 9245, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:10.182Z debug frostfs-node/morph.go:229 new block {"index": 9244} -2023-12-16T14:43:11.012Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9244, "blockHeight": 9244, "took": "4.691777ms"} -2023-12-16T14:43:11.182Z INFO sending PrepareRequest {"height": 9245, "view": 0} -2023-12-16T14:43:11.182Z INFO sending Commit {"height": 9245, "view": 0} -2023-12-16T14:43:11.183Z INFO approving block {"height": 9245, "hash": "9fefbae1dabb8e33db5244f6a2a43fa829221268a48c7eab98b3082ab1a129ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1059858d2d1306e4f8adf6736586351d4840b5d576d499aad05efeda38b513d1"} -2023-12-16T14:43:11.184Z INFO initializing dbft {"height": 9246, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:11.185Z debug frostfs-node/morph.go:229 new block {"index": 9245} -2023-12-16T14:43:12.013Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9245, "blockHeight": 9245, "took": "4.710847ms"} -2023-12-16T14:43:12.184Z INFO sending PrepareRequest {"height": 9246, "view": 0} -2023-12-16T14:43:12.184Z INFO sending Commit {"height": 9246, "view": 0} -2023-12-16T14:43:12.184Z INFO approving block {"height": 9246, "hash": "db3236f7ec8da516e2ee856b41fa28f6b1785ae79de0afdbd33925e8f34b115a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fefbae1dabb8e33db5244f6a2a43fa829221268a48c7eab98b3082ab1a129ec"} -2023-12-16T14:43:12.185Z INFO initializing dbft {"height": 9247, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:12.185Z debug frostfs-node/morph.go:229 new block {"index": 9246} -2023-12-16T14:43:13.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9246, "blockHeight": 9246, "took": "5.767447ms"} -2023-12-16T14:43:13.185Z INFO sending PrepareRequest {"height": 9247, "view": 0} -2023-12-16T14:43:13.186Z INFO sending Commit {"height": 9247, "view": 0} -2023-12-16T14:43:13.186Z INFO approving block {"height": 9247, "hash": "93d63d3ab2e9a80a098c3b5e5cf07b2d5db6926b91b3e95e7f755a67bf85765b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db3236f7ec8da516e2ee856b41fa28f6b1785ae79de0afdbd33925e8f34b115a"} -2023-12-16T14:43:13.187Z INFO initializing dbft {"height": 9248, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:13.188Z debug frostfs-node/morph.go:229 new block {"index": 9247} -2023-12-16T14:43:14.015Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9247, "blockHeight": 9247, "took": "6.054896ms"} -2023-12-16T14:43:14.187Z INFO sending PrepareRequest {"height": 9248, "view": 0} -2023-12-16T14:43:14.187Z INFO sending Commit {"height": 9248, "view": 0} -2023-12-16T14:43:14.187Z INFO approving block {"height": 9248, "hash": "e5b00916de112bee36e5068f5b063c753129e10ec47f671a13b9256a87bce12a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93d63d3ab2e9a80a098c3b5e5cf07b2d5db6926b91b3e95e7f755a67bf85765b"} -2023-12-16T14:43:14.188Z INFO initializing dbft {"height": 9249, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:14.189Z debug frostfs-node/morph.go:229 new block {"index": 9248} -2023-12-16T14:43:15.015Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9248, "blockHeight": 9248, "took": "5.545621ms"} -2023-12-16T14:43:15.189Z INFO sending PrepareRequest {"height": 9249, "view": 0} -2023-12-16T14:43:15.189Z INFO sending Commit {"height": 9249, "view": 0} -2023-12-16T14:43:15.189Z INFO approving block {"height": 9249, "hash": "9378e509bb551ee8215460d718c0babb2c38d9f2f63106fa24b83f0a45c94bfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5b00916de112bee36e5068f5b063c753129e10ec47f671a13b9256a87bce12a"} -2023-12-16T14:43:15.190Z INFO initializing dbft {"height": 9250, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:15.190Z debug frostfs-node/morph.go:229 new block {"index": 9249} -2023-12-16T14:43:16.019Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9249, "blockHeight": 9249, "took": "8.146777ms"} -2023-12-16T14:43:16.189Z INFO sending PrepareRequest {"height": 9250, "view": 0} -2023-12-16T14:43:16.190Z INFO sending Commit {"height": 9250, "view": 0} -2023-12-16T14:43:16.190Z INFO approving block {"height": 9250, "hash": "c610ef3cefc507ec41a93d059b8c9919f51f5017c1a5bdab7684b7fba3f30553", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9378e509bb551ee8215460d718c0babb2c38d9f2f63106fa24b83f0a45c94bfe"} -2023-12-16T14:43:16.190Z INFO initializing dbft {"height": 9251, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:16.191Z debug frostfs-node/morph.go:229 new block {"index": 9250} -2023-12-16T14:43:16.193Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:43:16.195Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:43:16.195Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:43:17.014Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9250, "blockHeight": 9250, "took": "3.356147ms"} -2023-12-16T14:43:17.191Z INFO sending PrepareRequest {"height": 9251, "view": 0} -2023-12-16T14:43:17.191Z INFO sending Commit {"height": 9251, "view": 0} -2023-12-16T14:43:17.191Z INFO approving block {"height": 9251, "hash": "410d031558331f3a996dcb4af899fe81428e370ac8c5d28fd8017c987618e1a3", "tx_count": 2, "merkle": "f826d1dd7883a00c83310047313fa7cebf485fd0de34449fcde6b97fcbbdead2", "prev": "c610ef3cefc507ec41a93d059b8c9919f51f5017c1a5bdab7684b7fba3f30553"} -2023-12-16T14:43:17.192Z INFO runtime log {"tx": "dada9aef1c08e54ae58ca70f7f29297dc4f43365b336a29dfb8915c5bf441040", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:43:17.192Z INFO runtime log {"tx": "dada9aef1c08e54ae58ca70f7f29297dc4f43365b336a29dfb8915c5bf441040", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:43:17.193Z INFO initializing dbft {"height": 9252, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:17.194Z debug frostfs-node/morph.go:229 new block {"index": 9251} -2023-12-16T14:43:18.018Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9251, "blockHeight": 9251, "took": "6.5153ms"} -2023-12-16T14:43:18.192Z INFO sending PrepareRequest {"height": 9252, "view": 0} -2023-12-16T14:43:18.193Z INFO sending Commit {"height": 9252, "view": 0} -2023-12-16T14:43:18.193Z INFO approving block {"height": 9252, "hash": "865ff5761dab50058c10df04a54fefbb51a10d66524b710218eee4b16c638f89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "410d031558331f3a996dcb4af899fe81428e370ac8c5d28fd8017c987618e1a3"} -2023-12-16T14:43:18.194Z INFO initializing dbft {"height": 9253, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:18.195Z debug frostfs-node/morph.go:229 new block {"index": 9252} -2023-12-16T14:43:19.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9252, "blockHeight": 9252, "took": "6.011845ms"} -2023-12-16T14:43:19.194Z INFO sending PrepareRequest {"height": 9253, "view": 0} -2023-12-16T14:43:19.194Z INFO sending Commit {"height": 9253, "view": 0} -2023-12-16T14:43:19.194Z INFO approving block {"height": 9253, "hash": "71ac0790ea0d2afec98b72c0e2ec10fe29f4803d72ac5305878272795a3088db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "865ff5761dab50058c10df04a54fefbb51a10d66524b710218eee4b16c638f89"} -2023-12-16T14:43:19.196Z INFO initializing dbft {"height": 9254, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:19.196Z debug frostfs-node/morph.go:229 new block {"index": 9253} -2023-12-16T14:43:20.020Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9253, "blockHeight": 9253, "took": "6.740056ms"} -2023-12-16T14:43:20.196Z INFO sending PrepareRequest {"height": 9254, "view": 0} -2023-12-16T14:43:20.196Z INFO sending Commit {"height": 9254, "view": 0} -2023-12-16T14:43:20.197Z INFO approving block {"height": 9254, "hash": "fe8844860eec4a51af9997ddea107a5c90d8114a1fb4a3c21906d01e07dceb2f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71ac0790ea0d2afec98b72c0e2ec10fe29f4803d72ac5305878272795a3088db"} -2023-12-16T14:43:20.198Z INFO initializing dbft {"height": 9255, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:20.198Z debug frostfs-node/morph.go:229 new block {"index": 9254} -2023-12-16T14:43:21.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9254, "blockHeight": 9254, "took": "4.332086ms"} -2023-12-16T14:43:21.197Z INFO sending PrepareRequest {"height": 9255, "view": 0} -2023-12-16T14:43:21.198Z INFO sending Commit {"height": 9255, "view": 0} -2023-12-16T14:43:21.198Z INFO approving block {"height": 9255, "hash": "07ed1d585b4d193e1e243032e21499fd931a3ad822000ec2f0a11efa85ee32b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe8844860eec4a51af9997ddea107a5c90d8114a1fb4a3c21906d01e07dceb2f"} -2023-12-16T14:43:21.199Z INFO initializing dbft {"height": 9256, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:21.199Z debug frostfs-node/morph.go:229 new block {"index": 9255} -2023-12-16T14:43:22.018Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9255, "blockHeight": 9255, "took": "3.612445ms"} -2023-12-16T14:43:22.199Z INFO sending PrepareRequest {"height": 9256, "view": 0} -2023-12-16T14:43:22.199Z INFO sending Commit {"height": 9256, "view": 0} -2023-12-16T14:43:22.199Z INFO approving block {"height": 9256, "hash": "b48ca12f7d0c28bac194c6c8de599ce86b982c4d29e1bb9247c28af3fac576ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "07ed1d585b4d193e1e243032e21499fd931a3ad822000ec2f0a11efa85ee32b4"} -2023-12-16T14:43:22.200Z INFO initializing dbft {"height": 9257, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:22.200Z debug frostfs-node/morph.go:229 new block {"index": 9256} -2023-12-16T14:43:23.020Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9256, "blockHeight": 9256, "took": "5.253023ms"} -2023-12-16T14:43:23.200Z INFO sending PrepareRequest {"height": 9257, "view": 0} -2023-12-16T14:43:23.200Z INFO sending Commit {"height": 9257, "view": 0} -2023-12-16T14:43:23.201Z INFO approving block {"height": 9257, "hash": "55307f4f9e6b84aaa4cc0633d7797f8fdad8d13273440596a623264546c5ec1e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b48ca12f7d0c28bac194c6c8de599ce86b982c4d29e1bb9247c28af3fac576ea"} -2023-12-16T14:43:23.202Z INFO initializing dbft {"height": 9258, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:23.203Z debug frostfs-node/morph.go:229 new block {"index": 9257} -2023-12-16T14:43:24.019Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9257, "blockHeight": 9257, "took": "3.966685ms"} -2023-12-16T14:43:24.201Z INFO sending PrepareRequest {"height": 9258, "view": 0} -2023-12-16T14:43:24.201Z INFO sending Commit {"height": 9258, "view": 0} -2023-12-16T14:43:24.202Z INFO approving block {"height": 9258, "hash": "28bb0913b6ab5839a19ad761242090fc0e2befd233ca93f3c2dd2d93aebb687c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55307f4f9e6b84aaa4cc0633d7797f8fdad8d13273440596a623264546c5ec1e"} -2023-12-16T14:43:24.203Z INFO initializing dbft {"height": 9259, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:24.203Z debug frostfs-node/morph.go:229 new block {"index": 9258} -2023-12-16T14:43:25.022Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9258, "blockHeight": 9258, "took": "6.138609ms"} -2023-12-16T14:43:25.203Z INFO sending PrepareRequest {"height": 9259, "view": 0} -2023-12-16T14:43:25.203Z INFO sending Commit {"height": 9259, "view": 0} -2023-12-16T14:43:25.203Z INFO approving block {"height": 9259, "hash": "853c05c11ed5c45ceb1b43c523753d61674157ba8bbdec740c043e6079d6deaf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "28bb0913b6ab5839a19ad761242090fc0e2befd233ca93f3c2dd2d93aebb687c"} -2023-12-16T14:43:25.204Z INFO initializing dbft {"height": 9260, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:25.204Z debug frostfs-node/morph.go:229 new block {"index": 9259} -2023-12-16T14:43:26.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9259, "blockHeight": 9259, "took": "6.358335ms"} -2023-12-16T14:43:26.204Z INFO sending PrepareRequest {"height": 9260, "view": 0} -2023-12-16T14:43:26.204Z INFO sending Commit {"height": 9260, "view": 0} -2023-12-16T14:43:26.204Z INFO approving block {"height": 9260, "hash": "d81d9257d380540b0a46b722fb99be4e6567924452661deb8c8372eac3e1c49d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "853c05c11ed5c45ceb1b43c523753d61674157ba8bbdec740c043e6079d6deaf"} -2023-12-16T14:43:26.206Z INFO initializing dbft {"height": 9261, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:26.206Z debug frostfs-node/morph.go:229 new block {"index": 9260} -2023-12-16T14:43:27.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9260, "blockHeight": 9260, "took": "5.934333ms"} -2023-12-16T14:43:27.206Z INFO sending PrepareRequest {"height": 9261, "view": 0} -2023-12-16T14:43:27.206Z INFO sending Commit {"height": 9261, "view": 0} -2023-12-16T14:43:27.206Z INFO approving block {"height": 9261, "hash": "6eee2e4037cb640749f24a6ef253478675cfa9f40e15a779e465adec789bc2a7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d81d9257d380540b0a46b722fb99be4e6567924452661deb8c8372eac3e1c49d"} -2023-12-16T14:43:27.207Z INFO initializing dbft {"height": 9262, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:27.207Z debug frostfs-node/morph.go:229 new block {"index": 9261} -2023-12-16T14:43:28.023Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9261, "blockHeight": 9261, "took": "4.42393ms"} -2023-12-16T14:43:28.207Z INFO sending PrepareRequest {"height": 9262, "view": 0} -2023-12-16T14:43:28.207Z INFO sending Commit {"height": 9262, "view": 0} -2023-12-16T14:43:28.207Z INFO approving block {"height": 9262, "hash": "fec7238c4633a74c2ca3a7fea6ab9a99ab66a95fd7bbdd45ddcdc5aa86496529", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6eee2e4037cb640749f24a6ef253478675cfa9f40e15a779e465adec789bc2a7"} -2023-12-16T14:43:28.208Z INFO initializing dbft {"height": 9263, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:28.208Z debug frostfs-node/morph.go:229 new block {"index": 9262} -2023-12-16T14:43:29.025Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9262, "blockHeight": 9262, "took": "6.274373ms"} -2023-12-16T14:43:29.208Z INFO sending PrepareRequest {"height": 9263, "view": 0} -2023-12-16T14:43:29.208Z INFO sending Commit {"height": 9263, "view": 0} -2023-12-16T14:43:29.209Z INFO approving block {"height": 9263, "hash": "9012ee2e2c48c9d5f2fdab1b1b0ee05d58cc212ebdf17b7dcc15973008f55d15", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fec7238c4633a74c2ca3a7fea6ab9a99ab66a95fd7bbdd45ddcdc5aa86496529"} -2023-12-16T14:43:29.210Z INFO initializing dbft {"height": 9264, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:29.210Z debug frostfs-node/morph.go:229 new block {"index": 9263} -2023-12-16T14:43:30.024Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9263, "blockHeight": 9263, "took": "5.266538ms"} -2023-12-16T14:43:30.210Z INFO sending PrepareRequest {"height": 9264, "view": 0} -2023-12-16T14:43:30.210Z INFO sending Commit {"height": 9264, "view": 0} -2023-12-16T14:43:30.210Z INFO approving block {"height": 9264, "hash": "37092c122a9e524f13e9b5b7a7aaebe089ca70b77904de923f719981f9c94ee5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9012ee2e2c48c9d5f2fdab1b1b0ee05d58cc212ebdf17b7dcc15973008f55d15"} -2023-12-16T14:43:30.211Z INFO initializing dbft {"height": 9265, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:30.212Z debug frostfs-node/morph.go:229 new block {"index": 9264} -2023-12-16T14:43:31.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9264, "blockHeight": 9264, "took": "5.989185ms"} -2023-12-16T14:43:31.212Z INFO sending PrepareRequest {"height": 9265, "view": 0} -2023-12-16T14:43:31.212Z INFO sending Commit {"height": 9265, "view": 0} -2023-12-16T14:43:31.212Z INFO approving block {"height": 9265, "hash": "df7367076140ff9b12db36479fa8778d5ff4084be3f8c62da50c23c9772034d6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37092c122a9e524f13e9b5b7a7aaebe089ca70b77904de923f719981f9c94ee5"} -2023-12-16T14:43:31.213Z INFO initializing dbft {"height": 9266, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:31.214Z debug frostfs-node/morph.go:229 new block {"index": 9265} -2023-12-16T14:43:32.027Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9265, "blockHeight": 9265, "took": "6.271272ms"} -2023-12-16T14:43:32.213Z INFO sending PrepareRequest {"height": 9266, "view": 0} -2023-12-16T14:43:32.214Z INFO sending Commit {"height": 9266, "view": 0} -2023-12-16T14:43:32.214Z INFO approving block {"height": 9266, "hash": "0ebdbab6ae85d0ced0549c08a9deb3b9f8f83d8fa3da5123bfa69367c2b6c9c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df7367076140ff9b12db36479fa8778d5ff4084be3f8c62da50c23c9772034d6"} -2023-12-16T14:43:32.215Z INFO initializing dbft {"height": 9267, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:32.216Z debug frostfs-node/morph.go:229 new block {"index": 9266} -2023-12-16T14:43:33.025Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9266, "blockHeight": 9266, "took": "3.703428ms"} -2023-12-16T14:43:33.215Z INFO sending PrepareRequest {"height": 9267, "view": 0} -2023-12-16T14:43:33.215Z INFO sending Commit {"height": 9267, "view": 0} -2023-12-16T14:43:33.215Z INFO approving block {"height": 9267, "hash": "2636c6fd25c4b424c45239d40910c50fb93283a5c064c6dfe0ae343942d6f43f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ebdbab6ae85d0ced0549c08a9deb3b9f8f83d8fa3da5123bfa69367c2b6c9c6"} -2023-12-16T14:43:33.216Z INFO initializing dbft {"height": 9268, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:33.217Z debug frostfs-node/morph.go:229 new block {"index": 9267} -2023-12-16T14:43:34.025Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9267, "blockHeight": 9267, "took": "3.839422ms"} -2023-12-16T14:43:34.217Z INFO sending PrepareRequest {"height": 9268, "view": 0} -2023-12-16T14:43:34.217Z INFO sending Commit {"height": 9268, "view": 0} -2023-12-16T14:43:34.217Z INFO approving block {"height": 9268, "hash": "112bb78bd9c93446e9421ee71eebca01e4a44fed7cf44e3eb9a9619bd2e8a480", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2636c6fd25c4b424c45239d40910c50fb93283a5c064c6dfe0ae343942d6f43f"} -2023-12-16T14:43:34.219Z INFO initializing dbft {"height": 9269, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:34.219Z debug frostfs-node/morph.go:229 new block {"index": 9268} -2023-12-16T14:43:35.026Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9268, "blockHeight": 9268, "took": "3.655447ms"} -2023-12-16T14:43:35.218Z INFO sending PrepareRequest {"height": 9269, "view": 0} -2023-12-16T14:43:35.219Z INFO sending Commit {"height": 9269, "view": 0} -2023-12-16T14:43:35.219Z INFO approving block {"height": 9269, "hash": "e14e5707edfd1e91b15b1c11f539ac6f0d773570b6e1051dcb2bce2a95893751", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "112bb78bd9c93446e9421ee71eebca01e4a44fed7cf44e3eb9a9619bd2e8a480"} -2023-12-16T14:43:35.220Z INFO initializing dbft {"height": 9270, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:35.221Z debug frostfs-node/morph.go:229 new block {"index": 9269} -2023-12-16T14:43:36.029Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9269, "blockHeight": 9269, "took": "5.572953ms"} -2023-12-16T14:43:36.220Z INFO sending PrepareRequest {"height": 9270, "view": 0} -2023-12-16T14:43:36.220Z INFO sending Commit {"height": 9270, "view": 0} -2023-12-16T14:43:36.221Z INFO approving block {"height": 9270, "hash": "1d2c55d02f51032f84182903d1a0fbe8e2d7d1a0a3076a202d420cba7aec8ce3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e14e5707edfd1e91b15b1c11f539ac6f0d773570b6e1051dcb2bce2a95893751"} -2023-12-16T14:43:36.222Z INFO initializing dbft {"height": 9271, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:36.223Z debug frostfs-node/morph.go:229 new block {"index": 9270} -2023-12-16T14:43:37.031Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9270, "blockHeight": 9270, "took": "6.855041ms"} -2023-12-16T14:43:37.222Z INFO sending PrepareRequest {"height": 9271, "view": 0} -2023-12-16T14:43:37.222Z INFO sending Commit {"height": 9271, "view": 0} -2023-12-16T14:43:37.222Z INFO approving block {"height": 9271, "hash": "f1a741cb0221d1b7b811cd837431809703a5fec75dd7d41afebbae28c348ccc6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1d2c55d02f51032f84182903d1a0fbe8e2d7d1a0a3076a202d420cba7aec8ce3"} -2023-12-16T14:43:37.223Z INFO initializing dbft {"height": 9272, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:37.224Z debug frostfs-node/morph.go:229 new block {"index": 9271} -2023-12-16T14:43:38.030Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9271, "blockHeight": 9271, "took": "5.546751ms"} -2023-12-16T14:43:38.224Z INFO sending PrepareRequest {"height": 9272, "view": 0} -2023-12-16T14:43:38.224Z INFO sending Commit {"height": 9272, "view": 0} -2023-12-16T14:43:38.224Z INFO approving block {"height": 9272, "hash": "b7cb070a08c2a42622827e6b9e83e68b53774f4bab15b420fbf9ddcbc3f53e8d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1a741cb0221d1b7b811cd837431809703a5fec75dd7d41afebbae28c348ccc6"} -2023-12-16T14:43:38.225Z INFO initializing dbft {"height": 9273, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:38.225Z debug frostfs-node/morph.go:229 new block {"index": 9272} -2023-12-16T14:43:39.032Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9272, "blockHeight": 9272, "took": "6.798878ms"} -2023-12-16T14:43:39.224Z INFO sending PrepareRequest {"height": 9273, "view": 0} -2023-12-16T14:43:39.225Z INFO sending Commit {"height": 9273, "view": 0} -2023-12-16T14:43:39.225Z INFO approving block {"height": 9273, "hash": "f1f6b83f73ece6d6dab8374c418c72efd4c4a7ca0b86bd8b751da609c67e6965", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7cb070a08c2a42622827e6b9e83e68b53774f4bab15b420fbf9ddcbc3f53e8d"} -2023-12-16T14:43:39.226Z INFO initializing dbft {"height": 9274, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:39.227Z debug frostfs-node/morph.go:229 new block {"index": 9273} -2023-12-16T14:43:40.033Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9273, "blockHeight": 9273, "took": "7.096266ms"} -2023-12-16T14:43:40.226Z INFO sending PrepareRequest {"height": 9274, "view": 0} -2023-12-16T14:43:40.226Z INFO sending Commit {"height": 9274, "view": 0} -2023-12-16T14:43:40.227Z INFO approving block {"height": 9274, "hash": "48391f33e98e6baee40c2609cc808041bb31c344dd205f13261b1962366a5a22", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1f6b83f73ece6d6dab8374c418c72efd4c4a7ca0b86bd8b751da609c67e6965"} -2023-12-16T14:43:40.227Z INFO initializing dbft {"height": 9275, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:40.228Z debug frostfs-node/morph.go:229 new block {"index": 9274} -2023-12-16T14:43:41.031Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9274, "blockHeight": 9274, "took": "4.109169ms"} -2023-12-16T14:43:41.227Z INFO sending PrepareRequest {"height": 9275, "view": 0} -2023-12-16T14:43:41.227Z INFO sending Commit {"height": 9275, "view": 0} -2023-12-16T14:43:41.227Z INFO approving block {"height": 9275, "hash": "9d53ef07f421b087dc5c2adbdb7145d7754e4974b6552264dbbafd6311435ba6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48391f33e98e6baee40c2609cc808041bb31c344dd205f13261b1962366a5a22"} -2023-12-16T14:43:41.228Z INFO initializing dbft {"height": 9276, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:41.229Z debug frostfs-node/morph.go:229 new block {"index": 9275} -2023-12-16T14:43:42.032Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9275, "blockHeight": 9275, "took": "4.914353ms"} -2023-12-16T14:43:42.229Z INFO sending PrepareRequest {"height": 9276, "view": 0} -2023-12-16T14:43:42.229Z INFO sending Commit {"height": 9276, "view": 0} -2023-12-16T14:43:42.229Z INFO approving block {"height": 9276, "hash": "15bdc10e8ce4628dabf3c0dbcba48ace38b40f1341fb2d2e7c4b6b884357b5f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d53ef07f421b087dc5c2adbdb7145d7754e4974b6552264dbbafd6311435ba6"} -2023-12-16T14:43:42.230Z INFO initializing dbft {"height": 9277, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:42.231Z debug frostfs-node/morph.go:229 new block {"index": 9276} -2023-12-16T14:43:43.032Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9276, "blockHeight": 9276, "took": "4.339884ms"} -2023-12-16T14:43:43.230Z INFO sending PrepareRequest {"height": 9277, "view": 0} -2023-12-16T14:43:43.230Z INFO sending Commit {"height": 9277, "view": 0} -2023-12-16T14:43:43.231Z INFO approving block {"height": 9277, "hash": "6ea447f991766ca6730f8ae11b5e461ccbf0f3e630115e9e9af76b00a5ff5fc6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15bdc10e8ce4628dabf3c0dbcba48ace38b40f1341fb2d2e7c4b6b884357b5f4"} -2023-12-16T14:43:43.231Z INFO initializing dbft {"height": 9278, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:43.232Z debug frostfs-node/morph.go:229 new block {"index": 9277} -2023-12-16T14:43:43.235Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 39, "iteration": 1, "error": "no data for 0 iteration in 39 epoch for consumers's trusts"} -2023-12-16T14:43:43.236Z info settlement/calls.go:61 start basic income collection {"epoch": 39} -2023-12-16T14:43:44.031Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9277, "blockHeight": 9277, "took": "3.227497ms"} -2023-12-16T14:43:44.231Z INFO sending PrepareRequest {"height": 9278, "view": 0} -2023-12-16T14:43:44.232Z INFO sending Commit {"height": 9278, "view": 0} -2023-12-16T14:43:44.232Z INFO approving block {"height": 9278, "hash": "e5ea706e48be5d7d9cf4843da23f1aef09a1bd5dbb3437c37074200bc73e9cb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ea447f991766ca6730f8ae11b5e461ccbf0f3e630115e9e9af76b00a5ff5fc6"} -2023-12-16T14:43:44.233Z INFO initializing dbft {"height": 9279, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:44.234Z debug frostfs-node/morph.go:229 new block {"index": 9278} -2023-12-16T14:43:45.034Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9278, "blockHeight": 9278, "took": "5.436628ms"} -2023-12-16T14:43:45.233Z INFO sending PrepareRequest {"height": 9279, "view": 0} -2023-12-16T14:43:45.233Z INFO sending Commit {"height": 9279, "view": 0} -2023-12-16T14:43:45.234Z INFO approving block {"height": 9279, "hash": "a4b6b862cafd41544d549f6d6483a4f36d8a89392baea89f52cb1d579238f0aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5ea706e48be5d7d9cf4843da23f1aef09a1bd5dbb3437c37074200bc73e9cb4"} -2023-12-16T14:43:45.234Z INFO initializing dbft {"height": 9280, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:45.235Z debug frostfs-node/morph.go:229 new block {"index": 9279} -2023-12-16T14:43:46.035Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9279, "blockHeight": 9279, "took": "6.37866ms"} -2023-12-16T14:43:46.235Z INFO sending PrepareRequest {"height": 9280, "view": 0} -2023-12-16T14:43:46.235Z INFO sending Commit {"height": 9280, "view": 0} -2023-12-16T14:43:46.235Z INFO approving block {"height": 9280, "hash": "7a348708e2284d046194d5c64222c6f24847d3b354c484ac99d9551fcade09ec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4b6b862cafd41544d549f6d6483a4f36d8a89392baea89f52cb1d579238f0aa"} -2023-12-16T14:43:46.236Z INFO initializing dbft {"height": 9281, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:46.237Z debug frostfs-node/morph.go:229 new block {"index": 9280} -2023-12-16T14:43:47.041Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9280, "blockHeight": 9280, "took": "11.135765ms"} -2023-12-16T14:43:47.236Z INFO sending PrepareRequest {"height": 9281, "view": 0} -2023-12-16T14:43:47.237Z INFO sending Commit {"height": 9281, "view": 0} -2023-12-16T14:43:47.237Z INFO approving block {"height": 9281, "hash": "c7f0581693d2f73bea7fd5e975b259449b57bb601463d8d0d4a0b088041adeaf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a348708e2284d046194d5c64222c6f24847d3b354c484ac99d9551fcade09ec"} -2023-12-16T14:43:47.237Z INFO initializing dbft {"height": 9282, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:47.238Z debug frostfs-node/morph.go:229 new block {"index": 9281} -2023-12-16T14:43:48.039Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9281, "blockHeight": 9281, "took": "8.940693ms"} -2023-12-16T14:43:48.238Z INFO sending PrepareRequest {"height": 9282, "view": 0} -2023-12-16T14:43:48.238Z INFO sending Commit {"height": 9282, "view": 0} -2023-12-16T14:43:48.238Z INFO approving block {"height": 9282, "hash": "18a846c321280ba1e49e1165518a8396b6aa21b8fa54693610acfe9c0f83ad38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7f0581693d2f73bea7fd5e975b259449b57bb601463d8d0d4a0b088041adeaf"} -2023-12-16T14:43:48.239Z INFO initializing dbft {"height": 9283, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:48.240Z debug frostfs-node/morph.go:229 new block {"index": 9282} -2023-12-16T14:43:49.037Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9282, "blockHeight": 9282, "took": "6.089158ms"} -2023-12-16T14:43:49.240Z INFO sending PrepareRequest {"height": 9283, "view": 0} -2023-12-16T14:43:49.240Z INFO sending Commit {"height": 9283, "view": 0} -2023-12-16T14:43:49.241Z INFO approving block {"height": 9283, "hash": "f30d414088a4ca2db7efa2f1b36ac8d1bb10d12b88f0e526730b81ad7d091a4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18a846c321280ba1e49e1165518a8396b6aa21b8fa54693610acfe9c0f83ad38"} -2023-12-16T14:43:49.242Z INFO initializing dbft {"height": 9284, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:49.243Z debug frostfs-node/morph.go:229 new block {"index": 9283} -2023-12-16T14:43:50.041Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9283, "blockHeight": 9283, "took": "9.361422ms"} -2023-12-16T14:43:50.242Z INFO sending PrepareRequest {"height": 9284, "view": 0} -2023-12-16T14:43:50.243Z INFO sending Commit {"height": 9284, "view": 0} -2023-12-16T14:43:50.243Z INFO approving block {"height": 9284, "hash": "1b27b9d836b3ca57ed895360a037c5755ad5079bee02798e27751efcc58e92ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f30d414088a4ca2db7efa2f1b36ac8d1bb10d12b88f0e526730b81ad7d091a4a"} -2023-12-16T14:43:50.244Z INFO initializing dbft {"height": 9285, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:50.245Z debug frostfs-node/morph.go:229 new block {"index": 9284} -2023-12-16T14:43:51.038Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9284, "blockHeight": 9284, "took": "6.474249ms"} -2023-12-16T14:43:51.244Z INFO sending PrepareRequest {"height": 9285, "view": 0} -2023-12-16T14:43:51.245Z INFO sending Commit {"height": 9285, "view": 0} -2023-12-16T14:43:51.245Z INFO approving block {"height": 9285, "hash": "d607f4ff735b658a7a25e813c8b5e481f0106634cc28806c95992d6f07b67f5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1b27b9d836b3ca57ed895360a037c5755ad5079bee02798e27751efcc58e92ee"} -2023-12-16T14:43:51.245Z INFO initializing dbft {"height": 9286, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:51.246Z debug frostfs-node/morph.go:229 new block {"index": 9285} -2023-12-16T14:43:52.038Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9285, "blockHeight": 9285, "took": "5.104683ms"} -2023-12-16T14:43:52.246Z INFO sending PrepareRequest {"height": 9286, "view": 0} -2023-12-16T14:43:52.246Z INFO sending Commit {"height": 9286, "view": 0} -2023-12-16T14:43:52.247Z INFO approving block {"height": 9286, "hash": "63c20d8cae5fd2115b30fbea6e70d2643ca2f4c2b0159998d7e492176b4ca6fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d607f4ff735b658a7a25e813c8b5e481f0106634cc28806c95992d6f07b67f5c"} -2023-12-16T14:43:52.248Z INFO initializing dbft {"height": 9287, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:52.249Z debug frostfs-node/morph.go:229 new block {"index": 9286} -2023-12-16T14:43:53.038Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9286, "blockHeight": 9286, "took": "3.719438ms"} -2023-12-16T14:43:53.248Z INFO sending PrepareRequest {"height": 9287, "view": 0} -2023-12-16T14:43:53.248Z INFO sending Commit {"height": 9287, "view": 0} -2023-12-16T14:43:53.249Z INFO approving block {"height": 9287, "hash": "5b5fdbeb200e933586b5745a4ddb33bca2d1dbf5476aaf33fef9bc2ebb6d9ac2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63c20d8cae5fd2115b30fbea6e70d2643ca2f4c2b0159998d7e492176b4ca6fc"} -2023-12-16T14:43:53.250Z INFO initializing dbft {"height": 9288, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:53.250Z debug frostfs-node/morph.go:229 new block {"index": 9287} -2023-12-16T14:43:54.040Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9287, "blockHeight": 9287, "took": "5.535091ms"} -2023-12-16T14:43:54.249Z INFO sending PrepareRequest {"height": 9288, "view": 0} -2023-12-16T14:43:54.250Z INFO sending Commit {"height": 9288, "view": 0} -2023-12-16T14:43:54.250Z INFO approving block {"height": 9288, "hash": "a57bde3d020d5d1865acb60f9b44c9c4065266e5728808109f7307f45b85e137", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b5fdbeb200e933586b5745a4ddb33bca2d1dbf5476aaf33fef9bc2ebb6d9ac2"} -2023-12-16T14:43:54.251Z INFO initializing dbft {"height": 9289, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:54.251Z debug frostfs-node/morph.go:229 new block {"index": 9288} -2023-12-16T14:43:55.040Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9288, "blockHeight": 9288, "took": "4.690867ms"} -2023-12-16T14:43:55.251Z INFO sending PrepareRequest {"height": 9289, "view": 0} -2023-12-16T14:43:55.251Z INFO sending Commit {"height": 9289, "view": 0} -2023-12-16T14:43:55.251Z INFO approving block {"height": 9289, "hash": "c3d686e735ffa97b9c3560140c08be9a361ddfdd4696c74c6639a17119cb0685", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a57bde3d020d5d1865acb60f9b44c9c4065266e5728808109f7307f45b85e137"} -2023-12-16T14:43:55.252Z INFO initializing dbft {"height": 9290, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:55.253Z debug frostfs-node/morph.go:229 new block {"index": 9289} -2023-12-16T14:43:56.043Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9289, "blockHeight": 9289, "took": "6.655734ms"} -2023-12-16T14:43:56.253Z INFO sending PrepareRequest {"height": 9290, "view": 0} -2023-12-16T14:43:56.253Z INFO sending Commit {"height": 9290, "view": 0} -2023-12-16T14:43:56.254Z INFO approving block {"height": 9290, "hash": "b5c17c227d42c3279815530c81052d389b888d43b11d11cf9aec07a0fd6f98e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3d686e735ffa97b9c3560140c08be9a361ddfdd4696c74c6639a17119cb0685"} -2023-12-16T14:43:56.255Z INFO initializing dbft {"height": 9291, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:56.255Z debug frostfs-node/morph.go:229 new block {"index": 9290} -2023-12-16T14:43:57.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9290, "blockHeight": 9290, "took": "7.611602ms"} -2023-12-16T14:43:57.254Z INFO sending PrepareRequest {"height": 9291, "view": 0} -2023-12-16T14:43:57.254Z INFO sending Commit {"height": 9291, "view": 0} -2023-12-16T14:43:57.255Z INFO approving block {"height": 9291, "hash": "4eb3cf3e9bd2fab948a735a0e0c284395d080375e02c5f42130ef3b8b491cf07", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5c17c227d42c3279815530c81052d389b888d43b11d11cf9aec07a0fd6f98e7"} -2023-12-16T14:43:57.256Z INFO initializing dbft {"height": 9292, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:57.256Z debug frostfs-node/morph.go:229 new block {"index": 9291} -2023-12-16T14:43:58.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9291, "blockHeight": 9291, "took": "6.566421ms"} -2023-12-16T14:43:58.256Z INFO sending PrepareRequest {"height": 9292, "view": 0} -2023-12-16T14:43:58.257Z INFO sending Commit {"height": 9292, "view": 0} -2023-12-16T14:43:58.257Z INFO approving block {"height": 9292, "hash": "95bb00c49d6a6710afa961496eae9e19f1bc6155557d033151b60db2e2d8cde1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4eb3cf3e9bd2fab948a735a0e0c284395d080375e02c5f42130ef3b8b491cf07"} -2023-12-16T14:43:58.258Z INFO initializing dbft {"height": 9293, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:58.259Z debug frostfs-node/morph.go:229 new block {"index": 9292} -2023-12-16T14:43:59.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9292, "blockHeight": 9292, "took": "5.82832ms"} -2023-12-16T14:43:59.258Z INFO sending PrepareRequest {"height": 9293, "view": 0} -2023-12-16T14:43:59.258Z INFO sending Commit {"height": 9293, "view": 0} -2023-12-16T14:43:59.259Z INFO approving block {"height": 9293, "hash": "208ca82a5ac07f80a4b5838780daa7e829db49caf495530d0aa54949811b0984", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95bb00c49d6a6710afa961496eae9e19f1bc6155557d033151b60db2e2d8cde1"} -2023-12-16T14:43:59.260Z INFO initializing dbft {"height": 9294, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:43:59.261Z debug frostfs-node/morph.go:229 new block {"index": 9293} -2023-12-16T14:44:00.043Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9293, "blockHeight": 9293, "took": "3.549573ms"} -2023-12-16T14:44:00.259Z INFO sending PrepareRequest {"height": 9294, "view": 0} -2023-12-16T14:44:00.259Z INFO sending Commit {"height": 9294, "view": 0} -2023-12-16T14:44:00.260Z INFO approving block {"height": 9294, "hash": "4bb9dc44d8fdede86b9749b876bcad56854b6163a66db60e601d30444866e58a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "208ca82a5ac07f80a4b5838780daa7e829db49caf495530d0aa54949811b0984"} -2023-12-16T14:44:00.261Z INFO initializing dbft {"height": 9295, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:00.261Z debug frostfs-node/morph.go:229 new block {"index": 9294} -2023-12-16T14:44:01.049Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9294, "blockHeight": 9294, "took": "8.589101ms"} -2023-12-16T14:44:01.260Z INFO sending PrepareRequest {"height": 9295, "view": 0} -2023-12-16T14:44:01.261Z INFO sending Commit {"height": 9295, "view": 0} -2023-12-16T14:44:01.261Z INFO approving block {"height": 9295, "hash": "4a08dacd665bfcafb0319146aad2a3804963eddd46e086c3b4ab03ecd7e37f79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4bb9dc44d8fdede86b9749b876bcad56854b6163a66db60e601d30444866e58a"} -2023-12-16T14:44:01.262Z INFO initializing dbft {"height": 9296, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:01.263Z debug frostfs-node/morph.go:229 new block {"index": 9295} -2023-12-16T14:44:02.045Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9295, "blockHeight": 9295, "took": "4.385368ms"} -2023-12-16T14:44:02.262Z INFO sending PrepareRequest {"height": 9296, "view": 0} -2023-12-16T14:44:02.263Z INFO sending Commit {"height": 9296, "view": 0} -2023-12-16T14:44:02.263Z INFO approving block {"height": 9296, "hash": "1df947fc0b7e4a9f55b604bedbf6fb213a4ef74778a15fe91b3f1f206ce9ab3f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a08dacd665bfcafb0319146aad2a3804963eddd46e086c3b4ab03ecd7e37f79"} -2023-12-16T14:44:02.264Z INFO initializing dbft {"height": 9297, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:02.265Z debug frostfs-node/morph.go:229 new block {"index": 9296} -2023-12-16T14:44:03.046Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9296, "blockHeight": 9296, "took": "4.422719ms"} -2023-12-16T14:44:03.264Z INFO sending PrepareRequest {"height": 9297, "view": 0} -2023-12-16T14:44:03.264Z INFO sending Commit {"height": 9297, "view": 0} -2023-12-16T14:44:03.265Z INFO approving block {"height": 9297, "hash": "4c83cb80794bf5d70e6db82713ffe0ca787ba4266f625ed9f7cd43148247b718", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1df947fc0b7e4a9f55b604bedbf6fb213a4ef74778a15fe91b3f1f206ce9ab3f"} -2023-12-16T14:44:03.267Z INFO initializing dbft {"height": 9298, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:03.268Z debug frostfs-node/morph.go:229 new block {"index": 9297} -2023-12-16T14:44:04.047Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9297, "blockHeight": 9297, "took": "4.174972ms"} -2023-12-16T14:44:04.266Z INFO sending PrepareRequest {"height": 9298, "view": 0} -2023-12-16T14:44:04.266Z INFO sending Commit {"height": 9298, "view": 0} -2023-12-16T14:44:04.266Z INFO approving block {"height": 9298, "hash": "0a1c95d2cfe7b101646333185849f4376d84ea0c3bda37f07083c66e15e25c86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c83cb80794bf5d70e6db82713ffe0ca787ba4266f625ed9f7cd43148247b718"} -2023-12-16T14:44:04.267Z INFO initializing dbft {"height": 9299, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:04.268Z debug frostfs-node/morph.go:229 new block {"index": 9298} -2023-12-16T14:44:05.047Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9298, "blockHeight": 9298, "took": "3.54264ms"} -2023-12-16T14:44:05.268Z INFO sending PrepareRequest {"height": 9299, "view": 0} -2023-12-16T14:44:05.268Z INFO sending Commit {"height": 9299, "view": 0} -2023-12-16T14:44:05.268Z INFO approving block {"height": 9299, "hash": "83ef0ca67ea383412869935a7f3e73e0a083cac37a272fabcc059fc5d97fd182", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a1c95d2cfe7b101646333185849f4376d84ea0c3bda37f07083c66e15e25c86"} -2023-12-16T14:44:05.269Z INFO initializing dbft {"height": 9300, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:05.269Z debug frostfs-node/morph.go:229 new block {"index": 9299} -2023-12-16T14:44:06.049Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9299, "blockHeight": 9299, "took": "4.243314ms"} -2023-12-16T14:44:06.269Z INFO sending PrepareRequest {"height": 9300, "view": 0} -2023-12-16T14:44:06.269Z INFO sending Commit {"height": 9300, "view": 0} -2023-12-16T14:44:06.270Z INFO approving block {"height": 9300, "hash": "3cd3dab406820018d3fbedfe5bdcd740032cbb799eb2d2e6e79c4c6665315e6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83ef0ca67ea383412869935a7f3e73e0a083cac37a272fabcc059fc5d97fd182"} -2023-12-16T14:44:06.270Z INFO initializing dbft {"height": 9301, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:06.271Z debug frostfs-node/morph.go:229 new block {"index": 9300} -2023-12-16T14:44:06.272Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:44:06.275Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:44:06.275Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:44:07.051Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9300, "blockHeight": 9300, "took": "5.673716ms"} -2023-12-16T14:44:07.270Z INFO sending PrepareRequest {"height": 9301, "view": 0} -2023-12-16T14:44:07.271Z INFO sending Commit {"height": 9301, "view": 0} -2023-12-16T14:44:07.271Z INFO approving block {"height": 9301, "hash": "ad639488f8e1ce7f9330303347b8270ae003a5fd48e41db89c61bced8bded064", "tx_count": 2, "merkle": "b7d0acee7621bba788b41f9018b142d97374ea15e36aa2b032e7988ebabae920", "prev": "3cd3dab406820018d3fbedfe5bdcd740032cbb799eb2d2e6e79c4c6665315e6a"} -2023-12-16T14:44:07.271Z INFO runtime log {"tx": "591ddc6a073d812c7ac4d846654e678bddcbc9fa5c59bcb3b18a03c3dbe2e4fe", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:44:07.272Z INFO runtime log {"tx": "591ddc6a073d812c7ac4d846654e678bddcbc9fa5c59bcb3b18a03c3dbe2e4fe", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:44:07.272Z INFO initializing dbft {"height": 9302, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:07.273Z debug frostfs-node/morph.go:229 new block {"index": 9301} -2023-12-16T14:44:08.051Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 9301, "blockHeight": 9301, "took": "5.356646ms"} -2023-12-16T14:44:08.272Z INFO sending PrepareRequest {"height": 9302, "view": 0} -2023-12-16T14:44:08.272Z INFO sending Commit {"height": 9302, "view": 0} -2023-12-16T14:44:08.272Z INFO approving block {"height": 9302, "hash": "0dc689f83653ee74d07bbc2a22762b250a20799516257cd8805c9006f8ae361b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad639488f8e1ce7f9330303347b8270ae003a5fd48e41db89c61bced8bded064"} -2023-12-16T14:44:08.273Z INFO initializing dbft {"height": 9303, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:08.273Z debug frostfs-node/morph.go:229 new block {"index": 9302} -2023-12-16T14:44:09.051Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9302, "blockHeight": 9302, "took": "4.608675ms"} -2023-12-16T14:44:09.273Z INFO sending PrepareRequest {"height": 9303, "view": 0} -2023-12-16T14:44:09.274Z INFO sending Commit {"height": 9303, "view": 0} -2023-12-16T14:44:09.274Z INFO approving block {"height": 9303, "hash": "59c707f0613a8d9330cbbaa61c88a1211dff3717cb815278353aa1ff208978c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0dc689f83653ee74d07bbc2a22762b250a20799516257cd8805c9006f8ae361b"} -2023-12-16T14:44:09.275Z INFO initializing dbft {"height": 9304, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:09.276Z debug frostfs-node/morph.go:229 new block {"index": 9303} -2023-12-16T14:44:10.054Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9303, "blockHeight": 9303, "took": "6.180671ms"} -2023-12-16T14:44:10.275Z INFO sending PrepareRequest {"height": 9304, "view": 0} -2023-12-16T14:44:10.275Z INFO sending Commit {"height": 9304, "view": 0} -2023-12-16T14:44:10.275Z INFO approving block {"height": 9304, "hash": "9698871c1e19389464433429ea610eeebdecc5f2bb4adefdb733f9c5c4692b4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59c707f0613a8d9330cbbaa61c88a1211dff3717cb815278353aa1ff208978c7"} -2023-12-16T14:44:10.276Z INFO initializing dbft {"height": 9305, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:10.277Z debug frostfs-node/morph.go:229 new block {"index": 9304} -2023-12-16T14:44:11.052Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9304, "blockHeight": 9304, "took": "3.734959ms"} -2023-12-16T14:44:11.277Z INFO sending PrepareRequest {"height": 9305, "view": 0} -2023-12-16T14:44:11.277Z INFO sending Commit {"height": 9305, "view": 0} -2023-12-16T14:44:11.277Z INFO approving block {"height": 9305, "hash": "93350a4972b44ff49aabc614c11e81aa48e8903d9070b00fb2b8afe5ed7031c2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9698871c1e19389464433429ea610eeebdecc5f2bb4adefdb733f9c5c4692b4a"} -2023-12-16T14:44:11.278Z INFO initializing dbft {"height": 9306, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:11.278Z debug frostfs-node/morph.go:229 new block {"index": 9305} -2023-12-16T14:44:12.052Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9305, "blockHeight": 9305, "took": "4.050658ms"} -2023-12-16T14:44:12.278Z INFO sending PrepareRequest {"height": 9306, "view": 0} -2023-12-16T14:44:12.278Z INFO sending Commit {"height": 9306, "view": 0} -2023-12-16T14:44:12.278Z INFO approving block {"height": 9306, "hash": "4cb1e5b60481c6136db8cab6f2dbd8d8b116845508089011e61b31f7141fec27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93350a4972b44ff49aabc614c11e81aa48e8903d9070b00fb2b8afe5ed7031c2"} -2023-12-16T14:44:12.279Z INFO initializing dbft {"height": 9307, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:12.280Z debug frostfs-node/morph.go:229 new block {"index": 9306} -2023-12-16T14:44:13.052Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9306, "blockHeight": 9306, "took": "3.661566ms"} -2023-12-16T14:44:13.280Z INFO sending PrepareRequest {"height": 9307, "view": 0} -2023-12-16T14:44:13.280Z INFO sending Commit {"height": 9307, "view": 0} -2023-12-16T14:44:13.281Z INFO approving block {"height": 9307, "hash": "463f55cd89df224ef13f895bcaada80a77c3c7e854657848ea18f89362ec5869", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4cb1e5b60481c6136db8cab6f2dbd8d8b116845508089011e61b31f7141fec27"} -2023-12-16T14:44:13.282Z INFO initializing dbft {"height": 9308, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:13.283Z debug frostfs-node/morph.go:229 new block {"index": 9307} -2023-12-16T14:44:14.053Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9307, "blockHeight": 9307, "took": "3.681597ms"} -2023-12-16T14:44:14.281Z INFO sending PrepareRequest {"height": 9308, "view": 0} -2023-12-16T14:44:14.281Z INFO sending Commit {"height": 9308, "view": 0} -2023-12-16T14:44:14.281Z INFO approving block {"height": 9308, "hash": "6a8b2216678bf8b312ee0b9ed61725afd83b7dd49d91a0c7fb98b90db0d00a21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "463f55cd89df224ef13f895bcaada80a77c3c7e854657848ea18f89362ec5869"} -2023-12-16T14:44:14.282Z INFO initializing dbft {"height": 9309, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:14.283Z debug frostfs-node/morph.go:229 new block {"index": 9308} -2023-12-16T14:44:15.054Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9308, "blockHeight": 9308, "took": "3.703508ms"} -2023-12-16T14:44:15.283Z INFO sending PrepareRequest {"height": 9309, "view": 0} -2023-12-16T14:44:15.283Z INFO sending Commit {"height": 9309, "view": 0} -2023-12-16T14:44:15.283Z INFO approving block {"height": 9309, "hash": "bb02967f8236eb161f66bcdf5f05f4e65071d36e8c6e9caf4004ce3bd3519d4e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a8b2216678bf8b312ee0b9ed61725afd83b7dd49d91a0c7fb98b90db0d00a21"} -2023-12-16T14:44:15.284Z INFO initializing dbft {"height": 9310, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:15.284Z debug frostfs-node/morph.go:229 new block {"index": 9309} -2023-12-16T14:44:16.057Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9309, "blockHeight": 9309, "took": "6.509296ms"} -2023-12-16T14:44:16.284Z INFO sending PrepareRequest {"height": 9310, "view": 0} -2023-12-16T14:44:16.284Z INFO sending Commit {"height": 9310, "view": 0} -2023-12-16T14:44:16.284Z INFO approving block {"height": 9310, "hash": "3d6e8e55999bf6d438cc42b2fc7de10f670d44e186e5761865e5ad1f5543756d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb02967f8236eb161f66bcdf5f05f4e65071d36e8c6e9caf4004ce3bd3519d4e"} -2023-12-16T14:44:16.285Z INFO initializing dbft {"height": 9311, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:16.286Z debug frostfs-node/morph.go:229 new block {"index": 9310} -2023-12-16T14:44:17.055Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9310, "blockHeight": 9310, "took": "3.754149ms"} -2023-12-16T14:44:17.285Z INFO sending PrepareRequest {"height": 9311, "view": 0} -2023-12-16T14:44:17.285Z INFO sending Commit {"height": 9311, "view": 0} -2023-12-16T14:44:17.286Z INFO approving block {"height": 9311, "hash": "1469f74cc4bac1108f68702342808f5712fba48d81cbed739c952cdacc190767", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d6e8e55999bf6d438cc42b2fc7de10f670d44e186e5761865e5ad1f5543756d"} -2023-12-16T14:44:17.286Z INFO initializing dbft {"height": 9312, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:17.287Z debug frostfs-node/morph.go:229 new block {"index": 9311} -2023-12-16T14:44:18.056Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9311, "blockHeight": 9311, "took": "4.172692ms"} -2023-12-16T14:44:18.286Z INFO sending PrepareRequest {"height": 9312, "view": 0} -2023-12-16T14:44:18.286Z INFO sending Commit {"height": 9312, "view": 0} -2023-12-16T14:44:18.287Z INFO approving block {"height": 9312, "hash": "5cb98809b2b44d9cabee45b0b2f4dfc163fa739392e595f6384fb35070b7950e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1469f74cc4bac1108f68702342808f5712fba48d81cbed739c952cdacc190767"} -2023-12-16T14:44:18.288Z INFO initializing dbft {"height": 9313, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:18.288Z debug frostfs-node/morph.go:229 new block {"index": 9312} -2023-12-16T14:44:19.058Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9312, "blockHeight": 9312, "took": "5.407777ms"} -2023-12-16T14:44:19.287Z INFO sending PrepareRequest {"height": 9313, "view": 0} -2023-12-16T14:44:19.288Z INFO sending Commit {"height": 9313, "view": 0} -2023-12-16T14:44:19.288Z INFO approving block {"height": 9313, "hash": "0a57eab4b2f774e8c8f9feca182a78bc16ffd7470066381a004a8be8127b3b34", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cb98809b2b44d9cabee45b0b2f4dfc163fa739392e595f6384fb35070b7950e"} -2023-12-16T14:44:19.289Z INFO initializing dbft {"height": 9314, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:19.289Z debug frostfs-node/morph.go:229 new block {"index": 9313} -2023-12-16T14:44:20.058Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9313, "blockHeight": 9313, "took": "5.17165ms"} -2023-12-16T14:44:20.289Z INFO sending PrepareRequest {"height": 9314, "view": 0} -2023-12-16T14:44:20.289Z INFO sending Commit {"height": 9314, "view": 0} -2023-12-16T14:44:20.289Z INFO approving block {"height": 9314, "hash": "a14458d6f5ea6f157f1bf181d42119368855e498b57fe0e3cff874e8363769fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0a57eab4b2f774e8c8f9feca182a78bc16ffd7470066381a004a8be8127b3b34"} -2023-12-16T14:44:20.290Z INFO initializing dbft {"height": 9315, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:20.291Z debug frostfs-node/morph.go:229 new block {"index": 9314} -2023-12-16T14:44:21.058Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9314, "blockHeight": 9314, "took": "4.498581ms"} -2023-12-16T14:44:21.291Z INFO sending PrepareRequest {"height": 9315, "view": 0} -2023-12-16T14:44:21.291Z INFO sending Commit {"height": 9315, "view": 0} -2023-12-16T14:44:21.291Z INFO approving block {"height": 9315, "hash": "cb07f495e35a7b81ee45b183a8018543637b9ca39f306bd5f174bc839f904824", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a14458d6f5ea6f157f1bf181d42119368855e498b57fe0e3cff874e8363769fe"} -2023-12-16T14:44:21.291Z INFO initializing dbft {"height": 9316, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:21.292Z debug frostfs-node/morph.go:229 new block {"index": 9315} -2023-12-16T14:44:22.058Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9315, "blockHeight": 9315, "took": "3.771269ms"} -2023-12-16T14:44:22.293Z INFO sending PrepareRequest {"height": 9316, "view": 0} -2023-12-16T14:44:22.293Z INFO sending Commit {"height": 9316, "view": 0} -2023-12-16T14:44:22.293Z INFO approving block {"height": 9316, "hash": "5006a7a9cb919ea8e1e769bf283585318a6ba4b96f352a3f98166cbec5dfbd81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb07f495e35a7b81ee45b183a8018543637b9ca39f306bd5f174bc839f904824"} -2023-12-16T14:44:22.295Z INFO initializing dbft {"height": 9317, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:22.295Z debug frostfs-node/morph.go:229 new block {"index": 9316} -2023-12-16T14:44:23.060Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9316, "blockHeight": 9316, "took": "4.276794ms"} -2023-12-16T14:44:23.294Z INFO sending PrepareRequest {"height": 9317, "view": 0} -2023-12-16T14:44:23.295Z INFO sending Commit {"height": 9317, "view": 0} -2023-12-16T14:44:23.295Z INFO approving block {"height": 9317, "hash": "bb03680a9d3c0eaa7868006af405dbdef3f38a9b82a28c84c00f31b11ea039a5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5006a7a9cb919ea8e1e769bf283585318a6ba4b96f352a3f98166cbec5dfbd81"} -2023-12-16T14:44:23.295Z INFO initializing dbft {"height": 9318, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:23.296Z debug frostfs-node/morph.go:229 new block {"index": 9317} -2023-12-16T14:44:24.061Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9317, "blockHeight": 9317, "took": "4.229113ms"} -2023-12-16T14:44:24.296Z INFO sending PrepareRequest {"height": 9318, "view": 0} -2023-12-16T14:44:24.296Z INFO sending Commit {"height": 9318, "view": 0} -2023-12-16T14:44:24.297Z INFO approving block {"height": 9318, "hash": "dcbfdbc4c6d3e8881b470f5860d61db6ed65a5b2de61a7cc7349825d462946bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb03680a9d3c0eaa7868006af405dbdef3f38a9b82a28c84c00f31b11ea039a5"} -2023-12-16T14:44:24.297Z INFO initializing dbft {"height": 9319, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:24.298Z debug frostfs-node/morph.go:229 new block {"index": 9318} -2023-12-16T14:44:25.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9318, "blockHeight": 9318, "took": "5.399087ms"} -2023-12-16T14:44:25.298Z INFO sending PrepareRequest {"height": 9319, "view": 0} -2023-12-16T14:44:25.298Z INFO sending Commit {"height": 9319, "view": 0} -2023-12-16T14:44:25.298Z INFO approving block {"height": 9319, "hash": "72af011958aa13812d3149dca01dd406fe139d92b689c670398a04612b023147", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dcbfdbc4c6d3e8881b470f5860d61db6ed65a5b2de61a7cc7349825d462946bb"} -2023-12-16T14:44:25.299Z INFO initializing dbft {"height": 9320, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:25.299Z debug frostfs-node/morph.go:229 new block {"index": 9319} -2023-12-16T14:44:26.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9319, "blockHeight": 9319, "took": "5.022234ms"} -2023-12-16T14:44:26.299Z INFO sending PrepareRequest {"height": 9320, "view": 0} -2023-12-16T14:44:26.299Z INFO sending Commit {"height": 9320, "view": 0} -2023-12-16T14:44:26.300Z INFO approving block {"height": 9320, "hash": "ec1cf036e83186f0891d799207cb18e1d5299e6ded4b34f592bc3fe064f16dd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72af011958aa13812d3149dca01dd406fe139d92b689c670398a04612b023147"} -2023-12-16T14:44:26.301Z INFO initializing dbft {"height": 9321, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:26.302Z debug frostfs-node/morph.go:229 new block {"index": 9320} -2023-12-16T14:44:27.062Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9320, "blockHeight": 9320, "took": "3.365438ms"} -2023-12-16T14:44:27.300Z INFO sending PrepareRequest {"height": 9321, "view": 0} -2023-12-16T14:44:27.300Z INFO sending Commit {"height": 9321, "view": 0} -2023-12-16T14:44:27.300Z INFO approving block {"height": 9321, "hash": "98b4b921f08d285c5c5fd27e713b795ff297438bbbce664865a62cf1f8d67d39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec1cf036e83186f0891d799207cb18e1d5299e6ded4b34f592bc3fe064f16dd1"} -2023-12-16T14:44:27.301Z INFO initializing dbft {"height": 9322, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:27.302Z debug frostfs-node/morph.go:229 new block {"index": 9321} -2023-12-16T14:44:28.063Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9321, "blockHeight": 9321, "took": "4.503091ms"} -2023-12-16T14:44:28.302Z INFO sending PrepareRequest {"height": 9322, "view": 0} -2023-12-16T14:44:28.302Z INFO sending Commit {"height": 9322, "view": 0} -2023-12-16T14:44:28.302Z INFO approving block {"height": 9322, "hash": "6a6679f9d6b60a2c86b13191a4b0ac67e551fc52649257b8364727efff538b6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98b4b921f08d285c5c5fd27e713b795ff297438bbbce664865a62cf1f8d67d39"} -2023-12-16T14:44:28.303Z INFO initializing dbft {"height": 9323, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:28.303Z debug frostfs-node/morph.go:229 new block {"index": 9322} -2023-12-16T14:44:29.065Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9322, "blockHeight": 9322, "took": "5.864561ms"} -2023-12-16T14:44:29.303Z INFO sending PrepareRequest {"height": 9323, "view": 0} -2023-12-16T14:44:29.303Z INFO sending Commit {"height": 9323, "view": 0} -2023-12-16T14:44:29.303Z INFO approving block {"height": 9323, "hash": "1a9983760fbb68abc54c55a4e20267529d3f7e9fdcf7b3fde260debfa2547575", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a6679f9d6b60a2c86b13191a4b0ac67e551fc52649257b8364727efff538b6e"} -2023-12-16T14:44:29.304Z INFO initializing dbft {"height": 9324, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:29.304Z debug frostfs-node/morph.go:229 new block {"index": 9323} -2023-12-16T14:44:30.064Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9323, "blockHeight": 9323, "took": "3.46253ms"} -2023-12-16T14:44:30.304Z INFO sending PrepareRequest {"height": 9324, "view": 0} -2023-12-16T14:44:30.304Z INFO sending Commit {"height": 9324, "view": 0} -2023-12-16T14:44:30.305Z INFO approving block {"height": 9324, "hash": "7a3240a4b83be4dabdf4a9d734fc58d51ed7ba3e9e87dc6be07eb7efeeef66c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a9983760fbb68abc54c55a4e20267529d3f7e9fdcf7b3fde260debfa2547575"} -2023-12-16T14:44:30.306Z INFO initializing dbft {"height": 9325, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:30.306Z debug frostfs-node/morph.go:229 new block {"index": 9324} -2023-12-16T14:44:31.067Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9324, "blockHeight": 9324, "took": "5.992505ms"} -2023-12-16T14:44:31.306Z INFO sending PrepareRequest {"height": 9325, "view": 0} -2023-12-16T14:44:31.306Z INFO sending Commit {"height": 9325, "view": 0} -2023-12-16T14:44:31.306Z INFO approving block {"height": 9325, "hash": "db434ab04bb60d0a56aef0a0114b64f019927d9257738d21d6e79b48431e49a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a3240a4b83be4dabdf4a9d734fc58d51ed7ba3e9e87dc6be07eb7efeeef66c9"} -2023-12-16T14:44:31.307Z INFO initializing dbft {"height": 9326, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:31.307Z debug frostfs-node/morph.go:229 new block {"index": 9325} -2023-12-16T14:44:32.065Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9325, "blockHeight": 9325, "took": "3.617175ms"} -2023-12-16T14:44:32.308Z INFO sending PrepareRequest {"height": 9326, "view": 0} -2023-12-16T14:44:32.308Z INFO sending Commit {"height": 9326, "view": 0} -2023-12-16T14:44:32.309Z INFO approving block {"height": 9326, "hash": "e815215502fcec6f7ba7245882d7ce62aee5f9c36e5d7afebc6b6b1999db1fdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db434ab04bb60d0a56aef0a0114b64f019927d9257738d21d6e79b48431e49a9"} -2023-12-16T14:44:32.310Z INFO initializing dbft {"height": 9327, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:32.310Z debug frostfs-node/morph.go:229 new block {"index": 9326} -2023-12-16T14:44:33.064Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9326, "blockHeight": 9326, "took": "2.937725ms"} -2023-12-16T14:44:33.310Z INFO sending PrepareRequest {"height": 9327, "view": 0} -2023-12-16T14:44:33.310Z INFO sending Commit {"height": 9327, "view": 0} -2023-12-16T14:44:33.311Z INFO approving block {"height": 9327, "hash": "e70b5cdb2619f618095c9fcbd1850c2842a16eff2562e2d51002b28a2f7b9877", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e815215502fcec6f7ba7245882d7ce62aee5f9c36e5d7afebc6b6b1999db1fdb"} -2023-12-16T14:44:33.312Z INFO initializing dbft {"height": 9328, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:33.313Z debug frostfs-node/morph.go:229 new block {"index": 9327} -2023-12-16T14:44:34.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9327, "blockHeight": 9327, "took": "4.063819ms"} -2023-12-16T14:44:34.312Z INFO sending PrepareRequest {"height": 9328, "view": 0} -2023-12-16T14:44:34.313Z INFO sending Commit {"height": 9328, "view": 0} -2023-12-16T14:44:34.313Z INFO approving block {"height": 9328, "hash": "49fd86958e90ea61db196eee0b489abd81363580ab408db52bfba7fb758183d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e70b5cdb2619f618095c9fcbd1850c2842a16eff2562e2d51002b28a2f7b9877"} -2023-12-16T14:44:34.314Z INFO initializing dbft {"height": 9329, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:34.314Z debug frostfs-node/morph.go:229 new block {"index": 9328} -2023-12-16T14:44:35.066Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9328, "blockHeight": 9328, "took": "3.160644ms"} -2023-12-16T14:44:35.313Z INFO sending PrepareRequest {"height": 9329, "view": 0} -2023-12-16T14:44:35.314Z INFO sending Commit {"height": 9329, "view": 0} -2023-12-16T14:44:35.314Z INFO approving block {"height": 9329, "hash": "45f21a33def9ecf5fc5e09a37cbd2f8a4bc08157de77a98c8a5536cc6652fee6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "49fd86958e90ea61db196eee0b489abd81363580ab408db52bfba7fb758183d9"} -2023-12-16T14:44:35.315Z INFO initializing dbft {"height": 9330, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:35.315Z debug frostfs-node/morph.go:229 new block {"index": 9329} -2023-12-16T14:44:36.067Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9329, "blockHeight": 9329, "took": "3.878573ms"} -2023-12-16T14:44:36.315Z INFO sending PrepareRequest {"height": 9330, "view": 0} -2023-12-16T14:44:36.315Z INFO sending Commit {"height": 9330, "view": 0} -2023-12-16T14:44:36.315Z INFO approving block {"height": 9330, "hash": "2188aea1b965f1bf5a51bb77bec22baed223ff452aac1895eee3f84129450df0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45f21a33def9ecf5fc5e09a37cbd2f8a4bc08157de77a98c8a5536cc6652fee6"} -2023-12-16T14:44:36.316Z INFO initializing dbft {"height": 9331, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:36.317Z debug frostfs-node/morph.go:229 new block {"index": 9330} -2023-12-16T14:44:37.067Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9330, "blockHeight": 9330, "took": "3.064159ms"} -2023-12-16T14:44:37.317Z INFO sending PrepareRequest {"height": 9331, "view": 0} -2023-12-16T14:44:37.317Z INFO sending Commit {"height": 9331, "view": 0} -2023-12-16T14:44:37.318Z INFO approving block {"height": 9331, "hash": "3ffe80d06063d5b42bc8f7392fbcbdc424b3ebe336a4f2440a60556a488dc059", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2188aea1b965f1bf5a51bb77bec22baed223ff452aac1895eee3f84129450df0"} -2023-12-16T14:44:37.319Z INFO initializing dbft {"height": 9332, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:37.320Z debug frostfs-node/morph.go:229 new block {"index": 9331} -2023-12-16T14:44:38.068Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9331, "blockHeight": 9331, "took": "3.498371ms"} -2023-12-16T14:44:38.318Z INFO sending PrepareRequest {"height": 9332, "view": 0} -2023-12-16T14:44:38.318Z INFO sending Commit {"height": 9332, "view": 0} -2023-12-16T14:44:38.319Z INFO approving block {"height": 9332, "hash": "4a94e9ffa4e76ff10d572d74a1875daa870de458da1dfaf063e69e520890965b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ffe80d06063d5b42bc8f7392fbcbdc424b3ebe336a4f2440a60556a488dc059"} -2023-12-16T14:44:38.320Z INFO initializing dbft {"height": 9333, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:38.320Z debug frostfs-node/morph.go:229 new block {"index": 9332} -2023-12-16T14:44:39.069Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9332, "blockHeight": 9332, "took": "3.670622ms"} -2023-12-16T14:44:39.320Z INFO sending PrepareRequest {"height": 9333, "view": 0} -2023-12-16T14:44:39.320Z INFO sending Commit {"height": 9333, "view": 0} -2023-12-16T14:44:39.320Z INFO approving block {"height": 9333, "hash": "09007f15bbcdf2ea4478ee1f9be6d8920adff6abbc31400b4684c494ad0d7e38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a94e9ffa4e76ff10d572d74a1875daa870de458da1dfaf063e69e520890965b"} -2023-12-16T14:44:39.321Z INFO initializing dbft {"height": 9334, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:39.322Z debug frostfs-node/morph.go:229 new block {"index": 9333} -2023-12-16T14:44:40.069Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9333, "blockHeight": 9333, "took": "4.036073ms"} -2023-12-16T14:44:40.321Z INFO sending PrepareRequest {"height": 9334, "view": 0} -2023-12-16T14:44:40.321Z INFO sending Commit {"height": 9334, "view": 0} -2023-12-16T14:44:40.321Z INFO approving block {"height": 9334, "hash": "beed5336ec5f56ebdba3e207d683de0db782c566c4664a066983092a79e69fed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09007f15bbcdf2ea4478ee1f9be6d8920adff6abbc31400b4684c494ad0d7e38"} -2023-12-16T14:44:40.322Z INFO initializing dbft {"height": 9335, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:40.323Z debug frostfs-node/morph.go:229 new block {"index": 9334} -2023-12-16T14:44:41.069Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9334, "blockHeight": 9334, "took": "3.316606ms"} -2023-12-16T14:44:41.323Z INFO sending PrepareRequest {"height": 9335, "view": 0} -2023-12-16T14:44:41.323Z INFO sending Commit {"height": 9335, "view": 0} -2023-12-16T14:44:41.323Z INFO approving block {"height": 9335, "hash": "b3f91eda8df217a0a1c3d8645745783e4b9dd8bf7e84168ccb35f148c4215431", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "beed5336ec5f56ebdba3e207d683de0db782c566c4664a066983092a79e69fed"} -2023-12-16T14:44:41.325Z INFO initializing dbft {"height": 9336, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:41.326Z debug frostfs-node/morph.go:229 new block {"index": 9335} -2023-12-16T14:44:42.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9335, "blockHeight": 9335, "took": "4.551543ms"} -2023-12-16T14:44:42.324Z INFO sending PrepareRequest {"height": 9336, "view": 0} -2023-12-16T14:44:42.325Z INFO sending Commit {"height": 9336, "view": 0} -2023-12-16T14:44:42.325Z INFO approving block {"height": 9336, "hash": "fe8f70bc95e5939e5f3f6d659986aab6e0bf0c6b19d33d5eb0a0b295560fba5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3f91eda8df217a0a1c3d8645745783e4b9dd8bf7e84168ccb35f148c4215431"} -2023-12-16T14:44:42.326Z INFO initializing dbft {"height": 9337, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:42.327Z debug frostfs-node/morph.go:229 new block {"index": 9336} -2023-12-16T14:44:43.071Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9336, "blockHeight": 9336, "took": "4.321553ms"} -2023-12-16T14:44:43.326Z INFO sending PrepareRequest {"height": 9337, "view": 0} -2023-12-16T14:44:43.326Z INFO sending Commit {"height": 9337, "view": 0} -2023-12-16T14:44:43.326Z INFO approving block {"height": 9337, "hash": "998e50d211cc7e293becb126ac283ce2a3df869b9ffb24585c506a070a3ad3dd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe8f70bc95e5939e5f3f6d659986aab6e0bf0c6b19d33d5eb0a0b295560fba5c"} -2023-12-16T14:44:43.327Z INFO initializing dbft {"height": 9338, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:43.327Z debug frostfs-node/morph.go:229 new block {"index": 9337} -2023-12-16T14:44:43.330Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 39, "iteration": 2, "error": "no data for 1 iteration in 39 epoch for consumers's trusts"} -2023-12-16T14:44:43.331Z info settlement/calls.go:106 start basic income distribution {"epoch": 39} -2023-12-16T14:44:44.072Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9337, "blockHeight": 9337, "took": "4.80761ms"} -2023-12-16T14:44:44.327Z INFO sending PrepareRequest {"height": 9338, "view": 0} -2023-12-16T14:44:44.328Z INFO sending Commit {"height": 9338, "view": 0} -2023-12-16T14:44:44.328Z INFO approving block {"height": 9338, "hash": "d652d3a18595bd7c6aa6afd3a53f5786a71bb558727ffa67cca460f517615f9e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "998e50d211cc7e293becb126ac283ce2a3df869b9ffb24585c506a070a3ad3dd"} -2023-12-16T14:44:44.329Z INFO initializing dbft {"height": 9339, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:44.330Z debug frostfs-node/morph.go:229 new block {"index": 9338} -2023-12-16T14:44:45.073Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9338, "blockHeight": 9338, "took": "4.643428ms"} -2023-12-16T14:44:45.329Z INFO sending PrepareRequest {"height": 9339, "view": 0} -2023-12-16T14:44:45.329Z INFO sending Commit {"height": 9339, "view": 0} -2023-12-16T14:44:45.329Z INFO approving block {"height": 9339, "hash": "e9cf13ec94b7f136ac8e48d29b0e62bebd22e5644a8e083a985b6cc6c55bfd86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d652d3a18595bd7c6aa6afd3a53f5786a71bb558727ffa67cca460f517615f9e"} -2023-12-16T14:44:45.330Z INFO initializing dbft {"height": 9340, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:45.330Z debug frostfs-node/morph.go:229 new block {"index": 9339} -2023-12-16T14:44:46.074Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9339, "blockHeight": 9339, "took": "5.599954ms"} -2023-12-16T14:44:46.330Z INFO sending PrepareRequest {"height": 9340, "view": 0} -2023-12-16T14:44:46.331Z INFO sending Commit {"height": 9340, "view": 0} -2023-12-16T14:44:46.331Z INFO approving block {"height": 9340, "hash": "acff30a5500d507deb41c5a1ea8cbee57d8563cfeab098292619a79dcbe1618f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e9cf13ec94b7f136ac8e48d29b0e62bebd22e5644a8e083a985b6cc6c55bfd86"} -2023-12-16T14:44:46.332Z INFO initializing dbft {"height": 9341, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:46.332Z debug frostfs-node/morph.go:229 new block {"index": 9340} -2023-12-16T14:44:47.073Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9340, "blockHeight": 9340, "took": "4.241319ms"} -2023-12-16T14:44:47.332Z INFO sending PrepareRequest {"height": 9341, "view": 0} -2023-12-16T14:44:47.332Z INFO sending Commit {"height": 9341, "view": 0} -2023-12-16T14:44:47.332Z INFO approving block {"height": 9341, "hash": "9ed3e0520c1e0c20adaff238e599dff54f76a2f9a4bb4c0ad856f5d093e47001", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acff30a5500d507deb41c5a1ea8cbee57d8563cfeab098292619a79dcbe1618f"} -2023-12-16T14:44:47.333Z INFO initializing dbft {"height": 9342, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:47.334Z debug frostfs-node/morph.go:229 new block {"index": 9341} -2023-12-16T14:44:48.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9341, "blockHeight": 9341, "took": "5.793916ms"} -2023-12-16T14:44:48.334Z INFO sending PrepareRequest {"height": 9342, "view": 0} -2023-12-16T14:44:48.334Z INFO sending Commit {"height": 9342, "view": 0} -2023-12-16T14:44:48.334Z INFO approving block {"height": 9342, "hash": "6b8ff9b6c887f5ecf1f00c48c1cf8cb8e80ec26203e9a92275f3b3e02d0e21e5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ed3e0520c1e0c20adaff238e599dff54f76a2f9a4bb4c0ad856f5d093e47001"} -2023-12-16T14:44:48.335Z INFO initializing dbft {"height": 9343, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:48.336Z debug frostfs-node/morph.go:229 new block {"index": 9342} -2023-12-16T14:44:49.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9342, "blockHeight": 9342, "took": "4.467333ms"} -2023-12-16T14:44:49.335Z INFO sending PrepareRequest {"height": 9343, "view": 0} -2023-12-16T14:44:49.335Z INFO sending Commit {"height": 9343, "view": 0} -2023-12-16T14:44:49.336Z INFO approving block {"height": 9343, "hash": "441d71527432a24926dc27ec32132fc5e016bd6b007b5dab01ccb2949e4ad536", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b8ff9b6c887f5ecf1f00c48c1cf8cb8e80ec26203e9a92275f3b3e02d0e21e5"} -2023-12-16T14:44:49.337Z INFO initializing dbft {"height": 9344, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:49.337Z debug frostfs-node/morph.go:229 new block {"index": 9343} -2023-12-16T14:44:50.075Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9343, "blockHeight": 9343, "took": "4.084509ms"} -2023-12-16T14:44:50.336Z INFO sending PrepareRequest {"height": 9344, "view": 0} -2023-12-16T14:44:50.336Z INFO sending Commit {"height": 9344, "view": 0} -2023-12-16T14:44:50.337Z INFO approving block {"height": 9344, "hash": "f9a06ed8f02a4ccf4dbccde4a4ad5835f71f2bf896371840c904b0472b31ac17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "441d71527432a24926dc27ec32132fc5e016bd6b007b5dab01ccb2949e4ad536"} -2023-12-16T14:44:50.338Z INFO initializing dbft {"height": 9345, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:50.338Z debug frostfs-node/morph.go:229 new block {"index": 9344} -2023-12-16T14:44:51.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9344, "blockHeight": 9344, "took": "6.314205ms"} -2023-12-16T14:44:51.338Z INFO sending PrepareRequest {"height": 9345, "view": 0} -2023-12-16T14:44:51.338Z INFO sending Commit {"height": 9345, "view": 0} -2023-12-16T14:44:51.338Z INFO approving block {"height": 9345, "hash": "05b075067712db9aa0c3d1dea04b7f41a957c2d2e64abbf591e309d9c7fb8bbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9a06ed8f02a4ccf4dbccde4a4ad5835f71f2bf896371840c904b0472b31ac17"} -2023-12-16T14:44:51.339Z INFO initializing dbft {"height": 9346, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:51.340Z debug frostfs-node/morph.go:229 new block {"index": 9345} -2023-12-16T14:44:52.077Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9345, "blockHeight": 9345, "took": "4.500281ms"} -2023-12-16T14:44:52.339Z INFO sending PrepareRequest {"height": 9346, "view": 0} -2023-12-16T14:44:52.339Z INFO sending Commit {"height": 9346, "view": 0} -2023-12-16T14:44:52.340Z INFO approving block {"height": 9346, "hash": "fdbd34d8ad726f6a607a30a8de5404ebd64f514cfa1f68b15c50ad929356e173", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05b075067712db9aa0c3d1dea04b7f41a957c2d2e64abbf591e309d9c7fb8bbe"} -2023-12-16T14:44:52.341Z INFO initializing dbft {"height": 9347, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:52.341Z debug frostfs-node/morph.go:229 new block {"index": 9346} -2023-12-16T14:44:53.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9346, "blockHeight": 9346, "took": "4.958654ms"} -2023-12-16T14:44:53.341Z INFO sending PrepareRequest {"height": 9347, "view": 0} -2023-12-16T14:44:53.341Z INFO sending Commit {"height": 9347, "view": 0} -2023-12-16T14:44:53.341Z INFO approving block {"height": 9347, "hash": "1a89230a38851e8dabbe6d4bef21e4afb1a42e83b743d46b0969dc0f6bf443b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fdbd34d8ad726f6a607a30a8de5404ebd64f514cfa1f68b15c50ad929356e173"} -2023-12-16T14:44:53.342Z INFO initializing dbft {"height": 9348, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:53.343Z debug frostfs-node/morph.go:229 new block {"index": 9347} -2023-12-16T14:44:54.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9347, "blockHeight": 9347, "took": "4.492351ms"} -2023-12-16T14:44:54.342Z INFO sending PrepareRequest {"height": 9348, "view": 0} -2023-12-16T14:44:54.343Z INFO sending Commit {"height": 9348, "view": 0} -2023-12-16T14:44:54.343Z INFO approving block {"height": 9348, "hash": "3d7b43f9d26a06a879c793674f07db082a4aefca3fe76f7740bc2eb2894b95a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a89230a38851e8dabbe6d4bef21e4afb1a42e83b743d46b0969dc0f6bf443b7"} -2023-12-16T14:44:54.344Z INFO initializing dbft {"height": 9349, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:54.345Z debug frostfs-node/morph.go:229 new block {"index": 9348} -2023-12-16T14:44:55.078Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9348, "blockHeight": 9348, "took": "3.629485ms"} -2023-12-16T14:44:55.344Z INFO sending PrepareRequest {"height": 9349, "view": 0} -2023-12-16T14:44:55.345Z INFO sending Commit {"height": 9349, "view": 0} -2023-12-16T14:44:55.345Z INFO approving block {"height": 9349, "hash": "37d63efc79b66d5b97db8038b70fa446f0742c8f9a81e414d0630ff31d655d2a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d7b43f9d26a06a879c793674f07db082a4aefca3fe76f7740bc2eb2894b95a3"} -2023-12-16T14:44:55.346Z INFO initializing dbft {"height": 9350, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:55.347Z debug frostfs-node/morph.go:229 new block {"index": 9349} -2023-12-16T14:44:56.079Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9349, "blockHeight": 9349, "took": "4.046118ms"} -2023-12-16T14:44:56.346Z INFO sending PrepareRequest {"height": 9350, "view": 0} -2023-12-16T14:44:56.346Z INFO sending Commit {"height": 9350, "view": 0} -2023-12-16T14:44:56.347Z INFO approving block {"height": 9350, "hash": "682d6d0ec69c76386e981c5f042359f96d4c8b28d3dcab9ec7e7611492ba491e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "37d63efc79b66d5b97db8038b70fa446f0742c8f9a81e414d0630ff31d655d2a"} -2023-12-16T14:44:56.348Z INFO initializing dbft {"height": 9351, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:56.349Z debug frostfs-node/morph.go:229 new block {"index": 9350} -2023-12-16T14:44:56.352Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:44:56.353Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:44:56.353Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:44:57.081Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9350, "blockHeight": 9350, "took": "5.259693ms"} -2023-12-16T14:44:57.348Z INFO sending PrepareRequest {"height": 9351, "view": 0} -2023-12-16T14:44:57.348Z INFO sending Commit {"height": 9351, "view": 0} -2023-12-16T14:44:57.348Z INFO approving block {"height": 9351, "hash": "a3194dc5c02ce3b0102c07681d45b3e088dcdfa22777245157d22dcb66f8bb9e", "tx_count": 2, "merkle": "a048b90b11aa7f717c252becfeab8765998a639b2711bdaa666abda42db9ac6e", "prev": "682d6d0ec69c76386e981c5f042359f96d4c8b28d3dcab9ec7e7611492ba491e"} -2023-12-16T14:44:57.348Z INFO runtime log {"tx": "e7040386fe8a90e1971ba2c988beaee4b1c167b55a2edf169a5c80990d701ac0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:44:57.349Z INFO runtime log {"tx": "e7040386fe8a90e1971ba2c988beaee4b1c167b55a2edf169a5c80990d701ac0", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:44:57.350Z INFO initializing dbft {"height": 9352, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:57.350Z debug frostfs-node/morph.go:229 new block {"index": 9351} -2023-12-16T14:44:58.083Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9351, "blockHeight": 9351, "took": "6.373375ms"} -2023-12-16T14:44:58.349Z INFO sending PrepareRequest {"height": 9352, "view": 0} -2023-12-16T14:44:58.349Z INFO sending Commit {"height": 9352, "view": 0} -2023-12-16T14:44:58.350Z INFO approving block {"height": 9352, "hash": "304e1869bcb644a2b4a67e999d2c576d1ed2a89bf0e19d932959abb517db09e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3194dc5c02ce3b0102c07681d45b3e088dcdfa22777245157d22dcb66f8bb9e"} -2023-12-16T14:44:58.351Z INFO initializing dbft {"height": 9353, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:58.352Z debug frostfs-node/morph.go:229 new block {"index": 9352} -2023-12-16T14:44:59.082Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9352, "blockHeight": 9352, "took": "4.630615ms"} -2023-12-16T14:44:59.351Z INFO sending PrepareRequest {"height": 9353, "view": 0} -2023-12-16T14:44:59.351Z INFO sending Commit {"height": 9353, "view": 0} -2023-12-16T14:44:59.352Z INFO approving block {"height": 9353, "hash": "493c7f064ba8289df49d5bf929bdd427f91e6e3dd2c25c6b0033b9079ed3de6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "304e1869bcb644a2b4a67e999d2c576d1ed2a89bf0e19d932959abb517db09e2"} -2023-12-16T14:44:59.353Z INFO initializing dbft {"height": 9354, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:44:59.354Z debug frostfs-node/morph.go:229 new block {"index": 9353} -2023-12-16T14:45:00.083Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9353, "blockHeight": 9353, "took": "3.8001ms"} -2023-12-16T14:45:00.353Z INFO sending PrepareRequest {"height": 9354, "view": 0} -2023-12-16T14:45:00.353Z INFO sending Commit {"height": 9354, "view": 0} -2023-12-16T14:45:00.354Z INFO approving block {"height": 9354, "hash": "c2febca8e800a0cc39695a6d5412cc8dc2a7d16c5da7a93c10c7045edfb26eff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "493c7f064ba8289df49d5bf929bdd427f91e6e3dd2c25c6b0033b9079ed3de6e"} -2023-12-16T14:45:00.354Z INFO initializing dbft {"height": 9355, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:00.355Z debug frostfs-node/morph.go:229 new block {"index": 9354} -2023-12-16T14:45:01.085Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9354, "blockHeight": 9354, "took": "4.897683ms"} -2023-12-16T14:45:01.355Z INFO sending PrepareRequest {"height": 9355, "view": 0} -2023-12-16T14:45:01.355Z INFO sending Commit {"height": 9355, "view": 0} -2023-12-16T14:45:01.355Z INFO approving block {"height": 9355, "hash": "09d8ca077e50860f36c3c4f6cafdf93f362596f9cba668f0fab572f81007e3be", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2febca8e800a0cc39695a6d5412cc8dc2a7d16c5da7a93c10c7045edfb26eff"} -2023-12-16T14:45:01.357Z INFO initializing dbft {"height": 9356, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:01.358Z debug frostfs-node/morph.go:229 new block {"index": 9355} -2023-12-16T14:45:02.084Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9355, "blockHeight": 9355, "took": "3.459664ms"} -2023-12-16T14:45:02.356Z INFO sending PrepareRequest {"height": 9356, "view": 0} -2023-12-16T14:45:02.356Z INFO sending Commit {"height": 9356, "view": 0} -2023-12-16T14:45:02.357Z INFO approving block {"height": 9356, "hash": "cff48f01a78b5cfd4b8c31cbf8d621278540244148d1d8cafcc40722699ad2ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "09d8ca077e50860f36c3c4f6cafdf93f362596f9cba668f0fab572f81007e3be"} -2023-12-16T14:45:02.357Z INFO initializing dbft {"height": 9357, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:02.358Z debug frostfs-node/morph.go:229 new block {"index": 9356} -2023-12-16T14:45:03.086Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9356, "blockHeight": 9356, "took": "4.84147ms"} -2023-12-16T14:45:03.358Z INFO sending PrepareRequest {"height": 9357, "view": 0} -2023-12-16T14:45:03.358Z INFO sending Commit {"height": 9357, "view": 0} -2023-12-16T14:45:03.359Z INFO approving block {"height": 9357, "hash": "79b71f16555f56410daa0b692734946b9761cebbe907585f1654931e61b6e47e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cff48f01a78b5cfd4b8c31cbf8d621278540244148d1d8cafcc40722699ad2ee"} -2023-12-16T14:45:03.361Z INFO initializing dbft {"height": 9358, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:03.361Z debug frostfs-node/morph.go:229 new block {"index": 9357} -2023-12-16T14:45:04.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9357, "blockHeight": 9357, "took": "4.77469ms"} -2023-12-16T14:45:04.359Z INFO sending PrepareRequest {"height": 9358, "view": 0} -2023-12-16T14:45:04.360Z INFO sending Commit {"height": 9358, "view": 0} -2023-12-16T14:45:04.360Z INFO approving block {"height": 9358, "hash": "6905b7faaa78a018146efeeb3fff748aea770b18886deebfef9f87ecb06731ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "79b71f16555f56410daa0b692734946b9761cebbe907585f1654931e61b6e47e"} -2023-12-16T14:45:04.361Z INFO initializing dbft {"height": 9359, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:04.361Z debug frostfs-node/morph.go:229 new block {"index": 9358} -2023-12-16T14:45:05.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9358, "blockHeight": 9358, "took": "4.392218ms"} -2023-12-16T14:45:05.361Z INFO sending PrepareRequest {"height": 9359, "view": 0} -2023-12-16T14:45:05.361Z INFO sending Commit {"height": 9359, "view": 0} -2023-12-16T14:45:05.361Z INFO approving block {"height": 9359, "hash": "7ebdd0bbc6f03ceeb0d624e790c992fa3869da2d39c04c872a951a5c3cbed3a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6905b7faaa78a018146efeeb3fff748aea770b18886deebfef9f87ecb06731ad"} -2023-12-16T14:45:05.362Z INFO initializing dbft {"height": 9360, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:05.362Z debug frostfs-node/morph.go:229 new block {"index": 9359} -2023-12-16T14:45:06.087Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9359, "blockHeight": 9359, "took": "4.01137ms"} -2023-12-16T14:45:06.362Z INFO sending PrepareRequest {"height": 9360, "view": 0} -2023-12-16T14:45:06.362Z INFO sending Commit {"height": 9360, "view": 0} -2023-12-16T14:45:06.363Z INFO approving block {"height": 9360, "hash": "39b6f08a400cac4cab198b3050ba669bf0b59f93b708722555f559b1d7bf3ef0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ebdd0bbc6f03ceeb0d624e790c992fa3869da2d39c04c872a951a5c3cbed3a9"} -2023-12-16T14:45:06.364Z INFO initializing dbft {"height": 9361, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:06.364Z debug frostfs-node/morph.go:229 new block {"index": 9360} -2023-12-16T14:45:07.088Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9360, "blockHeight": 9360, "took": "4.345827ms"} -2023-12-16T14:45:07.364Z INFO sending PrepareRequest {"height": 9361, "view": 0} -2023-12-16T14:45:07.364Z INFO sending Commit {"height": 9361, "view": 0} -2023-12-16T14:45:07.364Z INFO approving block {"height": 9361, "hash": "43d19ee7690cebd54880a44a6fd9cf73b1ce9475c2a45c299213ec61e2d91858", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "39b6f08a400cac4cab198b3050ba669bf0b59f93b708722555f559b1d7bf3ef0"} -2023-12-16T14:45:07.365Z INFO initializing dbft {"height": 9362, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:07.365Z debug frostfs-node/morph.go:229 new block {"index": 9361} -2023-12-16T14:45:08.088Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9361, "blockHeight": 9361, "took": "3.835611ms"} -2023-12-16T14:45:08.366Z INFO sending PrepareRequest {"height": 9362, "view": 0} -2023-12-16T14:45:08.366Z INFO sending Commit {"height": 9362, "view": 0} -2023-12-16T14:45:08.366Z INFO approving block {"height": 9362, "hash": "5855ea13b978e49c6ee42d7057cbd9c376d0a5517c5e39afa291ba089ada319f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43d19ee7690cebd54880a44a6fd9cf73b1ce9475c2a45c299213ec61e2d91858"} -2023-12-16T14:45:08.367Z INFO initializing dbft {"height": 9363, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:08.368Z debug frostfs-node/morph.go:229 new block {"index": 9362} -2023-12-16T14:45:09.091Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9362, "blockHeight": 9362, "took": "5.989775ms"} -2023-12-16T14:45:09.367Z INFO sending PrepareRequest {"height": 9363, "view": 0} -2023-12-16T14:45:09.367Z INFO sending Commit {"height": 9363, "view": 0} -2023-12-16T14:45:09.368Z INFO approving block {"height": 9363, "hash": "fb9611622314f433e8d8e42a93b83e04ae329851f783c41c80f5bf4c4e142e50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5855ea13b978e49c6ee42d7057cbd9c376d0a5517c5e39afa291ba089ada319f"} -2023-12-16T14:45:09.369Z INFO initializing dbft {"height": 9364, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:09.370Z debug frostfs-node/morph.go:229 new block {"index": 9363} -2023-12-16T14:45:10.091Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9363, "blockHeight": 9363, "took": "4.903443ms"} -2023-12-16T14:45:10.369Z INFO sending PrepareRequest {"height": 9364, "view": 0} -2023-12-16T14:45:10.369Z INFO sending Commit {"height": 9364, "view": 0} -2023-12-16T14:45:10.370Z INFO approving block {"height": 9364, "hash": "16af265e5eb91df334cdf6cc4c3248b1992dfd78596926070fe8c4295bba8119", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fb9611622314f433e8d8e42a93b83e04ae329851f783c41c80f5bf4c4e142e50"} -2023-12-16T14:45:10.371Z INFO initializing dbft {"height": 9365, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:10.372Z debug frostfs-node/morph.go:229 new block {"index": 9364} -2023-12-16T14:45:11.091Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9364, "blockHeight": 9364, "took": "3.931015ms"} -2023-12-16T14:45:11.371Z INFO sending PrepareRequest {"height": 9365, "view": 0} -2023-12-16T14:45:11.372Z INFO sending Commit {"height": 9365, "view": 0} -2023-12-16T14:45:11.372Z INFO approving block {"height": 9365, "hash": "082ffc258efed918f8d5e509aa98228cb05252e1b7c1f75d4e1e4bd0a9226857", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "16af265e5eb91df334cdf6cc4c3248b1992dfd78596926070fe8c4295bba8119"} -2023-12-16T14:45:11.373Z INFO initializing dbft {"height": 9366, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:11.374Z debug frostfs-node/morph.go:229 new block {"index": 9365} -2023-12-16T14:45:12.093Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9365, "blockHeight": 9365, "took": "5.599602ms"} -2023-12-16T14:45:12.373Z INFO sending PrepareRequest {"height": 9366, "view": 0} -2023-12-16T14:45:12.373Z INFO sending Commit {"height": 9366, "view": 0} -2023-12-16T14:45:12.374Z INFO approving block {"height": 9366, "hash": "a81a7bfbf8d4e5b66b241fecf677d9a8758a6af76fcfb6abe13d54a420481d59", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "082ffc258efed918f8d5e509aa98228cb05252e1b7c1f75d4e1e4bd0a9226857"} -2023-12-16T14:45:12.374Z INFO initializing dbft {"height": 9367, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:12.375Z debug frostfs-node/morph.go:229 new block {"index": 9366} -2023-12-16T14:45:13.093Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9366, "blockHeight": 9366, "took": "3.994416ms"} -2023-12-16T14:45:13.375Z INFO sending PrepareRequest {"height": 9367, "view": 0} -2023-12-16T14:45:13.375Z INFO sending Commit {"height": 9367, "view": 0} -2023-12-16T14:45:13.375Z INFO approving block {"height": 9367, "hash": "edeeab8b4c55859f20037a607041f5ed112000da8613fa9409928d7a7e53e086", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a81a7bfbf8d4e5b66b241fecf677d9a8758a6af76fcfb6abe13d54a420481d59"} -2023-12-16T14:45:13.376Z INFO initializing dbft {"height": 9368, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:13.377Z debug frostfs-node/morph.go:229 new block {"index": 9367} -2023-12-16T14:45:14.093Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9367, "blockHeight": 9367, "took": "3.993746ms"} -2023-12-16T14:45:14.376Z INFO sending PrepareRequest {"height": 9368, "view": 0} -2023-12-16T14:45:14.376Z INFO sending Commit {"height": 9368, "view": 0} -2023-12-16T14:45:14.377Z INFO approving block {"height": 9368, "hash": "46bf8226d6c9502ee60a5a7be6bbf8f8a1211a835665165452e05bd183e65926", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "edeeab8b4c55859f20037a607041f5ed112000da8613fa9409928d7a7e53e086"} -2023-12-16T14:45:14.378Z INFO initializing dbft {"height": 9369, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:14.379Z debug frostfs-node/morph.go:229 new block {"index": 9368} -2023-12-16T14:45:15.094Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9368, "blockHeight": 9368, "took": "4.12354ms"} -2023-12-16T14:45:15.378Z INFO sending PrepareRequest {"height": 9369, "view": 0} -2023-12-16T14:45:15.378Z INFO sending Commit {"height": 9369, "view": 0} -2023-12-16T14:45:15.379Z INFO approving block {"height": 9369, "hash": "59873b824536a0260d79d2fef9d0652815770a85e8769456685236ebbe0c5a18", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46bf8226d6c9502ee60a5a7be6bbf8f8a1211a835665165452e05bd183e65926"} -2023-12-16T14:45:15.380Z INFO initializing dbft {"height": 9370, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:15.380Z debug frostfs-node/morph.go:229 new block {"index": 9369} -2023-12-16T14:45:16.094Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9369, "blockHeight": 9369, "took": "3.055889ms"} -2023-12-16T14:45:16.379Z INFO sending PrepareRequest {"height": 9370, "view": 0} -2023-12-16T14:45:16.379Z INFO sending Commit {"height": 9370, "view": 0} -2023-12-16T14:45:16.380Z INFO approving block {"height": 9370, "hash": "c7e1f7721e926b498f584eeec4269ada3a771a5ba62743708bb663d3681b7d53", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "59873b824536a0260d79d2fef9d0652815770a85e8769456685236ebbe0c5a18"} -2023-12-16T14:45:16.380Z INFO initializing dbft {"height": 9371, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:16.381Z debug frostfs-node/morph.go:229 new block {"index": 9370} -2023-12-16T14:45:17.096Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9370, "blockHeight": 9370, "took": "5.624464ms"} -2023-12-16T14:45:17.381Z INFO sending PrepareRequest {"height": 9371, "view": 0} -2023-12-16T14:45:17.381Z INFO sending Commit {"height": 9371, "view": 0} -2023-12-16T14:45:17.381Z INFO approving block {"height": 9371, "hash": "dc4830c16f950f976c34296b58700659fcb413d5f4847d3450fc5f2f9c76f181", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7e1f7721e926b498f584eeec4269ada3a771a5ba62743708bb663d3681b7d53"} -2023-12-16T14:45:17.382Z INFO initializing dbft {"height": 9372, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:17.382Z debug frostfs-node/morph.go:229 new block {"index": 9371} -2023-12-16T14:45:18.100Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9371, "blockHeight": 9371, "took": "8.648312ms"} -2023-12-16T14:45:18.382Z INFO sending PrepareRequest {"height": 9372, "view": 0} -2023-12-16T14:45:18.383Z INFO sending Commit {"height": 9372, "view": 0} -2023-12-16T14:45:18.383Z INFO approving block {"height": 9372, "hash": "33a89a7b5417d3470f6d69215e4338de5acdeb14bda6173fce894bf8f83a48f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc4830c16f950f976c34296b58700659fcb413d5f4847d3450fc5f2f9c76f181"} -2023-12-16T14:45:18.384Z INFO initializing dbft {"height": 9373, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:18.385Z debug frostfs-node/morph.go:229 new block {"index": 9372} -2023-12-16T14:45:19.098Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9372, "blockHeight": 9372, "took": "6.121619ms"} -2023-12-16T14:45:19.384Z INFO sending PrepareRequest {"height": 9373, "view": 0} -2023-12-16T14:45:19.384Z INFO sending Commit {"height": 9373, "view": 0} -2023-12-16T14:45:19.385Z INFO approving block {"height": 9373, "hash": "584df663f87f883a4dfcd235660bbcb3b0afe84d619df2deba49e12e35cbd87f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33a89a7b5417d3470f6d69215e4338de5acdeb14bda6173fce894bf8f83a48f9"} -2023-12-16T14:45:19.386Z INFO initializing dbft {"height": 9374, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:19.387Z debug frostfs-node/morph.go:229 new block {"index": 9373} -2023-12-16T14:45:20.097Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9373, "blockHeight": 9373, "took": "3.995297ms"} -2023-12-16T14:45:20.386Z INFO sending PrepareRequest {"height": 9374, "view": 0} -2023-12-16T14:45:20.386Z INFO sending Commit {"height": 9374, "view": 0} -2023-12-16T14:45:20.386Z INFO approving block {"height": 9374, "hash": "99f54d330cf58b136ef84284cbef8dbebce8a3b19a6113778d80ad1586fd46e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "584df663f87f883a4dfcd235660bbcb3b0afe84d619df2deba49e12e35cbd87f"} -2023-12-16T14:45:20.387Z INFO initializing dbft {"height": 9375, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:20.387Z debug frostfs-node/morph.go:229 new block {"index": 9374} -2023-12-16T14:45:21.097Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9374, "blockHeight": 9374, "took": "4.010107ms"} -2023-12-16T14:45:21.387Z INFO sending PrepareRequest {"height": 9375, "view": 0} -2023-12-16T14:45:21.387Z INFO sending Commit {"height": 9375, "view": 0} -2023-12-16T14:45:21.388Z INFO approving block {"height": 9375, "hash": "45553759289fc2ba62c32518ec3044429525097bde109b08be3a64a9a5e9a0c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "99f54d330cf58b136ef84284cbef8dbebce8a3b19a6113778d80ad1586fd46e3"} -2023-12-16T14:45:21.388Z INFO initializing dbft {"height": 9376, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:21.389Z debug frostfs-node/morph.go:229 new block {"index": 9375} -2023-12-16T14:45:22.099Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9375, "blockHeight": 9375, "took": "4.872452ms"} -2023-12-16T14:45:22.388Z INFO sending PrepareRequest {"height": 9376, "view": 0} -2023-12-16T14:45:22.388Z INFO sending Commit {"height": 9376, "view": 0} -2023-12-16T14:45:22.389Z INFO approving block {"height": 9376, "hash": "ed46a6634cf29197b1aa13c4f4ba4aa2bb00717d343af6897c602b88573a5a31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45553759289fc2ba62c32518ec3044429525097bde109b08be3a64a9a5e9a0c3"} -2023-12-16T14:45:22.390Z INFO initializing dbft {"height": 9377, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:22.390Z debug frostfs-node/morph.go:229 new block {"index": 9376} -2023-12-16T14:45:23.100Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9376, "blockHeight": 9376, "took": "4.842322ms"} -2023-12-16T14:45:23.389Z INFO sending PrepareRequest {"height": 9377, "view": 0} -2023-12-16T14:45:23.389Z INFO sending Commit {"height": 9377, "view": 0} -2023-12-16T14:45:23.389Z INFO approving block {"height": 9377, "hash": "5cc5e8f509ac75c9c4f15585d8a3757c0c9de54340dfb2c65595535402eb9f21", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed46a6634cf29197b1aa13c4f4ba4aa2bb00717d343af6897c602b88573a5a31"} -2023-12-16T14:45:23.390Z INFO initializing dbft {"height": 9378, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:23.391Z debug frostfs-node/morph.go:229 new block {"index": 9377} -2023-12-16T14:45:24.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9377, "blockHeight": 9377, "took": "6.818578ms"} -2023-12-16T14:45:24.390Z INFO sending PrepareRequest {"height": 9378, "view": 0} -2023-12-16T14:45:24.390Z INFO sending Commit {"height": 9378, "view": 0} -2023-12-16T14:45:24.390Z INFO approving block {"height": 9378, "hash": "7cd6edba64688b045c721f05beaa251596ff12abab1521d63c741604905368fc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cc5e8f509ac75c9c4f15585d8a3757c0c9de54340dfb2c65595535402eb9f21"} -2023-12-16T14:45:24.391Z INFO initializing dbft {"height": 9379, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:24.392Z debug frostfs-node/morph.go:229 new block {"index": 9378} -2023-12-16T14:45:25.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9378, "blockHeight": 9378, "took": "5.627175ms"} -2023-12-16T14:45:25.391Z INFO sending PrepareRequest {"height": 9379, "view": 0} -2023-12-16T14:45:25.391Z INFO sending Commit {"height": 9379, "view": 0} -2023-12-16T14:45:25.392Z INFO approving block {"height": 9379, "hash": "4813a42bc76c3834a05d407368f12e95a6235d7d40ec387effe3bb78f4c6dc28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cd6edba64688b045c721f05beaa251596ff12abab1521d63c741604905368fc"} -2023-12-16T14:45:25.393Z INFO initializing dbft {"height": 9380, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:25.393Z debug frostfs-node/morph.go:229 new block {"index": 9379} -2023-12-16T14:45:26.100Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9379, "blockHeight": 9379, "took": "3.321149ms"} -2023-12-16T14:45:26.393Z INFO sending PrepareRequest {"height": 9380, "view": 0} -2023-12-16T14:45:26.393Z INFO sending Commit {"height": 9380, "view": 0} -2023-12-16T14:45:26.393Z INFO approving block {"height": 9380, "hash": "4b8f80287fd3f2683d608e0b0cf753e5a422de832962ac4dca9873346cacc2db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4813a42bc76c3834a05d407368f12e95a6235d7d40ec387effe3bb78f4c6dc28"} -2023-12-16T14:45:26.394Z INFO initializing dbft {"height": 9381, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:26.395Z debug frostfs-node/morph.go:229 new block {"index": 9380} -2023-12-16T14:45:27.105Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9380, "blockHeight": 9380, "took": "7.378067ms"} -2023-12-16T14:45:27.394Z INFO sending PrepareRequest {"height": 9381, "view": 0} -2023-12-16T14:45:27.395Z INFO sending Commit {"height": 9381, "view": 0} -2023-12-16T14:45:27.395Z INFO approving block {"height": 9381, "hash": "854a7b25c44d4ebdc7c21d7de322fd631db7dd7aea744b29c97972708d2ede73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b8f80287fd3f2683d608e0b0cf753e5a422de832962ac4dca9873346cacc2db"} -2023-12-16T14:45:27.396Z INFO initializing dbft {"height": 9382, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:27.396Z debug frostfs-node/morph.go:229 new block {"index": 9381} -2023-12-16T14:45:28.101Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9381, "blockHeight": 9381, "took": "3.007207ms"} -2023-12-16T14:45:28.396Z INFO sending PrepareRequest {"height": 9382, "view": 0} -2023-12-16T14:45:28.396Z INFO sending Commit {"height": 9382, "view": 0} -2023-12-16T14:45:28.397Z INFO approving block {"height": 9382, "hash": "2f05ce9f4d981e8d64b25e2f0b3825021dc6324a762291646c4a3742a4fcf919", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "854a7b25c44d4ebdc7c21d7de322fd631db7dd7aea744b29c97972708d2ede73"} -2023-12-16T14:45:28.398Z INFO initializing dbft {"height": 9383, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:28.399Z debug frostfs-node/morph.go:229 new block {"index": 9382} -2023-12-16T14:45:29.102Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9382, "blockHeight": 9382, "took": "3.659277ms"} -2023-12-16T14:45:29.397Z INFO sending PrepareRequest {"height": 9383, "view": 0} -2023-12-16T14:45:29.397Z INFO sending Commit {"height": 9383, "view": 0} -2023-12-16T14:45:29.398Z INFO approving block {"height": 9383, "hash": "36f53d1ab25e57aec0180c7cc57dc25b72355093c4ac2e164e9f306852549782", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2f05ce9f4d981e8d64b25e2f0b3825021dc6324a762291646c4a3742a4fcf919"} -2023-12-16T14:45:29.398Z INFO initializing dbft {"height": 9384, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:29.399Z debug frostfs-node/morph.go:229 new block {"index": 9383} -2023-12-16T14:45:30.103Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9383, "blockHeight": 9383, "took": "3.7777ms"} -2023-12-16T14:45:30.399Z INFO sending PrepareRequest {"height": 9384, "view": 0} -2023-12-16T14:45:30.399Z INFO sending Commit {"height": 9384, "view": 0} -2023-12-16T14:45:30.399Z INFO approving block {"height": 9384, "hash": "7025afb7743b6ac6f7c322315d4a9c0a27db1237f611654f2d0580e038af9d61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36f53d1ab25e57aec0180c7cc57dc25b72355093c4ac2e164e9f306852549782"} -2023-12-16T14:45:30.400Z INFO initializing dbft {"height": 9385, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:30.401Z debug frostfs-node/morph.go:229 new block {"index": 9384} -2023-12-16T14:45:31.106Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9384, "blockHeight": 9384, "took": "6.611011ms"} -2023-12-16T14:45:31.401Z INFO sending PrepareRequest {"height": 9385, "view": 0} -2023-12-16T14:45:31.401Z INFO sending Commit {"height": 9385, "view": 0} -2023-12-16T14:45:31.401Z INFO approving block {"height": 9385, "hash": "486906717a3be55868b515e044ea22859d9f2766ec90a92f23c5ef06be4ab0a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7025afb7743b6ac6f7c322315d4a9c0a27db1237f611654f2d0580e038af9d61"} -2023-12-16T14:45:31.403Z INFO initializing dbft {"height": 9386, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:31.404Z debug frostfs-node/morph.go:229 new block {"index": 9385} -2023-12-16T14:45:32.103Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9385, "blockHeight": 9385, "took": "3.148502ms"} -2023-12-16T14:45:32.402Z INFO sending PrepareRequest {"height": 9386, "view": 0} -2023-12-16T14:45:32.402Z INFO sending Commit {"height": 9386, "view": 0} -2023-12-16T14:45:32.402Z INFO approving block {"height": 9386, "hash": "796cc8bed7df6e58beca4f596d277391340eacb3ab91f9dfa6a89e466aebc104", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "486906717a3be55868b515e044ea22859d9f2766ec90a92f23c5ef06be4ab0a3"} -2023-12-16T14:45:32.403Z INFO initializing dbft {"height": 9387, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:32.403Z debug frostfs-node/morph.go:229 new block {"index": 9386} -2023-12-16T14:45:33.106Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9386, "blockHeight": 9386, "took": "5.622341ms"} -2023-12-16T14:45:33.403Z INFO sending PrepareRequest {"height": 9387, "view": 0} -2023-12-16T14:45:33.404Z INFO sending Commit {"height": 9387, "view": 0} -2023-12-16T14:45:33.404Z INFO approving block {"height": 9387, "hash": "02b44c4701c4adb1184b8da4c692d61127660956aa2c90c983d210a92581864e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "796cc8bed7df6e58beca4f596d277391340eacb3ab91f9dfa6a89e466aebc104"} -2023-12-16T14:45:33.404Z INFO initializing dbft {"height": 9388, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:33.405Z debug frostfs-node/morph.go:229 new block {"index": 9387} -2023-12-16T14:45:34.106Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9387, "blockHeight": 9387, "took": "4.975795ms"} -2023-12-16T14:45:34.405Z INFO sending PrepareRequest {"height": 9388, "view": 0} -2023-12-16T14:45:34.405Z INFO sending Commit {"height": 9388, "view": 0} -2023-12-16T14:45:34.405Z INFO approving block {"height": 9388, "hash": "b0c187089c0046b566b3983b0f626211c3184802061075714ae5ab82039e0e88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02b44c4701c4adb1184b8da4c692d61127660956aa2c90c983d210a92581864e"} -2023-12-16T14:45:34.406Z INFO initializing dbft {"height": 9389, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:34.407Z debug frostfs-node/morph.go:229 new block {"index": 9388} -2023-12-16T14:45:35.106Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9388, "blockHeight": 9388, "took": "5.022977ms"} -2023-12-16T14:45:35.407Z INFO sending PrepareRequest {"height": 9389, "view": 0} -2023-12-16T14:45:35.407Z INFO sending Commit {"height": 9389, "view": 0} -2023-12-16T14:45:35.407Z INFO approving block {"height": 9389, "hash": "b4372127a2f8da7e889bb0013a0f0c4fa92dc2f88566f20582d00f2bbc8aa822", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b0c187089c0046b566b3983b0f626211c3184802061075714ae5ab82039e0e88"} -2023-12-16T14:45:35.408Z INFO initializing dbft {"height": 9390, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:35.409Z debug frostfs-node/morph.go:229 new block {"index": 9389} -2023-12-16T14:45:36.108Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9389, "blockHeight": 9389, "took": "5.777899ms"} -2023-12-16T14:45:36.408Z INFO sending PrepareRequest {"height": 9390, "view": 0} -2023-12-16T14:45:36.408Z INFO sending Commit {"height": 9390, "view": 0} -2023-12-16T14:45:36.409Z INFO approving block {"height": 9390, "hash": "532a7120efed19f91a8e5f2a90b33f61ce017313833f3387fe908525a84b7229", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4372127a2f8da7e889bb0013a0f0c4fa92dc2f88566f20582d00f2bbc8aa822"} -2023-12-16T14:45:36.410Z INFO initializing dbft {"height": 9391, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:36.410Z debug frostfs-node/morph.go:229 new block {"index": 9390} -2023-12-16T14:45:37.108Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9390, "blockHeight": 9390, "took": "4.792439ms"} -2023-12-16T14:45:37.410Z INFO sending PrepareRequest {"height": 9391, "view": 0} -2023-12-16T14:45:37.410Z INFO sending Commit {"height": 9391, "view": 0} -2023-12-16T14:45:37.410Z INFO approving block {"height": 9391, "hash": "b2dc2ddd0ae6da9c93d175e658b34bf7caa6313e86b6c8f6b0ff932e8134497a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "532a7120efed19f91a8e5f2a90b33f61ce017313833f3387fe908525a84b7229"} -2023-12-16T14:45:37.412Z INFO initializing dbft {"height": 9392, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:37.413Z debug frostfs-node/morph.go:229 new block {"index": 9391} -2023-12-16T14:45:38.108Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9391, "blockHeight": 9391, "took": "5.085338ms"} -2023-12-16T14:45:38.411Z INFO sending PrepareRequest {"height": 9392, "view": 0} -2023-12-16T14:45:38.411Z INFO sending Commit {"height": 9392, "view": 0} -2023-12-16T14:45:38.411Z INFO approving block {"height": 9392, "hash": "25dce8324b4261789a009ace441f3aab15b217261c8b7caed6b4028991c45274", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2dc2ddd0ae6da9c93d175e658b34bf7caa6313e86b6c8f6b0ff932e8134497a"} -2023-12-16T14:45:38.412Z INFO initializing dbft {"height": 9393, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:38.412Z debug frostfs-node/morph.go:229 new block {"index": 9392} -2023-12-16T14:45:39.109Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9392, "blockHeight": 9392, "took": "5.005705ms"} -2023-12-16T14:45:39.412Z INFO sending PrepareRequest {"height": 9393, "view": 0} -2023-12-16T14:45:39.412Z INFO sending Commit {"height": 9393, "view": 0} -2023-12-16T14:45:39.413Z INFO approving block {"height": 9393, "hash": "42699a17c3f681d34ff63001aecfdc2fb6837931337b407dd8fdb6d96c2a935a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25dce8324b4261789a009ace441f3aab15b217261c8b7caed6b4028991c45274"} -2023-12-16T14:45:39.414Z INFO initializing dbft {"height": 9394, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:39.414Z debug frostfs-node/morph.go:229 new block {"index": 9393} -2023-12-16T14:45:40.111Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9393, "blockHeight": 9393, "took": "6.208231ms"} -2023-12-16T14:45:40.414Z INFO sending PrepareRequest {"height": 9394, "view": 0} -2023-12-16T14:45:40.414Z INFO sending Commit {"height": 9394, "view": 0} -2023-12-16T14:45:40.414Z INFO approving block {"height": 9394, "hash": "7f0b193c19be4f8842d132d2054cf38c3c12b920b29f50e1b6aa7eba705a82d1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42699a17c3f681d34ff63001aecfdc2fb6837931337b407dd8fdb6d96c2a935a"} -2023-12-16T14:45:40.415Z INFO initializing dbft {"height": 9395, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:40.415Z debug frostfs-node/morph.go:229 new block {"index": 9394} -2023-12-16T14:45:41.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9394, "blockHeight": 9394, "took": "5.049967ms"} -2023-12-16T14:45:41.416Z INFO sending PrepareRequest {"height": 9395, "view": 0} -2023-12-16T14:45:41.416Z INFO sending Commit {"height": 9395, "view": 0} -2023-12-16T14:45:41.416Z INFO approving block {"height": 9395, "hash": "ec5c33bd61b441dfe07bae3eeb984699d30daec9ac4fa6da407201730c7f10f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f0b193c19be4f8842d132d2054cf38c3c12b920b29f50e1b6aa7eba705a82d1"} -2023-12-16T14:45:41.418Z INFO initializing dbft {"height": 9396, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:41.419Z debug frostfs-node/morph.go:229 new block {"index": 9395} -2023-12-16T14:45:42.113Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9395, "blockHeight": 9395, "took": "6.454289ms"} -2023-12-16T14:45:42.417Z INFO sending PrepareRequest {"height": 9396, "view": 0} -2023-12-16T14:45:42.418Z INFO sending Commit {"height": 9396, "view": 0} -2023-12-16T14:45:42.418Z INFO approving block {"height": 9396, "hash": "fed0206830074c11a7416405c8d20b3ad046823766e24f573d14b3b560e24ffd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec5c33bd61b441dfe07bae3eeb984699d30daec9ac4fa6da407201730c7f10f9"} -2023-12-16T14:45:42.420Z INFO initializing dbft {"height": 9397, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:42.421Z debug frostfs-node/morph.go:229 new block {"index": 9396} -2023-12-16T14:45:43.110Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9396, "blockHeight": 9396, "took": "3.07252ms"} -2023-12-16T14:45:43.419Z INFO sending PrepareRequest {"height": 9397, "view": 0} -2023-12-16T14:45:43.419Z INFO sending Commit {"height": 9397, "view": 0} -2023-12-16T14:45:43.420Z INFO approving block {"height": 9397, "hash": "6dc9a4904d83e90a9eac2e9e6c7014255cb6ad959ff45f4057e972513cd48682", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fed0206830074c11a7416405c8d20b3ad046823766e24f573d14b3b560e24ffd"} -2023-12-16T14:45:43.421Z INFO initializing dbft {"height": 9398, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:43.422Z debug frostfs-node/morph.go:229 new block {"index": 9397} -2023-12-16T14:45:43.425Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:45:43.427Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 39, "iteration": 3, "error": "no data for 2 iteration in 39 epoch for consumers's trusts"} -2023-12-16T14:45:43.431Z INFO runtime log {"tx": "e474fd578aa120ff50749e0431a29a2c756717d5b23792fd7963315b7e84b0e6", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:45:44.116Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9397, "blockHeight": 9397, "took": "8.022675ms"} -2023-12-16T14:45:44.420Z INFO sending PrepareRequest {"height": 9398, "view": 0} -2023-12-16T14:45:44.420Z INFO sending Commit {"height": 9398, "view": 0} -2023-12-16T14:45:44.420Z INFO approving block {"height": 9398, "hash": "104e75dd41cf6fbd2c6af989efcfa94af527ec548ab93379898faae8699310a2", "tx_count": 1, "merkle": "89e63d2b72bd7220c101c82a72ac89c253360c78ebba936eb17c7ba297784e12", "prev": "6dc9a4904d83e90a9eac2e9e6c7014255cb6ad959ff45f4057e972513cd48682"} -2023-12-16T14:45:44.421Z INFO runtime log {"tx": "124e7897a27b7cb16e93baeb780c3653c289ac722ac801c12072bd722b3de689", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:45:44.422Z INFO initializing dbft {"height": 9399, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:44.423Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 41} -2023-12-16T14:45:44.423Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:45:44.423Z debug frostfs-node/morph.go:229 new block {"index": 9398} -2023-12-16T14:45:44.423Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:45:44.423Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 41} -2023-12-16T14:45:44.423Z debug controller/calls.go:95 starting to report local trust values {"epoch": 40} -2023-12-16T14:45:44.423Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 41} -2023-12-16T14:45:44.423Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-16T14:45:44.423Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 41} -2023-12-16T14:45:44.423Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 40} -2023-12-16T14:45:44.423Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 41} -2023-12-16T14:45:44.425Z debug controller/calls.go:146 reporting successfully finished {"epoch": 40} -2023-12-16T14:45:44.425Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 40} -2023-12-16T14:45:44.426Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:45:44.429Z INFO runtime log {"tx": "f535216a04b1f900f62ee49d21846e7d470888ac21715f971b2acc4b81233840", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:45:44.431Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9401, "tx_hash": "9803c4bef52daffaaf8b8d213fe4138d101d19405d8ba1dc4f877106ca574b78"} -2023-12-16T14:45:44.435Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 9500, "fallback_valid_for": 40, "tx_hash": "12a40eb1c844dda5a98d8d5eebdd2aaf679fd9c3b9da3f303c2f6fe46760927a"} -2023-12-16T14:45:44.437Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:45:44.437Z info audit/handlers.go:13 new round of audit {"epoch": 41} -2023-12-16T14:45:44.437Z info settlement/calls.go:26 new audit settlement event {"epoch": 41} -2023-12-16T14:45:44.437Z info settlement/handlers.go:14 process audit settlements {"epoch": 41} -2023-12-16T14:45:44.437Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 41} -2023-12-16T14:45:44.439Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-16T14:45:44.439Z info settlement/handlers.go:18 audit processing finished {"epoch": 41} -2023-12-16T14:45:44.440Z info audit/process.go:39 select containers for audit {"epoch": 41, "amount": 0} -2023-12-16T14:45:44.442Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9401, "tx_hash": "990a05842749d29c930e02229108e06777bbc035f9de540a257fc939383ac158"} -2023-12-16T14:45:45.116Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 9398, "blockHeight": 9398, "took": "7.310174ms"} -2023-12-16T14:45:45.422Z INFO sending PrepareRequest {"height": 9399, "view": 0} -2023-12-16T14:45:45.422Z INFO sending Commit {"height": 9399, "view": 0} -2023-12-16T14:45:45.422Z INFO approving block {"height": 9399, "hash": "e62e1bff0201bb343a17c47dfd4a1219e4576ebf8625d566ada2997a0bd208b7", "tx_count": 3, "merkle": "5d863c7c481579794f6dc0eed43eeb01a36de68eee4a698702555ecdf8d5c3ef", "prev": "104e75dd41cf6fbd2c6af989efcfa94af527ec548ab93379898faae8699310a2"} -2023-12-16T14:45:45.423Z INFO runtime log {"tx": "727358f4659239b1c3e64f71b54807a08ca1cc05730255a121d4c183c6e03da7", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:45:45.424Z INFO initializing dbft {"height": 9400, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:45.425Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 40} -2023-12-16T14:45:45.425Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 40} -2023-12-16T14:45:45.425Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 40} -2023-12-16T14:45:45.426Z debug frostfs-node/morph.go:229 new block {"index": 9399} -2023-12-16T14:45:46.116Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 9399, "blockHeight": 9399, "took": "6.941694ms"} -2023-12-16T14:45:46.423Z INFO sending PrepareRequest {"height": 9400, "view": 0} -2023-12-16T14:45:46.423Z INFO sending Commit {"height": 9400, "view": 0} -2023-12-16T14:45:46.423Z INFO approving block {"height": 9400, "hash": "17b09220e1b492b24ff6130d933ed4bfc46c6847d148d3e913e0d70875a2cf3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e62e1bff0201bb343a17c47dfd4a1219e4576ebf8625d566ada2997a0bd208b7"} -2023-12-16T14:45:46.425Z INFO initializing dbft {"height": 9401, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:46.425Z debug frostfs-node/morph.go:229 new block {"index": 9400} -2023-12-16T14:45:46.428Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:45:46.428Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:45:46.429Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:45:47.115Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9400, "blockHeight": 9400, "took": "4.334623ms"} -2023-12-16T14:45:47.424Z INFO sending PrepareRequest {"height": 9401, "view": 0} -2023-12-16T14:45:47.424Z INFO sending Commit {"height": 9401, "view": 0} -2023-12-16T14:45:47.424Z INFO approving block {"height": 9401, "hash": "8d90aa96e5e2ebb3059ffbb17da31d4b2e8e118685c2b87607f331f815ff38bf", "tx_count": 2, "merkle": "bd1939e94e797330df1e0e3c415d84555cc801f6f20bd68919295c0aa61cfe31", "prev": "17b09220e1b492b24ff6130d933ed4bfc46c6847d148d3e913e0d70875a2cf3c"} -2023-12-16T14:45:47.425Z INFO runtime log {"tx": "a18bee926cad5a1fe4771657b8de00bae31723fb399a9023f4a3f3bda97dccba", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:45:47.425Z INFO runtime log {"tx": "a18bee926cad5a1fe4771657b8de00bae31723fb399a9023f4a3f3bda97dccba", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:45:47.426Z INFO initializing dbft {"height": 9402, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:47.426Z debug frostfs-node/morph.go:229 new block {"index": 9401} -2023-12-16T14:45:48.114Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9401, "blockHeight": 9401, "took": "3.823212ms"} -2023-12-16T14:45:48.426Z INFO sending PrepareRequest {"height": 9402, "view": 0} -2023-12-16T14:45:48.426Z INFO sending Commit {"height": 9402, "view": 0} -2023-12-16T14:45:48.426Z INFO approving block {"height": 9402, "hash": "b54506780c1436c8d3927410e8251833dd06886f703edb8408efcc708dac753f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d90aa96e5e2ebb3059ffbb17da31d4b2e8e118685c2b87607f331f815ff38bf"} -2023-12-16T14:45:48.428Z INFO initializing dbft {"height": 9403, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:48.428Z debug frostfs-node/morph.go:229 new block {"index": 9402} -2023-12-16T14:45:49.117Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9402, "blockHeight": 9402, "took": "5.858761ms"} -2023-12-16T14:45:49.427Z INFO sending PrepareRequest {"height": 9403, "view": 0} -2023-12-16T14:45:49.427Z INFO sending Commit {"height": 9403, "view": 0} -2023-12-16T14:45:49.427Z INFO approving block {"height": 9403, "hash": "7e2ce0e245221ba82c3af8c66b64b64985aa24acb0a841ebf2a8a38cdd1748d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b54506780c1436c8d3927410e8251833dd06886f703edb8408efcc708dac753f"} -2023-12-16T14:45:49.428Z INFO initializing dbft {"height": 9404, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:49.429Z debug frostfs-node/morph.go:229 new block {"index": 9403} -2023-12-16T14:45:50.115Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9403, "blockHeight": 9403, "took": "3.383468ms"} -2023-12-16T14:45:50.428Z INFO sending PrepareRequest {"height": 9404, "view": 0} -2023-12-16T14:45:50.428Z INFO sending Commit {"height": 9404, "view": 0} -2023-12-16T14:45:50.428Z INFO approving block {"height": 9404, "hash": "e2062c7f12b39fa01e3a82f3e7d039f6f152f30e9787098e6bd68c18d873bc57", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e2ce0e245221ba82c3af8c66b64b64985aa24acb0a841ebf2a8a38cdd1748d2"} -2023-12-16T14:45:50.429Z INFO initializing dbft {"height": 9405, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:50.429Z debug frostfs-node/morph.go:229 new block {"index": 9404} -2023-12-16T14:45:51.117Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9404, "blockHeight": 9404, "took": "4.339086ms"} -2023-12-16T14:45:51.429Z INFO sending PrepareRequest {"height": 9405, "view": 0} -2023-12-16T14:45:51.430Z INFO sending Commit {"height": 9405, "view": 0} -2023-12-16T14:45:51.430Z INFO approving block {"height": 9405, "hash": "306a0a742fa8eed2a225b1dae20ad73c745002c38852624f65415151a9d4be41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2062c7f12b39fa01e3a82f3e7d039f6f152f30e9787098e6bd68c18d873bc57"} -2023-12-16T14:45:51.431Z INFO initializing dbft {"height": 9406, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:51.432Z debug frostfs-node/morph.go:229 new block {"index": 9405} -2023-12-16T14:45:52.118Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9405, "blockHeight": 9405, "took": "4.018942ms"} -2023-12-16T14:45:52.430Z INFO sending PrepareRequest {"height": 9406, "view": 0} -2023-12-16T14:45:52.431Z INFO sending Commit {"height": 9406, "view": 0} -2023-12-16T14:45:52.431Z INFO approving block {"height": 9406, "hash": "795166cf4364f17e6565fedfae47e7dfa3c77f29e0c9ff08c9caf4fb59939576", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "306a0a742fa8eed2a225b1dae20ad73c745002c38852624f65415151a9d4be41"} -2023-12-16T14:45:52.432Z INFO initializing dbft {"height": 9407, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:52.432Z debug frostfs-node/morph.go:229 new block {"index": 9406} -2023-12-16T14:45:53.118Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9406, "blockHeight": 9406, "took": "3.456501ms"} -2023-12-16T14:45:53.431Z INFO sending PrepareRequest {"height": 9407, "view": 0} -2023-12-16T14:45:53.431Z INFO sending Commit {"height": 9407, "view": 0} -2023-12-16T14:45:53.431Z INFO approving block {"height": 9407, "hash": "57193f97180e50cace8f5eda80aeac4631d40f431b88b3ae9f728434b5a9ebbe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "795166cf4364f17e6565fedfae47e7dfa3c77f29e0c9ff08c9caf4fb59939576"} -2023-12-16T14:45:53.432Z INFO initializing dbft {"height": 9408, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:53.433Z debug frostfs-node/morph.go:229 new block {"index": 9407} -2023-12-16T14:45:54.118Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9407, "blockHeight": 9407, "took": "3.157022ms"} -2023-12-16T14:45:54.433Z INFO sending PrepareRequest {"height": 9408, "view": 0} -2023-12-16T14:45:54.433Z INFO sending Commit {"height": 9408, "view": 0} -2023-12-16T14:45:54.433Z INFO approving block {"height": 9408, "hash": "14cfc2169f4a4e6b1c09e699e63c273cf10bd5e8841e25bbab54cbfec8624790", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57193f97180e50cace8f5eda80aeac4631d40f431b88b3ae9f728434b5a9ebbe"} -2023-12-16T14:45:54.434Z INFO initializing dbft {"height": 9409, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:54.435Z debug frostfs-node/morph.go:229 new block {"index": 9408} -2023-12-16T14:45:55.121Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9408, "blockHeight": 9408, "took": "5.584113ms"} -2023-12-16T14:45:55.434Z INFO sending PrepareRequest {"height": 9409, "view": 0} -2023-12-16T14:45:55.435Z INFO sending Commit {"height": 9409, "view": 0} -2023-12-16T14:45:55.435Z INFO approving block {"height": 9409, "hash": "b8b0d9cc8de0a22450a0a50438912b057de7a911d07e00dd46c00201abdd59ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14cfc2169f4a4e6b1c09e699e63c273cf10bd5e8841e25bbab54cbfec8624790"} -2023-12-16T14:45:55.436Z INFO initializing dbft {"height": 9410, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:55.437Z debug frostfs-node/morph.go:229 new block {"index": 9409} -2023-12-16T14:45:56.121Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9409, "blockHeight": 9409, "took": "4.709957ms"} -2023-12-16T14:45:56.436Z INFO sending PrepareRequest {"height": 9410, "view": 0} -2023-12-16T14:45:56.436Z INFO sending Commit {"height": 9410, "view": 0} -2023-12-16T14:45:56.436Z INFO approving block {"height": 9410, "hash": "bd68819dafb63298398546d8dff9685dba244b592f11d877925ccbf62c6d91b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8b0d9cc8de0a22450a0a50438912b057de7a911d07e00dd46c00201abdd59ff"} -2023-12-16T14:45:56.438Z INFO initializing dbft {"height": 9411, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:56.438Z debug frostfs-node/morph.go:229 new block {"index": 9410} -2023-12-16T14:45:57.122Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9410, "blockHeight": 9410, "took": "5.340425ms"} -2023-12-16T14:45:57.437Z INFO sending PrepareRequest {"height": 9411, "view": 0} -2023-12-16T14:45:57.437Z INFO sending Commit {"height": 9411, "view": 0} -2023-12-16T14:45:57.438Z INFO approving block {"height": 9411, "hash": "6c7b8ab7a5b2cf2e9466517462a1a47a74f2b310f93dce79d463679bdae5417a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd68819dafb63298398546d8dff9685dba244b592f11d877925ccbf62c6d91b6"} -2023-12-16T14:45:57.439Z INFO initializing dbft {"height": 9412, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:57.439Z debug frostfs-node/morph.go:229 new block {"index": 9411} -2023-12-16T14:45:58.123Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9411, "blockHeight": 9411, "took": "5.768438ms"} -2023-12-16T14:45:58.439Z INFO sending PrepareRequest {"height": 9412, "view": 0} -2023-12-16T14:45:58.440Z INFO sending Commit {"height": 9412, "view": 0} -2023-12-16T14:45:58.440Z INFO approving block {"height": 9412, "hash": "b4357813db054f4158e665d283beed58d62bc7c6d3ee73cff02bc9468cd659ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c7b8ab7a5b2cf2e9466517462a1a47a74f2b310f93dce79d463679bdae5417a"} -2023-12-16T14:45:58.442Z INFO initializing dbft {"height": 9413, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:58.442Z debug frostfs-node/morph.go:229 new block {"index": 9412} -2023-12-16T14:45:59.124Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9412, "blockHeight": 9412, "took": "6.077587ms"} -2023-12-16T14:45:59.441Z INFO sending PrepareRequest {"height": 9413, "view": 0} -2023-12-16T14:45:59.441Z INFO sending Commit {"height": 9413, "view": 0} -2023-12-16T14:45:59.441Z INFO approving block {"height": 9413, "hash": "8edbd7216b6b739483a0ef15d0bc984e2d19e4f7b7b3112d34c3ed59951a8826", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b4357813db054f4158e665d283beed58d62bc7c6d3ee73cff02bc9468cd659ad"} -2023-12-16T14:45:59.442Z INFO initializing dbft {"height": 9414, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:45:59.443Z debug frostfs-node/morph.go:229 new block {"index": 9413} -2023-12-16T14:46:00.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9413, "blockHeight": 9413, "took": "7.832722ms"} -2023-12-16T14:46:00.442Z INFO sending PrepareRequest {"height": 9414, "view": 0} -2023-12-16T14:46:00.442Z INFO sending Commit {"height": 9414, "view": 0} -2023-12-16T14:46:00.442Z INFO approving block {"height": 9414, "hash": "afe35ad3856282b1b1d3d68f1babf28a11b6727c1741607f80778defc4a3a8f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8edbd7216b6b739483a0ef15d0bc984e2d19e4f7b7b3112d34c3ed59951a8826"} -2023-12-16T14:46:00.443Z INFO initializing dbft {"height": 9415, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:00.444Z debug frostfs-node/morph.go:229 new block {"index": 9414} -2023-12-16T14:46:01.124Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9414, "blockHeight": 9414, "took": "4.411038ms"} -2023-12-16T14:46:01.444Z INFO sending PrepareRequest {"height": 9415, "view": 0} -2023-12-16T14:46:01.444Z INFO sending Commit {"height": 9415, "view": 0} -2023-12-16T14:46:01.444Z INFO approving block {"height": 9415, "hash": "d9030fb74266766f12d146c7b736546662b01c40e4784006cf8b6e46fe83c822", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afe35ad3856282b1b1d3d68f1babf28a11b6727c1741607f80778defc4a3a8f1"} -2023-12-16T14:46:01.445Z INFO initializing dbft {"height": 9416, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:01.446Z debug frostfs-node/morph.go:229 new block {"index": 9415} -2023-12-16T14:46:02.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9415, "blockHeight": 9415, "took": "6.253042ms"} -2023-12-16T14:46:02.445Z INFO sending PrepareRequest {"height": 9416, "view": 0} -2023-12-16T14:46:02.446Z INFO sending Commit {"height": 9416, "view": 0} -2023-12-16T14:46:02.446Z INFO approving block {"height": 9416, "hash": "dac5b095e356e4d4cd1cf9b614fe82fa03b68825e160aba5c9356e31801c5dee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d9030fb74266766f12d146c7b736546662b01c40e4784006cf8b6e46fe83c822"} -2023-12-16T14:46:02.447Z INFO initializing dbft {"height": 9417, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:02.448Z debug frostfs-node/morph.go:229 new block {"index": 9416} -2023-12-16T14:46:03.125Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9416, "blockHeight": 9416, "took": "4.117874ms"} -2023-12-16T14:46:03.447Z INFO sending PrepareRequest {"height": 9417, "view": 0} -2023-12-16T14:46:03.447Z INFO sending Commit {"height": 9417, "view": 0} -2023-12-16T14:46:03.448Z INFO approving block {"height": 9417, "hash": "a290dba2ccbd57dc14c5e45d3fdfd0f70a27d603b3abb8d9dcf2824b78e99292", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dac5b095e356e4d4cd1cf9b614fe82fa03b68825e160aba5c9356e31801c5dee"} -2023-12-16T14:46:03.449Z INFO initializing dbft {"height": 9418, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:03.450Z debug frostfs-node/morph.go:229 new block {"index": 9417} -2023-12-16T14:46:04.125Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9417, "blockHeight": 9417, "took": "2.958756ms"} -2023-12-16T14:46:04.448Z INFO sending PrepareRequest {"height": 9418, "view": 0} -2023-12-16T14:46:04.449Z INFO sending Commit {"height": 9418, "view": 0} -2023-12-16T14:46:04.449Z INFO approving block {"height": 9418, "hash": "15d8d2e32b4201c6f420ef50004f7db097fb26111f63bddc979c2c07d5fd3194", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a290dba2ccbd57dc14c5e45d3fdfd0f70a27d603b3abb8d9dcf2824b78e99292"} -2023-12-16T14:46:04.450Z INFO initializing dbft {"height": 9419, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:04.450Z debug frostfs-node/morph.go:229 new block {"index": 9418} -2023-12-16T14:46:05.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9418, "blockHeight": 9418, "took": "3.881875ms"} -2023-12-16T14:46:05.450Z INFO sending PrepareRequest {"height": 9419, "view": 0} -2023-12-16T14:46:05.450Z INFO sending Commit {"height": 9419, "view": 0} -2023-12-16T14:46:05.451Z INFO approving block {"height": 9419, "hash": "7b6176178403b24422f57b4eef15efee20f2b6f3f2075b29456b0fd58456c19c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15d8d2e32b4201c6f420ef50004f7db097fb26111f63bddc979c2c07d5fd3194"} -2023-12-16T14:46:05.452Z INFO initializing dbft {"height": 9420, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:05.453Z debug frostfs-node/morph.go:229 new block {"index": 9419} -2023-12-16T14:46:06.130Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9419, "blockHeight": 9419, "took": "7.011027ms"} -2023-12-16T14:46:06.451Z INFO sending PrepareRequest {"height": 9420, "view": 0} -2023-12-16T14:46:06.451Z INFO sending Commit {"height": 9420, "view": 0} -2023-12-16T14:46:06.452Z INFO approving block {"height": 9420, "hash": "ca285d48bc0071df806f3b0807ad4de0f05e2f05f29f7a3b08884b216961ea4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7b6176178403b24422f57b4eef15efee20f2b6f3f2075b29456b0fd58456c19c"} -2023-12-16T14:46:06.453Z INFO initializing dbft {"height": 9421, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:06.453Z debug frostfs-node/morph.go:229 new block {"index": 9420} -2023-12-16T14:46:07.126Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9420, "blockHeight": 9420, "took": "3.221494ms"} -2023-12-16T14:46:07.453Z INFO sending PrepareRequest {"height": 9421, "view": 0} -2023-12-16T14:46:07.453Z INFO sending Commit {"height": 9421, "view": 0} -2023-12-16T14:46:07.453Z INFO approving block {"height": 9421, "hash": "827737ee0bc40df45f00270cdab94fed014305182f171cd765c9814c77ee460e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca285d48bc0071df806f3b0807ad4de0f05e2f05f29f7a3b08884b216961ea4a"} -2023-12-16T14:46:07.454Z INFO initializing dbft {"height": 9422, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:07.455Z debug frostfs-node/morph.go:229 new block {"index": 9421} -2023-12-16T14:46:08.127Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9421, "blockHeight": 9421, "took": "3.435019ms"} -2023-12-16T14:46:08.454Z INFO sending PrepareRequest {"height": 9422, "view": 0} -2023-12-16T14:46:08.454Z INFO sending Commit {"height": 9422, "view": 0} -2023-12-16T14:46:08.455Z INFO approving block {"height": 9422, "hash": "aad3887e0c5a3f60d7f872feb459304d0d2c87fcc0fd008b91462b4ae949207a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "827737ee0bc40df45f00270cdab94fed014305182f171cd765c9814c77ee460e"} -2023-12-16T14:46:08.456Z INFO initializing dbft {"height": 9423, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:08.456Z debug frostfs-node/morph.go:229 new block {"index": 9422} -2023-12-16T14:46:09.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9422, "blockHeight": 9422, "took": "3.76965ms"} -2023-12-16T14:46:09.456Z INFO sending PrepareRequest {"height": 9423, "view": 0} -2023-12-16T14:46:09.456Z INFO sending Commit {"height": 9423, "view": 0} -2023-12-16T14:46:09.456Z INFO approving block {"height": 9423, "hash": "efbd9ef24421eb789d3d521e8358a99a72e6c2915dd3259b60f277c38e84ecf2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aad3887e0c5a3f60d7f872feb459304d0d2c87fcc0fd008b91462b4ae949207a"} -2023-12-16T14:46:09.457Z INFO initializing dbft {"height": 9424, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:09.458Z debug frostfs-node/morph.go:229 new block {"index": 9423} -2023-12-16T14:46:10.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9423, "blockHeight": 9423, "took": "3.130512ms"} -2023-12-16T14:46:10.457Z INFO sending PrepareRequest {"height": 9424, "view": 0} -2023-12-16T14:46:10.458Z INFO sending Commit {"height": 9424, "view": 0} -2023-12-16T14:46:10.458Z INFO approving block {"height": 9424, "hash": "a3654d78962e8a5279fefcb13ed482718d79f5d23f6a46c4e16729df4939a6f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "efbd9ef24421eb789d3d521e8358a99a72e6c2915dd3259b60f277c38e84ecf2"} -2023-12-16T14:46:10.459Z INFO initializing dbft {"height": 9425, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:10.459Z debug frostfs-node/morph.go:229 new block {"index": 9424} -2023-12-16T14:46:11.128Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9424, "blockHeight": 9424, "took": "3.452941ms"} -2023-12-16T14:46:11.459Z INFO sending PrepareRequest {"height": 9425, "view": 0} -2023-12-16T14:46:11.459Z INFO sending Commit {"height": 9425, "view": 0} -2023-12-16T14:46:11.460Z INFO approving block {"height": 9425, "hash": "45a967c3a69bf8d03fa3d18b5d35ac79da336d34bd90dd32f54088f17fac5a71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3654d78962e8a5279fefcb13ed482718d79f5d23f6a46c4e16729df4939a6f5"} -2023-12-16T14:46:11.461Z INFO initializing dbft {"height": 9426, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:11.462Z debug frostfs-node/morph.go:229 new block {"index": 9425} -2023-12-16T14:46:12.129Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9425, "blockHeight": 9425, "took": "3.360988ms"} -2023-12-16T14:46:12.460Z INFO sending PrepareRequest {"height": 9426, "view": 0} -2023-12-16T14:46:12.460Z INFO sending Commit {"height": 9426, "view": 0} -2023-12-16T14:46:12.461Z INFO approving block {"height": 9426, "hash": "532d3ccbde6310ca0de4fd821c6c856309b23449b096cd2813ffa0f7f68eec40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45a967c3a69bf8d03fa3d18b5d35ac79da336d34bd90dd32f54088f17fac5a71"} -2023-12-16T14:46:12.462Z INFO initializing dbft {"height": 9427, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:12.462Z debug frostfs-node/morph.go:229 new block {"index": 9426} -2023-12-16T14:46:13.129Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9426, "blockHeight": 9426, "took": "3.427349ms"} -2023-12-16T14:46:13.462Z INFO sending PrepareRequest {"height": 9427, "view": 0} -2023-12-16T14:46:13.462Z INFO sending Commit {"height": 9427, "view": 0} -2023-12-16T14:46:13.462Z INFO approving block {"height": 9427, "hash": "4503904dfd6e88e55866dbc81963a956446c30afa7e9c6c268a57f1690ac0fcb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "532d3ccbde6310ca0de4fd821c6c856309b23449b096cd2813ffa0f7f68eec40"} -2023-12-16T14:46:13.463Z INFO initializing dbft {"height": 9428, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:13.464Z debug frostfs-node/morph.go:229 new block {"index": 9427} -2023-12-16T14:46:14.130Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9427, "blockHeight": 9427, "took": "3.503792ms"} -2023-12-16T14:46:14.463Z INFO sending PrepareRequest {"height": 9428, "view": 0} -2023-12-16T14:46:14.463Z INFO sending Commit {"height": 9428, "view": 0} -2023-12-16T14:46:14.464Z INFO approving block {"height": 9428, "hash": "3d2c67ea015b8672e54a6268f78fe584976b4733803badc9c9c01eac2e83d6bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4503904dfd6e88e55866dbc81963a956446c30afa7e9c6c268a57f1690ac0fcb"} -2023-12-16T14:46:14.464Z INFO initializing dbft {"height": 9429, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:14.465Z debug frostfs-node/morph.go:229 new block {"index": 9428} -2023-12-16T14:46:15.130Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9428, "blockHeight": 9428, "took": "3.267546ms"} -2023-12-16T14:46:15.465Z INFO sending PrepareRequest {"height": 9429, "view": 0} -2023-12-16T14:46:15.465Z INFO sending Commit {"height": 9429, "view": 0} -2023-12-16T14:46:15.465Z INFO approving block {"height": 9429, "hash": "d76f73b34983c01cfa3be48c91bacfc321a57234417ec59eb4e041c8ec631471", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d2c67ea015b8672e54a6268f78fe584976b4733803badc9c9c01eac2e83d6bd"} -2023-12-16T14:46:15.466Z INFO initializing dbft {"height": 9430, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:15.466Z debug frostfs-node/morph.go:229 new block {"index": 9429} -2023-12-16T14:46:16.132Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9429, "blockHeight": 9429, "took": "4.78168ms"} -2023-12-16T14:46:16.466Z INFO sending PrepareRequest {"height": 9430, "view": 0} -2023-12-16T14:46:16.466Z INFO sending Commit {"height": 9430, "view": 0} -2023-12-16T14:46:16.466Z INFO approving block {"height": 9430, "hash": "d1f1e12d3d09a743bf30d2e557403a009ac340b24761e83e3608194b90b79b16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d76f73b34983c01cfa3be48c91bacfc321a57234417ec59eb4e041c8ec631471"} -2023-12-16T14:46:16.468Z INFO initializing dbft {"height": 9431, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:16.469Z debug frostfs-node/morph.go:229 new block {"index": 9430} -2023-12-16T14:46:17.134Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9430, "blockHeight": 9430, "took": "6.521729ms"} -2023-12-16T14:46:17.467Z INFO sending PrepareRequest {"height": 9431, "view": 0} -2023-12-16T14:46:17.467Z INFO sending Commit {"height": 9431, "view": 0} -2023-12-16T14:46:17.468Z INFO approving block {"height": 9431, "hash": "d367341dcb09a8327c055ec98f8ccc2df6b6004fdeea124871de5771771281c1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1f1e12d3d09a743bf30d2e557403a009ac340b24761e83e3608194b90b79b16"} -2023-12-16T14:46:17.469Z INFO initializing dbft {"height": 9432, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:17.469Z debug frostfs-node/morph.go:229 new block {"index": 9431} -2023-12-16T14:46:18.132Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9431, "blockHeight": 9431, "took": "3.28296ms"} -2023-12-16T14:46:18.470Z INFO sending PrepareRequest {"height": 9432, "view": 0} -2023-12-16T14:46:18.470Z INFO sending Commit {"height": 9432, "view": 0} -2023-12-16T14:46:18.470Z INFO approving block {"height": 9432, "hash": "62e90912166505ba1f5e6236789dcace54ec5ce73c961a57502de7419fd45c65", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d367341dcb09a8327c055ec98f8ccc2df6b6004fdeea124871de5771771281c1"} -2023-12-16T14:46:18.472Z INFO initializing dbft {"height": 9433, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:18.473Z debug frostfs-node/morph.go:229 new block {"index": 9432} -2023-12-16T14:46:19.137Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9432, "blockHeight": 9432, "took": "7.292782ms"} -2023-12-16T14:46:19.472Z INFO sending PrepareRequest {"height": 9433, "view": 0} -2023-12-16T14:46:19.472Z INFO sending Commit {"height": 9433, "view": 0} -2023-12-16T14:46:19.472Z INFO approving block {"height": 9433, "hash": "b09481ee1e4ae136a56990eaae29d5bb937fb4f5a5fd09cbe1d784bfdb4329a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "62e90912166505ba1f5e6236789dcace54ec5ce73c961a57502de7419fd45c65"} -2023-12-16T14:46:19.473Z INFO initializing dbft {"height": 9434, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:19.473Z debug frostfs-node/morph.go:229 new block {"index": 9433} -2023-12-16T14:46:20.137Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9433, "blockHeight": 9433, "took": "6.87725ms"} -2023-12-16T14:46:20.473Z INFO sending PrepareRequest {"height": 9434, "view": 0} -2023-12-16T14:46:20.473Z INFO sending Commit {"height": 9434, "view": 0} -2023-12-16T14:46:20.474Z INFO approving block {"height": 9434, "hash": "5eeb5892847aa26d5125692e91fccbe9de23fbb24448832eb0366374fe956003", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b09481ee1e4ae136a56990eaae29d5bb937fb4f5a5fd09cbe1d784bfdb4329a2"} -2023-12-16T14:46:20.474Z INFO initializing dbft {"height": 9435, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:20.475Z debug frostfs-node/morph.go:229 new block {"index": 9434} -2023-12-16T14:46:21.136Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9434, "blockHeight": 9434, "took": "5.105322ms"} -2023-12-16T14:46:21.474Z INFO sending PrepareRequest {"height": 9435, "view": 0} -2023-12-16T14:46:21.474Z INFO sending Commit {"height": 9435, "view": 0} -2023-12-16T14:46:21.474Z INFO approving block {"height": 9435, "hash": "1bfd6ed28521f70234abde576e8d4293564417c217059c1deb5bd7cfe488b5a4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5eeb5892847aa26d5125692e91fccbe9de23fbb24448832eb0366374fe956003"} -2023-12-16T14:46:21.475Z INFO initializing dbft {"height": 9436, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:21.476Z debug frostfs-node/morph.go:229 new block {"index": 9435} -2023-12-16T14:46:22.136Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9435, "blockHeight": 9435, "took": "4.230203ms"} -2023-12-16T14:46:22.476Z INFO sending PrepareRequest {"height": 9436, "view": 0} -2023-12-16T14:46:22.476Z INFO sending Commit {"height": 9436, "view": 0} -2023-12-16T14:46:22.476Z INFO approving block {"height": 9436, "hash": "5cc0f276aaaaa569683b94a26b48071aaffbe4fcaa564b3644bede7625f4605c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1bfd6ed28521f70234abde576e8d4293564417c217059c1deb5bd7cfe488b5a4"} -2023-12-16T14:46:22.478Z INFO initializing dbft {"height": 9437, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:22.478Z debug frostfs-node/morph.go:229 new block {"index": 9436} -2023-12-16T14:46:23.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9436, "blockHeight": 9436, "took": "8.22056ms"} -2023-12-16T14:46:23.477Z INFO sending PrepareRequest {"height": 9437, "view": 0} -2023-12-16T14:46:23.477Z INFO sending Commit {"height": 9437, "view": 0} -2023-12-16T14:46:23.478Z INFO approving block {"height": 9437, "hash": "ec507f33a3d2264533f97c770a4816ccac6988233df57046210d058d8a7326f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cc0f276aaaaa569683b94a26b48071aaffbe4fcaa564b3644bede7625f4605c"} -2023-12-16T14:46:23.479Z INFO initializing dbft {"height": 9438, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:23.479Z debug frostfs-node/morph.go:229 new block {"index": 9437} -2023-12-16T14:46:24.138Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9437, "blockHeight": 9437, "took": "4.309486ms"} -2023-12-16T14:46:24.479Z INFO sending PrepareRequest {"height": 9438, "view": 0} -2023-12-16T14:46:24.479Z INFO sending Commit {"height": 9438, "view": 0} -2023-12-16T14:46:24.480Z INFO approving block {"height": 9438, "hash": "f9a9820e466cf06e1ba6cb1d0364e555c344ded845765ac05e3711bedd008404", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec507f33a3d2264533f97c770a4816ccac6988233df57046210d058d8a7326f0"} -2023-12-16T14:46:24.481Z INFO initializing dbft {"height": 9439, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:24.482Z debug frostfs-node/morph.go:229 new block {"index": 9438} -2023-12-16T14:46:25.139Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9438, "blockHeight": 9438, "took": "4.803745ms"} -2023-12-16T14:46:25.481Z INFO sending PrepareRequest {"height": 9439, "view": 0} -2023-12-16T14:46:25.481Z INFO sending Commit {"height": 9439, "view": 0} -2023-12-16T14:46:25.482Z INFO approving block {"height": 9439, "hash": "4e5c35dff2d5b2affd5fb8c302a12bae5a45341d320cedd70e32353d4d55e256", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f9a9820e466cf06e1ba6cb1d0364e555c344ded845765ac05e3711bedd008404"} -2023-12-16T14:46:25.483Z INFO initializing dbft {"height": 9440, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:25.483Z debug frostfs-node/morph.go:229 new block {"index": 9439} -2023-12-16T14:46:26.140Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9439, "blockHeight": 9439, "took": "3.892399ms"} -2023-12-16T14:46:26.483Z INFO sending PrepareRequest {"height": 9440, "view": 0} -2023-12-16T14:46:26.483Z INFO sending Commit {"height": 9440, "view": 0} -2023-12-16T14:46:26.483Z INFO approving block {"height": 9440, "hash": "90c52bd4d0d44e8fedc6a9e6fadcc8028759cf8329ab293df70235e4dbf84c92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e5c35dff2d5b2affd5fb8c302a12bae5a45341d320cedd70e32353d4d55e256"} -2023-12-16T14:46:26.484Z INFO initializing dbft {"height": 9441, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:26.484Z debug frostfs-node/morph.go:229 new block {"index": 9440} -2023-12-16T14:46:27.139Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9440, "blockHeight": 9440, "took": "3.097691ms"} -2023-12-16T14:46:27.484Z INFO sending PrepareRequest {"height": 9441, "view": 0} -2023-12-16T14:46:27.485Z INFO sending Commit {"height": 9441, "view": 0} -2023-12-16T14:46:27.485Z INFO approving block {"height": 9441, "hash": "97fcd5dc0b676103bb5376badee8cc4f2ca67840270482807c0aa8160ca9917f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90c52bd4d0d44e8fedc6a9e6fadcc8028759cf8329ab293df70235e4dbf84c92"} -2023-12-16T14:46:27.487Z INFO initializing dbft {"height": 9442, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:27.487Z debug frostfs-node/morph.go:229 new block {"index": 9441} -2023-12-16T14:46:28.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9441, "blockHeight": 9441, "took": "4.963815ms"} -2023-12-16T14:46:28.486Z INFO sending PrepareRequest {"height": 9442, "view": 0} -2023-12-16T14:46:28.486Z INFO sending Commit {"height": 9442, "view": 0} -2023-12-16T14:46:28.486Z INFO approving block {"height": 9442, "hash": "10a1cbfd994ed82c4440f88f5d9062e06fe359c012ace22012cbf27cc441aa01", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "97fcd5dc0b676103bb5376badee8cc4f2ca67840270482807c0aa8160ca9917f"} -2023-12-16T14:46:28.488Z INFO initializing dbft {"height": 9443, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:28.488Z debug frostfs-node/morph.go:229 new block {"index": 9442} -2023-12-16T14:46:29.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9442, "blockHeight": 9442, "took": "4.65817ms"} -2023-12-16T14:46:29.487Z INFO sending PrepareRequest {"height": 9443, "view": 0} -2023-12-16T14:46:29.487Z INFO sending Commit {"height": 9443, "view": 0} -2023-12-16T14:46:29.488Z INFO approving block {"height": 9443, "hash": "7e5bbcf0c7a7674ac26f65c7c0d6dfd752dc3bbd5c472b58738fdb474ddae52e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "10a1cbfd994ed82c4440f88f5d9062e06fe359c012ace22012cbf27cc441aa01"} -2023-12-16T14:46:29.489Z INFO initializing dbft {"height": 9444, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:29.489Z debug frostfs-node/morph.go:229 new block {"index": 9443} -2023-12-16T14:46:30.141Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9443, "blockHeight": 9443, "took": "3.498083ms"} -2023-12-16T14:46:30.489Z INFO sending PrepareRequest {"height": 9444, "view": 0} -2023-12-16T14:46:30.489Z INFO sending Commit {"height": 9444, "view": 0} -2023-12-16T14:46:30.489Z INFO approving block {"height": 9444, "hash": "562948d296193e41dc2f240dd05756e0c3d978fa5eefcbb92d4bddafb93659b8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e5bbcf0c7a7674ac26f65c7c0d6dfd752dc3bbd5c472b58738fdb474ddae52e"} -2023-12-16T14:46:30.490Z INFO initializing dbft {"height": 9445, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:30.491Z debug frostfs-node/morph.go:229 new block {"index": 9444} -2023-12-16T14:46:31.146Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9444, "blockHeight": 9444, "took": "7.388279ms"} -2023-12-16T14:46:31.490Z INFO sending PrepareRequest {"height": 9445, "view": 0} -2023-12-16T14:46:31.490Z INFO sending Commit {"height": 9445, "view": 0} -2023-12-16T14:46:31.491Z INFO approving block {"height": 9445, "hash": "be8a4486e28421f569d6e3cd60574f6528ca55859b9dc57e788c09a1a678db72", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "562948d296193e41dc2f240dd05756e0c3d978fa5eefcbb92d4bddafb93659b8"} -2023-12-16T14:46:31.492Z INFO initializing dbft {"height": 9446, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:31.492Z debug frostfs-node/morph.go:229 new block {"index": 9445} -2023-12-16T14:46:32.142Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9445, "blockHeight": 9445, "took": "3.053559ms"} -2023-12-16T14:46:32.492Z INFO sending PrepareRequest {"height": 9446, "view": 0} -2023-12-16T14:46:32.492Z INFO sending Commit {"height": 9446, "view": 0} -2023-12-16T14:46:32.492Z INFO approving block {"height": 9446, "hash": "5773d6583c9128e236e99a0fa170b662e177adf29d4f83d859e20fb4de96056c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be8a4486e28421f569d6e3cd60574f6528ca55859b9dc57e788c09a1a678db72"} -2023-12-16T14:46:32.493Z INFO initializing dbft {"height": 9447, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:32.494Z debug frostfs-node/morph.go:229 new block {"index": 9446} -2023-12-16T14:46:33.143Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9446, "blockHeight": 9446, "took": "3.77357ms"} -2023-12-16T14:46:33.493Z INFO sending PrepareRequest {"height": 9447, "view": 0} -2023-12-16T14:46:33.493Z INFO sending Commit {"height": 9447, "view": 0} -2023-12-16T14:46:33.494Z INFO approving block {"height": 9447, "hash": "e5b0dcf972da27998fbe639c5ba7d04d99eac9b3df0cf224594504db6dafd21d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5773d6583c9128e236e99a0fa170b662e177adf29d4f83d859e20fb4de96056c"} -2023-12-16T14:46:33.495Z INFO initializing dbft {"height": 9448, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:33.495Z debug frostfs-node/morph.go:229 new block {"index": 9447} -2023-12-16T14:46:34.145Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9447, "blockHeight": 9447, "took": "5.019277ms"} -2023-12-16T14:46:34.494Z INFO sending PrepareRequest {"height": 9448, "view": 0} -2023-12-16T14:46:34.494Z INFO sending Commit {"height": 9448, "view": 0} -2023-12-16T14:46:34.495Z INFO approving block {"height": 9448, "hash": "bcb72b177da30f25d0fe86acfa4642e3cf181a8aee66b6f251e630890b360ea2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5b0dcf972da27998fbe639c5ba7d04d99eac9b3df0cf224594504db6dafd21d"} -2023-12-16T14:46:34.496Z INFO initializing dbft {"height": 9449, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:34.496Z debug frostfs-node/morph.go:229 new block {"index": 9448} -2023-12-16T14:46:35.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9448, "blockHeight": 9448, "took": "5.904562ms"} -2023-12-16T14:46:35.496Z INFO sending PrepareRequest {"height": 9449, "view": 0} -2023-12-16T14:46:35.496Z INFO sending Commit {"height": 9449, "view": 0} -2023-12-16T14:46:35.496Z INFO approving block {"height": 9449, "hash": "b429ef9e88e256adea17c023e5f88a2cdeebc66f5b79dcdf7a488499455a78e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bcb72b177da30f25d0fe86acfa4642e3cf181a8aee66b6f251e630890b360ea2"} -2023-12-16T14:46:35.497Z INFO initializing dbft {"height": 9450, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:35.498Z debug frostfs-node/morph.go:229 new block {"index": 9449} -2023-12-16T14:46:36.147Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9449, "blockHeight": 9449, "took": "5.309965ms"} -2023-12-16T14:46:36.497Z INFO sending PrepareRequest {"height": 9450, "view": 0} -2023-12-16T14:46:36.497Z INFO sending Commit {"height": 9450, "view": 0} -2023-12-16T14:46:36.498Z INFO approving block {"height": 9450, "hash": "0d13f989de5cfdd7dc4716d297ee140fb92b347b21e6cefe954a9271a7911f56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b429ef9e88e256adea17c023e5f88a2cdeebc66f5b79dcdf7a488499455a78e9"} -2023-12-16T14:46:36.498Z INFO initializing dbft {"height": 9451, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:36.499Z debug frostfs-node/morph.go:229 new block {"index": 9450} -2023-12-16T14:46:36.501Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:46:36.503Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:46:36.503Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:46:37.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9450, "blockHeight": 9450, "took": "7.54964ms"} -2023-12-16T14:46:37.498Z INFO sending PrepareRequest {"height": 9451, "view": 0} -2023-12-16T14:46:37.498Z INFO sending Commit {"height": 9451, "view": 0} -2023-12-16T14:46:37.499Z INFO approving block {"height": 9451, "hash": "63b0fea9481d47e39cb398588abf76397c888b747964dab19acec9400438490f", "tx_count": 2, "merkle": "9cb33bfc8efd0eafb13945676e7a23c7d354a55d59245b22b9b7268efe38a15e", "prev": "0d13f989de5cfdd7dc4716d297ee140fb92b347b21e6cefe954a9271a7911f56"} -2023-12-16T14:46:37.499Z INFO runtime log {"tx": "3cbf7fcd683fa5527e7da952cf403243dfed784fb576dcd9dbd2ade8cb373034", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:46:37.499Z INFO runtime log {"tx": "3cbf7fcd683fa5527e7da952cf403243dfed784fb576dcd9dbd2ade8cb373034", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:46:37.500Z INFO initializing dbft {"height": 9452, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:37.501Z debug frostfs-node/morph.go:229 new block {"index": 9451} -2023-12-16T14:46:38.148Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9451, "blockHeight": 9451, "took": "6.19014ms"} -2023-12-16T14:46:38.500Z INFO sending PrepareRequest {"height": 9452, "view": 0} -2023-12-16T14:46:38.500Z INFO sending Commit {"height": 9452, "view": 0} -2023-12-16T14:46:38.500Z INFO approving block {"height": 9452, "hash": "bafd0c78ea5905345dd769edd9d5ccabf39703334ba41f32040bcc7a0af93821", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63b0fea9481d47e39cb398588abf76397c888b747964dab19acec9400438490f"} -2023-12-16T14:46:38.501Z INFO initializing dbft {"height": 9453, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:38.502Z debug frostfs-node/morph.go:229 new block {"index": 9452} -2023-12-16T14:46:39.148Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9452, "blockHeight": 9452, "took": "5.650564ms"} -2023-12-16T14:46:39.501Z INFO sending PrepareRequest {"height": 9453, "view": 0} -2023-12-16T14:46:39.501Z INFO sending Commit {"height": 9453, "view": 0} -2023-12-16T14:46:39.502Z INFO approving block {"height": 9453, "hash": "bd1ac10bd0ad326fc85d9797387f343bb23ac97082c3bcc36fcb6ad049ca704d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bafd0c78ea5905345dd769edd9d5ccabf39703334ba41f32040bcc7a0af93821"} -2023-12-16T14:46:39.503Z INFO initializing dbft {"height": 9454, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:39.503Z debug frostfs-node/morph.go:229 new block {"index": 9453} -2023-12-16T14:46:40.148Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9453, "blockHeight": 9453, "took": "4.763719ms"} -2023-12-16T14:46:40.503Z INFO sending PrepareRequest {"height": 9454, "view": 0} -2023-12-16T14:46:40.503Z INFO sending Commit {"height": 9454, "view": 0} -2023-12-16T14:46:40.503Z INFO approving block {"height": 9454, "hash": "9812d56f5497cb42f9e07fb1bdc86f3b71edf1fbf67184a8179aaec0fa51de30", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bd1ac10bd0ad326fc85d9797387f343bb23ac97082c3bcc36fcb6ad049ca704d"} -2023-12-16T14:46:40.504Z INFO initializing dbft {"height": 9455, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:40.505Z debug frostfs-node/morph.go:229 new block {"index": 9454} -2023-12-16T14:46:41.149Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9454, "blockHeight": 9454, "took": "5.191022ms"} -2023-12-16T14:46:41.505Z INFO sending PrepareRequest {"height": 9455, "view": 0} -2023-12-16T14:46:41.505Z INFO sending Commit {"height": 9455, "view": 0} -2023-12-16T14:46:41.505Z INFO approving block {"height": 9455, "hash": "496e8ad49deca3cea08a5d795ae0ed0a78910b276522044650ca64464b19e261", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9812d56f5497cb42f9e07fb1bdc86f3b71edf1fbf67184a8179aaec0fa51de30"} -2023-12-16T14:46:41.506Z INFO initializing dbft {"height": 9456, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:41.506Z debug frostfs-node/morph.go:229 new block {"index": 9455} -2023-12-16T14:46:42.150Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9455, "blockHeight": 9455, "took": "5.879982ms"} -2023-12-16T14:46:42.506Z INFO sending PrepareRequest {"height": 9456, "view": 0} -2023-12-16T14:46:42.506Z INFO sending Commit {"height": 9456, "view": 0} -2023-12-16T14:46:42.507Z INFO approving block {"height": 9456, "hash": "b1106eafdc6aefb55bb657ae9d653a23fd6d06e6df6fc92b76ec357eaa860586", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "496e8ad49deca3cea08a5d795ae0ed0a78910b276522044650ca64464b19e261"} -2023-12-16T14:46:42.508Z INFO initializing dbft {"height": 9457, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:42.509Z debug frostfs-node/morph.go:229 new block {"index": 9456} -2023-12-16T14:46:43.151Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9456, "blockHeight": 9456, "took": "5.520439ms"} -2023-12-16T14:46:43.507Z INFO sending PrepareRequest {"height": 9457, "view": 0} -2023-12-16T14:46:43.508Z INFO sending Commit {"height": 9457, "view": 0} -2023-12-16T14:46:43.508Z INFO approving block {"height": 9457, "hash": "f669ee61f0ce8b673bf609a34665ed35ad5771704b5e9a344e32586f71169abe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b1106eafdc6aefb55bb657ae9d653a23fd6d06e6df6fc92b76ec357eaa860586"} -2023-12-16T14:46:43.509Z INFO initializing dbft {"height": 9458, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:43.509Z debug frostfs-node/morph.go:229 new block {"index": 9457} -2023-12-16T14:46:43.514Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 40 epoch for daughters"} -2023-12-16T14:46:44.151Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9457, "blockHeight": 9457, "took": "5.123339ms"} -2023-12-16T14:46:44.510Z INFO sending PrepareRequest {"height": 9458, "view": 0} -2023-12-16T14:46:44.510Z INFO sending Commit {"height": 9458, "view": 0} -2023-12-16T14:46:44.510Z INFO approving block {"height": 9458, "hash": "796dd4e120c3b20c4d219219f1ea54b83294a6209e80e1b4f113d11c4a10b3a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f669ee61f0ce8b673bf609a34665ed35ad5771704b5e9a344e32586f71169abe"} -2023-12-16T14:46:44.512Z INFO initializing dbft {"height": 9459, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:44.513Z debug frostfs-node/morph.go:229 new block {"index": 9458} -2023-12-16T14:46:44.518Z INFO runtime log {"tx": "aa9f67678420243b6ee0afe62ffd0d57bd437e6eb0b940815584ba8ee2e521a2", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:46:45.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9458, "blockHeight": 9458, "took": "5.527831ms"} -2023-12-16T14:46:45.511Z INFO sending PrepareRequest {"height": 9459, "view": 0} -2023-12-16T14:46:45.511Z INFO sending Commit {"height": 9459, "view": 0} -2023-12-16T14:46:45.512Z INFO approving block {"height": 9459, "hash": "5116010a0cda3178df118c22c12510ec11085f33d7a7a7784f2ea4c61414d09f", "tx_count": 1, "merkle": "45e40b8f64732bca5ad3c022b7a61a94fb757fdbc689ba24663951103c046fa6", "prev": "796dd4e120c3b20c4d219219f1ea54b83294a6209e80e1b4f113d11c4a10b3a1"} -2023-12-16T14:46:45.512Z INFO runtime log {"tx": "a66f043c1051396624ba89c6db7f75fb941aa6b722c0d35aca2b73648f0be445", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:46:45.513Z INFO initializing dbft {"height": 9460, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:45.514Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 40} -2023-12-16T14:46:45.514Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 40} -2023-12-16T14:46:45.514Z debug frostfs-node/morph.go:229 new block {"index": 9459} -2023-12-16T14:46:46.151Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 9459, "blockHeight": 9459, "took": "3.865093ms"} -2023-12-16T14:46:46.513Z INFO sending PrepareRequest {"height": 9460, "view": 0} -2023-12-16T14:46:46.513Z INFO sending Commit {"height": 9460, "view": 0} -2023-12-16T14:46:46.513Z INFO approving block {"height": 9460, "hash": "34e70dcf5744f37e95d6ea9fe623d0d32739f47c31497c4fda2b20e12b2335eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5116010a0cda3178df118c22c12510ec11085f33d7a7a7784f2ea4c61414d09f"} -2023-12-16T14:46:46.514Z INFO initializing dbft {"height": 9461, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:46.515Z debug frostfs-node/morph.go:229 new block {"index": 9460} -2023-12-16T14:46:47.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9460, "blockHeight": 9460, "took": "4.525511ms"} -2023-12-16T14:46:47.514Z INFO sending PrepareRequest {"height": 9461, "view": 0} -2023-12-16T14:46:47.514Z INFO sending Commit {"height": 9461, "view": 0} -2023-12-16T14:46:47.515Z INFO approving block {"height": 9461, "hash": "6c98c20cf71b4ead403be1151b8945628e333592f2effd4e611d009ba9b566ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34e70dcf5744f37e95d6ea9fe623d0d32739f47c31497c4fda2b20e12b2335eb"} -2023-12-16T14:46:47.517Z INFO initializing dbft {"height": 9462, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:47.517Z debug frostfs-node/morph.go:229 new block {"index": 9461} -2023-12-16T14:46:48.152Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9461, "blockHeight": 9461, "took": "3.572297ms"} -2023-12-16T14:46:48.515Z INFO sending PrepareRequest {"height": 9462, "view": 0} -2023-12-16T14:46:48.516Z INFO sending Commit {"height": 9462, "view": 0} -2023-12-16T14:46:48.516Z INFO approving block {"height": 9462, "hash": "88caff21e9adbac1a9cd0df9fe38dd17f2f7f62e4f9eb0da4937d3b619853282", "tx_count": 1, "merkle": "34d615b3c158feb1f3d6ada9a936da8215701a64309a1410513a08524d8299f0", "prev": "6c98c20cf71b4ead403be1151b8945628e333592f2effd4e611d009ba9b566ad"} -2023-12-16T14:46:48.517Z INFO initializing dbft {"height": 9463, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:48.518Z debug frostfs-node/morph.go:229 new block {"index": 9462} -2023-12-16T14:46:48.519Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-16T14:46:49.156Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 9462, "blockHeight": 9462, "took": "6.500349ms"} -2023-12-16T14:46:49.517Z INFO sending PrepareRequest {"height": 9463, "view": 0} -2023-12-16T14:46:49.517Z INFO sending Commit {"height": 9463, "view": 0} -2023-12-16T14:46:49.517Z INFO approving block {"height": 9463, "hash": "75920db33952ace1019430171a91c41908c3af6347150546061d138449373bc1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "88caff21e9adbac1a9cd0df9fe38dd17f2f7f62e4f9eb0da4937d3b619853282"} -2023-12-16T14:46:49.518Z INFO initializing dbft {"height": 9464, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:49.519Z debug frostfs-node/morph.go:229 new block {"index": 9463} -2023-12-16T14:46:50.154Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9463, "blockHeight": 9463, "took": "4.932822ms"} -2023-12-16T14:46:50.519Z INFO sending PrepareRequest {"height": 9464, "view": 0} -2023-12-16T14:46:50.519Z INFO sending Commit {"height": 9464, "view": 0} -2023-12-16T14:46:50.519Z INFO approving block {"height": 9464, "hash": "816b8b1eb1c8b6aa76248121532cdc80330a2a6d6b2f2089251df16cab8a8a37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "75920db33952ace1019430171a91c41908c3af6347150546061d138449373bc1"} -2023-12-16T14:46:50.520Z INFO initializing dbft {"height": 9465, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:50.520Z debug frostfs-node/morph.go:229 new block {"index": 9464} -2023-12-16T14:46:51.153Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9464, "blockHeight": 9464, "took": "3.281694ms"} -2023-12-16T14:46:51.520Z INFO sending PrepareRequest {"height": 9465, "view": 0} -2023-12-16T14:46:51.520Z INFO sending Commit {"height": 9465, "view": 0} -2023-12-16T14:46:51.521Z INFO approving block {"height": 9465, "hash": "7ae161991c876cb432d1bf06a846c31d42770e0f7dce0c34c565c9439a1a9f8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "816b8b1eb1c8b6aa76248121532cdc80330a2a6d6b2f2089251df16cab8a8a37"} -2023-12-16T14:46:51.521Z INFO initializing dbft {"height": 9466, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:51.522Z debug frostfs-node/morph.go:229 new block {"index": 9465} -2023-12-16T14:46:52.154Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9465, "blockHeight": 9465, "took": "3.291416ms"} -2023-12-16T14:46:52.521Z INFO sending PrepareRequest {"height": 9466, "view": 0} -2023-12-16T14:46:52.521Z INFO sending Commit {"height": 9466, "view": 0} -2023-12-16T14:46:52.522Z INFO approving block {"height": 9466, "hash": "6c5e3fefd75e42ac59df3bbb6cb225e7c132c027af3e9e94355fe39c1ee12c03", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ae161991c876cb432d1bf06a846c31d42770e0f7dce0c34c565c9439a1a9f8e"} -2023-12-16T14:46:52.523Z INFO initializing dbft {"height": 9467, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:52.523Z debug frostfs-node/morph.go:229 new block {"index": 9466} -2023-12-16T14:46:53.156Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9466, "blockHeight": 9466, "took": "4.45215ms"} -2023-12-16T14:46:53.522Z INFO sending PrepareRequest {"height": 9467, "view": 0} -2023-12-16T14:46:53.522Z INFO sending Commit {"height": 9467, "view": 0} -2023-12-16T14:46:53.523Z INFO approving block {"height": 9467, "hash": "61d56a9f2c3f7aa2ab2bbb40889690d2d692ecb1a2271a08f58f6c6cd2dfad3c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c5e3fefd75e42ac59df3bbb6cb225e7c132c027af3e9e94355fe39c1ee12c03"} -2023-12-16T14:46:53.524Z INFO initializing dbft {"height": 9468, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:53.524Z debug frostfs-node/morph.go:229 new block {"index": 9467} -2023-12-16T14:46:54.156Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9467, "blockHeight": 9467, "took": "3.996927ms"} -2023-12-16T14:46:54.524Z INFO sending PrepareRequest {"height": 9468, "view": 0} -2023-12-16T14:46:54.524Z INFO sending Commit {"height": 9468, "view": 0} -2023-12-16T14:46:54.525Z INFO approving block {"height": 9468, "hash": "3af11e530970fb0fa2d8dec241e0b07d478540de82a40afc3224032e94907985", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61d56a9f2c3f7aa2ab2bbb40889690d2d692ecb1a2271a08f58f6c6cd2dfad3c"} -2023-12-16T14:46:54.526Z INFO initializing dbft {"height": 9469, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:54.527Z debug frostfs-node/morph.go:229 new block {"index": 9468} -2023-12-16T14:46:55.157Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9468, "blockHeight": 9468, "took": "4.332627ms"} -2023-12-16T14:46:55.526Z INFO sending PrepareRequest {"height": 9469, "view": 0} -2023-12-16T14:46:55.526Z INFO sending Commit {"height": 9469, "view": 0} -2023-12-16T14:46:55.527Z INFO approving block {"height": 9469, "hash": "32c092d1b6b017dfa7f5d9553b2eccc5acf3c9348c6c55d05340a54d1d8b564d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3af11e530970fb0fa2d8dec241e0b07d478540de82a40afc3224032e94907985"} -2023-12-16T14:46:55.529Z INFO initializing dbft {"height": 9470, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:55.529Z debug frostfs-node/morph.go:229 new block {"index": 9469} -2023-12-16T14:46:56.157Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9469, "blockHeight": 9469, "took": "3.42133ms"} -2023-12-16T14:46:56.527Z INFO sending PrepareRequest {"height": 9470, "view": 0} -2023-12-16T14:46:56.528Z INFO sending Commit {"height": 9470, "view": 0} -2023-12-16T14:46:56.528Z INFO approving block {"height": 9470, "hash": "053944393fc65c69d748097a07d5f047e2fa7441ecb64c1ab603daabc070ece8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32c092d1b6b017dfa7f5d9553b2eccc5acf3c9348c6c55d05340a54d1d8b564d"} -2023-12-16T14:46:56.529Z INFO initializing dbft {"height": 9471, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:56.529Z debug frostfs-node/morph.go:229 new block {"index": 9470} -2023-12-16T14:46:57.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9470, "blockHeight": 9470, "took": "4.865369ms"} -2023-12-16T14:46:57.529Z INFO sending PrepareRequest {"height": 9471, "view": 0} -2023-12-16T14:46:57.529Z INFO sending Commit {"height": 9471, "view": 0} -2023-12-16T14:46:57.529Z INFO approving block {"height": 9471, "hash": "280cbd900ef4e6365de3d889e6a967d93cbe6750951a997bfa03f38ccbd536d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "053944393fc65c69d748097a07d5f047e2fa7441ecb64c1ab603daabc070ece8"} -2023-12-16T14:46:57.530Z INFO initializing dbft {"height": 9472, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:57.531Z debug frostfs-node/morph.go:229 new block {"index": 9471} -2023-12-16T14:46:58.158Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 9471, "blockHeight": 9471, "took": "3.409439ms"} -2023-12-16T14:46:58.530Z INFO sending PrepareRequest {"height": 9472, "view": 0} -2023-12-16T14:46:58.530Z INFO sending Commit {"height": 9472, "view": 0} -2023-12-16T14:46:58.530Z INFO approving block {"height": 9472, "hash": "a563394822eb46cba1f94c2770394ebf84eac8a7320002b189d896ae041d88f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "280cbd900ef4e6365de3d889e6a967d93cbe6750951a997bfa03f38ccbd536d3"} -2023-12-16T14:46:58.531Z INFO initializing dbft {"height": 9473, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:58.532Z debug frostfs-node/morph.go:229 new block {"index": 9472} -2023-12-16T14:46:59.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9472, "blockHeight": 9472, "took": "3.98819ms"} -2023-12-16T14:46:59.532Z INFO sending PrepareRequest {"height": 9473, "view": 0} -2023-12-16T14:46:59.532Z INFO sending Commit {"height": 9473, "view": 0} -2023-12-16T14:46:59.532Z INFO approving block {"height": 9473, "hash": "c0dc5eea6cdffcc76ad3ea7f66a87556c5618bfa318b1064b28811566813a7e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a563394822eb46cba1f94c2770394ebf84eac8a7320002b189d896ae041d88f8"} -2023-12-16T14:46:59.533Z INFO initializing dbft {"height": 9474, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:46:59.534Z debug frostfs-node/morph.go:229 new block {"index": 9473} -2023-12-16T14:47:00.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9473, "blockHeight": 9473, "took": "4.023947ms"} -2023-12-16T14:47:00.533Z INFO sending PrepareRequest {"height": 9474, "view": 0} -2023-12-16T14:47:00.533Z INFO sending Commit {"height": 9474, "view": 0} -2023-12-16T14:47:00.534Z INFO approving block {"height": 9474, "hash": "82d343edc9bde36d871b94f717da67d71892561c88a693ca5824afbfbebd1023", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0dc5eea6cdffcc76ad3ea7f66a87556c5618bfa318b1064b28811566813a7e3"} -2023-12-16T14:47:00.535Z INFO initializing dbft {"height": 9475, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:00.535Z debug frostfs-node/morph.go:229 new block {"index": 9474} -2023-12-16T14:47:01.159Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9474, "blockHeight": 9474, "took": "3.604615ms"} -2023-12-16T14:47:01.534Z INFO sending PrepareRequest {"height": 9475, "view": 0} -2023-12-16T14:47:01.535Z INFO sending Commit {"height": 9475, "view": 0} -2023-12-16T14:47:01.535Z INFO approving block {"height": 9475, "hash": "ece07e399a35e5823684c8e61a9f9d7d34e633b3cbb2b9cb05501dff8a7713b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82d343edc9bde36d871b94f717da67d71892561c88a693ca5824afbfbebd1023"} -2023-12-16T14:47:01.536Z INFO initializing dbft {"height": 9476, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:01.536Z debug frostfs-node/morph.go:229 new block {"index": 9475} -2023-12-16T14:47:02.160Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9475, "blockHeight": 9475, "took": "4.064438ms"} -2023-12-16T14:47:02.537Z INFO sending PrepareRequest {"height": 9476, "view": 0} -2023-12-16T14:47:02.537Z INFO sending Commit {"height": 9476, "view": 0} -2023-12-16T14:47:02.537Z INFO approving block {"height": 9476, "hash": "d1ed342539a1aa80a53f4ed38cd48f72cd7b8008598c70f1520fa5d5a102323b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ece07e399a35e5823684c8e61a9f9d7d34e633b3cbb2b9cb05501dff8a7713b7"} -2023-12-16T14:47:02.539Z INFO initializing dbft {"height": 9477, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:02.540Z debug frostfs-node/morph.go:229 new block {"index": 9476} -2023-12-16T14:47:03.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9476, "blockHeight": 9476, "took": "3.765932ms"} -2023-12-16T14:47:03.538Z INFO sending PrepareRequest {"height": 9477, "view": 0} -2023-12-16T14:47:03.538Z INFO sending Commit {"height": 9477, "view": 0} -2023-12-16T14:47:03.539Z INFO approving block {"height": 9477, "hash": "954a71ecbec8b0bcf85cbdb9a26a24730180dd822b6c919ac3b2192fa00f20d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1ed342539a1aa80a53f4ed38cd48f72cd7b8008598c70f1520fa5d5a102323b"} -2023-12-16T14:47:03.540Z INFO initializing dbft {"height": 9478, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:03.541Z debug frostfs-node/morph.go:229 new block {"index": 9477} -2023-12-16T14:47:04.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9477, "blockHeight": 9477, "took": "3.223774ms"} -2023-12-16T14:47:04.540Z INFO sending PrepareRequest {"height": 9478, "view": 0} -2023-12-16T14:47:04.540Z INFO sending Commit {"height": 9478, "view": 0} -2023-12-16T14:47:04.540Z INFO approving block {"height": 9478, "hash": "704e10e76b07120adbf8ddfdfa475c75e8a36ac3ba41fb1d0a047d54de43a19b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "954a71ecbec8b0bcf85cbdb9a26a24730180dd822b6c919ac3b2192fa00f20d5"} -2023-12-16T14:47:04.541Z INFO initializing dbft {"height": 9479, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:04.542Z debug frostfs-node/morph.go:229 new block {"index": 9478} -2023-12-16T14:47:05.161Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9478, "blockHeight": 9478, "took": "3.253895ms"} -2023-12-16T14:47:05.541Z INFO sending PrepareRequest {"height": 9479, "view": 0} -2023-12-16T14:47:05.541Z INFO sending Commit {"height": 9479, "view": 0} -2023-12-16T14:47:05.541Z INFO approving block {"height": 9479, "hash": "414a509467c35c321fc65c739adb8a9d53e6af1dcaf46f95d03fb4d44a117cb2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "704e10e76b07120adbf8ddfdfa475c75e8a36ac3ba41fb1d0a047d54de43a19b"} -2023-12-16T14:47:05.542Z INFO initializing dbft {"height": 9480, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:05.543Z debug frostfs-node/morph.go:229 new block {"index": 9479} -2023-12-16T14:47:06.165Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9479, "blockHeight": 9479, "took": "6.332484ms"} -2023-12-16T14:47:06.543Z INFO sending PrepareRequest {"height": 9480, "view": 0} -2023-12-16T14:47:06.543Z INFO sending Commit {"height": 9480, "view": 0} -2023-12-16T14:47:06.543Z INFO approving block {"height": 9480, "hash": "382a3dac5a49c7d1493bd2a57ab0d5225831d627dcf12a9d460a14ea7365bf61", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "414a509467c35c321fc65c739adb8a9d53e6af1dcaf46f95d03fb4d44a117cb2"} -2023-12-16T14:47:06.544Z INFO initializing dbft {"height": 9481, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:06.544Z debug frostfs-node/morph.go:229 new block {"index": 9480} -2023-12-16T14:47:07.164Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9480, "blockHeight": 9480, "took": "4.947242ms"} -2023-12-16T14:47:07.544Z INFO sending PrepareRequest {"height": 9481, "view": 0} -2023-12-16T14:47:07.545Z INFO sending Commit {"height": 9481, "view": 0} -2023-12-16T14:47:07.545Z INFO approving block {"height": 9481, "hash": "7394700b3a3c3b1f20d02e408588de05a970c1decebd2b7d0fde0203b7494afb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "382a3dac5a49c7d1493bd2a57ab0d5225831d627dcf12a9d460a14ea7365bf61"} -2023-12-16T14:47:07.546Z INFO initializing dbft {"height": 9482, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:07.546Z debug frostfs-node/morph.go:229 new block {"index": 9481} -2023-12-16T14:47:08.164Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9481, "blockHeight": 9481, "took": "4.48094ms"} -2023-12-16T14:47:08.546Z INFO sending PrepareRequest {"height": 9482, "view": 0} -2023-12-16T14:47:08.546Z INFO sending Commit {"height": 9482, "view": 0} -2023-12-16T14:47:08.546Z INFO approving block {"height": 9482, "hash": "c152a22c27f916180ba0e724af99ed6787893c32bc085d4a9a8075917c3a32a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7394700b3a3c3b1f20d02e408588de05a970c1decebd2b7d0fde0203b7494afb"} -2023-12-16T14:47:08.547Z INFO initializing dbft {"height": 9483, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:08.548Z debug frostfs-node/morph.go:229 new block {"index": 9482} -2023-12-16T14:47:09.166Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9482, "blockHeight": 9482, "took": "5.721836ms"} -2023-12-16T14:47:09.548Z INFO sending PrepareRequest {"height": 9483, "view": 0} -2023-12-16T14:47:09.548Z INFO sending Commit {"height": 9483, "view": 0} -2023-12-16T14:47:09.548Z INFO approving block {"height": 9483, "hash": "a97911296d2707b286f2d013aa7f864600c4e1fde0f4b14730df9cfdce7d06e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c152a22c27f916180ba0e724af99ed6787893c32bc085d4a9a8075917c3a32a0"} -2023-12-16T14:47:09.549Z INFO initializing dbft {"height": 9484, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:09.550Z debug frostfs-node/morph.go:229 new block {"index": 9483} -2023-12-16T14:47:10.166Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9483, "blockHeight": 9483, "took": "4.670376ms"} -2023-12-16T14:47:10.550Z INFO sending PrepareRequest {"height": 9484, "view": 0} -2023-12-16T14:47:10.550Z INFO sending Commit {"height": 9484, "view": 0} -2023-12-16T14:47:10.550Z INFO approving block {"height": 9484, "hash": "1c3cdbd5ef7ee96cdab1cdf705aa1ba34436b4be4e04bd99279a32ac7f5eb595", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a97911296d2707b286f2d013aa7f864600c4e1fde0f4b14730df9cfdce7d06e6"} -2023-12-16T14:47:10.551Z INFO initializing dbft {"height": 9485, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:10.552Z debug frostfs-node/morph.go:229 new block {"index": 9484} -2023-12-16T14:47:11.166Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9484, "blockHeight": 9484, "took": "4.392738ms"} -2023-12-16T14:47:11.551Z INFO sending PrepareRequest {"height": 9485, "view": 0} -2023-12-16T14:47:11.551Z INFO sending Commit {"height": 9485, "view": 0} -2023-12-16T14:47:11.551Z INFO approving block {"height": 9485, "hash": "d209a4a7d93cfa6ca45c7a999621837b15ce3b1b2e5d833f84debb08496d7ed2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c3cdbd5ef7ee96cdab1cdf705aa1ba34436b4be4e04bd99279a32ac7f5eb595"} -2023-12-16T14:47:11.552Z INFO initializing dbft {"height": 9486, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:11.552Z debug frostfs-node/morph.go:229 new block {"index": 9485} -2023-12-16T14:47:12.169Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9485, "blockHeight": 9485, "took": "6.323116ms"} -2023-12-16T14:47:12.553Z INFO sending PrepareRequest {"height": 9486, "view": 0} -2023-12-16T14:47:12.553Z INFO sending Commit {"height": 9486, "view": 0} -2023-12-16T14:47:12.553Z INFO approving block {"height": 9486, "hash": "4d55e1c80c997108dfb2afeb60ba7242dfa3977f49294ae182a68437e79b2b9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d209a4a7d93cfa6ca45c7a999621837b15ce3b1b2e5d833f84debb08496d7ed2"} -2023-12-16T14:47:12.554Z INFO initializing dbft {"height": 9487, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:12.554Z debug frostfs-node/morph.go:229 new block {"index": 9486} -2023-12-16T14:47:13.167Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9486, "blockHeight": 9486, "took": "3.812221ms"} -2023-12-16T14:47:13.554Z INFO sending PrepareRequest {"height": 9487, "view": 0} -2023-12-16T14:47:13.554Z INFO sending Commit {"height": 9487, "view": 0} -2023-12-16T14:47:13.554Z INFO approving block {"height": 9487, "hash": "176e468aff79ca9737020d5cb45c0cee53026c33fdff88b1f2c8101660d4a311", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d55e1c80c997108dfb2afeb60ba7242dfa3977f49294ae182a68437e79b2b9b"} -2023-12-16T14:47:13.555Z INFO initializing dbft {"height": 9488, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:13.555Z debug frostfs-node/morph.go:229 new block {"index": 9487} -2023-12-16T14:47:14.168Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9487, "blockHeight": 9487, "took": "3.855372ms"} -2023-12-16T14:47:14.556Z INFO sending PrepareRequest {"height": 9488, "view": 0} -2023-12-16T14:47:14.556Z INFO sending Commit {"height": 9488, "view": 0} -2023-12-16T14:47:14.556Z INFO approving block {"height": 9488, "hash": "2fd55c5347bd412b7f8a03fe3d2511ff6447df9de00658ba1be265b0d21d816c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "176e468aff79ca9737020d5cb45c0cee53026c33fdff88b1f2c8101660d4a311"} -2023-12-16T14:47:14.558Z INFO initializing dbft {"height": 9489, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:14.558Z debug frostfs-node/morph.go:229 new block {"index": 9488} -2023-12-16T14:47:15.168Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9488, "blockHeight": 9488, "took": "3.197761ms"} -2023-12-16T14:47:15.557Z INFO sending PrepareRequest {"height": 9489, "view": 0} -2023-12-16T14:47:15.557Z INFO sending Commit {"height": 9489, "view": 0} -2023-12-16T14:47:15.557Z INFO approving block {"height": 9489, "hash": "862dc74bbf1a76c131cc54144703aa14db5c46649181a8482f80199f3c3b58dc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2fd55c5347bd412b7f8a03fe3d2511ff6447df9de00658ba1be265b0d21d816c"} -2023-12-16T14:47:15.558Z INFO initializing dbft {"height": 9490, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:15.559Z debug frostfs-node/morph.go:229 new block {"index": 9489} -2023-12-16T14:47:16.170Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9489, "blockHeight": 9489, "took": "3.862532ms"} -2023-12-16T14:47:16.559Z INFO sending PrepareRequest {"height": 9490, "view": 0} -2023-12-16T14:47:16.559Z INFO sending Commit {"height": 9490, "view": 0} -2023-12-16T14:47:16.559Z INFO approving block {"height": 9490, "hash": "e92354b7cbc5add11e7d0fe7d2569ea210ac2ad5772f0a2921879829948c6783", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "862dc74bbf1a76c131cc54144703aa14db5c46649181a8482f80199f3c3b58dc"} -2023-12-16T14:47:16.560Z INFO initializing dbft {"height": 9491, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:16.560Z debug frostfs-node/morph.go:229 new block {"index": 9490} -2023-12-16T14:47:17.175Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9490, "blockHeight": 9490, "took": "9.022243ms"} -2023-12-16T14:47:17.560Z INFO sending PrepareRequest {"height": 9491, "view": 0} -2023-12-16T14:47:17.560Z INFO sending Commit {"height": 9491, "view": 0} -2023-12-16T14:47:17.561Z INFO approving block {"height": 9491, "hash": "66b4c9ea2505bc6a4a5e5654416029b2f82ead1b966c8a215ad26d91f8b3784e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e92354b7cbc5add11e7d0fe7d2569ea210ac2ad5772f0a2921879829948c6783"} -2023-12-16T14:47:17.562Z INFO initializing dbft {"height": 9492, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:17.562Z debug frostfs-node/morph.go:229 new block {"index": 9491} -2023-12-16T14:47:18.173Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9491, "blockHeight": 9491, "took": "6.268654ms"} -2023-12-16T14:47:18.562Z INFO sending PrepareRequest {"height": 9492, "view": 0} -2023-12-16T14:47:18.562Z INFO sending Commit {"height": 9492, "view": 0} -2023-12-16T14:47:18.562Z INFO approving block {"height": 9492, "hash": "19a2bd88a5e81d8ee1f71ce388943a1a23ec0cd6ccf930aeaa05e0678f6b62bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66b4c9ea2505bc6a4a5e5654416029b2f82ead1b966c8a215ad26d91f8b3784e"} -2023-12-16T14:47:18.563Z INFO initializing dbft {"height": 9493, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:18.564Z debug frostfs-node/morph.go:229 new block {"index": 9492} -2023-12-16T14:47:19.175Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9492, "blockHeight": 9492, "took": "6.637973ms"} -2023-12-16T14:47:19.563Z INFO sending PrepareRequest {"height": 9493, "view": 0} -2023-12-16T14:47:19.564Z INFO sending Commit {"height": 9493, "view": 0} -2023-12-16T14:47:19.564Z INFO approving block {"height": 9493, "hash": "361b3b34b2b5b25e0d8e912eae744f3f686ff081c518ab19dac159a337c086d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19a2bd88a5e81d8ee1f71ce388943a1a23ec0cd6ccf930aeaa05e0678f6b62bc"} -2023-12-16T14:47:19.565Z INFO initializing dbft {"height": 9494, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:19.565Z debug frostfs-node/morph.go:229 new block {"index": 9493} -2023-12-16T14:47:20.174Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9493, "blockHeight": 9493, "took": "4.517354ms"} -2023-12-16T14:47:20.564Z INFO sending PrepareRequest {"height": 9494, "view": 0} -2023-12-16T14:47:20.564Z INFO sending Commit {"height": 9494, "view": 0} -2023-12-16T14:47:20.565Z INFO approving block {"height": 9494, "hash": "a966462efd51177125421f9de07f87f2d17f93de2d6ff6befb9beccf72fc109b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "361b3b34b2b5b25e0d8e912eae744f3f686ff081c518ab19dac159a337c086d4"} -2023-12-16T14:47:20.565Z INFO initializing dbft {"height": 9495, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:20.566Z debug frostfs-node/morph.go:229 new block {"index": 9494} -2023-12-16T14:47:21.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9494, "blockHeight": 9494, "took": "7.778619ms"} -2023-12-16T14:47:21.566Z INFO sending PrepareRequest {"height": 9495, "view": 0} -2023-12-16T14:47:21.566Z INFO sending Commit {"height": 9495, "view": 0} -2023-12-16T14:47:21.566Z INFO approving block {"height": 9495, "hash": "6c8d9b99d4d49645e052ce9d0441215d69ba04dfc8e949a996fac8d6162b5d7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a966462efd51177125421f9de07f87f2d17f93de2d6ff6befb9beccf72fc109b"} -2023-12-16T14:47:21.567Z INFO initializing dbft {"height": 9496, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:21.568Z debug frostfs-node/morph.go:229 new block {"index": 9495} -2023-12-16T14:47:22.177Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9495, "blockHeight": 9495, "took": "6.210411ms"} -2023-12-16T14:47:22.567Z INFO sending PrepareRequest {"height": 9496, "view": 0} -2023-12-16T14:47:22.568Z INFO sending Commit {"height": 9496, "view": 0} -2023-12-16T14:47:22.568Z INFO approving block {"height": 9496, "hash": "42406758eb6ae9cc7e3876a2ce7b77e5cce935916ec40acd512b9a577fa8a6b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6c8d9b99d4d49645e052ce9d0441215d69ba04dfc8e949a996fac8d6162b5d7d"} -2023-12-16T14:47:22.569Z INFO initializing dbft {"height": 9497, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:22.569Z debug frostfs-node/morph.go:229 new block {"index": 9496} -2023-12-16T14:47:23.177Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9496, "blockHeight": 9496, "took": "6.397536ms"} -2023-12-16T14:47:23.569Z INFO sending PrepareRequest {"height": 9497, "view": 0} -2023-12-16T14:47:23.570Z INFO sending Commit {"height": 9497, "view": 0} -2023-12-16T14:47:23.570Z INFO approving block {"height": 9497, "hash": "60dc1638c69c4ae0ae17269b2ce13f2d82e17a7593c904c3572150bf2b1b2e4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42406758eb6ae9cc7e3876a2ce7b77e5cce935916ec40acd512b9a577fa8a6b9"} -2023-12-16T14:47:23.571Z INFO initializing dbft {"height": 9498, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:23.572Z debug frostfs-node/morph.go:229 new block {"index": 9497} -2023-12-16T14:47:24.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9497, "blockHeight": 9497, "took": "6.288273ms"} -2023-12-16T14:47:24.571Z INFO sending PrepareRequest {"height": 9498, "view": 0} -2023-12-16T14:47:24.571Z INFO sending Commit {"height": 9498, "view": 0} -2023-12-16T14:47:24.572Z INFO approving block {"height": 9498, "hash": "b6c9cc233e9e1d1967713bb209e638b7fd1cfdcaefdd2d2b421b53ded17081e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60dc1638c69c4ae0ae17269b2ce13f2d82e17a7593c904c3572150bf2b1b2e4d"} -2023-12-16T14:47:24.573Z INFO initializing dbft {"height": 9499, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:24.574Z debug frostfs-node/morph.go:229 new block {"index": 9498} -2023-12-16T14:47:25.176Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9498, "blockHeight": 9498, "took": "3.77624ms"} -2023-12-16T14:47:25.573Z INFO sending PrepareRequest {"height": 9499, "view": 0} -2023-12-16T14:47:25.573Z INFO sending Commit {"height": 9499, "view": 0} -2023-12-16T14:47:25.573Z INFO approving block {"height": 9499, "hash": "17bfcda30d59b2e1cb959d49fe42b64d9e9c1fa8cf4b9df4a560e86706f4a5f8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6c9cc233e9e1d1967713bb209e638b7fd1cfdcaefdd2d2b421b53ded17081e0"} -2023-12-16T14:47:25.575Z INFO initializing dbft {"height": 9500, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:25.575Z debug frostfs-node/morph.go:229 new block {"index": 9499} -2023-12-16T14:47:26.179Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9499, "blockHeight": 9499, "took": "5.527421ms"} -2023-12-16T14:47:26.575Z INFO sending PrepareRequest {"height": 9500, "view": 0} -2023-12-16T14:47:26.575Z INFO sending Commit {"height": 9500, "view": 0} -2023-12-16T14:47:26.575Z INFO approving block {"height": 9500, "hash": "f496b071a9386d8d31e388a217222636a0b35ce850d3f35521839824086f9725", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17bfcda30d59b2e1cb959d49fe42b64d9e9c1fa8cf4b9df4a560e86706f4a5f8"} -2023-12-16T14:47:26.576Z INFO initializing dbft {"height": 9501, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:26.577Z debug frostfs-node/morph.go:229 new block {"index": 9500} -2023-12-16T14:47:26.579Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:47:26.583Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:47:26.583Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:47:27.178Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9500, "blockHeight": 9500, "took": "3.836792ms"} -2023-12-16T14:47:27.576Z INFO sending PrepareRequest {"height": 9501, "view": 0} -2023-12-16T14:47:27.576Z INFO sending Commit {"height": 9501, "view": 0} -2023-12-16T14:47:27.576Z INFO approving block {"height": 9501, "hash": "ed5766e2c91e170914b6a74512c91762c231b3bb5046c05466b9a8f290b60adf", "tx_count": 2, "merkle": "64d6b81f78ef2150585c50d6c12ee2ddbb52df77d05980c20996b8bacb20f137", "prev": "f496b071a9386d8d31e388a217222636a0b35ce850d3f35521839824086f9725"} -2023-12-16T14:47:27.577Z INFO runtime log {"tx": "635c0cf135acf9a715dd664e4f29b63ea62e4b26e2347c4b4cbc79ba063c4a05", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:47:27.577Z INFO runtime log {"tx": "635c0cf135acf9a715dd664e4f29b63ea62e4b26e2347c4b4cbc79ba063c4a05", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:47:27.577Z INFO initializing dbft {"height": 9502, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:27.578Z debug frostfs-node/morph.go:229 new block {"index": 9501} -2023-12-16T14:47:28.182Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9501, "blockHeight": 9501, "took": "6.889187ms"} -2023-12-16T14:47:28.578Z INFO sending PrepareRequest {"height": 9502, "view": 0} -2023-12-16T14:47:28.578Z INFO sending Commit {"height": 9502, "view": 0} -2023-12-16T14:47:28.579Z INFO approving block {"height": 9502, "hash": "34f459b90672f9a72165ee067df77ea144bd977b780237da10c5cc40c29ee4b7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed5766e2c91e170914b6a74512c91762c231b3bb5046c05466b9a8f290b60adf"} -2023-12-16T14:47:28.581Z INFO initializing dbft {"height": 9503, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:28.582Z debug frostfs-node/morph.go:229 new block {"index": 9502} -2023-12-16T14:47:29.180Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9502, "blockHeight": 9502, "took": "3.592874ms"} -2023-12-16T14:47:29.580Z INFO sending PrepareRequest {"height": 9503, "view": 0} -2023-12-16T14:47:29.580Z INFO sending Commit {"height": 9503, "view": 0} -2023-12-16T14:47:29.580Z INFO approving block {"height": 9503, "hash": "72eb22fb34e7087e6507532bd4afa8ddda75fddc2f88fec69d6cb03e99a47e40", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34f459b90672f9a72165ee067df77ea144bd977b780237da10c5cc40c29ee4b7"} -2023-12-16T14:47:29.581Z INFO initializing dbft {"height": 9504, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:29.581Z debug frostfs-node/morph.go:229 new block {"index": 9503} -2023-12-16T14:47:30.180Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9503, "blockHeight": 9503, "took": "3.328327ms"} -2023-12-16T14:47:30.581Z INFO sending PrepareRequest {"height": 9504, "view": 0} -2023-12-16T14:47:30.581Z INFO sending Commit {"height": 9504, "view": 0} -2023-12-16T14:47:30.581Z INFO approving block {"height": 9504, "hash": "89cb4e82bd6c6bbb0f022ad2412830455ddf85c882168dee9b602230cf65631f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "72eb22fb34e7087e6507532bd4afa8ddda75fddc2f88fec69d6cb03e99a47e40"} -2023-12-16T14:47:30.583Z INFO initializing dbft {"height": 9505, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:30.583Z debug frostfs-node/morph.go:229 new block {"index": 9504} -2023-12-16T14:47:31.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9504, "blockHeight": 9504, "took": "3.670477ms"} -2023-12-16T14:47:31.582Z INFO sending PrepareRequest {"height": 9505, "view": 0} -2023-12-16T14:47:31.583Z INFO sending Commit {"height": 9505, "view": 0} -2023-12-16T14:47:31.583Z INFO approving block {"height": 9505, "hash": "360e4c706643c52d962e2ad9b6ffed60110ab50f5bdafd115efcea27c31a7393", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89cb4e82bd6c6bbb0f022ad2412830455ddf85c882168dee9b602230cf65631f"} -2023-12-16T14:47:31.585Z INFO initializing dbft {"height": 9506, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:31.586Z debug frostfs-node/morph.go:229 new block {"index": 9505} -2023-12-16T14:47:32.181Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9505, "blockHeight": 9505, "took": "2.970496ms"} -2023-12-16T14:47:32.585Z INFO sending PrepareRequest {"height": 9506, "view": 0} -2023-12-16T14:47:32.585Z INFO sending Commit {"height": 9506, "view": 0} -2023-12-16T14:47:32.586Z INFO approving block {"height": 9506, "hash": "0f9595b2d6650f0c6e6ff183813e35881eca23e54016795f2f34c4c2eb8c0a70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "360e4c706643c52d962e2ad9b6ffed60110ab50f5bdafd115efcea27c31a7393"} -2023-12-16T14:47:32.587Z INFO initializing dbft {"height": 9507, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:32.588Z debug frostfs-node/morph.go:229 new block {"index": 9506} -2023-12-16T14:47:33.183Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9506, "blockHeight": 9506, "took": "4.434729ms"} -2023-12-16T14:47:33.587Z INFO sending PrepareRequest {"height": 9507, "view": 0} -2023-12-16T14:47:33.587Z INFO sending Commit {"height": 9507, "view": 0} -2023-12-16T14:47:33.587Z INFO approving block {"height": 9507, "hash": "e85927b04775e6461dde760f8e50639171add64e33c955e28c37bcb2be17cee0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f9595b2d6650f0c6e6ff183813e35881eca23e54016795f2f34c4c2eb8c0a70"} -2023-12-16T14:47:33.588Z INFO initializing dbft {"height": 9508, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:33.588Z debug frostfs-node/morph.go:229 new block {"index": 9507} -2023-12-16T14:47:34.183Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9507, "blockHeight": 9507, "took": "3.201224ms"} -2023-12-16T14:47:34.588Z INFO sending PrepareRequest {"height": 9508, "view": 0} -2023-12-16T14:47:34.589Z INFO sending Commit {"height": 9508, "view": 0} -2023-12-16T14:47:34.589Z INFO approving block {"height": 9508, "hash": "1cc05611e1151976800f76bc8dda6cf47efb144f225104ceae3ac30fe377d4e8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e85927b04775e6461dde760f8e50639171add64e33c955e28c37bcb2be17cee0"} -2023-12-16T14:47:34.590Z INFO initializing dbft {"height": 9509, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:34.590Z debug frostfs-node/morph.go:229 new block {"index": 9508} -2023-12-16T14:47:35.184Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9508, "blockHeight": 9508, "took": "3.7681ms"} -2023-12-16T14:47:35.590Z INFO sending PrepareRequest {"height": 9509, "view": 0} -2023-12-16T14:47:35.590Z INFO sending Commit {"height": 9509, "view": 0} -2023-12-16T14:47:35.590Z INFO approving block {"height": 9509, "hash": "bc6be37f10e4deb462d5054fae683c4cd0b39ebfc8824f4aabc69218951f46a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1cc05611e1151976800f76bc8dda6cf47efb144f225104ceae3ac30fe377d4e8"} -2023-12-16T14:47:35.591Z INFO initializing dbft {"height": 9510, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:35.592Z debug frostfs-node/morph.go:229 new block {"index": 9509} -2023-12-16T14:47:36.185Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9509, "blockHeight": 9509, "took": "4.42437ms"} -2023-12-16T14:47:36.592Z INFO sending PrepareRequest {"height": 9510, "view": 0} -2023-12-16T14:47:36.592Z INFO sending Commit {"height": 9510, "view": 0} -2023-12-16T14:47:36.592Z INFO approving block {"height": 9510, "hash": "a3323e32ce169154e9152b46b361f32425e411c9044b66d51f90827235049de1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bc6be37f10e4deb462d5054fae683c4cd0b39ebfc8824f4aabc69218951f46a3"} -2023-12-16T14:47:36.593Z INFO initializing dbft {"height": 9511, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:36.593Z debug frostfs-node/morph.go:229 new block {"index": 9510} -2023-12-16T14:47:37.184Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9510, "blockHeight": 9510, "took": "3.184847ms"} -2023-12-16T14:47:37.593Z INFO sending PrepareRequest {"height": 9511, "view": 0} -2023-12-16T14:47:37.593Z INFO sending Commit {"height": 9511, "view": 0} -2023-12-16T14:47:37.593Z INFO approving block {"height": 9511, "hash": "064e83f907442ec58a26b095729f40b2c808f732895698b91f6e1a211f9382a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a3323e32ce169154e9152b46b361f32425e411c9044b66d51f90827235049de1"} -2023-12-16T14:47:37.594Z INFO initializing dbft {"height": 9512, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:37.595Z debug frostfs-node/morph.go:229 new block {"index": 9511} -2023-12-16T14:47:38.186Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9511, "blockHeight": 9511, "took": "4.285575ms"} -2023-12-16T14:47:38.595Z INFO sending PrepareRequest {"height": 9512, "view": 0} -2023-12-16T14:47:38.595Z INFO sending Commit {"height": 9512, "view": 0} -2023-12-16T14:47:38.595Z INFO approving block {"height": 9512, "hash": "c2c677ff96b32c64df00eabd7514d17ddc4bce0514d062fc64cbfea40196ec43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "064e83f907442ec58a26b095729f40b2c808f732895698b91f6e1a211f9382a0"} -2023-12-16T14:47:38.596Z INFO initializing dbft {"height": 9513, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:38.596Z debug frostfs-node/morph.go:229 new block {"index": 9512} -2023-12-16T14:47:39.186Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9512, "blockHeight": 9512, "took": "3.727039ms"} -2023-12-16T14:47:39.596Z INFO sending PrepareRequest {"height": 9513, "view": 0} -2023-12-16T14:47:39.596Z INFO sending Commit {"height": 9513, "view": 0} -2023-12-16T14:47:39.596Z INFO approving block {"height": 9513, "hash": "61446c7196d0223870e6940a5994da6b7e8a6158695221c3eb34ec49b896c9ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2c677ff96b32c64df00eabd7514d17ddc4bce0514d062fc64cbfea40196ec43"} -2023-12-16T14:47:39.597Z INFO initializing dbft {"height": 9514, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:39.597Z debug frostfs-node/morph.go:229 new block {"index": 9513} -2023-12-16T14:47:40.188Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9513, "blockHeight": 9513, "took": "5.154292ms"} -2023-12-16T14:47:40.597Z INFO sending PrepareRequest {"height": 9514, "view": 0} -2023-12-16T14:47:40.597Z INFO sending Commit {"height": 9514, "view": 0} -2023-12-16T14:47:40.598Z INFO approving block {"height": 9514, "hash": "490956065cae7f183d97e51899f4507a2ceaccc98119c01fdd26c399721d8f17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61446c7196d0223870e6940a5994da6b7e8a6158695221c3eb34ec49b896c9ff"} -2023-12-16T14:47:40.600Z INFO initializing dbft {"height": 9515, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:40.600Z debug frostfs-node/morph.go:229 new block {"index": 9514} -2023-12-16T14:47:41.187Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9514, "blockHeight": 9514, "took": "3.450721ms"} -2023-12-16T14:47:41.599Z INFO sending PrepareRequest {"height": 9515, "view": 0} -2023-12-16T14:47:41.600Z INFO sending Commit {"height": 9515, "view": 0} -2023-12-16T14:47:41.600Z INFO approving block {"height": 9515, "hash": "4f177ef5b162ee04f3b5c0f5330fb1e0813b7ddb06fdf1cfc5eef8362568bd56", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "490956065cae7f183d97e51899f4507a2ceaccc98119c01fdd26c399721d8f17"} -2023-12-16T14:47:41.602Z INFO initializing dbft {"height": 9516, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:41.602Z debug frostfs-node/morph.go:229 new block {"index": 9515} -2023-12-16T14:47:42.190Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9515, "blockHeight": 9515, "took": "5.004737ms"} -2023-12-16T14:47:42.601Z INFO sending PrepareRequest {"height": 9516, "view": 0} -2023-12-16T14:47:42.601Z INFO sending Commit {"height": 9516, "view": 0} -2023-12-16T14:47:42.602Z INFO approving block {"height": 9516, "hash": "67a687d0a532a8e3f62e5c0831a925073a2b2edef827fc5aa7bb90c4e0de66eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f177ef5b162ee04f3b5c0f5330fb1e0813b7ddb06fdf1cfc5eef8362568bd56"} -2023-12-16T14:47:42.603Z INFO initializing dbft {"height": 9517, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:42.604Z debug frostfs-node/morph.go:229 new block {"index": 9516} -2023-12-16T14:47:43.190Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9516, "blockHeight": 9516, "took": "4.894993ms"} -2023-12-16T14:47:43.602Z INFO sending PrepareRequest {"height": 9517, "view": 0} -2023-12-16T14:47:43.602Z INFO sending Commit {"height": 9517, "view": 0} -2023-12-16T14:47:43.603Z INFO approving block {"height": 9517, "hash": "f3ed0dafe451f461fb06b833913c92b01271280a6e72a7de8585b51fcdee5a37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "67a687d0a532a8e3f62e5c0831a925073a2b2edef827fc5aa7bb90c4e0de66eb"} -2023-12-16T14:47:43.604Z INFO initializing dbft {"height": 9518, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:43.605Z debug frostfs-node/morph.go:229 new block {"index": 9517} -2023-12-16T14:47:43.608Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 40, "iteration": 1, "error": "no data for 0 iteration in 40 epoch for consumers's trusts"} -2023-12-16T14:47:44.189Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9517, "blockHeight": 9517, "took": "3.699828ms"} -2023-12-16T14:47:44.604Z INFO sending PrepareRequest {"height": 9518, "view": 0} -2023-12-16T14:47:44.604Z INFO sending Commit {"height": 9518, "view": 0} -2023-12-16T14:47:44.604Z INFO approving block {"height": 9518, "hash": "b5f9f8796a57312bd890be961a4ab6ee2b5cae2a6f28ffa03045cd39a950a89b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3ed0dafe451f461fb06b833913c92b01271280a6e72a7de8585b51fcdee5a37"} -2023-12-16T14:47:44.605Z INFO initializing dbft {"height": 9519, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:44.605Z debug frostfs-node/morph.go:229 new block {"index": 9518} -2023-12-16T14:47:44.611Z info settlement/calls.go:61 start basic income collection {"epoch": 40} -2023-12-16T14:47:45.190Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9518, "blockHeight": 9518, "took": "3.570944ms"} -2023-12-16T14:47:45.605Z INFO sending PrepareRequest {"height": 9519, "view": 0} -2023-12-16T14:47:45.605Z INFO sending Commit {"height": 9519, "view": 0} -2023-12-16T14:47:45.606Z INFO approving block {"height": 9519, "hash": "a6e219629600e5ab1acf999767c1ddff18e034318b0c6a7b59b89b3f4df3fc17", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5f9f8796a57312bd890be961a4ab6ee2b5cae2a6f28ffa03045cd39a950a89b"} -2023-12-16T14:47:45.607Z INFO initializing dbft {"height": 9520, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:45.608Z debug frostfs-node/morph.go:229 new block {"index": 9519} -2023-12-16T14:47:46.190Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9519, "blockHeight": 9519, "took": "3.936305ms"} -2023-12-16T14:47:46.607Z INFO sending PrepareRequest {"height": 9520, "view": 0} -2023-12-16T14:47:46.607Z INFO sending Commit {"height": 9520, "view": 0} -2023-12-16T14:47:46.608Z INFO approving block {"height": 9520, "hash": "f5e2ce1eab1108f1f03e14cde855b291e7d02e3ac85f0f9a01d441bd45cc5227", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a6e219629600e5ab1acf999767c1ddff18e034318b0c6a7b59b89b3f4df3fc17"} -2023-12-16T14:47:46.608Z INFO initializing dbft {"height": 9521, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:46.609Z debug frostfs-node/morph.go:229 new block {"index": 9520} -2023-12-16T14:47:47.191Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9520, "blockHeight": 9520, "took": "3.986506ms"} -2023-12-16T14:47:47.609Z INFO sending PrepareRequest {"height": 9521, "view": 0} -2023-12-16T14:47:47.610Z INFO sending Commit {"height": 9521, "view": 0} -2023-12-16T14:47:47.610Z INFO approving block {"height": 9521, "hash": "c6b04a0dc5a5331a8be8f6a8b3933316406e01b26fce00b389a4dc9f664c7222", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5e2ce1eab1108f1f03e14cde855b291e7d02e3ac85f0f9a01d441bd45cc5227"} -2023-12-16T14:47:47.611Z INFO initializing dbft {"height": 9522, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:47.612Z debug frostfs-node/morph.go:229 new block {"index": 9521} -2023-12-16T14:47:48.191Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9521, "blockHeight": 9521, "took": "3.136265ms"} -2023-12-16T14:47:48.612Z INFO sending PrepareRequest {"height": 9522, "view": 0} -2023-12-16T14:47:48.612Z INFO sending Commit {"height": 9522, "view": 0} -2023-12-16T14:47:48.612Z INFO approving block {"height": 9522, "hash": "9a39c59a9c1ddf069dfceea6451b85dc09ee37a4f3fca74cf484ed2ba56530bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6b04a0dc5a5331a8be8f6a8b3933316406e01b26fce00b389a4dc9f664c7222"} -2023-12-16T14:47:48.613Z INFO initializing dbft {"height": 9523, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:48.614Z debug frostfs-node/morph.go:229 new block {"index": 9522} -2023-12-16T14:47:49.192Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9522, "blockHeight": 9522, "took": "4.333977ms"} -2023-12-16T14:47:49.614Z INFO sending PrepareRequest {"height": 9523, "view": 0} -2023-12-16T14:47:49.614Z INFO sending Commit {"height": 9523, "view": 0} -2023-12-16T14:47:49.614Z INFO approving block {"height": 9523, "hash": "a8d53425c0ab4ae8dbd340c1239462f9d37bde713d0b88d272a0be442a3e03cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a39c59a9c1ddf069dfceea6451b85dc09ee37a4f3fca74cf484ed2ba56530bc"} -2023-12-16T14:47:49.615Z INFO initializing dbft {"height": 9524, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:49.615Z debug frostfs-node/morph.go:229 new block {"index": 9523} -2023-12-16T14:47:50.194Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9523, "blockHeight": 9523, "took": "4.990776ms"} -2023-12-16T14:47:50.615Z INFO sending PrepareRequest {"height": 9524, "view": 0} -2023-12-16T14:47:50.615Z INFO sending Commit {"height": 9524, "view": 0} -2023-12-16T14:47:50.616Z INFO approving block {"height": 9524, "hash": "2a376ce10e4f1ee61db53cfb7b300ba259aac32109a7fe7e1344463d19806549", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8d53425c0ab4ae8dbd340c1239462f9d37bde713d0b88d272a0be442a3e03cb"} -2023-12-16T14:47:50.617Z INFO initializing dbft {"height": 9525, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:50.617Z debug frostfs-node/morph.go:229 new block {"index": 9524} -2023-12-16T14:47:51.193Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9524, "blockHeight": 9524, "took": "3.842512ms"} -2023-12-16T14:47:51.616Z INFO sending PrepareRequest {"height": 9525, "view": 0} -2023-12-16T14:47:51.617Z INFO sending Commit {"height": 9525, "view": 0} -2023-12-16T14:47:51.617Z INFO approving block {"height": 9525, "hash": "5cb84762811efab98d4ae0393b7ca70e8aaa6094a625eadb2603974f4fb1808b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2a376ce10e4f1ee61db53cfb7b300ba259aac32109a7fe7e1344463d19806549"} -2023-12-16T14:47:51.618Z INFO initializing dbft {"height": 9526, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:51.618Z debug frostfs-node/morph.go:229 new block {"index": 9525} -2023-12-16T14:47:52.194Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9525, "blockHeight": 9525, "took": "3.936165ms"} -2023-12-16T14:47:52.618Z INFO sending PrepareRequest {"height": 9526, "view": 0} -2023-12-16T14:47:52.618Z INFO sending Commit {"height": 9526, "view": 0} -2023-12-16T14:47:52.618Z INFO approving block {"height": 9526, "hash": "cbfc691d70e087a34755a4e4c3a04b7e4e6075a4d7baff895b6b10111c4f7971", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5cb84762811efab98d4ae0393b7ca70e8aaa6094a625eadb2603974f4fb1808b"} -2023-12-16T14:47:52.620Z INFO initializing dbft {"height": 9527, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:52.621Z debug frostfs-node/morph.go:229 new block {"index": 9526} -2023-12-16T14:47:53.195Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9526, "blockHeight": 9526, "took": "4.303756ms"} -2023-12-16T14:47:53.620Z INFO sending PrepareRequest {"height": 9527, "view": 0} -2023-12-16T14:47:53.620Z INFO sending Commit {"height": 9527, "view": 0} -2023-12-16T14:47:53.621Z INFO approving block {"height": 9527, "hash": "95a5ceeb7c12e5a09ba37a6d83079a26af5befb86be31347541bd7642c8c3fe1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbfc691d70e087a34755a4e4c3a04b7e4e6075a4d7baff895b6b10111c4f7971"} -2023-12-16T14:47:53.622Z INFO initializing dbft {"height": 9528, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:53.623Z debug frostfs-node/morph.go:229 new block {"index": 9527} -2023-12-16T14:47:54.196Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9527, "blockHeight": 9527, "took": "4.588744ms"} -2023-12-16T14:47:54.621Z INFO sending PrepareRequest {"height": 9528, "view": 0} -2023-12-16T14:47:54.621Z INFO sending Commit {"height": 9528, "view": 0} -2023-12-16T14:47:54.621Z INFO approving block {"height": 9528, "hash": "274872e3d929d561db59c4f651285063ad2c0b63221a2f44ece2c70c9440164d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95a5ceeb7c12e5a09ba37a6d83079a26af5befb86be31347541bd7642c8c3fe1"} -2023-12-16T14:47:54.622Z INFO initializing dbft {"height": 9529, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:54.623Z debug frostfs-node/morph.go:229 new block {"index": 9528} -2023-12-16T14:47:55.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9528, "blockHeight": 9528, "took": "5.900472ms"} -2023-12-16T14:47:55.623Z INFO sending PrepareRequest {"height": 9529, "view": 0} -2023-12-16T14:47:55.623Z INFO sending Commit {"height": 9529, "view": 0} -2023-12-16T14:47:55.623Z INFO approving block {"height": 9529, "hash": "25343c6043747f24fe9719ed36ad98fc970ee19b885c3b17293c531b539042c5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "274872e3d929d561db59c4f651285063ad2c0b63221a2f44ece2c70c9440164d"} -2023-12-16T14:47:55.625Z INFO initializing dbft {"height": 9530, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:55.625Z debug frostfs-node/morph.go:229 new block {"index": 9529} -2023-12-16T14:47:56.197Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9529, "blockHeight": 9529, "took": "5.227023ms"} -2023-12-16T14:47:56.624Z INFO sending PrepareRequest {"height": 9530, "view": 0} -2023-12-16T14:47:56.624Z INFO sending Commit {"height": 9530, "view": 0} -2023-12-16T14:47:56.625Z INFO approving block {"height": 9530, "hash": "57684a060ae812ca30af82e23d6759010f1f99318883cc9f501918e62b4b6011", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25343c6043747f24fe9719ed36ad98fc970ee19b885c3b17293c531b539042c5"} -2023-12-16T14:47:56.625Z INFO initializing dbft {"height": 9531, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:56.626Z debug frostfs-node/morph.go:229 new block {"index": 9530} -2023-12-16T14:47:57.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9530, "blockHeight": 9530, "took": "5.297574ms"} -2023-12-16T14:47:57.626Z INFO sending PrepareRequest {"height": 9531, "view": 0} -2023-12-16T14:47:57.626Z INFO sending Commit {"height": 9531, "view": 0} -2023-12-16T14:47:57.626Z INFO approving block {"height": 9531, "hash": "930236f5499911ae7bbd8adb7797a6c9af993028213d15c2b5ed43b6e2e73177", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57684a060ae812ca30af82e23d6759010f1f99318883cc9f501918e62b4b6011"} -2023-12-16T14:47:57.627Z INFO initializing dbft {"height": 9532, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:57.628Z debug frostfs-node/morph.go:229 new block {"index": 9531} -2023-12-16T14:47:58.197Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9531, "blockHeight": 9531, "took": "3.669828ms"} -2023-12-16T14:47:58.627Z INFO sending PrepareRequest {"height": 9532, "view": 0} -2023-12-16T14:47:58.627Z INFO sending Commit {"height": 9532, "view": 0} -2023-12-16T14:47:58.628Z INFO approving block {"height": 9532, "hash": "d3b49094b8c43f7f962bd8f5d38050642650a20181fbc08d25b27f7d710bd44b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "930236f5499911ae7bbd8adb7797a6c9af993028213d15c2b5ed43b6e2e73177"} -2023-12-16T14:47:58.628Z INFO initializing dbft {"height": 9533, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:58.629Z debug frostfs-node/morph.go:229 new block {"index": 9532} -2023-12-16T14:47:59.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9532, "blockHeight": 9532, "took": "4.282876ms"} -2023-12-16T14:47:59.628Z INFO sending PrepareRequest {"height": 9533, "view": 0} -2023-12-16T14:47:59.628Z INFO sending Commit {"height": 9533, "view": 0} -2023-12-16T14:47:59.629Z INFO approving block {"height": 9533, "hash": "87642eaa82db1c9a40811e515b706ae043985df0180a4b5a3fa0595d26893a2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3b49094b8c43f7f962bd8f5d38050642650a20181fbc08d25b27f7d710bd44b"} -2023-12-16T14:47:59.629Z INFO initializing dbft {"height": 9534, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:47:59.630Z debug frostfs-node/morph.go:229 new block {"index": 9533} -2023-12-16T14:48:00.201Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9533, "blockHeight": 9533, "took": "7.590152ms"} -2023-12-16T14:48:00.629Z INFO sending PrepareRequest {"height": 9534, "view": 0} -2023-12-16T14:48:00.630Z INFO sending Commit {"height": 9534, "view": 0} -2023-12-16T14:48:00.630Z INFO approving block {"height": 9534, "hash": "e1093f8d3b5618a0806b3dd91dc3b9a70c5d21dc6f1d7cb4bf0bcaa0ddda9aca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87642eaa82db1c9a40811e515b706ae043985df0180a4b5a3fa0595d26893a2b"} -2023-12-16T14:48:00.631Z INFO initializing dbft {"height": 9535, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:00.632Z debug frostfs-node/morph.go:229 new block {"index": 9534} -2023-12-16T14:48:01.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9534, "blockHeight": 9534, "took": "3.8747ms"} -2023-12-16T14:48:01.632Z INFO sending PrepareRequest {"height": 9535, "view": 0} -2023-12-16T14:48:01.632Z INFO sending Commit {"height": 9535, "view": 0} -2023-12-16T14:48:01.632Z INFO approving block {"height": 9535, "hash": "1259aba266c3356fe93ccf51ae45c4258f9214e7845668ffbb8d15c9812def6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1093f8d3b5618a0806b3dd91dc3b9a70c5d21dc6f1d7cb4bf0bcaa0ddda9aca"} -2023-12-16T14:48:01.633Z INFO initializing dbft {"height": 9536, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:01.634Z debug frostfs-node/morph.go:229 new block {"index": 9535} -2023-12-16T14:48:02.198Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9535, "blockHeight": 9535, "took": "3.141112ms"} -2023-12-16T14:48:02.633Z INFO sending PrepareRequest {"height": 9536, "view": 0} -2023-12-16T14:48:02.634Z INFO sending Commit {"height": 9536, "view": 0} -2023-12-16T14:48:02.634Z INFO approving block {"height": 9536, "hash": "00c85c21dc852b68f3e06abd2d8970cf869c94ebfed089bbfe50c5331939a96f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1259aba266c3356fe93ccf51ae45c4258f9214e7845668ffbb8d15c9812def6a"} -2023-12-16T14:48:02.636Z INFO initializing dbft {"height": 9537, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:02.636Z debug frostfs-node/morph.go:229 new block {"index": 9536} -2023-12-16T14:48:03.200Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9536, "blockHeight": 9536, "took": "4.248764ms"} -2023-12-16T14:48:03.635Z INFO sending PrepareRequest {"height": 9537, "view": 0} -2023-12-16T14:48:03.635Z INFO sending Commit {"height": 9537, "view": 0} -2023-12-16T14:48:03.635Z INFO approving block {"height": 9537, "hash": "4f83a465c70a067bea1fc6ba956d2f47587126b21b96b6310ec84456a039809c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00c85c21dc852b68f3e06abd2d8970cf869c94ebfed089bbfe50c5331939a96f"} -2023-12-16T14:48:03.636Z INFO initializing dbft {"height": 9538, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:03.637Z debug frostfs-node/morph.go:229 new block {"index": 9537} -2023-12-16T14:48:04.199Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9537, "blockHeight": 9537, "took": "3.42722ms"} -2023-12-16T14:48:04.636Z INFO sending PrepareRequest {"height": 9538, "view": 0} -2023-12-16T14:48:04.636Z INFO sending Commit {"height": 9538, "view": 0} -2023-12-16T14:48:04.637Z INFO approving block {"height": 9538, "hash": "ee8468319450725984c0c4dc04990fec104fc57290af904ca4e3392c64b5aae4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f83a465c70a067bea1fc6ba956d2f47587126b21b96b6310ec84456a039809c"} -2023-12-16T14:48:04.638Z INFO initializing dbft {"height": 9539, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:04.638Z debug frostfs-node/morph.go:229 new block {"index": 9538} -2023-12-16T14:48:05.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9538, "blockHeight": 9538, "took": "6.164886ms"} -2023-12-16T14:48:05.637Z INFO sending PrepareRequest {"height": 9539, "view": 0} -2023-12-16T14:48:05.637Z INFO sending Commit {"height": 9539, "view": 0} -2023-12-16T14:48:05.638Z INFO approving block {"height": 9539, "hash": "c5cd4efcb002685c9efaeefa86c4e0a465a6ddc422040425e9a0837cfce4dc8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee8468319450725984c0c4dc04990fec104fc57290af904ca4e3392c64b5aae4"} -2023-12-16T14:48:05.639Z INFO initializing dbft {"height": 9540, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:05.639Z debug frostfs-node/morph.go:229 new block {"index": 9539} -2023-12-16T14:48:06.203Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9539, "blockHeight": 9539, "took": "5.647094ms"} -2023-12-16T14:48:06.638Z INFO sending PrepareRequest {"height": 9540, "view": 0} -2023-12-16T14:48:06.639Z INFO sending Commit {"height": 9540, "view": 0} -2023-12-16T14:48:06.639Z INFO approving block {"height": 9540, "hash": "b2716fac9acb3ee42109eb989f5f7acaf66086611959a5cdb39fd0667bf99b81", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c5cd4efcb002685c9efaeefa86c4e0a465a6ddc422040425e9a0837cfce4dc8b"} -2023-12-16T14:48:06.640Z INFO initializing dbft {"height": 9541, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:06.640Z debug frostfs-node/morph.go:229 new block {"index": 9540} -2023-12-16T14:48:07.202Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9540, "blockHeight": 9540, "took": "3.654016ms"} -2023-12-16T14:48:07.640Z INFO sending PrepareRequest {"height": 9541, "view": 0} -2023-12-16T14:48:07.640Z INFO sending Commit {"height": 9541, "view": 0} -2023-12-16T14:48:07.641Z INFO approving block {"height": 9541, "hash": "f274ff05c03de7c70614dbf8bb87686a53beb983c5ab3f7a6d82d219e006a08c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2716fac9acb3ee42109eb989f5f7acaf66086611959a5cdb39fd0667bf99b81"} -2023-12-16T14:48:07.641Z INFO initializing dbft {"height": 9542, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:07.642Z debug frostfs-node/morph.go:229 new block {"index": 9541} -2023-12-16T14:48:08.212Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9541, "blockHeight": 9541, "took": "14.039206ms"} -2023-12-16T14:48:08.641Z INFO sending PrepareRequest {"height": 9542, "view": 0} -2023-12-16T14:48:08.641Z INFO sending Commit {"height": 9542, "view": 0} -2023-12-16T14:48:08.642Z INFO approving block {"height": 9542, "hash": "e583e02d169c7992a9300994281a38c183f0731c5dbe8d1f23c2eb233e88578d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f274ff05c03de7c70614dbf8bb87686a53beb983c5ab3f7a6d82d219e006a08c"} -2023-12-16T14:48:08.642Z INFO initializing dbft {"height": 9543, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:08.643Z debug frostfs-node/morph.go:229 new block {"index": 9542} -2023-12-16T14:48:09.202Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9542, "blockHeight": 9542, "took": "3.239134ms"} -2023-12-16T14:48:09.643Z INFO sending PrepareRequest {"height": 9543, "view": 0} -2023-12-16T14:48:09.643Z INFO sending Commit {"height": 9543, "view": 0} -2023-12-16T14:48:09.643Z INFO approving block {"height": 9543, "hash": "e46c26c01c75b29ae52a27c09b4aa24a350cec36180fd54a8106dfea60ec320a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e583e02d169c7992a9300994281a38c183f0731c5dbe8d1f23c2eb233e88578d"} -2023-12-16T14:48:09.645Z INFO initializing dbft {"height": 9544, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:09.645Z debug frostfs-node/morph.go:229 new block {"index": 9543} -2023-12-16T14:48:10.205Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9543, "blockHeight": 9543, "took": "5.516401ms"} -2023-12-16T14:48:10.644Z INFO sending PrepareRequest {"height": 9544, "view": 0} -2023-12-16T14:48:10.645Z INFO sending Commit {"height": 9544, "view": 0} -2023-12-16T14:48:10.645Z INFO approving block {"height": 9544, "hash": "afb88d89a43d83461bb85ab5048afd5ad1f2a7e97fc55d0c1bc7a6f25bf3857a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e46c26c01c75b29ae52a27c09b4aa24a350cec36180fd54a8106dfea60ec320a"} -2023-12-16T14:48:10.646Z INFO initializing dbft {"height": 9545, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:10.647Z debug frostfs-node/morph.go:229 new block {"index": 9544} -2023-12-16T14:48:11.206Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9544, "blockHeight": 9544, "took": "6.580849ms"} -2023-12-16T14:48:11.646Z INFO sending PrepareRequest {"height": 9545, "view": 0} -2023-12-16T14:48:11.646Z INFO sending Commit {"height": 9545, "view": 0} -2023-12-16T14:48:11.647Z INFO approving block {"height": 9545, "hash": "5aa9a316b7e22bcd766c667577a661a48d263e83a7f5fd13ed8a11da4bbb699b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "afb88d89a43d83461bb85ab5048afd5ad1f2a7e97fc55d0c1bc7a6f25bf3857a"} -2023-12-16T14:48:11.648Z INFO initializing dbft {"height": 9546, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:11.649Z debug frostfs-node/morph.go:229 new block {"index": 9545} -2023-12-16T14:48:12.204Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9545, "blockHeight": 9545, "took": "3.452411ms"} -2023-12-16T14:48:12.647Z INFO sending PrepareRequest {"height": 9546, "view": 0} -2023-12-16T14:48:12.647Z INFO sending Commit {"height": 9546, "view": 0} -2023-12-16T14:48:12.648Z INFO approving block {"height": 9546, "hash": "e5c1074ae9f0d3507854b09f9b263113bdd7127c3c0a73cac71bcb0a4a4d575c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5aa9a316b7e22bcd766c667577a661a48d263e83a7f5fd13ed8a11da4bbb699b"} -2023-12-16T14:48:12.649Z INFO initializing dbft {"height": 9547, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:12.650Z debug frostfs-node/morph.go:229 new block {"index": 9546} -2023-12-16T14:48:13.207Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9546, "blockHeight": 9546, "took": "6.73095ms"} -2023-12-16T14:48:13.649Z INFO sending PrepareRequest {"height": 9547, "view": 0} -2023-12-16T14:48:13.649Z INFO sending Commit {"height": 9547, "view": 0} -2023-12-16T14:48:13.649Z INFO approving block {"height": 9547, "hash": "baab5285f0e1f6b21d775f98a5d3688804a952d16b2e2a9094fb3409eb0e8579", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5c1074ae9f0d3507854b09f9b263113bdd7127c3c0a73cac71bcb0a4a4d575c"} -2023-12-16T14:48:13.651Z INFO initializing dbft {"height": 9548, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:13.651Z debug frostfs-node/morph.go:229 new block {"index": 9547} -2023-12-16T14:48:14.206Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9547, "blockHeight": 9547, "took": "5.307275ms"} -2023-12-16T14:48:14.650Z INFO sending PrepareRequest {"height": 9548, "view": 0} -2023-12-16T14:48:14.650Z INFO sending Commit {"height": 9548, "view": 0} -2023-12-16T14:48:14.650Z INFO approving block {"height": 9548, "hash": "6d8ae383b71fe1f6d2e5be940100849bc6573a47a580d7bd042f5af47f993c58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "baab5285f0e1f6b21d775f98a5d3688804a952d16b2e2a9094fb3409eb0e8579"} -2023-12-16T14:48:14.651Z INFO initializing dbft {"height": 9549, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:14.652Z debug frostfs-node/morph.go:229 new block {"index": 9548} -2023-12-16T14:48:15.208Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9548, "blockHeight": 9548, "took": "6.865708ms"} -2023-12-16T14:48:15.652Z INFO sending PrepareRequest {"height": 9549, "view": 0} -2023-12-16T14:48:15.652Z INFO sending Commit {"height": 9549, "view": 0} -2023-12-16T14:48:15.653Z INFO approving block {"height": 9549, "hash": "e5636f6858d6654c92a2f2255c61280a7ca3006cd8b36e925bf414b1494a1a88", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d8ae383b71fe1f6d2e5be940100849bc6573a47a580d7bd042f5af47f993c58"} -2023-12-16T14:48:15.654Z INFO initializing dbft {"height": 9550, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:15.654Z debug frostfs-node/morph.go:229 new block {"index": 9549} -2023-12-16T14:48:16.207Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9549, "blockHeight": 9549, "took": "4.707683ms"} -2023-12-16T14:48:16.653Z INFO sending PrepareRequest {"height": 9550, "view": 0} -2023-12-16T14:48:16.653Z INFO sending Commit {"height": 9550, "view": 0} -2023-12-16T14:48:16.654Z INFO approving block {"height": 9550, "hash": "64cd8e92a6a5a6ca85843319dd89882e2758f2f97005dc80852ab3947766d303", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5636f6858d6654c92a2f2255c61280a7ca3006cd8b36e925bf414b1494a1a88"} -2023-12-16T14:48:16.654Z INFO initializing dbft {"height": 9551, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:16.655Z debug frostfs-node/morph.go:229 new block {"index": 9550} -2023-12-16T14:48:16.657Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:48:16.659Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:48:16.659Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:48:17.208Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9550, "blockHeight": 9550, "took": "4.996066ms"} -2023-12-16T14:48:17.655Z INFO sending PrepareRequest {"height": 9551, "view": 0} -2023-12-16T14:48:17.655Z INFO sending Commit {"height": 9551, "view": 0} -2023-12-16T14:48:17.656Z INFO approving block {"height": 9551, "hash": "e0b5c23b07791a1bd167758b56ecc6eecd81573c2c88438d6c3ec564ceeea50e", "tx_count": 2, "merkle": "257a122c569bc12457e1bb619298a9cf68818575d1ce8610e7917346e69fead4", "prev": "64cd8e92a6a5a6ca85843319dd89882e2758f2f97005dc80852ab3947766d303"} -2023-12-16T14:48:17.657Z INFO runtime log {"tx": "b833906624fd05f446c94c951b07293c36f983293821baa59165770b41bdfdf7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:48:17.657Z INFO runtime log {"tx": "b833906624fd05f446c94c951b07293c36f983293821baa59165770b41bdfdf7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:48:17.658Z INFO initializing dbft {"height": 9552, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:17.659Z debug frostfs-node/morph.go:229 new block {"index": 9551} -2023-12-16T14:48:18.212Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9551, "blockHeight": 9551, "took": "8.132413ms"} -2023-12-16T14:48:18.657Z INFO sending PrepareRequest {"height": 9552, "view": 0} -2023-12-16T14:48:18.658Z INFO sending Commit {"height": 9552, "view": 0} -2023-12-16T14:48:18.658Z INFO approving block {"height": 9552, "hash": "06c07eda198cdcb773342dea97fe14ca6cb6d90b67029115c099d5634f7e855c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0b5c23b07791a1bd167758b56ecc6eecd81573c2c88438d6c3ec564ceeea50e"} -2023-12-16T14:48:18.659Z INFO initializing dbft {"height": 9553, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:18.660Z debug frostfs-node/morph.go:229 new block {"index": 9552} -2023-12-16T14:48:19.209Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9552, "blockHeight": 9552, "took": "4.226933ms"} -2023-12-16T14:48:19.659Z INFO sending PrepareRequest {"height": 9553, "view": 0} -2023-12-16T14:48:19.659Z INFO sending Commit {"height": 9553, "view": 0} -2023-12-16T14:48:19.659Z INFO approving block {"height": 9553, "hash": "34cfafd8c71c0fd5c4c40d1fabe92e92178499b90ca7bcc40d50b479325eafec", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "06c07eda198cdcb773342dea97fe14ca6cb6d90b67029115c099d5634f7e855c"} -2023-12-16T14:48:19.660Z INFO initializing dbft {"height": 9554, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:19.661Z debug frostfs-node/morph.go:229 new block {"index": 9553} -2023-12-16T14:48:20.210Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9553, "blockHeight": 9553, "took": "4.176512ms"} -2023-12-16T14:48:20.660Z INFO sending PrepareRequest {"height": 9554, "view": 0} -2023-12-16T14:48:20.661Z INFO sending Commit {"height": 9554, "view": 0} -2023-12-16T14:48:20.661Z INFO approving block {"height": 9554, "hash": "a0c3701230974bbfcc3dbe034cc9c5de1c3d39b799dd3884269db7ed56ca30f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "34cfafd8c71c0fd5c4c40d1fabe92e92178499b90ca7bcc40d50b479325eafec"} -2023-12-16T14:48:20.662Z INFO initializing dbft {"height": 9555, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:20.663Z debug frostfs-node/morph.go:229 new block {"index": 9554} -2023-12-16T14:48:21.211Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9554, "blockHeight": 9554, "took": "3.833241ms"} -2023-12-16T14:48:21.662Z INFO sending PrepareRequest {"height": 9555, "view": 0} -2023-12-16T14:48:21.662Z INFO sending Commit {"height": 9555, "view": 0} -2023-12-16T14:48:21.662Z INFO approving block {"height": 9555, "hash": "d668e706b49f005bb738b65f272ac85601cbf6fb0083d7c347730642969b01fd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0c3701230974bbfcc3dbe034cc9c5de1c3d39b799dd3884269db7ed56ca30f4"} -2023-12-16T14:48:21.663Z INFO initializing dbft {"height": 9556, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:21.663Z debug frostfs-node/morph.go:229 new block {"index": 9555} -2023-12-16T14:48:22.211Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9555, "blockHeight": 9555, "took": "3.661747ms"} -2023-12-16T14:48:22.664Z INFO sending PrepareRequest {"height": 9556, "view": 0} -2023-12-16T14:48:22.664Z INFO sending Commit {"height": 9556, "view": 0} -2023-12-16T14:48:22.664Z INFO approving block {"height": 9556, "hash": "631e49768133bfc0058f77aca6013c1716aa0842f849b5407b05ce6b4609d3af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d668e706b49f005bb738b65f272ac85601cbf6fb0083d7c347730642969b01fd"} -2023-12-16T14:48:22.665Z INFO initializing dbft {"height": 9557, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:22.666Z debug frostfs-node/morph.go:229 new block {"index": 9556} -2023-12-16T14:48:23.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9556, "blockHeight": 9556, "took": "5.094848ms"} -2023-12-16T14:48:23.665Z INFO sending PrepareRequest {"height": 9557, "view": 0} -2023-12-16T14:48:23.665Z INFO sending Commit {"height": 9557, "view": 0} -2023-12-16T14:48:23.665Z INFO approving block {"height": 9557, "hash": "9ed6f62a37e87439ca7633b9c5a8acf8c1e284f23389331280b05da5c8938355", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "631e49768133bfc0058f77aca6013c1716aa0842f849b5407b05ce6b4609d3af"} -2023-12-16T14:48:23.666Z INFO initializing dbft {"height": 9558, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:23.667Z debug frostfs-node/morph.go:229 new block {"index": 9557} -2023-12-16T14:48:24.212Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9557, "blockHeight": 9557, "took": "3.508933ms"} -2023-12-16T14:48:24.667Z INFO sending PrepareRequest {"height": 9558, "view": 0} -2023-12-16T14:48:24.667Z INFO sending Commit {"height": 9558, "view": 0} -2023-12-16T14:48:24.667Z INFO approving block {"height": 9558, "hash": "42e90f18cfb7d6a908a82b06239bfe4080232ac3652b6e33db5a4f529ff0c48e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ed6f62a37e87439ca7633b9c5a8acf8c1e284f23389331280b05da5c8938355"} -2023-12-16T14:48:24.669Z INFO initializing dbft {"height": 9559, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:24.670Z debug frostfs-node/morph.go:229 new block {"index": 9558} -2023-12-16T14:48:25.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9558, "blockHeight": 9558, "took": "4.187932ms"} -2023-12-16T14:48:25.668Z INFO sending PrepareRequest {"height": 9559, "view": 0} -2023-12-16T14:48:25.668Z INFO sending Commit {"height": 9559, "view": 0} -2023-12-16T14:48:25.669Z INFO approving block {"height": 9559, "hash": "4a3b8d32797e0c8ae749f3f368fba112132bfe9b7cd56004178334ac671d85b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42e90f18cfb7d6a908a82b06239bfe4080232ac3652b6e33db5a4f529ff0c48e"} -2023-12-16T14:48:25.669Z INFO initializing dbft {"height": 9560, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:25.670Z debug frostfs-node/morph.go:229 new block {"index": 9559} -2023-12-16T14:48:26.213Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9559, "blockHeight": 9559, "took": "3.43ms"} -2023-12-16T14:48:26.670Z INFO sending PrepareRequest {"height": 9560, "view": 0} -2023-12-16T14:48:26.670Z INFO sending Commit {"height": 9560, "view": 0} -2023-12-16T14:48:26.670Z INFO approving block {"height": 9560, "hash": "caee1ef73acf8694a1e7f24823a7afa0ebeae6030e75e9cfb6eddeb4ea9b9a5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a3b8d32797e0c8ae749f3f368fba112132bfe9b7cd56004178334ac671d85b4"} -2023-12-16T14:48:26.671Z INFO initializing dbft {"height": 9561, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:26.671Z debug frostfs-node/morph.go:229 new block {"index": 9560} -2023-12-16T14:48:27.214Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9560, "blockHeight": 9560, "took": "4.10996ms"} -2023-12-16T14:48:27.671Z INFO sending PrepareRequest {"height": 9561, "view": 0} -2023-12-16T14:48:27.672Z INFO sending Commit {"height": 9561, "view": 0} -2023-12-16T14:48:27.672Z INFO approving block {"height": 9561, "hash": "5ebfe60c4be8ac6b5c0c5a59d02ab4fae40646990dc2f7b307ff1382fd46ddff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "caee1ef73acf8694a1e7f24823a7afa0ebeae6030e75e9cfb6eddeb4ea9b9a5c"} -2023-12-16T14:48:27.672Z INFO initializing dbft {"height": 9562, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:27.673Z debug frostfs-node/morph.go:229 new block {"index": 9561} -2023-12-16T14:48:28.215Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9561, "blockHeight": 9561, "took": "4.473871ms"} -2023-12-16T14:48:28.673Z INFO sending PrepareRequest {"height": 9562, "view": 0} -2023-12-16T14:48:28.673Z INFO sending Commit {"height": 9562, "view": 0} -2023-12-16T14:48:28.673Z INFO approving block {"height": 9562, "hash": "a581f4389e89af3ddef292a9ff26b86d679b2b82e81fb0c8ae692af73b12129e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ebfe60c4be8ac6b5c0c5a59d02ab4fae40646990dc2f7b307ff1382fd46ddff"} -2023-12-16T14:48:28.674Z INFO initializing dbft {"height": 9563, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:28.675Z debug frostfs-node/morph.go:229 new block {"index": 9562} -2023-12-16T14:48:29.216Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9562, "blockHeight": 9562, "took": "4.898233ms"} -2023-12-16T14:48:29.674Z INFO sending PrepareRequest {"height": 9563, "view": 0} -2023-12-16T14:48:29.674Z INFO sending Commit {"height": 9563, "view": 0} -2023-12-16T14:48:29.675Z INFO approving block {"height": 9563, "hash": "f6ead737a541e7983e3551d87cdd6e5d747258ac531cb8273093653cd11c9646", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a581f4389e89af3ddef292a9ff26b86d679b2b82e81fb0c8ae692af73b12129e"} -2023-12-16T14:48:29.677Z INFO initializing dbft {"height": 9564, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:29.677Z debug frostfs-node/morph.go:229 new block {"index": 9563} -2023-12-16T14:48:30.216Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9563, "blockHeight": 9563, "took": "3.77266ms"} -2023-12-16T14:48:30.675Z INFO sending PrepareRequest {"height": 9564, "view": 0} -2023-12-16T14:48:30.676Z INFO sending Commit {"height": 9564, "view": 0} -2023-12-16T14:48:30.676Z INFO approving block {"height": 9564, "hash": "e83493f03a859b412ddc3cb0d9f0218bccfbcd102737ddcbd2a84e6e4f4d07db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6ead737a541e7983e3551d87cdd6e5d747258ac531cb8273093653cd11c9646"} -2023-12-16T14:48:30.677Z INFO initializing dbft {"height": 9565, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:30.677Z debug frostfs-node/morph.go:229 new block {"index": 9564} -2023-12-16T14:48:31.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9564, "blockHeight": 9564, "took": "4.224003ms"} -2023-12-16T14:48:31.677Z INFO sending PrepareRequest {"height": 9565, "view": 0} -2023-12-16T14:48:31.677Z INFO sending Commit {"height": 9565, "view": 0} -2023-12-16T14:48:31.677Z INFO approving block {"height": 9565, "hash": "9635c6dcc63b2032c674f7457a7742c0ea3b410a6d0e5f3acabcd72c613303a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e83493f03a859b412ddc3cb0d9f0218bccfbcd102737ddcbd2a84e6e4f4d07db"} -2023-12-16T14:48:31.678Z INFO initializing dbft {"height": 9566, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:31.678Z debug frostfs-node/morph.go:229 new block {"index": 9565} -2023-12-16T14:48:32.217Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9565, "blockHeight": 9565, "took": "3.986566ms"} -2023-12-16T14:48:32.678Z INFO sending PrepareRequest {"height": 9566, "view": 0} -2023-12-16T14:48:32.679Z INFO sending Commit {"height": 9566, "view": 0} -2023-12-16T14:48:32.679Z INFO approving block {"height": 9566, "hash": "b5ddbdf39f4eb61993c64ff9b1037fc375a4d2a15926d0e31790e4930381c4a3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9635c6dcc63b2032c674f7457a7742c0ea3b410a6d0e5f3acabcd72c613303a0"} -2023-12-16T14:48:32.679Z INFO initializing dbft {"height": 9567, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:32.680Z debug frostfs-node/morph.go:229 new block {"index": 9566} -2023-12-16T14:48:33.218Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9566, "blockHeight": 9566, "took": "3.76769ms"} -2023-12-16T14:48:33.680Z INFO sending PrepareRequest {"height": 9567, "view": 0} -2023-12-16T14:48:33.681Z INFO sending Commit {"height": 9567, "view": 0} -2023-12-16T14:48:33.681Z INFO approving block {"height": 9567, "hash": "a4a8382d4410cedddf8fa6664d8a2e8439ff7a710070c221d1b797f521f9ecb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5ddbdf39f4eb61993c64ff9b1037fc375a4d2a15926d0e31790e4930381c4a3"} -2023-12-16T14:48:33.683Z INFO initializing dbft {"height": 9568, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:33.684Z debug frostfs-node/morph.go:229 new block {"index": 9567} -2023-12-16T14:48:34.220Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9567, "blockHeight": 9567, "took": "4.873392ms"} -2023-12-16T14:48:34.682Z INFO sending PrepareRequest {"height": 9568, "view": 0} -2023-12-16T14:48:34.682Z INFO sending Commit {"height": 9568, "view": 0} -2023-12-16T14:48:34.683Z INFO approving block {"height": 9568, "hash": "6513d4eea8840b9a6620b9f2107d02901f1e32294c498af8812bb32aba4444e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a4a8382d4410cedddf8fa6664d8a2e8439ff7a710070c221d1b797f521f9ecb7"} -2023-12-16T14:48:34.684Z INFO initializing dbft {"height": 9569, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:34.685Z debug frostfs-node/morph.go:229 new block {"index": 9568} -2023-12-16T14:48:35.219Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9568, "blockHeight": 9568, "took": "3.693758ms"} -2023-12-16T14:48:35.683Z INFO sending PrepareRequest {"height": 9569, "view": 0} -2023-12-16T14:48:35.683Z INFO sending Commit {"height": 9569, "view": 0} -2023-12-16T14:48:35.683Z INFO approving block {"height": 9569, "hash": "8eaddfffedb5d4f5e01fc839075ef6f981f8f99e54839077c9360697a3e28822", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6513d4eea8840b9a6620b9f2107d02901f1e32294c498af8812bb32aba4444e3"} -2023-12-16T14:48:35.684Z INFO initializing dbft {"height": 9570, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:35.685Z debug frostfs-node/morph.go:229 new block {"index": 9569} -2023-12-16T14:48:36.219Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9569, "blockHeight": 9569, "took": "3.248175ms"} -2023-12-16T14:48:36.685Z INFO sending PrepareRequest {"height": 9570, "view": 0} -2023-12-16T14:48:36.685Z INFO sending Commit {"height": 9570, "view": 0} -2023-12-16T14:48:36.685Z INFO approving block {"height": 9570, "hash": "e8cf85f6418b66a158c5795ac783abd52e063a7207de7518d971f7dfc88d0f20", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8eaddfffedb5d4f5e01fc839075ef6f981f8f99e54839077c9360697a3e28822"} -2023-12-16T14:48:36.686Z INFO initializing dbft {"height": 9571, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:36.686Z debug frostfs-node/morph.go:229 new block {"index": 9570} -2023-12-16T14:48:37.219Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9570, "blockHeight": 9570, "took": "3.07812ms"} -2023-12-16T14:48:37.686Z INFO sending PrepareRequest {"height": 9571, "view": 0} -2023-12-16T14:48:37.687Z INFO sending Commit {"height": 9571, "view": 0} -2023-12-16T14:48:37.687Z INFO approving block {"height": 9571, "hash": "481d7ffad8b8d1ce7a07befaea535992d2e8c6b53035f7e1f14753ec563d9f39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e8cf85f6418b66a158c5795ac783abd52e063a7207de7518d971f7dfc88d0f20"} -2023-12-16T14:48:37.689Z INFO initializing dbft {"height": 9572, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:37.689Z debug frostfs-node/morph.go:229 new block {"index": 9571} -2023-12-16T14:48:38.222Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9571, "blockHeight": 9571, "took": "5.088388ms"} -2023-12-16T14:48:38.688Z INFO sending PrepareRequest {"height": 9572, "view": 0} -2023-12-16T14:48:38.688Z INFO sending Commit {"height": 9572, "view": 0} -2023-12-16T14:48:38.689Z INFO approving block {"height": 9572, "hash": "f6eba4c7ee6e80b8a1fcd1cf4fbfd552317127e7d6a2b5cc3906836c994c8f4f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "481d7ffad8b8d1ce7a07befaea535992d2e8c6b53035f7e1f14753ec563d9f39"} -2023-12-16T14:48:38.690Z INFO initializing dbft {"height": 9573, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:38.690Z debug frostfs-node/morph.go:229 new block {"index": 9572} -2023-12-16T14:48:39.221Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9572, "blockHeight": 9572, "took": "3.573314ms"} -2023-12-16T14:48:39.690Z INFO sending PrepareRequest {"height": 9573, "view": 0} -2023-12-16T14:48:39.690Z INFO sending Commit {"height": 9573, "view": 0} -2023-12-16T14:48:39.691Z INFO approving block {"height": 9573, "hash": "31544aee4c6155130dfc0b8515bc656b6a21d9afaf042820780df96393d9b1ef", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f6eba4c7ee6e80b8a1fcd1cf4fbfd552317127e7d6a2b5cc3906836c994c8f4f"} -2023-12-16T14:48:39.692Z INFO initializing dbft {"height": 9574, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:39.692Z debug frostfs-node/morph.go:229 new block {"index": 9573} -2023-12-16T14:48:40.223Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9573, "blockHeight": 9573, "took": "4.814911ms"} -2023-12-16T14:48:40.692Z INFO sending PrepareRequest {"height": 9574, "view": 0} -2023-12-16T14:48:40.692Z INFO sending Commit {"height": 9574, "view": 0} -2023-12-16T14:48:40.692Z INFO approving block {"height": 9574, "hash": "0e3d080714c1d3a76c65d7af04b6c168a1616f309546fa31c417840d9913904f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "31544aee4c6155130dfc0b8515bc656b6a21d9afaf042820780df96393d9b1ef"} -2023-12-16T14:48:40.693Z INFO initializing dbft {"height": 9575, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:40.693Z debug frostfs-node/morph.go:229 new block {"index": 9574} -2023-12-16T14:48:41.225Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9574, "blockHeight": 9574, "took": "5.468779ms"} -2023-12-16T14:48:41.693Z INFO sending PrepareRequest {"height": 9575, "view": 0} -2023-12-16T14:48:41.693Z INFO sending Commit {"height": 9575, "view": 0} -2023-12-16T14:48:41.694Z INFO approving block {"height": 9575, "hash": "d3d05849df3fabfeeb97c45eda4289c831175046b02617d01eabd9eac8ec3620", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e3d080714c1d3a76c65d7af04b6c168a1616f309546fa31c417840d9913904f"} -2023-12-16T14:48:41.694Z INFO initializing dbft {"height": 9576, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:41.695Z debug frostfs-node/morph.go:229 new block {"index": 9575} -2023-12-16T14:48:42.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9575, "blockHeight": 9575, "took": "7.905131ms"} -2023-12-16T14:48:42.694Z INFO sending PrepareRequest {"height": 9576, "view": 0} -2023-12-16T14:48:42.694Z INFO sending Commit {"height": 9576, "view": 0} -2023-12-16T14:48:42.695Z INFO approving block {"height": 9576, "hash": "78bcdb04695667acab6d12d39f48fc5edde1b3f1d951e5cbf6b1fb0c1b366640", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d3d05849df3fabfeeb97c45eda4289c831175046b02617d01eabd9eac8ec3620"} -2023-12-16T14:48:42.695Z INFO initializing dbft {"height": 9577, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:42.696Z debug frostfs-node/morph.go:229 new block {"index": 9576} -2023-12-16T14:48:43.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9576, "blockHeight": 9576, "took": "5.526822ms"} -2023-12-16T14:48:43.696Z INFO sending PrepareRequest {"height": 9577, "view": 0} -2023-12-16T14:48:43.696Z INFO sending Commit {"height": 9577, "view": 0} -2023-12-16T14:48:43.696Z INFO approving block {"height": 9577, "hash": "0e27604df3d83d75e7027b49359b5afff468aaa83ef982de695971f1b183de3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78bcdb04695667acab6d12d39f48fc5edde1b3f1d951e5cbf6b1fb0c1b366640"} -2023-12-16T14:48:43.697Z INFO initializing dbft {"height": 9578, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:43.698Z debug frostfs-node/morph.go:229 new block {"index": 9577} -2023-12-16T14:48:43.700Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 40, "iteration": 2, "error": "no data for 1 iteration in 40 epoch for consumers's trusts"} -2023-12-16T14:48:44.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9577, "blockHeight": 9577, "took": "4.294516ms"} -2023-12-16T14:48:44.697Z INFO sending PrepareRequest {"height": 9578, "view": 0} -2023-12-16T14:48:44.697Z INFO sending Commit {"height": 9578, "view": 0} -2023-12-16T14:48:44.697Z INFO approving block {"height": 9578, "hash": "e11e9f146266a38032b40e3e40ddfac322ef02d3ef87de05cbf50ac9d59f8e3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0e27604df3d83d75e7027b49359b5afff468aaa83ef982de695971f1b183de3a"} -2023-12-16T14:48:44.698Z INFO initializing dbft {"height": 9579, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:44.698Z debug frostfs-node/morph.go:229 new block {"index": 9578} -2023-12-16T14:48:44.703Z info settlement/calls.go:106 start basic income distribution {"epoch": 40} -2023-12-16T14:48:45.226Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9578, "blockHeight": 9578, "took": "3.316207ms"} -2023-12-16T14:48:45.698Z INFO sending PrepareRequest {"height": 9579, "view": 0} -2023-12-16T14:48:45.698Z INFO sending Commit {"height": 9579, "view": 0} -2023-12-16T14:48:45.699Z INFO approving block {"height": 9579, "hash": "baac849c9d1180a7a55800a477ca37a62a1e51e2e58b0fe0755fbb1b3949e95c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e11e9f146266a38032b40e3e40ddfac322ef02d3ef87de05cbf50ac9d59f8e3b"} -2023-12-16T14:48:45.700Z INFO initializing dbft {"height": 9580, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:45.701Z debug frostfs-node/morph.go:229 new block {"index": 9579} -2023-12-16T14:48:46.228Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9579, "blockHeight": 9579, "took": "4.609098ms"} -2023-12-16T14:48:46.699Z INFO sending PrepareRequest {"height": 9580, "view": 0} -2023-12-16T14:48:46.700Z INFO sending Commit {"height": 9580, "view": 0} -2023-12-16T14:48:46.700Z INFO approving block {"height": 9580, "hash": "64b5bfbe0ed76771c2e65973f6fec9a6cbe3de431e86285223555f347bef864a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "baac849c9d1180a7a55800a477ca37a62a1e51e2e58b0fe0755fbb1b3949e95c"} -2023-12-16T14:48:46.701Z INFO initializing dbft {"height": 9581, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:46.701Z debug frostfs-node/morph.go:229 new block {"index": 9580} -2023-12-16T14:48:47.229Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9580, "blockHeight": 9580, "took": "5.563302ms"} -2023-12-16T14:48:47.701Z INFO sending PrepareRequest {"height": 9581, "view": 0} -2023-12-16T14:48:47.701Z INFO sending Commit {"height": 9581, "view": 0} -2023-12-16T14:48:47.701Z INFO approving block {"height": 9581, "hash": "a8e2e1123c21463322bd375f45c0789438ac7c615de731b906119585e26e9fcf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "64b5bfbe0ed76771c2e65973f6fec9a6cbe3de431e86285223555f347bef864a"} -2023-12-16T14:48:47.702Z INFO initializing dbft {"height": 9582, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:47.702Z debug frostfs-node/morph.go:229 new block {"index": 9581} -2023-12-16T14:48:48.229Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9581, "blockHeight": 9581, "took": "4.665151ms"} -2023-12-16T14:48:48.703Z INFO sending PrepareRequest {"height": 9582, "view": 0} -2023-12-16T14:48:48.703Z INFO sending Commit {"height": 9582, "view": 0} -2023-12-16T14:48:48.704Z INFO approving block {"height": 9582, "hash": "c4ddc9dea72f0014e5d039ef0436b57fd84ff80c38cdd8a75ec88548ae19a532", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a8e2e1123c21463322bd375f45c0789438ac7c615de731b906119585e26e9fcf"} -2023-12-16T14:48:48.705Z INFO initializing dbft {"height": 9583, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:48.706Z debug frostfs-node/morph.go:229 new block {"index": 9582} -2023-12-16T14:48:49.229Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9582, "blockHeight": 9582, "took": "4.410548ms"} -2023-12-16T14:48:49.705Z INFO sending PrepareRequest {"height": 9583, "view": 0} -2023-12-16T14:48:49.705Z INFO sending Commit {"height": 9583, "view": 0} -2023-12-16T14:48:49.705Z INFO approving block {"height": 9583, "hash": "fe7aafad58177ff659f9c3354413c8cb4dbe24012765cb6878d910071bfd4fc7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4ddc9dea72f0014e5d039ef0436b57fd84ff80c38cdd8a75ec88548ae19a532"} -2023-12-16T14:48:49.706Z INFO initializing dbft {"height": 9584, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:49.707Z debug frostfs-node/morph.go:229 new block {"index": 9583} -2023-12-16T14:48:50.230Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9583, "blockHeight": 9583, "took": "3.457271ms"} -2023-12-16T14:48:50.706Z INFO sending PrepareRequest {"height": 9584, "view": 0} -2023-12-16T14:48:50.706Z INFO sending Commit {"height": 9584, "view": 0} -2023-12-16T14:48:50.706Z INFO approving block {"height": 9584, "hash": "96b6cfe314711a51f875ea2518699f2117a32f1045e64164b10654dc83aa2ddf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fe7aafad58177ff659f9c3354413c8cb4dbe24012765cb6878d910071bfd4fc7"} -2023-12-16T14:48:50.707Z INFO initializing dbft {"height": 9585, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:50.708Z debug frostfs-node/morph.go:229 new block {"index": 9584} -2023-12-16T14:48:51.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9584, "blockHeight": 9584, "took": "7.477508ms"} -2023-12-16T14:48:51.707Z INFO sending PrepareRequest {"height": 9585, "view": 0} -2023-12-16T14:48:51.707Z INFO sending Commit {"height": 9585, "view": 0} -2023-12-16T14:48:51.708Z INFO approving block {"height": 9585, "hash": "373a2802db821e7a9cd038048b6cac45f2f52d08bb61849452d47d9bb7ee5eca", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "96b6cfe314711a51f875ea2518699f2117a32f1045e64164b10654dc83aa2ddf"} -2023-12-16T14:48:51.709Z INFO initializing dbft {"height": 9586, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:51.710Z debug frostfs-node/morph.go:229 new block {"index": 9585} -2023-12-16T14:48:52.233Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9585, "blockHeight": 9585, "took": "5.81625ms"} -2023-12-16T14:48:52.709Z INFO sending PrepareRequest {"height": 9586, "view": 0} -2023-12-16T14:48:52.709Z INFO sending Commit {"height": 9586, "view": 0} -2023-12-16T14:48:52.709Z INFO approving block {"height": 9586, "hash": "a06d076664cafb12d2e96f8a903d6cf50c3b2d498292d365809aba0bd8b3b8f7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "373a2802db821e7a9cd038048b6cac45f2f52d08bb61849452d47d9bb7ee5eca"} -2023-12-16T14:48:52.710Z INFO initializing dbft {"height": 9587, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:52.710Z debug frostfs-node/morph.go:229 new block {"index": 9586} -2023-12-16T14:48:53.237Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9586, "blockHeight": 9586, "took": "8.655073ms"} -2023-12-16T14:48:53.709Z INFO sending PrepareRequest {"height": 9587, "view": 0} -2023-12-16T14:48:53.709Z INFO sending Commit {"height": 9587, "view": 0} -2023-12-16T14:48:53.710Z INFO approving block {"height": 9587, "hash": "41e1736d476d2780d32cbdde52eabe58e12ed2de90e6971902b67dfb8fb2623d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a06d076664cafb12d2e96f8a903d6cf50c3b2d498292d365809aba0bd8b3b8f7"} -2023-12-16T14:48:53.710Z INFO initializing dbft {"height": 9588, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:53.711Z debug frostfs-node/morph.go:229 new block {"index": 9587} -2023-12-16T14:48:54.235Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9587, "blockHeight": 9587, "took": "5.847876ms"} -2023-12-16T14:48:54.711Z INFO sending PrepareRequest {"height": 9588, "view": 0} -2023-12-16T14:48:54.711Z INFO sending Commit {"height": 9588, "view": 0} -2023-12-16T14:48:54.711Z INFO approving block {"height": 9588, "hash": "4d56afe17d6e34a0c4367403aa4b027b2627334a0df3399baf4762f67428d30c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41e1736d476d2780d32cbdde52eabe58e12ed2de90e6971902b67dfb8fb2623d"} -2023-12-16T14:48:54.712Z INFO initializing dbft {"height": 9589, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:54.713Z debug frostfs-node/morph.go:229 new block {"index": 9588} -2023-12-16T14:48:55.235Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9588, "blockHeight": 9588, "took": "5.006887ms"} -2023-12-16T14:48:55.712Z INFO sending PrepareRequest {"height": 9589, "view": 0} -2023-12-16T14:48:55.712Z INFO sending Commit {"height": 9589, "view": 0} -2023-12-16T14:48:55.713Z INFO approving block {"height": 9589, "hash": "b82b18a07d7909960ce7c5f60ea30152041576c6a53d39f66639c8e277614766", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d56afe17d6e34a0c4367403aa4b027b2627334a0df3399baf4762f67428d30c"} -2023-12-16T14:48:55.714Z INFO initializing dbft {"height": 9590, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:55.715Z debug frostfs-node/morph.go:229 new block {"index": 9589} -2023-12-16T14:48:56.234Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9589, "blockHeight": 9589, "took": "3.903094ms"} -2023-12-16T14:48:56.713Z INFO sending PrepareRequest {"height": 9590, "view": 0} -2023-12-16T14:48:56.713Z INFO sending Commit {"height": 9590, "view": 0} -2023-12-16T14:48:56.714Z INFO approving block {"height": 9590, "hash": "682ced4dd949c4d2f576eaf974ca45f70e634220f44b197ea1878e37cb6432ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b82b18a07d7909960ce7c5f60ea30152041576c6a53d39f66639c8e277614766"} -2023-12-16T14:48:56.714Z INFO initializing dbft {"height": 9591, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:56.715Z debug frostfs-node/morph.go:229 new block {"index": 9590} -2023-12-16T14:48:57.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9590, "blockHeight": 9590, "took": "5.011886ms"} -2023-12-16T14:48:57.715Z INFO sending PrepareRequest {"height": 9591, "view": 0} -2023-12-16T14:48:57.716Z INFO sending Commit {"height": 9591, "view": 0} -2023-12-16T14:48:57.716Z INFO approving block {"height": 9591, "hash": "b48c146b878d63b40ad15a9a16bbd6cbd068fb94333d985c5ab78823c7f19488", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "682ced4dd949c4d2f576eaf974ca45f70e634220f44b197ea1878e37cb6432ea"} -2023-12-16T14:48:57.718Z INFO initializing dbft {"height": 9592, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:57.718Z debug frostfs-node/morph.go:229 new block {"index": 9591} -2023-12-16T14:48:58.236Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9591, "blockHeight": 9591, "took": "4.990903ms"} -2023-12-16T14:48:58.718Z INFO sending PrepareRequest {"height": 9592, "view": 0} -2023-12-16T14:48:58.718Z INFO sending Commit {"height": 9592, "view": 0} -2023-12-16T14:48:58.718Z INFO approving block {"height": 9592, "hash": "783c9c14cbc07976e9aa2f17ee6493a4514d78b5f842675aeda04085874807c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b48c146b878d63b40ad15a9a16bbd6cbd068fb94333d985c5ab78823c7f19488"} -2023-12-16T14:48:58.719Z INFO initializing dbft {"height": 9593, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:58.719Z debug frostfs-node/morph.go:229 new block {"index": 9592} -2023-12-16T14:48:59.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9592, "blockHeight": 9592, "took": "7.578321ms"} -2023-12-16T14:48:59.719Z INFO sending PrepareRequest {"height": 9593, "view": 0} -2023-12-16T14:48:59.719Z INFO sending Commit {"height": 9593, "view": 0} -2023-12-16T14:48:59.719Z INFO approving block {"height": 9593, "hash": "42284c673c74a35bd4c9bcccaac2434eb1ab1b1c914d85c83b7c72d2e1bef5a6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "783c9c14cbc07976e9aa2f17ee6493a4514d78b5f842675aeda04085874807c0"} -2023-12-16T14:48:59.720Z INFO initializing dbft {"height": 9594, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:48:59.721Z debug frostfs-node/morph.go:229 new block {"index": 9593} -2023-12-16T14:49:00.238Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9593, "blockHeight": 9593, "took": "5.782859ms"} -2023-12-16T14:49:00.721Z INFO sending PrepareRequest {"height": 9594, "view": 0} -2023-12-16T14:49:00.721Z INFO sending Commit {"height": 9594, "view": 0} -2023-12-16T14:49:00.721Z INFO approving block {"height": 9594, "hash": "6caffd60dcb027322556db2535f047bf0a05c3f912de07cb88f52fca2a06b367", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42284c673c74a35bd4c9bcccaac2434eb1ab1b1c914d85c83b7c72d2e1bef5a6"} -2023-12-16T14:49:00.722Z INFO initializing dbft {"height": 9595, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:00.722Z debug frostfs-node/morph.go:229 new block {"index": 9594} -2023-12-16T14:49:01.239Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9594, "blockHeight": 9594, "took": "5.835991ms"} -2023-12-16T14:49:01.723Z INFO sending PrepareRequest {"height": 9595, "view": 0} -2023-12-16T14:49:01.723Z INFO sending Commit {"height": 9595, "view": 0} -2023-12-16T14:49:01.724Z INFO approving block {"height": 9595, "hash": "a144c7bd93951640370bbce893c9dee1fe297f939061abedfe8a76c98318575c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6caffd60dcb027322556db2535f047bf0a05c3f912de07cb88f52fca2a06b367"} -2023-12-16T14:49:01.725Z INFO initializing dbft {"height": 9596, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:01.725Z debug frostfs-node/morph.go:229 new block {"index": 9595} -2023-12-16T14:49:02.241Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9595, "blockHeight": 9595, "took": "6.009485ms"} -2023-12-16T14:49:02.725Z INFO sending PrepareRequest {"height": 9596, "view": 0} -2023-12-16T14:49:02.725Z INFO sending Commit {"height": 9596, "view": 0} -2023-12-16T14:49:02.725Z INFO approving block {"height": 9596, "hash": "665429d28a4ade454752a5861d899adaa7db42b469aaade4ab6e9be8bad21883", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a144c7bd93951640370bbce893c9dee1fe297f939061abedfe8a76c98318575c"} -2023-12-16T14:49:02.726Z INFO initializing dbft {"height": 9597, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:02.727Z debug frostfs-node/morph.go:229 new block {"index": 9596} -2023-12-16T14:49:03.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9596, "blockHeight": 9596, "took": "5.281783ms"} -2023-12-16T14:49:03.726Z INFO sending PrepareRequest {"height": 9597, "view": 0} -2023-12-16T14:49:03.726Z INFO sending Commit {"height": 9597, "view": 0} -2023-12-16T14:49:03.727Z INFO approving block {"height": 9597, "hash": "91886bb5fead76d3284d202984d76dec1e1b4aa7171b1bbe2e506ec564869c69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "665429d28a4ade454752a5861d899adaa7db42b469aaade4ab6e9be8bad21883"} -2023-12-16T14:49:03.727Z INFO initializing dbft {"height": 9598, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:03.728Z debug frostfs-node/morph.go:229 new block {"index": 9597} -2023-12-16T14:49:04.239Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9597, "blockHeight": 9597, "took": "3.049409ms"} -2023-12-16T14:49:04.727Z INFO sending PrepareRequest {"height": 9598, "view": 0} -2023-12-16T14:49:04.728Z INFO sending Commit {"height": 9598, "view": 0} -2023-12-16T14:49:04.728Z INFO approving block {"height": 9598, "hash": "d586685abbb3e041609471f906d0eb7131594e63c9cc0eaf74db28275ef4b40b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91886bb5fead76d3284d202984d76dec1e1b4aa7171b1bbe2e506ec564869c69"} -2023-12-16T14:49:04.729Z INFO initializing dbft {"height": 9599, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:04.729Z debug frostfs-node/morph.go:229 new block {"index": 9598} -2023-12-16T14:49:05.241Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9598, "blockHeight": 9598, "took": "5.395127ms"} -2023-12-16T14:49:05.729Z INFO sending PrepareRequest {"height": 9599, "view": 0} -2023-12-16T14:49:05.730Z INFO sending Commit {"height": 9599, "view": 0} -2023-12-16T14:49:05.730Z INFO approving block {"height": 9599, "hash": "3da5ff459a2f7845c7ee2a004b443a5cb77a2d9fd770ca2346e0b03651fd07ae", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d586685abbb3e041609471f906d0eb7131594e63c9cc0eaf74db28275ef4b40b"} -2023-12-16T14:49:05.731Z INFO initializing dbft {"height": 9600, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:05.731Z debug frostfs-node/morph.go:229 new block {"index": 9599} -2023-12-16T14:49:06.240Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9599, "blockHeight": 9599, "took": "3.461811ms"} -2023-12-16T14:49:06.731Z INFO sending PrepareRequest {"height": 9600, "view": 0} -2023-12-16T14:49:06.731Z INFO sending Commit {"height": 9600, "view": 0} -2023-12-16T14:49:06.731Z INFO approving block {"height": 9600, "hash": "6a9d2f749c2f1b2a36e4fa89f13ef450730b0914e205e38369ce62e894b98c28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3da5ff459a2f7845c7ee2a004b443a5cb77a2d9fd770ca2346e0b03651fd07ae"} -2023-12-16T14:49:06.733Z INFO initializing dbft {"height": 9601, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:06.733Z debug frostfs-node/morph.go:229 new block {"index": 9600} -2023-12-16T14:49:06.735Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:49:06.739Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:49:06.739Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:49:07.242Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9600, "blockHeight": 9600, "took": "4.880072ms"} -2023-12-16T14:49:07.732Z INFO sending PrepareRequest {"height": 9601, "view": 0} -2023-12-16T14:49:07.733Z INFO sending Commit {"height": 9601, "view": 0} -2023-12-16T14:49:07.733Z INFO approving block {"height": 9601, "hash": "0cc5d617827fba1c85a74c2e6664cb1e4e4c814e4d2c1485d15591ed39585c13", "tx_count": 2, "merkle": "8217f477fae7069ca9641b8987240e8e2d6dccfb51ba3b157ccb8a1a886dad75", "prev": "6a9d2f749c2f1b2a36e4fa89f13ef450730b0914e205e38369ce62e894b98c28"} -2023-12-16T14:49:07.734Z INFO runtime log {"tx": "01592d35b85ac0110ec5613e15286ae1b95d64e07cf0ff01dbeb430d880476c1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:49:07.734Z INFO runtime log {"tx": "01592d35b85ac0110ec5613e15286ae1b95d64e07cf0ff01dbeb430d880476c1", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:49:07.736Z INFO initializing dbft {"height": 9602, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:07.737Z debug frostfs-node/morph.go:229 new block {"index": 9601} -2023-12-16T14:49:08.244Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9601, "blockHeight": 9601, "took": "6.188042ms"} -2023-12-16T14:49:08.733Z INFO sending PrepareRequest {"height": 9602, "view": 0} -2023-12-16T14:49:08.734Z INFO sending Commit {"height": 9602, "view": 0} -2023-12-16T14:49:08.734Z INFO approving block {"height": 9602, "hash": "3ed86bc606bb55ee20bdeb386238a018213f7cf7cbbb9c7174a9b205db85c196", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0cc5d617827fba1c85a74c2e6664cb1e4e4c814e4d2c1485d15591ed39585c13"} -2023-12-16T14:49:08.735Z INFO initializing dbft {"height": 9603, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:08.735Z debug frostfs-node/morph.go:229 new block {"index": 9602} -2023-12-16T14:49:09.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9602, "blockHeight": 9602, "took": "4.80492ms"} -2023-12-16T14:49:09.735Z INFO sending PrepareRequest {"height": 9603, "view": 0} -2023-12-16T14:49:09.735Z INFO sending Commit {"height": 9603, "view": 0} -2023-12-16T14:49:09.735Z INFO approving block {"height": 9603, "hash": "dd114e3588130fb041e48c28836dc1cf95cc4d0d8dc0c580fb0c7fdcdc0212d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ed86bc606bb55ee20bdeb386238a018213f7cf7cbbb9c7174a9b205db85c196"} -2023-12-16T14:49:09.736Z INFO initializing dbft {"height": 9604, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:09.737Z debug frostfs-node/morph.go:229 new block {"index": 9603} -2023-12-16T14:49:10.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9603, "blockHeight": 9603, "took": "4.656701ms"} -2023-12-16T14:49:10.736Z INFO sending PrepareRequest {"height": 9604, "view": 0} -2023-12-16T14:49:10.736Z INFO sending Commit {"height": 9604, "view": 0} -2023-12-16T14:49:10.736Z INFO approving block {"height": 9604, "hash": "b3b843e96b93209d0ecf2423d74731aaee4d2b70b4b8d36c8563342642556839", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd114e3588130fb041e48c28836dc1cf95cc4d0d8dc0c580fb0c7fdcdc0212d9"} -2023-12-16T14:49:10.737Z INFO initializing dbft {"height": 9605, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:10.738Z debug frostfs-node/morph.go:229 new block {"index": 9604} -2023-12-16T14:49:11.245Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9604, "blockHeight": 9604, "took": "5.731077ms"} -2023-12-16T14:49:11.737Z INFO sending PrepareRequest {"height": 9605, "view": 0} -2023-12-16T14:49:11.737Z INFO sending Commit {"height": 9605, "view": 0} -2023-12-16T14:49:11.738Z INFO approving block {"height": 9605, "hash": "14ba4b51df41c0d12ca7cbd77020ecd1cbaa41e60919fbc730f3e085ed2ca945", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3b843e96b93209d0ecf2423d74731aaee4d2b70b4b8d36c8563342642556839"} -2023-12-16T14:49:11.738Z INFO initializing dbft {"height": 9606, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:11.739Z debug frostfs-node/morph.go:229 new block {"index": 9605} -2023-12-16T14:49:12.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9605, "blockHeight": 9605, "took": "3.08742ms"} -2023-12-16T14:49:12.738Z INFO sending PrepareRequest {"height": 9606, "view": 0} -2023-12-16T14:49:12.739Z INFO sending Commit {"height": 9606, "view": 0} -2023-12-16T14:49:12.739Z INFO approving block {"height": 9606, "hash": "01f24e5ea22be21075bb189e76c307e009e55266707ff59807373bf031579984", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14ba4b51df41c0d12ca7cbd77020ecd1cbaa41e60919fbc730f3e085ed2ca945"} -2023-12-16T14:49:12.740Z INFO initializing dbft {"height": 9607, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:12.740Z debug frostfs-node/morph.go:229 new block {"index": 9606} -2023-12-16T14:49:13.243Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9606, "blockHeight": 9606, "took": "3.618603ms"} -2023-12-16T14:49:13.740Z INFO sending PrepareRequest {"height": 9607, "view": 0} -2023-12-16T14:49:13.740Z INFO sending Commit {"height": 9607, "view": 0} -2023-12-16T14:49:13.740Z INFO approving block {"height": 9607, "hash": "578ded276635e69004207f6685b653f5658589a320b600c7a5edf57964d9e1cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01f24e5ea22be21075bb189e76c307e009e55266707ff59807373bf031579984"} -2023-12-16T14:49:13.741Z INFO initializing dbft {"height": 9608, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:13.741Z debug frostfs-node/morph.go:229 new block {"index": 9607} -2023-12-16T14:49:14.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9607, "blockHeight": 9607, "took": "5.29572ms"} -2023-12-16T14:49:14.741Z INFO sending PrepareRequest {"height": 9608, "view": 0} -2023-12-16T14:49:14.742Z INFO sending Commit {"height": 9608, "view": 0} -2023-12-16T14:49:14.742Z INFO approving block {"height": 9608, "hash": "915a28b9639f8ef2ba2afb4299ed2b0ae071e408961e48547c2276447adadebd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "578ded276635e69004207f6685b653f5658589a320b600c7a5edf57964d9e1cc"} -2023-12-16T14:49:14.743Z INFO initializing dbft {"height": 9609, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:14.743Z debug frostfs-node/morph.go:229 new block {"index": 9608} -2023-12-16T14:49:15.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9608, "blockHeight": 9608, "took": "5.448709ms"} -2023-12-16T14:49:15.743Z INFO sending PrepareRequest {"height": 9609, "view": 0} -2023-12-16T14:49:15.743Z INFO sending Commit {"height": 9609, "view": 0} -2023-12-16T14:49:15.744Z INFO approving block {"height": 9609, "hash": "a86d5947b1d6223ce0429be4c5caed998c050511a97845bca9673f56414693f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "915a28b9639f8ef2ba2afb4299ed2b0ae071e408961e48547c2276447adadebd"} -2023-12-16T14:49:15.745Z INFO initializing dbft {"height": 9610, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:15.745Z debug frostfs-node/morph.go:229 new block {"index": 9609} -2023-12-16T14:49:16.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9609, "blockHeight": 9609, "took": "4.272605ms"} -2023-12-16T14:49:16.745Z INFO sending PrepareRequest {"height": 9610, "view": 0} -2023-12-16T14:49:16.745Z INFO sending Commit {"height": 9610, "view": 0} -2023-12-16T14:49:16.746Z INFO approving block {"height": 9610, "hash": "a5e205d8259695be5f1670594b93846f1feb0033027a31b5b34a98dbf0310947", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a86d5947b1d6223ce0429be4c5caed998c050511a97845bca9673f56414693f9"} -2023-12-16T14:49:16.747Z INFO initializing dbft {"height": 9611, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:16.747Z debug frostfs-node/morph.go:229 new block {"index": 9610} -2023-12-16T14:49:17.246Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9610, "blockHeight": 9610, "took": "3.559064ms"} -2023-12-16T14:49:17.747Z INFO sending PrepareRequest {"height": 9611, "view": 0} -2023-12-16T14:49:17.747Z INFO sending Commit {"height": 9611, "view": 0} -2023-12-16T14:49:17.747Z INFO approving block {"height": 9611, "hash": "cdace7db43d2112f1e7a93e0852a685b4a8fbda6adfd0760dce695e8c78abe6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5e205d8259695be5f1670594b93846f1feb0033027a31b5b34a98dbf0310947"} -2023-12-16T14:49:17.748Z INFO initializing dbft {"height": 9612, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:17.749Z debug frostfs-node/morph.go:229 new block {"index": 9611} -2023-12-16T14:49:18.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9611, "blockHeight": 9611, "took": "5.453019ms"} -2023-12-16T14:49:18.748Z INFO sending PrepareRequest {"height": 9612, "view": 0} -2023-12-16T14:49:18.749Z INFO sending Commit {"height": 9612, "view": 0} -2023-12-16T14:49:18.749Z INFO approving block {"height": 9612, "hash": "bf62d0731677dd6a407c9face7874d9d5e669418ade204821e1aed3353ebee90", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdace7db43d2112f1e7a93e0852a685b4a8fbda6adfd0760dce695e8c78abe6e"} -2023-12-16T14:49:18.750Z INFO initializing dbft {"height": 9613, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:18.750Z debug frostfs-node/morph.go:229 new block {"index": 9612} -2023-12-16T14:49:19.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9612, "blockHeight": 9612, "took": "4.740099ms"} -2023-12-16T14:49:19.750Z INFO sending PrepareRequest {"height": 9613, "view": 0} -2023-12-16T14:49:19.751Z INFO sending Commit {"height": 9613, "view": 0} -2023-12-16T14:49:19.751Z INFO approving block {"height": 9613, "hash": "8802f47c90912e5fbada37dd0fc2b15a290866f3ee32dcc3c813653e6009aaba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf62d0731677dd6a407c9face7874d9d5e669418ade204821e1aed3353ebee90"} -2023-12-16T14:49:19.753Z INFO initializing dbft {"height": 9614, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:19.754Z debug frostfs-node/morph.go:229 new block {"index": 9613} -2023-12-16T14:49:20.248Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9613, "blockHeight": 9613, "took": "4.219418ms"} -2023-12-16T14:49:20.752Z INFO sending PrepareRequest {"height": 9614, "view": 0} -2023-12-16T14:49:20.752Z INFO sending Commit {"height": 9614, "view": 0} -2023-12-16T14:49:20.752Z INFO approving block {"height": 9614, "hash": "c2607fc31b375584fc7d5d91c8d00ed0bee92d24158ef5a6b5a83b8d3427bc09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8802f47c90912e5fbada37dd0fc2b15a290866f3ee32dcc3c813653e6009aaba"} -2023-12-16T14:49:20.753Z INFO initializing dbft {"height": 9615, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:20.753Z debug frostfs-node/morph.go:229 new block {"index": 9614} -2023-12-16T14:49:21.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9614, "blockHeight": 9614, "took": "4.540428ms"} -2023-12-16T14:49:21.753Z INFO sending PrepareRequest {"height": 9615, "view": 0} -2023-12-16T14:49:21.753Z INFO sending Commit {"height": 9615, "view": 0} -2023-12-16T14:49:21.753Z INFO approving block {"height": 9615, "hash": "b95a7552c3c0425eb70f8b77f7338de10eebc8ba15df542ac885b91747ce9c9b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2607fc31b375584fc7d5d91c8d00ed0bee92d24158ef5a6b5a83b8d3427bc09"} -2023-12-16T14:49:21.754Z INFO initializing dbft {"height": 9616, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:21.755Z debug frostfs-node/morph.go:229 new block {"index": 9615} -2023-12-16T14:49:22.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9615, "blockHeight": 9615, "took": "3.605664ms"} -2023-12-16T14:49:22.755Z INFO sending PrepareRequest {"height": 9616, "view": 0} -2023-12-16T14:49:22.755Z INFO sending Commit {"height": 9616, "view": 0} -2023-12-16T14:49:22.755Z INFO approving block {"height": 9616, "hash": "c72f9ce9bcf376684ae3c3ce4d6c50796006cb2bfcbf60fc4d219115a83e464f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b95a7552c3c0425eb70f8b77f7338de10eebc8ba15df542ac885b91747ce9c9b"} -2023-12-16T14:49:22.756Z INFO initializing dbft {"height": 9617, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:22.756Z debug frostfs-node/morph.go:229 new block {"index": 9616} -2023-12-16T14:49:23.249Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9616, "blockHeight": 9616, "took": "2.945126ms"} -2023-12-16T14:49:23.756Z INFO sending PrepareRequest {"height": 9617, "view": 0} -2023-12-16T14:49:23.757Z INFO sending Commit {"height": 9617, "view": 0} -2023-12-16T14:49:23.757Z INFO approving block {"height": 9617, "hash": "1c3ed229c8dd3e4bc12d77f039d44708269d1d05e628ddc6d7fd6e61133551c8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c72f9ce9bcf376684ae3c3ce4d6c50796006cb2bfcbf60fc4d219115a83e464f"} -2023-12-16T14:49:23.759Z INFO initializing dbft {"height": 9618, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:23.760Z debug frostfs-node/morph.go:229 new block {"index": 9617} -2023-12-16T14:49:24.251Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9617, "blockHeight": 9617, "took": "4.616987ms"} -2023-12-16T14:49:24.759Z INFO sending PrepareRequest {"height": 9618, "view": 0} -2023-12-16T14:49:24.759Z INFO sending Commit {"height": 9618, "view": 0} -2023-12-16T14:49:24.760Z INFO approving block {"height": 9618, "hash": "e992831f27b8f89216416648dd2e9bd6b99e10807c21b76519415582bb0b390e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1c3ed229c8dd3e4bc12d77f039d44708269d1d05e628ddc6d7fd6e61133551c8"} -2023-12-16T14:49:24.762Z INFO initializing dbft {"height": 9619, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:24.763Z debug frostfs-node/morph.go:229 new block {"index": 9618} -2023-12-16T14:49:25.252Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9618, "blockHeight": 9618, "took": "4.042531ms"} -2023-12-16T14:49:25.761Z INFO sending PrepareRequest {"height": 9619, "view": 0} -2023-12-16T14:49:25.761Z INFO sending Commit {"height": 9619, "view": 0} -2023-12-16T14:49:25.761Z INFO approving block {"height": 9619, "hash": "ac2bb928618ecca0383967e6d124bb5cad992cc6690b448337df98c6ee8de952", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e992831f27b8f89216416648dd2e9bd6b99e10807c21b76519415582bb0b390e"} -2023-12-16T14:49:25.762Z INFO initializing dbft {"height": 9620, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:25.763Z debug frostfs-node/morph.go:229 new block {"index": 9619} -2023-12-16T14:49:26.252Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9619, "blockHeight": 9619, "took": "4.48347ms"} -2023-12-16T14:49:26.762Z INFO sending PrepareRequest {"height": 9620, "view": 0} -2023-12-16T14:49:26.762Z INFO sending Commit {"height": 9620, "view": 0} -2023-12-16T14:49:26.762Z INFO approving block {"height": 9620, "hash": "a585fe38ac68245d146a54610ce703f8bff39c27828190bbfcea67d9685fd2de", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac2bb928618ecca0383967e6d124bb5cad992cc6690b448337df98c6ee8de952"} -2023-12-16T14:49:26.763Z INFO initializing dbft {"height": 9621, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:26.764Z debug frostfs-node/morph.go:229 new block {"index": 9620} -2023-12-16T14:49:27.252Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9620, "blockHeight": 9620, "took": "3.161843ms"} -2023-12-16T14:49:27.764Z INFO sending PrepareRequest {"height": 9621, "view": 0} -2023-12-16T14:49:27.765Z INFO sending Commit {"height": 9621, "view": 0} -2023-12-16T14:49:27.765Z INFO approving block {"height": 9621, "hash": "ff098f14c91274ff41dcac8f3bfae1edeb1ce74c6ea1bc5b64dddf27deb8da73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a585fe38ac68245d146a54610ce703f8bff39c27828190bbfcea67d9685fd2de"} -2023-12-16T14:49:27.767Z INFO initializing dbft {"height": 9622, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:27.768Z debug frostfs-node/morph.go:229 new block {"index": 9621} -2023-12-16T14:49:28.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9621, "blockHeight": 9621, "took": "7.052406ms"} -2023-12-16T14:49:28.768Z INFO sending PrepareRequest {"height": 9622, "view": 0} -2023-12-16T14:49:28.768Z INFO sending Commit {"height": 9622, "view": 0} -2023-12-16T14:49:28.769Z INFO approving block {"height": 9622, "hash": "5428d1aee6f6afdd29d20c77fc161d06a9c352d83b7c1fe68488e0370e4f157b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff098f14c91274ff41dcac8f3bfae1edeb1ce74c6ea1bc5b64dddf27deb8da73"} -2023-12-16T14:49:28.770Z INFO initializing dbft {"height": 9623, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:28.771Z debug frostfs-node/morph.go:229 new block {"index": 9622} -2023-12-16T14:49:29.258Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9622, "blockHeight": 9622, "took": "7.830356ms"} -2023-12-16T14:49:29.770Z INFO sending PrepareRequest {"height": 9623, "view": 0} -2023-12-16T14:49:29.771Z INFO sending Commit {"height": 9623, "view": 0} -2023-12-16T14:49:29.771Z INFO approving block {"height": 9623, "hash": "6938833a46bb338a3d2883c16ad33257e4284c4744c8bad7b20d05d0a455032e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5428d1aee6f6afdd29d20c77fc161d06a9c352d83b7c1fe68488e0370e4f157b"} -2023-12-16T14:49:29.772Z INFO initializing dbft {"height": 9624, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:29.773Z debug frostfs-node/morph.go:229 new block {"index": 9623} -2023-12-16T14:49:30.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9623, "blockHeight": 9623, "took": "28.916764ms"} -2023-12-16T14:49:30.772Z INFO sending PrepareRequest {"height": 9624, "view": 0} -2023-12-16T14:49:30.772Z INFO sending Commit {"height": 9624, "view": 0} -2023-12-16T14:49:30.772Z INFO approving block {"height": 9624, "hash": "71097fa292f6666f9f91e77edbf59f61e544b47e1869dec57304345ef50bd486", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6938833a46bb338a3d2883c16ad33257e4284c4744c8bad7b20d05d0a455032e"} -2023-12-16T14:49:30.773Z INFO initializing dbft {"height": 9625, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:30.774Z debug frostfs-node/morph.go:229 new block {"index": 9624} -2023-12-16T14:49:31.255Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9624, "blockHeight": 9624, "took": "4.288885ms"} -2023-12-16T14:49:31.773Z INFO sending PrepareRequest {"height": 9625, "view": 0} -2023-12-16T14:49:31.773Z INFO sending Commit {"height": 9625, "view": 0} -2023-12-16T14:49:31.773Z INFO approving block {"height": 9625, "hash": "168050205174e271a5ad6b3da8356e114469eba8df6b2b39b978bf36390ddc66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71097fa292f6666f9f91e77edbf59f61e544b47e1869dec57304345ef50bd486"} -2023-12-16T14:49:31.774Z INFO initializing dbft {"height": 9626, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:31.774Z debug frostfs-node/morph.go:229 new block {"index": 9625} -2023-12-16T14:49:32.255Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9625, "blockHeight": 9625, "took": "3.256375ms"} -2023-12-16T14:49:32.774Z INFO sending PrepareRequest {"height": 9626, "view": 0} -2023-12-16T14:49:32.775Z INFO sending Commit {"height": 9626, "view": 0} -2023-12-16T14:49:32.775Z INFO approving block {"height": 9626, "hash": "feb821e2f9255abe8591acd813dff49c39bbd2b732909886d200f38d232e3ee9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "168050205174e271a5ad6b3da8356e114469eba8df6b2b39b978bf36390ddc66"} -2023-12-16T14:49:32.776Z INFO initializing dbft {"height": 9627, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:32.777Z debug frostfs-node/morph.go:229 new block {"index": 9626} -2023-12-16T14:49:33.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9626, "blockHeight": 9626, "took": "6.328574ms"} -2023-12-16T14:49:33.776Z INFO sending PrepareRequest {"height": 9627, "view": 0} -2023-12-16T14:49:33.776Z INFO sending Commit {"height": 9627, "view": 0} -2023-12-16T14:49:33.777Z INFO approving block {"height": 9627, "hash": "9ab3247bf86a44cfd1685bc3a583935097ef696b3dd4141fd94f091889503b24", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "feb821e2f9255abe8591acd813dff49c39bbd2b732909886d200f38d232e3ee9"} -2023-12-16T14:49:33.778Z INFO initializing dbft {"height": 9628, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:33.779Z debug frostfs-node/morph.go:229 new block {"index": 9627} -2023-12-16T14:49:34.259Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9627, "blockHeight": 9627, "took": "5.798559ms"} -2023-12-16T14:49:34.778Z INFO sending PrepareRequest {"height": 9628, "view": 0} -2023-12-16T14:49:34.779Z INFO sending Commit {"height": 9628, "view": 0} -2023-12-16T14:49:34.779Z INFO approving block {"height": 9628, "hash": "089704f2f35164328402f0bba0c2f404dd33b054ccd744019e12e2d28a1036f2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9ab3247bf86a44cfd1685bc3a583935097ef696b3dd4141fd94f091889503b24"} -2023-12-16T14:49:34.780Z INFO initializing dbft {"height": 9629, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:34.780Z debug frostfs-node/morph.go:229 new block {"index": 9628} -2023-12-16T14:49:35.257Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9628, "blockHeight": 9628, "took": "3.262775ms"} -2023-12-16T14:49:35.780Z INFO sending PrepareRequest {"height": 9629, "view": 0} -2023-12-16T14:49:35.780Z INFO sending Commit {"height": 9629, "view": 0} -2023-12-16T14:49:35.781Z INFO approving block {"height": 9629, "hash": "f79c720734ab4c2b38dcaad8bc64be3d32dc91a942ff990554c75b01abec0a09", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "089704f2f35164328402f0bba0c2f404dd33b054ccd744019e12e2d28a1036f2"} -2023-12-16T14:49:35.782Z INFO initializing dbft {"height": 9630, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:35.783Z debug frostfs-node/morph.go:229 new block {"index": 9629} -2023-12-16T14:49:36.258Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9629, "blockHeight": 9629, "took": "3.925654ms"} -2023-12-16T14:49:36.781Z INFO sending PrepareRequest {"height": 9630, "view": 0} -2023-12-16T14:49:36.781Z INFO sending Commit {"height": 9630, "view": 0} -2023-12-16T14:49:36.782Z INFO approving block {"height": 9630, "hash": "7872ba07bd1a650eb7ac440fb98d051d40432a1e2fb828bed59f4b146d1831aa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f79c720734ab4c2b38dcaad8bc64be3d32dc91a942ff990554c75b01abec0a09"} -2023-12-16T14:49:36.782Z INFO initializing dbft {"height": 9631, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:36.783Z debug frostfs-node/morph.go:229 new block {"index": 9630} -2023-12-16T14:49:37.258Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9630, "blockHeight": 9630, "took": "3.526832ms"} -2023-12-16T14:49:37.782Z INFO sending PrepareRequest {"height": 9631, "view": 0} -2023-12-16T14:49:37.783Z INFO sending Commit {"height": 9631, "view": 0} -2023-12-16T14:49:37.783Z INFO approving block {"height": 9631, "hash": "05ad04974423262fda7a81f6d6be871604f5494fb5d9003459712fcfc8aeeaa8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7872ba07bd1a650eb7ac440fb98d051d40432a1e2fb828bed59f4b146d1831aa"} -2023-12-16T14:49:37.784Z INFO initializing dbft {"height": 9632, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:37.784Z debug frostfs-node/morph.go:229 new block {"index": 9631} -2023-12-16T14:49:38.260Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9631, "blockHeight": 9631, "took": "4.725029ms"} -2023-12-16T14:49:38.783Z INFO sending PrepareRequest {"height": 9632, "view": 0} -2023-12-16T14:49:38.784Z INFO sending Commit {"height": 9632, "view": 0} -2023-12-16T14:49:38.784Z INFO approving block {"height": 9632, "hash": "f1c0ea5a12081d2052658a169960a8223088a4311d6585dc93df26e17d67f1ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05ad04974423262fda7a81f6d6be871604f5494fb5d9003459712fcfc8aeeaa8"} -2023-12-16T14:49:38.785Z INFO initializing dbft {"height": 9633, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:38.785Z debug frostfs-node/morph.go:229 new block {"index": 9632} -2023-12-16T14:49:39.262Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9632, "blockHeight": 9632, "took": "6.386026ms"} -2023-12-16T14:49:39.785Z INFO sending PrepareRequest {"height": 9633, "view": 0} -2023-12-16T14:49:39.786Z INFO sending Commit {"height": 9633, "view": 0} -2023-12-16T14:49:39.786Z INFO approving block {"height": 9633, "hash": "a05ecb1af0ae2c9b6b2c9222d4c902b7320e551ef0e1be96339e58270210d8ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1c0ea5a12081d2052658a169960a8223088a4311d6585dc93df26e17d67f1ea"} -2023-12-16T14:49:39.787Z INFO initializing dbft {"height": 9634, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:39.788Z debug frostfs-node/morph.go:229 new block {"index": 9633} -2023-12-16T14:49:40.260Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9633, "blockHeight": 9633, "took": "4.190075ms"} -2023-12-16T14:49:40.787Z INFO sending PrepareRequest {"height": 9634, "view": 0} -2023-12-16T14:49:40.787Z INFO sending Commit {"height": 9634, "view": 0} -2023-12-16T14:49:40.787Z INFO approving block {"height": 9634, "hash": "699ed353569cb4c424e4654dbc9a061dd5e0ce5a399b80d0b041f8570eb012ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a05ecb1af0ae2c9b6b2c9222d4c902b7320e551ef0e1be96339e58270210d8ea"} -2023-12-16T14:49:40.788Z INFO initializing dbft {"height": 9635, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:40.788Z debug frostfs-node/morph.go:229 new block {"index": 9634} -2023-12-16T14:49:41.260Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9634, "blockHeight": 9634, "took": "4.526332ms"} -2023-12-16T14:49:41.788Z INFO sending PrepareRequest {"height": 9635, "view": 0} -2023-12-16T14:49:41.788Z INFO sending Commit {"height": 9635, "view": 0} -2023-12-16T14:49:41.789Z INFO approving block {"height": 9635, "hash": "fbc5818dc9248c56847922d868501d7d467055fa82fab8b076c265ccbf935b83", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "699ed353569cb4c424e4654dbc9a061dd5e0ce5a399b80d0b041f8570eb012ba"} -2023-12-16T14:49:41.789Z INFO initializing dbft {"height": 9636, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:41.790Z debug frostfs-node/morph.go:229 new block {"index": 9635} -2023-12-16T14:49:42.262Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9635, "blockHeight": 9635, "took": "5.391237ms"} -2023-12-16T14:49:42.790Z INFO sending PrepareRequest {"height": 9636, "view": 0} -2023-12-16T14:49:42.790Z INFO sending Commit {"height": 9636, "view": 0} -2023-12-16T14:49:42.790Z INFO approving block {"height": 9636, "hash": "1834bc8c8c5e81855893d205974006d4f11ce2b403ef1fea725342be9c25230d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbc5818dc9248c56847922d868501d7d467055fa82fab8b076c265ccbf935b83"} -2023-12-16T14:49:42.791Z INFO initializing dbft {"height": 9637, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:42.791Z debug frostfs-node/morph.go:229 new block {"index": 9636} -2023-12-16T14:49:43.262Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9636, "blockHeight": 9636, "took": "5.122093ms"} -2023-12-16T14:49:43.791Z INFO sending PrepareRequest {"height": 9637, "view": 0} -2023-12-16T14:49:43.791Z INFO sending Commit {"height": 9637, "view": 0} -2023-12-16T14:49:43.792Z INFO approving block {"height": 9637, "hash": "6fff5ee5b2d9af6517203e49338da9cfdbe96126d039490458edc98907cd584b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1834bc8c8c5e81855893d205974006d4f11ce2b403ef1fea725342be9c25230d"} -2023-12-16T14:49:43.793Z INFO initializing dbft {"height": 9638, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:43.793Z debug frostfs-node/morph.go:229 new block {"index": 9637} -2023-12-16T14:49:43.797Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 40, "iteration": 3, "error": "no data for 2 iteration in 40 epoch for consumers's trusts"} -2023-12-16T14:49:44.263Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9637, "blockHeight": 9637, "took": "4.616574ms"} -2023-12-16T14:49:44.794Z INFO sending PrepareRequest {"height": 9638, "view": 0} -2023-12-16T14:49:44.794Z INFO sending Commit {"height": 9638, "view": 0} -2023-12-16T14:49:44.794Z INFO approving block {"height": 9638, "hash": "9325f111c27f1c65e994aef26f7cbbb0142bc9a5c635e1ae1674602e0575af43", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fff5ee5b2d9af6517203e49338da9cfdbe96126d039490458edc98907cd584b"} -2023-12-16T14:49:44.796Z INFO initializing dbft {"height": 9639, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:44.797Z debug frostfs-node/morph.go:229 new block {"index": 9638} -2023-12-16T14:49:44.799Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:49:44.803Z INFO runtime log {"tx": "54e32935eba161b5c25e18c47b25e80c7d13557e3ba6f1355d763bf75a3782f6", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:49:45.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9638, "blockHeight": 9638, "took": "6.406649ms"} -2023-12-16T14:49:45.796Z INFO sending PrepareRequest {"height": 9639, "view": 0} -2023-12-16T14:49:45.796Z INFO sending Commit {"height": 9639, "view": 0} -2023-12-16T14:49:45.796Z INFO approving block {"height": 9639, "hash": "18e3df491762eb3c2023ff8191e5eddd68bade73a598e560c254ddaee0b8ee02", "tx_count": 1, "merkle": "f0a9772025a043430203c235a459d932a62a21ced0de27a33757dc1bd32d9667", "prev": "9325f111c27f1c65e994aef26f7cbbb0142bc9a5c635e1ae1674602e0575af43"} -2023-12-16T14:49:45.797Z INFO runtime log {"tx": "67962dd31bdc5737a327ded0ce212aa632d959a435c203024343a0252077a9f0", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:49:45.798Z INFO initializing dbft {"height": 9640, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:45.798Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 42} -2023-12-16T14:49:45.798Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 42} -2023-12-16T14:49:45.799Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:49:45.799Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:49:45.799Z debug controller/calls.go:95 starting to report local trust values {"epoch": 41} -2023-12-16T14:49:45.799Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 42} -2023-12-16T14:49:45.799Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 41} -2023-12-16T14:49:45.799Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 42} -2023-12-16T14:49:45.799Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 42} -2023-12-16T14:49:45.799Z debug frostfs-node/morph.go:229 new block {"index": 9639} -2023-12-16T14:49:45.801Z debug controller/calls.go:146 reporting successfully finished {"epoch": 41} -2023-12-16T14:49:45.801Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 41} -2023-12-16T14:49:45.802Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:49:45.803Z INFO runtime log {"tx": "95bd34eab798fb4fa1aaeacdc22d32b56eabb3ae61b08ab1bdfdf171230d22d7", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:49:45.805Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9642, "tx_hash": "8e5dad8111f7db27406b663585708cc3249f87846b0497d06a39f8e331d40d73"} -2023-12-16T14:49:45.811Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:49:45.811Z info audit/handlers.go:13 new round of audit {"epoch": 42} -2023-12-16T14:49:45.811Z info settlement/calls.go:26 new audit settlement event {"epoch": 42} -2023-12-16T14:49:45.811Z info settlement/handlers.go:14 process audit settlements {"epoch": 42} -2023-12-16T14:49:45.811Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 42} -2023-12-16T14:49:45.812Z info settlement/handlers.go:18 audit processing finished {"epoch": 42} -2023-12-16T14:49:45.813Z info audit/process.go:39 select containers for audit {"epoch": 42, "amount": 0} -2023-12-16T14:49:45.815Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9642, "tx_hash": "ccd1cab5c92ca050d947164e2ac13e54b50af045bc1b913ef80c86e08168e52f"} -2023-12-16T14:49:46.267Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 9639, "blockHeight": 9639, "took": "8.022554ms"} -2023-12-16T14:49:46.797Z INFO sending PrepareRequest {"height": 9640, "view": 0} -2023-12-16T14:49:46.797Z INFO sending Commit {"height": 9640, "view": 0} -2023-12-16T14:49:46.798Z INFO approving block {"height": 9640, "hash": "c00cf508dbc7b24b43a9656da8f5d13e1fc8d6ab30c2698e3fc866f70058ca1e", "tx_count": 3, "merkle": "f6d372e5807dcb37fd0193d93b7132996f3aae9c9eb5e962119336e2f906a24d", "prev": "18e3df491762eb3c2023ff8191e5eddd68bade73a598e560c254ddaee0b8ee02"} -2023-12-16T14:49:46.798Z INFO runtime log {"tx": "e31ffea380d1498a9aa2daaac705effe6795ef3a8db9ea26b3937cefa06f420d", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:49:46.799Z INFO initializing dbft {"height": 9641, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:46.800Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 41} -2023-12-16T14:49:46.800Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 41} -2023-12-16T14:49:46.800Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 41} -2023-12-16T14:49:46.801Z debug frostfs-node/morph.go:229 new block {"index": 9640} -2023-12-16T14:49:47.267Z INFO persisted to disk {"blocks": 1, "keys": 58, "headerHeight": 9640, "blockHeight": 9640, "took": "7.565264ms"} -2023-12-16T14:49:47.798Z INFO sending PrepareRequest {"height": 9641, "view": 0} -2023-12-16T14:49:47.798Z INFO sending Commit {"height": 9641, "view": 0} -2023-12-16T14:49:47.799Z INFO approving block {"height": 9641, "hash": "4470de0a13d5e00b36d2790ad110f533e7aa1bfedd4710c393b7953b3b1acb4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c00cf508dbc7b24b43a9656da8f5d13e1fc8d6ab30c2698e3fc866f70058ca1e"} -2023-12-16T14:49:47.799Z INFO initializing dbft {"height": 9642, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:47.800Z debug frostfs-node/morph.go:229 new block {"index": 9641} -2023-12-16T14:49:48.263Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9641, "blockHeight": 9641, "took": "3.07471ms"} -2023-12-16T14:49:48.800Z INFO sending PrepareRequest {"height": 9642, "view": 0} -2023-12-16T14:49:48.800Z INFO sending Commit {"height": 9642, "view": 0} -2023-12-16T14:49:48.800Z INFO approving block {"height": 9642, "hash": "339fcb7ebe230c36832ff9a315310fe8b9836690affc1383c27f509c78b9c17d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4470de0a13d5e00b36d2790ad110f533e7aa1bfedd4710c393b7953b3b1acb4c"} -2023-12-16T14:49:48.801Z INFO initializing dbft {"height": 9643, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:48.801Z debug frostfs-node/morph.go:229 new block {"index": 9642} -2023-12-16T14:49:49.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9642, "blockHeight": 9642, "took": "4.535552ms"} -2023-12-16T14:49:49.802Z INFO sending PrepareRequest {"height": 9643, "view": 0} -2023-12-16T14:49:49.802Z INFO sending Commit {"height": 9643, "view": 0} -2023-12-16T14:49:49.803Z INFO approving block {"height": 9643, "hash": "e4d595911804aa40711d1e6d0fa9159e9fd700ee6bf1d8689e3723cf1a25a95c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "339fcb7ebe230c36832ff9a315310fe8b9836690affc1383c27f509c78b9c17d"} -2023-12-16T14:49:49.804Z INFO initializing dbft {"height": 9644, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:49.804Z debug frostfs-node/morph.go:229 new block {"index": 9643} -2023-12-16T14:49:50.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9643, "blockHeight": 9643, "took": "3.642486ms"} -2023-12-16T14:49:50.803Z INFO sending PrepareRequest {"height": 9644, "view": 0} -2023-12-16T14:49:50.803Z INFO sending Commit {"height": 9644, "view": 0} -2023-12-16T14:49:50.804Z INFO approving block {"height": 9644, "hash": "41cd117c6cd43c6bf776c8773fee91e222f6b939dcd3b1d3d2b6c8bc0cdd2051", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4d595911804aa40711d1e6d0fa9159e9fd700ee6bf1d8689e3723cf1a25a95c"} -2023-12-16T14:49:50.804Z INFO initializing dbft {"height": 9645, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:50.805Z debug frostfs-node/morph.go:229 new block {"index": 9644} -2023-12-16T14:49:51.266Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9644, "blockHeight": 9644, "took": "3.892233ms"} -2023-12-16T14:49:51.805Z INFO sending PrepareRequest {"height": 9645, "view": 0} -2023-12-16T14:49:51.805Z INFO sending Commit {"height": 9645, "view": 0} -2023-12-16T14:49:51.805Z INFO approving block {"height": 9645, "hash": "8aabb86d9719ea60b0bb6482674a8f7e14a1d33fb411642f21a4594a3d3d19ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41cd117c6cd43c6bf776c8773fee91e222f6b939dcd3b1d3d2b6c8bc0cdd2051"} -2023-12-16T14:49:51.806Z INFO initializing dbft {"height": 9646, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:51.807Z debug frostfs-node/morph.go:229 new block {"index": 9645} -2023-12-16T14:49:52.265Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9645, "blockHeight": 9645, "took": "3.575989ms"} -2023-12-16T14:49:52.806Z INFO sending PrepareRequest {"height": 9646, "view": 0} -2023-12-16T14:49:52.807Z INFO sending Commit {"height": 9646, "view": 0} -2023-12-16T14:49:52.807Z INFO approving block {"height": 9646, "hash": "6fe923d0716b9c0deddbbae62926386842dd2da5ee8258bc5f3fb4fd2a3274c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8aabb86d9719ea60b0bb6482674a8f7e14a1d33fb411642f21a4594a3d3d19ff"} -2023-12-16T14:49:52.808Z INFO initializing dbft {"height": 9647, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:52.808Z debug frostfs-node/morph.go:229 new block {"index": 9646} -2023-12-16T14:49:53.268Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9646, "blockHeight": 9646, "took": "4.906093ms"} -2023-12-16T14:49:53.808Z INFO sending PrepareRequest {"height": 9647, "view": 0} -2023-12-16T14:49:53.808Z INFO sending Commit {"height": 9647, "view": 0} -2023-12-16T14:49:53.809Z INFO approving block {"height": 9647, "hash": "a0f38430944a516e9200a35b1efb7607a46596de1cce808279a974008b5a5b7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6fe923d0716b9c0deddbbae62926386842dd2da5ee8258bc5f3fb4fd2a3274c0"} -2023-12-16T14:49:53.810Z INFO initializing dbft {"height": 9648, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:53.810Z debug frostfs-node/morph.go:229 new block {"index": 9647} -2023-12-16T14:49:54.267Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9647, "blockHeight": 9647, "took": "3.607505ms"} -2023-12-16T14:49:54.810Z INFO sending PrepareRequest {"height": 9648, "view": 0} -2023-12-16T14:49:54.810Z INFO sending Commit {"height": 9648, "view": 0} -2023-12-16T14:49:54.810Z INFO approving block {"height": 9648, "hash": "ec9b6cb62b61c07365b617257431c1fef596217f8cc99d969e41a7a86a2f8f02", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0f38430944a516e9200a35b1efb7607a46596de1cce808279a974008b5a5b7d"} -2023-12-16T14:49:54.812Z INFO initializing dbft {"height": 9649, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:54.812Z debug frostfs-node/morph.go:229 new block {"index": 9648} -2023-12-16T14:49:55.268Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9648, "blockHeight": 9648, "took": "3.316516ms"} -2023-12-16T14:49:55.812Z INFO sending PrepareRequest {"height": 9649, "view": 0} -2023-12-16T14:49:55.812Z INFO sending Commit {"height": 9649, "view": 0} -2023-12-16T14:49:55.812Z INFO approving block {"height": 9649, "hash": "4eda07fb5d591fd83e65a284bf253b85a87c77a54df0bf167c20fda3d3a99f5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ec9b6cb62b61c07365b617257431c1fef596217f8cc99d969e41a7a86a2f8f02"} -2023-12-16T14:49:55.813Z INFO initializing dbft {"height": 9650, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:55.814Z debug frostfs-node/morph.go:229 new block {"index": 9649} -2023-12-16T14:49:56.271Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9649, "blockHeight": 9649, "took": "5.380766ms"} -2023-12-16T14:49:56.814Z INFO sending PrepareRequest {"height": 9650, "view": 0} -2023-12-16T14:49:56.814Z INFO sending Commit {"height": 9650, "view": 0} -2023-12-16T14:49:56.814Z INFO approving block {"height": 9650, "hash": "d8c62b75c8a98ddc35f2846f59c617821ed8ab7976b4e39671037e958d755430", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4eda07fb5d591fd83e65a284bf253b85a87c77a54df0bf167c20fda3d3a99f5d"} -2023-12-16T14:49:56.815Z INFO initializing dbft {"height": 9651, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:56.815Z debug frostfs-node/morph.go:229 new block {"index": 9650} -2023-12-16T14:49:56.817Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:49:56.818Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:49:56.818Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:49:57.270Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9650, "blockHeight": 9650, "took": "4.283145ms"} -2023-12-16T14:49:57.816Z INFO sending PrepareRequest {"height": 9651, "view": 0} -2023-12-16T14:49:57.816Z INFO sending Commit {"height": 9651, "view": 0} -2023-12-16T14:49:57.816Z INFO approving block {"height": 9651, "hash": "b3eeb19ddec4836c75e93b4b7ff71f0a1775801929adcdbcf07be750a4844bdc", "tx_count": 2, "merkle": "331c61c69e6ad9f7832ca5a0308cdd8d3199d49aac1bad18a43209a1c470cc76", "prev": "d8c62b75c8a98ddc35f2846f59c617821ed8ab7976b4e39671037e958d755430"} -2023-12-16T14:49:57.817Z INFO runtime log {"tx": "3ad4ce4dbc8e83a24cf0f3377443f1549cd352f9b3f870775635ecb77c42206d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:49:57.817Z INFO runtime log {"tx": "3ad4ce4dbc8e83a24cf0f3377443f1549cd352f9b3f870775635ecb77c42206d", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:49:57.817Z INFO initializing dbft {"height": 9652, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:57.818Z debug frostfs-node/morph.go:229 new block {"index": 9651} -2023-12-16T14:49:58.274Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9651, "blockHeight": 9651, "took": "7.20122ms"} -2023-12-16T14:49:58.818Z INFO sending PrepareRequest {"height": 9652, "view": 0} -2023-12-16T14:49:58.818Z INFO sending Commit {"height": 9652, "view": 0} -2023-12-16T14:49:58.818Z INFO approving block {"height": 9652, "hash": "d53060beb04081828672d5a5003327d394268ec1ead6f6a8789eff749dbb711b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b3eeb19ddec4836c75e93b4b7ff71f0a1775801929adcdbcf07be750a4844bdc"} -2023-12-16T14:49:58.820Z INFO initializing dbft {"height": 9653, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:58.820Z debug frostfs-node/morph.go:229 new block {"index": 9652} -2023-12-16T14:49:59.271Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9652, "blockHeight": 9652, "took": "3.17645ms"} -2023-12-16T14:49:59.819Z INFO sending PrepareRequest {"height": 9653, "view": 0} -2023-12-16T14:49:59.820Z INFO sending Commit {"height": 9653, "view": 0} -2023-12-16T14:49:59.820Z INFO approving block {"height": 9653, "hash": "84f925f7f7863da05b7c2c193b34cbea5482b27b448eb7840b29c2f88cea93ba", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d53060beb04081828672d5a5003327d394268ec1ead6f6a8789eff749dbb711b"} -2023-12-16T14:49:59.821Z INFO initializing dbft {"height": 9654, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:49:59.821Z debug frostfs-node/morph.go:229 new block {"index": 9653} -2023-12-16T14:50:00.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9653, "blockHeight": 9653, "took": "4.519633ms"} -2023-12-16T14:50:00.821Z INFO sending PrepareRequest {"height": 9654, "view": 0} -2023-12-16T14:50:00.822Z INFO sending Commit {"height": 9654, "view": 0} -2023-12-16T14:50:00.822Z INFO approving block {"height": 9654, "hash": "25017485d1ae69f808aebb94d710be991469da86d881953de9aed268db869eab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "84f925f7f7863da05b7c2c193b34cbea5482b27b448eb7840b29c2f88cea93ba"} -2023-12-16T14:50:00.823Z INFO initializing dbft {"height": 9655, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:00.824Z debug frostfs-node/morph.go:229 new block {"index": 9654} -2023-12-16T14:50:01.272Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9654, "blockHeight": 9654, "took": "3.362318ms"} -2023-12-16T14:50:01.823Z INFO sending PrepareRequest {"height": 9655, "view": 0} -2023-12-16T14:50:01.823Z INFO sending Commit {"height": 9655, "view": 0} -2023-12-16T14:50:01.823Z INFO approving block {"height": 9655, "hash": "95c49fb8c377d7d3922ce354b5e6ce10f2de138647a3374e9665ae2634fd701e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25017485d1ae69f808aebb94d710be991469da86d881953de9aed268db869eab"} -2023-12-16T14:50:01.824Z INFO initializing dbft {"height": 9656, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:01.825Z debug frostfs-node/morph.go:229 new block {"index": 9655} -2023-12-16T14:50:02.273Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9655, "blockHeight": 9655, "took": "4.146774ms"} -2023-12-16T14:50:02.824Z INFO sending PrepareRequest {"height": 9656, "view": 0} -2023-12-16T14:50:02.824Z INFO sending Commit {"height": 9656, "view": 0} -2023-12-16T14:50:02.824Z INFO approving block {"height": 9656, "hash": "c8e61d2573ad8f8f2968e4b1db5ea18b93aa5e65c3115398ec16ac97b1c9019e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "95c49fb8c377d7d3922ce354b5e6ce10f2de138647a3374e9665ae2634fd701e"} -2023-12-16T14:50:02.825Z INFO initializing dbft {"height": 9657, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:02.826Z debug frostfs-node/morph.go:229 new block {"index": 9656} -2023-12-16T14:50:03.274Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9656, "blockHeight": 9656, "took": "4.150991ms"} -2023-12-16T14:50:03.827Z INFO sending PrepareRequest {"height": 9657, "view": 0} -2023-12-16T14:50:03.827Z INFO sending Commit {"height": 9657, "view": 0} -2023-12-16T14:50:03.827Z INFO approving block {"height": 9657, "hash": "cd7f4efad1c31bbe45f59f3c34b619601506d587689e1bba7607ab28ce1ea26b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8e61d2573ad8f8f2968e4b1db5ea18b93aa5e65c3115398ec16ac97b1c9019e"} -2023-12-16T14:50:03.828Z INFO initializing dbft {"height": 9658, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:03.828Z debug frostfs-node/morph.go:229 new block {"index": 9657} -2023-12-16T14:50:04.275Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9657, "blockHeight": 9657, "took": "4.400488ms"} -2023-12-16T14:50:04.828Z INFO sending PrepareRequest {"height": 9658, "view": 0} -2023-12-16T14:50:04.828Z INFO sending Commit {"height": 9658, "view": 0} -2023-12-16T14:50:04.828Z INFO approving block {"height": 9658, "hash": "38225326d9a3cb6c4811ff1756246500cd496e0f8ab756fb4bf8669112db0c3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd7f4efad1c31bbe45f59f3c34b619601506d587689e1bba7607ab28ce1ea26b"} -2023-12-16T14:50:04.829Z INFO initializing dbft {"height": 9659, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:04.830Z debug frostfs-node/morph.go:229 new block {"index": 9658} -2023-12-16T14:50:05.276Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9658, "blockHeight": 9658, "took": "4.323206ms"} -2023-12-16T14:50:05.830Z INFO sending PrepareRequest {"height": 9659, "view": 0} -2023-12-16T14:50:05.830Z INFO sending Commit {"height": 9659, "view": 0} -2023-12-16T14:50:05.831Z INFO approving block {"height": 9659, "hash": "9a2c332a87bf27a2342b017f5a923f32023e2aac558bc4b8c7e147c4ffcd732f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38225326d9a3cb6c4811ff1756246500cd496e0f8ab756fb4bf8669112db0c3e"} -2023-12-16T14:50:05.831Z INFO initializing dbft {"height": 9660, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:05.832Z debug frostfs-node/morph.go:229 new block {"index": 9659} -2023-12-16T14:50:06.276Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9659, "blockHeight": 9659, "took": "3.657326ms"} -2023-12-16T14:50:06.832Z INFO sending PrepareRequest {"height": 9660, "view": 0} -2023-12-16T14:50:06.832Z INFO sending Commit {"height": 9660, "view": 0} -2023-12-16T14:50:06.832Z INFO approving block {"height": 9660, "hash": "cf8185f54903b42b16345c3a738f60b205005a63cbf8ceeb32df8bb176cd9cfa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9a2c332a87bf27a2342b017f5a923f32023e2aac558bc4b8c7e147c4ffcd732f"} -2023-12-16T14:50:06.833Z INFO initializing dbft {"height": 9661, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:06.833Z debug frostfs-node/morph.go:229 new block {"index": 9660} -2023-12-16T14:50:07.277Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9660, "blockHeight": 9660, "took": "3.589345ms"} -2023-12-16T14:50:07.834Z INFO sending PrepareRequest {"height": 9661, "view": 0} -2023-12-16T14:50:07.834Z INFO sending Commit {"height": 9661, "view": 0} -2023-12-16T14:50:07.834Z INFO approving block {"height": 9661, "hash": "3442825591a4e672c65ce7ae1cfa297e88f09ee898523f56a58c2d77fabe79af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cf8185f54903b42b16345c3a738f60b205005a63cbf8ceeb32df8bb176cd9cfa"} -2023-12-16T14:50:07.835Z INFO initializing dbft {"height": 9662, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:07.836Z debug frostfs-node/morph.go:229 new block {"index": 9661} -2023-12-16T14:50:08.278Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9661, "blockHeight": 9661, "took": "4.043318ms"} -2023-12-16T14:50:08.835Z INFO sending PrepareRequest {"height": 9662, "view": 0} -2023-12-16T14:50:08.835Z INFO sending Commit {"height": 9662, "view": 0} -2023-12-16T14:50:08.836Z INFO approving block {"height": 9662, "hash": "93afe4a26f4706b53b0b2a566d51e038761b272b13125adbd41fbd6f1d2d1b1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3442825591a4e672c65ce7ae1cfa297e88f09ee898523f56a58c2d77fabe79af"} -2023-12-16T14:50:08.836Z INFO initializing dbft {"height": 9663, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:08.837Z debug frostfs-node/morph.go:229 new block {"index": 9662} -2023-12-16T14:50:09.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9662, "blockHeight": 9662, "took": "6.039352ms"} -2023-12-16T14:50:09.837Z INFO sending PrepareRequest {"height": 9663, "view": 0} -2023-12-16T14:50:09.837Z INFO sending Commit {"height": 9663, "view": 0} -2023-12-16T14:50:09.837Z INFO approving block {"height": 9663, "hash": "92cd1f65c87b5ea8a3468cd49fa42752f69b53fcc711849c64d9d944e4acfda0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93afe4a26f4706b53b0b2a566d51e038761b272b13125adbd41fbd6f1d2d1b1c"} -2023-12-16T14:50:09.838Z INFO initializing dbft {"height": 9664, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:09.839Z debug frostfs-node/morph.go:229 new block {"index": 9663} -2023-12-16T14:50:10.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9663, "blockHeight": 9663, "took": "6.613923ms"} -2023-12-16T14:50:10.838Z INFO sending PrepareRequest {"height": 9664, "view": 0} -2023-12-16T14:50:10.839Z INFO sending Commit {"height": 9664, "view": 0} -2023-12-16T14:50:10.839Z INFO approving block {"height": 9664, "hash": "267acec771e5545364c61f3efc94eb2af3f1065f83a627ad031b9589d5e04552", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "92cd1f65c87b5ea8a3468cd49fa42752f69b53fcc711849c64d9d944e4acfda0"} -2023-12-16T14:50:10.840Z INFO initializing dbft {"height": 9665, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:10.841Z debug frostfs-node/morph.go:229 new block {"index": 9664} -2023-12-16T14:50:11.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9664, "blockHeight": 9664, "took": "5.81246ms"} -2023-12-16T14:50:11.840Z INFO sending PrepareRequest {"height": 9665, "view": 0} -2023-12-16T14:50:11.840Z INFO sending Commit {"height": 9665, "view": 0} -2023-12-16T14:50:11.840Z INFO approving block {"height": 9665, "hash": "fda2d893d01743a2deec37d9293ee7c485baf2d40e92a0e0891cdc194b998d16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "267acec771e5545364c61f3efc94eb2af3f1065f83a627ad031b9589d5e04552"} -2023-12-16T14:50:11.841Z INFO initializing dbft {"height": 9666, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:11.841Z debug frostfs-node/morph.go:229 new block {"index": 9665} -2023-12-16T14:50:12.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9665, "blockHeight": 9665, "took": "4.750689ms"} -2023-12-16T14:50:12.841Z INFO sending PrepareRequest {"height": 9666, "view": 0} -2023-12-16T14:50:12.842Z INFO sending Commit {"height": 9666, "view": 0} -2023-12-16T14:50:12.842Z INFO approving block {"height": 9666, "hash": "83546ce3bf5feea1c93064c32c5e51b0923340add1540b3f399dadbd2afe4d38", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fda2d893d01743a2deec37d9293ee7c485baf2d40e92a0e0891cdc194b998d16"} -2023-12-16T14:50:12.843Z INFO initializing dbft {"height": 9667, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:12.844Z debug frostfs-node/morph.go:229 new block {"index": 9666} -2023-12-16T14:50:13.280Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9666, "blockHeight": 9666, "took": "3.060419ms"} -2023-12-16T14:50:13.843Z INFO sending PrepareRequest {"height": 9667, "view": 0} -2023-12-16T14:50:13.843Z INFO sending Commit {"height": 9667, "view": 0} -2023-12-16T14:50:13.843Z INFO approving block {"height": 9667, "hash": "8cc2c2d53ef2ee18e420b29975457e01808fc1c5526f9a18fea8b807160b438b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "83546ce3bf5feea1c93064c32c5e51b0923340add1540b3f399dadbd2afe4d38"} -2023-12-16T14:50:13.844Z INFO initializing dbft {"height": 9668, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:13.845Z debug frostfs-node/morph.go:229 new block {"index": 9667} -2023-12-16T14:50:14.281Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9667, "blockHeight": 9667, "took": "4.004066ms"} -2023-12-16T14:50:14.844Z INFO sending PrepareRequest {"height": 9668, "view": 0} -2023-12-16T14:50:14.844Z INFO sending Commit {"height": 9668, "view": 0} -2023-12-16T14:50:14.844Z INFO approving block {"height": 9668, "hash": "a155453dcdb48df1bf34bf58623631e086c4c6d191e640526b71034cf303c6a2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cc2c2d53ef2ee18e420b29975457e01808fc1c5526f9a18fea8b807160b438b"} -2023-12-16T14:50:14.845Z INFO initializing dbft {"height": 9669, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:14.846Z debug frostfs-node/morph.go:229 new block {"index": 9668} -2023-12-16T14:50:15.282Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9668, "blockHeight": 9668, "took": "4.401438ms"} -2023-12-16T14:50:15.846Z INFO sending PrepareRequest {"height": 9669, "view": 0} -2023-12-16T14:50:15.846Z INFO sending Commit {"height": 9669, "view": 0} -2023-12-16T14:50:15.846Z INFO approving block {"height": 9669, "hash": "3720926db9fe7f214a19a35d8b038d40b697d7257ab04bd506b8344ffd2eb370", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a155453dcdb48df1bf34bf58623631e086c4c6d191e640526b71034cf303c6a2"} -2023-12-16T14:50:15.847Z INFO initializing dbft {"height": 9670, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:15.847Z debug frostfs-node/morph.go:229 new block {"index": 9669} -2023-12-16T14:50:16.284Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9669, "blockHeight": 9669, "took": "6.007295ms"} -2023-12-16T14:50:16.847Z INFO sending PrepareRequest {"height": 9670, "view": 0} -2023-12-16T14:50:16.847Z INFO sending Commit {"height": 9670, "view": 0} -2023-12-16T14:50:16.848Z INFO approving block {"height": 9670, "hash": "e0cafd46cbe4955a3fc6b1dd0986ce722a78c53d0498739ef2d4deaa4bf53707", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3720926db9fe7f214a19a35d8b038d40b697d7257ab04bd506b8344ffd2eb370"} -2023-12-16T14:50:16.849Z INFO initializing dbft {"height": 9671, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:16.849Z debug frostfs-node/morph.go:229 new block {"index": 9670} -2023-12-16T14:50:17.283Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9670, "blockHeight": 9670, "took": "4.243674ms"} -2023-12-16T14:50:17.848Z INFO sending PrepareRequest {"height": 9671, "view": 0} -2023-12-16T14:50:17.849Z INFO sending Commit {"height": 9671, "view": 0} -2023-12-16T14:50:17.849Z INFO approving block {"height": 9671, "hash": "302671753c87dabc0e5ca7d2054324afcd65e0fdd15fc910472a9263bbacf264", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0cafd46cbe4955a3fc6b1dd0986ce722a78c53d0498739ef2d4deaa4bf53707"} -2023-12-16T14:50:17.850Z INFO initializing dbft {"height": 9672, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:17.851Z debug frostfs-node/morph.go:229 new block {"index": 9671} -2023-12-16T14:50:18.283Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9671, "blockHeight": 9671, "took": "3.989316ms"} -2023-12-16T14:50:18.850Z INFO sending PrepareRequest {"height": 9672, "view": 0} -2023-12-16T14:50:18.850Z INFO sending Commit {"height": 9672, "view": 0} -2023-12-16T14:50:18.851Z INFO approving block {"height": 9672, "hash": "494c0fa8279c5de9af21c5a9a3b1e1a2e471cc62b3844bd7089e10c3a1868421", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "302671753c87dabc0e5ca7d2054324afcd65e0fdd15fc910472a9263bbacf264"} -2023-12-16T14:50:18.852Z INFO initializing dbft {"height": 9673, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:18.853Z debug frostfs-node/morph.go:229 new block {"index": 9672} -2023-12-16T14:50:19.283Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9672, "blockHeight": 9672, "took": "2.953916ms"} -2023-12-16T14:50:19.852Z INFO sending PrepareRequest {"height": 9673, "view": 0} -2023-12-16T14:50:19.852Z INFO sending Commit {"height": 9673, "view": 0} -2023-12-16T14:50:19.852Z INFO approving block {"height": 9673, "hash": "bbea03e2b85b500a085741194e2a02544da5886b654eab21f386d835ab7c4f1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "494c0fa8279c5de9af21c5a9a3b1e1a2e471cc62b3844bd7089e10c3a1868421"} -2023-12-16T14:50:19.853Z INFO initializing dbft {"height": 9674, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:19.854Z debug frostfs-node/morph.go:229 new block {"index": 9673} -2023-12-16T14:50:20.285Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9673, "blockHeight": 9673, "took": "4.898103ms"} -2023-12-16T14:50:20.853Z INFO sending PrepareRequest {"height": 9674, "view": 0} -2023-12-16T14:50:20.853Z INFO sending Commit {"height": 9674, "view": 0} -2023-12-16T14:50:20.854Z INFO approving block {"height": 9674, "hash": "ef66f9523cfb1d26c78d58af236961610789c53a8ed5dc3cf98db294ab89c4b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbea03e2b85b500a085741194e2a02544da5886b654eab21f386d835ab7c4f1a"} -2023-12-16T14:50:20.855Z INFO initializing dbft {"height": 9675, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:20.855Z debug frostfs-node/morph.go:229 new block {"index": 9674} -2023-12-16T14:50:21.286Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9674, "blockHeight": 9674, "took": "5.16603ms"} -2023-12-16T14:50:21.855Z INFO sending PrepareRequest {"height": 9675, "view": 0} -2023-12-16T14:50:21.855Z INFO sending Commit {"height": 9675, "view": 0} -2023-12-16T14:50:21.856Z INFO approving block {"height": 9675, "hash": "4f7b08f9d50fc2a13bb874501aa0c933fd73e7612eecc19c160ad24079318a26", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef66f9523cfb1d26c78d58af236961610789c53a8ed5dc3cf98db294ab89c4b2"} -2023-12-16T14:50:21.857Z INFO initializing dbft {"height": 9676, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:21.857Z debug frostfs-node/morph.go:229 new block {"index": 9675} -2023-12-16T14:50:22.287Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9675, "blockHeight": 9675, "took": "5.056958ms"} -2023-12-16T14:50:22.857Z INFO sending PrepareRequest {"height": 9676, "view": 0} -2023-12-16T14:50:22.857Z INFO sending Commit {"height": 9676, "view": 0} -2023-12-16T14:50:22.858Z INFO approving block {"height": 9676, "hash": "82055830c6795c5cab6557d2ac0fa07d8a46e10dadfa2502cc253c8b60cd3f7d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4f7b08f9d50fc2a13bb874501aa0c933fd73e7612eecc19c160ad24079318a26"} -2023-12-16T14:50:22.859Z INFO initializing dbft {"height": 9677, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:22.859Z debug frostfs-node/morph.go:229 new block {"index": 9676} -2023-12-16T14:50:23.287Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9676, "blockHeight": 9676, "took": "5.018216ms"} -2023-12-16T14:50:23.858Z INFO sending PrepareRequest {"height": 9677, "view": 0} -2023-12-16T14:50:23.858Z INFO sending Commit {"height": 9677, "view": 0} -2023-12-16T14:50:23.859Z INFO approving block {"height": 9677, "hash": "907ed8959ef0508545840d3fabaf89c53f67a19a173d0968ea0e07115ae7536d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82055830c6795c5cab6557d2ac0fa07d8a46e10dadfa2502cc253c8b60cd3f7d"} -2023-12-16T14:50:23.860Z INFO initializing dbft {"height": 9678, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:23.860Z debug frostfs-node/morph.go:229 new block {"index": 9677} -2023-12-16T14:50:24.286Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9677, "blockHeight": 9677, "took": "3.338627ms"} -2023-12-16T14:50:24.860Z INFO sending PrepareRequest {"height": 9678, "view": 0} -2023-12-16T14:50:24.860Z INFO sending Commit {"height": 9678, "view": 0} -2023-12-16T14:50:24.861Z INFO approving block {"height": 9678, "hash": "c206f178488ab27891077a3c191afa3e66a40836979255bc742af46d86dfa637", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "907ed8959ef0508545840d3fabaf89c53f67a19a173d0968ea0e07115ae7536d"} -2023-12-16T14:50:24.862Z INFO initializing dbft {"height": 9679, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:24.862Z debug frostfs-node/morph.go:229 new block {"index": 9678} -2023-12-16T14:50:25.289Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9678, "blockHeight": 9678, "took": "5.35247ms"} -2023-12-16T14:50:25.862Z INFO sending PrepareRequest {"height": 9679, "view": 0} -2023-12-16T14:50:25.862Z INFO sending Commit {"height": 9679, "view": 0} -2023-12-16T14:50:25.863Z INFO approving block {"height": 9679, "hash": "1094325734dbb7a7695c4aea5d6b5d0ff0622139dc510ba4739a31e724cffcf3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c206f178488ab27891077a3c191afa3e66a40836979255bc742af46d86dfa637"} -2023-12-16T14:50:25.864Z INFO initializing dbft {"height": 9680, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:25.864Z debug frostfs-node/morph.go:229 new block {"index": 9679} -2023-12-16T14:50:26.287Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9679, "blockHeight": 9679, "took": "2.874689ms"} -2023-12-16T14:50:26.864Z INFO sending PrepareRequest {"height": 9680, "view": 0} -2023-12-16T14:50:26.864Z INFO sending Commit {"height": 9680, "view": 0} -2023-12-16T14:50:26.864Z INFO approving block {"height": 9680, "hash": "8c14221255b59eb161d70c96542f15ba9745c86244014f4fb5081a480e38a64c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1094325734dbb7a7695c4aea5d6b5d0ff0622139dc510ba4739a31e724cffcf3"} -2023-12-16T14:50:26.866Z INFO initializing dbft {"height": 9681, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:26.867Z debug frostfs-node/morph.go:229 new block {"index": 9680} -2023-12-16T14:50:27.289Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9680, "blockHeight": 9680, "took": "3.865833ms"} -2023-12-16T14:50:27.865Z INFO sending PrepareRequest {"height": 9681, "view": 0} -2023-12-16T14:50:27.865Z INFO sending Commit {"height": 9681, "view": 0} -2023-12-16T14:50:27.866Z INFO approving block {"height": 9681, "hash": "3bc4f6189fd2fc7e4a4f468c7cc796bb7b0cdb8d077f25852a42f198f4c0da28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c14221255b59eb161d70c96542f15ba9745c86244014f4fb5081a480e38a64c"} -2023-12-16T14:50:27.867Z INFO initializing dbft {"height": 9682, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:27.868Z debug frostfs-node/morph.go:229 new block {"index": 9681} -2023-12-16T14:50:28.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9681, "blockHeight": 9681, "took": "6.327585ms"} -2023-12-16T14:50:28.867Z INFO sending PrepareRequest {"height": 9682, "view": 0} -2023-12-16T14:50:28.867Z INFO sending Commit {"height": 9682, "view": 0} -2023-12-16T14:50:28.867Z INFO approving block {"height": 9682, "hash": "fa6608097d087fe3fcd4577406caadd0f72bccdd46e22251dcfdd92ddeccbeb3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bc4f6189fd2fc7e4a4f468c7cc796bb7b0cdb8d077f25852a42f198f4c0da28"} -2023-12-16T14:50:28.869Z INFO initializing dbft {"height": 9683, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:28.870Z debug frostfs-node/morph.go:229 new block {"index": 9682} -2023-12-16T14:50:29.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9682, "blockHeight": 9682, "took": "6.171629ms"} -2023-12-16T14:50:29.868Z INFO sending PrepareRequest {"height": 9683, "view": 0} -2023-12-16T14:50:29.868Z INFO sending Commit {"height": 9683, "view": 0} -2023-12-16T14:50:29.868Z INFO approving block {"height": 9683, "hash": "89d9803e5d216765c34e46f8ca266b02b07be4a314043368cb8e3756cd269316", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa6608097d087fe3fcd4577406caadd0f72bccdd46e22251dcfdd92ddeccbeb3"} -2023-12-16T14:50:29.869Z INFO initializing dbft {"height": 9684, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:29.870Z debug frostfs-node/morph.go:229 new block {"index": 9683} -2023-12-16T14:50:30.291Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9683, "blockHeight": 9683, "took": "4.141335ms"} -2023-12-16T14:50:30.870Z INFO sending PrepareRequest {"height": 9684, "view": 0} -2023-12-16T14:50:30.870Z INFO sending Commit {"height": 9684, "view": 0} -2023-12-16T14:50:30.871Z INFO approving block {"height": 9684, "hash": "6b611c0e80d4469313ec59eba80344e4e336cc9bdcfbe8c9901fdbf995b6a185", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89d9803e5d216765c34e46f8ca266b02b07be4a314043368cb8e3756cd269316"} -2023-12-16T14:50:30.872Z INFO initializing dbft {"height": 9685, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:30.872Z debug frostfs-node/morph.go:229 new block {"index": 9684} -2023-12-16T14:50:31.293Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9684, "blockHeight": 9684, "took": "5.503668ms"} -2023-12-16T14:50:31.871Z INFO sending PrepareRequest {"height": 9685, "view": 0} -2023-12-16T14:50:31.871Z INFO sending Commit {"height": 9685, "view": 0} -2023-12-16T14:50:31.871Z INFO approving block {"height": 9685, "hash": "19d4f0d777391f9fe9fa5ffecfd7e7ab906609441f29b118a68780582525222a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b611c0e80d4469313ec59eba80344e4e336cc9bdcfbe8c9901fdbf995b6a185"} -2023-12-16T14:50:31.872Z INFO initializing dbft {"height": 9686, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:31.873Z debug frostfs-node/morph.go:229 new block {"index": 9685} -2023-12-16T14:50:32.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9685, "blockHeight": 9685, "took": "4.766219ms"} -2023-12-16T14:50:32.873Z INFO sending PrepareRequest {"height": 9686, "view": 0} -2023-12-16T14:50:32.873Z INFO sending Commit {"height": 9686, "view": 0} -2023-12-16T14:50:32.873Z INFO approving block {"height": 9686, "hash": "e26851616a2a0cf78f35143078e9e93e7bfa6996e3ed2e28e63248a8999c407b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19d4f0d777391f9fe9fa5ffecfd7e7ab906609441f29b118a68780582525222a"} -2023-12-16T14:50:32.874Z INFO initializing dbft {"height": 9687, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:32.874Z debug frostfs-node/morph.go:229 new block {"index": 9686} -2023-12-16T14:50:33.292Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9686, "blockHeight": 9686, "took": "3.646797ms"} -2023-12-16T14:50:33.874Z INFO sending PrepareRequest {"height": 9687, "view": 0} -2023-12-16T14:50:33.875Z INFO sending Commit {"height": 9687, "view": 0} -2023-12-16T14:50:33.875Z INFO approving block {"height": 9687, "hash": "dc116b4af4124d49e7ddfb15bc61ab6f067a6686df475b72573b495c340b1c2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e26851616a2a0cf78f35143078e9e93e7bfa6996e3ed2e28e63248a8999c407b"} -2023-12-16T14:50:33.876Z INFO initializing dbft {"height": 9688, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:33.876Z debug frostfs-node/morph.go:229 new block {"index": 9687} -2023-12-16T14:50:34.295Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9687, "blockHeight": 9687, "took": "5.787709ms"} -2023-12-16T14:50:34.876Z INFO sending PrepareRequest {"height": 9688, "view": 0} -2023-12-16T14:50:34.876Z INFO sending Commit {"height": 9688, "view": 0} -2023-12-16T14:50:34.877Z INFO approving block {"height": 9688, "hash": "d0758c5fff5b17ecda4aa63d3ed75648ad04e394da55f3bc6f597f1448c5544a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc116b4af4124d49e7ddfb15bc61ab6f067a6686df475b72573b495c340b1c2c"} -2023-12-16T14:50:34.877Z INFO initializing dbft {"height": 9689, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:34.878Z debug frostfs-node/morph.go:229 new block {"index": 9688} -2023-12-16T14:50:35.294Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9688, "blockHeight": 9688, "took": "4.828551ms"} -2023-12-16T14:50:35.878Z INFO sending PrepareRequest {"height": 9689, "view": 0} -2023-12-16T14:50:35.878Z INFO sending Commit {"height": 9689, "view": 0} -2023-12-16T14:50:35.878Z INFO approving block {"height": 9689, "hash": "7929347932fcc5506a44c40141ef4a3fcd9509e4e92795991258974531d25234", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0758c5fff5b17ecda4aa63d3ed75648ad04e394da55f3bc6f597f1448c5544a"} -2023-12-16T14:50:35.879Z INFO initializing dbft {"height": 9690, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:35.879Z debug frostfs-node/morph.go:229 new block {"index": 9689} -2023-12-16T14:50:36.294Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9689, "blockHeight": 9689, "took": "3.996807ms"} -2023-12-16T14:50:36.879Z INFO sending PrepareRequest {"height": 9690, "view": 0} -2023-12-16T14:50:36.879Z INFO sending Commit {"height": 9690, "view": 0} -2023-12-16T14:50:36.879Z INFO approving block {"height": 9690, "hash": "5faac6ade5670c6231932229459925bfabc6bea1876bc024c8e1fe4f7e1695af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7929347932fcc5506a44c40141ef4a3fcd9509e4e92795991258974531d25234"} -2023-12-16T14:50:36.880Z INFO initializing dbft {"height": 9691, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:36.881Z debug frostfs-node/morph.go:229 new block {"index": 9690} -2023-12-16T14:50:37.296Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9690, "blockHeight": 9690, "took": "5.455962ms"} -2023-12-16T14:50:37.881Z INFO sending PrepareRequest {"height": 9691, "view": 0} -2023-12-16T14:50:37.881Z INFO sending Commit {"height": 9691, "view": 0} -2023-12-16T14:50:37.881Z INFO approving block {"height": 9691, "hash": "aa3bea485278082eaec8614292c6a6fd7c0e0828766b19ef91514cfd4f411825", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5faac6ade5670c6231932229459925bfabc6bea1876bc024c8e1fe4f7e1695af"} -2023-12-16T14:50:37.883Z INFO initializing dbft {"height": 9692, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:37.883Z debug frostfs-node/morph.go:229 new block {"index": 9691} -2023-12-16T14:50:38.295Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9691, "blockHeight": 9691, "took": "3.647926ms"} -2023-12-16T14:50:38.882Z INFO sending PrepareRequest {"height": 9692, "view": 0} -2023-12-16T14:50:38.883Z INFO sending Commit {"height": 9692, "view": 0} -2023-12-16T14:50:38.883Z INFO approving block {"height": 9692, "hash": "e1d2c58ac866fe2103d7b8f97d0cc4de32fc9379ce842ddc43be949dc854c3e3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa3bea485278082eaec8614292c6a6fd7c0e0828766b19ef91514cfd4f411825"} -2023-12-16T14:50:38.884Z INFO initializing dbft {"height": 9693, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:38.884Z debug frostfs-node/morph.go:229 new block {"index": 9692} -2023-12-16T14:50:39.296Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9692, "blockHeight": 9692, "took": "4.593833ms"} -2023-12-16T14:50:39.884Z INFO sending PrepareRequest {"height": 9693, "view": 0} -2023-12-16T14:50:39.884Z INFO sending Commit {"height": 9693, "view": 0} -2023-12-16T14:50:39.884Z INFO approving block {"height": 9693, "hash": "cdee49473f026a958189ce291f8b06a436ca0a8c1af905e933070845682967c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1d2c58ac866fe2103d7b8f97d0cc4de32fc9379ce842ddc43be949dc854c3e3"} -2023-12-16T14:50:39.885Z INFO initializing dbft {"height": 9694, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:39.886Z debug frostfs-node/morph.go:229 new block {"index": 9693} -2023-12-16T14:50:40.299Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9693, "blockHeight": 9693, "took": "6.290274ms"} -2023-12-16T14:50:40.885Z INFO sending PrepareRequest {"height": 9694, "view": 0} -2023-12-16T14:50:40.885Z INFO sending Commit {"height": 9694, "view": 0} -2023-12-16T14:50:40.886Z INFO approving block {"height": 9694, "hash": "5ce13212014f6e750215ca459493e088260335c6bf4c8b874d40f8cf430aa158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdee49473f026a958189ce291f8b06a436ca0a8c1af905e933070845682967c9"} -2023-12-16T14:50:40.886Z INFO initializing dbft {"height": 9695, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:40.887Z debug frostfs-node/morph.go:229 new block {"index": 9694} -2023-12-16T14:50:41.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9694, "blockHeight": 9694, "took": "6.661164ms"} -2023-12-16T14:50:41.887Z INFO sending PrepareRequest {"height": 9695, "view": 0} -2023-12-16T14:50:41.887Z INFO sending Commit {"height": 9695, "view": 0} -2023-12-16T14:50:41.888Z INFO approving block {"height": 9695, "hash": "d0b2dc3b3aeb2e2fb89e20b799ce80f1534677e8b0788b794d753d2bebfe6e33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ce13212014f6e750215ca459493e088260335c6bf4c8b874d40f8cf430aa158"} -2023-12-16T14:50:41.889Z INFO initializing dbft {"height": 9696, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:41.889Z debug frostfs-node/morph.go:229 new block {"index": 9695} -2023-12-16T14:50:42.298Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9695, "blockHeight": 9695, "took": "4.302596ms"} -2023-12-16T14:50:42.888Z INFO sending PrepareRequest {"height": 9696, "view": 0} -2023-12-16T14:50:42.889Z INFO sending Commit {"height": 9696, "view": 0} -2023-12-16T14:50:42.889Z INFO approving block {"height": 9696, "hash": "f1b23c9daac56e61a318cbb84fd8ae94d3af6a4168356afe04a47813c343f13a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0b2dc3b3aeb2e2fb89e20b799ce80f1534677e8b0788b794d753d2bebfe6e33"} -2023-12-16T14:50:42.890Z INFO initializing dbft {"height": 9697, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:42.890Z debug frostfs-node/morph.go:229 new block {"index": 9696} -2023-12-16T14:50:43.298Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9696, "blockHeight": 9696, "took": "3.865683ms"} -2023-12-16T14:50:43.890Z INFO sending PrepareRequest {"height": 9697, "view": 0} -2023-12-16T14:50:43.890Z INFO sending Commit {"height": 9697, "view": 0} -2023-12-16T14:50:43.890Z INFO approving block {"height": 9697, "hash": "a996de6750508df491dd0563d4732a72a8660075718c2f5a5f5942c89fd6d4c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1b23c9daac56e61a318cbb84fd8ae94d3af6a4168356afe04a47813c343f13a"} -2023-12-16T14:50:43.891Z INFO initializing dbft {"height": 9698, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:43.892Z debug frostfs-node/morph.go:229 new block {"index": 9697} -2023-12-16T14:50:44.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9697, "blockHeight": 9697, "took": "5.688026ms"} -2023-12-16T14:50:44.892Z INFO sending PrepareRequest {"height": 9698, "view": 0} -2023-12-16T14:50:44.892Z INFO sending Commit {"height": 9698, "view": 0} -2023-12-16T14:50:44.892Z INFO approving block {"height": 9698, "hash": "9648d10cba844c2aaecceec7bb1435925af046d661f95546fa13018519e4d083", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a996de6750508df491dd0563d4732a72a8660075718c2f5a5f5942c89fd6d4c0"} -2023-12-16T14:50:44.893Z INFO initializing dbft {"height": 9699, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:44.893Z debug frostfs-node/morph.go:229 new block {"index": 9698} -2023-12-16T14:50:45.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9698, "blockHeight": 9698, "took": "5.002017ms"} -2023-12-16T14:50:45.893Z INFO sending PrepareRequest {"height": 9699, "view": 0} -2023-12-16T14:50:45.893Z INFO sending Commit {"height": 9699, "view": 0} -2023-12-16T14:50:45.894Z INFO approving block {"height": 9699, "hash": "b77fe1f42253f1dfd0aba9ca243429eaabc2e22c08d8f95e6d100c110c54c7d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9648d10cba844c2aaecceec7bb1435925af046d661f95546fa13018519e4d083"} -2023-12-16T14:50:45.894Z INFO initializing dbft {"height": 9700, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:45.895Z debug frostfs-node/morph.go:229 new block {"index": 9699} -2023-12-16T14:50:45.900Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 41 epoch for daughters"} -2023-12-16T14:50:45.901Z INFO runtime log {"tx": "fbed4dd66908ec9f2429ab02aa6cf2fcf3625b395753171dc213b6aefafd10ba", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:50:46.301Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9699, "blockHeight": 9699, "took": "5.465892ms"} -2023-12-16T14:50:46.894Z INFO sending PrepareRequest {"height": 9700, "view": 0} -2023-12-16T14:50:46.895Z INFO sending Commit {"height": 9700, "view": 0} -2023-12-16T14:50:46.895Z INFO approving block {"height": 9700, "hash": "9256e14fc90a0afed238b3286dda791779ddc71491e7690d8cf91b4fbf135923", "tx_count": 1, "merkle": "e3419cd89814e2ec86dbdc26215a469f9f37e3d0b8dd65ac3742516ec59b29d9", "prev": "b77fe1f42253f1dfd0aba9ca243429eaabc2e22c08d8f95e6d100c110c54c7d9"} -2023-12-16T14:50:46.895Z INFO runtime log {"tx": "d9299bc56e514237ac65ddb8d0e3379f9f465a2126dcdb86ece21498d89c41e3", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:50:46.896Z INFO initializing dbft {"height": 9701, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:46.897Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 41} -2023-12-16T14:50:46.897Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 41} -2023-12-16T14:50:46.897Z debug frostfs-node/morph.go:229 new block {"index": 9700} -2023-12-16T14:50:46.899Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:50:46.900Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:50:46.900Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:50:47.301Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 9700, "blockHeight": 9700, "took": "5.421233ms"} -2023-12-16T14:50:47.895Z INFO sending PrepareRequest {"height": 9701, "view": 0} -2023-12-16T14:50:47.896Z INFO sending Commit {"height": 9701, "view": 0} -2023-12-16T14:50:47.896Z INFO approving block {"height": 9701, "hash": "dd58da0b4d17294ad079452d36e38ffcb4277996f8ffcf36a2886d370df228f4", "tx_count": 2, "merkle": "3f7e7b0b3ce721ff3d0a3f7ba32dec4dabc2a808bee0638170e4f2336d5290bf", "prev": "9256e14fc90a0afed238b3286dda791779ddc71491e7690d8cf91b4fbf135923"} -2023-12-16T14:50:47.897Z INFO runtime log {"tx": "6f8b3ed7dab6e332d64ce4c4198b26c2838dd0033f683136626a3b9fc1199f93", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:50:47.897Z INFO runtime log {"tx": "6f8b3ed7dab6e332d64ce4c4198b26c2838dd0033f683136626a3b9fc1199f93", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:50:47.897Z INFO initializing dbft {"height": 9702, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:47.898Z debug frostfs-node/morph.go:229 new block {"index": 9701} -2023-12-16T14:50:48.301Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9701, "blockHeight": 9701, "took": "5.260833ms"} -2023-12-16T14:50:48.896Z INFO sending PrepareRequest {"height": 9702, "view": 0} -2023-12-16T14:50:48.896Z INFO sending Commit {"height": 9702, "view": 0} -2023-12-16T14:50:48.897Z INFO approving block {"height": 9702, "hash": "b6f7e22a1856ca1366c3f488f2d58887d849a9a9cd9d84429e9e8e19bc8c0205", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd58da0b4d17294ad079452d36e38ffcb4277996f8ffcf36a2886d370df228f4"} -2023-12-16T14:50:48.897Z INFO initializing dbft {"height": 9703, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:48.898Z debug frostfs-node/morph.go:229 new block {"index": 9702} -2023-12-16T14:50:49.300Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9702, "blockHeight": 9702, "took": "3.253375ms"} -2023-12-16T14:50:49.897Z INFO sending PrepareRequest {"height": 9703, "view": 0} -2023-12-16T14:50:49.897Z INFO sending Commit {"height": 9703, "view": 0} -2023-12-16T14:50:49.897Z INFO approving block {"height": 9703, "hash": "89cc61a9b1aa34dcb723f568f51500251af22e8f3eb59cdf1e808f28647514ff", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b6f7e22a1856ca1366c3f488f2d58887d849a9a9cd9d84429e9e8e19bc8c0205"} -2023-12-16T14:50:49.898Z INFO initializing dbft {"height": 9704, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:49.899Z debug frostfs-node/morph.go:229 new block {"index": 9703} -2023-12-16T14:50:50.304Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9703, "blockHeight": 9703, "took": "6.812301ms"} -2023-12-16T14:50:50.899Z INFO sending PrepareRequest {"height": 9704, "view": 0} -2023-12-16T14:50:50.899Z INFO sending Commit {"height": 9704, "view": 0} -2023-12-16T14:50:50.900Z INFO approving block {"height": 9704, "hash": "e2bc2a61ef8eaba9c0bd94448cbd3251e0952d03599da47ee6c6add27ba1cb12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "89cc61a9b1aa34dcb723f568f51500251af22e8f3eb59cdf1e808f28647514ff"} -2023-12-16T14:50:50.902Z INFO initializing dbft {"height": 9705, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:50.902Z debug frostfs-node/morph.go:229 new block {"index": 9704} -2023-12-16T14:50:51.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9704, "blockHeight": 9704, "took": "4.422768ms"} -2023-12-16T14:50:51.901Z INFO sending PrepareRequest {"height": 9705, "view": 0} -2023-12-16T14:50:51.902Z INFO sending Commit {"height": 9705, "view": 0} -2023-12-16T14:50:51.902Z INFO approving block {"height": 9705, "hash": "d5bb6ffbf21ae88fd504cdf3cfa623440932d1d466d77c9808d8e6e675bdb451", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2bc2a61ef8eaba9c0bd94448cbd3251e0952d03599da47ee6c6add27ba1cb12"} -2023-12-16T14:50:51.903Z INFO initializing dbft {"height": 9706, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:51.904Z debug frostfs-node/morph.go:229 new block {"index": 9705} -2023-12-16T14:50:52.303Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9705, "blockHeight": 9705, "took": "4.715901ms"} -2023-12-16T14:50:52.903Z INFO sending PrepareRequest {"height": 9706, "view": 0} -2023-12-16T14:50:52.903Z INFO sending Commit {"height": 9706, "view": 0} -2023-12-16T14:50:52.903Z INFO approving block {"height": 9706, "hash": "36408d80592f6c86b0ddf3de173eae1e91633fccc5bab486c7d15a5a2d026500", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5bb6ffbf21ae88fd504cdf3cfa623440932d1d466d77c9808d8e6e675bdb451"} -2023-12-16T14:50:52.904Z INFO initializing dbft {"height": 9707, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:52.905Z debug frostfs-node/morph.go:229 new block {"index": 9706} -2023-12-16T14:50:53.302Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9706, "blockHeight": 9706, "took": "3.192343ms"} -2023-12-16T14:50:53.904Z INFO sending PrepareRequest {"height": 9707, "view": 0} -2023-12-16T14:50:53.905Z INFO sending Commit {"height": 9707, "view": 0} -2023-12-16T14:50:53.905Z INFO approving block {"height": 9707, "hash": "3cd418fad2348c2e718a960ef4278fa3f850661f5ce8bd0854a880c8b9ca2657", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "36408d80592f6c86b0ddf3de173eae1e91633fccc5bab486c7d15a5a2d026500"} -2023-12-16T14:50:53.906Z INFO initializing dbft {"height": 9708, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:53.906Z debug frostfs-node/morph.go:229 new block {"index": 9707} -2023-12-16T14:50:54.303Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9707, "blockHeight": 9707, "took": "3.663029ms"} -2023-12-16T14:50:54.905Z INFO sending PrepareRequest {"height": 9708, "view": 0} -2023-12-16T14:50:54.905Z INFO sending Commit {"height": 9708, "view": 0} -2023-12-16T14:50:54.906Z INFO approving block {"height": 9708, "hash": "e7c4a1070b58cdd39025a4590b7d1d7b913ac55d8325cdea47732f69b5cb946d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cd418fad2348c2e718a960ef4278fa3f850661f5ce8bd0854a880c8b9ca2657"} -2023-12-16T14:50:54.906Z INFO initializing dbft {"height": 9709, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:54.907Z debug frostfs-node/morph.go:229 new block {"index": 9708} -2023-12-16T14:50:55.304Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9708, "blockHeight": 9708, "took": "3.346777ms"} -2023-12-16T14:50:55.907Z INFO sending PrepareRequest {"height": 9709, "view": 0} -2023-12-16T14:50:55.907Z INFO sending Commit {"height": 9709, "view": 0} -2023-12-16T14:50:55.907Z INFO approving block {"height": 9709, "hash": "b907f1da0b65547adc4e559ef5561f87b83c2d57ee3f8f4f32f07415b7dc128b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7c4a1070b58cdd39025a4590b7d1d7b913ac55d8325cdea47732f69b5cb946d"} -2023-12-16T14:50:55.908Z INFO initializing dbft {"height": 9710, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:55.909Z debug frostfs-node/morph.go:229 new block {"index": 9709} -2023-12-16T14:50:56.306Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9709, "blockHeight": 9709, "took": "4.463304ms"} -2023-12-16T14:50:56.908Z INFO sending PrepareRequest {"height": 9710, "view": 0} -2023-12-16T14:50:56.908Z INFO sending Commit {"height": 9710, "view": 0} -2023-12-16T14:50:56.909Z INFO approving block {"height": 9710, "hash": "c3037bffd63b72660a59ac9be555ac9c61be9120311ab9c1e9b70d4493c10833", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b907f1da0b65547adc4e559ef5561f87b83c2d57ee3f8f4f32f07415b7dc128b"} -2023-12-16T14:50:56.910Z INFO initializing dbft {"height": 9711, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:56.910Z debug frostfs-node/morph.go:229 new block {"index": 9710} -2023-12-16T14:50:57.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9710, "blockHeight": 9710, "took": "5.709807ms"} -2023-12-16T14:50:57.910Z INFO sending PrepareRequest {"height": 9711, "view": 0} -2023-12-16T14:50:57.910Z INFO sending Commit {"height": 9711, "view": 0} -2023-12-16T14:50:57.910Z INFO approving block {"height": 9711, "hash": "0be0492542a4a4fddc4292983c70b5ecc2c599351c9bb1cf3d3a1ef95ca2ac95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c3037bffd63b72660a59ac9be555ac9c61be9120311ab9c1e9b70d4493c10833"} -2023-12-16T14:50:57.911Z INFO initializing dbft {"height": 9712, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:57.912Z debug frostfs-node/morph.go:229 new block {"index": 9711} -2023-12-16T14:50:58.306Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9711, "blockHeight": 9711, "took": "3.75641ms"} -2023-12-16T14:50:58.911Z INFO sending PrepareRequest {"height": 9712, "view": 0} -2023-12-16T14:50:58.911Z INFO sending Commit {"height": 9712, "view": 0} -2023-12-16T14:50:58.912Z INFO approving block {"height": 9712, "hash": "c7b270faf0ca263b287ef0a49a58743a34f01c9c69a08dc14174fbe279bf4f8f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0be0492542a4a4fddc4292983c70b5ecc2c599351c9bb1cf3d3a1ef95ca2ac95"} -2023-12-16T14:50:58.913Z INFO initializing dbft {"height": 9713, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:58.913Z debug frostfs-node/morph.go:229 new block {"index": 9712} -2023-12-16T14:50:59.306Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9712, "blockHeight": 9712, "took": "3.618875ms"} -2023-12-16T14:50:59.912Z INFO sending PrepareRequest {"height": 9713, "view": 0} -2023-12-16T14:50:59.912Z INFO sending Commit {"height": 9713, "view": 0} -2023-12-16T14:50:59.913Z INFO approving block {"height": 9713, "hash": "8e31ff8831fce1e588eab79114e1d8a0e29234e40e021b90b93bb418a0cf116c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7b270faf0ca263b287ef0a49a58743a34f01c9c69a08dc14174fbe279bf4f8f"} -2023-12-16T14:50:59.914Z INFO initializing dbft {"height": 9714, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:50:59.914Z debug frostfs-node/morph.go:229 new block {"index": 9713} -2023-12-16T14:51:00.306Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9713, "blockHeight": 9713, "took": "3.364938ms"} -2023-12-16T14:51:00.914Z INFO sending PrepareRequest {"height": 9714, "view": 0} -2023-12-16T14:51:00.914Z INFO sending Commit {"height": 9714, "view": 0} -2023-12-16T14:51:00.914Z INFO approving block {"height": 9714, "hash": "6562a9003b0ba7d1ebeb861d24fedfe0c0e775da3c753fc92abfd82c246f6f6a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e31ff8831fce1e588eab79114e1d8a0e29234e40e021b90b93bb418a0cf116c"} -2023-12-16T14:51:00.915Z INFO initializing dbft {"height": 9715, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:00.915Z debug frostfs-node/morph.go:229 new block {"index": 9714} -2023-12-16T14:51:01.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9714, "blockHeight": 9714, "took": "4.540492ms"} -2023-12-16T14:51:01.915Z INFO sending PrepareRequest {"height": 9715, "view": 0} -2023-12-16T14:51:01.915Z INFO sending Commit {"height": 9715, "view": 0} -2023-12-16T14:51:01.916Z INFO approving block {"height": 9715, "hash": "f18f8ed1925da5018b339d51476f63df613a8e422ee4d9e1ebb271f929688748", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6562a9003b0ba7d1ebeb861d24fedfe0c0e775da3c753fc92abfd82c246f6f6a"} -2023-12-16T14:51:01.916Z INFO initializing dbft {"height": 9716, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:01.917Z debug frostfs-node/morph.go:229 new block {"index": 9715} -2023-12-16T14:51:02.307Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9715, "blockHeight": 9715, "took": "3.488492ms"} -2023-12-16T14:51:02.917Z INFO sending PrepareRequest {"height": 9716, "view": 0} -2023-12-16T14:51:02.917Z INFO sending Commit {"height": 9716, "view": 0} -2023-12-16T14:51:02.917Z INFO approving block {"height": 9716, "hash": "f3c020cc2e6315e2f1c7e3c09a6b6766853c1c074eded2d3886c4128523035ad", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f18f8ed1925da5018b339d51476f63df613a8e422ee4d9e1ebb271f929688748"} -2023-12-16T14:51:02.918Z INFO initializing dbft {"height": 9717, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:02.919Z debug frostfs-node/morph.go:229 new block {"index": 9716} -2023-12-16T14:51:03.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9716, "blockHeight": 9716, "took": "3.870093ms"} -2023-12-16T14:51:03.918Z INFO sending PrepareRequest {"height": 9717, "view": 0} -2023-12-16T14:51:03.918Z INFO sending Commit {"height": 9717, "view": 0} -2023-12-16T14:51:03.918Z INFO approving block {"height": 9717, "hash": "490e7f298bbe6799615d2a859f5ad8299f56cbe26434d08194b1fcc503097c2b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f3c020cc2e6315e2f1c7e3c09a6b6766853c1c074eded2d3886c4128523035ad"} -2023-12-16T14:51:03.919Z INFO initializing dbft {"height": 9718, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:03.920Z debug frostfs-node/morph.go:229 new block {"index": 9717} -2023-12-16T14:51:04.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9717, "blockHeight": 9717, "took": "3.944225ms"} -2023-12-16T14:51:04.919Z INFO sending PrepareRequest {"height": 9718, "view": 0} -2023-12-16T14:51:04.920Z INFO sending Commit {"height": 9718, "view": 0} -2023-12-16T14:51:04.920Z INFO approving block {"height": 9718, "hash": "696f5d4ed8f5d881cd32c2150446c0acbf484cec08746041a8d15fd4b9e1dff0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "490e7f298bbe6799615d2a859f5ad8299f56cbe26434d08194b1fcc503097c2b"} -2023-12-16T14:51:04.921Z INFO initializing dbft {"height": 9719, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:04.921Z debug frostfs-node/morph.go:229 new block {"index": 9718} -2023-12-16T14:51:05.308Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9718, "blockHeight": 9718, "took": "3.554094ms"} -2023-12-16T14:51:05.920Z INFO sending PrepareRequest {"height": 9719, "view": 0} -2023-12-16T14:51:05.920Z INFO sending Commit {"height": 9719, "view": 0} -2023-12-16T14:51:05.921Z INFO approving block {"height": 9719, "hash": "b7465c119a6b1707c8e068d9ecf7edaa201c0c7f8a84cfae3db948ffe9fb0fb1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "696f5d4ed8f5d881cd32c2150446c0acbf484cec08746041a8d15fd4b9e1dff0"} -2023-12-16T14:51:05.921Z INFO initializing dbft {"height": 9720, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:05.922Z debug frostfs-node/morph.go:229 new block {"index": 9719} -2023-12-16T14:51:06.309Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9719, "blockHeight": 9719, "took": "3.45067ms"} -2023-12-16T14:51:06.922Z INFO sending PrepareRequest {"height": 9720, "view": 0} -2023-12-16T14:51:06.922Z INFO sending Commit {"height": 9720, "view": 0} -2023-12-16T14:51:06.922Z INFO approving block {"height": 9720, "hash": "216f55106c87d3b56d24d9483abebd8271bfd35ba7d9ea205fedbffd9347a92f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b7465c119a6b1707c8e068d9ecf7edaa201c0c7f8a84cfae3db948ffe9fb0fb1"} -2023-12-16T14:51:06.923Z INFO initializing dbft {"height": 9721, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:06.923Z debug frostfs-node/morph.go:229 new block {"index": 9720} -2023-12-16T14:51:07.310Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9720, "blockHeight": 9720, "took": "3.297366ms"} -2023-12-16T14:51:07.923Z INFO sending PrepareRequest {"height": 9721, "view": 0} -2023-12-16T14:51:07.924Z INFO sending Commit {"height": 9721, "view": 0} -2023-12-16T14:51:07.924Z INFO approving block {"height": 9721, "hash": "54756323e64e5ab4f3ca546b889cb349ca5bc343bbb36d32f0c578cd936f1887", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "216f55106c87d3b56d24d9483abebd8271bfd35ba7d9ea205fedbffd9347a92f"} -2023-12-16T14:51:07.925Z INFO initializing dbft {"height": 9722, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:07.925Z debug frostfs-node/morph.go:229 new block {"index": 9721} -2023-12-16T14:51:08.312Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9721, "blockHeight": 9721, "took": "4.940114ms"} -2023-12-16T14:51:08.925Z INFO sending PrepareRequest {"height": 9722, "view": 0} -2023-12-16T14:51:08.925Z INFO sending Commit {"height": 9722, "view": 0} -2023-12-16T14:51:08.925Z INFO approving block {"height": 9722, "hash": "f5dc0f32bc65ebe4e4e13fb7183effa9b55948b0507956f883a7c6743309fd91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54756323e64e5ab4f3ca546b889cb349ca5bc343bbb36d32f0c578cd936f1887"} -2023-12-16T14:51:08.926Z INFO initializing dbft {"height": 9723, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:08.926Z debug frostfs-node/morph.go:229 new block {"index": 9722} -2023-12-16T14:51:09.313Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9722, "blockHeight": 9722, "took": "4.962032ms"} -2023-12-16T14:51:09.925Z INFO sending PrepareRequest {"height": 9723, "view": 0} -2023-12-16T14:51:09.925Z INFO sending Commit {"height": 9723, "view": 0} -2023-12-16T14:51:09.926Z INFO approving block {"height": 9723, "hash": "56ce94ef11f1883894221186586a4e96c51765d64d5991b2b283d49ca5849b3b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f5dc0f32bc65ebe4e4e13fb7183effa9b55948b0507956f883a7c6743309fd91"} -2023-12-16T14:51:09.927Z INFO initializing dbft {"height": 9724, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:09.927Z debug frostfs-node/morph.go:229 new block {"index": 9723} -2023-12-16T14:51:10.318Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9723, "blockHeight": 9723, "took": "9.072936ms"} -2023-12-16T14:51:10.927Z INFO sending PrepareRequest {"height": 9724, "view": 0} -2023-12-16T14:51:10.927Z INFO sending Commit {"height": 9724, "view": 0} -2023-12-16T14:51:10.927Z INFO approving block {"height": 9724, "hash": "38de6d4c4501e40066839023bedf7362adb709523340013a688c8a4ba12bb9cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "56ce94ef11f1883894221186586a4e96c51765d64d5991b2b283d49ca5849b3b"} -2023-12-16T14:51:10.928Z INFO initializing dbft {"height": 9725, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:10.928Z debug frostfs-node/morph.go:229 new block {"index": 9724} -2023-12-16T14:51:11.316Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9724, "blockHeight": 9724, "took": "6.417333ms"} -2023-12-16T14:51:11.928Z INFO sending PrepareRequest {"height": 9725, "view": 0} -2023-12-16T14:51:11.928Z INFO sending Commit {"height": 9725, "view": 0} -2023-12-16T14:51:11.928Z INFO approving block {"height": 9725, "hash": "c2b679b87fa4bb7193d765f9ee6978ce5960ba6235ae94618ea260e3c26dec3a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38de6d4c4501e40066839023bedf7362adb709523340013a688c8a4ba12bb9cb"} -2023-12-16T14:51:11.929Z INFO initializing dbft {"height": 9726, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:11.930Z debug frostfs-node/morph.go:229 new block {"index": 9725} -2023-12-16T14:51:12.315Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9725, "blockHeight": 9725, "took": "4.748009ms"} -2023-12-16T14:51:12.929Z INFO sending PrepareRequest {"height": 9726, "view": 0} -2023-12-16T14:51:12.929Z INFO sending Commit {"height": 9726, "view": 0} -2023-12-16T14:51:12.929Z INFO approving block {"height": 9726, "hash": "817c1c57fe07dab5f156f44208c6d1d5bbab9f09fe49fe96237175bba513e1f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c2b679b87fa4bb7193d765f9ee6978ce5960ba6235ae94618ea260e3c26dec3a"} -2023-12-16T14:51:12.930Z INFO initializing dbft {"height": 9727, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:12.931Z debug frostfs-node/morph.go:229 new block {"index": 9726} -2023-12-16T14:51:13.314Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9726, "blockHeight": 9726, "took": "3.498532ms"} -2023-12-16T14:51:13.930Z INFO sending PrepareRequest {"height": 9727, "view": 0} -2023-12-16T14:51:13.931Z INFO sending Commit {"height": 9727, "view": 0} -2023-12-16T14:51:13.931Z INFO approving block {"height": 9727, "hash": "617630b379775f21a17eca35f01d99cf9142f6e0430752ba4001332151c2b230", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "817c1c57fe07dab5f156f44208c6d1d5bbab9f09fe49fe96237175bba513e1f5"} -2023-12-16T14:51:13.931Z INFO initializing dbft {"height": 9728, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:13.932Z debug frostfs-node/morph.go:229 new block {"index": 9727} -2023-12-16T14:51:14.314Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 9727, "blockHeight": 9727, "took": "3.708487ms"} -2023-12-16T14:51:14.932Z INFO sending PrepareRequest {"height": 9728, "view": 0} -2023-12-16T14:51:14.932Z INFO sending Commit {"height": 9728, "view": 0} -2023-12-16T14:51:14.932Z INFO approving block {"height": 9728, "hash": "8d160d804a35bd9443e4baee42ab63348576f6289dea61ce5dfc9fd0776f1c31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "617630b379775f21a17eca35f01d99cf9142f6e0430752ba4001332151c2b230"} -2023-12-16T14:51:14.933Z INFO initializing dbft {"height": 9729, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:14.933Z debug frostfs-node/morph.go:229 new block {"index": 9728} -2023-12-16T14:51:15.315Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9728, "blockHeight": 9728, "took": "4.379738ms"} -2023-12-16T14:51:15.933Z INFO sending PrepareRequest {"height": 9729, "view": 0} -2023-12-16T14:51:15.934Z INFO sending Commit {"height": 9729, "view": 0} -2023-12-16T14:51:15.934Z INFO approving block {"height": 9729, "hash": "4b1856a35e2dfa6215ab7df134de0ffa7b9cf0be5f75f2bfe4332e8917b032f4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d160d804a35bd9443e4baee42ab63348576f6289dea61ce5dfc9fd0776f1c31"} -2023-12-16T14:51:15.935Z INFO initializing dbft {"height": 9730, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:15.936Z debug frostfs-node/morph.go:229 new block {"index": 9729} -2023-12-16T14:51:16.315Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9729, "blockHeight": 9729, "took": "3.39269ms"} -2023-12-16T14:51:16.935Z INFO sending PrepareRequest {"height": 9730, "view": 0} -2023-12-16T14:51:16.935Z INFO sending Commit {"height": 9730, "view": 0} -2023-12-16T14:51:16.935Z INFO approving block {"height": 9730, "hash": "8b8f59eafa60b442337133fca7cb1c193a695e9db41e7141c6d8f0d75cc5f77f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4b1856a35e2dfa6215ab7df134de0ffa7b9cf0be5f75f2bfe4332e8917b032f4"} -2023-12-16T14:51:16.936Z INFO initializing dbft {"height": 9731, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:16.937Z debug frostfs-node/morph.go:229 new block {"index": 9730} -2023-12-16T14:51:17.317Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9730, "blockHeight": 9730, "took": "5.049383ms"} -2023-12-16T14:51:17.936Z INFO sending PrepareRequest {"height": 9731, "view": 0} -2023-12-16T14:51:17.936Z INFO sending Commit {"height": 9731, "view": 0} -2023-12-16T14:51:17.937Z INFO approving block {"height": 9731, "hash": "e080c0128d68d4b63cc3dc699c40c076da94da3e717376e4b8a2157c69300526", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b8f59eafa60b442337133fca7cb1c193a695e9db41e7141c6d8f0d75cc5f77f"} -2023-12-16T14:51:17.938Z INFO initializing dbft {"height": 9732, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:17.939Z debug frostfs-node/morph.go:229 new block {"index": 9731} -2023-12-16T14:51:18.318Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9731, "blockHeight": 9731, "took": "5.968695ms"} -2023-12-16T14:51:18.937Z INFO sending PrepareRequest {"height": 9732, "view": 0} -2023-12-16T14:51:18.938Z INFO sending Commit {"height": 9732, "view": 0} -2023-12-16T14:51:18.938Z INFO approving block {"height": 9732, "hash": "e1f1a95461d1b55baadbb81bb4db747bb804f9dbb172a6e8f594c42f2b6de030", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e080c0128d68d4b63cc3dc699c40c076da94da3e717376e4b8a2157c69300526"} -2023-12-16T14:51:18.939Z INFO initializing dbft {"height": 9733, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:18.939Z debug frostfs-node/morph.go:229 new block {"index": 9732} -2023-12-16T14:51:19.316Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9732, "blockHeight": 9732, "took": "3.216054ms"} -2023-12-16T14:51:19.939Z INFO sending PrepareRequest {"height": 9733, "view": 0} -2023-12-16T14:51:19.939Z INFO sending Commit {"height": 9733, "view": 0} -2023-12-16T14:51:19.939Z INFO approving block {"height": 9733, "hash": "9eb4b635962275db17932aa70a9700ba33cc96410e5c555b79f3af1392614187", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e1f1a95461d1b55baadbb81bb4db747bb804f9dbb172a6e8f594c42f2b6de030"} -2023-12-16T14:51:19.940Z INFO initializing dbft {"height": 9734, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:19.940Z debug frostfs-node/morph.go:229 new block {"index": 9733} -2023-12-16T14:51:20.319Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9733, "blockHeight": 9733, "took": "4.944874ms"} -2023-12-16T14:51:20.940Z INFO sending PrepareRequest {"height": 9734, "view": 0} -2023-12-16T14:51:20.940Z INFO sending Commit {"height": 9734, "view": 0} -2023-12-16T14:51:20.940Z INFO approving block {"height": 9734, "hash": "05e7178689a4157e67103a999add2517d3f5ed6831e8fd7212adca4e5bed0d4a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9eb4b635962275db17932aa70a9700ba33cc96410e5c555b79f3af1392614187"} -2023-12-16T14:51:20.941Z INFO initializing dbft {"height": 9735, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:20.942Z debug frostfs-node/morph.go:229 new block {"index": 9734} -2023-12-16T14:51:21.319Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9734, "blockHeight": 9734, "took": "5.332346ms"} -2023-12-16T14:51:21.941Z INFO sending PrepareRequest {"height": 9735, "view": 0} -2023-12-16T14:51:21.941Z INFO sending Commit {"height": 9735, "view": 0} -2023-12-16T14:51:21.941Z INFO approving block {"height": 9735, "hash": "4ac7e8952a3a273c87094db095ba9450bea4471af393e42b1364de96b7133a5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "05e7178689a4157e67103a999add2517d3f5ed6831e8fd7212adca4e5bed0d4a"} -2023-12-16T14:51:21.942Z INFO initializing dbft {"height": 9736, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:21.943Z debug frostfs-node/morph.go:229 new block {"index": 9735} -2023-12-16T14:51:22.319Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9735, "blockHeight": 9735, "took": "3.248275ms"} -2023-12-16T14:51:22.942Z INFO sending PrepareRequest {"height": 9736, "view": 0} -2023-12-16T14:51:22.942Z INFO sending Commit {"height": 9736, "view": 0} -2023-12-16T14:51:22.942Z INFO approving block {"height": 9736, "hash": "ca8b85352a5e725924b971daca8be37e016cd256b6b766cf5b48159efc58fadf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ac7e8952a3a273c87094db095ba9450bea4471af393e42b1364de96b7133a5e"} -2023-12-16T14:51:22.944Z INFO initializing dbft {"height": 9737, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:22.944Z debug frostfs-node/morph.go:229 new block {"index": 9736} -2023-12-16T14:51:23.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9736, "blockHeight": 9736, "took": "5.085499ms"} -2023-12-16T14:51:23.943Z INFO sending PrepareRequest {"height": 9737, "view": 0} -2023-12-16T14:51:23.944Z INFO sending Commit {"height": 9737, "view": 0} -2023-12-16T14:51:23.944Z INFO approving block {"height": 9737, "hash": "19f18f19da62495c592d234eaf6c51210596290f694aaafaf5e8d5a7a948eb54", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca8b85352a5e725924b971daca8be37e016cd256b6b766cf5b48159efc58fadf"} -2023-12-16T14:51:23.945Z INFO initializing dbft {"height": 9738, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:23.945Z debug frostfs-node/morph.go:229 new block {"index": 9737} -2023-12-16T14:51:24.322Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9737, "blockHeight": 9737, "took": "5.346107ms"} -2023-12-16T14:51:24.945Z INFO sending PrepareRequest {"height": 9738, "view": 0} -2023-12-16T14:51:24.945Z INFO sending Commit {"height": 9738, "view": 0} -2023-12-16T14:51:24.945Z INFO approving block {"height": 9738, "hash": "716954356d567c5567f7b5e9410259dbff4917a26a1d3d1499c72c18e3bbefa4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "19f18f19da62495c592d234eaf6c51210596290f694aaafaf5e8d5a7a948eb54"} -2023-12-16T14:51:24.946Z INFO initializing dbft {"height": 9739, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:24.947Z debug frostfs-node/morph.go:229 new block {"index": 9738} -2023-12-16T14:51:25.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9738, "blockHeight": 9738, "took": "3.68329ms"} -2023-12-16T14:51:25.947Z INFO sending PrepareRequest {"height": 9739, "view": 0} -2023-12-16T14:51:25.947Z INFO sending Commit {"height": 9739, "view": 0} -2023-12-16T14:51:25.947Z INFO approving block {"height": 9739, "hash": "25d80c38a0a4d83db73c58ea0b558a27c2d6bbf18b2e501761b96ee50b65535e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "716954356d567c5567f7b5e9410259dbff4917a26a1d3d1499c72c18e3bbefa4"} -2023-12-16T14:51:25.948Z INFO initializing dbft {"height": 9740, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:25.949Z debug frostfs-node/morph.go:229 new block {"index": 9739} -2023-12-16T14:51:26.321Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9739, "blockHeight": 9739, "took": "3.318687ms"} -2023-12-16T14:51:26.948Z INFO sending PrepareRequest {"height": 9740, "view": 0} -2023-12-16T14:51:26.948Z INFO sending Commit {"height": 9740, "view": 0} -2023-12-16T14:51:26.949Z INFO approving block {"height": 9740, "hash": "569ff21d64219400dfe189e6fe7defd2c50254f89193b769408030e45b60ce33", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "25d80c38a0a4d83db73c58ea0b558a27c2d6bbf18b2e501761b96ee50b65535e"} -2023-12-16T14:51:26.950Z INFO initializing dbft {"height": 9741, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:26.950Z debug frostfs-node/morph.go:229 new block {"index": 9740} -2023-12-16T14:51:27.322Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9740, "blockHeight": 9740, "took": "3.301166ms"} -2023-12-16T14:51:27.949Z INFO sending PrepareRequest {"height": 9741, "view": 0} -2023-12-16T14:51:27.950Z INFO sending Commit {"height": 9741, "view": 0} -2023-12-16T14:51:27.950Z INFO approving block {"height": 9741, "hash": "ee57232c0838f65600a7f43dc3e34b18508e11a30e4240a545dcf61c0ab23eb7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "569ff21d64219400dfe189e6fe7defd2c50254f89193b769408030e45b60ce33"} -2023-12-16T14:51:27.952Z INFO initializing dbft {"height": 9742, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:27.952Z debug frostfs-node/morph.go:229 new block {"index": 9741} -2023-12-16T14:51:28.323Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9741, "blockHeight": 9741, "took": "4.608875ms"} -2023-12-16T14:51:28.951Z INFO sending PrepareRequest {"height": 9742, "view": 0} -2023-12-16T14:51:28.951Z INFO sending Commit {"height": 9742, "view": 0} -2023-12-16T14:51:28.952Z INFO approving block {"height": 9742, "hash": "32b65e023f687cbffc861e3d1cc6d0ed26b7becdc93adc0df570115c3fe0b1e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ee57232c0838f65600a7f43dc3e34b18508e11a30e4240a545dcf61c0ab23eb7"} -2023-12-16T14:51:28.953Z INFO initializing dbft {"height": 9743, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:28.953Z debug frostfs-node/morph.go:229 new block {"index": 9742} -2023-12-16T14:51:29.322Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9742, "blockHeight": 9742, "took": "3.337277ms"} -2023-12-16T14:51:29.952Z INFO sending PrepareRequest {"height": 9743, "view": 0} -2023-12-16T14:51:29.952Z INFO sending Commit {"height": 9743, "view": 0} -2023-12-16T14:51:29.952Z INFO approving block {"height": 9743, "hash": "3b0ea5cfe745b5a40dee153856e27feca4d3978e511def1a6450b5c1cdd7f4c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "32b65e023f687cbffc861e3d1cc6d0ed26b7becdc93adc0df570115c3fe0b1e6"} -2023-12-16T14:51:29.953Z INFO initializing dbft {"height": 9744, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:29.954Z debug frostfs-node/morph.go:229 new block {"index": 9743} -2023-12-16T14:51:30.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9743, "blockHeight": 9743, "took": "5.485902ms"} -2023-12-16T14:51:30.953Z INFO sending PrepareRequest {"height": 9744, "view": 0} -2023-12-16T14:51:30.954Z INFO sending Commit {"height": 9744, "view": 0} -2023-12-16T14:51:30.954Z INFO approving block {"height": 9744, "hash": "8cb40cceaf89afc8cce1d979dd2936a4ddd0518e2aaf9aeae663323f159035eb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b0ea5cfe745b5a40dee153856e27feca4d3978e511def1a6450b5c1cdd7f4c7"} -2023-12-16T14:51:30.954Z INFO initializing dbft {"height": 9745, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:30.955Z debug frostfs-node/morph.go:229 new block {"index": 9744} -2023-12-16T14:51:31.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9744, "blockHeight": 9744, "took": "5.312095ms"} -2023-12-16T14:51:31.955Z INFO sending PrepareRequest {"height": 9745, "view": 0} -2023-12-16T14:51:31.955Z INFO sending Commit {"height": 9745, "view": 0} -2023-12-16T14:51:31.955Z INFO approving block {"height": 9745, "hash": "fc87c2a7360ef910c0b9ab802d90f418f3650205724110152cb7bbdd819a162e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cb40cceaf89afc8cce1d979dd2936a4ddd0518e2aaf9aeae663323f159035eb"} -2023-12-16T14:51:31.956Z INFO initializing dbft {"height": 9746, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:31.957Z debug frostfs-node/morph.go:229 new block {"index": 9745} -2023-12-16T14:51:32.324Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9745, "blockHeight": 9745, "took": "3.807094ms"} -2023-12-16T14:51:32.956Z INFO sending PrepareRequest {"height": 9746, "view": 0} -2023-12-16T14:51:32.957Z INFO sending Commit {"height": 9746, "view": 0} -2023-12-16T14:51:32.957Z INFO approving block {"height": 9746, "hash": "ca1508ccb55877c5013f5692839cc2f622a9064c219a528c79f57ed356303e0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc87c2a7360ef910c0b9ab802d90f418f3650205724110152cb7bbdd819a162e"} -2023-12-16T14:51:32.958Z INFO initializing dbft {"height": 9747, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:32.958Z debug frostfs-node/morph.go:229 new block {"index": 9746} -2023-12-16T14:51:33.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9746, "blockHeight": 9746, "took": "4.527172ms"} -2023-12-16T14:51:33.958Z INFO sending PrepareRequest {"height": 9747, "view": 0} -2023-12-16T14:51:33.958Z INFO sending Commit {"height": 9747, "view": 0} -2023-12-16T14:51:33.958Z INFO approving block {"height": 9747, "hash": "6cd88cbd4c84a855e7df84612403d08c83a107f62589907df989df4b6d90ffb8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ca1508ccb55877c5013f5692839cc2f622a9064c219a528c79f57ed356303e0e"} -2023-12-16T14:51:33.959Z INFO initializing dbft {"height": 9748, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:33.960Z debug frostfs-node/morph.go:229 new block {"index": 9747} -2023-12-16T14:51:34.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9747, "blockHeight": 9747, "took": "3.364471ms"} -2023-12-16T14:51:34.959Z INFO sending PrepareRequest {"height": 9748, "view": 0} -2023-12-16T14:51:34.960Z INFO sending Commit {"height": 9748, "view": 0} -2023-12-16T14:51:34.960Z INFO approving block {"height": 9748, "hash": "1766517357a0ba42eeae803f27de85076519ca52dd356cf9d8d7c3a8ee71c34f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6cd88cbd4c84a855e7df84612403d08c83a107f62589907df989df4b6d90ffb8"} -2023-12-16T14:51:34.961Z INFO initializing dbft {"height": 9749, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:34.961Z debug frostfs-node/morph.go:229 new block {"index": 9748} -2023-12-16T14:51:35.325Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9748, "blockHeight": 9748, "took": "3.823402ms"} -2023-12-16T14:51:35.961Z INFO sending PrepareRequest {"height": 9749, "view": 0} -2023-12-16T14:51:35.961Z INFO sending Commit {"height": 9749, "view": 0} -2023-12-16T14:51:35.961Z INFO approving block {"height": 9749, "hash": "7218db82ab0402a9a3ba56a968ee2d744374ee2dced5c71f19ed45345068d0fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1766517357a0ba42eeae803f27de85076519ca52dd356cf9d8d7c3a8ee71c34f"} -2023-12-16T14:51:35.962Z INFO initializing dbft {"height": 9750, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:35.962Z debug frostfs-node/morph.go:229 new block {"index": 9749} -2023-12-16T14:51:36.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9749, "blockHeight": 9749, "took": "3.802273ms"} -2023-12-16T14:51:36.962Z INFO sending PrepareRequest {"height": 9750, "view": 0} -2023-12-16T14:51:36.962Z INFO sending Commit {"height": 9750, "view": 0} -2023-12-16T14:51:36.963Z INFO approving block {"height": 9750, "hash": "1e32263d25356e98c390598f52bea88885a5d96bfcc285d6abdccd3f12bd8cb8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7218db82ab0402a9a3ba56a968ee2d744374ee2dced5c71f19ed45345068d0fe"} -2023-12-16T14:51:36.963Z INFO initializing dbft {"height": 9751, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:36.964Z debug frostfs-node/morph.go:229 new block {"index": 9750} -2023-12-16T14:51:36.965Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:51:36.968Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:51:36.968Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:51:37.326Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9750, "blockHeight": 9750, "took": "3.720028ms"} -2023-12-16T14:51:37.964Z INFO sending PrepareRequest {"height": 9751, "view": 0} -2023-12-16T14:51:37.964Z INFO sending Commit {"height": 9751, "view": 0} -2023-12-16T14:51:37.964Z INFO approving block {"height": 9751, "hash": "3491300de459bb1a26d777e7783440934bfd9f13ab1d1d472904edad1b68f247", "tx_count": 2, "merkle": "0d699bf6d1c9dc836f2bf02ffedd839f30741ad96946f8d5421d4c46c032da08", "prev": "1e32263d25356e98c390598f52bea88885a5d96bfcc285d6abdccd3f12bd8cb8"} -2023-12-16T14:51:37.965Z INFO runtime log {"tx": "10d480f7faaa5d23910ba7072febdaf7f54fbddb64466861f6c8512039cbf456", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:51:37.965Z INFO runtime log {"tx": "10d480f7faaa5d23910ba7072febdaf7f54fbddb64466861f6c8512039cbf456", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:51:37.967Z INFO initializing dbft {"height": 9752, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:37.967Z debug frostfs-node/morph.go:229 new block {"index": 9751} -2023-12-16T14:51:38.331Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 9751, "blockHeight": 9751, "took": "7.742066ms"} -2023-12-16T14:51:38.965Z INFO sending PrepareRequest {"height": 9752, "view": 0} -2023-12-16T14:51:38.966Z INFO sending Commit {"height": 9752, "view": 0} -2023-12-16T14:51:38.966Z INFO approving block {"height": 9752, "hash": "76d7070399800f2209d4afe0d2ce8893784efd2dba7e916e2c9afffd725f4b8e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3491300de459bb1a26d777e7783440934bfd9f13ab1d1d472904edad1b68f247"} -2023-12-16T14:51:38.967Z INFO initializing dbft {"height": 9753, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:38.968Z debug frostfs-node/morph.go:229 new block {"index": 9752} -2023-12-16T14:51:39.328Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9752, "blockHeight": 9752, "took": "5.048409ms"} -2023-12-16T14:51:39.967Z INFO sending PrepareRequest {"height": 9753, "view": 0} -2023-12-16T14:51:39.967Z INFO sending Commit {"height": 9753, "view": 0} -2023-12-16T14:51:39.968Z INFO approving block {"height": 9753, "hash": "287f854b9593c0b6f2ded6f2a8941c9cac13859ca2c24cae3c744b5861e8d951", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "76d7070399800f2209d4afe0d2ce8893784efd2dba7e916e2c9afffd725f4b8e"} -2023-12-16T14:51:39.969Z INFO initializing dbft {"height": 9754, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:39.969Z debug frostfs-node/morph.go:229 new block {"index": 9753} -2023-12-16T14:51:40.328Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9753, "blockHeight": 9753, "took": "3.414149ms"} -2023-12-16T14:51:40.968Z INFO sending PrepareRequest {"height": 9754, "view": 0} -2023-12-16T14:51:40.969Z INFO sending Commit {"height": 9754, "view": 0} -2023-12-16T14:51:40.969Z INFO approving block {"height": 9754, "hash": "78d911de434c5b944b7f699a928d58b0997dda497c87d57f6edf5c1ad6572203", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "287f854b9593c0b6f2ded6f2a8941c9cac13859ca2c24cae3c744b5861e8d951"} -2023-12-16T14:51:40.970Z INFO initializing dbft {"height": 9755, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:40.971Z debug frostfs-node/morph.go:229 new block {"index": 9754} -2023-12-16T14:51:41.328Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9754, "blockHeight": 9754, "took": "3.537323ms"} -2023-12-16T14:51:41.970Z INFO sending PrepareRequest {"height": 9755, "view": 0} -2023-12-16T14:51:41.970Z INFO sending Commit {"height": 9755, "view": 0} -2023-12-16T14:51:41.970Z INFO approving block {"height": 9755, "hash": "7012423444c4d89075404a738ad67a07f42db954a36884e95b1056edd9b5d1cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78d911de434c5b944b7f699a928d58b0997dda497c87d57f6edf5c1ad6572203"} -2023-12-16T14:51:41.971Z INFO initializing dbft {"height": 9756, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:41.972Z debug frostfs-node/morph.go:229 new block {"index": 9755} -2023-12-16T14:51:42.329Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9755, "blockHeight": 9755, "took": "4.037248ms"} -2023-12-16T14:51:42.971Z INFO sending PrepareRequest {"height": 9756, "view": 0} -2023-12-16T14:51:42.972Z INFO sending Commit {"height": 9756, "view": 0} -2023-12-16T14:51:42.972Z INFO approving block {"height": 9756, "hash": "934c84751c1695a04ba8826a6cb08c70e3e9f14192ed53dd356f3ed86ba3e94a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7012423444c4d89075404a738ad67a07f42db954a36884e95b1056edd9b5d1cd"} -2023-12-16T14:51:42.973Z INFO initializing dbft {"height": 9757, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:42.974Z debug frostfs-node/morph.go:229 new block {"index": 9756} -2023-12-16T14:51:43.331Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9756, "blockHeight": 9756, "took": "5.601321ms"} -2023-12-16T14:51:43.973Z INFO sending PrepareRequest {"height": 9757, "view": 0} -2023-12-16T14:51:43.973Z INFO sending Commit {"height": 9757, "view": 0} -2023-12-16T14:51:43.973Z INFO approving block {"height": 9757, "hash": "d0aa5a185e21928f6e9e6c3c36b4249c8a63b6030f58a6a8e57e9d974779fccd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "934c84751c1695a04ba8826a6cb08c70e3e9f14192ed53dd356f3ed86ba3e94a"} -2023-12-16T14:51:43.974Z INFO initializing dbft {"height": 9758, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:43.975Z debug frostfs-node/morph.go:229 new block {"index": 9757} -2023-12-16T14:51:44.331Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9757, "blockHeight": 9757, "took": "5.323615ms"} -2023-12-16T14:51:44.974Z INFO sending PrepareRequest {"height": 9758, "view": 0} -2023-12-16T14:51:44.974Z INFO sending Commit {"height": 9758, "view": 0} -2023-12-16T14:51:44.975Z INFO approving block {"height": 9758, "hash": "f68dfcc47796969d431c1ba33402c958ab6ebc771e13860a963286260c0ab98e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0aa5a185e21928f6e9e6c3c36b4249c8a63b6030f58a6a8e57e9d974779fccd"} -2023-12-16T14:51:44.976Z INFO initializing dbft {"height": 9759, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:44.976Z debug frostfs-node/morph.go:229 new block {"index": 9758} -2023-12-16T14:51:45.330Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9758, "blockHeight": 9758, "took": "3.054289ms"} -2023-12-16T14:51:45.975Z INFO sending PrepareRequest {"height": 9759, "view": 0} -2023-12-16T14:51:45.975Z INFO sending Commit {"height": 9759, "view": 0} -2023-12-16T14:51:45.975Z INFO approving block {"height": 9759, "hash": "a110cacc228b1ff72b9bede0446f9dd9f4ff3994662e84cb417f9e8a01fa86cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f68dfcc47796969d431c1ba33402c958ab6ebc771e13860a963286260c0ab98e"} -2023-12-16T14:51:45.976Z INFO initializing dbft {"height": 9760, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:45.977Z debug frostfs-node/morph.go:229 new block {"index": 9759} -2023-12-16T14:51:45.979Z info settlement/calls.go:61 start basic income collection {"epoch": 41} -2023-12-16T14:51:45.980Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 41, "iteration": 1, "error": "no data for 0 iteration in 41 epoch for consumers's trusts"} -2023-12-16T14:51:46.332Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9759, "blockHeight": 9759, "took": "3.998607ms"} -2023-12-16T14:51:46.976Z INFO sending PrepareRequest {"height": 9760, "view": 0} -2023-12-16T14:51:46.976Z INFO sending Commit {"height": 9760, "view": 0} -2023-12-16T14:51:46.976Z INFO approving block {"height": 9760, "hash": "a9644a026f38a387935ab0d905326ec301e31d278afb864dc7e5269f3959371b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a110cacc228b1ff72b9bede0446f9dd9f4ff3994662e84cb417f9e8a01fa86cb"} -2023-12-16T14:51:46.978Z INFO initializing dbft {"height": 9761, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:46.978Z debug frostfs-node/morph.go:229 new block {"index": 9760} -2023-12-16T14:51:47.334Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9760, "blockHeight": 9760, "took": "6.031296ms"} -2023-12-16T14:51:47.977Z INFO sending PrepareRequest {"height": 9761, "view": 0} -2023-12-16T14:51:47.978Z INFO sending Commit {"height": 9761, "view": 0} -2023-12-16T14:51:47.978Z INFO approving block {"height": 9761, "hash": "e30feb261d3c51841185c371837d4e80edefe87ed8f22a0a484bd695ba84a225", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9644a026f38a387935ab0d905326ec301e31d278afb864dc7e5269f3959371b"} -2023-12-16T14:51:47.979Z INFO initializing dbft {"height": 9762, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:47.980Z debug frostfs-node/morph.go:229 new block {"index": 9761} -2023-12-16T14:51:48.335Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9761, "blockHeight": 9761, "took": "6.474899ms"} -2023-12-16T14:51:48.979Z INFO sending PrepareRequest {"height": 9762, "view": 0} -2023-12-16T14:51:48.979Z INFO sending Commit {"height": 9762, "view": 0} -2023-12-16T14:51:48.979Z INFO approving block {"height": 9762, "hash": "bb4e4d9ca26435c288e5c042ff552eeca46a579a581a1ade6ffd382265844a78", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e30feb261d3c51841185c371837d4e80edefe87ed8f22a0a484bd695ba84a225"} -2023-12-16T14:51:48.980Z INFO initializing dbft {"height": 9763, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:48.980Z debug frostfs-node/morph.go:229 new block {"index": 9762} -2023-12-16T14:51:49.332Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9762, "blockHeight": 9762, "took": "3.26263ms"} -2023-12-16T14:51:49.981Z INFO sending PrepareRequest {"height": 9763, "view": 0} -2023-12-16T14:51:49.981Z INFO sending Commit {"height": 9763, "view": 0} -2023-12-16T14:51:49.981Z INFO approving block {"height": 9763, "hash": "c8d15ff12e6d89291f111fa18c6441678e8aeb0c11d965a32ca71150ebe6302f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bb4e4d9ca26435c288e5c042ff552eeca46a579a581a1ade6ffd382265844a78"} -2023-12-16T14:51:49.983Z INFO initializing dbft {"height": 9764, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:49.983Z debug frostfs-node/morph.go:229 new block {"index": 9763} -2023-12-16T14:51:50.334Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9763, "blockHeight": 9763, "took": "4.556733ms"} -2023-12-16T14:51:50.982Z INFO sending PrepareRequest {"height": 9764, "view": 0} -2023-12-16T14:51:50.982Z INFO sending Commit {"height": 9764, "view": 0} -2023-12-16T14:51:50.983Z INFO approving block {"height": 9764, "hash": "cdf565c422fa7e5feb18a5e01848289c474a36228efca598b0d64798f527513e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8d15ff12e6d89291f111fa18c6441678e8aeb0c11d965a32ca71150ebe6302f"} -2023-12-16T14:51:50.984Z INFO initializing dbft {"height": 9765, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:50.984Z debug frostfs-node/morph.go:229 new block {"index": 9764} -2023-12-16T14:51:51.333Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9764, "blockHeight": 9764, "took": "2.933146ms"} -2023-12-16T14:51:51.983Z INFO sending PrepareRequest {"height": 9765, "view": 0} -2023-12-16T14:51:51.983Z INFO sending Commit {"height": 9765, "view": 0} -2023-12-16T14:51:51.984Z INFO approving block {"height": 9765, "hash": "086f76310d67c39c4b06b0253ec157bdc33c3c148cba0712da93a4afb83cbab6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cdf565c422fa7e5feb18a5e01848289c474a36228efca598b0d64798f527513e"} -2023-12-16T14:51:51.985Z INFO initializing dbft {"height": 9766, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:51.985Z debug frostfs-node/morph.go:229 new block {"index": 9765} -2023-12-16T14:51:52.335Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9765, "blockHeight": 9765, "took": "3.932142ms"} -2023-12-16T14:51:52.985Z INFO sending PrepareRequest {"height": 9766, "view": 0} -2023-12-16T14:51:52.986Z INFO sending Commit {"height": 9766, "view": 0} -2023-12-16T14:51:52.986Z INFO approving block {"height": 9766, "hash": "43e0470cd273f2d4472a92855709dde4a2b8fe6587817378ba1a5d48fbc81216", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "086f76310d67c39c4b06b0253ec157bdc33c3c148cba0712da93a4afb83cbab6"} -2023-12-16T14:51:52.988Z INFO initializing dbft {"height": 9767, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:52.989Z debug frostfs-node/morph.go:229 new block {"index": 9766} -2023-12-16T14:51:53.336Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9766, "blockHeight": 9766, "took": "3.968656ms"} -2023-12-16T14:51:53.987Z INFO sending PrepareRequest {"height": 9767, "view": 0} -2023-12-16T14:51:53.987Z INFO sending Commit {"height": 9767, "view": 0} -2023-12-16T14:51:53.987Z INFO approving block {"height": 9767, "hash": "770f3f892be95a1e907f41d15ab4c9b81a7eebcdd463a3b2492cba96e01aa559", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43e0470cd273f2d4472a92855709dde4a2b8fe6587817378ba1a5d48fbc81216"} -2023-12-16T14:51:53.988Z INFO initializing dbft {"height": 9768, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:53.988Z debug frostfs-node/morph.go:229 new block {"index": 9767} -2023-12-16T14:51:54.338Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9767, "blockHeight": 9767, "took": "4.859831ms"} -2023-12-16T14:51:54.989Z INFO sending PrepareRequest {"height": 9768, "view": 0} -2023-12-16T14:51:54.989Z INFO sending Commit {"height": 9768, "view": 0} -2023-12-16T14:51:54.989Z INFO approving block {"height": 9768, "hash": "7ae54d388e3de3a3111f38ceba1d7d9eb817ecaf9ed52698b6819d52c2601751", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "770f3f892be95a1e907f41d15ab4c9b81a7eebcdd463a3b2492cba96e01aa559"} -2023-12-16T14:51:54.990Z INFO initializing dbft {"height": 9769, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:54.991Z debug frostfs-node/morph.go:229 new block {"index": 9768} -2023-12-16T14:51:55.338Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9768, "blockHeight": 9768, "took": "3.546843ms"} -2023-12-16T14:51:55.990Z INFO sending PrepareRequest {"height": 9769, "view": 0} -2023-12-16T14:51:55.990Z INFO sending Commit {"height": 9769, "view": 0} -2023-12-16T14:51:55.991Z INFO approving block {"height": 9769, "hash": "d0be752e45dcab93777d509afe987ee5218f7ca2dc68bd222d27557aea709770", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ae54d388e3de3a3111f38ceba1d7d9eb817ecaf9ed52698b6819d52c2601751"} -2023-12-16T14:51:55.992Z INFO initializing dbft {"height": 9770, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:55.992Z debug frostfs-node/morph.go:229 new block {"index": 9769} -2023-12-16T14:51:56.345Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9769, "blockHeight": 9769, "took": "10.229738ms"} -2023-12-16T14:51:56.992Z INFO sending PrepareRequest {"height": 9770, "view": 0} -2023-12-16T14:51:56.992Z INFO sending Commit {"height": 9770, "view": 0} -2023-12-16T14:51:56.992Z INFO approving block {"height": 9770, "hash": "ace8bb27a8e6b08e39435ac0045e9d1fab37a5838bb64997cb7f9c66ae9b7677", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d0be752e45dcab93777d509afe987ee5218f7ca2dc68bd222d27557aea709770"} -2023-12-16T14:51:56.994Z INFO initializing dbft {"height": 9771, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:56.994Z debug frostfs-node/morph.go:229 new block {"index": 9770} -2023-12-16T14:51:57.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9770, "blockHeight": 9770, "took": "4.504321ms"} -2023-12-16T14:51:57.993Z INFO sending PrepareRequest {"height": 9771, "view": 0} -2023-12-16T14:51:57.993Z INFO sending Commit {"height": 9771, "view": 0} -2023-12-16T14:51:57.994Z INFO approving block {"height": 9771, "hash": "80e3b52220d57a35a193a490444f29c84858a9077ab454e21244aa86097b3aaa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ace8bb27a8e6b08e39435ac0045e9d1fab37a5838bb64997cb7f9c66ae9b7677"} -2023-12-16T14:51:57.994Z INFO initializing dbft {"height": 9772, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:57.995Z debug frostfs-node/morph.go:229 new block {"index": 9771} -2023-12-16T14:51:58.339Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9771, "blockHeight": 9771, "took": "3.42888ms"} -2023-12-16T14:51:58.995Z INFO sending PrepareRequest {"height": 9772, "view": 0} -2023-12-16T14:51:58.995Z INFO sending Commit {"height": 9772, "view": 0} -2023-12-16T14:51:58.995Z INFO approving block {"height": 9772, "hash": "3ecbeac04c262922baa60d327a66269821d3c6b3e5c42d9c2e8466dbd773df5c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "80e3b52220d57a35a193a490444f29c84858a9077ab454e21244aa86097b3aaa"} -2023-12-16T14:51:58.997Z INFO initializing dbft {"height": 9773, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:58.998Z debug frostfs-node/morph.go:229 new block {"index": 9772} -2023-12-16T14:51:59.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9772, "blockHeight": 9772, "took": "4.750179ms"} -2023-12-16T14:51:59.996Z INFO sending PrepareRequest {"height": 9773, "view": 0} -2023-12-16T14:51:59.996Z INFO sending Commit {"height": 9773, "view": 0} -2023-12-16T14:51:59.996Z INFO approving block {"height": 9773, "hash": "7ced08469004b0a2fefa104e8d1da9f8227489ffcafcc32a139aa12fed850e68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3ecbeac04c262922baa60d327a66269821d3c6b3e5c42d9c2e8466dbd773df5c"} -2023-12-16T14:51:59.997Z INFO initializing dbft {"height": 9774, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:51:59.998Z debug frostfs-node/morph.go:229 new block {"index": 9773} -2023-12-16T14:52:00.340Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9773, "blockHeight": 9773, "took": "3.183693ms"} -2023-12-16T14:52:00.997Z INFO sending PrepareRequest {"height": 9774, "view": 0} -2023-12-16T14:52:00.997Z INFO sending Commit {"height": 9774, "view": 0} -2023-12-16T14:52:00.998Z INFO approving block {"height": 9774, "hash": "e30c76b5b6b7b3dff62e2903d96cb9c36ce153d247f85e62f07dcd6a7cf3413a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ced08469004b0a2fefa104e8d1da9f8227489ffcafcc32a139aa12fed850e68"} -2023-12-16T14:52:00.998Z INFO initializing dbft {"height": 9775, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:00.999Z debug frostfs-node/morph.go:229 new block {"index": 9774} -2023-12-16T14:52:01.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9774, "blockHeight": 9774, "took": "3.614436ms"} -2023-12-16T14:52:01.998Z INFO sending PrepareRequest {"height": 9775, "view": 0} -2023-12-16T14:52:01.999Z INFO sending Commit {"height": 9775, "view": 0} -2023-12-16T14:52:01.999Z INFO approving block {"height": 9775, "hash": "a90f845c3ec14c63a55e9e64dfc81570adf4ea2f1c1c63bad4b1c309dc5481b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e30c76b5b6b7b3dff62e2903d96cb9c36ce153d247f85e62f07dcd6a7cf3413a"} -2023-12-16T14:52:02.000Z INFO initializing dbft {"height": 9776, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:02.000Z debug frostfs-node/morph.go:229 new block {"index": 9775} -2023-12-16T14:52:02.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9775, "blockHeight": 9775, "took": "3.08361ms"} -2023-12-16T14:52:03.000Z INFO sending PrepareRequest {"height": 9776, "view": 0} -2023-12-16T14:52:03.000Z INFO sending Commit {"height": 9776, "view": 0} -2023-12-16T14:52:03.000Z INFO approving block {"height": 9776, "hash": "393021ed0fd7f48f2a017ebc07ff3cc9ff26d0a54387c8450b53cfe15d06b066", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a90f845c3ec14c63a55e9e64dfc81570adf4ea2f1c1c63bad4b1c309dc5481b6"} -2023-12-16T14:52:03.001Z INFO initializing dbft {"height": 9777, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:03.001Z debug frostfs-node/morph.go:229 new block {"index": 9776} -2023-12-16T14:52:03.341Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9776, "blockHeight": 9776, "took": "3.281098ms"} -2023-12-16T14:52:04.002Z INFO sending PrepareRequest {"height": 9777, "view": 0} -2023-12-16T14:52:04.002Z INFO sending Commit {"height": 9777, "view": 0} -2023-12-16T14:52:04.002Z INFO approving block {"height": 9777, "hash": "ef47d7fb0d73f87687edee46e2e7e046ff3ed79fd5db2e763f0191bd4fb8072b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "393021ed0fd7f48f2a017ebc07ff3cc9ff26d0a54387c8450b53cfe15d06b066"} -2023-12-16T14:52:04.003Z INFO initializing dbft {"height": 9778, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:04.004Z debug frostfs-node/morph.go:229 new block {"index": 9777} -2023-12-16T14:52:04.343Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9777, "blockHeight": 9777, "took": "4.655468ms"} -2023-12-16T14:52:05.003Z INFO sending PrepareRequest {"height": 9778, "view": 0} -2023-12-16T14:52:05.003Z INFO sending Commit {"height": 9778, "view": 0} -2023-12-16T14:52:05.004Z INFO approving block {"height": 9778, "hash": "d808aef7661a2746a856499a3d3bd3475919aea4ec904f9c7c8e79b99a368482", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ef47d7fb0d73f87687edee46e2e7e046ff3ed79fd5db2e763f0191bd4fb8072b"} -2023-12-16T14:52:05.005Z INFO initializing dbft {"height": 9779, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:05.005Z debug frostfs-node/morph.go:229 new block {"index": 9778} -2023-12-16T14:52:05.344Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9778, "blockHeight": 9778, "took": "4.579414ms"} -2023-12-16T14:52:06.005Z INFO sending PrepareRequest {"height": 9779, "view": 0} -2023-12-16T14:52:06.005Z INFO sending Commit {"height": 9779, "view": 0} -2023-12-16T14:52:06.006Z INFO approving block {"height": 9779, "hash": "a9de46301f4bd12e5f3a459f838aedef4c6f86402d44ce3bfd0870c6b48aca29", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d808aef7661a2746a856499a3d3bd3475919aea4ec904f9c7c8e79b99a368482"} -2023-12-16T14:52:06.009Z INFO initializing dbft {"height": 9780, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:06.010Z debug frostfs-node/morph.go:229 new block {"index": 9779} -2023-12-16T14:52:06.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9779, "blockHeight": 9779, "took": "6.142129ms"} -2023-12-16T14:52:07.006Z INFO sending PrepareRequest {"height": 9780, "view": 0} -2023-12-16T14:52:07.007Z INFO sending Commit {"height": 9780, "view": 0} -2023-12-16T14:52:07.007Z INFO approving block {"height": 9780, "hash": "0993402a155653cf31fc5605969c774466213cd039b540f6ad7b4958f62bee11", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9de46301f4bd12e5f3a459f838aedef4c6f86402d44ce3bfd0870c6b48aca29"} -2023-12-16T14:52:07.008Z INFO initializing dbft {"height": 9781, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:07.008Z debug frostfs-node/morph.go:229 new block {"index": 9780} -2023-12-16T14:52:07.345Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9780, "blockHeight": 9780, "took": "3.742119ms"} -2023-12-16T14:52:08.008Z INFO sending PrepareRequest {"height": 9781, "view": 0} -2023-12-16T14:52:08.008Z INFO sending Commit {"height": 9781, "view": 0} -2023-12-16T14:52:08.008Z INFO approving block {"height": 9781, "hash": "8a4c626faafc11d2e311d0102f92c7859085bc0329e41371dd2178e1bd04a9e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0993402a155653cf31fc5605969c774466213cd039b540f6ad7b4958f62bee11"} -2023-12-16T14:52:08.009Z INFO initializing dbft {"height": 9782, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:08.010Z debug frostfs-node/morph.go:229 new block {"index": 9781} -2023-12-16T14:52:08.347Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9781, "blockHeight": 9781, "took": "5.820125ms"} -2023-12-16T14:52:09.010Z INFO sending PrepareRequest {"height": 9782, "view": 0} -2023-12-16T14:52:09.010Z INFO sending Commit {"height": 9782, "view": 0} -2023-12-16T14:52:09.010Z INFO approving block {"height": 9782, "hash": "7143015764e43a5e9ab3ec9ff0ac7b5f279a4f6bbe8c2b666d8b72c21c261f13", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a4c626faafc11d2e311d0102f92c7859085bc0329e41371dd2178e1bd04a9e4"} -2023-12-16T14:52:09.012Z INFO initializing dbft {"height": 9783, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:09.012Z debug frostfs-node/morph.go:229 new block {"index": 9782} -2023-12-16T14:52:09.350Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9782, "blockHeight": 9782, "took": "7.733376ms"} -2023-12-16T14:52:10.012Z INFO sending PrepareRequest {"height": 9783, "view": 0} -2023-12-16T14:52:10.012Z INFO sending Commit {"height": 9783, "view": 0} -2023-12-16T14:52:10.012Z INFO approving block {"height": 9783, "hash": "4e75f8bc50beb41768860b3b326f2a738e35365ddbd6c8fc74ed54597c660721", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7143015764e43a5e9ab3ec9ff0ac7b5f279a4f6bbe8c2b666d8b72c21c261f13"} -2023-12-16T14:52:10.013Z INFO initializing dbft {"height": 9784, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:10.013Z debug frostfs-node/morph.go:229 new block {"index": 9783} -2023-12-16T14:52:10.346Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9783, "blockHeight": 9783, "took": "3.288717ms"} -2023-12-16T14:52:11.013Z INFO sending PrepareRequest {"height": 9784, "view": 0} -2023-12-16T14:52:11.013Z INFO sending Commit {"height": 9784, "view": 0} -2023-12-16T14:52:11.013Z INFO approving block {"height": 9784, "hash": "416d21e5662316ed1063483385971ab281db222f47895d31002988c85b8e6bf9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4e75f8bc50beb41768860b3b326f2a738e35365ddbd6c8fc74ed54597c660721"} -2023-12-16T14:52:11.014Z INFO initializing dbft {"height": 9785, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:11.014Z debug frostfs-node/morph.go:229 new block {"index": 9784} -2023-12-16T14:52:11.348Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9784, "blockHeight": 9784, "took": "4.529682ms"} -2023-12-16T14:52:12.015Z INFO sending PrepareRequest {"height": 9785, "view": 0} -2023-12-16T14:52:12.015Z INFO sending Commit {"height": 9785, "view": 0} -2023-12-16T14:52:12.015Z INFO approving block {"height": 9785, "hash": "a9038882c0081bf545700f07c59faae36deb03730ee0075f11b1db9a1b0fa7e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "416d21e5662316ed1063483385971ab281db222f47895d31002988c85b8e6bf9"} -2023-12-16T14:52:12.016Z INFO initializing dbft {"height": 9786, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:12.017Z debug frostfs-node/morph.go:229 new block {"index": 9785} -2023-12-16T14:52:12.348Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9785, "blockHeight": 9785, "took": "3.583937ms"} -2023-12-16T14:52:13.016Z INFO sending PrepareRequest {"height": 9786, "view": 0} -2023-12-16T14:52:13.016Z INFO sending Commit {"height": 9786, "view": 0} -2023-12-16T14:52:13.016Z INFO approving block {"height": 9786, "hash": "d79bd5f15687d6cdf49f9a12156577ef3b2b9f7169d08b2b7017e72c80605ab5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9038882c0081bf545700f07c59faae36deb03730ee0075f11b1db9a1b0fa7e1"} -2023-12-16T14:52:13.017Z INFO initializing dbft {"height": 9787, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:13.018Z debug frostfs-node/morph.go:229 new block {"index": 9786} -2023-12-16T14:52:13.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9786, "blockHeight": 9786, "took": "4.405628ms"} -2023-12-16T14:52:14.018Z INFO sending PrepareRequest {"height": 9787, "view": 0} -2023-12-16T14:52:14.018Z INFO sending Commit {"height": 9787, "view": 0} -2023-12-16T14:52:14.018Z INFO approving block {"height": 9787, "hash": "e638c96abe721adc2e7fe752d46bf1813c8827592d6700d454c203762f9b34e6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d79bd5f15687d6cdf49f9a12156577ef3b2b9f7169d08b2b7017e72c80605ab5"} -2023-12-16T14:52:14.019Z INFO initializing dbft {"height": 9788, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:14.020Z debug frostfs-node/morph.go:229 new block {"index": 9787} -2023-12-16T14:52:14.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9787, "blockHeight": 9787, "took": "4.058858ms"} -2023-12-16T14:52:15.019Z INFO sending PrepareRequest {"height": 9788, "view": 0} -2023-12-16T14:52:15.019Z INFO sending Commit {"height": 9788, "view": 0} -2023-12-16T14:52:15.019Z INFO approving block {"height": 9788, "hash": "01b98aba65f0e3bab119b517f639e4df23648d4dd7045f149b577feb187efd62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e638c96abe721adc2e7fe752d46bf1813c8827592d6700d454c203762f9b34e6"} -2023-12-16T14:52:15.020Z INFO initializing dbft {"height": 9789, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:15.021Z debug frostfs-node/morph.go:229 new block {"index": 9788} -2023-12-16T14:52:15.349Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9788, "blockHeight": 9788, "took": "4.094309ms"} -2023-12-16T14:52:16.020Z INFO sending PrepareRequest {"height": 9789, "view": 0} -2023-12-16T14:52:16.020Z INFO sending Commit {"height": 9789, "view": 0} -2023-12-16T14:52:16.020Z INFO approving block {"height": 9789, "hash": "24cc48541d88d16f0167af0dce9f7411ea778bc182b1683bfb239ff0e4bf4e94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "01b98aba65f0e3bab119b517f639e4df23648d4dd7045f149b577feb187efd62"} -2023-12-16T14:52:16.021Z INFO initializing dbft {"height": 9790, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:16.021Z debug frostfs-node/morph.go:229 new block {"index": 9789} -2023-12-16T14:52:16.352Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9789, "blockHeight": 9789, "took": "5.274404ms"} -2023-12-16T14:52:17.022Z INFO sending PrepareRequest {"height": 9790, "view": 0} -2023-12-16T14:52:17.022Z INFO sending Commit {"height": 9790, "view": 0} -2023-12-16T14:52:17.022Z INFO approving block {"height": 9790, "hash": "3b49fa4cfa0e46fc3a5c1f6d14a2b1411e06f2bba3055722cbb0747f0802a022", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "24cc48541d88d16f0167af0dce9f7411ea778bc182b1683bfb239ff0e4bf4e94"} -2023-12-16T14:52:17.023Z INFO initializing dbft {"height": 9791, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:17.024Z debug frostfs-node/morph.go:229 new block {"index": 9790} -2023-12-16T14:52:17.351Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9790, "blockHeight": 9790, "took": "4.265744ms"} -2023-12-16T14:52:18.023Z INFO sending PrepareRequest {"height": 9791, "view": 0} -2023-12-16T14:52:18.024Z INFO sending Commit {"height": 9791, "view": 0} -2023-12-16T14:52:18.024Z INFO approving block {"height": 9791, "hash": "7ca775303c8709db1c38620bbb2d5402e0566a426a5e08d068d90b28ac62cad1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3b49fa4cfa0e46fc3a5c1f6d14a2b1411e06f2bba3055722cbb0747f0802a022"} -2023-12-16T14:52:18.025Z INFO initializing dbft {"height": 9792, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:18.025Z debug frostfs-node/morph.go:229 new block {"index": 9791} -2023-12-16T14:52:18.352Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9791, "blockHeight": 9791, "took": "4.496171ms"} -2023-12-16T14:52:19.025Z INFO sending PrepareRequest {"height": 9792, "view": 0} -2023-12-16T14:52:19.025Z INFO sending Commit {"height": 9792, "view": 0} -2023-12-16T14:52:19.026Z INFO approving block {"height": 9792, "hash": "e5d163e42a17c47957d573df76f6760203cdf3052435f807d7a23d24a8c6f549", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ca775303c8709db1c38620bbb2d5402e0566a426a5e08d068d90b28ac62cad1"} -2023-12-16T14:52:19.027Z INFO initializing dbft {"height": 9793, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:19.028Z debug frostfs-node/morph.go:229 new block {"index": 9792} -2023-12-16T14:52:19.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9792, "blockHeight": 9792, "took": "5.365777ms"} -2023-12-16T14:52:20.027Z INFO sending PrepareRequest {"height": 9793, "view": 0} -2023-12-16T14:52:20.027Z INFO sending Commit {"height": 9793, "view": 0} -2023-12-16T14:52:20.027Z INFO approving block {"height": 9793, "hash": "d8ab318e8d6ee6a65abb568b86ba79c2adc20bc68781f9e18a55d00924a76e75", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e5d163e42a17c47957d573df76f6760203cdf3052435f807d7a23d24a8c6f549"} -2023-12-16T14:52:20.028Z INFO initializing dbft {"height": 9794, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:20.029Z debug frostfs-node/morph.go:229 new block {"index": 9793} -2023-12-16T14:52:20.356Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9793, "blockHeight": 9793, "took": "6.929251ms"} -2023-12-16T14:52:21.028Z INFO sending PrepareRequest {"height": 9794, "view": 0} -2023-12-16T14:52:21.028Z INFO sending Commit {"height": 9794, "view": 0} -2023-12-16T14:52:21.028Z INFO approving block {"height": 9794, "hash": "7531e5660df5653f7225c420b4b082b20cff395f14e442d905e38137eff00b58", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d8ab318e8d6ee6a65abb568b86ba79c2adc20bc68781f9e18a55d00924a76e75"} -2023-12-16T14:52:21.029Z INFO initializing dbft {"height": 9795, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:21.030Z debug frostfs-node/morph.go:229 new block {"index": 9794} -2023-12-16T14:52:21.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9794, "blockHeight": 9794, "took": "4.212713ms"} -2023-12-16T14:52:22.029Z INFO sending PrepareRequest {"height": 9795, "view": 0} -2023-12-16T14:52:22.029Z INFO sending Commit {"height": 9795, "view": 0} -2023-12-16T14:52:22.031Z INFO approving block {"height": 9795, "hash": "461f144f9e207f4d21f85906c9e1eb6c5858c4fcd21a12f252aa6ebc5b73713a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7531e5660df5653f7225c420b4b082b20cff395f14e442d905e38137eff00b58"} -2023-12-16T14:52:22.033Z INFO initializing dbft {"height": 9796, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:22.034Z debug frostfs-node/morph.go:229 new block {"index": 9795} -2023-12-16T14:52:22.353Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9795, "blockHeight": 9795, "took": "4.048086ms"} -2023-12-16T14:52:23.032Z INFO sending PrepareRequest {"height": 9796, "view": 0} -2023-12-16T14:52:23.032Z INFO sending Commit {"height": 9796, "view": 0} -2023-12-16T14:52:23.032Z INFO approving block {"height": 9796, "hash": "866d4ad4e229044dd426afe616cacaaa53c0f1084a12860cd208a2e721c756d4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "461f144f9e207f4d21f85906c9e1eb6c5858c4fcd21a12f252aa6ebc5b73713a"} -2023-12-16T14:52:23.034Z INFO initializing dbft {"height": 9797, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:23.034Z debug frostfs-node/morph.go:229 new block {"index": 9796} -2023-12-16T14:52:23.355Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9796, "blockHeight": 9796, "took": "4.767259ms"} -2023-12-16T14:52:24.033Z INFO sending PrepareRequest {"height": 9797, "view": 0} -2023-12-16T14:52:24.033Z INFO sending Commit {"height": 9797, "view": 0} -2023-12-16T14:52:24.034Z INFO approving block {"height": 9797, "hash": "48975a785eb0c832cc422b41b323551912a799066454bd15f98422420c4aef66", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "866d4ad4e229044dd426afe616cacaaa53c0f1084a12860cd208a2e721c756d4"} -2023-12-16T14:52:24.034Z INFO initializing dbft {"height": 9798, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:24.035Z debug frostfs-node/morph.go:229 new block {"index": 9797} -2023-12-16T14:52:24.357Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9797, "blockHeight": 9797, "took": "5.542262ms"} -2023-12-16T14:52:25.034Z INFO sending PrepareRequest {"height": 9798, "view": 0} -2023-12-16T14:52:25.034Z INFO sending Commit {"height": 9798, "view": 0} -2023-12-16T14:52:25.035Z INFO approving block {"height": 9798, "hash": "43c57b5322690c7a67576a788a9bd82bf3e6ead03612b99ae2974cc4bd9e9424", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "48975a785eb0c832cc422b41b323551912a799066454bd15f98422420c4aef66"} -2023-12-16T14:52:25.036Z INFO initializing dbft {"height": 9799, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:25.036Z debug frostfs-node/morph.go:229 new block {"index": 9798} -2023-12-16T14:52:25.356Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9798, "blockHeight": 9798, "took": "3.894324ms"} -2023-12-16T14:52:26.035Z INFO sending PrepareRequest {"height": 9799, "view": 0} -2023-12-16T14:52:26.036Z INFO sending Commit {"height": 9799, "view": 0} -2023-12-16T14:52:26.036Z INFO approving block {"height": 9799, "hash": "b8087a12c03836cb9e4b69a36ada8fb322e88e7a74dbe9e1e8d4670f428d47fe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43c57b5322690c7a67576a788a9bd82bf3e6ead03612b99ae2974cc4bd9e9424"} -2023-12-16T14:52:26.038Z INFO initializing dbft {"height": 9800, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:26.038Z debug frostfs-node/morph.go:229 new block {"index": 9799} -2023-12-16T14:52:26.356Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9799, "blockHeight": 9799, "took": "3.813386ms"} -2023-12-16T14:52:27.038Z INFO sending PrepareRequest {"height": 9800, "view": 0} -2023-12-16T14:52:27.038Z INFO sending Commit {"height": 9800, "view": 0} -2023-12-16T14:52:27.038Z INFO approving block {"height": 9800, "hash": "d94d32ec669f79dbe03fccdb1a155627b33e2254a2bac0cd2da7d8a3183f6590", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b8087a12c03836cb9e4b69a36ada8fb322e88e7a74dbe9e1e8d4670f428d47fe"} -2023-12-16T14:52:27.040Z INFO initializing dbft {"height": 9801, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:27.040Z debug frostfs-node/morph.go:229 new block {"index": 9800} -2023-12-16T14:52:27.043Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:52:27.046Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:52:27.046Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:52:27.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9800, "blockHeight": 9800, "took": "4.896383ms"} -2023-12-16T14:52:28.040Z INFO sending PrepareRequest {"height": 9801, "view": 0} -2023-12-16T14:52:28.040Z INFO sending Commit {"height": 9801, "view": 0} -2023-12-16T14:52:28.040Z INFO approving block {"height": 9801, "hash": "416e8ae7b8c820800142ea80510377b2f4e771923c9043819799d22bf349cfde", "tx_count": 2, "merkle": "1735a34e79281052a4cac1734133bf29268c225571549228ca4709afdf8921c5", "prev": "d94d32ec669f79dbe03fccdb1a155627b33e2254a2bac0cd2da7d8a3183f6590"} -2023-12-16T14:52:28.041Z INFO runtime log {"tx": "0fdabc8fd652a69be673e764ba02ac15ddf73b87345f5e6a36aa014a9fde7921", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:52:28.041Z INFO runtime log {"tx": "0fdabc8fd652a69be673e764ba02ac15ddf73b87345f5e6a36aa014a9fde7921", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:52:28.041Z INFO initializing dbft {"height": 9802, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:28.042Z debug frostfs-node/morph.go:229 new block {"index": 9801} -2023-12-16T14:52:28.360Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9801, "blockHeight": 9801, "took": "7.359416ms"} -2023-12-16T14:52:29.041Z INFO sending PrepareRequest {"height": 9802, "view": 0} -2023-12-16T14:52:29.042Z INFO sending Commit {"height": 9802, "view": 0} -2023-12-16T14:52:29.042Z INFO approving block {"height": 9802, "hash": "ffd2cc2a3e95bb257018e47f93ba784586a42d87165c9fa72e754bee3533f3ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "416e8ae7b8c820800142ea80510377b2f4e771923c9043819799d22bf349cfde"} -2023-12-16T14:52:29.043Z INFO initializing dbft {"height": 9803, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:29.044Z debug frostfs-node/morph.go:229 new block {"index": 9802} -2023-12-16T14:52:29.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9802, "blockHeight": 9802, "took": "4.909053ms"} -2023-12-16T14:52:30.043Z INFO sending PrepareRequest {"height": 9803, "view": 0} -2023-12-16T14:52:30.043Z INFO sending Commit {"height": 9803, "view": 0} -2023-12-16T14:52:30.043Z INFO approving block {"height": 9803, "hash": "8a98c111a53f8c016c8aaf58d1743429fce8e83fffdf7642d53c88969b780300", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ffd2cc2a3e95bb257018e47f93ba784586a42d87165c9fa72e754bee3533f3ab"} -2023-12-16T14:52:30.044Z INFO initializing dbft {"height": 9804, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:30.044Z debug frostfs-node/morph.go:229 new block {"index": 9803} -2023-12-16T14:52:30.357Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9803, "blockHeight": 9803, "took": "3.400281ms"} -2023-12-16T14:52:31.044Z INFO sending PrepareRequest {"height": 9804, "view": 0} -2023-12-16T14:52:31.044Z INFO sending Commit {"height": 9804, "view": 0} -2023-12-16T14:52:31.045Z INFO approving block {"height": 9804, "hash": "e03080b69916463e62cdfd4b79ba0f94c91bc3a51d30fcee9a52db9942c7fe2c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a98c111a53f8c016c8aaf58d1743429fce8e83fffdf7642d53c88969b780300"} -2023-12-16T14:52:31.045Z INFO initializing dbft {"height": 9805, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:31.046Z debug frostfs-node/morph.go:229 new block {"index": 9804} -2023-12-16T14:52:31.358Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9804, "blockHeight": 9804, "took": "4.06206ms"} -2023-12-16T14:52:32.045Z INFO sending PrepareRequest {"height": 9805, "view": 0} -2023-12-16T14:52:32.045Z INFO sending Commit {"height": 9805, "view": 0} -2023-12-16T14:52:32.046Z INFO approving block {"height": 9805, "hash": "dc072ea15a8c3d86d1aee4f6b03a804c712519939a5a4262ef1954fbf7719391", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e03080b69916463e62cdfd4b79ba0f94c91bc3a51d30fcee9a52db9942c7fe2c"} -2023-12-16T14:52:32.046Z INFO initializing dbft {"height": 9806, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:32.047Z debug frostfs-node/morph.go:229 new block {"index": 9805} -2023-12-16T14:52:32.359Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9805, "blockHeight": 9805, "took": "3.46457ms"} -2023-12-16T14:52:33.047Z INFO sending PrepareRequest {"height": 9806, "view": 0} -2023-12-16T14:52:33.047Z INFO sending Commit {"height": 9806, "view": 0} -2023-12-16T14:52:33.048Z INFO approving block {"height": 9806, "hash": "794c1107968f87a4c65895b09a71dd1556fdae2eb3b126767568542af6e6f71e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc072ea15a8c3d86d1aee4f6b03a804c712519939a5a4262ef1954fbf7719391"} -2023-12-16T14:52:33.048Z INFO initializing dbft {"height": 9807, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:33.049Z debug frostfs-node/morph.go:229 new block {"index": 9806} -2023-12-16T14:52:33.361Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9806, "blockHeight": 9806, "took": "5.55258ms"} -2023-12-16T14:52:34.048Z INFO sending PrepareRequest {"height": 9807, "view": 0} -2023-12-16T14:52:34.048Z INFO sending Commit {"height": 9807, "view": 0} -2023-12-16T14:52:34.048Z INFO approving block {"height": 9807, "hash": "6119953443492d767327d9a529c7a9ecedf0a269d57239f8f21efe7efbb9ae5e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "794c1107968f87a4c65895b09a71dd1556fdae2eb3b126767568542af6e6f71e"} -2023-12-16T14:52:34.049Z INFO initializing dbft {"height": 9808, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:34.050Z debug frostfs-node/morph.go:229 new block {"index": 9807} -2023-12-16T14:52:34.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9807, "blockHeight": 9807, "took": "5.936565ms"} -2023-12-16T14:52:35.050Z INFO sending PrepareRequest {"height": 9808, "view": 0} -2023-12-16T14:52:35.050Z INFO sending Commit {"height": 9808, "view": 0} -2023-12-16T14:52:35.050Z INFO approving block {"height": 9808, "hash": "9f707b9e06d3f61b705471ef7848d271f323c4a47d6d380480bae047379bf638", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6119953443492d767327d9a529c7a9ecedf0a269d57239f8f21efe7efbb9ae5e"} -2023-12-16T14:52:35.051Z INFO initializing dbft {"height": 9809, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:35.051Z debug frostfs-node/morph.go:229 new block {"index": 9808} -2023-12-16T14:52:35.360Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9808, "blockHeight": 9808, "took": "3.070069ms"} -2023-12-16T14:52:36.051Z INFO sending PrepareRequest {"height": 9809, "view": 0} -2023-12-16T14:52:36.051Z INFO sending Commit {"height": 9809, "view": 0} -2023-12-16T14:52:36.051Z INFO approving block {"height": 9809, "hash": "f23dafff31148e32736ba37e2404bf87822a27b14a9ac608506970fd9f2be4f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f707b9e06d3f61b705471ef7848d271f323c4a47d6d380480bae047379bf638"} -2023-12-16T14:52:36.052Z INFO initializing dbft {"height": 9810, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:36.053Z debug frostfs-node/morph.go:229 new block {"index": 9809} -2023-12-16T14:52:36.360Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9809, "blockHeight": 9809, "took": "3.218804ms"} -2023-12-16T14:52:37.052Z INFO sending PrepareRequest {"height": 9810, "view": 0} -2023-12-16T14:52:37.052Z INFO sending Commit {"height": 9810, "view": 0} -2023-12-16T14:52:37.052Z INFO approving block {"height": 9810, "hash": "7e930a64ffada0336d84a71adfff7ec682c355e3da11ecea9cbce21ea8d7e632", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f23dafff31148e32736ba37e2404bf87822a27b14a9ac608506970fd9f2be4f5"} -2023-12-16T14:52:37.053Z INFO initializing dbft {"height": 9811, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:37.053Z debug frostfs-node/morph.go:229 new block {"index": 9810} -2023-12-16T14:52:37.363Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9810, "blockHeight": 9810, "took": "4.447126ms"} -2023-12-16T14:52:38.053Z INFO sending PrepareRequest {"height": 9811, "view": 0} -2023-12-16T14:52:38.053Z INFO sending Commit {"height": 9811, "view": 0} -2023-12-16T14:52:38.054Z INFO approving block {"height": 9811, "hash": "18d7a0b0f46c11207f13ab8a404b60106d0422260cad3ab600451743485d3d94", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7e930a64ffada0336d84a71adfff7ec682c355e3da11ecea9cbce21ea8d7e632"} -2023-12-16T14:52:38.055Z INFO initializing dbft {"height": 9812, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:38.055Z debug frostfs-node/morph.go:229 new block {"index": 9811} -2023-12-16T14:52:38.362Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9811, "blockHeight": 9811, "took": "3.231762ms"} -2023-12-16T14:52:39.054Z INFO sending PrepareRequest {"height": 9812, "view": 0} -2023-12-16T14:52:39.054Z INFO sending Commit {"height": 9812, "view": 0} -2023-12-16T14:52:39.055Z INFO approving block {"height": 9812, "hash": "617d3754b143a6418b2dbe6f821ebcea45d5276d1b3775981b3e6c272b88f7da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18d7a0b0f46c11207f13ab8a404b60106d0422260cad3ab600451743485d3d94"} -2023-12-16T14:52:39.055Z INFO initializing dbft {"height": 9813, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:39.056Z debug frostfs-node/morph.go:229 new block {"index": 9812} -2023-12-16T14:52:39.363Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9812, "blockHeight": 9812, "took": "3.140022ms"} -2023-12-16T14:52:40.056Z INFO sending PrepareRequest {"height": 9813, "view": 0} -2023-12-16T14:52:40.056Z INFO sending Commit {"height": 9813, "view": 0} -2023-12-16T14:52:40.056Z INFO approving block {"height": 9813, "hash": "66f97e6b2ea29b85385d1cf9ff37f54b14f4815c568de973c1fde640f043c0b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "617d3754b143a6418b2dbe6f821ebcea45d5276d1b3775981b3e6c272b88f7da"} -2023-12-16T14:52:40.057Z INFO initializing dbft {"height": 9814, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:40.058Z debug frostfs-node/morph.go:229 new block {"index": 9813} -2023-12-16T14:52:40.364Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9813, "blockHeight": 9813, "took": "3.440451ms"} -2023-12-16T14:52:41.058Z INFO sending PrepareRequest {"height": 9814, "view": 0} -2023-12-16T14:52:41.058Z INFO sending Commit {"height": 9814, "view": 0} -2023-12-16T14:52:41.058Z INFO approving block {"height": 9814, "hash": "3419215b67b33c159f89be7ca01e2668b6f0c9ac6ae28cdf6817abbae3625be8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66f97e6b2ea29b85385d1cf9ff37f54b14f4815c568de973c1fde640f043c0b1"} -2023-12-16T14:52:41.059Z INFO initializing dbft {"height": 9815, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:41.059Z debug frostfs-node/morph.go:229 new block {"index": 9814} -2023-12-16T14:52:41.364Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9814, "blockHeight": 9814, "took": "3.221754ms"} -2023-12-16T14:52:42.059Z INFO sending PrepareRequest {"height": 9815, "view": 0} -2023-12-16T14:52:42.059Z INFO sending Commit {"height": 9815, "view": 0} -2023-12-16T14:52:42.060Z INFO approving block {"height": 9815, "hash": "9819cc89c26ae435f734b85ad6af26a606ff5f119379214b39676f3f95c51a16", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3419215b67b33c159f89be7ca01e2668b6f0c9ac6ae28cdf6817abbae3625be8"} -2023-12-16T14:52:42.061Z INFO initializing dbft {"height": 9816, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:42.062Z debug frostfs-node/morph.go:229 new block {"index": 9815} -2023-12-16T14:52:42.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9815, "blockHeight": 9815, "took": "3.536043ms"} -2023-12-16T14:52:43.060Z INFO sending PrepareRequest {"height": 9816, "view": 0} -2023-12-16T14:52:43.061Z INFO sending Commit {"height": 9816, "view": 0} -2023-12-16T14:52:43.061Z INFO approving block {"height": 9816, "hash": "abbf1e694d7f76a81c71316d88af2437ae414a2f382f0806e06f3a29689883c4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9819cc89c26ae435f734b85ad6af26a606ff5f119379214b39676f3f95c51a16"} -2023-12-16T14:52:43.061Z INFO initializing dbft {"height": 9817, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:43.062Z debug frostfs-node/morph.go:229 new block {"index": 9816} -2023-12-16T14:52:43.365Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9816, "blockHeight": 9816, "took": "3.382288ms"} -2023-12-16T14:52:44.062Z INFO sending PrepareRequest {"height": 9817, "view": 0} -2023-12-16T14:52:44.062Z INFO sending Commit {"height": 9817, "view": 0} -2023-12-16T14:52:44.062Z INFO approving block {"height": 9817, "hash": "c0b0ba44a2d0cf51b31b7b03ded5123df75019974aafddbd5dfaacecb9524814", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abbf1e694d7f76a81c71316d88af2437ae414a2f382f0806e06f3a29689883c4"} -2023-12-16T14:52:44.063Z INFO initializing dbft {"height": 9818, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:44.063Z debug frostfs-node/morph.go:229 new block {"index": 9817} -2023-12-16T14:52:44.366Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9817, "blockHeight": 9817, "took": "3.906616ms"} -2023-12-16T14:52:45.063Z INFO sending PrepareRequest {"height": 9818, "view": 0} -2023-12-16T14:52:45.064Z INFO sending Commit {"height": 9818, "view": 0} -2023-12-16T14:52:45.064Z INFO approving block {"height": 9818, "hash": "9d7d92e06afa99e0550b3edabf2668f69f1ec8b3cc0377644dc2e94c2a48054f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0b0ba44a2d0cf51b31b7b03ded5123df75019974aafddbd5dfaacecb9524814"} -2023-12-16T14:52:45.065Z INFO initializing dbft {"height": 9819, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:45.066Z debug frostfs-node/morph.go:229 new block {"index": 9818} -2023-12-16T14:52:45.366Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9818, "blockHeight": 9818, "took": "3.743394ms"} -2023-12-16T14:52:46.065Z INFO sending PrepareRequest {"height": 9819, "view": 0} -2023-12-16T14:52:46.065Z INFO sending Commit {"height": 9819, "view": 0} -2023-12-16T14:52:46.065Z INFO approving block {"height": 9819, "hash": "63b94bd1c2b14da57b0f4e774db12c93f44bb7e15afb6869befdcd1384713baa", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d7d92e06afa99e0550b3edabf2668f69f1ec8b3cc0377644dc2e94c2a48054f"} -2023-12-16T14:52:46.066Z INFO initializing dbft {"height": 9820, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:46.066Z debug frostfs-node/morph.go:229 new block {"index": 9819} -2023-12-16T14:52:46.069Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 41, "iteration": 2, "error": "no data for 1 iteration in 41 epoch for consumers's trusts"} -2023-12-16T14:52:46.070Z info settlement/calls.go:106 start basic income distribution {"epoch": 41} -2023-12-16T14:52:46.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9819, "blockHeight": 9819, "took": "4.586866ms"} -2023-12-16T14:52:47.066Z INFO sending PrepareRequest {"height": 9820, "view": 0} -2023-12-16T14:52:47.066Z INFO sending Commit {"height": 9820, "view": 0} -2023-12-16T14:52:47.066Z INFO approving block {"height": 9820, "hash": "fac89dfbdf8d1790065cb73633e92c5f9614f64bf4d81952ba571571c6f5d422", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "63b94bd1c2b14da57b0f4e774db12c93f44bb7e15afb6869befdcd1384713baa"} -2023-12-16T14:52:47.067Z INFO initializing dbft {"height": 9821, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:47.068Z debug frostfs-node/morph.go:229 new block {"index": 9820} -2023-12-16T14:52:47.369Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9820, "blockHeight": 9820, "took": "5.84618ms"} -2023-12-16T14:52:48.068Z INFO sending PrepareRequest {"height": 9821, "view": 0} -2023-12-16T14:52:48.068Z INFO sending Commit {"height": 9821, "view": 0} -2023-12-16T14:52:48.069Z INFO approving block {"height": 9821, "hash": "78fa579d6ab30f693a892e7c4f0bcd22f4ce631e44da9047a3e3fd5e6bc1582e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fac89dfbdf8d1790065cb73633e92c5f9614f64bf4d81952ba571571c6f5d422"} -2023-12-16T14:52:48.070Z INFO initializing dbft {"height": 9822, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:48.071Z debug frostfs-node/morph.go:229 new block {"index": 9821} -2023-12-16T14:52:48.367Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9821, "blockHeight": 9821, "took": "3.130301ms"} -2023-12-16T14:52:49.070Z INFO sending PrepareRequest {"height": 9822, "view": 0} -2023-12-16T14:52:49.070Z INFO sending Commit {"height": 9822, "view": 0} -2023-12-16T14:52:49.070Z INFO approving block {"height": 9822, "hash": "c668d6eeea498f492dd46ed880aa603b0b932c8f6e33fab480e986ad8a01a758", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "78fa579d6ab30f693a892e7c4f0bcd22f4ce631e44da9047a3e3fd5e6bc1582e"} -2023-12-16T14:52:49.071Z INFO initializing dbft {"height": 9823, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:49.071Z debug frostfs-node/morph.go:229 new block {"index": 9822} -2023-12-16T14:52:49.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9822, "blockHeight": 9822, "took": "7.425253ms"} -2023-12-16T14:52:50.071Z INFO sending PrepareRequest {"height": 9823, "view": 0} -2023-12-16T14:52:50.072Z INFO sending Commit {"height": 9823, "view": 0} -2023-12-16T14:52:50.072Z INFO approving block {"height": 9823, "hash": "9dcce74ec8b8f4f54b0b0d1749aff166e4d116d9dff9a7f987f874bc5f9d1f62", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c668d6eeea498f492dd46ed880aa603b0b932c8f6e33fab480e986ad8a01a758"} -2023-12-16T14:52:50.073Z INFO initializing dbft {"height": 9824, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:50.073Z debug frostfs-node/morph.go:229 new block {"index": 9823} -2023-12-16T14:52:50.371Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9823, "blockHeight": 9823, "took": "5.014896ms"} -2023-12-16T14:52:51.073Z INFO sending PrepareRequest {"height": 9824, "view": 0} -2023-12-16T14:52:51.074Z INFO sending Commit {"height": 9824, "view": 0} -2023-12-16T14:52:51.074Z INFO approving block {"height": 9824, "hash": "8c84748025b56142c1eb799f09975612edc847f4716dbc68962e483a7ea5dc41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9dcce74ec8b8f4f54b0b0d1749aff166e4d116d9dff9a7f987f874bc5f9d1f62"} -2023-12-16T14:52:51.074Z INFO initializing dbft {"height": 9825, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:51.075Z debug frostfs-node/morph.go:229 new block {"index": 9824} -2023-12-16T14:52:51.372Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9824, "blockHeight": 9824, "took": "6.019636ms"} -2023-12-16T14:52:52.075Z INFO sending PrepareRequest {"height": 9825, "view": 0} -2023-12-16T14:52:52.075Z INFO sending Commit {"height": 9825, "view": 0} -2023-12-16T14:52:52.075Z INFO approving block {"height": 9825, "hash": "6616434782406c8fdcc1efa45697a66d7e9ec98195e1ace0e9f5bd8c464a858c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8c84748025b56142c1eb799f09975612edc847f4716dbc68962e483a7ea5dc41"} -2023-12-16T14:52:52.076Z INFO initializing dbft {"height": 9826, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:52.076Z debug frostfs-node/morph.go:229 new block {"index": 9825} -2023-12-16T14:52:52.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9825, "blockHeight": 9825, "took": "6.030146ms"} -2023-12-16T14:52:53.075Z INFO sending PrepareRequest {"height": 9826, "view": 0} -2023-12-16T14:52:53.076Z INFO sending Commit {"height": 9826, "view": 0} -2023-12-16T14:52:53.076Z INFO approving block {"height": 9826, "hash": "1811c8d670f3d1866033830db20f6558ecc2c7553171a0af758bfc6f8a03f5a8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6616434782406c8fdcc1efa45697a66d7e9ec98195e1ace0e9f5bd8c464a858c"} -2023-12-16T14:52:53.077Z INFO initializing dbft {"height": 9827, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:53.077Z debug frostfs-node/morph.go:229 new block {"index": 9826} -2023-12-16T14:52:53.371Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9826, "blockHeight": 9826, "took": "3.413265ms"} -2023-12-16T14:52:54.077Z INFO sending PrepareRequest {"height": 9827, "view": 0} -2023-12-16T14:52:54.077Z INFO sending Commit {"height": 9827, "view": 0} -2023-12-16T14:52:54.077Z INFO approving block {"height": 9827, "hash": "6e1cf502daa761cdf129e22e34a48c93b5616007614cfaea09056ddc18e7a9e7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1811c8d670f3d1866033830db20f6558ecc2c7553171a0af758bfc6f8a03f5a8"} -2023-12-16T14:52:54.078Z INFO initializing dbft {"height": 9828, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:54.078Z debug frostfs-node/morph.go:229 new block {"index": 9827} -2023-12-16T14:52:54.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9827, "blockHeight": 9827, "took": "3.832643ms"} -2023-12-16T14:52:55.078Z INFO sending PrepareRequest {"height": 9828, "view": 0} -2023-12-16T14:52:55.078Z INFO sending Commit {"height": 9828, "view": 0} -2023-12-16T14:52:55.078Z INFO approving block {"height": 9828, "hash": "b70bf555a8deb0eda9c6ef54b2e413a14c2a08eb00a9e7f00ecab3efed27b591", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6e1cf502daa761cdf129e22e34a48c93b5616007614cfaea09056ddc18e7a9e7"} -2023-12-16T14:52:55.079Z INFO initializing dbft {"height": 9829, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:55.080Z debug frostfs-node/morph.go:229 new block {"index": 9828} -2023-12-16T14:52:55.373Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9828, "blockHeight": 9828, "took": "4.152116ms"} -2023-12-16T14:52:56.080Z INFO sending PrepareRequest {"height": 9829, "view": 0} -2023-12-16T14:52:56.080Z INFO sending Commit {"height": 9829, "view": 0} -2023-12-16T14:52:56.080Z INFO approving block {"height": 9829, "hash": "98154fcfc529dd6760b645bf5ea69c25c7f5449c65f45e38093b33d5b683a98d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b70bf555a8deb0eda9c6ef54b2e413a14c2a08eb00a9e7f00ecab3efed27b591"} -2023-12-16T14:52:56.082Z INFO initializing dbft {"height": 9830, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:56.082Z debug frostfs-node/morph.go:229 new block {"index": 9829} -2023-12-16T14:52:56.374Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9829, "blockHeight": 9829, "took": "3.856082ms"} -2023-12-16T14:52:57.081Z INFO sending PrepareRequest {"height": 9830, "view": 0} -2023-12-16T14:52:57.081Z INFO sending Commit {"height": 9830, "view": 0} -2023-12-16T14:52:57.082Z INFO approving block {"height": 9830, "hash": "dc6021c4deb3655e29263a1748657ae24e20eadbf220e272dc452d94b4f12106", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "98154fcfc529dd6760b645bf5ea69c25c7f5449c65f45e38093b33d5b683a98d"} -2023-12-16T14:52:57.083Z INFO initializing dbft {"height": 9831, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:57.083Z debug frostfs-node/morph.go:229 new block {"index": 9830} -2023-12-16T14:52:57.375Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9830, "blockHeight": 9830, "took": "4.177002ms"} -2023-12-16T14:52:58.083Z INFO sending PrepareRequest {"height": 9831, "view": 0} -2023-12-16T14:52:58.083Z INFO sending Commit {"height": 9831, "view": 0} -2023-12-16T14:52:58.083Z INFO approving block {"height": 9831, "hash": "e7c5071732d185fe375d2c7a570a2c26c690d925fac4ed431a9b6a9e0dd40d6b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dc6021c4deb3655e29263a1748657ae24e20eadbf220e272dc452d94b4f12106"} -2023-12-16T14:52:58.084Z INFO initializing dbft {"height": 9832, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:58.084Z debug frostfs-node/morph.go:229 new block {"index": 9831} -2023-12-16T14:52:58.376Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9831, "blockHeight": 9831, "took": "5.595974ms"} -2023-12-16T14:52:59.084Z INFO sending PrepareRequest {"height": 9832, "view": 0} -2023-12-16T14:52:59.084Z INFO sending Commit {"height": 9832, "view": 0} -2023-12-16T14:52:59.084Z INFO approving block {"height": 9832, "hash": "0952753d548135025e4287dca6eb5369e077f316a542edf01c026b71f028f69b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e7c5071732d185fe375d2c7a570a2c26c690d925fac4ed431a9b6a9e0dd40d6b"} -2023-12-16T14:52:59.085Z INFO initializing dbft {"height": 9833, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:52:59.086Z debug frostfs-node/morph.go:229 new block {"index": 9832} -2023-12-16T14:52:59.378Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9832, "blockHeight": 9832, "took": "6.769297ms"} -2023-12-16T14:53:00.086Z INFO sending PrepareRequest {"height": 9833, "view": 0} -2023-12-16T14:53:00.086Z INFO sending Commit {"height": 9833, "view": 0} -2023-12-16T14:53:00.086Z INFO approving block {"height": 9833, "hash": "eb3aeaf346a8287a4c9e8500c202f15e6236e33a0f2ccf2a90de5ba82f5b1a67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0952753d548135025e4287dca6eb5369e077f316a542edf01c026b71f028f69b"} -2023-12-16T14:53:00.087Z INFO initializing dbft {"height": 9834, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:00.088Z debug frostfs-node/morph.go:229 new block {"index": 9833} -2023-12-16T14:53:00.377Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9833, "blockHeight": 9833, "took": "4.581223ms"} -2023-12-16T14:53:01.087Z INFO sending PrepareRequest {"height": 9834, "view": 0} -2023-12-16T14:53:01.087Z INFO sending Commit {"height": 9834, "view": 0} -2023-12-16T14:53:01.088Z INFO approving block {"height": 9834, "hash": "e02f12615decf0f9cfcd0cc5e02041b0202380cd15360fd574e6bff0d3b47b68", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb3aeaf346a8287a4c9e8500c202f15e6236e33a0f2ccf2a90de5ba82f5b1a67"} -2023-12-16T14:53:01.088Z INFO initializing dbft {"height": 9835, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:01.089Z debug frostfs-node/morph.go:229 new block {"index": 9834} -2023-12-16T14:53:01.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9834, "blockHeight": 9834, "took": "7.911139ms"} -2023-12-16T14:53:02.089Z INFO sending PrepareRequest {"height": 9835, "view": 0} -2023-12-16T14:53:02.089Z INFO sending Commit {"height": 9835, "view": 0} -2023-12-16T14:53:02.090Z INFO approving block {"height": 9835, "hash": "41fe6f367d32ba21fca6d9e131f4f01d1d1438322477b87b9947065a4399107b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e02f12615decf0f9cfcd0cc5e02041b0202380cd15360fd574e6bff0d3b47b68"} -2023-12-16T14:53:02.090Z INFO initializing dbft {"height": 9836, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:02.091Z debug frostfs-node/morph.go:229 new block {"index": 9835} -2023-12-16T14:53:02.378Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9835, "blockHeight": 9835, "took": "4.650516ms"} -2023-12-16T14:53:03.091Z INFO sending PrepareRequest {"height": 9836, "view": 0} -2023-12-16T14:53:03.091Z INFO sending Commit {"height": 9836, "view": 0} -2023-12-16T14:53:03.091Z INFO approving block {"height": 9836, "hash": "e928287349d2c74e52877ce8dbdb7c310f663883d0a65f7e10fc0133a99f8964", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41fe6f367d32ba21fca6d9e131f4f01d1d1438322477b87b9947065a4399107b"} -2023-12-16T14:53:03.092Z INFO initializing dbft {"height": 9837, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:03.092Z debug frostfs-node/morph.go:229 new block {"index": 9836} -2023-12-16T14:53:03.382Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9836, "blockHeight": 9836, "took": "7.304032ms"} -2023-12-16T14:53:04.092Z INFO sending PrepareRequest {"height": 9837, "view": 0} -2023-12-16T14:53:04.092Z INFO sending Commit {"height": 9837, "view": 0} -2023-12-16T14:53:04.092Z INFO approving block {"height": 9837, "hash": "4ee13a490598558456c19f0d30c7d8a877bfb457a5574e668e51331ae6272259", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e928287349d2c74e52877ce8dbdb7c310f663883d0a65f7e10fc0133a99f8964"} -2023-12-16T14:53:04.093Z INFO initializing dbft {"height": 9838, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:04.094Z debug frostfs-node/morph.go:229 new block {"index": 9837} -2023-12-16T14:53:04.380Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9837, "blockHeight": 9837, "took": "4.583413ms"} -2023-12-16T14:53:05.094Z INFO sending PrepareRequest {"height": 9838, "view": 0} -2023-12-16T14:53:05.094Z INFO sending Commit {"height": 9838, "view": 0} -2023-12-16T14:53:05.094Z INFO approving block {"height": 9838, "hash": "8985c17acbdfb98c38301300f8f05edba7c1465c612b7b6ecec3e64e2b9c4cd8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4ee13a490598558456c19f0d30c7d8a877bfb457a5574e668e51331ae6272259"} -2023-12-16T14:53:05.094Z INFO initializing dbft {"height": 9839, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:05.095Z debug frostfs-node/morph.go:229 new block {"index": 9838} -2023-12-16T14:53:05.380Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9838, "blockHeight": 9838, "took": "4.000979ms"} -2023-12-16T14:53:06.095Z INFO sending PrepareRequest {"height": 9839, "view": 0} -2023-12-16T14:53:06.095Z INFO sending Commit {"height": 9839, "view": 0} -2023-12-16T14:53:06.095Z INFO approving block {"height": 9839, "hash": "e0ca896adb24b9a1c094bc0cccfcf6003b6c422c9bee3cb4ad34864d8387a4c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8985c17acbdfb98c38301300f8f05edba7c1465c612b7b6ecec3e64e2b9c4cd8"} -2023-12-16T14:53:06.097Z INFO initializing dbft {"height": 9840, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:06.098Z debug frostfs-node/morph.go:229 new block {"index": 9839} -2023-12-16T14:53:06.380Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9839, "blockHeight": 9839, "took": "3.844192ms"} -2023-12-16T14:53:07.096Z INFO sending PrepareRequest {"height": 9840, "view": 0} -2023-12-16T14:53:07.096Z INFO sending Commit {"height": 9840, "view": 0} -2023-12-16T14:53:07.097Z INFO approving block {"height": 9840, "hash": "e4ff0114608c6d83d74b37b33b7cfb925f2a1132aee83b8a6ca9b3d8752df599", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e0ca896adb24b9a1c094bc0cccfcf6003b6c422c9bee3cb4ad34864d8387a4c7"} -2023-12-16T14:53:07.097Z INFO initializing dbft {"height": 9841, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:07.098Z debug frostfs-node/morph.go:229 new block {"index": 9840} -2023-12-16T14:53:07.380Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9840, "blockHeight": 9840, "took": "3.926205ms"} -2023-12-16T14:53:08.098Z INFO sending PrepareRequest {"height": 9841, "view": 0} -2023-12-16T14:53:08.098Z INFO sending Commit {"height": 9841, "view": 0} -2023-12-16T14:53:08.098Z INFO approving block {"height": 9841, "hash": "d81ed67ca9dc83b0fb8227f38abf17e1f82fd98320062e2b5b6db377382f3d91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4ff0114608c6d83d74b37b33b7cfb925f2a1132aee83b8a6ca9b3d8752df599"} -2023-12-16T14:53:08.099Z INFO initializing dbft {"height": 9842, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:08.099Z debug frostfs-node/morph.go:229 new block {"index": 9841} -2023-12-16T14:53:08.382Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9841, "blockHeight": 9841, "took": "5.049387ms"} -2023-12-16T14:53:09.099Z INFO sending PrepareRequest {"height": 9842, "view": 0} -2023-12-16T14:53:09.099Z INFO sending Commit {"height": 9842, "view": 0} -2023-12-16T14:53:09.099Z INFO approving block {"height": 9842, "hash": "2ffb81c28e5bed3a651bd19c167c2291925989978ac4f9b278c636f919690ae6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d81ed67ca9dc83b0fb8227f38abf17e1f82fd98320062e2b5b6db377382f3d91"} -2023-12-16T14:53:09.099Z INFO initializing dbft {"height": 9843, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:09.100Z debug frostfs-node/morph.go:229 new block {"index": 9842} -2023-12-16T14:53:09.381Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9842, "blockHeight": 9842, "took": "3.001537ms"} -2023-12-16T14:53:10.100Z INFO sending PrepareRequest {"height": 9843, "view": 0} -2023-12-16T14:53:10.100Z INFO sending Commit {"height": 9843, "view": 0} -2023-12-16T14:53:10.101Z INFO approving block {"height": 9843, "hash": "4fdb64731f9b515b281241dd3c896ddb696b677ad68034fc630c818d161aa62f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2ffb81c28e5bed3a651bd19c167c2291925989978ac4f9b278c636f919690ae6"} -2023-12-16T14:53:10.101Z INFO initializing dbft {"height": 9844, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:10.102Z debug frostfs-node/morph.go:229 new block {"index": 9843} -2023-12-16T14:53:10.385Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9843, "blockHeight": 9843, "took": "6.012492ms"} -2023-12-16T14:53:11.101Z INFO sending PrepareRequest {"height": 9844, "view": 0} -2023-12-16T14:53:11.102Z INFO sending Commit {"height": 9844, "view": 0} -2023-12-16T14:53:11.102Z INFO approving block {"height": 9844, "hash": "8b22d8955ff3b9565fb6090e3bb9e8309ba0f6a1c54a6de1c0875b1a3fe6c3bd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4fdb64731f9b515b281241dd3c896ddb696b677ad68034fc630c818d161aa62f"} -2023-12-16T14:53:11.104Z INFO initializing dbft {"height": 9845, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:11.104Z debug frostfs-node/morph.go:229 new block {"index": 9844} -2023-12-16T14:53:11.385Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9844, "blockHeight": 9844, "took": "5.356161ms"} -2023-12-16T14:53:12.103Z INFO sending PrepareRequest {"height": 9845, "view": 0} -2023-12-16T14:53:12.103Z INFO sending Commit {"height": 9845, "view": 0} -2023-12-16T14:53:12.104Z INFO approving block {"height": 9845, "hash": "6b5e6fe965a7f24cb95451a2797c640bd186a6f42468d6067793a6f190d028bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8b22d8955ff3b9565fb6090e3bb9e8309ba0f6a1c54a6de1c0875b1a3fe6c3bd"} -2023-12-16T14:53:12.105Z INFO initializing dbft {"height": 9846, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:12.105Z debug frostfs-node/morph.go:229 new block {"index": 9845} -2023-12-16T14:53:12.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9845, "blockHeight": 9845, "took": "4.194632ms"} -2023-12-16T14:53:13.104Z INFO sending PrepareRequest {"height": 9846, "view": 0} -2023-12-16T14:53:13.104Z INFO sending Commit {"height": 9846, "view": 0} -2023-12-16T14:53:13.105Z INFO approving block {"height": 9846, "hash": "7a65db0f8ea7c2eb2e0d75c5459bbca5ff3779510c84a91f06e9ccec5f3862b1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b5e6fe965a7f24cb95451a2797c640bd186a6f42468d6067793a6f190d028bf"} -2023-12-16T14:53:13.106Z INFO initializing dbft {"height": 9847, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:13.107Z debug frostfs-node/morph.go:229 new block {"index": 9846} -2023-12-16T14:53:13.384Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9846, "blockHeight": 9846, "took": "3.837682ms"} -2023-12-16T14:53:14.106Z INFO sending PrepareRequest {"height": 9847, "view": 0} -2023-12-16T14:53:14.106Z INFO sending Commit {"height": 9847, "view": 0} -2023-12-16T14:53:14.106Z INFO approving block {"height": 9847, "hash": "86c73aa7511c7a63e6fc6596e92bf45460c17b569c97aae057ed6a64dfccbd12", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7a65db0f8ea7c2eb2e0d75c5459bbca5ff3779510c84a91f06e9ccec5f3862b1"} -2023-12-16T14:53:14.107Z INFO initializing dbft {"height": 9848, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:14.107Z debug frostfs-node/morph.go:229 new block {"index": 9847} -2023-12-16T14:53:14.386Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9847, "blockHeight": 9847, "took": "4.864272ms"} -2023-12-16T14:53:15.108Z INFO sending PrepareRequest {"height": 9848, "view": 0} -2023-12-16T14:53:15.108Z INFO sending Commit {"height": 9848, "view": 0} -2023-12-16T14:53:15.108Z INFO approving block {"height": 9848, "hash": "30faeb48204ff9898f09eca88bfc9f32428d7238956fb6c356bf821a301eefee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "86c73aa7511c7a63e6fc6596e92bf45460c17b569c97aae057ed6a64dfccbd12"} -2023-12-16T14:53:15.109Z INFO initializing dbft {"height": 9849, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:15.109Z debug frostfs-node/morph.go:229 new block {"index": 9848} -2023-12-16T14:53:15.389Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9848, "blockHeight": 9848, "took": "7.256742ms"} -2023-12-16T14:53:16.109Z INFO sending PrepareRequest {"height": 9849, "view": 0} -2023-12-16T14:53:16.109Z INFO sending Commit {"height": 9849, "view": 0} -2023-12-16T14:53:16.109Z INFO approving block {"height": 9849, "hash": "40b49c14abee0911923c1257a7842e3e7fff46980c9a7e7828c703b81c933d47", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "30faeb48204ff9898f09eca88bfc9f32428d7238956fb6c356bf821a301eefee"} -2023-12-16T14:53:16.111Z INFO initializing dbft {"height": 9850, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:16.112Z debug frostfs-node/morph.go:229 new block {"index": 9849} -2023-12-16T14:53:16.391Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9849, "blockHeight": 9849, "took": "7.689799ms"} -2023-12-16T14:53:17.110Z INFO sending PrepareRequest {"height": 9850, "view": 0} -2023-12-16T14:53:17.110Z INFO sending Commit {"height": 9850, "view": 0} -2023-12-16T14:53:17.111Z INFO approving block {"height": 9850, "hash": "68e1c70a2949dbbf74b226182889db8b6b5cffe19d895bf53767ebb41c0c4f5a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40b49c14abee0911923c1257a7842e3e7fff46980c9a7e7828c703b81c933d47"} -2023-12-16T14:53:17.112Z INFO initializing dbft {"height": 9851, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:17.113Z debug frostfs-node/morph.go:229 new block {"index": 9850} -2023-12-16T14:53:17.115Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:53:17.119Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:53:17.119Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:53:17.388Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9850, "blockHeight": 9850, "took": "3.382729ms"} -2023-12-16T14:53:18.112Z INFO sending PrepareRequest {"height": 9851, "view": 0} -2023-12-16T14:53:18.112Z INFO sending Commit {"height": 9851, "view": 0} -2023-12-16T14:53:18.112Z INFO approving block {"height": 9851, "hash": "b2ac8634c04ca53090981eb6692583693f740005ada542c7c7b4c55f7711cd26", "tx_count": 2, "merkle": "d4d071cc58042d540a03d234080e658d9280f356439aed8b04446f6493992678", "prev": "68e1c70a2949dbbf74b226182889db8b6b5cffe19d895bf53767ebb41c0c4f5a"} -2023-12-16T14:53:18.113Z INFO runtime log {"tx": "cf75e7a874d80679866136ebfe07d48720b3bf0f6d40b63dd8feac52384dda31", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:53:18.113Z INFO runtime log {"tx": "cf75e7a874d80679866136ebfe07d48720b3bf0f6d40b63dd8feac52384dda31", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:53:18.115Z INFO initializing dbft {"height": 9852, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:18.116Z debug frostfs-node/morph.go:229 new block {"index": 9851} -2023-12-16T14:53:18.390Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9851, "blockHeight": 9851, "took": "5.752498ms"} -2023-12-16T14:53:19.113Z INFO sending PrepareRequest {"height": 9852, "view": 0} -2023-12-16T14:53:19.114Z INFO sending Commit {"height": 9852, "view": 0} -2023-12-16T14:53:19.114Z INFO approving block {"height": 9852, "hash": "d2ee573d90fcddaba21ab15ec16f6d3f3cc1d0dc26544d55a2e13085e0635017", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b2ac8634c04ca53090981eb6692583693f740005ada542c7c7b4c55f7711cd26"} -2023-12-16T14:53:19.115Z INFO initializing dbft {"height": 9853, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:19.115Z debug frostfs-node/morph.go:229 new block {"index": 9852} -2023-12-16T14:53:19.389Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9852, "blockHeight": 9852, "took": "3.618015ms"} -2023-12-16T14:53:20.115Z INFO sending PrepareRequest {"height": 9853, "view": 0} -2023-12-16T14:53:20.115Z INFO sending Commit {"height": 9853, "view": 0} -2023-12-16T14:53:20.115Z INFO approving block {"height": 9853, "hash": "734de9e5a335763e4410cb55106b19e38bb6e0998732e7828c6e6e4c75522ec1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d2ee573d90fcddaba21ab15ec16f6d3f3cc1d0dc26544d55a2e13085e0635017"} -2023-12-16T14:53:20.116Z INFO initializing dbft {"height": 9854, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:20.117Z debug frostfs-node/morph.go:229 new block {"index": 9853} -2023-12-16T14:53:20.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9853, "blockHeight": 9853, "took": "5.403767ms"} -2023-12-16T14:53:21.117Z INFO sending PrepareRequest {"height": 9854, "view": 0} -2023-12-16T14:53:21.117Z INFO sending Commit {"height": 9854, "view": 0} -2023-12-16T14:53:21.117Z INFO approving block {"height": 9854, "hash": "2e883a66671ab97a54fa1eeb14739c67eaa2b3da1a91c4cb76477ec9e607836a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "734de9e5a335763e4410cb55106b19e38bb6e0998732e7828c6e6e4c75522ec1"} -2023-12-16T14:53:21.118Z INFO initializing dbft {"height": 9855, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:21.119Z debug frostfs-node/morph.go:229 new block {"index": 9854} -2023-12-16T14:53:21.392Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9854, "blockHeight": 9854, "took": "5.149062ms"} -2023-12-16T14:53:22.119Z INFO sending PrepareRequest {"height": 9855, "view": 0} -2023-12-16T14:53:22.119Z INFO sending Commit {"height": 9855, "view": 0} -2023-12-16T14:53:22.120Z INFO approving block {"height": 9855, "hash": "5bd67398be5a93406a779eba7b94881cf73163c45abaa0807098ac4b05f7d796", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2e883a66671ab97a54fa1eeb14739c67eaa2b3da1a91c4cb76477ec9e607836a"} -2023-12-16T14:53:22.121Z INFO initializing dbft {"height": 9856, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:22.121Z debug frostfs-node/morph.go:229 new block {"index": 9855} -2023-12-16T14:53:22.394Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9855, "blockHeight": 9855, "took": "5.771189ms"} -2023-12-16T14:53:23.121Z INFO sending PrepareRequest {"height": 9856, "view": 0} -2023-12-16T14:53:23.121Z INFO sending Commit {"height": 9856, "view": 0} -2023-12-16T14:53:23.122Z INFO approving block {"height": 9856, "hash": "d669ab8c27ca5283e34789a2c1d19695695aec053a815038e04f2675baf3b847", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5bd67398be5a93406a779eba7b94881cf73163c45abaa0807098ac4b05f7d796"} -2023-12-16T14:53:23.123Z INFO initializing dbft {"height": 9857, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:23.124Z debug frostfs-node/morph.go:229 new block {"index": 9856} -2023-12-16T14:53:23.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9856, "blockHeight": 9856, "took": "5.510291ms"} -2023-12-16T14:53:24.123Z INFO sending PrepareRequest {"height": 9857, "view": 0} -2023-12-16T14:53:24.123Z INFO sending Commit {"height": 9857, "view": 0} -2023-12-16T14:53:24.123Z INFO approving block {"height": 9857, "hash": "1a24f2e49061c57f58fe8aae2f6f5950b291352e0fa3682e941d85c8c2d9835a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d669ab8c27ca5283e34789a2c1d19695695aec053a815038e04f2675baf3b847"} -2023-12-16T14:53:24.125Z INFO initializing dbft {"height": 9858, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:24.126Z debug frostfs-node/morph.go:229 new block {"index": 9857} -2023-12-16T14:53:24.393Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9857, "blockHeight": 9857, "took": "3.369539ms"} -2023-12-16T14:53:25.124Z INFO sending PrepareRequest {"height": 9858, "view": 0} -2023-12-16T14:53:25.124Z INFO sending Commit {"height": 9858, "view": 0} -2023-12-16T14:53:25.124Z INFO approving block {"height": 9858, "hash": "1634cce7b93d78678acd4541bda971acf15033966406af96d3e49d9f87361129", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a24f2e49061c57f58fe8aae2f6f5950b291352e0fa3682e941d85c8c2d9835a"} -2023-12-16T14:53:25.125Z INFO initializing dbft {"height": 9859, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:25.126Z debug frostfs-node/morph.go:229 new block {"index": 9858} -2023-12-16T14:53:25.394Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9858, "blockHeight": 9858, "took": "3.553124ms"} -2023-12-16T14:53:26.126Z INFO sending PrepareRequest {"height": 9859, "view": 0} -2023-12-16T14:53:26.126Z INFO sending Commit {"height": 9859, "view": 0} -2023-12-16T14:53:26.126Z INFO approving block {"height": 9859, "hash": "9b0511d0cba2da16a96d8d790ced63288fa68e51eed027f224206c9793bd91af", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1634cce7b93d78678acd4541bda971acf15033966406af96d3e49d9f87361129"} -2023-12-16T14:53:26.127Z INFO initializing dbft {"height": 9860, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:26.128Z debug frostfs-node/morph.go:229 new block {"index": 9859} -2023-12-16T14:53:26.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9859, "blockHeight": 9859, "took": "3.392349ms"} -2023-12-16T14:53:27.127Z INFO sending PrepareRequest {"height": 9860, "view": 0} -2023-12-16T14:53:27.127Z INFO sending Commit {"height": 9860, "view": 0} -2023-12-16T14:53:27.128Z INFO approving block {"height": 9860, "hash": "1095d6206cc54f1e3602746a544beacf301c7bc7a4aa7e422122cf037689e06e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9b0511d0cba2da16a96d8d790ced63288fa68e51eed027f224206c9793bd91af"} -2023-12-16T14:53:27.129Z INFO initializing dbft {"height": 9861, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:27.129Z debug frostfs-node/morph.go:229 new block {"index": 9860} -2023-12-16T14:53:27.395Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9860, "blockHeight": 9860, "took": "3.701848ms"} -2023-12-16T14:53:28.129Z INFO sending PrepareRequest {"height": 9861, "view": 0} -2023-12-16T14:53:28.129Z INFO sending Commit {"height": 9861, "view": 0} -2023-12-16T14:53:28.129Z INFO approving block {"height": 9861, "hash": "fd4ed74e6c7763121f8921b1f19cee0154eff0b6c1143ecd2e9082a9182ece73", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1095d6206cc54f1e3602746a544beacf301c7bc7a4aa7e422122cf037689e06e"} -2023-12-16T14:53:28.130Z INFO initializing dbft {"height": 9862, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:28.130Z debug frostfs-node/morph.go:229 new block {"index": 9861} -2023-12-16T14:53:28.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9861, "blockHeight": 9861, "took": "3.865364ms"} -2023-12-16T14:53:29.130Z INFO sending PrepareRequest {"height": 9862, "view": 0} -2023-12-16T14:53:29.130Z INFO sending Commit {"height": 9862, "view": 0} -2023-12-16T14:53:29.130Z INFO approving block {"height": 9862, "hash": "9f8f3912998e698fd9ea3f7d7d42a0a90556fcfae22bf680f1331815a7202ac2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fd4ed74e6c7763121f8921b1f19cee0154eff0b6c1143ecd2e9082a9182ece73"} -2023-12-16T14:53:29.131Z INFO initializing dbft {"height": 9863, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:29.132Z debug frostfs-node/morph.go:229 new block {"index": 9862} -2023-12-16T14:53:29.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9862, "blockHeight": 9862, "took": "3.961345ms"} -2023-12-16T14:53:30.131Z INFO sending PrepareRequest {"height": 9863, "view": 0} -2023-12-16T14:53:30.131Z INFO sending Commit {"height": 9863, "view": 0} -2023-12-16T14:53:30.132Z INFO approving block {"height": 9863, "hash": "4099fe3f851b46b6dbd40c735bec2b256d62dbb25cab09f0413dd7a6b3413457", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9f8f3912998e698fd9ea3f7d7d42a0a90556fcfae22bf680f1331815a7202ac2"} -2023-12-16T14:53:30.133Z INFO initializing dbft {"height": 9864, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:30.133Z debug frostfs-node/morph.go:229 new block {"index": 9863} -2023-12-16T14:53:30.396Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9863, "blockHeight": 9863, "took": "3.678997ms"} -2023-12-16T14:53:31.132Z INFO sending PrepareRequest {"height": 9864, "view": 0} -2023-12-16T14:53:31.132Z INFO sending Commit {"height": 9864, "view": 0} -2023-12-16T14:53:31.133Z INFO approving block {"height": 9864, "hash": "3c4efa667f44a514a9e01a10943190f4c866a9dc512f447c4d0bf663dafc2779", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4099fe3f851b46b6dbd40c735bec2b256d62dbb25cab09f0413dd7a6b3413457"} -2023-12-16T14:53:31.134Z INFO initializing dbft {"height": 9865, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:31.134Z debug frostfs-node/morph.go:229 new block {"index": 9864} -2023-12-16T14:53:31.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9864, "blockHeight": 9864, "took": "6.113962ms"} -2023-12-16T14:53:32.133Z INFO sending PrepareRequest {"height": 9865, "view": 0} -2023-12-16T14:53:32.134Z INFO sending Commit {"height": 9865, "view": 0} -2023-12-16T14:53:32.134Z INFO approving block {"height": 9865, "hash": "f60fbd2fdb6c94f6abccc17a952a3596ba7c8663f047c61ff4f6da8e9debc39f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3c4efa667f44a514a9e01a10943190f4c866a9dc512f447c4d0bf663dafc2779"} -2023-12-16T14:53:32.135Z INFO initializing dbft {"height": 9866, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:32.135Z debug frostfs-node/morph.go:229 new block {"index": 9865} -2023-12-16T14:53:32.398Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9865, "blockHeight": 9865, "took": "4.72532ms"} -2023-12-16T14:53:33.135Z INFO sending PrepareRequest {"height": 9866, "view": 0} -2023-12-16T14:53:33.135Z INFO sending Commit {"height": 9866, "view": 0} -2023-12-16T14:53:33.136Z INFO approving block {"height": 9866, "hash": "61208a012ecef54967a7dc1465ed549da3bea52487c5ba67bd43ddd12e8ada0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f60fbd2fdb6c94f6abccc17a952a3596ba7c8663f047c61ff4f6da8e9debc39f"} -2023-12-16T14:53:33.137Z INFO initializing dbft {"height": 9867, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:33.137Z debug frostfs-node/morph.go:229 new block {"index": 9866} -2023-12-16T14:53:33.397Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9866, "blockHeight": 9866, "took": "3.286868ms"} -2023-12-16T14:53:34.137Z INFO sending PrepareRequest {"height": 9867, "view": 0} -2023-12-16T14:53:34.137Z INFO sending Commit {"height": 9867, "view": 0} -2023-12-16T14:53:34.137Z INFO approving block {"height": 9867, "hash": "e64ed06e7654e82be7df21213fe71f902f205b87b536e2d18160b177478f4935", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "61208a012ecef54967a7dc1465ed549da3bea52487c5ba67bd43ddd12e8ada0e"} -2023-12-16T14:53:34.138Z INFO initializing dbft {"height": 9868, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:34.139Z debug frostfs-node/morph.go:229 new block {"index": 9867} -2023-12-16T14:53:34.398Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9867, "blockHeight": 9867, "took": "3.09504ms"} -2023-12-16T14:53:35.138Z INFO sending PrepareRequest {"height": 9868, "view": 0} -2023-12-16T14:53:35.138Z INFO sending Commit {"height": 9868, "view": 0} -2023-12-16T14:53:35.139Z INFO approving block {"height": 9868, "hash": "b5aeb17f7853bf1d8710735b98bba0710268126446dfac577ee79fa254ae9f27", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e64ed06e7654e82be7df21213fe71f902f205b87b536e2d18160b177478f4935"} -2023-12-16T14:53:35.140Z INFO initializing dbft {"height": 9869, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:35.141Z debug frostfs-node/morph.go:229 new block {"index": 9868} -2023-12-16T14:53:35.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9868, "blockHeight": 9868, "took": "4.446919ms"} -2023-12-16T14:53:36.139Z INFO sending PrepareRequest {"height": 9869, "view": 0} -2023-12-16T14:53:36.140Z INFO sending Commit {"height": 9869, "view": 0} -2023-12-16T14:53:36.140Z INFO approving block {"height": 9869, "hash": "08e98352380237fb22510330aef2281962a7ee6271ba6bac9b8bd122d3ce63d3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5aeb17f7853bf1d8710735b98bba0710268126446dfac577ee79fa254ae9f27"} -2023-12-16T14:53:36.141Z INFO initializing dbft {"height": 9870, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:36.142Z debug frostfs-node/morph.go:229 new block {"index": 9869} -2023-12-16T14:53:36.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9869, "blockHeight": 9869, "took": "3.862931ms"} -2023-12-16T14:53:37.141Z INFO sending PrepareRequest {"height": 9870, "view": 0} -2023-12-16T14:53:37.141Z INFO sending Commit {"height": 9870, "view": 0} -2023-12-16T14:53:37.141Z INFO approving block {"height": 9870, "hash": "47aa008ee9e21fd10722d06a6a83ffedde7a959e0d334206c2cd774606ee7de3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "08e98352380237fb22510330aef2281962a7ee6271ba6bac9b8bd122d3ce63d3"} -2023-12-16T14:53:37.143Z INFO initializing dbft {"height": 9871, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:37.143Z debug frostfs-node/morph.go:229 new block {"index": 9870} -2023-12-16T14:53:37.399Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9870, "blockHeight": 9870, "took": "3.493222ms"} -2023-12-16T14:53:38.142Z INFO sending PrepareRequest {"height": 9871, "view": 0} -2023-12-16T14:53:38.142Z INFO sending Commit {"height": 9871, "view": 0} -2023-12-16T14:53:38.142Z INFO approving block {"height": 9871, "hash": "f551d0f737f9ddc9d750d1806d35878a242d16942eadd6e16e1a58b8f268c419", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "47aa008ee9e21fd10722d06a6a83ffedde7a959e0d334206c2cd774606ee7de3"} -2023-12-16T14:53:38.143Z INFO initializing dbft {"height": 9872, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:38.143Z debug frostfs-node/morph.go:229 new block {"index": 9871} -2023-12-16T14:53:38.400Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9871, "blockHeight": 9871, "took": "4.286946ms"} -2023-12-16T14:53:39.143Z INFO sending PrepareRequest {"height": 9872, "view": 0} -2023-12-16T14:53:39.143Z INFO sending Commit {"height": 9872, "view": 0} -2023-12-16T14:53:39.144Z INFO approving block {"height": 9872, "hash": "cba72768676a364e3eafb012e2874772fc68c65ae90773001a99e2ca3acc0720", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f551d0f737f9ddc9d750d1806d35878a242d16942eadd6e16e1a58b8f268c419"} -2023-12-16T14:53:39.145Z INFO initializing dbft {"height": 9873, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:39.146Z debug frostfs-node/morph.go:229 new block {"index": 9872} -2023-12-16T14:53:39.401Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9872, "blockHeight": 9872, "took": "3.67662ms"} -2023-12-16T14:53:40.145Z INFO sending PrepareRequest {"height": 9873, "view": 0} -2023-12-16T14:53:40.145Z INFO sending Commit {"height": 9873, "view": 0} -2023-12-16T14:53:40.145Z INFO approving block {"height": 9873, "hash": "b017b000c364f163c08c51316627a702eb9c09a62d6f5b5c65b4945f07fbcf69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cba72768676a364e3eafb012e2874772fc68c65ae90773001a99e2ca3acc0720"} -2023-12-16T14:53:40.147Z INFO initializing dbft {"height": 9874, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:40.147Z debug frostfs-node/morph.go:229 new block {"index": 9873} -2023-12-16T14:53:40.406Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9873, "blockHeight": 9873, "took": "7.773598ms"} -2023-12-16T14:53:41.146Z INFO sending PrepareRequest {"height": 9874, "view": 0} -2023-12-16T14:53:41.146Z INFO sending Commit {"height": 9874, "view": 0} -2023-12-16T14:53:41.147Z INFO approving block {"height": 9874, "hash": "6ade7ec91659085f3441ec4624004a30b8e3745bfd679b02c3dcd317040e88fb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b017b000c364f163c08c51316627a702eb9c09a62d6f5b5c65b4945f07fbcf69"} -2023-12-16T14:53:41.148Z INFO initializing dbft {"height": 9875, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:41.148Z debug frostfs-node/morph.go:229 new block {"index": 9874} -2023-12-16T14:53:41.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9874, "blockHeight": 9874, "took": "6.445758ms"} -2023-12-16T14:53:42.148Z INFO sending PrepareRequest {"height": 9875, "view": 0} -2023-12-16T14:53:42.148Z INFO sending Commit {"height": 9875, "view": 0} -2023-12-16T14:53:42.148Z INFO approving block {"height": 9875, "hash": "c0022b9d9592ef8e8e891a7ef292149fc33df565fed974e31740026ac3aa93c9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ade7ec91659085f3441ec4624004a30b8e3745bfd679b02c3dcd317040e88fb"} -2023-12-16T14:53:42.150Z INFO initializing dbft {"height": 9876, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:42.150Z debug frostfs-node/morph.go:229 new block {"index": 9875} -2023-12-16T14:53:42.404Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9875, "blockHeight": 9875, "took": "5.207867ms"} -2023-12-16T14:53:43.149Z INFO sending PrepareRequest {"height": 9876, "view": 0} -2023-12-16T14:53:43.149Z INFO sending Commit {"height": 9876, "view": 0} -2023-12-16T14:53:43.150Z INFO approving block {"height": 9876, "hash": "8054ebaff9a279bd7f17370b887486f1686c1f0cb78a4711ee08fd461cfdf475", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0022b9d9592ef8e8e891a7ef292149fc33df565fed974e31740026ac3aa93c9"} -2023-12-16T14:53:43.151Z INFO initializing dbft {"height": 9877, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:43.151Z debug frostfs-node/morph.go:229 new block {"index": 9876} -2023-12-16T14:53:43.403Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9876, "blockHeight": 9876, "took": "4.335264ms"} -2023-12-16T14:53:44.150Z INFO sending PrepareRequest {"height": 9877, "view": 0} -2023-12-16T14:53:44.151Z INFO sending Commit {"height": 9877, "view": 0} -2023-12-16T14:53:44.151Z INFO approving block {"height": 9877, "hash": "3963372072cf882f0a75ccdda94d8783fd3dd96c676449ba5e90fc45617d6ebe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8054ebaff9a279bd7f17370b887486f1686c1f0cb78a4711ee08fd461cfdf475"} -2023-12-16T14:53:44.152Z INFO initializing dbft {"height": 9878, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:44.153Z debug frostfs-node/morph.go:229 new block {"index": 9877} -2023-12-16T14:53:44.404Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9877, "blockHeight": 9877, "took": "4.180903ms"} -2023-12-16T14:53:45.152Z INFO sending PrepareRequest {"height": 9878, "view": 0} -2023-12-16T14:53:45.152Z INFO sending Commit {"height": 9878, "view": 0} -2023-12-16T14:53:45.153Z INFO approving block {"height": 9878, "hash": "e74ed08d422b4a2822c5cfbfced748c1dcdcf4d60d6301a87503574a46912689", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3963372072cf882f0a75ccdda94d8783fd3dd96c676449ba5e90fc45617d6ebe"} -2023-12-16T14:53:45.155Z INFO initializing dbft {"height": 9879, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:45.155Z debug frostfs-node/morph.go:229 new block {"index": 9878} -2023-12-16T14:53:45.404Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9878, "blockHeight": 9878, "took": "3.871022ms"} -2023-12-16T14:53:46.154Z INFO sending PrepareRequest {"height": 9879, "view": 0} -2023-12-16T14:53:46.154Z INFO sending Commit {"height": 9879, "view": 0} -2023-12-16T14:53:46.154Z INFO approving block {"height": 9879, "hash": "911b94e7892f3061e09646147a2cb8987a2c88fb19d1b134487eb4483c494ebd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e74ed08d422b4a2822c5cfbfced748c1dcdcf4d60d6301a87503574a46912689"} -2023-12-16T14:53:46.155Z INFO initializing dbft {"height": 9880, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:46.155Z debug frostfs-node/morph.go:229 new block {"index": 9879} -2023-12-16T14:53:46.158Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:53:46.159Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 41, "iteration": 3, "error": "no data for 2 iteration in 41 epoch for consumers's trusts"} -2023-12-16T14:53:46.161Z INFO runtime log {"tx": "f9efd6a73de7cf66ca691e0d656fc3aeb9595de767e5ddf82cb9f04320b6c471", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:53:46.405Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9879, "blockHeight": 9879, "took": "4.722928ms"} -2023-12-16T14:53:47.155Z INFO sending PrepareRequest {"height": 9880, "view": 0} -2023-12-16T14:53:47.155Z INFO sending Commit {"height": 9880, "view": 0} -2023-12-16T14:53:47.156Z INFO approving block {"height": 9880, "hash": "1d69d1bce7506a06133949df25bdc81a4692ba858501af6c4c72b855dceeebb7", "tx_count": 1, "merkle": "ae019b00e1faafa32aef8dd52ad478c26697164d98567a4b6edb8b66304064f3", "prev": "911b94e7892f3061e09646147a2cb8987a2c88fb19d1b134487eb4483c494ebd"} -2023-12-16T14:53:47.157Z INFO runtime log {"tx": "f3644030668bdb6e4b7a56984d169766c278d42ad58def2aa3affae1009b01ae", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:53:47.158Z INFO initializing dbft {"height": 9881, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:47.159Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 43} -2023-12-16T14:53:47.159Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 43} -2023-12-16T14:53:47.159Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:53:47.159Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:53:47.159Z info frostfs-node/config.go:974 bootstrapping with online state {"previous": "ONLINE"} -2023-12-16T14:53:47.159Z debug controller/calls.go:95 starting to report local trust values {"epoch": 42} -2023-12-16T14:53:47.159Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 42} -2023-12-16T14:53:47.159Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 43} -2023-12-16T14:53:47.159Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 43} -2023-12-16T14:53:47.160Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 43} -2023-12-16T14:53:47.160Z debug frostfs-node/morph.go:229 new block {"index": 9880} -2023-12-16T14:53:47.163Z debug controller/calls.go:146 reporting successfully finished {"epoch": 42} -2023-12-16T14:53:47.163Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 42} -2023-12-16T14:53:47.164Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:53:47.165Z INFO runtime log {"tx": "b0a330987c6aa5c7228a5ff251fa5872bba543b32aa4ed3f9fd9f0ff081b12b8", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:53:47.168Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9883, "tx_hash": "dfd22289dfb080e29d8101cf7c9c9f07fe9d909f05700bc7dcbf241bc75c90f3"} -2023-12-16T14:53:47.172Z debug client/notary.go:497 notary request invoked {"method": "addPeer", "valid_until_block": 10000, "fallback_valid_for": 40, "tx_hash": "8c6b412f54139d206590ead3ebddb084b2b7eb459f2b63f889aa90b113624485"} -2023-12-16T14:53:47.174Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:53:47.174Z info audit/handlers.go:13 new round of audit {"epoch": 43} -2023-12-16T14:53:47.174Z info settlement/calls.go:26 new audit settlement event {"epoch": 43} -2023-12-16T14:53:47.174Z info settlement/handlers.go:14 process audit settlements {"epoch": 43} -2023-12-16T14:53:47.174Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 43} -2023-12-16T14:53:47.174Z info netmap/handlers.go:48 notification {"type": "add peer"} -2023-12-16T14:53:47.176Z info settlement/handlers.go:18 audit processing finished {"epoch": 43} -2023-12-16T14:53:47.177Z info audit/process.go:39 select containers for audit {"epoch": 43, "amount": 0} -2023-12-16T14:53:47.179Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 9883, "tx_hash": "b9042e1c0a775d3390a2615966db2597a1529349ec897cad8f53c24e0cefe009"} -2023-12-16T14:53:47.409Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 9880, "blockHeight": 9880, "took": "7.575761ms"} -2023-12-16T14:53:48.157Z INFO sending PrepareRequest {"height": 9881, "view": 0} -2023-12-16T14:53:48.157Z INFO sending Commit {"height": 9881, "view": 0} -2023-12-16T14:53:48.158Z INFO approving block {"height": 9881, "hash": "f22e4111a4f432a152427d6bb00003ec34fe214997439317e67e8b915f29f002", "tx_count": 3, "merkle": "0fb31372580dc7043a8e97b9b6e922ab1941e64ca093147bdbf806bfe4a16e69", "prev": "1d69d1bce7506a06133949df25bdc81a4692ba858501af6c4c72b855dceeebb7"} -2023-12-16T14:53:48.158Z INFO runtime log {"tx": "b23d595d84035764b3738413002e209754cc3ee71ad3758ab5ce87f827a430bc", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:53:48.159Z INFO initializing dbft {"height": 9882, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:48.160Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 42} -2023-12-16T14:53:48.160Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 42} -2023-12-16T14:53:48.160Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 42} -2023-12-16T14:53:48.160Z debug frostfs-node/morph.go:229 new block {"index": 9881} -2023-12-16T14:53:48.410Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 9881, "blockHeight": 9881, "took": "7.368609ms"} -2023-12-16T14:53:49.159Z INFO sending PrepareRequest {"height": 9882, "view": 0} -2023-12-16T14:53:49.159Z INFO sending Commit {"height": 9882, "view": 0} -2023-12-16T14:53:49.159Z INFO approving block {"height": 9882, "hash": "71a2a8385f33306f03297a80b31964c89e2ee80ecbe8f36f8794675fb63f0949", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f22e4111a4f432a152427d6bb00003ec34fe214997439317e67e8b915f29f002"} -2023-12-16T14:53:49.160Z INFO initializing dbft {"height": 9883, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:49.161Z debug frostfs-node/morph.go:229 new block {"index": 9882} -2023-12-16T14:53:49.411Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9882, "blockHeight": 9882, "took": "8.073065ms"} -2023-12-16T14:53:50.160Z INFO sending PrepareRequest {"height": 9883, "view": 0} -2023-12-16T14:53:50.160Z INFO sending Commit {"height": 9883, "view": 0} -2023-12-16T14:53:50.160Z INFO approving block {"height": 9883, "hash": "a5395bb49fbcfe7e3da606c1921161ebc01136371244ecc8c21860ee9097ea8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71a2a8385f33306f03297a80b31964c89e2ee80ecbe8f36f8794675fb63f0949"} -2023-12-16T14:53:50.161Z INFO initializing dbft {"height": 9884, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:50.161Z debug frostfs-node/morph.go:229 new block {"index": 9883} -2023-12-16T14:53:50.408Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9883, "blockHeight": 9883, "took": "3.660312ms"} -2023-12-16T14:53:51.161Z INFO sending PrepareRequest {"height": 9884, "view": 0} -2023-12-16T14:53:51.161Z INFO sending Commit {"height": 9884, "view": 0} -2023-12-16T14:53:51.162Z INFO approving block {"height": 9884, "hash": "1e0705c99d0b49a97c8f7c5fb8a6e4874048d99b0751d758c98457dee3654667", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a5395bb49fbcfe7e3da606c1921161ebc01136371244ecc8c21860ee9097ea8a"} -2023-12-16T14:53:51.163Z INFO initializing dbft {"height": 9885, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:51.164Z debug frostfs-node/morph.go:229 new block {"index": 9884} -2023-12-16T14:53:51.409Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9884, "blockHeight": 9884, "took": "4.104004ms"} -2023-12-16T14:53:52.163Z INFO sending PrepareRequest {"height": 9885, "view": 0} -2023-12-16T14:53:52.163Z INFO sending Commit {"height": 9885, "view": 0} -2023-12-16T14:53:52.163Z INFO approving block {"height": 9885, "hash": "cd52ce0fb18159525f2103d3d82a83866e1f66b8e23d37e00ad47303825c7158", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e0705c99d0b49a97c8f7c5fb8a6e4874048d99b0751d758c98457dee3654667"} -2023-12-16T14:53:52.164Z INFO initializing dbft {"height": 9886, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:52.165Z debug frostfs-node/morph.go:229 new block {"index": 9885} -2023-12-16T14:53:52.410Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9885, "blockHeight": 9885, "took": "3.433681ms"} -2023-12-16T14:53:53.164Z INFO sending PrepareRequest {"height": 9886, "view": 0} -2023-12-16T14:53:53.164Z INFO sending Commit {"height": 9886, "view": 0} -2023-12-16T14:53:53.165Z INFO approving block {"height": 9886, "hash": "21894021c839a767f34f25a2dab2a018e814703ad0ae2a67e9642df505cc65c0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd52ce0fb18159525f2103d3d82a83866e1f66b8e23d37e00ad47303825c7158"} -2023-12-16T14:53:53.166Z INFO initializing dbft {"height": 9887, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:53.167Z debug frostfs-node/morph.go:229 new block {"index": 9886} -2023-12-16T14:53:53.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9886, "blockHeight": 9886, "took": "4.859947ms"} -2023-12-16T14:53:54.166Z INFO sending PrepareRequest {"height": 9887, "view": 0} -2023-12-16T14:53:54.166Z INFO sending Commit {"height": 9887, "view": 0} -2023-12-16T14:53:54.166Z INFO approving block {"height": 9887, "hash": "c9ee05a7f6968e36f09e03e3a1842caca201627d8cd76146e49c39de25a0b9f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "21894021c839a767f34f25a2dab2a018e814703ad0ae2a67e9642df505cc65c0"} -2023-12-16T14:53:54.167Z INFO initializing dbft {"height": 9888, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:54.168Z debug frostfs-node/morph.go:229 new block {"index": 9887} -2023-12-16T14:53:54.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9887, "blockHeight": 9887, "took": "4.535662ms"} -2023-12-16T14:53:55.167Z INFO sending PrepareRequest {"height": 9888, "view": 0} -2023-12-16T14:53:55.167Z INFO sending Commit {"height": 9888, "view": 0} -2023-12-16T14:53:55.167Z INFO approving block {"height": 9888, "hash": "7f466d0d66c5a6eddd75173fd5345cd7bedcbd0060d7180ead33724c3f9025f1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9ee05a7f6968e36f09e03e3a1842caca201627d8cd76146e49c39de25a0b9f9"} -2023-12-16T14:53:55.168Z INFO initializing dbft {"height": 9889, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:55.169Z debug frostfs-node/morph.go:229 new block {"index": 9888} -2023-12-16T14:53:55.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9888, "blockHeight": 9888, "took": "4.048817ms"} -2023-12-16T14:53:56.168Z INFO sending PrepareRequest {"height": 9889, "view": 0} -2023-12-16T14:53:56.168Z INFO sending Commit {"height": 9889, "view": 0} -2023-12-16T14:53:56.168Z INFO approving block {"height": 9889, "hash": "d1c84dccfc4db336590010a0afd30fd9c538814ed70e9413ebb61e37c2bda60b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7f466d0d66c5a6eddd75173fd5345cd7bedcbd0060d7180ead33724c3f9025f1"} -2023-12-16T14:53:56.170Z INFO initializing dbft {"height": 9890, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:56.170Z debug frostfs-node/morph.go:229 new block {"index": 9889} -2023-12-16T14:53:56.412Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9889, "blockHeight": 9889, "took": "3.594195ms"} -2023-12-16T14:53:57.169Z INFO sending PrepareRequest {"height": 9890, "view": 0} -2023-12-16T14:53:57.169Z INFO sending Commit {"height": 9890, "view": 0} -2023-12-16T14:53:57.170Z INFO approving block {"height": 9890, "hash": "5b9d09d12bd0a9a78cb393933cf0a77de265f258050140e43ca559a802b3071d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d1c84dccfc4db336590010a0afd30fd9c538814ed70e9413ebb61e37c2bda60b"} -2023-12-16T14:53:57.171Z INFO initializing dbft {"height": 9891, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:57.171Z debug frostfs-node/morph.go:229 new block {"index": 9890} -2023-12-16T14:53:57.414Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9890, "blockHeight": 9890, "took": "4.247061ms"} -2023-12-16T14:53:58.171Z INFO sending PrepareRequest {"height": 9891, "view": 0} -2023-12-16T14:53:58.171Z INFO sending Commit {"height": 9891, "view": 0} -2023-12-16T14:53:58.171Z INFO approving block {"height": 9891, "hash": "c671ce5bbda868ac281135a169f98ddf1f8a9e8854b2e0c8dae4f1c48afeec25", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b9d09d12bd0a9a78cb393933cf0a77de265f258050140e43ca559a802b3071d"} -2023-12-16T14:53:58.172Z INFO initializing dbft {"height": 9892, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:58.173Z debug frostfs-node/morph.go:229 new block {"index": 9891} -2023-12-16T14:53:58.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9891, "blockHeight": 9891, "took": "5.371405ms"} -2023-12-16T14:53:59.172Z INFO sending PrepareRequest {"height": 9892, "view": 0} -2023-12-16T14:53:59.172Z INFO sending Commit {"height": 9892, "view": 0} -2023-12-16T14:53:59.172Z INFO approving block {"height": 9892, "hash": "3d69d5e68abd6aa0c615ae6acea03c65e4a371b9f2f565d9b981e27b1f54c105", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c671ce5bbda868ac281135a169f98ddf1f8a9e8854b2e0c8dae4f1c48afeec25"} -2023-12-16T14:53:59.173Z INFO initializing dbft {"height": 9893, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:53:59.174Z debug frostfs-node/morph.go:229 new block {"index": 9892} -2023-12-16T14:53:59.414Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9892, "blockHeight": 9892, "took": "3.41792ms"} -2023-12-16T14:54:00.173Z INFO sending PrepareRequest {"height": 9893, "view": 0} -2023-12-16T14:54:00.173Z INFO sending Commit {"height": 9893, "view": 0} -2023-12-16T14:54:00.174Z INFO approving block {"height": 9893, "hash": "18d3449c73ca58bf3b421cb70fca682c4f4efa8eb523762f229598f34bb4b14e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d69d5e68abd6aa0c615ae6acea03c65e4a371b9f2f565d9b981e27b1f54c105"} -2023-12-16T14:54:00.175Z INFO initializing dbft {"height": 9894, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:00.175Z debug frostfs-node/morph.go:229 new block {"index": 9893} -2023-12-16T14:54:00.415Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9893, "blockHeight": 9893, "took": "3.806671ms"} -2023-12-16T14:54:01.175Z INFO sending PrepareRequest {"height": 9894, "view": 0} -2023-12-16T14:54:01.175Z INFO sending Commit {"height": 9894, "view": 0} -2023-12-16T14:54:01.175Z INFO approving block {"height": 9894, "hash": "225b8a5c265348934d44474c112377604f43a1df515f0fe33fbbded6a8231ea8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "18d3449c73ca58bf3b421cb70fca682c4f4efa8eb523762f229598f34bb4b14e"} -2023-12-16T14:54:01.176Z INFO initializing dbft {"height": 9895, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:01.176Z debug frostfs-node/morph.go:229 new block {"index": 9894} -2023-12-16T14:54:01.416Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9894, "blockHeight": 9894, "took": "4.449969ms"} -2023-12-16T14:54:02.176Z INFO sending PrepareRequest {"height": 9895, "view": 0} -2023-12-16T14:54:02.176Z INFO sending Commit {"height": 9895, "view": 0} -2023-12-16T14:54:02.177Z INFO approving block {"height": 9895, "hash": "7776ea37c4dd4d262e4a110ef7fc260b556eb5c1abd23ddd7c95e6d78881a698", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "225b8a5c265348934d44474c112377604f43a1df515f0fe33fbbded6a8231ea8"} -2023-12-16T14:54:02.178Z INFO initializing dbft {"height": 9896, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:02.179Z debug frostfs-node/morph.go:229 new block {"index": 9895} -2023-12-16T14:54:02.417Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9895, "blockHeight": 9895, "took": "3.78027ms"} -2023-12-16T14:54:03.178Z INFO sending PrepareRequest {"height": 9896, "view": 0} -2023-12-16T14:54:03.178Z INFO sending Commit {"height": 9896, "view": 0} -2023-12-16T14:54:03.178Z INFO approving block {"height": 9896, "hash": "a631273f497d5dcd9d1fd22f504713f8539fc9d5f804efd8cbd085c678e4f5ed", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7776ea37c4dd4d262e4a110ef7fc260b556eb5c1abd23ddd7c95e6d78881a698"} -2023-12-16T14:54:03.179Z INFO initializing dbft {"height": 9897, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:03.180Z debug frostfs-node/morph.go:229 new block {"index": 9896} -2023-12-16T14:54:03.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9896, "blockHeight": 9896, "took": "5.795951ms"} -2023-12-16T14:54:04.179Z INFO sending PrepareRequest {"height": 9897, "view": 0} -2023-12-16T14:54:04.180Z INFO sending Commit {"height": 9897, "view": 0} -2023-12-16T14:54:04.180Z INFO approving block {"height": 9897, "hash": "03d53a4e7a767c7f2f7b9021a48d909532998e6a6b4c92febefe550d87e0015d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a631273f497d5dcd9d1fd22f504713f8539fc9d5f804efd8cbd085c678e4f5ed"} -2023-12-16T14:54:04.181Z INFO initializing dbft {"height": 9898, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:04.182Z debug frostfs-node/morph.go:229 new block {"index": 9897} -2023-12-16T14:54:04.418Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9897, "blockHeight": 9897, "took": "3.170283ms"} -2023-12-16T14:54:05.181Z INFO sending PrepareRequest {"height": 9898, "view": 0} -2023-12-16T14:54:05.181Z INFO sending Commit {"height": 9898, "view": 0} -2023-12-16T14:54:05.181Z INFO approving block {"height": 9898, "hash": "02c81e3e2d2eca2b398e01658ccab18701f0eb6350e77f89581d2e0267746708", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "03d53a4e7a767c7f2f7b9021a48d909532998e6a6b4c92febefe550d87e0015d"} -2023-12-16T14:54:05.182Z INFO initializing dbft {"height": 9899, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:05.183Z debug frostfs-node/morph.go:229 new block {"index": 9898} -2023-12-16T14:54:05.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9898, "blockHeight": 9898, "took": "3.781941ms"} -2023-12-16T14:54:06.182Z INFO sending PrepareRequest {"height": 9899, "view": 0} -2023-12-16T14:54:06.183Z INFO sending Commit {"height": 9899, "view": 0} -2023-12-16T14:54:06.183Z INFO approving block {"height": 9899, "hash": "e4efdd570179c8a96cebe2a1cbf6c7a14e10c705691d59f9679765b3a35739c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02c81e3e2d2eca2b398e01658ccab18701f0eb6350e77f89581d2e0267746708"} -2023-12-16T14:54:06.185Z INFO initializing dbft {"height": 9900, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:06.186Z debug frostfs-node/morph.go:229 new block {"index": 9899} -2023-12-16T14:54:06.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9899, "blockHeight": 9899, "took": "3.671787ms"} -2023-12-16T14:54:07.185Z INFO sending PrepareRequest {"height": 9900, "view": 0} -2023-12-16T14:54:07.185Z INFO sending Commit {"height": 9900, "view": 0} -2023-12-16T14:54:07.185Z INFO approving block {"height": 9900, "hash": "480c25183c6b8f61544cbf7d020d5ffc2460e61e194db91861435798f9b2ad37", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4efdd570179c8a96cebe2a1cbf6c7a14e10c705691d59f9679765b3a35739c7"} -2023-12-16T14:54:07.187Z INFO initializing dbft {"height": 9901, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:07.187Z debug frostfs-node/morph.go:229 new block {"index": 9900} -2023-12-16T14:54:07.189Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:54:07.192Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:54:07.192Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:54:07.419Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9900, "blockHeight": 9900, "took": "3.206433ms"} -2023-12-16T14:54:08.186Z INFO sending PrepareRequest {"height": 9901, "view": 0} -2023-12-16T14:54:08.186Z INFO sending Commit {"height": 9901, "view": 0} -2023-12-16T14:54:08.187Z INFO approving block {"height": 9901, "hash": "ed1fce7a687a4a580a371370466c3ea9febeaa70b3c55e8fd7bb38b8798d2b7a", "tx_count": 2, "merkle": "ebabbe18bdf105ae5656bde8232fa0effbedfb7857679da6d914ba860a0047b8", "prev": "480c25183c6b8f61544cbf7d020d5ffc2460e61e194db91861435798f9b2ad37"} -2023-12-16T14:54:08.187Z INFO runtime log {"tx": "fb703a24bc33110085cae6949649bd1fa7524d97e3bb6c3cd424405e65a876de", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:54:08.187Z INFO runtime log {"tx": "fb703a24bc33110085cae6949649bd1fa7524d97e3bb6c3cd424405e65a876de", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:54:08.188Z INFO initializing dbft {"height": 9902, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:08.189Z debug frostfs-node/morph.go:229 new block {"index": 9901} -2023-12-16T14:54:08.427Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9901, "blockHeight": 9901, "took": "10.55844ms"} -2023-12-16T14:54:09.188Z INFO sending PrepareRequest {"height": 9902, "view": 0} -2023-12-16T14:54:09.188Z INFO sending Commit {"height": 9902, "view": 0} -2023-12-16T14:54:09.189Z INFO approving block {"height": 9902, "hash": "4a6e976e60e26905026994f9b1be4cfe52f6b72f1726d7a15a5879ab965f9551", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed1fce7a687a4a580a371370466c3ea9febeaa70b3c55e8fd7bb38b8798d2b7a"} -2023-12-16T14:54:09.190Z INFO initializing dbft {"height": 9903, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:09.191Z debug frostfs-node/morph.go:229 new block {"index": 9902} -2023-12-16T14:54:09.420Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9902, "blockHeight": 9902, "took": "3.45147ms"} -2023-12-16T14:54:10.189Z INFO sending PrepareRequest {"height": 9903, "view": 0} -2023-12-16T14:54:10.189Z INFO sending Commit {"height": 9903, "view": 0} -2023-12-16T14:54:10.190Z INFO approving block {"height": 9903, "hash": "2b351953663a7b8cbc8721078beb9c319197a22d36368f29a26f80d8744fce39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4a6e976e60e26905026994f9b1be4cfe52f6b72f1726d7a15a5879ab965f9551"} -2023-12-16T14:54:10.191Z INFO initializing dbft {"height": 9904, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:10.191Z debug frostfs-node/morph.go:229 new block {"index": 9903} -2023-12-16T14:54:10.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9903, "blockHeight": 9903, "took": "5.739447ms"} -2023-12-16T14:54:11.191Z INFO sending PrepareRequest {"height": 9904, "view": 0} -2023-12-16T14:54:11.191Z INFO sending Commit {"height": 9904, "view": 0} -2023-12-16T14:54:11.191Z INFO approving block {"height": 9904, "hash": "d6eea8e42e8f90fa39d0b238bfc2e5abba0d55a9ffcaf08cb8789801784b329b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b351953663a7b8cbc8721078beb9c319197a22d36368f29a26f80d8744fce39"} -2023-12-16T14:54:11.192Z INFO initializing dbft {"height": 9905, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:11.192Z debug frostfs-node/morph.go:229 new block {"index": 9904} -2023-12-16T14:54:11.422Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9904, "blockHeight": 9904, "took": "3.977846ms"} -2023-12-16T14:54:12.192Z INFO sending PrepareRequest {"height": 9905, "view": 0} -2023-12-16T14:54:12.192Z INFO sending Commit {"height": 9905, "view": 0} -2023-12-16T14:54:12.192Z INFO approving block {"height": 9905, "hash": "8e6169fc83e3502c52667914c6a2c4fae39cdbec7c95acdf3589c960e2ab372b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6eea8e42e8f90fa39d0b238bfc2e5abba0d55a9ffcaf08cb8789801784b329b"} -2023-12-16T14:54:12.193Z INFO initializing dbft {"height": 9906, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:12.194Z debug frostfs-node/morph.go:229 new block {"index": 9905} -2023-12-16T14:54:12.421Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9905, "blockHeight": 9905, "took": "3.241115ms"} -2023-12-16T14:54:13.194Z INFO sending PrepareRequest {"height": 9906, "view": 0} -2023-12-16T14:54:13.194Z INFO sending Commit {"height": 9906, "view": 0} -2023-12-16T14:54:13.194Z INFO approving block {"height": 9906, "hash": "c75fd0e6aa1314c486df7345ba3d09aeb741f8d77908a99e79043065400c8429", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8e6169fc83e3502c52667914c6a2c4fae39cdbec7c95acdf3589c960e2ab372b"} -2023-12-16T14:54:13.195Z INFO initializing dbft {"height": 9907, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:13.196Z debug frostfs-node/morph.go:229 new block {"index": 9906} -2023-12-16T14:54:13.423Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9906, "blockHeight": 9906, "took": "4.297985ms"} -2023-12-16T14:54:14.195Z INFO sending PrepareRequest {"height": 9907, "view": 0} -2023-12-16T14:54:14.195Z INFO sending Commit {"height": 9907, "view": 0} -2023-12-16T14:54:14.196Z INFO approving block {"height": 9907, "hash": "7ff3d86fb1b292c9a29867ff2239ccbbd23c6eb4ce38fb69f15d7de22c7dc57c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c75fd0e6aa1314c486df7345ba3d09aeb741f8d77908a99e79043065400c8429"} -2023-12-16T14:54:14.197Z INFO initializing dbft {"height": 9908, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:14.197Z debug frostfs-node/morph.go:229 new block {"index": 9907} -2023-12-16T14:54:14.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9907, "blockHeight": 9907, "took": "5.048028ms"} -2023-12-16T14:54:15.197Z INFO sending PrepareRequest {"height": 9908, "view": 0} -2023-12-16T14:54:15.197Z INFO sending Commit {"height": 9908, "view": 0} -2023-12-16T14:54:15.197Z INFO approving block {"height": 9908, "hash": "381f3441fb362afe939f69a3307bdcee168e594033974508d722c1770a7bf96e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ff3d86fb1b292c9a29867ff2239ccbbd23c6eb4ce38fb69f15d7de22c7dc57c"} -2023-12-16T14:54:15.198Z INFO initializing dbft {"height": 9909, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:15.198Z debug frostfs-node/morph.go:229 new block {"index": 9908} -2023-12-16T14:54:15.424Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9908, "blockHeight": 9908, "took": "4.178632ms"} -2023-12-16T14:54:16.198Z INFO sending PrepareRequest {"height": 9909, "view": 0} -2023-12-16T14:54:16.198Z INFO sending Commit {"height": 9909, "view": 0} -2023-12-16T14:54:16.198Z INFO approving block {"height": 9909, "hash": "ac4647853976b539bfd12ff8cca6431df4c7955744d08b4c7cc381fc84a4d992", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "381f3441fb362afe939f69a3307bdcee168e594033974508d722c1770a7bf96e"} -2023-12-16T14:54:16.199Z INFO initializing dbft {"height": 9910, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:16.200Z debug frostfs-node/morph.go:229 new block {"index": 9909} -2023-12-16T14:54:16.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9909, "blockHeight": 9909, "took": "4.308636ms"} -2023-12-16T14:54:17.200Z INFO sending PrepareRequest {"height": 9910, "view": 0} -2023-12-16T14:54:17.200Z INFO sending Commit {"height": 9910, "view": 0} -2023-12-16T14:54:17.200Z INFO approving block {"height": 9910, "hash": "54e9e8fa78d1001fcc3d70b6cfc960ad1918ac5bb5d647fff3842f81ea693dfe", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ac4647853976b539bfd12ff8cca6431df4c7955744d08b4c7cc381fc84a4d992"} -2023-12-16T14:54:17.201Z INFO initializing dbft {"height": 9911, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:17.202Z debug frostfs-node/morph.go:229 new block {"index": 9910} -2023-12-16T14:54:17.424Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9910, "blockHeight": 9910, "took": "3.485942ms"} -2023-12-16T14:54:18.201Z INFO sending PrepareRequest {"height": 9911, "view": 0} -2023-12-16T14:54:18.201Z INFO sending Commit {"height": 9911, "view": 0} -2023-12-16T14:54:18.201Z INFO approving block {"height": 9911, "hash": "c6b0d0cd260794976dcd251c2f1e1e05177f5629734055a46eaa9800467d162d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54e9e8fa78d1001fcc3d70b6cfc960ad1918ac5bb5d647fff3842f81ea693dfe"} -2023-12-16T14:54:18.202Z INFO initializing dbft {"height": 9912, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:18.203Z debug frostfs-node/morph.go:229 new block {"index": 9911} -2023-12-16T14:54:18.426Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9911, "blockHeight": 9911, "took": "4.928063ms"} -2023-12-16T14:54:19.202Z INFO sending PrepareRequest {"height": 9912, "view": 0} -2023-12-16T14:54:19.203Z INFO sending Commit {"height": 9912, "view": 0} -2023-12-16T14:54:19.203Z INFO approving block {"height": 9912, "hash": "29f30c4d1e609425131c28eec3f1e24809977460d5042f80ce2f7b14c0a16e39", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c6b0d0cd260794976dcd251c2f1e1e05177f5629734055a46eaa9800467d162d"} -2023-12-16T14:54:19.205Z INFO initializing dbft {"height": 9913, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:19.205Z debug frostfs-node/morph.go:229 new block {"index": 9912} -2023-12-16T14:54:19.425Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9912, "blockHeight": 9912, "took": "3.841672ms"} -2023-12-16T14:54:20.204Z INFO sending PrepareRequest {"height": 9913, "view": 0} -2023-12-16T14:54:20.204Z INFO sending Commit {"height": 9913, "view": 0} -2023-12-16T14:54:20.205Z INFO approving block {"height": 9913, "hash": "82f3fefba1ada98ea5e51f4a0eedfbf28685d55d5295d38263313814334ac7cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29f30c4d1e609425131c28eec3f1e24809977460d5042f80ce2f7b14c0a16e39"} -2023-12-16T14:54:20.206Z INFO initializing dbft {"height": 9914, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:20.207Z debug frostfs-node/morph.go:229 new block {"index": 9913} -2023-12-16T14:54:20.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9913, "blockHeight": 9913, "took": "4.304925ms"} -2023-12-16T14:54:21.205Z INFO sending PrepareRequest {"height": 9914, "view": 0} -2023-12-16T14:54:21.205Z INFO sending Commit {"height": 9914, "view": 0} -2023-12-16T14:54:21.205Z INFO approving block {"height": 9914, "hash": "262269c7a0cac460c895ad7f44d2e9437d6a0c1b3b0ce15ed4f91eae33a5059e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "82f3fefba1ada98ea5e51f4a0eedfbf28685d55d5295d38263313814334ac7cd"} -2023-12-16T14:54:21.206Z INFO initializing dbft {"height": 9915, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:21.207Z debug frostfs-node/morph.go:229 new block {"index": 9914} -2023-12-16T14:54:21.427Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9914, "blockHeight": 9914, "took": "3.154512ms"} -2023-12-16T14:54:22.206Z INFO sending PrepareRequest {"height": 9915, "view": 0} -2023-12-16T14:54:22.206Z INFO sending Commit {"height": 9915, "view": 0} -2023-12-16T14:54:22.207Z INFO approving block {"height": 9915, "hash": "46d14c1e2b04effdd45dfe8d048624c14ff21569f91ba9bbdcf835f235483425", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "262269c7a0cac460c895ad7f44d2e9437d6a0c1b3b0ce15ed4f91eae33a5059e"} -2023-12-16T14:54:22.208Z INFO initializing dbft {"height": 9916, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:22.208Z debug frostfs-node/morph.go:229 new block {"index": 9915} -2023-12-16T14:54:22.428Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9915, "blockHeight": 9915, "took": "3.068309ms"} -2023-12-16T14:54:23.208Z INFO sending PrepareRequest {"height": 9916, "view": 0} -2023-12-16T14:54:23.208Z INFO sending Commit {"height": 9916, "view": 0} -2023-12-16T14:54:23.208Z INFO approving block {"height": 9916, "hash": "c4a08769789a4745cb2580ca7c596b79405d52fbfa0e7d6459639ce8b8f4bdb4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "46d14c1e2b04effdd45dfe8d048624c14ff21569f91ba9bbdcf835f235483425"} -2023-12-16T14:54:23.209Z INFO initializing dbft {"height": 9917, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:23.209Z debug frostfs-node/morph.go:229 new block {"index": 9916} -2023-12-16T14:54:23.428Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9916, "blockHeight": 9916, "took": "3.052929ms"} -2023-12-16T14:54:24.210Z INFO sending PrepareRequest {"height": 9917, "view": 0} -2023-12-16T14:54:24.210Z INFO sending Commit {"height": 9917, "view": 0} -2023-12-16T14:54:24.210Z INFO approving block {"height": 9917, "hash": "c8b535c12e300ff7c14bf01ce36826ec1eae20bcada03f0343321e9e3734795a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c4a08769789a4745cb2580ca7c596b79405d52fbfa0e7d6459639ce8b8f4bdb4"} -2023-12-16T14:54:24.211Z INFO initializing dbft {"height": 9918, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:24.212Z debug frostfs-node/morph.go:229 new block {"index": 9917} -2023-12-16T14:54:24.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9917, "blockHeight": 9917, "took": "4.822051ms"} -2023-12-16T14:54:25.211Z INFO sending PrepareRequest {"height": 9918, "view": 0} -2023-12-16T14:54:25.211Z INFO sending Commit {"height": 9918, "view": 0} -2023-12-16T14:54:25.211Z INFO approving block {"height": 9918, "hash": "40f017466b8aad1304d5b16394dbec7cc8e601766e6e429176a72bf5c80d587e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c8b535c12e300ff7c14bf01ce36826ec1eae20bcada03f0343321e9e3734795a"} -2023-12-16T14:54:25.212Z INFO initializing dbft {"height": 9919, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:25.213Z debug frostfs-node/morph.go:229 new block {"index": 9918} -2023-12-16T14:54:25.429Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9918, "blockHeight": 9918, "took": "3.048919ms"} -2023-12-16T14:54:26.213Z INFO sending PrepareRequest {"height": 9919, "view": 0} -2023-12-16T14:54:26.213Z INFO sending Commit {"height": 9919, "view": 0} -2023-12-16T14:54:26.213Z INFO approving block {"height": 9919, "hash": "33dcda5a39fb26a803000c35e56c3dfdfb10038346e995ed3e436ce9ade0b067", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "40f017466b8aad1304d5b16394dbec7cc8e601766e6e429176a72bf5c80d587e"} -2023-12-16T14:54:26.214Z INFO initializing dbft {"height": 9920, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:26.215Z debug frostfs-node/morph.go:229 new block {"index": 9919} -2023-12-16T14:54:26.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9919, "blockHeight": 9919, "took": "3.677517ms"} -2023-12-16T14:54:27.214Z INFO sending PrepareRequest {"height": 9920, "view": 0} -2023-12-16T14:54:27.214Z INFO sending Commit {"height": 9920, "view": 0} -2023-12-16T14:54:27.215Z INFO approving block {"height": 9920, "hash": "c28205dd272d54baa487f80262ba3b9447db4b0b67c0f094ca6feee0aa2fbe55", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33dcda5a39fb26a803000c35e56c3dfdfb10038346e995ed3e436ce9ade0b067"} -2023-12-16T14:54:27.216Z INFO initializing dbft {"height": 9921, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:27.216Z debug frostfs-node/morph.go:229 new block {"index": 9920} -2023-12-16T14:54:27.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9920, "blockHeight": 9920, "took": "4.036788ms"} -2023-12-16T14:54:28.215Z INFO sending PrepareRequest {"height": 9921, "view": 0} -2023-12-16T14:54:28.216Z INFO sending Commit {"height": 9921, "view": 0} -2023-12-16T14:54:28.216Z INFO approving block {"height": 9921, "hash": "ecbf52af76a7190ff0cecf4e23304a43dadf6054128ebe10d6d53ae1cd9c3f0e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c28205dd272d54baa487f80262ba3b9447db4b0b67c0f094ca6feee0aa2fbe55"} -2023-12-16T14:54:28.217Z INFO initializing dbft {"height": 9922, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:28.217Z debug frostfs-node/morph.go:229 new block {"index": 9921} -2023-12-16T14:54:28.431Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9921, "blockHeight": 9921, "took": "3.114951ms"} -2023-12-16T14:54:29.217Z INFO sending PrepareRequest {"height": 9922, "view": 0} -2023-12-16T14:54:29.217Z INFO sending Commit {"height": 9922, "view": 0} -2023-12-16T14:54:29.217Z INFO approving block {"height": 9922, "hash": "6b496cee4518c1f0b79b06a20a53af55475f639543f88d011f9344377d753b4d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ecbf52af76a7190ff0cecf4e23304a43dadf6054128ebe10d6d53ae1cd9c3f0e"} -2023-12-16T14:54:29.218Z INFO initializing dbft {"height": 9923, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:29.219Z debug frostfs-node/morph.go:229 new block {"index": 9922} -2023-12-16T14:54:29.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9922, "blockHeight": 9922, "took": "4.659576ms"} -2023-12-16T14:54:30.218Z INFO sending PrepareRequest {"height": 9923, "view": 0} -2023-12-16T14:54:30.218Z INFO sending Commit {"height": 9923, "view": 0} -2023-12-16T14:54:30.219Z INFO approving block {"height": 9923, "hash": "87734de049cdc8051e59876a3c48493f07ffe14965d4bcbd8e1d1d539266e8f5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6b496cee4518c1f0b79b06a20a53af55475f639543f88d011f9344377d753b4d"} -2023-12-16T14:54:30.220Z INFO initializing dbft {"height": 9924, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:30.220Z debug frostfs-node/morph.go:229 new block {"index": 9923} -2023-12-16T14:54:30.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9923, "blockHeight": 9923, "took": "4.906553ms"} -2023-12-16T14:54:31.220Z INFO sending PrepareRequest {"height": 9924, "view": 0} -2023-12-16T14:54:31.220Z INFO sending Commit {"height": 9924, "view": 0} -2023-12-16T14:54:31.220Z INFO approving block {"height": 9924, "hash": "33203f0c52454f5b58eaf1a36362189dba48984e8224208e39187e83bd09283f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87734de049cdc8051e59876a3c48493f07ffe14965d4bcbd8e1d1d539266e8f5"} -2023-12-16T14:54:31.222Z INFO initializing dbft {"height": 9925, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:31.223Z debug frostfs-node/morph.go:229 new block {"index": 9924} -2023-12-16T14:54:31.432Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9924, "blockHeight": 9924, "took": "3.41328ms"} -2023-12-16T14:54:32.221Z INFO sending PrepareRequest {"height": 9925, "view": 0} -2023-12-16T14:54:32.221Z INFO sending Commit {"height": 9925, "view": 0} -2023-12-16T14:54:32.222Z INFO approving block {"height": 9925, "hash": "eeb7db614b5aec04e8bdebe361e1e2c323bff5e72db18c5071b2778209a46218", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "33203f0c52454f5b58eaf1a36362189dba48984e8224208e39187e83bd09283f"} -2023-12-16T14:54:32.223Z INFO initializing dbft {"height": 9926, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:32.224Z debug frostfs-node/morph.go:229 new block {"index": 9925} -2023-12-16T14:54:32.433Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9925, "blockHeight": 9925, "took": "3.363178ms"} -2023-12-16T14:54:33.223Z INFO sending PrepareRequest {"height": 9926, "view": 0} -2023-12-16T14:54:33.223Z INFO sending Commit {"height": 9926, "view": 0} -2023-12-16T14:54:33.224Z INFO approving block {"height": 9926, "hash": "216eba910ca242ad5dff27101168d8ede1c1898d774370fd82655e8fe0c42a0d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eeb7db614b5aec04e8bdebe361e1e2c323bff5e72db18c5071b2778209a46218"} -2023-12-16T14:54:33.226Z INFO initializing dbft {"height": 9927, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:33.226Z debug frostfs-node/morph.go:229 new block {"index": 9926} -2023-12-16T14:54:33.435Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9926, "blockHeight": 9926, "took": "4.687116ms"} -2023-12-16T14:54:34.225Z INFO sending PrepareRequest {"height": 9927, "view": 0} -2023-12-16T14:54:34.225Z INFO sending Commit {"height": 9927, "view": 0} -2023-12-16T14:54:34.225Z INFO approving block {"height": 9927, "hash": "41bd7ca1b6b116148ed2946bd6b44a12c9e0e4e1e3ff035855dbd24a823f2df0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "216eba910ca242ad5dff27101168d8ede1c1898d774370fd82655e8fe0c42a0d"} -2023-12-16T14:54:34.227Z INFO initializing dbft {"height": 9928, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:34.228Z debug frostfs-node/morph.go:229 new block {"index": 9927} -2023-12-16T14:54:34.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9927, "blockHeight": 9927, "took": "6.251063ms"} -2023-12-16T14:54:35.226Z INFO sending PrepareRequest {"height": 9928, "view": 0} -2023-12-16T14:54:35.226Z INFO sending Commit {"height": 9928, "view": 0} -2023-12-16T14:54:35.226Z INFO approving block {"height": 9928, "hash": "7ad38f680ca52192b1b87eae88cee0f78c49e29ae9b54cf6af8e2ddb3ce17977", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "41bd7ca1b6b116148ed2946bd6b44a12c9e0e4e1e3ff035855dbd24a823f2df0"} -2023-12-16T14:54:35.227Z INFO initializing dbft {"height": 9929, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:35.228Z debug frostfs-node/morph.go:229 new block {"index": 9928} -2023-12-16T14:54:35.436Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9928, "blockHeight": 9928, "took": "4.733384ms"} -2023-12-16T14:54:36.227Z INFO sending PrepareRequest {"height": 9929, "view": 0} -2023-12-16T14:54:36.228Z INFO sending Commit {"height": 9929, "view": 0} -2023-12-16T14:54:36.228Z INFO approving block {"height": 9929, "hash": "93c959bdccbb2631b154c7229440144f61c93d4824d202a744552cf608a2f934", "tx_count": 1, "merkle": "aa37eb5acf43ea2ee38c0404f376e12fe8290f3dc31a55afb65f5b44a5515487", "prev": "7ad38f680ca52192b1b87eae88cee0f78c49e29ae9b54cf6af8e2ddb3ce17977"} -2023-12-16T14:54:36.230Z INFO initializing dbft {"height": 9930, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:36.231Z debug frostfs-node/morph.go:229 new block {"index": 9929} -2023-12-16T14:54:36.441Z INFO persisted to disk {"blocks": 1, "keys": 54, "headerHeight": 9929, "blockHeight": 9929, "took": "8.061684ms"} -2023-12-16T14:54:37.229Z INFO sending PrepareRequest {"height": 9930, "view": 0} -2023-12-16T14:54:37.229Z INFO sending Commit {"height": 9930, "view": 0} -2023-12-16T14:54:37.229Z INFO approving block {"height": 9930, "hash": "c9a430f4fa218fc34fffa2a364bf87d6d7351d1d70742e6d333acb31bece3014", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "93c959bdccbb2631b154c7229440144f61c93d4824d202a744552cf608a2f934"} -2023-12-16T14:54:37.230Z INFO initializing dbft {"height": 9931, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:37.231Z debug frostfs-node/morph.go:229 new block {"index": 9930} -2023-12-16T14:54:37.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9930, "blockHeight": 9930, "took": "4.143872ms"} -2023-12-16T14:54:38.230Z INFO sending PrepareRequest {"height": 9931, "view": 0} -2023-12-16T14:54:38.230Z INFO sending Commit {"height": 9931, "view": 0} -2023-12-16T14:54:38.230Z INFO approving block {"height": 9931, "hash": "7849ad65a1c0e86ebedfe9a06487ae128fc264318a8e6376c8ca1af1d2cb3e79", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c9a430f4fa218fc34fffa2a364bf87d6d7351d1d70742e6d333acb31bece3014"} -2023-12-16T14:54:38.231Z INFO initializing dbft {"height": 9932, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:38.232Z debug frostfs-node/morph.go:229 new block {"index": 9931} -2023-12-16T14:54:38.439Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9931, "blockHeight": 9931, "took": "5.299896ms"} -2023-12-16T14:54:39.232Z INFO sending PrepareRequest {"height": 9932, "view": 0} -2023-12-16T14:54:39.232Z INFO sending Commit {"height": 9932, "view": 0} -2023-12-16T14:54:39.232Z INFO approving block {"height": 9932, "hash": "407bd9d402cef958230f3ae2d171e3733a12587d1772ece6b8922dd64460d31c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7849ad65a1c0e86ebedfe9a06487ae128fc264318a8e6376c8ca1af1d2cb3e79"} -2023-12-16T14:54:39.233Z INFO initializing dbft {"height": 9933, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:39.234Z debug frostfs-node/morph.go:229 new block {"index": 9932} -2023-12-16T14:54:39.437Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9932, "blockHeight": 9932, "took": "3.371439ms"} -2023-12-16T14:54:40.233Z INFO sending PrepareRequest {"height": 9933, "view": 0} -2023-12-16T14:54:40.233Z INFO sending Commit {"height": 9933, "view": 0} -2023-12-16T14:54:40.234Z INFO approving block {"height": 9933, "hash": "6be245a295558980c0717c101df99e2b6a709add6c894aa5f947d8ba64254a9f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "407bd9d402cef958230f3ae2d171e3733a12587d1772ece6b8922dd64460d31c"} -2023-12-16T14:54:40.235Z INFO initializing dbft {"height": 9934, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:40.235Z debug frostfs-node/morph.go:229 new block {"index": 9933} -2023-12-16T14:54:40.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9933, "blockHeight": 9933, "took": "5.729126ms"} -2023-12-16T14:54:41.234Z INFO sending PrepareRequest {"height": 9934, "view": 0} -2023-12-16T14:54:41.234Z INFO sending Commit {"height": 9934, "view": 0} -2023-12-16T14:54:41.235Z INFO approving block {"height": 9934, "hash": "b5d4f0c7cbb2e350cd334aed67dbc41493fde5be294c714abc014810939d1867", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6be245a295558980c0717c101df99e2b6a709add6c894aa5f947d8ba64254a9f"} -2023-12-16T14:54:41.237Z INFO initializing dbft {"height": 9935, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:41.237Z debug frostfs-node/morph.go:229 new block {"index": 9934} -2023-12-16T14:54:41.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9934, "blockHeight": 9934, "took": "5.139319ms"} -2023-12-16T14:54:42.235Z INFO sending PrepareRequest {"height": 9935, "view": 0} -2023-12-16T14:54:42.236Z INFO sending Commit {"height": 9935, "view": 0} -2023-12-16T14:54:42.236Z INFO approving block {"height": 9935, "hash": "53f7a41593d2157dc435c1a63ed41eac4cb0eb27af102b9b1417697ffa30e213", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b5d4f0c7cbb2e350cd334aed67dbc41493fde5be294c714abc014810939d1867"} -2023-12-16T14:54:42.237Z INFO initializing dbft {"height": 9936, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:42.238Z debug frostfs-node/morph.go:229 new block {"index": 9935} -2023-12-16T14:54:42.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9935, "blockHeight": 9935, "took": "4.920489ms"} -2023-12-16T14:54:43.237Z INFO sending PrepareRequest {"height": 9936, "view": 0} -2023-12-16T14:54:43.238Z INFO sending Commit {"height": 9936, "view": 0} -2023-12-16T14:54:43.238Z INFO approving block {"height": 9936, "hash": "ded9d0373704c57c83788c487f4d4e57e02b341b9190cf5fa431d6828454e231", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "53f7a41593d2157dc435c1a63ed41eac4cb0eb27af102b9b1417697ffa30e213"} -2023-12-16T14:54:43.240Z INFO initializing dbft {"height": 9937, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:43.241Z debug frostfs-node/morph.go:229 new block {"index": 9936} -2023-12-16T14:54:43.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9936, "blockHeight": 9936, "took": "4.244447ms"} -2023-12-16T14:54:44.239Z INFO sending PrepareRequest {"height": 9937, "view": 0} -2023-12-16T14:54:44.239Z INFO sending Commit {"height": 9937, "view": 0} -2023-12-16T14:54:44.239Z INFO approving block {"height": 9937, "hash": "c0b0caf32fe49f15f9318b4b99ec6e25c29c3651a0c64d68fc7249f6c8c4a7ac", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ded9d0373704c57c83788c487f4d4e57e02b341b9190cf5fa431d6828454e231"} -2023-12-16T14:54:44.240Z INFO initializing dbft {"height": 9938, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:44.240Z debug frostfs-node/morph.go:229 new block {"index": 9937} -2023-12-16T14:54:44.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9937, "blockHeight": 9937, "took": "3.670507ms"} -2023-12-16T14:54:45.240Z INFO sending PrepareRequest {"height": 9938, "view": 0} -2023-12-16T14:54:45.240Z INFO sending Commit {"height": 9938, "view": 0} -2023-12-16T14:54:45.241Z INFO approving block {"height": 9938, "hash": "3f44985995d0b766c9c6a744c1c24a9dd10fa7d3b000edd517b7c360be189b19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c0b0caf32fe49f15f9318b4b99ec6e25c29c3651a0c64d68fc7249f6c8c4a7ac"} -2023-12-16T14:54:45.242Z INFO initializing dbft {"height": 9939, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:45.243Z debug frostfs-node/morph.go:229 new block {"index": 9938} -2023-12-16T14:54:45.441Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9938, "blockHeight": 9938, "took": "3.813032ms"} -2023-12-16T14:54:46.241Z INFO sending PrepareRequest {"height": 9939, "view": 0} -2023-12-16T14:54:46.242Z INFO sending Commit {"height": 9939, "view": 0} -2023-12-16T14:54:46.242Z INFO approving block {"height": 9939, "hash": "696b1b6fa1f401d969724a3362541daf0b04578e6400d86249fe102f1e61af71", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3f44985995d0b766c9c6a744c1c24a9dd10fa7d3b000edd517b7c360be189b19"} -2023-12-16T14:54:46.243Z INFO initializing dbft {"height": 9940, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:46.243Z debug frostfs-node/morph.go:229 new block {"index": 9939} -2023-12-16T14:54:46.440Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9939, "blockHeight": 9939, "took": "3.031948ms"} -2023-12-16T14:54:47.242Z INFO sending PrepareRequest {"height": 9940, "view": 0} -2023-12-16T14:54:47.242Z INFO sending Commit {"height": 9940, "view": 0} -2023-12-16T14:54:47.243Z INFO approving block {"height": 9940, "hash": "38aa4fd249c7418f3f5aa6666ad6ef8e76c75185490da57ec2493f11697f42bc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "696b1b6fa1f401d969724a3362541daf0b04578e6400d86249fe102f1e61af71"} -2023-12-16T14:54:47.244Z INFO initializing dbft {"height": 9941, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:47.244Z debug frostfs-node/morph.go:229 new block {"index": 9940} -2023-12-16T14:54:47.248Z debug calculator/calls.go:236 all daughters trust iterator's init failure {"error": "no data in 42 epoch for daughters"} -2023-12-16T14:54:47.249Z INFO runtime log {"tx": "822f9b6e472bf96c5f4d266a0fc1b159e9a1312e1a57b7c6ab00497068439077", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:54:47.442Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9940, "blockHeight": 9940, "took": "3.596905ms"} -2023-12-16T14:54:48.243Z INFO sending PrepareRequest {"height": 9941, "view": 0} -2023-12-16T14:54:48.243Z INFO sending Commit {"height": 9941, "view": 0} -2023-12-16T14:54:48.244Z INFO approving block {"height": 9941, "hash": "5924183b5eb327bb7702c959762ea2d5bb7b198c49f8770404cd4d5b499eb60b", "tx_count": 1, "merkle": "64dced5bda2d2df0bc0479f529b90cd116f09823a141096961a5a7fcbb8850fe", "prev": "38aa4fd249c7418f3f5aa6666ad6ef8e76c75185490da57ec2493f11697f42bc"} -2023-12-16T14:54:48.245Z INFO runtime log {"tx": "fe5088bbfca7a561690941a12398f016d10cb929f57904bcf02d2dda5beddc64", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:54:48.246Z INFO initializing dbft {"height": 9942, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:48.247Z debug controller/calls.go:164 announcement is not started or already interrupted {"epoch": 42} -2023-12-16T14:54:48.247Z debug controller/calls.go:254 announcement successfully interrupted {"epoch": 42} -2023-12-16T14:54:48.247Z debug frostfs-node/morph.go:229 new block {"index": 9941} -2023-12-16T14:54:48.445Z INFO persisted to disk {"blocks": 1, "keys": 36, "headerHeight": 9941, "blockHeight": 9941, "took": "6.414967ms"} -2023-12-16T14:54:49.244Z INFO sending PrepareRequest {"height": 9942, "view": 0} -2023-12-16T14:54:49.244Z INFO sending Commit {"height": 9942, "view": 0} -2023-12-16T14:54:49.245Z INFO approving block {"height": 9942, "hash": "ad9070e092789d6d7253a96d0f992d7cccaab7a93b4be2f0ccb8ab455a7d9af2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5924183b5eb327bb7702c959762ea2d5bb7b198c49f8770404cd4d5b499eb60b"} -2023-12-16T14:54:49.246Z INFO initializing dbft {"height": 9943, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:49.246Z debug frostfs-node/morph.go:229 new block {"index": 9942} -2023-12-16T14:54:49.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9942, "blockHeight": 9942, "took": "4.61705ms"} -2023-12-16T14:54:50.245Z INFO sending PrepareRequest {"height": 9943, "view": 0} -2023-12-16T14:54:50.246Z INFO sending Commit {"height": 9943, "view": 0} -2023-12-16T14:54:50.246Z INFO approving block {"height": 9943, "hash": "5599e82f4f8cc5ce62874f9b71ae418c63a42c5a30f583a20801c03cda2f8941", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad9070e092789d6d7253a96d0f992d7cccaab7a93b4be2f0ccb8ab455a7d9af2"} -2023-12-16T14:54:50.247Z INFO initializing dbft {"height": 9944, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:50.248Z debug frostfs-node/morph.go:229 new block {"index": 9943} -2023-12-16T14:54:50.445Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9943, "blockHeight": 9943, "took": "4.382782ms"} -2023-12-16T14:54:51.247Z INFO sending PrepareRequest {"height": 9944, "view": 0} -2023-12-16T14:54:51.247Z INFO sending Commit {"height": 9944, "view": 0} -2023-12-16T14:54:51.247Z INFO approving block {"height": 9944, "hash": "a7f653925b8aa4b486978396e0034a173a6844bceda28eca0be85e5094490ba3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5599e82f4f8cc5ce62874f9b71ae418c63a42c5a30f583a20801c03cda2f8941"} -2023-12-16T14:54:51.248Z INFO initializing dbft {"height": 9945, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:51.248Z debug frostfs-node/morph.go:229 new block {"index": 9944} -2023-12-16T14:54:51.444Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9944, "blockHeight": 9944, "took": "3.687515ms"} -2023-12-16T14:54:52.247Z INFO sending PrepareRequest {"height": 9945, "view": 0} -2023-12-16T14:54:52.248Z INFO sending Commit {"height": 9945, "view": 0} -2023-12-16T14:54:52.248Z INFO approving block {"height": 9945, "hash": "66f1b2f5b18a77f4c352d2e08fc04adc5ccfb0b19a2513e8b30b616c65b387bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a7f653925b8aa4b486978396e0034a173a6844bceda28eca0be85e5094490ba3"} -2023-12-16T14:54:52.249Z INFO initializing dbft {"height": 9946, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:52.249Z debug frostfs-node/morph.go:229 new block {"index": 9945} -2023-12-16T14:54:52.445Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9945, "blockHeight": 9945, "took": "3.493591ms"} -2023-12-16T14:54:53.249Z INFO sending PrepareRequest {"height": 9946, "view": 0} -2023-12-16T14:54:53.249Z INFO sending Commit {"height": 9946, "view": 0} -2023-12-16T14:54:53.249Z INFO approving block {"height": 9946, "hash": "628c3c3c368f28c0e7172cf96614760b67827e6fe0905b5c7c0a43e255e1d5db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66f1b2f5b18a77f4c352d2e08fc04adc5ccfb0b19a2513e8b30b616c65b387bb"} -2023-12-16T14:54:53.251Z INFO initializing dbft {"height": 9947, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:53.252Z debug frostfs-node/morph.go:229 new block {"index": 9946} -2023-12-16T14:54:53.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9946, "blockHeight": 9946, "took": "4.907243ms"} -2023-12-16T14:54:54.250Z INFO sending PrepareRequest {"height": 9947, "view": 0} -2023-12-16T14:54:54.251Z INFO sending Commit {"height": 9947, "view": 0} -2023-12-16T14:54:54.251Z INFO approving block {"height": 9947, "hash": "e3e021d7d0306f0ca51856a89ae528898b5f1ef0230356b7fbed8d0409c4fbbb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "628c3c3c368f28c0e7172cf96614760b67827e6fe0905b5c7c0a43e255e1d5db"} -2023-12-16T14:54:54.253Z INFO initializing dbft {"height": 9948, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:54.254Z debug frostfs-node/morph.go:229 new block {"index": 9947} -2023-12-16T14:54:54.446Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9947, "blockHeight": 9947, "took": "3.742939ms"} -2023-12-16T14:54:55.252Z INFO sending PrepareRequest {"height": 9948, "view": 0} -2023-12-16T14:54:55.252Z INFO sending Commit {"height": 9948, "view": 0} -2023-12-16T14:54:55.252Z INFO approving block {"height": 9948, "hash": "a9c84cfac528cd13f6a871d7c529635928c9df3e6ec7d3b67a7ddf9ed90625e4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e3e021d7d0306f0ca51856a89ae528898b5f1ef0230356b7fbed8d0409c4fbbb"} -2023-12-16T14:54:55.253Z INFO initializing dbft {"height": 9949, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:55.253Z debug frostfs-node/morph.go:229 new block {"index": 9948} -2023-12-16T14:54:55.447Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9948, "blockHeight": 9948, "took": "3.947516ms"} -2023-12-16T14:54:56.254Z INFO sending PrepareRequest {"height": 9949, "view": 0} -2023-12-16T14:54:56.254Z INFO sending Commit {"height": 9949, "view": 0} -2023-12-16T14:54:56.254Z INFO approving block {"height": 9949, "hash": "7cf123b1f2e4fa8e939433fbbe890dc06f0e9e50d019a0c094e86fe47556a387", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9c84cfac528cd13f6a871d7c529635928c9df3e6ec7d3b67a7ddf9ed90625e4"} -2023-12-16T14:54:56.256Z INFO initializing dbft {"height": 9950, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:56.257Z debug frostfs-node/morph.go:229 new block {"index": 9949} -2023-12-16T14:54:56.449Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9949, "blockHeight": 9949, "took": "5.536931ms"} -2023-12-16T14:54:57.256Z INFO sending PrepareRequest {"height": 9950, "view": 0} -2023-12-16T14:54:57.256Z INFO sending Commit {"height": 9950, "view": 0} -2023-12-16T14:54:57.256Z INFO approving block {"height": 9950, "hash": "401b64770909811be41de7ac39f9473e2005b0e2077b29aa9d61d257f8cc2b93", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7cf123b1f2e4fa8e939433fbbe890dc06f0e9e50d019a0c094e86fe47556a387"} -2023-12-16T14:54:57.258Z INFO initializing dbft {"height": 9951, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:57.258Z debug frostfs-node/morph.go:229 new block {"index": 9950} -2023-12-16T14:54:57.261Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:54:57.262Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:54:57.262Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:54:57.451Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9950, "blockHeight": 9950, "took": "5.82391ms"} -2023-12-16T14:54:58.258Z INFO sending PrepareRequest {"height": 9951, "view": 0} -2023-12-16T14:54:58.258Z INFO sending Commit {"height": 9951, "view": 0} -2023-12-16T14:54:58.259Z INFO approving block {"height": 9951, "hash": "4014f31fa737bd482ce56e5fd167e72fae297774fe7eb8e385cf8cb8fa4da73e", "tx_count": 2, "merkle": "4b2f8e66615dd4798bd8f30f31daf863b18bee02f67dda318155e7f16143a1ec", "prev": "401b64770909811be41de7ac39f9473e2005b0e2077b29aa9d61d257f8cc2b93"} -2023-12-16T14:54:58.259Z INFO runtime log {"tx": "4c18833ec380ffc4d335b89a271447640f5f8230410b77e499020e378ddea659", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:54:58.260Z INFO runtime log {"tx": "4c18833ec380ffc4d335b89a271447640f5f8230410b77e499020e378ddea659", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:54:58.261Z INFO initializing dbft {"height": 9952, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:58.262Z debug frostfs-node/morph.go:229 new block {"index": 9951} -2023-12-16T14:54:58.453Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 9951, "blockHeight": 9951, "took": "7.418796ms"} -2023-12-16T14:54:59.260Z INFO sending PrepareRequest {"height": 9952, "view": 0} -2023-12-16T14:54:59.260Z INFO sending Commit {"height": 9952, "view": 0} -2023-12-16T14:54:59.260Z INFO approving block {"height": 9952, "hash": "fce635c166a97e998d2e5e7778488d746c38a4682bcdc911f8f9effcb8a7a14f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4014f31fa737bd482ce56e5fd167e72fae297774fe7eb8e385cf8cb8fa4da73e"} -2023-12-16T14:54:59.262Z INFO initializing dbft {"height": 9953, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:54:59.263Z debug frostfs-node/morph.go:229 new block {"index": 9952} -2023-12-16T14:54:59.451Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9952, "blockHeight": 9952, "took": "5.465629ms"} -2023-12-16T14:55:00.261Z INFO sending PrepareRequest {"height": 9953, "view": 0} -2023-12-16T14:55:00.261Z INFO sending Commit {"height": 9953, "view": 0} -2023-12-16T14:55:00.262Z INFO approving block {"height": 9953, "hash": "a9166df37563bcebf77f742f37e440ab42fc636b9d37c4bcd00aae53dfeada52", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fce635c166a97e998d2e5e7778488d746c38a4682bcdc911f8f9effcb8a7a14f"} -2023-12-16T14:55:00.263Z INFO initializing dbft {"height": 9954, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:00.263Z debug frostfs-node/morph.go:229 new block {"index": 9953} -2023-12-16T14:55:00.450Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9953, "blockHeight": 9953, "took": "3.216694ms"} -2023-12-16T14:55:01.263Z INFO sending PrepareRequest {"height": 9954, "view": 0} -2023-12-16T14:55:01.263Z INFO sending Commit {"height": 9954, "view": 0} -2023-12-16T14:55:01.264Z INFO approving block {"height": 9954, "hash": "be7ffb0faf6fdfe9258a1ec517c198cb968540cdc594586a8dac64c7d4f93790", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a9166df37563bcebf77f742f37e440ab42fc636b9d37c4bcd00aae53dfeada52"} -2023-12-16T14:55:01.266Z INFO initializing dbft {"height": 9955, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:01.266Z debug frostfs-node/morph.go:229 new block {"index": 9954} -2023-12-16T14:55:01.451Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9954, "blockHeight": 9954, "took": "3.488672ms"} -2023-12-16T14:55:02.265Z INFO sending PrepareRequest {"height": 9955, "view": 0} -2023-12-16T14:55:02.265Z INFO sending Commit {"height": 9955, "view": 0} -2023-12-16T14:55:02.265Z INFO approving block {"height": 9955, "hash": "43a024feaaebb32d24a21d9adbf317e1112293b67913efdff9031590565d13d5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be7ffb0faf6fdfe9258a1ec517c198cb968540cdc594586a8dac64c7d4f93790"} -2023-12-16T14:55:02.267Z INFO initializing dbft {"height": 9956, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:02.268Z debug frostfs-node/morph.go:229 new block {"index": 9955} -2023-12-16T14:55:02.452Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9955, "blockHeight": 9955, "took": "3.75484ms"} -2023-12-16T14:55:03.267Z INFO sending PrepareRequest {"height": 9956, "view": 0} -2023-12-16T14:55:03.267Z INFO sending Commit {"height": 9956, "view": 0} -2023-12-16T14:55:03.267Z INFO approving block {"height": 9956, "hash": "d912ea92a5fd7611421dc285d4399f553cbc04b36120ac6a1e726a810988e342", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "43a024feaaebb32d24a21d9adbf317e1112293b67913efdff9031590565d13d5"} -2023-12-16T14:55:03.268Z INFO initializing dbft {"height": 9957, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:03.269Z debug frostfs-node/morph.go:229 new block {"index": 9956} -2023-12-16T14:55:03.452Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9956, "blockHeight": 9956, "took": "3.462881ms"} -2023-12-16T14:55:04.268Z INFO sending PrepareRequest {"height": 9957, "view": 0} -2023-12-16T14:55:04.268Z INFO sending Commit {"height": 9957, "view": 0} -2023-12-16T14:55:04.268Z INFO approving block {"height": 9957, "hash": "51f54dfa51c0185efea87b2e7cae811ca858a8468edeebab4b6c9a7eacffbdee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d912ea92a5fd7611421dc285d4399f553cbc04b36120ac6a1e726a810988e342"} -2023-12-16T14:55:04.270Z INFO initializing dbft {"height": 9958, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:04.271Z debug frostfs-node/morph.go:229 new block {"index": 9957} -2023-12-16T14:55:04.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9957, "blockHeight": 9957, "took": "5.035742ms"} -2023-12-16T14:55:05.269Z INFO sending PrepareRequest {"height": 9958, "view": 0} -2023-12-16T14:55:05.269Z INFO sending Commit {"height": 9958, "view": 0} -2023-12-16T14:55:05.269Z INFO approving block {"height": 9958, "hash": "e29634af3ce1382e8538ef6acac9a98855332c113c9c01cc45a617965da73787", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "51f54dfa51c0185efea87b2e7cae811ca858a8468edeebab4b6c9a7eacffbdee"} -2023-12-16T14:55:05.270Z INFO initializing dbft {"height": 9959, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:05.271Z debug frostfs-node/morph.go:229 new block {"index": 9958} -2023-12-16T14:55:05.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9958, "blockHeight": 9958, "took": "3.691857ms"} -2023-12-16T14:55:06.270Z INFO sending PrepareRequest {"height": 9959, "view": 0} -2023-12-16T14:55:06.270Z INFO sending Commit {"height": 9959, "view": 0} -2023-12-16T14:55:06.270Z INFO approving block {"height": 9959, "hash": "e10f33447399abd12f0f0c4e50a0ba974674668843327ddf8f4249a0ea4c2979", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e29634af3ce1382e8538ef6acac9a98855332c113c9c01cc45a617965da73787"} -2023-12-16T14:55:06.271Z INFO initializing dbft {"height": 9960, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:06.271Z debug frostfs-node/morph.go:229 new block {"index": 9959} -2023-12-16T14:55:06.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9959, "blockHeight": 9959, "took": "2.869903ms"} -2023-12-16T14:55:07.271Z INFO sending PrepareRequest {"height": 9960, "view": 0} -2023-12-16T14:55:07.271Z INFO sending Commit {"height": 9960, "view": 0} -2023-12-16T14:55:07.271Z INFO approving block {"height": 9960, "hash": "5a03d2738f7f08576a699db218c52372571db410c5cf9afb0de43a6dc00591f0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e10f33447399abd12f0f0c4e50a0ba974674668843327ddf8f4249a0ea4c2979"} -2023-12-16T14:55:07.272Z INFO initializing dbft {"height": 9961, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:07.273Z debug frostfs-node/morph.go:229 new block {"index": 9960} -2023-12-16T14:55:07.454Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9960, "blockHeight": 9960, "took": "2.853073ms"} -2023-12-16T14:55:08.273Z INFO sending PrepareRequest {"height": 9961, "view": 0} -2023-12-16T14:55:08.273Z INFO sending Commit {"height": 9961, "view": 0} -2023-12-16T14:55:08.273Z INFO approving block {"height": 9961, "hash": "0d11c89dd7969209ed8fa7cf5d2a06425fc26a143c6156b4c90bf7d7b55e749b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a03d2738f7f08576a699db218c52372571db410c5cf9afb0de43a6dc00591f0"} -2023-12-16T14:55:08.274Z INFO initializing dbft {"height": 9962, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:08.275Z debug frostfs-node/morph.go:229 new block {"index": 9961} -2023-12-16T14:55:08.455Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9961, "blockHeight": 9961, "took": "2.897074ms"} -2023-12-16T14:55:09.274Z INFO sending PrepareRequest {"height": 9962, "view": 0} -2023-12-16T14:55:09.274Z INFO sending Commit {"height": 9962, "view": 0} -2023-12-16T14:55:09.274Z INFO approving block {"height": 9962, "hash": "7ee3fffafc6325b1560aad55084cbed34c49640547bc50f0b185d142ec4469dc", "tx_count": 1, "merkle": "347d27735c4ab809bba26a051450d20ffcee6604e6e69f99c46d5fb1a6b8cdc1", "prev": "0d11c89dd7969209ed8fa7cf5d2a06425fc26a143c6156b4c90bf7d7b55e749b"} -2023-12-16T14:55:09.275Z INFO initializing dbft {"height": 9963, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:09.277Z debug frostfs-node/morph.go:229 new block {"index": 9962} -2023-12-16T14:55:09.278Z warn event/listener.go:370 skip expired main TX notary event {"chain": "morph", "error": "received main tx has expired"} -2023-12-16T14:55:09.457Z INFO persisted to disk {"blocks": 1, "keys": 43, "headerHeight": 9962, "blockHeight": 9962, "took": "4.619115ms"} -2023-12-16T14:55:10.275Z INFO sending PrepareRequest {"height": 9963, "view": 0} -2023-12-16T14:55:10.276Z INFO sending Commit {"height": 9963, "view": 0} -2023-12-16T14:55:10.276Z INFO approving block {"height": 9963, "hash": "573d4e9079cb590106fda96dda21c56c402400fda7429efcf1b43a95c9013d23", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ee3fffafc6325b1560aad55084cbed34c49640547bc50f0b185d142ec4469dc"} -2023-12-16T14:55:10.277Z INFO initializing dbft {"height": 9964, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:10.277Z debug frostfs-node/morph.go:229 new block {"index": 9963} -2023-12-16T14:55:10.457Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9963, "blockHeight": 9963, "took": "4.571086ms"} -2023-12-16T14:55:11.277Z INFO sending PrepareRequest {"height": 9964, "view": 0} -2023-12-16T14:55:11.277Z INFO sending Commit {"height": 9964, "view": 0} -2023-12-16T14:55:11.277Z INFO approving block {"height": 9964, "hash": "844e2e67141a628ab234b53ff332305ca6f849698e50f9f957d9e45e4a2f3ed9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "573d4e9079cb590106fda96dda21c56c402400fda7429efcf1b43a95c9013d23"} -2023-12-16T14:55:11.278Z INFO initializing dbft {"height": 9965, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:11.278Z debug frostfs-node/morph.go:229 new block {"index": 9964} -2023-12-16T14:55:11.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9964, "blockHeight": 9964, "took": "4.580553ms"} -2023-12-16T14:55:12.278Z INFO sending PrepareRequest {"height": 9965, "view": 0} -2023-12-16T14:55:12.279Z INFO sending Commit {"height": 9965, "view": 0} -2023-12-16T14:55:12.279Z INFO approving block {"height": 9965, "hash": "66749e471398877d199cf10167d71b09878c1edbb0a5d490cfdfc52ad5b786f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "844e2e67141a628ab234b53ff332305ca6f849698e50f9f957d9e45e4a2f3ed9"} -2023-12-16T14:55:12.280Z INFO initializing dbft {"height": 9966, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:12.280Z debug frostfs-node/morph.go:229 new block {"index": 9965} -2023-12-16T14:55:12.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9965, "blockHeight": 9965, "took": "4.579744ms"} -2023-12-16T14:55:13.280Z INFO sending PrepareRequest {"height": 9966, "view": 0} -2023-12-16T14:55:13.280Z INFO sending Commit {"height": 9966, "view": 0} -2023-12-16T14:55:13.280Z INFO approving block {"height": 9966, "hash": "65caf66d6c0a9cc9b9b3bb0e371ef9076a79cc9985661e474f1b6b8c75ec0475", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "66749e471398877d199cf10167d71b09878c1edbb0a5d490cfdfc52ad5b786f6"} -2023-12-16T14:55:13.281Z INFO initializing dbft {"height": 9967, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:13.281Z debug frostfs-node/morph.go:229 new block {"index": 9966} -2023-12-16T14:55:13.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9966, "blockHeight": 9966, "took": "5.071468ms"} -2023-12-16T14:55:14.281Z INFO sending PrepareRequest {"height": 9967, "view": 0} -2023-12-16T14:55:14.281Z INFO sending Commit {"height": 9967, "view": 0} -2023-12-16T14:55:14.281Z INFO approving block {"height": 9967, "hash": "1a54b07dbc7f561332ceebb7e160ce510dce5c6e7660c887a2e0a82dc227534f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "65caf66d6c0a9cc9b9b3bb0e371ef9076a79cc9985661e474f1b6b8c75ec0475"} -2023-12-16T14:55:14.282Z INFO initializing dbft {"height": 9968, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:14.283Z debug frostfs-node/morph.go:229 new block {"index": 9967} -2023-12-16T14:55:14.458Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9967, "blockHeight": 9967, "took": "3.629665ms"} -2023-12-16T14:55:15.282Z INFO sending PrepareRequest {"height": 9968, "view": 0} -2023-12-16T14:55:15.282Z INFO sending Commit {"height": 9968, "view": 0} -2023-12-16T14:55:15.283Z INFO approving block {"height": 9968, "hash": "0ecd7346f66e3fad50c75c326d0f993ad04105ba7641107b2edb79d4c40c7bc5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1a54b07dbc7f561332ceebb7e160ce510dce5c6e7660c887a2e0a82dc227534f"} -2023-12-16T14:55:15.284Z INFO initializing dbft {"height": 9969, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:15.285Z debug frostfs-node/morph.go:229 new block {"index": 9968} -2023-12-16T14:55:15.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9968, "blockHeight": 9968, "took": "3.981666ms"} -2023-12-16T14:55:16.283Z INFO sending PrepareRequest {"height": 9969, "view": 0} -2023-12-16T14:55:16.283Z INFO sending Commit {"height": 9969, "view": 0} -2023-12-16T14:55:16.283Z INFO approving block {"height": 9969, "hash": "fad6b86e93b0f7b5e37696fe1f38f97fff97d9eda5683529cf81ec8565a8994d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0ecd7346f66e3fad50c75c326d0f993ad04105ba7641107b2edb79d4c40c7bc5"} -2023-12-16T14:55:16.284Z INFO initializing dbft {"height": 9970, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:16.285Z debug frostfs-node/morph.go:229 new block {"index": 9969} -2023-12-16T14:55:16.459Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9969, "blockHeight": 9969, "took": "3.524843ms"} -2023-12-16T14:55:17.285Z INFO sending PrepareRequest {"height": 9970, "view": 0} -2023-12-16T14:55:17.285Z INFO sending Commit {"height": 9970, "view": 0} -2023-12-16T14:55:17.285Z INFO approving block {"height": 9970, "hash": "acfdf7ed3270551ef20b1eed4e0d1f415ca7008df11fe574c362c22dc07af5e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fad6b86e93b0f7b5e37696fe1f38f97fff97d9eda5683529cf81ec8565a8994d"} -2023-12-16T14:55:17.288Z INFO initializing dbft {"height": 9971, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:17.288Z debug frostfs-node/morph.go:229 new block {"index": 9970} -2023-12-16T14:55:17.460Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9970, "blockHeight": 9970, "took": "4.779469ms"} -2023-12-16T14:55:18.286Z INFO sending PrepareRequest {"height": 9971, "view": 0} -2023-12-16T14:55:18.286Z INFO sending Commit {"height": 9971, "view": 0} -2023-12-16T14:55:18.287Z INFO approving block {"height": 9971, "hash": "e34d1042f5e8192e12b8f0c609ef081fa8ad0d63e56074982dbedbf9cfd13b6e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "acfdf7ed3270551ef20b1eed4e0d1f415ca7008df11fe574c362c22dc07af5e0"} -2023-12-16T14:55:18.288Z INFO initializing dbft {"height": 9972, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:18.288Z debug frostfs-node/morph.go:229 new block {"index": 9971} -2023-12-16T14:55:18.460Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9971, "blockHeight": 9971, "took": "3.852263ms"} -2023-12-16T14:55:19.288Z INFO sending PrepareRequest {"height": 9972, "view": 0} -2023-12-16T14:55:19.288Z INFO sending Commit {"height": 9972, "view": 0} -2023-12-16T14:55:19.288Z INFO approving block {"height": 9972, "hash": "3bc8594cdba910290f4a3f4308ab92dc96cab10b2bbcaafc8188449fa2c42c3e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e34d1042f5e8192e12b8f0c609ef081fa8ad0d63e56074982dbedbf9cfd13b6e"} -2023-12-16T14:55:19.289Z INFO initializing dbft {"height": 9973, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:19.289Z debug frostfs-node/morph.go:229 new block {"index": 9972} -2023-12-16T14:55:19.462Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9972, "blockHeight": 9972, "took": "4.660216ms"} -2023-12-16T14:55:20.289Z INFO sending PrepareRequest {"height": 9973, "view": 0} -2023-12-16T14:55:20.289Z INFO sending Commit {"height": 9973, "view": 0} -2023-12-16T14:55:20.289Z INFO approving block {"height": 9973, "hash": "584130a18f6a5541c1a5718a46ddf5a3babe480f31455452b4355b71a3c68d1a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bc8594cdba910290f4a3f4308ab92dc96cab10b2bbcaafc8188449fa2c42c3e"} -2023-12-16T14:55:20.291Z INFO initializing dbft {"height": 9974, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:20.292Z debug frostfs-node/morph.go:229 new block {"index": 9973} -2023-12-16T14:55:20.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9973, "blockHeight": 9973, "took": "5.713516ms"} -2023-12-16T14:55:21.291Z INFO sending PrepareRequest {"height": 9974, "view": 0} -2023-12-16T14:55:21.291Z INFO sending Commit {"height": 9974, "view": 0} -2023-12-16T14:55:21.291Z INFO approving block {"height": 9974, "hash": "0f5c4e42402821e4e3ba53ed7d3542e1f20694d0f551143ae054b4e7e2d76df1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "584130a18f6a5541c1a5718a46ddf5a3babe480f31455452b4355b71a3c68d1a"} -2023-12-16T14:55:21.293Z INFO initializing dbft {"height": 9975, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:21.294Z debug frostfs-node/morph.go:229 new block {"index": 9974} -2023-12-16T14:55:21.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9974, "blockHeight": 9974, "took": "5.431449ms"} -2023-12-16T14:55:22.292Z INFO sending PrepareRequest {"height": 9975, "view": 0} -2023-12-16T14:55:22.292Z INFO sending Commit {"height": 9975, "view": 0} -2023-12-16T14:55:22.292Z INFO approving block {"height": 9975, "hash": "44c5e44c5e263c792a2d83b0274447dacd066b4e7656674b8cfdd8945a4e0f5d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0f5c4e42402821e4e3ba53ed7d3542e1f20694d0f551143ae054b4e7e2d76df1"} -2023-12-16T14:55:22.293Z INFO initializing dbft {"height": 9976, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:22.293Z debug frostfs-node/morph.go:229 new block {"index": 9975} -2023-12-16T14:55:22.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9975, "blockHeight": 9975, "took": "4.12722ms"} -2023-12-16T14:55:23.293Z INFO sending PrepareRequest {"height": 9976, "view": 0} -2023-12-16T14:55:23.293Z INFO sending Commit {"height": 9976, "view": 0} -2023-12-16T14:55:23.293Z INFO approving block {"height": 9976, "hash": "4d59fe80398c4975d22dc9a6a28f90e52d2b99fa349c92d4e6c6a8b5784b8aee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "44c5e44c5e263c792a2d83b0274447dacd066b4e7656674b8cfdd8945a4e0f5d"} -2023-12-16T14:55:23.294Z INFO initializing dbft {"height": 9977, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:23.295Z debug frostfs-node/morph.go:229 new block {"index": 9976} -2023-12-16T14:55:23.463Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9976, "blockHeight": 9976, "took": "3.357648ms"} -2023-12-16T14:55:24.294Z INFO sending PrepareRequest {"height": 9977, "view": 0} -2023-12-16T14:55:24.295Z INFO sending Commit {"height": 9977, "view": 0} -2023-12-16T14:55:24.295Z INFO approving block {"height": 9977, "hash": "4363c83969f10ab48df198551bb9e3e4e6e53b08a8774d086511214a84ff018f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d59fe80398c4975d22dc9a6a28f90e52d2b99fa349c92d4e6c6a8b5784b8aee"} -2023-12-16T14:55:24.296Z INFO initializing dbft {"height": 9978, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:24.296Z debug frostfs-node/morph.go:229 new block {"index": 9977} -2023-12-16T14:55:24.464Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9977, "blockHeight": 9977, "took": "3.525132ms"} -2023-12-16T14:55:25.296Z INFO sending PrepareRequest {"height": 9978, "view": 0} -2023-12-16T14:55:25.296Z INFO sending Commit {"height": 9978, "view": 0} -2023-12-16T14:55:25.297Z INFO approving block {"height": 9978, "hash": "c7745f481dd280a1c5e7aa0785bb1ba7dc22154b3d2f5587737c4cd55b22e1ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4363c83969f10ab48df198551bb9e3e4e6e53b08a8774d086511214a84ff018f"} -2023-12-16T14:55:25.298Z INFO initializing dbft {"height": 9979, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:25.299Z debug frostfs-node/morph.go:229 new block {"index": 9978} -2023-12-16T14:55:25.465Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9978, "blockHeight": 9978, "took": "3.962856ms"} -2023-12-16T14:55:26.298Z INFO sending PrepareRequest {"height": 9979, "view": 0} -2023-12-16T14:55:26.298Z INFO sending Commit {"height": 9979, "view": 0} -2023-12-16T14:55:26.298Z INFO approving block {"height": 9979, "hash": "7387713ca3f6df7f8b7d9c72ddab6665a60f321093acded4cd5d2a36117041db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c7745f481dd280a1c5e7aa0785bb1ba7dc22154b3d2f5587737c4cd55b22e1ee"} -2023-12-16T14:55:26.299Z INFO initializing dbft {"height": 9980, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:26.300Z debug frostfs-node/morph.go:229 new block {"index": 9979} -2023-12-16T14:55:26.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9979, "blockHeight": 9979, "took": "6.136026ms"} -2023-12-16T14:55:27.299Z INFO sending PrepareRequest {"height": 9980, "view": 0} -2023-12-16T14:55:27.299Z INFO sending Commit {"height": 9980, "view": 0} -2023-12-16T14:55:27.300Z INFO approving block {"height": 9980, "hash": "693c714e0ff9e6ae3debce29ad6cf61db16cc4ac5e9ccb1c1a492c7e3e6f479d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7387713ca3f6df7f8b7d9c72ddab6665a60f321093acded4cd5d2a36117041db"} -2023-12-16T14:55:27.300Z INFO initializing dbft {"height": 9981, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:27.301Z debug frostfs-node/morph.go:229 new block {"index": 9980} -2023-12-16T14:55:27.466Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9980, "blockHeight": 9980, "took": "3.624476ms"} -2023-12-16T14:55:28.300Z INFO sending PrepareRequest {"height": 9981, "view": 0} -2023-12-16T14:55:28.301Z INFO sending Commit {"height": 9981, "view": 0} -2023-12-16T14:55:28.301Z INFO approving block {"height": 9981, "hash": "3d583b282aac7e1f0a6e4983731379142d8cc1a9a57a10b2bd57b3bdb50d956c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "693c714e0ff9e6ae3debce29ad6cf61db16cc4ac5e9ccb1c1a492c7e3e6f479d"} -2023-12-16T14:55:28.302Z INFO initializing dbft {"height": 9982, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:28.302Z debug frostfs-node/morph.go:229 new block {"index": 9981} -2023-12-16T14:55:28.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9981, "blockHeight": 9981, "took": "4.887932ms"} -2023-12-16T14:55:29.302Z INFO sending PrepareRequest {"height": 9982, "view": 0} -2023-12-16T14:55:29.302Z INFO sending Commit {"height": 9982, "view": 0} -2023-12-16T14:55:29.302Z INFO approving block {"height": 9982, "hash": "ba1fd7354f16ad3d8878716ad74deca3e724c1ec8f38cb28bc5a7e7d4c4a78f6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3d583b282aac7e1f0a6e4983731379142d8cc1a9a57a10b2bd57b3bdb50d956c"} -2023-12-16T14:55:29.303Z INFO initializing dbft {"height": 9983, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:29.303Z debug frostfs-node/morph.go:229 new block {"index": 9982} -2023-12-16T14:55:29.466Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9982, "blockHeight": 9982, "took": "3.156127ms"} -2023-12-16T14:55:30.303Z INFO sending PrepareRequest {"height": 9983, "view": 0} -2023-12-16T14:55:30.303Z INFO sending Commit {"height": 9983, "view": 0} -2023-12-16T14:55:30.304Z INFO approving block {"height": 9983, "hash": "3cbb6cf0ce8e33b02bf5a6b76fe15c8688113cc1a87ec703c619089fd756239f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ba1fd7354f16ad3d8878716ad74deca3e724c1ec8f38cb28bc5a7e7d4c4a78f6"} -2023-12-16T14:55:30.304Z INFO initializing dbft {"height": 9984, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:30.305Z debug frostfs-node/morph.go:229 new block {"index": 9983} -2023-12-16T14:55:30.467Z INFO persisted to disk {"blocks": 1, "keys": 29, "headerHeight": 9983, "blockHeight": 9983, "took": "3.390218ms"} -2023-12-16T14:55:31.305Z INFO sending PrepareRequest {"height": 9984, "view": 0} -2023-12-16T14:55:31.305Z INFO sending Commit {"height": 9984, "view": 0} -2023-12-16T14:55:31.305Z INFO approving block {"height": 9984, "hash": "6d8b914f5814719646a919cbc0cefe8817fd604a6b1537470560434c425ca93e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3cbb6cf0ce8e33b02bf5a6b76fe15c8688113cc1a87ec703c619089fd756239f"} -2023-12-16T14:55:31.307Z INFO initializing dbft {"height": 9985, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:31.307Z debug frostfs-node/morph.go:229 new block {"index": 9984} -2023-12-16T14:55:31.469Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9984, "blockHeight": 9984, "took": "4.843127ms"} -2023-12-16T14:55:32.306Z INFO sending PrepareRequest {"height": 9985, "view": 0} -2023-12-16T14:55:32.306Z INFO sending Commit {"height": 9985, "view": 0} -2023-12-16T14:55:32.306Z INFO approving block {"height": 9985, "hash": "dd6b55100e15c1ad7cb8a330969c25049518ed039a4597fd7666ce0be54e3c91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6d8b914f5814719646a919cbc0cefe8817fd604a6b1537470560434c425ca93e"} -2023-12-16T14:55:32.307Z INFO initializing dbft {"height": 9986, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:32.308Z debug frostfs-node/morph.go:229 new block {"index": 9985} -2023-12-16T14:55:32.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9985, "blockHeight": 9985, "took": "4.008527ms"} -2023-12-16T14:55:33.307Z INFO sending PrepareRequest {"height": 9986, "view": 0} -2023-12-16T14:55:33.308Z INFO sending Commit {"height": 9986, "view": 0} -2023-12-16T14:55:33.308Z INFO approving block {"height": 9986, "hash": "935bf49f845cd8c02f1dbdb40ebd3016431f661baf6e8a0825d1986e3f7ca598", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "dd6b55100e15c1ad7cb8a330969c25049518ed039a4597fd7666ce0be54e3c91"} -2023-12-16T14:55:33.308Z INFO initializing dbft {"height": 9987, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:33.309Z debug frostfs-node/morph.go:229 new block {"index": 9986} -2023-12-16T14:55:33.469Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9986, "blockHeight": 9986, "took": "4.672516ms"} -2023-12-16T14:55:34.309Z INFO sending PrepareRequest {"height": 9987, "view": 0} -2023-12-16T14:55:34.309Z INFO sending Commit {"height": 9987, "view": 0} -2023-12-16T14:55:34.309Z INFO approving block {"height": 9987, "hash": "cbe7827cffa5fb50b25b569aed64e1890edaad1db07052994b5b799ac0267464", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "935bf49f845cd8c02f1dbdb40ebd3016431f661baf6e8a0825d1986e3f7ca598"} -2023-12-16T14:55:34.310Z INFO initializing dbft {"height": 9988, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:34.310Z debug frostfs-node/morph.go:229 new block {"index": 9987} -2023-12-16T14:55:34.468Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9987, "blockHeight": 9987, "took": "3.239475ms"} -2023-12-16T14:55:35.310Z INFO sending PrepareRequest {"height": 9988, "view": 0} -2023-12-16T14:55:35.310Z INFO sending Commit {"height": 9988, "view": 0} -2023-12-16T14:55:35.310Z INFO approving block {"height": 9988, "hash": "8eb8d351a83efaa593020f40f406adc67da769fb58b610d748e76e918970f434", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbe7827cffa5fb50b25b569aed64e1890edaad1db07052994b5b799ac0267464"} -2023-12-16T14:55:35.311Z INFO initializing dbft {"height": 9989, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:35.312Z debug frostfs-node/morph.go:229 new block {"index": 9988} -2023-12-16T14:55:35.470Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9988, "blockHeight": 9988, "took": "4.960355ms"} -2023-12-16T14:55:36.311Z INFO sending PrepareRequest {"height": 9989, "view": 0} -2023-12-16T14:55:36.312Z INFO sending Commit {"height": 9989, "view": 0} -2023-12-16T14:55:36.312Z INFO approving block {"height": 9989, "hash": "8cc154f058e973f0e1d9f82a1f756a0425d191c2e39151c4372e61853981171c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8eb8d351a83efaa593020f40f406adc67da769fb58b610d748e76e918970f434"} -2023-12-16T14:55:36.313Z INFO initializing dbft {"height": 9990, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:36.313Z debug frostfs-node/morph.go:229 new block {"index": 9989} -2023-12-16T14:55:36.474Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9989, "blockHeight": 9989, "took": "8.224011ms"} -2023-12-16T14:55:37.313Z INFO sending PrepareRequest {"height": 9990, "view": 0} -2023-12-16T14:55:37.313Z INFO sending Commit {"height": 9990, "view": 0} -2023-12-16T14:55:37.313Z INFO approving block {"height": 9990, "hash": "15e716912d421c099530f7da79b460cf11d14ae83796878e3e8207ff5a287b8a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8cc154f058e973f0e1d9f82a1f756a0425d191c2e39151c4372e61853981171c"} -2023-12-16T14:55:37.314Z INFO initializing dbft {"height": 9991, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:37.315Z debug frostfs-node/morph.go:229 new block {"index": 9990} -2023-12-16T14:55:37.475Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9990, "blockHeight": 9990, "took": "8.065484ms"} -2023-12-16T14:55:38.314Z INFO sending PrepareRequest {"height": 9991, "view": 0} -2023-12-16T14:55:38.314Z INFO sending Commit {"height": 9991, "view": 0} -2023-12-16T14:55:38.314Z INFO approving block {"height": 9991, "hash": "a66d97431369a76f7c0546ccb5dcbb5a207d4c236df6061ecd5b6bbd3c20036b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15e716912d421c099530f7da79b460cf11d14ae83796878e3e8207ff5a287b8a"} -2023-12-16T14:55:38.315Z INFO initializing dbft {"height": 9992, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:38.316Z debug frostfs-node/morph.go:229 new block {"index": 9991} -2023-12-16T14:55:38.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9991, "blockHeight": 9991, "took": "5.058945ms"} -2023-12-16T14:55:39.316Z INFO sending PrepareRequest {"height": 9992, "view": 0} -2023-12-16T14:55:39.316Z INFO sending Commit {"height": 9992, "view": 0} -2023-12-16T14:55:39.316Z INFO approving block {"height": 9992, "hash": "fada5ae77ac618b35d59c5a72a8bf80254541d063787401bf429458b387f6832", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a66d97431369a76f7c0546ccb5dcbb5a207d4c236df6061ecd5b6bbd3c20036b"} -2023-12-16T14:55:39.317Z INFO initializing dbft {"height": 9993, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:39.317Z debug frostfs-node/morph.go:229 new block {"index": 9992} -2023-12-16T14:55:39.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9992, "blockHeight": 9992, "took": "4.581304ms"} -2023-12-16T14:55:40.317Z INFO sending PrepareRequest {"height": 9993, "view": 0} -2023-12-16T14:55:40.317Z INFO sending Commit {"height": 9993, "view": 0} -2023-12-16T14:55:40.318Z INFO approving block {"height": 9993, "hash": "2b5b6988329bbff25d5b3837b1638a7e541a6a61cab8d92c19f80caf6082f1df", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fada5ae77ac618b35d59c5a72a8bf80254541d063787401bf429458b387f6832"} -2023-12-16T14:55:40.319Z INFO initializing dbft {"height": 9994, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:40.319Z debug frostfs-node/morph.go:229 new block {"index": 9993} -2023-12-16T14:55:40.473Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9993, "blockHeight": 9993, "took": "4.34539ms"} -2023-12-16T14:55:41.319Z INFO sending PrepareRequest {"height": 9994, "view": 0} -2023-12-16T14:55:41.319Z INFO sending Commit {"height": 9994, "view": 0} -2023-12-16T14:55:41.319Z INFO approving block {"height": 9994, "hash": "5b02c7b2eea991bc6a468a1df95c5c2b52727d2ffa3e286932a61a6e7490d2cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2b5b6988329bbff25d5b3837b1638a7e541a6a61cab8d92c19f80caf6082f1df"} -2023-12-16T14:55:41.320Z INFO initializing dbft {"height": 9995, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:41.320Z debug frostfs-node/morph.go:229 new block {"index": 9994} -2023-12-16T14:55:41.476Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9994, "blockHeight": 9994, "took": "7.817028ms"} -2023-12-16T14:55:42.320Z INFO sending PrepareRequest {"height": 9995, "view": 0} -2023-12-16T14:55:42.320Z INFO sending Commit {"height": 9995, "view": 0} -2023-12-16T14:55:42.321Z INFO approving block {"height": 9995, "hash": "be87d6bcd3a790db94647dad797ac9c0a0430b52064e6837f032865d1fbd0727", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5b02c7b2eea991bc6a468a1df95c5c2b52727d2ffa3e286932a61a6e7490d2cd"} -2023-12-16T14:55:42.321Z INFO initializing dbft {"height": 9996, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:42.322Z debug frostfs-node/morph.go:229 new block {"index": 9995} -2023-12-16T14:55:42.472Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9995, "blockHeight": 9995, "took": "3.091002ms"} -2023-12-16T14:55:43.321Z INFO sending PrepareRequest {"height": 9996, "view": 0} -2023-12-16T14:55:43.322Z INFO sending Commit {"height": 9996, "view": 0} -2023-12-16T14:55:43.322Z INFO approving block {"height": 9996, "hash": "6ac2b40e5c08cf3fc1e6668c4adcadf4a740320e38203fd8970a489c1411766a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "be87d6bcd3a790db94647dad797ac9c0a0430b52064e6837f032865d1fbd0727"} -2023-12-16T14:55:43.323Z INFO initializing dbft {"height": 9997, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:43.323Z debug frostfs-node/morph.go:229 new block {"index": 9996} -2023-12-16T14:55:43.475Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9996, "blockHeight": 9996, "took": "5.808157ms"} -2023-12-16T14:55:44.323Z INFO sending PrepareRequest {"height": 9997, "view": 0} -2023-12-16T14:55:44.323Z INFO sending Commit {"height": 9997, "view": 0} -2023-12-16T14:55:44.323Z INFO approving block {"height": 9997, "hash": "91c3c2618c546a80adb97b47f61b6ff5e55361fcfcab47444318f6634733271c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6ac2b40e5c08cf3fc1e6668c4adcadf4a740320e38203fd8970a489c1411766a"} -2023-12-16T14:55:44.324Z INFO initializing dbft {"height": 9998, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:44.324Z debug frostfs-node/morph.go:229 new block {"index": 9997} -2023-12-16T14:55:44.477Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9997, "blockHeight": 9997, "took": "6.101649ms"} -2023-12-16T14:55:45.324Z INFO sending PrepareRequest {"height": 9998, "view": 0} -2023-12-16T14:55:45.324Z INFO sending Commit {"height": 9998, "view": 0} -2023-12-16T14:55:45.325Z INFO approving block {"height": 9998, "hash": "71bf154db596562760696ac2cfba78528381d7a58c8fb2049611dc0468bed906", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "91c3c2618c546a80adb97b47f61b6ff5e55361fcfcab47444318f6634733271c"} -2023-12-16T14:55:45.326Z INFO initializing dbft {"height": 9999, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:45.327Z debug frostfs-node/morph.go:229 new block {"index": 9998} -2023-12-16T14:55:45.477Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 9998, "blockHeight": 9998, "took": "4.738641ms"} -2023-12-16T14:55:46.325Z INFO sending PrepareRequest {"height": 9999, "view": 0} -2023-12-16T14:55:46.326Z INFO sending Commit {"height": 9999, "view": 0} -2023-12-16T14:55:46.326Z INFO approving block {"height": 9999, "hash": "f29e09822badcf460c815a39ddc5cced91be058b766599bf34d08c6713347828", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "71bf154db596562760696ac2cfba78528381d7a58c8fb2049611dc0468bed906"} -2023-12-16T14:55:46.329Z INFO initializing dbft {"height": 10000, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:46.329Z debug frostfs-node/morph.go:229 new block {"index": 9999} -2023-12-16T14:55:46.482Z INFO persisted to disk {"blocks": 1, "keys": 31, "headerHeight": 9999, "blockHeight": 9999, "took": "10.204328ms"} -2023-12-16T14:55:47.327Z INFO sending PrepareRequest {"height": 10000, "view": 0} -2023-12-16T14:55:47.327Z INFO sending Commit {"height": 10000, "view": 0} -2023-12-16T14:55:47.327Z INFO approving block {"height": 10000, "hash": "dce786555386e63f88db078deca5e99019c6466ed8bb413864ef626d85d20f51", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f29e09822badcf460c815a39ddc5cced91be058b766599bf34d08c6713347828"} -2023-12-16T14:55:47.329Z INFO initializing dbft {"height": 10001, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:47.329Z debug frostfs-node/morph.go:229 new block {"index": 10000} -2023-12-16T14:55:47.333Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 42, "iteration": 1, "error": "no data for 0 iteration in 42 epoch for consumers's trusts"} -2023-12-16T14:55:47.334Z info settlement/calls.go:61 start basic income collection {"epoch": 42} -2023-12-16T14:55:47.334Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:55:47.334Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:55:47.335Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:55:47.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10000, "blockHeight": 10000, "took": "5.093128ms"} -2023-12-16T14:55:48.328Z INFO sending PrepareRequest {"height": 10001, "view": 0} -2023-12-16T14:55:48.329Z INFO sending Commit {"height": 10001, "view": 0} -2023-12-16T14:55:48.329Z INFO approving block {"height": 10001, "hash": "e772f48dbe658159c03538cafe5ccbde5be31769286a186efcc1243262cf3573", "tx_count": 2, "merkle": "f65ab9236fe541a479b05a823ed84328ae40f4bc4f5fe4d4cb93623e96e4bc8f", "prev": "dce786555386e63f88db078deca5e99019c6466ed8bb413864ef626d85d20f51"} -2023-12-16T14:55:48.329Z INFO runtime log {"tx": "6708cd00713c86b56e172cb0343903596f516321ea1962d036384aef67a9e170", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:55:48.329Z INFO runtime log {"tx": "6708cd00713c86b56e172cb0343903596f516321ea1962d036384aef67a9e170", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:55:48.330Z INFO initializing dbft {"height": 10002, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:48.331Z debug frostfs-node/morph.go:229 new block {"index": 10001} -2023-12-16T14:55:48.480Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 10001, "blockHeight": 10001, "took": "6.198403ms"} -2023-12-16T14:55:49.329Z INFO sending PrepareRequest {"height": 10002, "view": 0} -2023-12-16T14:55:49.330Z INFO sending Commit {"height": 10002, "view": 0} -2023-12-16T14:55:49.330Z INFO approving block {"height": 10002, "hash": "db8fc58283d165817e18e788dffebbd63951e837118b9fd9aef1c38b202d42bf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e772f48dbe658159c03538cafe5ccbde5be31769286a186efcc1243262cf3573"} -2023-12-16T14:55:49.331Z INFO initializing dbft {"height": 10003, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:49.332Z debug frostfs-node/morph.go:229 new block {"index": 10002} -2023-12-16T14:55:49.478Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10002, "blockHeight": 10002, "took": "4.039476ms"} -2023-12-16T14:55:50.330Z INFO sending PrepareRequest {"height": 10003, "view": 0} -2023-12-16T14:55:50.331Z INFO sending Commit {"height": 10003, "view": 0} -2023-12-16T14:55:50.331Z INFO approving block {"height": 10003, "hash": "9bbea785f274e5e53c5eca744fcaf1a58d8b848f1ecfda9934f3e0902086ad70", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db8fc58283d165817e18e788dffebbd63951e837118b9fd9aef1c38b202d42bf"} -2023-12-16T14:55:50.332Z INFO initializing dbft {"height": 10004, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:50.332Z debug frostfs-node/morph.go:229 new block {"index": 10003} -2023-12-16T14:55:50.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10003, "blockHeight": 10003, "took": "4.314356ms"} -2023-12-16T14:55:51.332Z INFO sending PrepareRequest {"height": 10004, "view": 0} -2023-12-16T14:55:51.332Z INFO sending Commit {"height": 10004, "view": 0} -2023-12-16T14:55:51.332Z INFO approving block {"height": 10004, "hash": "04b32db932b1297d8fd3aabec5304798fd4ad08398489d825f265ec2dd9f3267", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9bbea785f274e5e53c5eca744fcaf1a58d8b848f1ecfda9934f3e0902086ad70"} -2023-12-16T14:55:51.333Z INFO initializing dbft {"height": 10005, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:51.334Z debug frostfs-node/morph.go:229 new block {"index": 10004} -2023-12-16T14:55:51.480Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10004, "blockHeight": 10004, "took": "4.29597ms"} -2023-12-16T14:55:52.333Z INFO sending PrepareRequest {"height": 10005, "view": 0} -2023-12-16T14:55:52.334Z INFO sending Commit {"height": 10005, "view": 0} -2023-12-16T14:55:52.334Z INFO approving block {"height": 10005, "hash": "c651e6ef51dad71eb7af2420d29f7033b8299ec1c94cff282f6ce0d6f75c8940", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "04b32db932b1297d8fd3aabec5304798fd4ad08398489d825f265ec2dd9f3267"} -2023-12-16T14:55:52.335Z INFO initializing dbft {"height": 10006, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:52.336Z debug frostfs-node/morph.go:229 new block {"index": 10005} -2023-12-16T14:55:52.482Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10005, "blockHeight": 10005, "took": "5.946923ms"} -2023-12-16T14:55:53.335Z INFO sending PrepareRequest {"height": 10006, "view": 0} -2023-12-16T14:55:53.335Z INFO sending Commit {"height": 10006, "view": 0} -2023-12-16T14:55:53.336Z INFO approving block {"height": 10006, "hash": "9fdff54cdf808905d739f73effa3dd44f1a8132d07eb55ba1237fb5f30e647e0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c651e6ef51dad71eb7af2420d29f7033b8299ec1c94cff282f6ce0d6f75c8940"} -2023-12-16T14:55:53.336Z INFO initializing dbft {"height": 10007, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:53.337Z debug frostfs-node/morph.go:229 new block {"index": 10006} -2023-12-16T14:55:53.483Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10006, "blockHeight": 10006, "took": "4.961273ms"} -2023-12-16T14:55:54.337Z INFO sending PrepareRequest {"height": 10007, "view": 0} -2023-12-16T14:55:54.337Z INFO sending Commit {"height": 10007, "view": 0} -2023-12-16T14:55:54.337Z INFO approving block {"height": 10007, "hash": "ceb0374a4ac889d7ec7a4d276841d178e0eb70b5bcf0c084361fd54de60c1f4c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fdff54cdf808905d739f73effa3dd44f1a8132d07eb55ba1237fb5f30e647e0"} -2023-12-16T14:55:54.338Z INFO initializing dbft {"height": 10008, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:54.339Z debug frostfs-node/morph.go:229 new block {"index": 10007} -2023-12-16T14:55:54.483Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10007, "blockHeight": 10007, "took": "4.216773ms"} -2023-12-16T14:55:55.338Z INFO sending PrepareRequest {"height": 10008, "view": 0} -2023-12-16T14:55:55.338Z INFO sending Commit {"height": 10008, "view": 0} -2023-12-16T14:55:55.339Z INFO approving block {"height": 10008, "hash": "9aeb2cfe638ffa105a4a4f701cd91ffc47a1e6a3cae4a0d7b698577370d9d9bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ceb0374a4ac889d7ec7a4d276841d178e0eb70b5bcf0c084361fd54de60c1f4c"} -2023-12-16T14:55:55.339Z INFO initializing dbft {"height": 10009, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:55.340Z debug frostfs-node/morph.go:229 new block {"index": 10008} -2023-12-16T14:55:55.482Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10008, "blockHeight": 10008, "took": "3.137592ms"} -2023-12-16T14:55:56.340Z INFO sending PrepareRequest {"height": 10009, "view": 0} -2023-12-16T14:55:56.340Z INFO sending Commit {"height": 10009, "view": 0} -2023-12-16T14:55:56.340Z INFO approving block {"height": 10009, "hash": "45e4d3b66ba592a5a33ca7b2699629bf78187a7b57cf666608f8dbf8b1fa3883", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9aeb2cfe638ffa105a4a4f701cd91ffc47a1e6a3cae4a0d7b698577370d9d9bb"} -2023-12-16T14:55:56.341Z INFO initializing dbft {"height": 10010, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:56.341Z debug frostfs-node/morph.go:229 new block {"index": 10009} -2023-12-16T14:55:56.484Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10009, "blockHeight": 10009, "took": "4.087909ms"} -2023-12-16T14:55:57.342Z INFO sending PrepareRequest {"height": 10010, "view": 0} -2023-12-16T14:55:57.342Z INFO sending Commit {"height": 10010, "view": 0} -2023-12-16T14:55:57.342Z INFO approving block {"height": 10010, "hash": "9d3c8fe44c5e4885592c0addef048fffd605b8c170ddc7630820e4b77336d2b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "45e4d3b66ba592a5a33ca7b2699629bf78187a7b57cf666608f8dbf8b1fa3883"} -2023-12-16T14:55:57.344Z INFO initializing dbft {"height": 10011, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:57.345Z debug frostfs-node/morph.go:229 new block {"index": 10010} -2023-12-16T14:55:57.487Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10010, "blockHeight": 10010, "took": "6.173499ms"} -2023-12-16T14:55:58.344Z INFO sending PrepareRequest {"height": 10011, "view": 0} -2023-12-16T14:55:58.344Z INFO sending Commit {"height": 10011, "view": 0} -2023-12-16T14:55:58.344Z INFO approving block {"height": 10011, "hash": "2216f282959a0004e54e0eb3539049b435cd290dc0b2cba88031c2be544321ab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9d3c8fe44c5e4885592c0addef048fffd605b8c170ddc7630820e4b77336d2b4"} -2023-12-16T14:55:58.346Z INFO initializing dbft {"height": 10012, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:58.346Z debug frostfs-node/morph.go:229 new block {"index": 10011} -2023-12-16T14:55:58.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10011, "blockHeight": 10011, "took": "6.112228ms"} -2023-12-16T14:55:59.346Z INFO sending PrepareRequest {"height": 10012, "view": 0} -2023-12-16T14:55:59.346Z INFO sending Commit {"height": 10012, "view": 0} -2023-12-16T14:55:59.346Z INFO approving block {"height": 10012, "hash": "0472bc18181bd0cb9e07436b50022cfe1804d4845a5fdd476d4624e4facf3a50", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "2216f282959a0004e54e0eb3539049b435cd290dc0b2cba88031c2be544321ab"} -2023-12-16T14:55:59.348Z INFO initializing dbft {"height": 10013, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:55:59.348Z debug frostfs-node/morph.go:229 new block {"index": 10012} -2023-12-16T14:55:59.487Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10012, "blockHeight": 10012, "took": "4.14778ms"} -2023-12-16T14:56:00.348Z INFO sending PrepareRequest {"height": 10013, "view": 0} -2023-12-16T14:56:00.348Z INFO sending Commit {"height": 10013, "view": 0} -2023-12-16T14:56:00.348Z INFO approving block {"height": 10013, "hash": "0699337277927659856524b685b54d92b68940b6f54ecc8f8deb1cfec64b1ac4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0472bc18181bd0cb9e07436b50022cfe1804d4845a5fdd476d4624e4facf3a50"} -2023-12-16T14:56:00.349Z INFO initializing dbft {"height": 10014, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:00.349Z debug frostfs-node/morph.go:229 new block {"index": 10013} -2023-12-16T14:56:00.489Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10013, "blockHeight": 10013, "took": "4.441435ms"} -2023-12-16T14:56:01.350Z INFO sending PrepareRequest {"height": 10014, "view": 0} -2023-12-16T14:56:01.350Z INFO sending Commit {"height": 10014, "view": 0} -2023-12-16T14:56:01.350Z INFO approving block {"height": 10014, "hash": "abe7b4fc644cacf66b8dde3869649e802a0354989389383c5b686dbdd7ea094d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0699337277927659856524b685b54d92b68940b6f54ecc8f8deb1cfec64b1ac4"} -2023-12-16T14:56:01.351Z INFO initializing dbft {"height": 10015, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:01.352Z debug frostfs-node/morph.go:229 new block {"index": 10014} -2023-12-16T14:56:01.488Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10014, "blockHeight": 10014, "took": "3.700241ms"} -2023-12-16T14:56:02.351Z INFO sending PrepareRequest {"height": 10015, "view": 0} -2023-12-16T14:56:02.351Z INFO sending Commit {"height": 10015, "view": 0} -2023-12-16T14:56:02.352Z INFO approving block {"height": 10015, "hash": "d6467874eaf32469d4b467f9eee9c954c4b9519a789c9bf88daf0d8107f2ca7e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "abe7b4fc644cacf66b8dde3869649e802a0354989389383c5b686dbdd7ea094d"} -2023-12-16T14:56:02.353Z INFO initializing dbft {"height": 10016, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:02.353Z debug frostfs-node/morph.go:229 new block {"index": 10015} -2023-12-16T14:56:02.489Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10015, "blockHeight": 10015, "took": "3.884744ms"} -2023-12-16T14:56:03.352Z INFO sending PrepareRequest {"height": 10016, "view": 0} -2023-12-16T14:56:03.353Z INFO sending Commit {"height": 10016, "view": 0} -2023-12-16T14:56:03.353Z INFO approving block {"height": 10016, "hash": "a551e9e756d41adfc9b398a351fee7c72cf1dc67891e9348226a11864f6306a1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d6467874eaf32469d4b467f9eee9c954c4b9519a789c9bf88daf0d8107f2ca7e"} -2023-12-16T14:56:03.354Z INFO initializing dbft {"height": 10017, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:03.354Z debug frostfs-node/morph.go:229 new block {"index": 10016} -2023-12-16T14:56:03.489Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10016, "blockHeight": 10016, "took": "3.611025ms"} -2023-12-16T14:56:04.353Z INFO sending PrepareRequest {"height": 10017, "view": 0} -2023-12-16T14:56:04.354Z INFO sending Commit {"height": 10017, "view": 0} -2023-12-16T14:56:04.354Z INFO approving block {"height": 10017, "hash": "bfb265cfb246dd416e44209c4c1d67c69996fe465578eafecbd716f7896bcb86", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a551e9e756d41adfc9b398a351fee7c72cf1dc67891e9348226a11864f6306a1"} -2023-12-16T14:56:04.355Z INFO initializing dbft {"height": 10018, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:04.356Z debug frostfs-node/morph.go:229 new block {"index": 10017} -2023-12-16T14:56:04.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10017, "blockHeight": 10017, "took": "3.720978ms"} -2023-12-16T14:56:05.355Z INFO sending PrepareRequest {"height": 10018, "view": 0} -2023-12-16T14:56:05.355Z INFO sending Commit {"height": 10018, "view": 0} -2023-12-16T14:56:05.355Z INFO approving block {"height": 10018, "hash": "fbb5ed921395fd60c569b7e3b5db5d9dd913ca5c1e5880911a95bf79b22067b4", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bfb265cfb246dd416e44209c4c1d67c69996fe465578eafecbd716f7896bcb86"} -2023-12-16T14:56:05.356Z INFO initializing dbft {"height": 10019, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:05.357Z debug frostfs-node/morph.go:229 new block {"index": 10018} -2023-12-16T14:56:05.490Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10018, "blockHeight": 10018, "took": "3.296646ms"} -2023-12-16T14:56:06.356Z INFO sending PrepareRequest {"height": 10019, "view": 0} -2023-12-16T14:56:06.356Z INFO sending Commit {"height": 10019, "view": 0} -2023-12-16T14:56:06.357Z INFO approving block {"height": 10019, "hash": "1109c6346e005a743d83eaaff4e581fc2ecd7d0167f6212b0a9726364d4e3551", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbb5ed921395fd60c569b7e3b5db5d9dd913ca5c1e5880911a95bf79b22067b4"} -2023-12-16T14:56:06.357Z INFO initializing dbft {"height": 10020, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:06.358Z debug frostfs-node/morph.go:229 new block {"index": 10019} -2023-12-16T14:56:06.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10019, "blockHeight": 10019, "took": "4.760702ms"} -2023-12-16T14:56:07.357Z INFO sending PrepareRequest {"height": 10020, "view": 0} -2023-12-16T14:56:07.357Z INFO sending Commit {"height": 10020, "view": 0} -2023-12-16T14:56:07.358Z INFO approving block {"height": 10020, "hash": "f53d0c215da2282893720564cfd037e32989c4ecdc0613f290012c48d9848f95", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1109c6346e005a743d83eaaff4e581fc2ecd7d0167f6212b0a9726364d4e3551"} -2023-12-16T14:56:07.359Z INFO initializing dbft {"height": 10021, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:07.359Z debug frostfs-node/morph.go:229 new block {"index": 10020} -2023-12-16T14:56:07.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10020, "blockHeight": 10020, "took": "4.130615ms"} -2023-12-16T14:56:08.358Z INFO sending PrepareRequest {"height": 10021, "view": 0} -2023-12-16T14:56:08.358Z INFO sending Commit {"height": 10021, "view": 0} -2023-12-16T14:56:08.359Z INFO approving block {"height": 10021, "hash": "e776270bae1f520be1ce2af72216e2acbbaaba678e5542cde3e6b2bf8cd9ecdb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f53d0c215da2282893720564cfd037e32989c4ecdc0613f290012c48d9848f95"} -2023-12-16T14:56:08.360Z INFO initializing dbft {"height": 10022, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:08.360Z debug frostfs-node/morph.go:229 new block {"index": 10021} -2023-12-16T14:56:08.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10021, "blockHeight": 10021, "took": "3.302727ms"} -2023-12-16T14:56:09.360Z INFO sending PrepareRequest {"height": 10022, "view": 0} -2023-12-16T14:56:09.360Z INFO sending Commit {"height": 10022, "view": 0} -2023-12-16T14:56:09.360Z INFO approving block {"height": 10022, "hash": "602e70a0ebb422a42a53c11930e39769591fb0552d79e29a694277c7b10677cc", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e776270bae1f520be1ce2af72216e2acbbaaba678e5542cde3e6b2bf8cd9ecdb"} -2023-12-16T14:56:09.361Z INFO initializing dbft {"height": 10023, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:09.362Z debug frostfs-node/morph.go:229 new block {"index": 10022} -2023-12-16T14:56:09.492Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10022, "blockHeight": 10022, "took": "3.10023ms"} -2023-12-16T14:56:10.361Z INFO sending PrepareRequest {"height": 10023, "view": 0} -2023-12-16T14:56:10.362Z INFO sending Commit {"height": 10023, "view": 0} -2023-12-16T14:56:10.362Z INFO approving block {"height": 10023, "hash": "70303359c05fff9e23c82a8c7c0e7e4e76ef31b500206a5bd0bef0f39acec3ee", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "602e70a0ebb422a42a53c11930e39769591fb0552d79e29a694277c7b10677cc"} -2023-12-16T14:56:10.363Z INFO initializing dbft {"height": 10024, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:10.363Z debug frostfs-node/morph.go:229 new block {"index": 10023} -2023-12-16T14:56:10.494Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10023, "blockHeight": 10023, "took": "4.597454ms"} -2023-12-16T14:56:11.363Z INFO sending PrepareRequest {"height": 10024, "view": 0} -2023-12-16T14:56:11.363Z INFO sending Commit {"height": 10024, "view": 0} -2023-12-16T14:56:11.363Z INFO approving block {"height": 10024, "hash": "fa1cbda31f92cf229e4d06a29b8498a8349f27a6ec195538fc3c539fcf2ea399", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "70303359c05fff9e23c82a8c7c0e7e4e76ef31b500206a5bd0bef0f39acec3ee"} -2023-12-16T14:56:11.364Z INFO initializing dbft {"height": 10025, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:11.365Z debug frostfs-node/morph.go:229 new block {"index": 10024} -2023-12-16T14:56:11.495Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10024, "blockHeight": 10024, "took": "4.80009ms"} -2023-12-16T14:56:12.364Z INFO sending PrepareRequest {"height": 10025, "view": 0} -2023-12-16T14:56:12.364Z INFO sending Commit {"height": 10025, "view": 0} -2023-12-16T14:56:12.365Z INFO approving block {"height": 10025, "hash": "5a82b4402a35a9d6898a8eb2f20842832a7670f005fa7bbfc94ff72b15d606bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fa1cbda31f92cf229e4d06a29b8498a8349f27a6ec195538fc3c539fcf2ea399"} -2023-12-16T14:56:12.365Z INFO initializing dbft {"height": 10026, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:12.366Z debug frostfs-node/morph.go:229 new block {"index": 10025} -2023-12-16T14:56:12.495Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10025, "blockHeight": 10025, "took": "4.12187ms"} -2023-12-16T14:56:13.365Z INFO sending PrepareRequest {"height": 10026, "view": 0} -2023-12-16T14:56:13.365Z INFO sending Commit {"height": 10026, "view": 0} -2023-12-16T14:56:13.366Z INFO approving block {"height": 10026, "hash": "57e5641146734af26f1b20788bc4ece82c3a85a268fd2ff452b6e72166550b31", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a82b4402a35a9d6898a8eb2f20842832a7670f005fa7bbfc94ff72b15d606bb"} -2023-12-16T14:56:13.367Z INFO initializing dbft {"height": 10027, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:13.367Z debug frostfs-node/morph.go:229 new block {"index": 10026} -2023-12-16T14:56:13.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10026, "blockHeight": 10026, "took": "4.519412ms"} -2023-12-16T14:56:14.367Z INFO sending PrepareRequest {"height": 10027, "view": 0} -2023-12-16T14:56:14.367Z INFO sending Commit {"height": 10027, "view": 0} -2023-12-16T14:56:14.367Z INFO approving block {"height": 10027, "hash": "cbcde43b1d10977415131b0b853b9fdd4f2fa0add2bf3ec4f89f3375300fd494", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "57e5641146734af26f1b20788bc4ece82c3a85a268fd2ff452b6e72166550b31"} -2023-12-16T14:56:14.368Z INFO initializing dbft {"height": 10028, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:14.368Z debug frostfs-node/morph.go:229 new block {"index": 10027} -2023-12-16T14:56:14.495Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10027, "blockHeight": 10027, "took": "3.158352ms"} -2023-12-16T14:56:15.368Z INFO sending PrepareRequest {"height": 10028, "view": 0} -2023-12-16T14:56:15.368Z INFO sending Commit {"height": 10028, "view": 0} -2023-12-16T14:56:15.369Z INFO approving block {"height": 10028, "hash": "9bb34138d24592b843fe9f98442e671f43e7117a0470aba1631d54acf9a036db", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbcde43b1d10977415131b0b853b9fdd4f2fa0add2bf3ec4f89f3375300fd494"} -2023-12-16T14:56:15.370Z INFO initializing dbft {"height": 10029, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:15.370Z debug frostfs-node/morph.go:229 new block {"index": 10028} -2023-12-16T14:56:15.496Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10028, "blockHeight": 10028, "took": "3.728268ms"} -2023-12-16T14:56:16.370Z INFO sending PrepareRequest {"height": 10029, "view": 0} -2023-12-16T14:56:16.370Z INFO sending Commit {"height": 10029, "view": 0} -2023-12-16T14:56:16.371Z INFO approving block {"height": 10029, "hash": "02a9d09329fbf9f1083feaa7272871b98aa167b6752781ad55585f4291c42371", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9bb34138d24592b843fe9f98442e671f43e7117a0470aba1631d54acf9a036db"} -2023-12-16T14:56:16.372Z INFO initializing dbft {"height": 10030, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:16.373Z debug frostfs-node/morph.go:229 new block {"index": 10029} -2023-12-16T14:56:16.499Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10029, "blockHeight": 10029, "took": "5.899699ms"} -2023-12-16T14:56:17.372Z INFO sending PrepareRequest {"height": 10030, "view": 0} -2023-12-16T14:56:17.372Z INFO sending Commit {"height": 10030, "view": 0} -2023-12-16T14:56:17.373Z INFO approving block {"height": 10030, "hash": "38b1d75b1729af1adc64b7de6ddbf515d14daf68b0a72b5f0f44bb88be28a271", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "02a9d09329fbf9f1083feaa7272871b98aa167b6752781ad55585f4291c42371"} -2023-12-16T14:56:17.374Z INFO initializing dbft {"height": 10031, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:17.374Z debug frostfs-node/morph.go:229 new block {"index": 10030} -2023-12-16T14:56:17.498Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10030, "blockHeight": 10030, "took": "3.894451ms"} -2023-12-16T14:56:18.374Z INFO sending PrepareRequest {"height": 10031, "view": 0} -2023-12-16T14:56:18.374Z INFO sending Commit {"height": 10031, "view": 0} -2023-12-16T14:56:18.374Z INFO approving block {"height": 10031, "hash": "c595b8d87f8e5e69c6199e9c986adde52e0ed09a7626cdf3aef29bd9189b5a6d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "38b1d75b1729af1adc64b7de6ddbf515d14daf68b0a72b5f0f44bb88be28a271"} -2023-12-16T14:56:18.376Z INFO initializing dbft {"height": 10032, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:18.376Z debug frostfs-node/morph.go:229 new block {"index": 10031} -2023-12-16T14:56:18.499Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10031, "blockHeight": 10031, "took": "4.115092ms"} -2023-12-16T14:56:19.375Z INFO sending PrepareRequest {"height": 10032, "view": 0} -2023-12-16T14:56:19.375Z INFO sending Commit {"height": 10032, "view": 0} -2023-12-16T14:56:19.376Z INFO approving block {"height": 10032, "hash": "14e7db6901fadd58435d670131ba52cbd17db27f98e34d39255bb03264e16c5b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c595b8d87f8e5e69c6199e9c986adde52e0ed09a7626cdf3aef29bd9189b5a6d"} -2023-12-16T14:56:19.376Z INFO initializing dbft {"height": 10033, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:19.377Z debug frostfs-node/morph.go:229 new block {"index": 10032} -2023-12-16T14:56:19.500Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10032, "blockHeight": 10032, "took": "5.017605ms"} -2023-12-16T14:56:20.376Z INFO sending PrepareRequest {"height": 10033, "view": 0} -2023-12-16T14:56:20.376Z INFO sending Commit {"height": 10033, "view": 0} -2023-12-16T14:56:20.377Z INFO approving block {"height": 10033, "hash": "d95f4ba853eecfb915752626ebf3ab1b445bbaad9bae9bccdc1b37554aa396f9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "14e7db6901fadd58435d670131ba52cbd17db27f98e34d39255bb03264e16c5b"} -2023-12-16T14:56:20.377Z INFO initializing dbft {"height": 10034, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:20.378Z debug frostfs-node/morph.go:229 new block {"index": 10033} -2023-12-16T14:56:20.500Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10033, "blockHeight": 10033, "took": "3.285335ms"} -2023-12-16T14:56:21.378Z INFO sending PrepareRequest {"height": 10034, "view": 0} -2023-12-16T14:56:21.379Z INFO sending Commit {"height": 10034, "view": 0} -2023-12-16T14:56:21.379Z INFO approving block {"height": 10034, "hash": "87f61facb440af83746da80d811d13f5112877a9fa873e5a38efbfdcfe0e585d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d95f4ba853eecfb915752626ebf3ab1b445bbaad9bae9bccdc1b37554aa396f9"} -2023-12-16T14:56:21.381Z INFO initializing dbft {"height": 10035, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:21.381Z debug frostfs-node/morph.go:229 new block {"index": 10034} -2023-12-16T14:56:21.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10034, "blockHeight": 10034, "took": "5.413318ms"} -2023-12-16T14:56:22.380Z INFO sending PrepareRequest {"height": 10035, "view": 0} -2023-12-16T14:56:22.380Z INFO sending Commit {"height": 10035, "view": 0} -2023-12-16T14:56:22.380Z INFO approving block {"height": 10035, "hash": "90a5f42b75f2071ea059f60accd9ab80687abff1bcf99d81644b3cf30b3a033c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "87f61facb440af83746da80d811d13f5112877a9fa873e5a38efbfdcfe0e585d"} -2023-12-16T14:56:22.381Z INFO initializing dbft {"height": 10036, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:22.382Z debug frostfs-node/morph.go:229 new block {"index": 10035} -2023-12-16T14:56:22.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10035, "blockHeight": 10035, "took": "4.861478ms"} -2023-12-16T14:56:23.381Z INFO sending PrepareRequest {"height": 10036, "view": 0} -2023-12-16T14:56:23.382Z INFO sending Commit {"height": 10036, "view": 0} -2023-12-16T14:56:23.382Z INFO approving block {"height": 10036, "hash": "00f591934ce9ddf8dfe433bda3b8317987496ab1f404bd8d3c2b98354c8c34e2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90a5f42b75f2071ea059f60accd9ab80687abff1bcf99d81644b3cf30b3a033c"} -2023-12-16T14:56:23.383Z INFO initializing dbft {"height": 10037, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:23.383Z debug frostfs-node/morph.go:229 new block {"index": 10036} -2023-12-16T14:56:23.503Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10036, "blockHeight": 10036, "took": "4.906318ms"} -2023-12-16T14:56:24.383Z INFO sending PrepareRequest {"height": 10037, "view": 0} -2023-12-16T14:56:24.383Z INFO sending Commit {"height": 10037, "view": 0} -2023-12-16T14:56:24.383Z INFO approving block {"height": 10037, "hash": "d5bcbbf3b325dbdbe84ca28832019fdadcacecd64ceb95617b13470693e10ab1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "00f591934ce9ddf8dfe433bda3b8317987496ab1f404bd8d3c2b98354c8c34e2"} -2023-12-16T14:56:24.384Z INFO initializing dbft {"height": 10038, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:24.384Z debug frostfs-node/morph.go:229 new block {"index": 10037} -2023-12-16T14:56:24.502Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10037, "blockHeight": 10037, "took": "3.640535ms"} -2023-12-16T14:56:25.385Z INFO sending PrepareRequest {"height": 10038, "view": 0} -2023-12-16T14:56:25.385Z INFO sending Commit {"height": 10038, "view": 0} -2023-12-16T14:56:25.385Z INFO approving block {"height": 10038, "hash": "3068c925b745a9e6a8c060e9685f0f52bcfb938eb76f7a3dd8a954bd04d38455", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d5bcbbf3b325dbdbe84ca28832019fdadcacecd64ceb95617b13470693e10ab1"} -2023-12-16T14:56:25.386Z INFO initializing dbft {"height": 10039, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:25.387Z debug frostfs-node/morph.go:229 new block {"index": 10038} -2023-12-16T14:56:25.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10038, "blockHeight": 10038, "took": "5.562841ms"} -2023-12-16T14:56:26.386Z INFO sending PrepareRequest {"height": 10039, "view": 0} -2023-12-16T14:56:26.386Z INFO sending Commit {"height": 10039, "view": 0} -2023-12-16T14:56:26.387Z INFO approving block {"height": 10039, "hash": "8d27de628f7492dfe24548aa8653386b6886c64741dab4b23bfbe5eeb447528c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3068c925b745a9e6a8c060e9685f0f52bcfb938eb76f7a3dd8a954bd04d38455"} -2023-12-16T14:56:26.387Z INFO initializing dbft {"height": 10040, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:26.388Z debug frostfs-node/morph.go:229 new block {"index": 10039} -2023-12-16T14:56:26.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10039, "blockHeight": 10039, "took": "4.42903ms"} -2023-12-16T14:56:27.388Z INFO sending PrepareRequest {"height": 10040, "view": 0} -2023-12-16T14:56:27.388Z INFO sending Commit {"height": 10040, "view": 0} -2023-12-16T14:56:27.388Z INFO approving block {"height": 10040, "hash": "3bc6d5f889bc70d38c2afcaea6f3fa7412181a332871951e41a37beaa9daec41", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8d27de628f7492dfe24548aa8653386b6886c64741dab4b23bfbe5eeb447528c"} -2023-12-16T14:56:27.389Z INFO initializing dbft {"height": 10041, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:27.390Z debug frostfs-node/morph.go:229 new block {"index": 10040} -2023-12-16T14:56:27.504Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10040, "blockHeight": 10040, "took": "3.383539ms"} -2023-12-16T14:56:28.389Z INFO sending PrepareRequest {"height": 10041, "view": 0} -2023-12-16T14:56:28.389Z INFO sending Commit {"height": 10041, "view": 0} -2023-12-16T14:56:28.390Z INFO approving block {"height": 10041, "hash": "f8b28d91b5778f47273ea20880d4f3ef55104a4b323c1b2dd54e8adc4a04bdd1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "3bc6d5f889bc70d38c2afcaea6f3fa7412181a332871951e41a37beaa9daec41"} -2023-12-16T14:56:28.390Z INFO initializing dbft {"height": 10042, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:28.391Z debug frostfs-node/morph.go:229 new block {"index": 10041} -2023-12-16T14:56:28.505Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10041, "blockHeight": 10041, "took": "3.502082ms"} -2023-12-16T14:56:29.391Z INFO sending PrepareRequest {"height": 10042, "view": 0} -2023-12-16T14:56:29.391Z INFO sending Commit {"height": 10042, "view": 0} -2023-12-16T14:56:29.391Z INFO approving block {"height": 10042, "hash": "f1bb57671756bb6b688cfbb478a20c6f53e38cbe890a69bf14b3550ad4e0a704", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f8b28d91b5778f47273ea20880d4f3ef55104a4b323c1b2dd54e8adc4a04bdd1"} -2023-12-16T14:56:29.392Z INFO initializing dbft {"height": 10043, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:29.393Z debug frostfs-node/morph.go:229 new block {"index": 10042} -2023-12-16T14:56:29.507Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10042, "blockHeight": 10042, "took": "5.373667ms"} -2023-12-16T14:56:30.392Z INFO sending PrepareRequest {"height": 10043, "view": 0} -2023-12-16T14:56:30.392Z INFO sending Commit {"height": 10043, "view": 0} -2023-12-16T14:56:30.393Z INFO approving block {"height": 10043, "hash": "60f914d569b50a445a7de722c01ec227c3d5b0deb7519e311f9f6d7f5e99c3e9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f1bb57671756bb6b688cfbb478a20c6f53e38cbe890a69bf14b3550ad4e0a704"} -2023-12-16T14:56:30.393Z INFO initializing dbft {"height": 10044, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:30.394Z debug frostfs-node/morph.go:229 new block {"index": 10043} -2023-12-16T14:56:30.506Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10043, "blockHeight": 10043, "took": "3.359617ms"} -2023-12-16T14:56:31.394Z INFO sending PrepareRequest {"height": 10044, "view": 0} -2023-12-16T14:56:31.394Z INFO sending Commit {"height": 10044, "view": 0} -2023-12-16T14:56:31.394Z INFO approving block {"height": 10044, "hash": "368f26b73731326e91a3392a86f4754b454c8c8f077644604efa37f228670dd6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "60f914d569b50a445a7de722c01ec227c3d5b0deb7519e311f9f6d7f5e99c3e9"} -2023-12-16T14:56:31.395Z INFO initializing dbft {"height": 10045, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:31.396Z debug frostfs-node/morph.go:229 new block {"index": 10044} -2023-12-16T14:56:31.509Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10044, "blockHeight": 10044, "took": "5.887154ms"} -2023-12-16T14:56:32.395Z INFO sending PrepareRequest {"height": 10045, "view": 0} -2023-12-16T14:56:32.396Z INFO sending Commit {"height": 10045, "view": 0} -2023-12-16T14:56:32.396Z INFO approving block {"height": 10045, "hash": "5ac33b1eefecd852356a92e5fe58224997ec193667b10ed457f5acbf6497d15b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "368f26b73731326e91a3392a86f4754b454c8c8f077644604efa37f228670dd6"} -2023-12-16T14:56:32.397Z INFO initializing dbft {"height": 10046, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:32.397Z debug frostfs-node/morph.go:229 new block {"index": 10045} -2023-12-16T14:56:32.508Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10045, "blockHeight": 10045, "took": "4.997556ms"} -2023-12-16T14:56:33.397Z INFO sending PrepareRequest {"height": 10046, "view": 0} -2023-12-16T14:56:33.397Z INFO sending Commit {"height": 10046, "view": 0} -2023-12-16T14:56:33.398Z INFO approving block {"height": 10046, "hash": "188cfca82ceee96fa760a9264740800d450cc4653cf8cf75cf8b6052eaa9da8b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5ac33b1eefecd852356a92e5fe58224997ec193667b10ed457f5acbf6497d15b"} -2023-12-16T14:56:33.399Z INFO initializing dbft {"height": 10047, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:33.399Z debug frostfs-node/morph.go:229 new block {"index": 10046} -2023-12-16T14:56:33.510Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10046, "blockHeight": 10046, "took": "5.515667ms"} -2023-12-16T14:56:34.399Z INFO sending PrepareRequest {"height": 10047, "view": 0} -2023-12-16T14:56:34.399Z INFO sending Commit {"height": 10047, "view": 0} -2023-12-16T14:56:34.400Z INFO approving block {"height": 10047, "hash": "ad781a30db23a89b68e36edc119a945f07eb511ee97e08dc83dd1dae750716cd", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "188cfca82ceee96fa760a9264740800d450cc4653cf8cf75cf8b6052eaa9da8b"} -2023-12-16T14:56:34.401Z INFO initializing dbft {"height": 10048, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:34.401Z debug frostfs-node/morph.go:229 new block {"index": 10047} -2023-12-16T14:56:34.509Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10047, "blockHeight": 10047, "took": "4.025655ms"} -2023-12-16T14:56:35.401Z INFO sending PrepareRequest {"height": 10048, "view": 0} -2023-12-16T14:56:35.401Z INFO sending Commit {"height": 10048, "view": 0} -2023-12-16T14:56:35.401Z INFO approving block {"height": 10048, "hash": "d709bd3dc479bf1190d44a8b724c98c2bd154bcaf24ceb06811c64911cc3623a", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ad781a30db23a89b68e36edc119a945f07eb511ee97e08dc83dd1dae750716cd"} -2023-12-16T14:56:35.403Z INFO initializing dbft {"height": 10049, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:35.403Z debug frostfs-node/morph.go:229 new block {"index": 10048} -2023-12-16T14:56:35.509Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10048, "blockHeight": 10048, "took": "3.039959ms"} -2023-12-16T14:56:36.402Z INFO sending PrepareRequest {"height": 10049, "view": 0} -2023-12-16T14:56:36.402Z INFO sending Commit {"height": 10049, "view": 0} -2023-12-16T14:56:36.402Z INFO approving block {"height": 10049, "hash": "42d211909956fc42e4d24d4d7a9b34f2454485611afcc62209f4699ec1a7c54e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d709bd3dc479bf1190d44a8b724c98c2bd154bcaf24ceb06811c64911cc3623a"} -2023-12-16T14:56:36.403Z INFO initializing dbft {"height": 10050, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:36.404Z debug frostfs-node/morph.go:229 new block {"index": 10049} -2023-12-16T14:56:36.511Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10049, "blockHeight": 10049, "took": "4.749018ms"} -2023-12-16T14:56:37.404Z INFO sending PrepareRequest {"height": 10050, "view": 0} -2023-12-16T14:56:37.404Z INFO sending Commit {"height": 10050, "view": 0} -2023-12-16T14:56:37.404Z INFO approving block {"height": 10050, "hash": "94393ee051d178a4b069e7a5673341706d08c7c2ac627925fa32fed4b33e2078", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42d211909956fc42e4d24d4d7a9b34f2454485611afcc62209f4699ec1a7c54e"} -2023-12-16T14:56:37.407Z INFO initializing dbft {"height": 10051, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:37.407Z debug frostfs-node/morph.go:229 new block {"index": 10050} -2023-12-16T14:56:37.409Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:56:37.412Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:56:37.412Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:56:37.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10050, "blockHeight": 10050, "took": "5.189061ms"} -2023-12-16T14:56:38.405Z INFO sending PrepareRequest {"height": 10051, "view": 0} -2023-12-16T14:56:38.405Z INFO sending Commit {"height": 10051, "view": 0} -2023-12-16T14:56:38.405Z INFO approving block {"height": 10051, "hash": "55e0ea0df61d9e0b0cc8764a3fbdc22043729fe35c0057bf65f87e8f3b26bffb", "tx_count": 2, "merkle": "3d2f978f5410db8d272f010812889ed1e2025762a810c51f2e07b6f751ee4981", "prev": "94393ee051d178a4b069e7a5673341706d08c7c2ac627925fa32fed4b33e2078"} -2023-12-16T14:56:38.406Z INFO runtime log {"tx": "d3f759b56caec8d4341a818aff1560f27d8569e9d9a9742dcca11419dbc9624b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:56:38.406Z INFO runtime log {"tx": "d3f759b56caec8d4341a818aff1560f27d8569e9d9a9742dcca11419dbc9624b", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:56:38.407Z INFO initializing dbft {"height": 10052, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:38.407Z debug frostfs-node/morph.go:229 new block {"index": 10051} -2023-12-16T14:56:38.539Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 10051, "blockHeight": 10051, "took": "30.695984ms"} -2023-12-16T14:56:39.406Z INFO sending PrepareRequest {"height": 10052, "view": 0} -2023-12-16T14:56:39.406Z INFO sending Commit {"height": 10052, "view": 0} -2023-12-16T14:56:39.406Z INFO approving block {"height": 10052, "hash": "501a9dbc5a62e7f9da0f754d45272f1d1c786d6a1e8876e686d23ac33b1bc701", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "55e0ea0df61d9e0b0cc8764a3fbdc22043729fe35c0057bf65f87e8f3b26bffb"} -2023-12-16T14:56:39.407Z INFO initializing dbft {"height": 10053, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:39.408Z debug frostfs-node/morph.go:229 new block {"index": 10052} -2023-12-16T14:56:39.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10052, "blockHeight": 10052, "took": "3.732176ms"} -2023-12-16T14:56:40.407Z INFO sending PrepareRequest {"height": 10053, "view": 0} -2023-12-16T14:56:40.408Z INFO sending Commit {"height": 10053, "view": 0} -2023-12-16T14:56:40.408Z INFO approving block {"height": 10053, "hash": "af3b38d9f1e0c1ca14f2812510fb57fed9bd0dd9cccb1d1398bf14d847dcbf0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "501a9dbc5a62e7f9da0f754d45272f1d1c786d6a1e8876e686d23ac33b1bc701"} -2023-12-16T14:56:40.409Z INFO initializing dbft {"height": 10054, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:40.409Z debug frostfs-node/morph.go:229 new block {"index": 10053} -2023-12-16T14:56:40.513Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10053, "blockHeight": 10053, "took": "3.77855ms"} -2023-12-16T14:56:41.409Z INFO sending PrepareRequest {"height": 10054, "view": 0} -2023-12-16T14:56:41.409Z INFO sending Commit {"height": 10054, "view": 0} -2023-12-16T14:56:41.409Z INFO approving block {"height": 10054, "hash": "d020c6ec7368b7666638124cbcf4fa22c9b5460481a414cc3c5693f1d5df5286", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "af3b38d9f1e0c1ca14f2812510fb57fed9bd0dd9cccb1d1398bf14d847dcbf0f"} -2023-12-16T14:56:41.410Z INFO initializing dbft {"height": 10055, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:41.410Z debug frostfs-node/morph.go:229 new block {"index": 10054} -2023-12-16T14:56:41.514Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10054, "blockHeight": 10054, "took": "4.292715ms"} -2023-12-16T14:56:42.410Z INFO sending PrepareRequest {"height": 10055, "view": 0} -2023-12-16T14:56:42.410Z INFO sending Commit {"height": 10055, "view": 0} -2023-12-16T14:56:42.411Z INFO approving block {"height": 10055, "hash": "e05ee3d95a57eef6252916784ad978577267b2c15c232fa5e18c461edc275b5f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d020c6ec7368b7666638124cbcf4fa22c9b5460481a414cc3c5693f1d5df5286"} -2023-12-16T14:56:42.412Z INFO initializing dbft {"height": 10056, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:42.413Z debug frostfs-node/morph.go:229 new block {"index": 10055} -2023-12-16T14:56:42.514Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10055, "blockHeight": 10055, "took": "3.545113ms"} -2023-12-16T14:56:43.412Z INFO sending PrepareRequest {"height": 10056, "view": 0} -2023-12-16T14:56:43.412Z INFO sending Commit {"height": 10056, "view": 0} -2023-12-16T14:56:43.412Z INFO approving block {"height": 10056, "hash": "0b8c96d7ff074d3fbfcba6b42cc274817cf3ea6922230ec9295165b9c7d3082d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e05ee3d95a57eef6252916784ad978577267b2c15c232fa5e18c461edc275b5f"} -2023-12-16T14:56:43.413Z INFO initializing dbft {"height": 10057, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:43.413Z debug frostfs-node/morph.go:229 new block {"index": 10056} -2023-12-16T14:56:43.515Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10056, "blockHeight": 10056, "took": "3.927675ms"} -2023-12-16T14:56:44.413Z INFO sending PrepareRequest {"height": 10057, "view": 0} -2023-12-16T14:56:44.413Z INFO sending Commit {"height": 10057, "view": 0} -2023-12-16T14:56:44.414Z INFO approving block {"height": 10057, "hash": "5458b42bf65a679c591d856bdb1cb245b609a95bc54ae8f22c5d677b84362ed8", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0b8c96d7ff074d3fbfcba6b42cc274817cf3ea6922230ec9295165b9c7d3082d"} -2023-12-16T14:56:44.414Z INFO initializing dbft {"height": 10058, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:44.415Z debug frostfs-node/morph.go:229 new block {"index": 10057} -2023-12-16T14:56:44.515Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10057, "blockHeight": 10057, "took": "3.861382ms"} -2023-12-16T14:56:45.415Z INFO sending PrepareRequest {"height": 10058, "view": 0} -2023-12-16T14:56:45.415Z INFO sending Commit {"height": 10058, "view": 0} -2023-12-16T14:56:45.415Z INFO approving block {"height": 10058, "hash": "fbadc5aabd6ed82f6953a813dbed58212eb3fbd38fc8abc58c9e4669c2d35238", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5458b42bf65a679c591d856bdb1cb245b609a95bc54ae8f22c5d677b84362ed8"} -2023-12-16T14:56:45.417Z INFO initializing dbft {"height": 10059, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:45.417Z debug frostfs-node/morph.go:229 new block {"index": 10058} -2023-12-16T14:56:45.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10058, "blockHeight": 10058, "took": "4.229353ms"} -2023-12-16T14:56:46.416Z INFO sending PrepareRequest {"height": 10059, "view": 0} -2023-12-16T14:56:46.416Z INFO sending Commit {"height": 10059, "view": 0} -2023-12-16T14:56:46.417Z INFO approving block {"height": 10059, "hash": "1417be54cca95c9b11d670870452f30dfeaa7a409a46464b9455a32084150dce", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fbadc5aabd6ed82f6953a813dbed58212eb3fbd38fc8abc58c9e4669c2d35238"} -2023-12-16T14:56:46.418Z INFO initializing dbft {"height": 10060, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:46.419Z debug frostfs-node/morph.go:229 new block {"index": 10059} -2023-12-16T14:56:46.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10059, "blockHeight": 10059, "took": "5.746206ms"} -2023-12-16T14:56:47.418Z INFO sending PrepareRequest {"height": 10060, "view": 0} -2023-12-16T14:56:47.418Z INFO sending Commit {"height": 10060, "view": 0} -2023-12-16T14:56:47.418Z INFO approving block {"height": 10060, "hash": "361d54cc33dfe43a3bd82e135ad6602b41308a075f9b993ee5db1d0a8d3f4739", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1417be54cca95c9b11d670870452f30dfeaa7a409a46464b9455a32084150dce"} -2023-12-16T14:56:47.419Z INFO initializing dbft {"height": 10061, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:47.419Z debug frostfs-node/morph.go:229 new block {"index": 10060} -2023-12-16T14:56:47.421Z info settlement/calls.go:106 start basic income distribution {"epoch": 42} -2023-12-16T14:56:47.422Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 42, "iteration": 2, "error": "no data for 1 iteration in 42 epoch for consumers's trusts"} -2023-12-16T14:56:47.516Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10060, "blockHeight": 10060, "took": "3.149642ms"} -2023-12-16T14:56:48.420Z INFO sending PrepareRequest {"height": 10061, "view": 0} -2023-12-16T14:56:48.420Z INFO sending Commit {"height": 10061, "view": 0} -2023-12-16T14:56:48.420Z INFO approving block {"height": 10061, "hash": "8ed82b3d6ac8316a5763c8b141da830c833de12732506bfb9e6f25a28dfe5503", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "361d54cc33dfe43a3bd82e135ad6602b41308a075f9b993ee5db1d0a8d3f4739"} -2023-12-16T14:56:48.421Z INFO initializing dbft {"height": 10062, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:48.422Z debug frostfs-node/morph.go:229 new block {"index": 10061} -2023-12-16T14:56:48.518Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10061, "blockHeight": 10061, "took": "4.502002ms"} -2023-12-16T14:56:49.421Z INFO sending PrepareRequest {"height": 10062, "view": 0} -2023-12-16T14:56:49.421Z INFO sending Commit {"height": 10062, "view": 0} -2023-12-16T14:56:49.421Z INFO approving block {"height": 10062, "hash": "6a6218d994b8877dd1f6006484243c55c54feaa4ac0cab6d3aa72ebc9ad159d2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8ed82b3d6ac8316a5763c8b141da830c833de12732506bfb9e6f25a28dfe5503"} -2023-12-16T14:56:49.422Z INFO initializing dbft {"height": 10063, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:49.423Z debug frostfs-node/morph.go:229 new block {"index": 10062} -2023-12-16T14:56:49.517Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10062, "blockHeight": 10062, "took": "3.014288ms"} -2023-12-16T14:56:50.423Z INFO sending PrepareRequest {"height": 10063, "view": 0} -2023-12-16T14:56:50.423Z INFO sending Commit {"height": 10063, "view": 0} -2023-12-16T14:56:50.424Z INFO approving block {"height": 10063, "hash": "4864d1e2c4c74a939a1b5e75f1597d8d8be2bcb7bb6bd58ac867701325bb6df3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6a6218d994b8877dd1f6006484243c55c54feaa4ac0cab6d3aa72ebc9ad159d2"} -2023-12-16T14:56:50.425Z INFO initializing dbft {"height": 10064, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:50.425Z debug frostfs-node/morph.go:229 new block {"index": 10063} -2023-12-16T14:56:50.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10063, "blockHeight": 10063, "took": "6.248912ms"} -2023-12-16T14:56:51.425Z INFO sending PrepareRequest {"height": 10064, "view": 0} -2023-12-16T14:56:51.425Z INFO sending Commit {"height": 10064, "view": 0} -2023-12-16T14:56:51.426Z INFO approving block {"height": 10064, "hash": "a0fc2379cf1955cb32a88e288ac6befb20bd8daee7d7b523b7a90043e0eec723", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4864d1e2c4c74a939a1b5e75f1597d8d8be2bcb7bb6bd58ac867701325bb6df3"} -2023-12-16T14:56:51.427Z INFO initializing dbft {"height": 10065, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:51.427Z debug frostfs-node/morph.go:229 new block {"index": 10064} -2023-12-16T14:56:51.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10064, "blockHeight": 10064, "took": "5.301605ms"} -2023-12-16T14:56:52.427Z INFO sending PrepareRequest {"height": 10065, "view": 0} -2023-12-16T14:56:52.427Z INFO sending Commit {"height": 10065, "view": 0} -2023-12-16T14:56:52.428Z INFO approving block {"height": 10065, "hash": "e82e38ceceec1aa2ebb5425be37321392fb3a032be46fbafd6f994a1531be24d", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a0fc2379cf1955cb32a88e288ac6befb20bd8daee7d7b523b7a90043e0eec723"} -2023-12-16T14:56:52.429Z INFO initializing dbft {"height": 10066, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:52.429Z debug frostfs-node/morph.go:229 new block {"index": 10065} -2023-12-16T14:56:52.521Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10065, "blockHeight": 10065, "took": "3.464751ms"} -2023-12-16T14:56:53.429Z INFO sending PrepareRequest {"height": 10066, "view": 0} -2023-12-16T14:56:53.429Z INFO sending Commit {"height": 10066, "view": 0} -2023-12-16T14:56:53.430Z INFO approving block {"height": 10066, "hash": "4c7de6d854fc4c23a7c6d7ee92c284807ccc5f0c894659c156b4bacc4c9a32c6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e82e38ceceec1aa2ebb5425be37321392fb3a032be46fbafd6f994a1531be24d"} -2023-12-16T14:56:53.431Z INFO initializing dbft {"height": 10067, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:53.432Z debug frostfs-node/morph.go:229 new block {"index": 10066} -2023-12-16T14:56:53.522Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10066, "blockHeight": 10066, "took": "4.043543ms"} -2023-12-16T14:56:54.431Z INFO sending PrepareRequest {"height": 10067, "view": 0} -2023-12-16T14:56:54.432Z INFO sending Commit {"height": 10067, "view": 0} -2023-12-16T14:56:54.432Z INFO approving block {"height": 10067, "hash": "15e04edbf7f21ccca393a21d29885155881f838f0d662ab551c714f5840469c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4c7de6d854fc4c23a7c6d7ee92c284807ccc5f0c894659c156b4bacc4c9a32c6"} -2023-12-16T14:56:54.433Z INFO initializing dbft {"height": 10068, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:54.434Z debug frostfs-node/morph.go:229 new block {"index": 10067} -2023-12-16T14:56:54.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10067, "blockHeight": 10067, "took": "5.671656ms"} -2023-12-16T14:56:55.434Z INFO sending PrepareRequest {"height": 10068, "view": 0} -2023-12-16T14:56:55.434Z INFO sending Commit {"height": 10068, "view": 0} -2023-12-16T14:56:55.434Z INFO approving block {"height": 10068, "hash": "cd981eb44f1622738487b1e91f7e0d0d00e72c81fdfe8b42627d450b5f3556b6", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "15e04edbf7f21ccca393a21d29885155881f838f0d662ab551c714f5840469c3"} -2023-12-16T14:56:55.435Z INFO initializing dbft {"height": 10069, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:55.436Z debug frostfs-node/morph.go:229 new block {"index": 10068} -2023-12-16T14:56:55.523Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10068, "blockHeight": 10068, "took": "3.549044ms"} -2023-12-16T14:56:56.435Z INFO sending PrepareRequest {"height": 10069, "view": 0} -2023-12-16T14:56:56.435Z INFO sending Commit {"height": 10069, "view": 0} -2023-12-16T14:56:56.436Z INFO approving block {"height": 10069, "hash": "aa47b37b2265070dc3151797d994a4d68c397383d47bb04f54855866d60b3e9c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd981eb44f1622738487b1e91f7e0d0d00e72c81fdfe8b42627d450b5f3556b6"} -2023-12-16T14:56:56.437Z INFO initializing dbft {"height": 10070, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:56.438Z debug frostfs-node/morph.go:229 new block {"index": 10069} -2023-12-16T14:56:56.526Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10069, "blockHeight": 10069, "took": "5.938533ms"} -2023-12-16T14:56:57.437Z INFO sending PrepareRequest {"height": 10070, "view": 0} -2023-12-16T14:56:57.437Z INFO sending Commit {"height": 10070, "view": 0} -2023-12-16T14:56:57.437Z INFO approving block {"height": 10070, "hash": "bbfcebc6a95c29ff8c2bfab3e9b793f0c2dc705d410621487f647cac6e88b4cf", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "aa47b37b2265070dc3151797d994a4d68c397383d47bb04f54855866d60b3e9c"} -2023-12-16T14:56:57.439Z INFO initializing dbft {"height": 10071, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:57.440Z debug frostfs-node/morph.go:229 new block {"index": 10070} -2023-12-16T14:56:57.524Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10070, "blockHeight": 10070, "took": "3.035138ms"} -2023-12-16T14:56:58.438Z INFO sending PrepareRequest {"height": 10071, "view": 0} -2023-12-16T14:56:58.438Z INFO sending Commit {"height": 10071, "view": 0} -2023-12-16T14:56:58.439Z INFO approving block {"height": 10071, "hash": "6f991f738c58c1281d6dffef60fd57af08dd31958fec6f69cd867c84949ef261", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bbfcebc6a95c29ff8c2bfab3e9b793f0c2dc705d410621487f647cac6e88b4cf"} -2023-12-16T14:56:58.440Z INFO initializing dbft {"height": 10072, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:58.441Z debug frostfs-node/morph.go:229 new block {"index": 10071} -2023-12-16T14:56:58.528Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10071, "blockHeight": 10071, "took": "6.605965ms"} -2023-12-16T14:56:59.440Z INFO sending PrepareRequest {"height": 10072, "view": 0} -2023-12-16T14:56:59.440Z INFO sending Commit {"height": 10072, "view": 0} -2023-12-16T14:56:59.441Z INFO approving block {"height": 10072, "hash": "c936f097d3df72feabe40449e9ab7ce8e2946a2cf773cc4a63103defd8194479", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6f991f738c58c1281d6dffef60fd57af08dd31958fec6f69cd867c84949ef261"} -2023-12-16T14:56:59.442Z INFO initializing dbft {"height": 10073, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:56:59.442Z debug frostfs-node/morph.go:229 new block {"index": 10072} -2023-12-16T14:56:59.525Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10072, "blockHeight": 10072, "took": "3.129492ms"} -2023-12-16T14:57:00.442Z INFO sending PrepareRequest {"height": 10073, "view": 0} -2023-12-16T14:57:00.442Z INFO sending Commit {"height": 10073, "view": 0} -2023-12-16T14:57:00.443Z INFO approving block {"height": 10073, "hash": "1e2f817c0f80596a0a58aa72c5353bac4a0db7e0c9e3c556281bdf1409272028", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "c936f097d3df72feabe40449e9ab7ce8e2946a2cf773cc4a63103defd8194479"} -2023-12-16T14:57:00.444Z INFO initializing dbft {"height": 10074, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:00.445Z debug frostfs-node/morph.go:229 new block {"index": 10073} -2023-12-16T14:57:00.528Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10073, "blockHeight": 10073, "took": "4.859372ms"} -2023-12-16T14:57:01.443Z INFO sending PrepareRequest {"height": 10074, "view": 0} -2023-12-16T14:57:01.444Z INFO sending Commit {"height": 10074, "view": 0} -2023-12-16T14:57:01.444Z INFO approving block {"height": 10074, "hash": "9fe318c4195e5f1ba82bb51fd4ee3f03fbaf8da5fc2a3a3ba6b1c8c56289e98c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e2f817c0f80596a0a58aa72c5353bac4a0db7e0c9e3c556281bdf1409272028"} -2023-12-16T14:57:01.445Z INFO initializing dbft {"height": 10075, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:01.446Z debug frostfs-node/morph.go:229 new block {"index": 10074} -2023-12-16T14:57:01.528Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10074, "blockHeight": 10074, "took": "4.559013ms"} -2023-12-16T14:57:02.445Z INFO sending PrepareRequest {"height": 10075, "view": 0} -2023-12-16T14:57:02.445Z INFO sending Commit {"height": 10075, "view": 0} -2023-12-16T14:57:02.445Z INFO approving block {"height": 10075, "hash": "bf513d6fc860e358a924ed858d9b26cfcc29b72c241855aa1c97eb8baeeeff14", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "9fe318c4195e5f1ba82bb51fd4ee3f03fbaf8da5fc2a3a3ba6b1c8c56289e98c"} -2023-12-16T14:57:02.446Z INFO initializing dbft {"height": 10076, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:02.446Z debug frostfs-node/morph.go:229 new block {"index": 10075} -2023-12-16T14:57:02.528Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10075, "blockHeight": 10075, "took": "4.029068ms"} -2023-12-16T14:57:03.446Z INFO sending PrepareRequest {"height": 10076, "view": 0} -2023-12-16T14:57:03.446Z INFO sending Commit {"height": 10076, "view": 0} -2023-12-16T14:57:03.447Z INFO approving block {"height": 10076, "hash": "339c1c5d3c2eaa9a17a8c3d9f5b58f07bd44f7b10c68bdcaa76b92aa26f50389", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "bf513d6fc860e358a924ed858d9b26cfcc29b72c241855aa1c97eb8baeeeff14"} -2023-12-16T14:57:03.447Z INFO initializing dbft {"height": 10077, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:03.448Z debug frostfs-node/morph.go:229 new block {"index": 10076} -2023-12-16T14:57:03.530Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10076, "blockHeight": 10076, "took": "6.152682ms"} -2023-12-16T14:57:04.447Z INFO sending PrepareRequest {"height": 10077, "view": 0} -2023-12-16T14:57:04.447Z INFO sending Commit {"height": 10077, "view": 0} -2023-12-16T14:57:04.448Z INFO approving block {"height": 10077, "hash": "706421d4608499399493da09be0d61b96b5a685a4e15bcb7bbfdee3befe469a9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "339c1c5d3c2eaa9a17a8c3d9f5b58f07bd44f7b10c68bdcaa76b92aa26f50389"} -2023-12-16T14:57:04.449Z INFO initializing dbft {"height": 10078, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:04.450Z debug frostfs-node/morph.go:229 new block {"index": 10077} -2023-12-16T14:57:04.531Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10077, "blockHeight": 10077, "took": "6.48771ms"} -2023-12-16T14:57:05.449Z INFO sending PrepareRequest {"height": 10078, "view": 0} -2023-12-16T14:57:05.449Z INFO sending Commit {"height": 10078, "view": 0} -2023-12-16T14:57:05.449Z INFO approving block {"height": 10078, "hash": "f453288b465fafd39861aefb4c0dffdab7b329e499e57a565d42eaea47be27da", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "706421d4608499399493da09be0d61b96b5a685a4e15bcb7bbfdee3befe469a9"} -2023-12-16T14:57:05.450Z INFO initializing dbft {"height": 10079, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:05.451Z debug frostfs-node/morph.go:229 new block {"index": 10078} -2023-12-16T14:57:05.528Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10078, "blockHeight": 10078, "took": "3.288116ms"} -2023-12-16T14:57:06.451Z INFO sending PrepareRequest {"height": 10079, "view": 0} -2023-12-16T14:57:06.451Z INFO sending Commit {"height": 10079, "view": 0} -2023-12-16T14:57:06.451Z INFO approving block {"height": 10079, "hash": "eb3cfdbcdc44146d381844b878ce60567ad51f94bd9af49aaff1bcd8eeba3d28", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f453288b465fafd39861aefb4c0dffdab7b329e499e57a565d42eaea47be27da"} -2023-12-16T14:57:06.452Z INFO initializing dbft {"height": 10080, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:06.452Z debug frostfs-node/morph.go:229 new block {"index": 10079} -2023-12-16T14:57:06.530Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10079, "blockHeight": 10079, "took": "4.573434ms"} -2023-12-16T14:57:07.452Z INFO sending PrepareRequest {"height": 10080, "view": 0} -2023-12-16T14:57:07.452Z INFO sending Commit {"height": 10080, "view": 0} -2023-12-16T14:57:07.453Z INFO approving block {"height": 10080, "hash": "039ce1b4983c211c15236d78c517e09495c725865db834d6b141f6663e8f8c10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "eb3cfdbcdc44146d381844b878ce60567ad51f94bd9af49aaff1bcd8eeba3d28"} -2023-12-16T14:57:07.454Z INFO initializing dbft {"height": 10081, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:07.455Z debug frostfs-node/morph.go:229 new block {"index": 10080} -2023-12-16T14:57:07.535Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10080, "blockHeight": 10080, "took": "8.669804ms"} -2023-12-16T14:57:08.453Z INFO sending PrepareRequest {"height": 10081, "view": 0} -2023-12-16T14:57:08.453Z INFO sending Commit {"height": 10081, "view": 0} -2023-12-16T14:57:08.454Z INFO approving block {"height": 10081, "hash": "5fef1597e7724750bef9d7596750c6febb55a27e7ac6080d0901d90c4b8444d9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "039ce1b4983c211c15236d78c517e09495c725865db834d6b141f6663e8f8c10"} -2023-12-16T14:57:08.454Z INFO initializing dbft {"height": 10082, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:08.455Z debug frostfs-node/morph.go:229 new block {"index": 10081} -2023-12-16T14:57:08.532Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10081, "blockHeight": 10081, "took": "4.649575ms"} -2023-12-16T14:57:09.455Z INFO sending PrepareRequest {"height": 10082, "view": 0} -2023-12-16T14:57:09.455Z INFO sending Commit {"height": 10082, "view": 0} -2023-12-16T14:57:09.456Z INFO approving block {"height": 10082, "hash": "136223f907fc518d477ec1ebd62126e49072d27a62e50492ef66c1f2c45486ea", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5fef1597e7724750bef9d7596750c6febb55a27e7ac6080d0901d90c4b8444d9"} -2023-12-16T14:57:09.457Z INFO initializing dbft {"height": 10083, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:09.458Z debug frostfs-node/morph.go:229 new block {"index": 10082} -2023-12-16T14:57:09.535Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10082, "blockHeight": 10082, "took": "7.476068ms"} -2023-12-16T14:57:10.456Z INFO sending PrepareRequest {"height": 10083, "view": 0} -2023-12-16T14:57:10.457Z INFO sending Commit {"height": 10083, "view": 0} -2023-12-16T14:57:10.457Z INFO approving block {"height": 10083, "hash": "ff59aefc327ff31bcd5c6db27bcbf4866ab22443da141076796be11c27e0fa92", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "136223f907fc518d477ec1ebd62126e49072d27a62e50492ef66c1f2c45486ea"} -2023-12-16T14:57:10.458Z INFO initializing dbft {"height": 10084, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:10.458Z debug frostfs-node/morph.go:229 new block {"index": 10083} -2023-12-16T14:57:10.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10083, "blockHeight": 10083, "took": "4.989516ms"} -2023-12-16T14:57:11.458Z INFO sending PrepareRequest {"height": 10084, "view": 0} -2023-12-16T14:57:11.458Z INFO sending Commit {"height": 10084, "view": 0} -2023-12-16T14:57:11.459Z INFO approving block {"height": 10084, "hash": "cb24265f33ec14a601d856c836348d77daa394d9c41d505ecaa8185e26e35478", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ff59aefc327ff31bcd5c6db27bcbf4866ab22443da141076796be11c27e0fa92"} -2023-12-16T14:57:11.460Z INFO initializing dbft {"height": 10085, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:11.460Z debug frostfs-node/morph.go:229 new block {"index": 10084} -2023-12-16T14:57:11.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10084, "blockHeight": 10084, "took": "4.047708ms"} -2023-12-16T14:57:12.460Z INFO sending PrepareRequest {"height": 10085, "view": 0} -2023-12-16T14:57:12.460Z INFO sending Commit {"height": 10085, "view": 0} -2023-12-16T14:57:12.461Z INFO approving block {"height": 10085, "hash": "8a4345679603348e3621f9ae492dca9e673095dc941ed1679a95baaa451e1044", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cb24265f33ec14a601d856c836348d77daa394d9c41d505ecaa8185e26e35478"} -2023-12-16T14:57:12.462Z INFO initializing dbft {"height": 10086, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:12.463Z debug frostfs-node/morph.go:229 new block {"index": 10085} -2023-12-16T14:57:12.533Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10085, "blockHeight": 10085, "took": "3.711158ms"} -2023-12-16T14:57:13.461Z INFO sending PrepareRequest {"height": 10086, "view": 0} -2023-12-16T14:57:13.462Z INFO sending Commit {"height": 10086, "view": 0} -2023-12-16T14:57:13.462Z INFO approving block {"height": 10086, "hash": "cd9fc750b21e5911ba55a31e63f3e9331a8811e73d1ad51eb7c0e704d9882351", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8a4345679603348e3621f9ae492dca9e673095dc941ed1679a95baaa451e1044"} -2023-12-16T14:57:13.463Z INFO initializing dbft {"height": 10087, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:13.464Z debug frostfs-node/morph.go:229 new block {"index": 10086} -2023-12-16T14:57:13.534Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10086, "blockHeight": 10086, "took": "3.625336ms"} -2023-12-16T14:57:14.463Z INFO sending PrepareRequest {"height": 10087, "view": 0} -2023-12-16T14:57:14.463Z INFO sending Commit {"height": 10087, "view": 0} -2023-12-16T14:57:14.463Z INFO approving block {"height": 10087, "hash": "db6f569847b8d182273bfcc4350401759e0eb03f84f8e308b121835859d4f8c3", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cd9fc750b21e5911ba55a31e63f3e9331a8811e73d1ad51eb7c0e704d9882351"} -2023-12-16T14:57:14.464Z INFO initializing dbft {"height": 10088, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:14.464Z debug frostfs-node/morph.go:229 new block {"index": 10087} -2023-12-16T14:57:14.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10087, "blockHeight": 10087, "took": "5.387365ms"} -2023-12-16T14:57:15.464Z INFO sending PrepareRequest {"height": 10088, "view": 0} -2023-12-16T14:57:15.465Z INFO sending Commit {"height": 10088, "view": 0} -2023-12-16T14:57:15.465Z INFO approving block {"height": 10088, "hash": "902851c61ddf5d31021105d4649e64aa13f3f4b6ad218da70e0dad9e5f48d006", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "db6f569847b8d182273bfcc4350401759e0eb03f84f8e308b121835859d4f8c3"} -2023-12-16T14:57:15.466Z INFO initializing dbft {"height": 10089, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:15.466Z debug frostfs-node/morph.go:229 new block {"index": 10088} -2023-12-16T14:57:15.536Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10088, "blockHeight": 10088, "took": "4.562363ms"} -2023-12-16T14:57:16.466Z INFO sending PrepareRequest {"height": 10089, "view": 0} -2023-12-16T14:57:16.466Z INFO sending Commit {"height": 10089, "view": 0} -2023-12-16T14:57:16.466Z INFO approving block {"height": 10089, "hash": "d979f59c733ff4c8d9da4dd8635b8a62d0ce2b7613b8da7037b4174b76e961c7", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "902851c61ddf5d31021105d4649e64aa13f3f4b6ad218da70e0dad9e5f48d006"} -2023-12-16T14:57:16.467Z INFO initializing dbft {"height": 10090, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:16.468Z debug frostfs-node/morph.go:229 new block {"index": 10089} -2023-12-16T14:57:16.539Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10089, "blockHeight": 10089, "took": "6.530531ms"} -2023-12-16T14:57:17.468Z INFO sending PrepareRequest {"height": 10090, "view": 0} -2023-12-16T14:57:17.468Z INFO sending Commit {"height": 10090, "view": 0} -2023-12-16T14:57:17.469Z INFO approving block {"height": 10090, "hash": "7a4ff11019f97572244997146b5915d4946119f2d9fc878e9d3a3a242f588a10", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "d979f59c733ff4c8d9da4dd8635b8a62d0ce2b7613b8da7037b4174b76e961c7"} -2023-12-16T14:57:17.470Z INFO initializing dbft {"height": 10091, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:17.470Z debug frostfs-node/morph.go:229 new block {"index": 10090} -2023-12-16T14:57:17.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10090, "blockHeight": 10090, "took": "7.5483ms"} -2023-12-16T14:57:18.470Z INFO sending PrepareRequest {"height": 10091, "view": 0} -2023-12-16T14:57:18.471Z INFO sending Commit {"height": 10091, "view": 0} -2023-12-16T14:57:18.471Z INFO approving block {"height": 10091, "hash": "13d2c40d3db4c7e5b7fa6f0af584fe3fb370c4067e4432496fbdb018b682b243", "tx_count": 1, "merkle": "d09894b439e67070123cb9d2a257d2c84a6ac681620ad001edadc53b72a55fb9", "prev": "7a4ff11019f97572244997146b5915d4946119f2d9fc878e9d3a3a242f588a10"} -2023-12-16T14:57:18.476Z INFO initializing dbft {"height": 10092, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:18.478Z debug frostfs-node/morph.go:229 new block {"index": 10091} -2023-12-16T14:57:18.541Z INFO persisted to disk {"blocks": 1, "keys": 49, "headerHeight": 10091, "blockHeight": 10091, "took": "7.926798ms"} -2023-12-16T14:57:19.472Z INFO sending PrepareRequest {"height": 10092, "view": 0} -2023-12-16T14:57:19.472Z INFO sending Commit {"height": 10092, "view": 0} -2023-12-16T14:57:19.473Z INFO approving block {"height": 10092, "hash": "f79cd82fbbaca025166b7c797425a03ed53336901565489f063aac143d0cc277", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13d2c40d3db4c7e5b7fa6f0af584fe3fb370c4067e4432496fbdb018b682b243"} -2023-12-16T14:57:19.474Z INFO initializing dbft {"height": 10093, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:19.475Z debug frostfs-node/morph.go:229 new block {"index": 10092} -2023-12-16T14:57:19.539Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10092, "blockHeight": 10092, "took": "4.752579ms"} -2023-12-16T14:57:20.474Z INFO sending PrepareRequest {"height": 10093, "view": 0} -2023-12-16T14:57:20.474Z INFO sending Commit {"height": 10093, "view": 0} -2023-12-16T14:57:20.474Z INFO approving block {"height": 10093, "hash": "305752321e553bef91a2459b485572c443044b97d103137f0563f7a809beb3bb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f79cd82fbbaca025166b7c797425a03ed53336901565489f063aac143d0cc277"} -2023-12-16T14:57:20.476Z INFO initializing dbft {"height": 10094, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:20.476Z debug frostfs-node/morph.go:229 new block {"index": 10093} -2023-12-16T14:57:20.540Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10093, "blockHeight": 10093, "took": "5.361166ms"} -2023-12-16T14:57:21.475Z INFO sending PrepareRequest {"height": 10094, "view": 0} -2023-12-16T14:57:21.475Z INFO sending Commit {"height": 10094, "view": 0} -2023-12-16T14:57:21.475Z INFO approving block {"height": 10094, "hash": "0afd855646a99bfbfd6191e17e04d9ab8cce5767172141f8f10d2855fe7acf67", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "305752321e553bef91a2459b485572c443044b97d103137f0563f7a809beb3bb"} -2023-12-16T14:57:21.476Z INFO initializing dbft {"height": 10095, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:21.477Z debug frostfs-node/morph.go:229 new block {"index": 10094} -2023-12-16T14:57:21.538Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10094, "blockHeight": 10094, "took": "3.328798ms"} -2023-12-16T14:57:22.476Z INFO sending PrepareRequest {"height": 10095, "view": 0} -2023-12-16T14:57:22.476Z INFO sending Commit {"height": 10095, "view": 0} -2023-12-16T14:57:22.477Z INFO approving block {"height": 10095, "hash": "fc4b3db7c7e5bcef23bf53844fdbc47bb05277435719391b67b16c18e487eb69", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "0afd855646a99bfbfd6191e17e04d9ab8cce5767172141f8f10d2855fe7acf67"} -2023-12-16T14:57:22.477Z INFO initializing dbft {"height": 10096, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:22.478Z debug frostfs-node/morph.go:229 new block {"index": 10095} -2023-12-16T14:57:22.539Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10095, "blockHeight": 10095, "took": "3.241345ms"} -2023-12-16T14:57:23.478Z INFO sending PrepareRequest {"height": 10096, "view": 0} -2023-12-16T14:57:23.478Z INFO sending Commit {"height": 10096, "view": 0} -2023-12-16T14:57:23.478Z INFO approving block {"height": 10096, "hash": "8925ec7b266ff8c05719fcdc304b410fc674c28d618506f7fddf655e9c6c6f74", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "fc4b3db7c7e5bcef23bf53844fdbc47bb05277435719391b67b16c18e487eb69"} -2023-12-16T14:57:23.479Z INFO initializing dbft {"height": 10097, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:23.479Z debug frostfs-node/morph.go:229 new block {"index": 10096} -2023-12-16T14:57:23.541Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10096, "blockHeight": 10096, "took": "4.085639ms"} -2023-12-16T14:57:24.479Z INFO sending PrepareRequest {"height": 10097, "view": 0} -2023-12-16T14:57:24.479Z INFO sending Commit {"height": 10097, "view": 0} -2023-12-16T14:57:24.480Z INFO approving block {"height": 10097, "hash": "df47facbead4c1a406c3848702678378a00011e4eea81ced5f4c5d39d8be3f1c", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8925ec7b266ff8c05719fcdc304b410fc674c28d618506f7fddf655e9c6c6f74"} -2023-12-16T14:57:24.481Z INFO initializing dbft {"height": 10098, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:24.482Z debug frostfs-node/morph.go:229 new block {"index": 10097} -2023-12-16T14:57:24.542Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10097, "blockHeight": 10097, "took": "4.540993ms"} -2023-12-16T14:57:25.480Z INFO sending PrepareRequest {"height": 10098, "view": 0} -2023-12-16T14:57:25.481Z INFO sending Commit {"height": 10098, "view": 0} -2023-12-16T14:57:25.481Z INFO approving block {"height": 10098, "hash": "b33bbce3ff33600a6d06dcac1f5c620118b2afe3b0b7394804b8483779971347", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "df47facbead4c1a406c3848702678378a00011e4eea81ced5f4c5d39d8be3f1c"} -2023-12-16T14:57:25.482Z INFO initializing dbft {"height": 10099, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:25.482Z debug frostfs-node/morph.go:229 new block {"index": 10098} -2023-12-16T14:57:25.543Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10098, "blockHeight": 10098, "took": "4.557732ms"} -2023-12-16T14:57:26.482Z INFO sending PrepareRequest {"height": 10099, "view": 0} -2023-12-16T14:57:26.482Z INFO sending Commit {"height": 10099, "view": 0} -2023-12-16T14:57:26.483Z INFO approving block {"height": 10099, "hash": "e2fd33e29037c76b5b1c1e14731d60497005978badfbe69af808fb34f939fc0f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b33bbce3ff33600a6d06dcac1f5c620118b2afe3b0b7394804b8483779971347"} -2023-12-16T14:57:26.484Z INFO initializing dbft {"height": 10100, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:26.484Z debug frostfs-node/morph.go:229 new block {"index": 10099} -2023-12-16T14:57:26.545Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10099, "blockHeight": 10099, "took": "5.754358ms"} -2023-12-16T14:57:27.483Z INFO sending PrepareRequest {"height": 10100, "view": 0} -2023-12-16T14:57:27.483Z INFO sending Commit {"height": 10100, "view": 0} -2023-12-16T14:57:27.484Z INFO approving block {"height": 10100, "hash": "be1b161642bd0f4ef908c86c49344ff399bf3e9f963556e01663bbe383ae354e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e2fd33e29037c76b5b1c1e14731d60497005978badfbe69af808fb34f939fc0f"} -2023-12-16T14:57:27.484Z INFO initializing dbft {"height": 10101, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:27.485Z debug frostfs-node/morph.go:229 new block {"index": 10100} -2023-12-16T14:57:27.487Z info alphabet/handlers.go:11 tick {"type": "alphabet gas emit"} -2023-12-16T14:57:27.489Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:57:27.489Z INFO runtime log {"tx": "a49a97a5a40a4d797f6dc13d24acc1bf009489d1a3e445691276d678624c27d7", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:57:27.544Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10100, "blockHeight": 10100, "took": "4.158402ms"} -2023-12-16T14:57:28.484Z INFO sending PrepareRequest {"height": 10101, "view": 0} -2023-12-16T14:57:28.484Z INFO sending Commit {"height": 10101, "view": 0} -2023-12-16T14:57:28.485Z INFO approving block {"height": 10101, "hash": "f291631192cb4f0832818293987fe169b72ee8a4f06512e025b4772057883443", "tx_count": 2, "merkle": "8a8320578880cc46c8f80181003b8c3ee64575748df5d41e654b64dea213ccf6", "prev": "be1b161642bd0f4ef908c86c49344ff399bf3e9f963556e01663bbe383ae354e"} -2023-12-16T14:57:28.485Z INFO runtime log {"tx": "61e412b52c6c29c21cce767248ad6ee9f833b9d232079c122d8ec2cd5de805de", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to proxy contract"} -2023-12-16T14:57:28.485Z INFO runtime log {"tx": "61e412b52c6c29c21cce767248ad6ee9f833b9d232079c122d8ec2cd5de805de", "script": "403ec6d719e56e1ab123ac4090f4315e920c34b9", "msg": "utility token has been emitted to inner ring nodes"} -2023-12-16T14:57:28.486Z INFO initializing dbft {"height": 10102, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:28.487Z debug frostfs-node/morph.go:229 new block {"index": 10101} -2023-12-16T14:57:28.546Z INFO persisted to disk {"blocks": 1, "keys": 48, "headerHeight": 10101, "blockHeight": 10101, "took": "6.032826ms"} -2023-12-16T14:57:29.486Z INFO sending PrepareRequest {"height": 10102, "view": 0} -2023-12-16T14:57:29.486Z INFO sending Commit {"height": 10102, "view": 0} -2023-12-16T14:57:29.486Z INFO approving block {"height": 10102, "hash": "1e5f3c7695b14325a806b3e44c634772d976ac16524f85aeae1eb442ff9dd407", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "f291631192cb4f0832818293987fe169b72ee8a4f06512e025b4772057883443"} -2023-12-16T14:57:29.487Z INFO initializing dbft {"height": 10103, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:29.487Z debug frostfs-node/morph.go:229 new block {"index": 10102} -2023-12-16T14:57:29.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10102, "blockHeight": 10102, "took": "5.056477ms"} -2023-12-16T14:57:30.488Z INFO sending PrepareRequest {"height": 10103, "view": 0} -2023-12-16T14:57:30.488Z INFO sending Commit {"height": 10103, "view": 0} -2023-12-16T14:57:30.488Z INFO approving block {"height": 10103, "hash": "7ce69c647e2fd675d14978d109612eb77fbdaf3d4cd2a332bc93aff68b159108", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "1e5f3c7695b14325a806b3e44c634772d976ac16524f85aeae1eb442ff9dd407"} -2023-12-16T14:57:30.491Z INFO initializing dbft {"height": 10104, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:30.491Z debug frostfs-node/morph.go:229 new block {"index": 10103} -2023-12-16T14:57:30.545Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10103, "blockHeight": 10103, "took": "3.913774ms"} -2023-12-16T14:57:31.489Z INFO sending PrepareRequest {"height": 10104, "view": 0} -2023-12-16T14:57:31.489Z INFO sending Commit {"height": 10104, "view": 0} -2023-12-16T14:57:31.490Z INFO approving block {"height": 10104, "hash": "17ec243651727516e1d710b3e2b877e33e92a0b43403ea9664a3102120ea7108", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "7ce69c647e2fd675d14978d109612eb77fbdaf3d4cd2a332bc93aff68b159108"} -2023-12-16T14:57:31.491Z INFO initializing dbft {"height": 10105, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:31.492Z debug frostfs-node/morph.go:229 new block {"index": 10104} -2023-12-16T14:57:31.545Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10104, "blockHeight": 10104, "took": "3.199783ms"} -2023-12-16T14:57:32.491Z INFO sending PrepareRequest {"height": 10105, "view": 0} -2023-12-16T14:57:32.491Z INFO sending Commit {"height": 10105, "view": 0} -2023-12-16T14:57:32.491Z INFO approving block {"height": 10105, "hash": "90ac48baa7a3fd07d4724d0298c11cdb514fce97b7cba48dbf7ff9b6e8c3a855", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "17ec243651727516e1d710b3e2b877e33e92a0b43403ea9664a3102120ea7108"} -2023-12-16T14:57:32.492Z INFO initializing dbft {"height": 10106, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:32.493Z debug frostfs-node/morph.go:229 new block {"index": 10105} -2023-12-16T14:57:32.546Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10105, "blockHeight": 10105, "took": "3.476981ms"} -2023-12-16T14:57:33.492Z INFO sending PrepareRequest {"height": 10106, "view": 0} -2023-12-16T14:57:33.492Z INFO sending Commit {"height": 10106, "view": 0} -2023-12-16T14:57:33.492Z INFO approving block {"height": 10106, "hash": "ed6e2c261131d0ebaa16f1578331b9e7900031175e3b9392971143930f7bca91", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "90ac48baa7a3fd07d4724d0298c11cdb514fce97b7cba48dbf7ff9b6e8c3a855"} -2023-12-16T14:57:33.493Z INFO initializing dbft {"height": 10107, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:33.494Z debug frostfs-node/morph.go:229 new block {"index": 10106} -2023-12-16T14:57:33.548Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10106, "blockHeight": 10106, "took": "3.737039ms"} -2023-12-16T14:57:34.494Z INFO sending PrepareRequest {"height": 10107, "view": 0} -2023-12-16T14:57:34.494Z INFO sending Commit {"height": 10107, "view": 0} -2023-12-16T14:57:34.494Z INFO approving block {"height": 10107, "hash": "5a685d4406e186abb7ec6d1d1dc860a7780100c62141fe21b35a7bfddc5ce869", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "ed6e2c261131d0ebaa16f1578331b9e7900031175e3b9392971143930f7bca91"} -2023-12-16T14:57:34.496Z INFO initializing dbft {"height": 10108, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:34.496Z debug frostfs-node/morph.go:229 new block {"index": 10107} -2023-12-16T14:57:34.548Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10107, "blockHeight": 10107, "took": "3.123311ms"} -2023-12-16T14:57:35.495Z INFO sending PrepareRequest {"height": 10108, "view": 0} -2023-12-16T14:57:35.495Z INFO sending Commit {"height": 10108, "view": 0} -2023-12-16T14:57:35.495Z INFO approving block {"height": 10108, "hash": "cbc0848e23f6d2a9ce714266625df5db81cac354340ee53431daa2e61d5ab1b2", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "5a685d4406e186abb7ec6d1d1dc860a7780100c62141fe21b35a7bfddc5ce869"} -2023-12-16T14:57:35.496Z INFO initializing dbft {"height": 10109, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:35.496Z debug frostfs-node/morph.go:229 new block {"index": 10108} -2023-12-16T14:57:35.548Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10108, "blockHeight": 10108, "took": "3.194223ms"} -2023-12-16T14:57:36.496Z INFO sending PrepareRequest {"height": 10109, "view": 0} -2023-12-16T14:57:36.497Z INFO sending Commit {"height": 10109, "view": 0} -2023-12-16T14:57:36.497Z INFO approving block {"height": 10109, "hash": "993589fa50e9c0a2034d1981491c8946aa9be4b415445aa5f6433ebf98ca5ad5", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "cbc0848e23f6d2a9ce714266625df5db81cac354340ee53431daa2e61d5ab1b2"} -2023-12-16T14:57:36.497Z INFO initializing dbft {"height": 10110, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:36.498Z debug frostfs-node/morph.go:229 new block {"index": 10109} -2023-12-16T14:57:36.549Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10109, "blockHeight": 10109, "took": "3.307636ms"} -2023-12-16T14:57:37.498Z INFO sending PrepareRequest {"height": 10110, "view": 0} -2023-12-16T14:57:37.498Z INFO sending Commit {"height": 10110, "view": 0} -2023-12-16T14:57:37.498Z INFO approving block {"height": 10110, "hash": "13c4de811916fb997d5a0819a753acb47e304df4b7a8a354ad0ce1ea8c93d02f", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "993589fa50e9c0a2034d1981491c8946aa9be4b415445aa5f6433ebf98ca5ad5"} -2023-12-16T14:57:37.499Z INFO initializing dbft {"height": 10111, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:37.499Z debug frostfs-node/morph.go:229 new block {"index": 10110} -2023-12-16T14:57:37.551Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10110, "blockHeight": 10110, "took": "4.698417ms"} -2023-12-16T14:57:38.500Z INFO sending PrepareRequest {"height": 10111, "view": 0} -2023-12-16T14:57:38.500Z INFO sending Commit {"height": 10111, "view": 0} -2023-12-16T14:57:38.500Z INFO approving block {"height": 10111, "hash": "a19b0224ca02fa5c463f1ee881d6222e4b3f27c2dda5d49e7129782113999cab", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "13c4de811916fb997d5a0819a753acb47e304df4b7a8a354ad0ce1ea8c93d02f"} -2023-12-16T14:57:38.501Z INFO initializing dbft {"height": 10112, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:38.502Z debug frostfs-node/morph.go:229 new block {"index": 10111} -2023-12-16T14:57:38.553Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10111, "blockHeight": 10111, "took": "5.843951ms"} -2023-12-16T14:57:39.502Z INFO sending PrepareRequest {"height": 10112, "view": 0} -2023-12-16T14:57:39.502Z INFO sending Commit {"height": 10112, "view": 0} -2023-12-16T14:57:39.502Z INFO approving block {"height": 10112, "hash": "6206f1de268e5c0e70af79c53e53564b57fa332e6607ae95c360a9b4058eb262", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a19b0224ca02fa5c463f1ee881d6222e4b3f27c2dda5d49e7129782113999cab"} -2023-12-16T14:57:39.504Z INFO initializing dbft {"height": 10113, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:39.505Z debug frostfs-node/morph.go:229 new block {"index": 10112} -2023-12-16T14:57:39.552Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10112, "blockHeight": 10112, "took": "4.068028ms"} -2023-12-16T14:57:40.503Z INFO sending PrepareRequest {"height": 10113, "view": 0} -2023-12-16T14:57:40.504Z INFO sending Commit {"height": 10113, "view": 0} -2023-12-16T14:57:40.504Z INFO approving block {"height": 10113, "hash": "e4e669027f04a667462e635b5fa53333868b152db344111222540efae628d622", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "6206f1de268e5c0e70af79c53e53564b57fa332e6607ae95c360a9b4058eb262"} -2023-12-16T14:57:40.505Z INFO initializing dbft {"height": 10114, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:40.505Z debug frostfs-node/morph.go:229 new block {"index": 10113} -2023-12-16T14:57:40.553Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10113, "blockHeight": 10113, "took": "3.804991ms"} -2023-12-16T14:57:41.504Z INFO sending PrepareRequest {"height": 10114, "view": 0} -2023-12-16T14:57:41.505Z INFO sending Commit {"height": 10114, "view": 0} -2023-12-16T14:57:41.505Z INFO approving block {"height": 10114, "hash": "42b57da9e26792c387cb2e08db43ea404fc98139b507bf0521e3809568050197", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "e4e669027f04a667462e635b5fa53333868b152db344111222540efae628d622"} -2023-12-16T14:57:41.505Z INFO initializing dbft {"height": 10115, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:41.506Z debug frostfs-node/morph.go:229 new block {"index": 10114} -2023-12-16T14:57:41.555Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10114, "blockHeight": 10114, "took": "5.074058ms"} -2023-12-16T14:57:42.506Z INFO sending PrepareRequest {"height": 10115, "view": 0} -2023-12-16T14:57:42.506Z INFO sending Commit {"height": 10115, "view": 0} -2023-12-16T14:57:42.506Z INFO approving block {"height": 10115, "hash": "4d8d121c6a0835ff506ae09ad6c38d46c8c9378fb925899cef56eb4c984f14e1", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "42b57da9e26792c387cb2e08db43ea404fc98139b507bf0521e3809568050197"} -2023-12-16T14:57:42.508Z INFO initializing dbft {"height": 10116, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:42.509Z debug frostfs-node/morph.go:229 new block {"index": 10115} -2023-12-16T14:57:42.556Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10115, "blockHeight": 10115, "took": "4.871752ms"} -2023-12-16T14:57:43.507Z INFO sending PrepareRequest {"height": 10116, "view": 0} -2023-12-16T14:57:43.507Z INFO sending Commit {"height": 10116, "view": 0} -2023-12-16T14:57:43.507Z INFO approving block {"height": 10116, "hash": "54c67bbb20e8c14d43743938adbba961debe6e8d69c79859f7de2da386bf902b", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "4d8d121c6a0835ff506ae09ad6c38d46c8c9378fb925899cef56eb4c984f14e1"} -2023-12-16T14:57:43.508Z INFO initializing dbft {"height": 10117, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:43.509Z debug frostfs-node/morph.go:229 new block {"index": 10116} -2023-12-16T14:57:43.554Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10116, "blockHeight": 10116, "took": "3.07674ms"} -2023-12-16T14:57:44.509Z INFO sending PrepareRequest {"height": 10117, "view": 0} -2023-12-16T14:57:44.509Z INFO sending Commit {"height": 10117, "view": 0} -2023-12-16T14:57:44.509Z INFO approving block {"height": 10117, "hash": "b68aed6e77532d6ffb2a45973cff95ada6fdf1296b3c5dd8bc2b0abbe3c64f19", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "54c67bbb20e8c14d43743938adbba961debe6e8d69c79859f7de2da386bf902b"} -2023-12-16T14:57:44.510Z INFO initializing dbft {"height": 10118, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:44.511Z debug frostfs-node/morph.go:229 new block {"index": 10117} -2023-12-16T14:57:44.556Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10117, "blockHeight": 10117, "took": "4.215144ms"} -2023-12-16T14:57:45.510Z INFO sending PrepareRequest {"height": 10118, "view": 0} -2023-12-16T14:57:45.510Z INFO sending Commit {"height": 10118, "view": 0} -2023-12-16T14:57:45.511Z INFO approving block {"height": 10118, "hash": "29a3e09a0be9c61b5c815ac0ede7656e809dbd7d9273f5e62599ed42f9c8f55e", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "b68aed6e77532d6ffb2a45973cff95ada6fdf1296b3c5dd8bc2b0abbe3c64f19"} -2023-12-16T14:57:45.512Z INFO initializing dbft {"height": 10119, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:45.512Z debug frostfs-node/morph.go:229 new block {"index": 10118} -2023-12-16T14:57:45.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10118, "blockHeight": 10118, "took": "5.403468ms"} -2023-12-16T14:57:46.512Z INFO sending PrepareRequest {"height": 10119, "view": 0} -2023-12-16T14:57:46.512Z INFO sending Commit {"height": 10119, "view": 0} -2023-12-16T14:57:46.512Z INFO approving block {"height": 10119, "hash": "8649321230f912c225c4c0d6aad8a0e1baece8af5af85bec631686cce86851cb", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "29a3e09a0be9c61b5c815ac0ede7656e809dbd7d9273f5e62599ed42f9c8f55e"} -2023-12-16T14:57:46.513Z INFO initializing dbft {"height": 10120, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:46.514Z debug frostfs-node/morph.go:229 new block {"index": 10119} -2023-12-16T14:57:46.558Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10119, "blockHeight": 10119, "took": "4.533362ms"} -2023-12-16T14:57:47.513Z INFO sending PrepareRequest {"height": 10120, "view": 0} -2023-12-16T14:57:47.513Z INFO sending Commit {"height": 10120, "view": 0} -2023-12-16T14:57:47.513Z INFO approving block {"height": 10120, "hash": "a4cc7daaa14256d11eb975a0454ef96afd66ab66cb87acaf372346e775ea6b89", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "8649321230f912c225c4c0d6aad8a0e1baece8af5af85bec631686cce86851cb"} -2023-12-16T14:57:47.514Z INFO initializing dbft {"height": 10121, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:47.515Z debug frostfs-node/morph.go:229 new block {"index": 10120} -2023-12-16T14:57:47.517Z info netmap/handlers.go:15 tick {"type": "epoch"} -2023-12-16T14:57:47.518Z debug calculator/calls.go:59 consumers trust iterator's init failure {"epoch": 42, "iteration": 3, "error": "no data for 2 iteration in 42 epoch for consumers's trusts"} -2023-12-16T14:57:47.520Z INFO runtime log {"tx": "2538a0535f8c86a1fbb8009d1ae16c2c2307adc33bbb8373caaa9313099f41f3", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:57:47.557Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10120, "blockHeight": 10120, "took": "3.186433ms"} -2023-12-16T14:57:48.514Z INFO sending PrepareRequest {"height": 10121, "view": 0} -2023-12-16T14:57:48.514Z INFO sending Commit {"height": 10121, "view": 0} -2023-12-16T14:57:48.515Z INFO approving block {"height": 10121, "hash": "1ab6ba6b035ba58ed99beacd647b331795a7e88c48c29510b3a05ceafe6627e5", "tx_count": 1, "merkle": "4dbc484fd828d636dbc17f083f96e95cfbce977b1684146829a6fff1f805dcd3", "prev": "a4cc7daaa14256d11eb975a0454ef96afd66ab66cb87acaf372346e775ea6b89"} -2023-12-16T14:57:48.515Z INFO runtime log {"tx": "d3dc05f8f1ffa629681484167b97cefb5ce9963f087fc1db36d628d84f48bc4d", "script": "a9dc350d936b140f93ecc85999e2392d915b8989", "msg": "process new epoch"} -2023-12-16T14:57:48.516Z info frostfs-node/morph.go:218 new epoch event from sidechain {"number": 44} -2023-12-16T14:57:48.516Z debug tree/sync.go:298 syncing trees... -2023-12-16T14:57:48.516Z INFO initializing dbft {"height": 10122, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:48.516Z info netmap/handlers.go:29 notification {"type": "new epoch", "value": 44} -2023-12-16T14:57:48.517Z debug shard/gc.go:379 started expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 44} -2023-12-16T14:57:48.517Z debug shard/gc.go:397 iterating tombstones {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 44} -2023-12-16T14:57:48.517Z debug shard/gc.go:437 finished expired tombstones handling {"shard_id": "EZ7Sjau6xAKGque4vyXNYM", "epoch": 44} -2023-12-16T14:57:48.517Z debug frostfs-node/reputation.go:108 start reporting reputation on new epoch event -2023-12-16T14:57:48.517Z debug controller/calls.go:95 starting to report local trust values {"epoch": 43} -2023-12-16T14:57:48.517Z debug local/storage.go:30 initializing iterator over trusts {"trust_type": "local", "epoch": 43} -2023-12-16T14:57:48.517Z debug frostfs-node/morph.go:229 new block {"index": 10121} -2023-12-16T14:57:48.519Z debug tree/sync.go:312 trees have been synchronized -2023-12-16T14:57:48.519Z debug controller/calls.go:146 reporting successfully finished {"epoch": 43} -2023-12-16T14:57:48.519Z debug controller/calls.go:168 reporting successfully interrupted {"epoch": 43} -2023-12-16T14:57:48.521Z INFO runtime log {"tx": "f94f3789a101b4126fd606dc50c71230c41f13dbee1f9fe2c4c0069350b398ae", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:57:48.523Z info client/notary.go:214 notary deposit invoke {"amount": 10149285474, "expire_at": 4294967295, "vub": 10124, "tx_hash": "ff489448f0c6148913c98045089c4e839358738cc51838143dc2704fa7833997"} -2023-12-16T14:57:48.529Z info netmap/handlers.go:91 tick {"type": "netmap cleaner"} -2023-12-16T14:57:48.530Z info audit/handlers.go:13 new round of audit {"epoch": 44} -2023-12-16T14:57:48.530Z info settlement/calls.go:26 new audit settlement event {"epoch": 44} -2023-12-16T14:57:48.530Z info settlement/handlers.go:14 process audit settlements {"epoch": 44} -2023-12-16T14:57:48.531Z info audit/calculate.go:65 calculate audit settlements {"current epoch": 44} -2023-12-16T14:57:48.532Z info settlement/handlers.go:18 audit processing finished {"epoch": 44} -2023-12-16T14:57:48.533Z info audit/process.go:39 select containers for audit {"epoch": 44, "amount": 0} -2023-12-16T14:57:48.535Z info client/notary.go:214 notary deposit invoke {"amount": 1, "expire_at": 4294967295, "vub": 10124, "tx_hash": "0693f490409335267d03775b74c6755289c54cc72ab582184c03342c8d72817a"} -2023-12-16T14:57:48.560Z INFO persisted to disk {"blocks": 1, "keys": 53, "headerHeight": 10121, "blockHeight": 10121, "took": "6.046896ms"} -2023-12-16T14:57:49.516Z INFO sending PrepareRequest {"height": 10122, "view": 0} -2023-12-16T14:57:49.517Z INFO sending Commit {"height": 10122, "view": 0} -2023-12-16T14:57:49.517Z INFO approving block {"height": 10122, "hash": "331c7fc293ad11803dd78eceb15782c9bf010266734b76d0ea50f0ec8fae701a", "tx_count": 3, "merkle": "42d2d2cb88dc250dc9e35f45a7fa307f9925ac183877ecde05aac51317958ece", "prev": "1ab6ba6b035ba58ed99beacd647b331795a7e88c48c29510b3a05ceafe6627e5"} -2023-12-16T14:57:49.518Z INFO runtime log {"tx": "751e78140968ebfe2845392378d986fc1b0e51ec5c855c17d17deb18985b23e6", "script": "b9dd888a52273883aa3ba7ab2b46847567bed0e6", "msg": "notification has been produced"} -2023-12-16T14:57:49.519Z INFO initializing dbft {"height": 10123, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:49.519Z debug controller/calls.go:55 starting to announce the values of the metrics {"epoch": 43} -2023-12-16T14:57:49.519Z debug controller/calls.go:110 trust announcement successfully finished {"epoch": 43} -2023-12-16T14:57:49.519Z debug controller/calls.go:162 announcement successfully interrupted {"epoch": 43} -2023-12-16T14:57:49.519Z debug frostfs-node/morph.go:229 new block {"index": 10122} -2023-12-16T14:57:49.563Z INFO persisted to disk {"blocks": 1, "keys": 57, "headerHeight": 10122, "blockHeight": 10122, "took": "7.713746ms"} -2023-12-16T14:57:50.518Z INFO sending PrepareRequest {"height": 10123, "view": 0} -2023-12-16T14:57:50.519Z INFO sending Commit {"height": 10123, "view": 0} -2023-12-16T14:57:50.519Z INFO approving block {"height": 10123, "hash": "828218788867c55644959ceafcc90922d669ccf274daccc5cf8d9d3bb6bc08b9", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "331c7fc293ad11803dd78eceb15782c9bf010266734b76d0ea50f0ec8fae701a"} -2023-12-16T14:57:50.520Z INFO initializing dbft {"height": 10124, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:50.521Z debug frostfs-node/morph.go:229 new block {"index": 10123} -2023-12-16T14:57:50.559Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10123, "blockHeight": 10123, "took": "3.553664ms"} -2023-12-16T14:57:51.520Z INFO sending PrepareRequest {"height": 10124, "view": 0} -2023-12-16T14:57:51.520Z INFO sending Commit {"height": 10124, "view": 0} -2023-12-16T14:57:51.520Z INFO approving block {"height": 10124, "hash": "a411ce2adefd9bd7e3f154574c35614842381ab11b0d3043c24d3e72dd1b9583", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "828218788867c55644959ceafcc90922d669ccf274daccc5cf8d9d3bb6bc08b9"} -2023-12-16T14:57:51.522Z INFO initializing dbft {"height": 10125, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:51.522Z debug frostfs-node/morph.go:229 new block {"index": 10124} -2023-12-16T14:57:51.562Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10124, "blockHeight": 10124, "took": "5.649135ms"} -2023-12-16T14:57:52.522Z INFO sending PrepareRequest {"height": 10125, "view": 0} -2023-12-16T14:57:52.522Z INFO sending Commit {"height": 10125, "view": 0} -2023-12-16T14:57:52.522Z INFO approving block {"height": 10125, "hash": "71b76ab243f3aee182af83e111f65a087c59ac0a5d147637a954d817d56f06a0", "tx_count": 0, "merkle": "0000000000000000000000000000000000000000000000000000000000000000", "prev": "a411ce2adefd9bd7e3f154574c35614842381ab11b0d3043c24d3e72dd1b9583"} -2023-12-16T14:57:52.523Z INFO initializing dbft {"height": 10126, "view": 0, "index": 0, "role": "Primary"} -2023-12-16T14:57:52.524Z debug frostfs-node/morph.go:229 new block {"index": 10125} -2023-12-16T14:57:52.560Z INFO persisted to disk {"blocks": 1, "keys": 30, "headerHeight": 10125, "blockHeight": 10125, "took": "3.43566ms"} diff --git a/morph/node-config.yaml b/morph/node-config.yaml deleted file mode 100644 index fe97a41..0000000 --- a/morph/node-config.yaml +++ /dev/null @@ -1,4 +0,0 @@ ---- - -Path: "/config/node-wallet.json" -Password: "one" diff --git a/morph/node-wallet.json b/morph/node-wallet.json deleted file mode 100644 index 8e88b43..0000000 --- a/morph/node-wallet.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "version": "3.0", - "name":null, - "accounts": [ - { - "address": "Nhfg3TbpwogLvDGVvAvqyThbsHgoSUKwtn", - "key": "6PYM8VdX2BSm7BSXKzV4Fz6S3R9cDLLWNrD9nMjxW352jEv3fsC8N3wNLY", - "label": "single", - "contract": { - "script": "DCECs2Ir9AF73+MXxYrtX0x1PyBrfbiWBG+n13S7xL9/jcJBVuezJw==", - "parameters": [ - { - "name": "parameter0", - "type": "Signature" - } - ], - "deployed": false - }, - "lock": false, - "extra":null, - "isDefault": false - }, - { - "address": "NfgHwwTi3wHAS8aFAN243C5vGbkYDpqLHP", - "key": "6PYM8VdX2BSm7BSXKzV4Fz6S3R9cDLLWNrD9nMjxW352jEv3fsC8N3wNLY", - "label": "consensus", - "contract": { - "script": "EQwhArNiK/QBe9/jF8WK7V9MdT8ga324lgRvp9d0u8S/f43CEUGe0Nw6", - "parameters": [ - { - "name": "parameter0", - "type": "Signature" - } - ], - "deployed": false - }, - "lock": false, - "extra":null, - "isDefault": false - }, - { - "address": "NfgHwwTi3wHAS8aFAN243C5vGbkYDpqLHP", - "key": "6PYM8VdX2BSm7BSXKzV4Fz6S3R9cDLLWNrD9nMjxW352jEv3fsC8N3wNLY", - "label": "committee", - "contract": { - "script": "EQwhArNiK/QBe9/jF8WK7V9MdT8ga324lgRvp9d0u8S/f43CEUGe0Nw6", - "parameters": [ - { - "name": "parameter0", - "type": "Signature" - } - ], - "deployed": false - }, - "lock": false, - "extra":null, - "isDefault": true - } - ], - "scrypt": { - "n": 16384, - "r": 8, - "p": 8 - }, - "extra": { - "Tokens": null - } -} diff --git a/morph/protocol.privnet.yml b/morph/protocol.privnet.yml deleted file mode 100644 index 6204984..0000000 --- a/morph/protocol.privnet.yml +++ /dev/null @@ -1,54 +0,0 @@ -ProtocolConfiguration: - Magic: 15405 - MaxTraceableBlocks: 200000 - TimePerBlock: 1s - MemPoolSize: 50000 - StandbyCommittee: - - 02b3622bf4017bdfe317c58aed5f4c753f206b7db896046fa7d774bbc4bf7f8dc2 - ValidatorsCount: 1 - SeedList: - - 127.0.0.1:20333 - VerifyTransactions: true - StateRootInHeader: true - P2PSigExtensions: true - -ApplicationConfiguration: - SkipBlockVerification: false - DBConfiguration: - Type: "boltdb" - BoltDBOptions: - FilePath: "/data/chain/morph.bolt" - P2P: - Addresses: - - ":20333" - DialTimeout: 3s - ProtoTickInterval: 2s - PingInterval: 30s - PingTimeout: 90s - MaxPeers: 10 - AttemptConnPeers: 5 - MinPeers: 0 - Relay: true - RPC: - Addresses: - - ":30333" - Enabled: true - SessionEnabled: true - EnableCORSWorkaround: false - MaxGasInvoke: 100 - P2PNotary: - Enabled: true - UnlockWallet: - Path: "/config/node-wallet.json" - Password: "one" - Prometheus: - Addresses: - - ":20001" - Enabled: true - Pprof: - Addresses: - - ":20011" - Enabled: false - UnlockWallet: - Path: "/config/node-wallet.json" - Password: "one" diff --git a/s3-gw/rules.json b/s3-gw/rules.json deleted file mode 100644 index 42d22ba..0000000 --- a/s3-gw/rules.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "records": [ - { - "operation": "PUT", - "action": "ALLOW", - "filters": [], - "targets": [ - { - "role": "OTHERS", - "keys": [] - } - ] - }, - { - "operation": "GET", - "action": "ALLOW", - "filters": [], - "targets": [ - { - "role": "OTHERS", - "keys": [] - } - ] - }, - { - "operation": "DELETE", - "action": "ALLOW", - "filters": [], - "targets": [ - { - "role": "OTHERS", - "keys": [] - } - ] - }, - { - "operation": "SEARCH", - "action": "ALLOW", - "filters": [], - "targets": [ - { - "role": "OTHERS", - "keys": [] - } - ] - }, - { - "operation": "GETRANGE", - "action": "ALLOW", - "filters": [], - "targets": [ - { - "role": "OTHERS", - "keys": [] - } - ] - }, - { - "operation": "GETRANGEHASH", - "action": "ALLOW", - "filters": [], - "targets": [ - { - "role": "OTHERS", - "keys": [] - } - ] - }, - { - "operation": "HEAD", - "action": "ALLOW", - "filters": [], - "targets": [ - { - "role": "OTHERS", - "keys": [] - } - ] - } - ] -} diff --git a/s3-gw/s3-gw-config.yaml b/s3-gw/s3-gw-config.yaml deleted file mode 100644 index 522e1b4..0000000 --- a/s3-gw/s3-gw-config.yaml +++ /dev/null @@ -1,67 +0,0 @@ -wallet: - path: /config/s3-gw-wallet.json - passphrase: "" - address: NN1RQ3qwnvDMVNsQw4WPkKi7BrjxdVTDZp - -peers: - 0: - address: localhost:8080 - priority: 1 - weight: 1 - -server: - - address: 0.0.0.0:8084 - -logger: - level: debug - -tree: - service: localhost:8080 - -rpc_endpoint: http://localhost:30333 -resolve_order: - - nns - -pprof: - enabled: false - address: localhost:8085 - -prometheus: - enabled: false - address: localhost:8086 - -connect_timeout: 10s -stream_timeout: 10s -healthcheck_timeout: 15s -rebalance_interval: 60s -pool_error_threshold: 100 -max_clients_count: 100 -max_clients_deadline: 30s - -cache: - objects: - lifetime: 300s - size: 150 - list: - lifetime: 1m - size: 100 - names: - lifetime: 1m - size: 1000 - buckets: - lifetime: 1m - size: 500 - system: - lifetime: 2m - size: 1000 - accessbox: - lifetime: 5m - size: 10 - accesscontrol: - lifetime: 1m - size: 100000 - -placement_policy: - default: REP 1 - - diff --git a/s3-gw/s3-gw-wallet.json b/s3-gw/s3-gw-wallet.json deleted file mode 100644 index 54f449e..0000000 --- a/s3-gw/s3-gw-wallet.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"NN1RQ3qwnvDMVNsQw4WPkKi7BrjxdVTDZp","key":"6PYPdaCberkBnPGL1vbt7rkekPKCFv3GvnPnCA67UMkKhTozamkhZj3j2X","label":"S3 Gateway","contract":{"script":"DCEDEv5lsQFWXedO7fR3r7Q0F/9feVcyUGz93I4ETFoDDXZBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/s3-gw/user-wallet.json b/s3-gw/user-wallet.json deleted file mode 100644 index d76c616..0000000 --- a/s3-gw/user-wallet.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"NWeByJPgNC97F83hTUnSbnZSBKaFvk5HNw","key":"6PYVCcS2yp89JpcfR61FGhdhhzyYjSErNedmpZErnybNTxUZMRdhzJLrek","label":"","contract":{"script":"DCEDJOdiiPy5ABANAYAqFO+XfMpFrQc1YSMERt8Us0TIWLZBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/sn/cli-cfg.yaml b/sn/cli-cfg.yaml deleted file mode 100644 index 2a1beb6..0000000 --- a/sn/cli-cfg.yaml +++ /dev/null @@ -1,2 +0,0 @@ -wallet: /config/wallet-sn.json -password: "" diff --git a/sn/config.yaml b/sn/config.yaml deleted file mode 100644 index 1e082f3..0000000 --- a/sn/config.yaml +++ /dev/null @@ -1,70 +0,0 @@ -morph: - rpc_endpoint: - - address: ws://localhost:30333/ws - dial_timeout: 20s - -control: - grpc: - endpoint: 0.0.0.0:16513 - -node: - wallet: - path: /config/wallet-sn.json - password: "" - addresses: - - grpc://0.0.0.0:8080 - attribute_0: UN-LOCODE:DE FKS - attribute_1: Price:10 - attribute_2: Deployed:Private - -grpc: - num: 1 - 0: - endpoint: 0.0.0.0:8080 - tls: - enabled: false - -logger: - level: debug - -prometheus: - enabled: false - address: localhost:6664 - -pprof: - enabled: false - address: localhost:6663 - -storage: - shard_num: 1 - shard: - 0: - writecache: - enabled: false - metabase: - path: /data/metabase.db - perm: 0770 - blobstor: - - type: blobovnicza - path: /data/blob/blobovnicza - perm: 0660 - opened_cache_capacity: 32 - depth: 1 - width: 1 - size: 4g - - type: fstree - path: /data/blob - gc: - remover_batch_size: 100 - remover_sleep_interval: 5m - pilorama: - path: /data/storage/pilorama - -tree: - enabled: true - -object: - put: - pool_size_remote: 100 - pool_size_local: 100 - diff --git a/sn/wallet.json b/sn/wallet.json deleted file mode 100644 index 6680c09..0000000 --- a/sn/wallet.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "version":"3.0", - "accounts":[ - { - "address":"NejLbQpojKJWec4NQRMBhzsrmCyhXfGJJe", - "key":"6PYSS8ccmBcttfcw2YJh8VcNSoeQbQLuJLQ7HoKeYF5roRmGs9LUvmKcWz", - "label":"", - "contract":{ - "script":"DCECK7QEHFDWB/+HHex+TNd3g4jg6mhJ2EzL2aqPMuFqgTFBVuezJw==", - "parameters":[ - { - "name":"parameter0", - "type":"Signature" - } - ], - "deployed":false - }, - "lock":false, - "extra":null, - "isDefault":true - } - ], - "name":null, - "scrypt":{ - "n":16384, - "r":8, - "p":8 - }, - "extra":{ - "Tokens":null - } -} diff --git a/vendor/contracts/alphabet/alphabet_contract.nef b/vendor/contracts/alphabet/alphabet_contract.nef deleted file mode 100755 index c96b097..0000000 Binary files a/vendor/contracts/alphabet/alphabet_contract.nef and /dev/null differ diff --git a/vendor/contracts/alphabet/config.json b/vendor/contracts/alphabet/config.json deleted file mode 100755 index b623839..0000000 --- a/vendor/contracts/alphabet/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Alphabet","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":35,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"emit","offset":1191,"parameters":[],"returntype":"Void","safe":false},{"name":"gas","offset":1010,"parameters":[],"returntype":"Integer","safe":true},{"name":"name","offset":1813,"parameters":[],"returntype":"String","safe":true},{"name":"neo","offset":1024,"parameters":[],"returntype":"Integer","safe":true},{"name":"onNEP17Payment","offset":741,"parameters":[{"name":"from","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"update","offset":878,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"version","offset":1829,"parameters":[],"returntype":"Integer","safe":true},{"name":"vote","offset":1650,"parameters":[{"name":"epoch","type":"Integer"},{"name":"candidates","type":"Array"}],"returntype":"Void","safe":false}],"events":[]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update","transfer","vote"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/audit/audit_contract.nef b/vendor/contracts/audit/audit_contract.nef deleted file mode 100755 index 0a6f411..0000000 Binary files a/vendor/contracts/audit/audit_contract.nef and /dev/null differ diff --git a/vendor/contracts/audit/config.json b/vendor/contracts/audit/config.json deleted file mode 100755 index c82cada..0000000 --- a/vendor/contracts/audit/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Audit","abi":{"methods":[{"name":"_deploy","offset":0,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"get","offset":886,"parameters":[{"name":"id","type":"ByteArray"}],"returntype":"ByteArray","safe":true},{"name":"list","offset":911,"parameters":[],"returntype":"Array","safe":true},{"name":"listByCID","offset":977,"parameters":[{"name":"epoch","type":"Integer"},{"name":"cid","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"listByEpoch","offset":945,"parameters":[{"name":"epoch","type":"Integer"}],"returntype":"Array","safe":true},{"name":"listByNode","offset":1020,"parameters":[{"name":"epoch","type":"Integer"},{"name":"cid","type":"ByteArray"},{"name":"key","type":"PublicKey"}],"returntype":"Array","safe":true},{"name":"put","offset":735,"parameters":[{"name":"rawAuditResult","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"update","offset":606,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"version","offset":1160,"parameters":[],"returntype":"Integer","safe":true}],"events":[]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/balance/balance_contract.nef b/vendor/contracts/balance/balance_contract.nef deleted file mode 100755 index bba62e4..0000000 Binary files a/vendor/contracts/balance/balance_contract.nef and /dev/null differ diff --git a/vendor/contracts/balance/config.json b/vendor/contracts/balance/config.json deleted file mode 100755 index a6533d5..0000000 --- a/vendor/contracts/balance/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Balance","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":93,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"balanceOf","offset":988,"parameters":[{"name":"account","type":"Hash160"}],"returntype":"Integer","safe":true},{"name":"burn","offset":1522,"parameters":[{"name":"from","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"txDetails","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"decimals","offset":966,"parameters":[],"returntype":"Integer","safe":true},{"name":"lock","offset":1131,"parameters":[{"name":"txDetails","type":"ByteArray"},{"name":"from","type":"Hash160"},{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"until","type":"Integer"}],"returntype":"Void","safe":false},{"name":"mint","offset":1387,"parameters":[{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"txDetails","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"newEpoch","offset":1263,"parameters":[{"name":"epochNum","type":"Integer"}],"returntype":"Void","safe":false},{"name":"symbol","offset":962,"parameters":[],"returntype":"String","safe":true},{"name":"totalSupply","offset":970,"parameters":[],"returntype":"Integer","safe":true},{"name":"transfer","offset":1007,"parameters":[{"name":"from","type":"Hash160"},{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"data","type":"Any"}],"returntype":"Boolean","safe":false},{"name":"transferX","offset":1033,"parameters":[{"name":"from","type":"Hash160"},{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"details","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"update","offset":831,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"version","offset":1687,"parameters":[],"returntype":"Integer","safe":true}],"events":[{"name":"Lock","parameters":[{"name":"txID","type":"ByteArray"},{"name":"from","type":"Hash160"},{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"until","type":"Integer"}]},{"name":"Transfer","parameters":[{"name":"from","type":"Hash160"},{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"}]},{"name":"TransferX","parameters":[{"name":"from","type":"Hash160"},{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"details","type":"ByteArray"}]},{"name":"Mint","parameters":[{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"}]},{"name":"Burn","parameters":[{"name":"from","type":"Hash160"},{"name":"amount","type":"Integer"}]}]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update"]}],"supportedstandards":["NEP-17"],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/container/config.json b/vendor/contracts/container/config.json deleted file mode 100755 index e5078a8..0000000 --- a/vendor/contracts/container/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Container","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":83,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"containersOf","offset":2867,"parameters":[{"name":"owner","type":"ByteArray"}],"returntype":"InteropInterface","safe":true},{"name":"count","offset":2822,"parameters":[],"returntype":"Integer","safe":true},{"name":"delete","offset":2422,"parameters":[{"name":"containerID","type":"ByteArray"},{"name":"signature","type":"Signature"},{"name":"token","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"eACL","offset":3167,"parameters":[{"name":"containerID","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"get","offset":2709,"parameters":[{"name":"containerID","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"getContainerSize","offset":3429,"parameters":[{"name":"id","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"iterateContainerSizes","offset":3630,"parameters":[{"name":"epoch","type":"Integer"}],"returntype":"InteropInterface","safe":true},{"name":"list","offset":2921,"parameters":[{"name":"owner","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"listContainerSizes","offset":3469,"parameters":[{"name":"epoch","type":"Integer"}],"returntype":"Array","safe":true},{"name":"newEpoch","offset":3682,"parameters":[{"name":"epochNum","type":"Integer"}],"returntype":"Void","safe":false},{"name":"onNEP11Payment","offset":1046,"parameters":[{"name":"a","type":"Hash160"},{"name":"b","type":"Integer"},{"name":"c","type":"ByteArray"},{"name":"d","type":"Any"}],"returntype":"Void","safe":false},{"name":"owner","offset":2771,"parameters":[{"name":"containerID","type":"ByteArray"}],"returntype":"ByteArray","safe":true},{"name":"put","offset":1331,"parameters":[{"name":"container","type":"ByteArray"},{"name":"signature","type":"Signature"},{"name":"publicKey","type":"PublicKey"},{"name":"token","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"putContainerSize","offset":3225,"parameters":[{"name":"epoch","type":"Integer"},{"name":"cid","type":"ByteArray"},{"name":"usedSize","type":"Integer"},{"name":"pubKey","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"putNamed","offset":1347,"parameters":[{"name":"container","type":"ByteArray"},{"name":"signature","type":"Signature"},{"name":"publicKey","type":"PublicKey"},{"name":"token","type":"ByteArray"},{"name":"name","type":"String"},{"name":"zone","type":"String"}],"returntype":"Void","safe":false},{"name":"setEACL","offset":3017,"parameters":[{"name":"eACL","type":"ByteArray"},{"name":"signature","type":"Signature"},{"name":"publicKey","type":"PublicKey"},{"name":"token","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"startContainerEstimation","offset":3705,"parameters":[{"name":"epoch","type":"Integer"}],"returntype":"Void","safe":false},{"name":"stopContainerEstimation","offset":3779,"parameters":[{"name":"epoch","type":"Integer"}],"returntype":"Void","safe":false},{"name":"update","offset":1198,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"version","offset":3852,"parameters":[],"returntype":"Integer","safe":true}],"events":[{"name":"containerPut","parameters":[{"name":"container","type":"ByteArray"},{"name":"signature","type":"Signature"},{"name":"publicKey","type":"PublicKey"},{"name":"token","type":"ByteArray"}]},{"name":"PutSuccess","parameters":[{"name":"containerID","type":"Hash256"},{"name":"publicKey","type":"PublicKey"}]},{"name":"containerDelete","parameters":[{"name":"containerID","type":"ByteArray"},{"name":"signature","type":"Signature"},{"name":"token","type":"ByteArray"}]},{"name":"DeleteSuccess","parameters":[{"name":"containerID","type":"ByteArray"}]},{"name":"setEACL","parameters":[{"name":"eACL","type":"ByteArray"},{"name":"signature","type":"Signature"},{"name":"publicKey","type":"PublicKey"},{"name":"token","type":"ByteArray"}]},{"name":"SetEACLSuccess","parameters":[{"name":"containerID","type":"ByteArray"},{"name":"publicKey","type":"PublicKey"}]},{"name":"StartEstimation","parameters":[{"name":"epoch","type":"Integer"}]},{"name":"StopEstimation","parameters":[{"name":"epoch","type":"Integer"}]}]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update","addKey","transferX","register","addRecord","deleteRecords"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/container/container_contract.nef b/vendor/contracts/container/container_contract.nef deleted file mode 100755 index d3f1349..0000000 Binary files a/vendor/contracts/container/container_contract.nef and /dev/null differ diff --git a/vendor/contracts/frostfs/config.json b/vendor/contracts/frostfs/config.json deleted file mode 100755 index 8e52029..0000000 --- a/vendor/contracts/frostfs/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"FrostFS","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":74,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"alphabetAddress","offset":1028,"parameters":[],"returntype":"Hash160","safe":true},{"name":"bind","offset":2294,"parameters":[{"name":"user","type":"ByteArray"},{"name":"keys","type":"Array"}],"returntype":"Void","safe":false},{"name":"cheque","offset":2172,"parameters":[{"name":"id","type":"ByteArray"},{"name":"user","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"lockAcc","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"config","offset":2574,"parameters":[{"name":"key","type":"ByteArray"}],"returntype":"Any","safe":true},{"name":"innerRingCandidateAdd","offset":1295,"parameters":[{"name":"key","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"innerRingCandidateRemove","offset":1121,"parameters":[{"name":"key","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"innerRingCandidates","offset":1049,"parameters":[],"returntype":"Array","safe":true},{"name":"listConfig","offset":2678,"parameters":[],"returntype":"Array","safe":true},{"name":"onNEP17Payment","offset":1545,"parameters":[{"name":"from","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"setConfig","offset":2592,"parameters":[{"name":"id","type":"ByteArray"},{"name":"key","type":"ByteArray"},{"name":"val","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"unbind","offset":2433,"parameters":[{"name":"user","type":"ByteArray"},{"name":"keys","type":"Array"}],"returntype":"Void","safe":false},{"name":"update","offset":906,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"version","offset":2760,"parameters":[],"returntype":"Integer","safe":true},{"name":"withdraw","offset":1878,"parameters":[{"name":"user","type":"Hash160"},{"name":"amount","type":"Integer"}],"returntype":"Void","safe":false}],"events":[{"name":"Deposit","parameters":[{"name":"from","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"receiver","type":"Hash160"},{"name":"txHash","type":"Hash256"}]},{"name":"Withdraw","parameters":[{"name":"user","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"txHash","type":"Hash256"}]},{"name":"Cheque","parameters":[{"name":"id","type":"ByteArray"},{"name":"user","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"lockAccount","type":"ByteArray"}]},{"name":"Bind","parameters":[{"name":"user","type":"ByteArray"},{"name":"keys","type":"Array"}]},{"name":"Unbind","parameters":[{"name":"user","type":"ByteArray"},{"name":"keys","type":"Array"}]},{"name":"AlphabetUpdate","parameters":[{"name":"id","type":"ByteArray"},{"name":"alphabet","type":"Array"}]},{"name":"SetConfig","parameters":[{"name":"id","type":"ByteArray"},{"name":"key","type":"ByteArray"},{"name":"value","type":"ByteArray"}]}]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update","transfer"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/frostfs/frostfs_contract.nef b/vendor/contracts/frostfs/frostfs_contract.nef deleted file mode 100755 index 0567ec7..0000000 Binary files a/vendor/contracts/frostfs/frostfs_contract.nef and /dev/null differ diff --git a/vendor/contracts/frostfsid/config.json b/vendor/contracts/frostfsid/config.json deleted file mode 100755 index 42bc472..0000000 --- a/vendor/contracts/frostfsid/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Identity","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":35,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"addKey","offset":776,"parameters":[{"name":"owner","type":"ByteArray"},{"name":"keys","type":"Array"}],"returntype":"Void","safe":false},{"name":"key","offset":1181,"parameters":[{"name":"owner","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"removeKey","offset":974,"parameters":[{"name":"owner","type":"ByteArray"},{"name":"keys","type":"Array"}],"returntype":"Void","safe":false},{"name":"update","offset":643,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"version","offset":1252,"parameters":[],"returntype":"Integer","safe":true}],"events":[]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/frostfsid/frostfsid_contract.nef b/vendor/contracts/frostfsid/frostfsid_contract.nef deleted file mode 100755 index 66f4464..0000000 Binary files a/vendor/contracts/frostfsid/frostfsid_contract.nef and /dev/null differ diff --git a/vendor/contracts/netmap/config.json b/vendor/contracts/netmap/config.json deleted file mode 100755 index 234011b..0000000 --- a/vendor/contracts/netmap/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Netmap","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":93,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"addPeer","offset":1111,"parameters":[{"name":"nodeInfo","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"addPeerIR","offset":1071,"parameters":[{"name":"nodeInfo","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"config","offset":2507,"parameters":[{"name":"key","type":"ByteArray"}],"returntype":"Any","safe":true},{"name":"epoch","offset":1692,"parameters":[],"returntype":"Integer","safe":true},{"name":"lastEpochBlock","offset":1731,"parameters":[],"returntype":"Integer","safe":false},{"name":"listConfig","offset":2586,"parameters":[],"returntype":"Array","safe":true},{"name":"netmap","offset":1770,"parameters":[],"returntype":"Array","safe":true},{"name":"netmapCandidates","offset":1852,"parameters":[],"returntype":"Array","safe":true},{"name":"newEpoch","offset":1408,"parameters":[{"name":"epochNum","type":"Integer"}],"returntype":"Void","safe":false},{"name":"setConfig","offset":2525,"parameters":[{"name":"id","type":"ByteArray"},{"name":"key","type":"ByteArray"},{"name":"val","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"snapshot","offset":1868,"parameters":[{"name":"diff","type":"Integer"}],"returntype":"Array","safe":true},{"name":"snapshotByEpoch","offset":2459,"parameters":[{"name":"epoch","type":"Integer"}],"returntype":"Array","safe":true},{"name":"update","offset":941,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"updateSnapshotCount","offset":2022,"parameters":[{"name":"count","type":"Integer"}],"returntype":"Void","safe":false},{"name":"updateState","offset":1317,"parameters":[{"name":"state","type":"Integer"},{"name":"publicKey","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"updateStateIR","offset":1384,"parameters":[{"name":"state","type":"Integer"},{"name":"publicKey","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"version","offset":2668,"parameters":[],"returntype":"Integer","safe":true}],"events":[{"name":"AddPeer","parameters":[{"name":"nodeInfo","type":"ByteArray"}]},{"name":"AddPeerSuccess","parameters":[{"name":"publicKey","type":"PublicKey"}]},{"name":"UpdateState","parameters":[{"name":"state","type":"Integer"},{"name":"publicKey","type":"PublicKey"}]},{"name":"UpdateStateSuccess","parameters":[{"name":"publicKey","type":"PublicKey"},{"name":"state","type":"Integer"}]},{"name":"NewEpoch","parameters":[{"name":"epoch","type":"Integer"}]}]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update","newEpoch"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/netmap/netmap_contract.nef b/vendor/contracts/netmap/netmap_contract.nef deleted file mode 100755 index ba89fcd..0000000 Binary files a/vendor/contracts/netmap/netmap_contract.nef and /dev/null differ diff --git a/vendor/contracts/nns/config.json b/vendor/contracts/nns/config.json deleted file mode 100755 index c96edcb..0000000 --- a/vendor/contracts/nns/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"NameService","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":32,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"addRecord","offset":2591,"parameters":[{"name":"name","type":"String"},{"name":"typ","type":"Integer"},{"name":"data","type":"String"}],"returntype":"Void","safe":false},{"name":"balanceOf","offset":568,"parameters":[{"name":"owner","type":"Hash160"}],"returntype":"Integer","safe":true},{"name":"decimals","offset":479,"parameters":[],"returntype":"Integer","safe":true},{"name":"deleteRecords","offset":2726,"parameters":[{"name":"name","type":"String"},{"name":"typ","type":"Integer"}],"returntype":"Void","safe":false},{"name":"getAllRecords","offset":2882,"parameters":[{"name":"name","type":"String"}],"returntype":"InteropInterface","safe":false},{"name":"getPrice","offset":976,"parameters":[],"returntype":"Integer","safe":true},{"name":"getRecords","offset":2683,"parameters":[{"name":"name","type":"String"},{"name":"typ","type":"Integer"}],"returntype":"Array","safe":true},{"name":"isAvailable","offset":1010,"parameters":[{"name":"name","type":"String"}],"returntype":"Boolean","safe":true},{"name":"ownerOf","offset":501,"parameters":[{"name":"tokenID","type":"ByteArray"}],"returntype":"Hash160","safe":true},{"name":"properties","offset":523,"parameters":[{"name":"tokenID","type":"ByteArray"}],"returntype":"Map","safe":true},{"name":"register","offset":1281,"parameters":[{"name":"name","type":"String"},{"name":"owner","type":"Hash160"},{"name":"email","type":"String"},{"name":"refresh","type":"Integer"},{"name":"retry","type":"Integer"},{"name":"expire","type":"Integer"},{"name":"ttl","type":"Integer"}],"returntype":"Boolean","safe":false},{"name":"renew","offset":2048,"parameters":[{"name":"name","type":"String"}],"returntype":"Integer","safe":false},{"name":"resolve","offset":2860,"parameters":[{"name":"name","type":"String"},{"name":"typ","type":"Integer"}],"returntype":"Array","safe":true},{"name":"roots","offset":870,"parameters":[],"returntype":"InteropInterface","safe":true},{"name":"setAdmin","offset":2259,"parameters":[{"name":"name","type":"String"},{"name":"admin","type":"Hash160"}],"returntype":"Void","safe":false},{"name":"setPrice","offset":898,"parameters":[{"name":"price","type":"Integer"}],"returntype":"Void","safe":false},{"name":"setRecord","offset":2393,"parameters":[{"name":"name","type":"String"},{"name":"typ","type":"Integer"},{"name":"id","type":"Integer"},{"name":"data","type":"String"}],"returntype":"Void","safe":false},{"name":"symbol","offset":473,"parameters":[],"returntype":"String","safe":true},{"name":"tokens","offset":644,"parameters":[],"returntype":"InteropInterface","safe":true},{"name":"tokensOf","offset":673,"parameters":[{"name":"owner","type":"Hash160"}],"returntype":"InteropInterface","safe":true},{"name":"totalSupply","offset":485,"parameters":[],"returntype":"Integer","safe":true},{"name":"transfer","offset":735,"parameters":[{"name":"to","type":"Hash160"},{"name":"tokenID","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Boolean","safe":false},{"name":"update","offset":386,"parameters":[{"name":"nef","type":"ByteArray"},{"name":"manifest","type":"String"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"updateSOA","offset":2169,"parameters":[{"name":"name","type":"String"},{"name":"email","type":"String"},{"name":"refresh","type":"Integer"},{"name":"retry","type":"Integer"},{"name":"expire","type":"Integer"},{"name":"ttl","type":"Integer"}],"returntype":"Void","safe":false},{"name":"version","offset":481,"parameters":[],"returntype":"Integer","safe":true}],"events":[{"name":"Transfer","parameters":[{"name":"from","type":"Hash160"},{"name":"to","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"tokenId","type":"ByteArray"}]}]},"features":{},"groups":[],"permissions":[{"contract":"0xfffdc93764dbaddd97c48f252a53ea4643faa3fd","methods":["update"]},{"contract":"*","methods":["onNEP11Payment"]}],"supportedstandards":["NEP-11"],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/nns/nns_contract.nef b/vendor/contracts/nns/nns_contract.nef deleted file mode 100755 index 7efdc92..0000000 Binary files a/vendor/contracts/nns/nns_contract.nef and /dev/null differ diff --git a/vendor/contracts/processing/config.json b/vendor/contracts/processing/config.json deleted file mode 100755 index 333bf2f..0000000 --- a/vendor/contracts/processing/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Multi Signature Processing","abi":{"methods":[{"name":"_deploy","offset":0,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"onNEP17Payment","offset":417,"parameters":[{"name":"from","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"update","offset":509,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"verify","offset":680,"parameters":[],"returntype":"Boolean","safe":true},{"name":"version","offset":767,"parameters":[],"returntype":"Integer","safe":true}],"events":[]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/processing/processing_contract.nef b/vendor/contracts/processing/processing_contract.nef deleted file mode 100755 index 6f9c695..0000000 Binary files a/vendor/contracts/processing/processing_contract.nef and /dev/null differ diff --git a/vendor/contracts/proxy/config.json b/vendor/contracts/proxy/config.json deleted file mode 100755 index ede4fdb..0000000 --- a/vendor/contracts/proxy/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Notary Proxy","abi":{"methods":[{"name":"_deploy","offset":0,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"onNEP17Payment","offset":337,"parameters":[{"name":"from","type":"Hash160"},{"name":"amount","type":"Integer"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"update","offset":424,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"verify","offset":553,"parameters":[],"returntype":"Boolean","safe":true},{"name":"version","offset":602,"parameters":[],"returntype":"Integer","safe":true}],"events":[]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/proxy/proxy_contract.nef b/vendor/contracts/proxy/proxy_contract.nef deleted file mode 100755 index a8bfc23..0000000 Binary files a/vendor/contracts/proxy/proxy_contract.nef and /dev/null differ diff --git a/vendor/contracts/reputation/config.json b/vendor/contracts/reputation/config.json deleted file mode 100755 index 7b5aec7..0000000 --- a/vendor/contracts/reputation/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Reputation","abi":{"methods":[{"name":"_deploy","offset":0,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"get","offset":706,"parameters":[{"name":"epoch","type":"Integer"},{"name":"peerID","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"getByID","offset":722,"parameters":[{"name":"id","type":"ByteArray"}],"returntype":"Array","safe":true},{"name":"listByEpoch","offset":812,"parameters":[{"name":"epoch","type":"Integer"}],"returntype":"Array","safe":true},{"name":"put","offset":563,"parameters":[{"name":"epoch","type":"Integer"},{"name":"peerID","type":"ByteArray"},{"name":"value","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"update","offset":432,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"version","offset":890,"parameters":[],"returntype":"Integer","safe":false}],"events":[{"name":"reputationPut","parameters":[{"name":"epoch","type":"Integer"},{"name":"peerID","type":"ByteArray"},{"name":"value","type":"ByteArray"}]}]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/reputation/reputation_contract.nef b/vendor/contracts/reputation/reputation_contract.nef deleted file mode 100755 index 0bbcb93..0000000 Binary files a/vendor/contracts/reputation/reputation_contract.nef and /dev/null differ diff --git a/vendor/contracts/subnet/config.json b/vendor/contracts/subnet/config.json deleted file mode 100755 index 5968c10..0000000 --- a/vendor/contracts/subnet/config.json +++ /dev/null @@ -1 +0,0 @@ -{"name":"Subnet","abi":{"methods":[{"name":"_initialize","offset":0,"parameters":[],"returntype":"Void","safe":false},{"name":"_deploy","offset":64,"parameters":[{"name":"data","type":"Any"},{"name":"isUpdate","type":"Boolean"}],"returntype":"Void","safe":false},{"name":"addClientAdmin","offset":2071,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"groupID","type":"ByteArray"},{"name":"adminPublicKey","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"addNode","offset":1467,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"node","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"addNodeAdmin","offset":1102,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"adminKey","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"addUser","offset":2522,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"groupID","type":"ByteArray"},{"name":"userID","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"delete","offset":913,"parameters":[{"name":"id","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"get","offset":803,"parameters":[{"name":"id","type":"ByteArray"}],"returntype":"ByteArray","safe":false},{"name":"nodeAllowed","offset":1911,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"node","type":"PublicKey"}],"returntype":"Boolean","safe":false},{"name":"put","offset":637,"parameters":[{"name":"id","type":"ByteArray"},{"name":"ownerKey","type":"PublicKey"},{"name":"info","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"removeClientAdmin","offset":2296,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"groupID","type":"ByteArray"},{"name":"adminPublicKey","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"removeNode","offset":1672,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"node","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"removeNodeAdmin","offset":1284,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"adminKey","type":"PublicKey"}],"returntype":"Void","safe":false},{"name":"removeUser","offset":2766,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"groupID","type":"ByteArray"},{"name":"userID","type":"ByteArray"}],"returntype":"Void","safe":false},{"name":"update","offset":507,"parameters":[{"name":"script","type":"ByteArray"},{"name":"manifest","type":"ByteArray"},{"name":"data","type":"Any"}],"returntype":"Void","safe":false},{"name":"userAllowed","offset":3011,"parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"user","type":"ByteArray"}],"returntype":"Boolean","safe":false},{"name":"version","offset":3187,"parameters":[],"returntype":"Integer","safe":true}],"events":[{"name":"Put","parameters":[{"name":"id","type":"ByteArray"},{"name":"ownerKey","type":"PublicKey"},{"name":"info","type":"ByteArray"}]},{"name":"Delete","parameters":[{"name":"id","type":"ByteArray"}]},{"name":"RemoveNode","parameters":[{"name":"subnetID","type":"ByteArray"},{"name":"node","type":"PublicKey"}]}]},"features":{},"groups":[],"permissions":[{"contract":"*","methods":["update"]}],"supportedstandards":[],"trusts":[],"extra":null} \ No newline at end of file diff --git a/vendor/contracts/subnet/subnet_contract.nef b/vendor/contracts/subnet/subnet_contract.nef deleted file mode 100755 index 3667593..0000000 Binary files a/vendor/contracts/subnet/subnet_contract.nef and /dev/null differ diff --git a/vendor/locode_db b/vendor/locode_db deleted file mode 100644 index a5d6508..0000000 Binary files a/vendor/locode_db and /dev/null differ diff --git a/wallets/game-wallet.json b/wallets/game-wallet.json deleted file mode 100644 index f2536e3..0000000 --- a/wallets/game-wallet.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"NXbLSnHA8dNuMUPUSNNivx7XFucN1w5bRq","key":"6PYRRKFgimr5vtwYQYd9fKjEQPZtkP66tWJzswxmDGwXyU1qUhvXcNbBJY","label":"frida","contract":{"script":"DCECcXHfMBd9QBxjj7LdwU+dvaMjKR42O6T3w7Gai0TIugpBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/wallets/wallet.json b/wallets/wallet.json deleted file mode 100644 index 0cb39d6..0000000 --- a/wallets/wallet.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"Ne5RfKVQo9tcJherekuF7RvtMBEDDhwpqa","key":"6PYS8W1GBUpuWdemn4jDGh3qvEJ6waiJ8mUyd49LvNS6rvKVYse3CYdVdZ","label":"user","contract":{"script":"DCEDdZw4GtfuUmONsM9MRRmtsvTNMkldzXFp+PlTEeaigpdBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/wallets/wallet0.json b/wallets/wallet0.json deleted file mode 100644 index 16978dd..0000000 --- a/wallets/wallet0.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"NYU98hHU6MJCV2bGc2rtHxjndkKFwhsfrg","key":"6PYQBuL2ZaLsndUy9sVyqCqdT974diB6mCJyMBNbXSKXoPfcNh6ixB3g6W","label":"frida","contract":{"script":"DCEDZufrbdJb4YV1UgrqWE3qVWDHvyFiIwu5vmx5xYXviZxBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/wallets/wallet1.json b/wallets/wallet1.json deleted file mode 100644 index 49344ad..0000000 --- a/wallets/wallet1.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"NNkgaxu8GR6s53CYcjGkavVjJsqC4LH6J9","key":"6PYLVbnCcCCb4GA6vPShKapv9PRwwo9rPmY33wDvvrbs9mysTQrPJYaUYK","label":"","contract":{"script":"DCEDvS4Krub5RkiiMrvQ4jM1PgqDw5rlhScBziY1oCTNZ7RBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/wallets/wallet2.json b/wallets/wallet2.json deleted file mode 100644 index 40735e5..0000000 --- a/wallets/wallet2.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"NW3soYmG6gBDmcWnFwDZbTVcFtgHPfKy4Z","key":"6PYVqRwEt2NDWwv4BY4ExMVY4tVsdHfSjQq9PCcX7GEfzoigU3fWedp1AQ","label":"frida","contract":{"script":"DCECujzjikhCmhorLPbReBCUm685BB5wgJI2DNJ0V01Ix9VBVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/wallets/wallet3.json b/wallets/wallet3.json deleted file mode 100644 index 43d8d66..0000000 --- a/wallets/wallet3.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"1.0","accounts":[{"address":"NR8qvrREk1eCeQJce9zBaDyPE3PHGZfT6t","key":"6PYWLJ3VAUcE8xLPnCbMp561b411u6qWoErdkx3hJugFZXrSckH9wTKRhe","label":"wallet3","contract":{"script":"DCECPwTRyxo1hHzMtjFAr5qmm8+WMm6X1qnlLX2lRkoSY+1BVuezJw==","parameters":[{"name":"parameter0","type":"Signature"}],"deployed":false},"lock":false,"isDefault":false}],"scrypt":{"n":16384,"r":8,"p":8},"extra":{"Tokens":null}} \ No newline at end of file diff --git a/wallets/walletAleksey.json b/wallets/walletAleksey.json deleted file mode 100644 index 00de6ae..0000000 --- a/wallets/walletAleksey.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "n3UserWallet", - "chain": "neo3", - "version": "1.0", - "scrypt": { - "cost": 16384, - "blockSize": 8, - "parallel": 8, - "size": 64 - }, - "accounts": [ - { - "address": "NQCLAHuu4umnR99KB5m7U8ppJFtWqhw6DS", - "label": "test", - "isDefault": false, - "lock": false, - "key": "6PYKvmjnpLfNTbmx1YiHmZK6zYik7NSaqDZAeWcaVbcdxULYnXkKWW183H", - "contract": {}, - "extra": null - } - ] -}